diff --git a/common/define-grammar.js b/common/define-grammar.js index 3bd3297a..38e6571b 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -420,7 +420,6 @@ module.exports = function defineGrammar(dialect) { '{', repeat(choice( seq( - repeat(field('decorator', $.decorator)), $.method_definition, optional($._semicolon), ), @@ -449,6 +448,7 @@ module.exports = function defineGrammar(dialect) { ), method_definition: $ => prec.left(seq( + repeat(field('decorator', $.decorator)), optional($.accessibility_modifier), optional('static'), optional($.override_modifier), diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 75d38d2d..3a46480d 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -938,13 +938,13 @@ class Foo { (class_declaration (type_identifier) (class_body - (decorator - (call_expression - (identifier) - (type_arguments - (type_identifier)) - (arguments))) (method_definition + (decorator + (call_expression + (identifier) + (type_arguments + (type_identifier)) + (arguments))) (property_identifier) (formal_parameters) (statement_block))))) @@ -1000,9 +1000,9 @@ Classes with decorators (type_identifier)) (string (string_fragment))) - (decorator - (identifier)) (method_definition + (decorator + (identifier)) (property_identifier) (formal_parameters (required_parameter @@ -1204,12 +1204,12 @@ class C { (class_declaration (type_identifier) (class_body - (decorator - (parenthesized_expression - (member_expression - (identifier) - (property_identifier)))) (method_definition + (decorator + (parenthesized_expression + (member_expression + (identifier) + (property_identifier)))) (property_identifier) (formal_parameters) (statement_block))))) diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index 6b23e244..a7036787 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -6586,17 +6586,6 @@ { "type": "SEQ", "members": [ - { - "type": "REPEAT", - "content": { - "type": "FIELD", - "name": "decorator", - "content": { - "type": "SYMBOL", - "name": "decorator" - } - } - }, { "type": "SYMBOL", "name": "method_definition" @@ -6873,6 +6862,17 @@ "content": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, { "type": "CHOICE", "members": [ diff --git a/tsx/src/node-types.json b/tsx/src/node-types.json index 30a9bc38..daccc601 100644 --- a/tsx/src/node-types.json +++ b/tsx/src/node-types.json @@ -1407,18 +1407,7 @@ { "type": "class_body", "named": true, - "fields": { - "decorator": { - "multiple": true, - "required": false, - "types": [ - { - "type": "decorator", - "named": true - } - ] - } - }, + "fields": {}, "children": { "multiple": true, "required": false, @@ -3686,6 +3675,16 @@ } ] }, + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, "name": { "multiple": false, "required": true, @@ -6097,11 +6096,11 @@ }, { "type": "number", - "named": true + "named": false }, { "type": "number", - "named": false + "named": true }, { "type": "object", diff --git a/tsx/src/parser.c b/tsx/src/parser.c index 5c69810e..8679f73a 100644 --- a/tsx/src/parser.c +++ b/tsx/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5925 +#define STATE_COUNT 7569 #define LARGE_STATE_COUNT 1132 #define SYMBOL_COUNT 399 #define ALIAS_COUNT 7 #define TOKEN_COUNT 175 #define EXTERNAL_TOKEN_COUNT 9 #define FIELD_COUNT 44 -#define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 345 +#define MAX_ALIAS_SEQUENCE_LENGTH 11 +#define PRODUCTION_ID_COUNT 357 enum ts_symbol_identifiers { sym_identifier = 1, @@ -3074,245 +3074,257 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [100] = {.index = 167, .length = 2}, [101] = {.index = 169, .length = 3}, [102] = {.index = 172, .length = 4}, - [103] = {.index = 176, .length = 1}, - [104] = {.index = 177, .length = 2}, - [105] = {.index = 179, .length = 1}, - [106] = {.index = 180, .length = 2}, - [107] = {.index = 182, .length = 3}, - [108] = {.index = 185, .length = 2}, - [109] = {.index = 187, .length = 4}, - [110] = {.index = 191, .length = 3}, - [111] = {.index = 194, .length = 2}, - [112] = {.index = 196, .length = 2}, - [113] = {.index = 198, .length = 2}, - [114] = {.index = 200, .length = 2}, - [115] = {.index = 202, .length = 2}, - [118] = {.index = 202, .length = 2}, - [119] = {.index = 204, .length = 4}, - [120] = {.index = 208, .length = 2}, - [121] = {.index = 210, .length = 2}, - [122] = {.index = 212, .length = 4}, - [123] = {.index = 210, .length = 2}, - [124] = {.index = 216, .length = 4}, - [125] = {.index = 220, .length = 4}, - [126] = {.index = 224, .length = 5}, - [127] = {.index = 229, .length = 3}, + [103] = {.index = 176, .length = 2}, + [104] = {.index = 178, .length = 2}, + [105] = {.index = 180, .length = 3}, + [106] = {.index = 183, .length = 2}, + [107] = {.index = 185, .length = 4}, + [108] = {.index = 189, .length = 3}, + [109] = {.index = 192, .length = 2}, + [110] = {.index = 194, .length = 2}, + [111] = {.index = 196, .length = 2}, + [112] = {.index = 198, .length = 2}, + [113] = {.index = 200, .length = 2}, + [116] = {.index = 200, .length = 2}, + [117] = {.index = 202, .length = 4}, + [118] = {.index = 206, .length = 2}, + [119] = {.index = 208, .length = 2}, + [120] = {.index = 210, .length = 4}, + [121] = {.index = 208, .length = 2}, + [122] = {.index = 214, .length = 4}, + [123] = {.index = 218, .length = 4}, + [124] = {.index = 222, .length = 5}, + [125] = {.index = 227, .length = 3}, + [126] = {.index = 230, .length = 2}, + [127] = {.index = 230, .length = 2}, [128] = {.index = 232, .length = 2}, - [129] = {.index = 232, .length = 2}, - [130] = {.index = 234, .length = 2}, - [131] = {.index = 236, .length = 2}, - [132] = {.index = 238, .length = 2}, - [133] = {.index = 240, .length = 2}, - [134] = {.index = 242, .length = 2}, - [135] = {.index = 244, .length = 2}, - [136] = {.index = 246, .length = 3}, - [137] = {.index = 244, .length = 2}, - [138] = {.index = 240, .length = 2}, - [139] = {.index = 142, .length = 2}, - [140] = {.index = 249, .length = 1}, - [141] = {.index = 249, .length = 1}, - [142] = {.index = 180, .length = 2}, - [143] = {.index = 182, .length = 3}, - [144] = {.index = 250, .length = 2}, - [145] = {.index = 252, .length = 3}, - [146] = {.index = 255, .length = 2}, - [147] = {.index = 257, .length = 3}, - [148] = {.index = 260, .length = 2}, - [149] = {.index = 262, .length = 3}, - [150] = {.index = 265, .length = 1}, - [151] = {.index = 266, .length = 2}, - [152] = {.index = 268, .length = 2}, - [153] = {.index = 270, .length = 5}, - [154] = {.index = 266, .length = 2}, - [155] = {.index = 275, .length = 1}, - [156] = {.index = 276, .length = 4}, - [157] = {.index = 280, .length = 2}, - [158] = {.index = 282, .length = 1}, - [159] = {.index = 283, .length = 2}, - [160] = {.index = 285, .length = 2}, - [161] = {.index = 287, .length = 2}, - [162] = {.index = 289, .length = 4}, - [163] = {.index = 293, .length = 2}, - [164] = {.index = 295, .length = 3}, - [165] = {.index = 298, .length = 3}, - [166] = {.index = 301, .length = 3}, - [167] = {.index = 304, .length = 4}, - [168] = {.index = 308, .length = 1}, - [169] = {.index = 309, .length = 2}, - [170] = {.index = 311, .length = 4}, - [171] = {.index = 315, .length = 4}, - [172] = {.index = 319, .length = 4}, - [173] = {.index = 323, .length = 2}, - [174] = {.index = 325, .length = 2}, - [175] = {.index = 327, .length = 4}, - [176] = {.index = 327, .length = 4}, - [177] = {.index = 331, .length = 4}, - [178] = {.index = 331, .length = 4}, - [179] = {.index = 335, .length = 4}, - [180] = {.index = 339, .length = 4}, - [181] = {.index = 343, .length = 5}, - [182] = {.index = 348, .length = 3}, - [183] = {.index = 351, .length = 3}, - [184] = {.index = 351, .length = 3}, - [185] = {.index = 354, .length = 2}, - [186] = {.index = 356, .length = 3}, - [187] = {.index = 359, .length = 2}, - [188] = {.index = 359, .length = 2}, - [189] = {.index = 301, .length = 3}, - [190] = {.index = 361, .length = 3}, - [191] = {.index = 364, .length = 3}, - [192] = {.index = 137, .length = 2}, - [193] = {.index = 367, .length = 2}, - [194] = {.index = 369, .length = 3}, - [195] = {.index = 372, .length = 4}, - [196] = {.index = 376, .length = 3}, - [197] = {.index = 379, .length = 3}, - [198] = {.index = 382, .length = 2}, - [199] = {.index = 384, .length = 3}, - [200] = {.index = 387, .length = 5}, - [201] = {.index = 382, .length = 2}, - [202] = {.index = 392, .length = 3}, - [203] = {.index = 392, .length = 3}, - [204] = {.index = 395, .length = 3}, - [205] = {.index = 398, .length = 2}, - [206] = {.index = 400, .length = 4}, - [207] = {.index = 137, .length = 2}, - [208] = {.index = 404, .length = 1}, - [209] = {.index = 405, .length = 2}, - [210] = {.index = 407, .length = 2}, - [211] = {.index = 409, .length = 2}, - [212] = {.index = 411, .length = 2}, - [213] = {.index = 413, .length = 3}, - [214] = {.index = 416, .length = 1}, - [215] = {.index = 417, .length = 3}, - [216] = {.index = 420, .length = 2}, - [217] = {.index = 422, .length = 3}, - [218] = {.index = 425, .length = 3}, - [219] = {.index = 428, .length = 3}, - [220] = {.index = 431, .length = 3}, - [221] = {.index = 434, .length = 4}, - [222] = {.index = 438, .length = 2}, - [223] = {.index = 440, .length = 2}, - [224] = {.index = 442, .length = 1}, - [225] = {.index = 443, .length = 4}, - [226] = {.index = 443, .length = 4}, - [227] = {.index = 447, .length = 2}, - [228] = {.index = 449, .length = 3}, - [229] = {.index = 452, .length = 5}, - [230] = {.index = 457, .length = 3}, - [231] = {.index = 460, .length = 2}, - [232] = {.index = 462, .length = 2}, - [233] = {.index = 464, .length = 2}, - [234] = {.index = 466, .length = 1}, - [235] = {.index = 467, .length = 4}, - [236] = {.index = 471, .length = 3}, - [237] = {.index = 474, .length = 4}, - [238] = {.index = 478, .length = 5}, - [239] = {.index = 483, .length = 1}, - [240] = {.index = 484, .length = 2}, - [241] = {.index = 486, .length = 4}, - [242] = {.index = 490, .length = 4}, - [243] = {.index = 494, .length = 2}, - [244] = {.index = 496, .length = 4}, - [245] = {.index = 500, .length = 4}, - [246] = {.index = 504, .length = 2}, - [247] = {.index = 506, .length = 2}, - [248] = {.index = 508, .length = 3}, - [249] = {.index = 511, .length = 3}, - [250] = {.index = 514, .length = 2}, - [251] = {.index = 516, .length = 2}, - [252] = {.index = 518, .length = 1}, - [253] = {.index = 519, .length = 1}, - [254] = {.index = 520, .length = 3}, - [255] = {.index = 523, .length = 3}, - [256] = {.index = 526, .length = 3}, - [257] = {.index = 529, .length = 3}, - [258] = {.index = 532, .length = 4}, - [259] = {.index = 536, .length = 2}, - [260] = {.index = 538, .length = 4}, - [261] = {.index = 542, .length = 3}, - [262] = {.index = 545, .length = 2}, - [263] = {.index = 547, .length = 2}, - [264] = {.index = 549, .length = 4}, - [265] = {.index = 553, .length = 4}, - [266] = {.index = 557, .length = 4}, - [267] = {.index = 561, .length = 3}, - [268] = {.index = 564, .length = 2}, - [270] = {.index = 566, .length = 4}, - [271] = {.index = 570, .length = 5}, - [272] = {.index = 575, .length = 5}, - [273] = {.index = 580, .length = 5}, - [274] = {.index = 585, .length = 3}, - [275] = {.index = 588, .length = 3}, - [276] = {.index = 591, .length = 3}, - [277] = {.index = 588, .length = 3}, - [278] = {.index = 594, .length = 2}, - [279] = {.index = 596, .length = 4}, - [280] = {.index = 600, .length = 4}, - [281] = {.index = 604, .length = 3}, - [282] = {.index = 607, .length = 2}, - [283] = {.index = 609, .length = 2}, - [284] = {.index = 611, .length = 3}, - [285] = {.index = 614, .length = 2}, - [286] = {.index = 616, .length = 2}, - [287] = {.index = 618, .length = 1}, - [288] = {.index = 619, .length = 3}, - [289] = {.index = 622, .length = 3}, - [290] = {.index = 625, .length = 4}, - [291] = {.index = 629, .length = 4}, - [292] = {.index = 633, .length = 3}, - [293] = {.index = 636, .length = 3}, - [294] = {.index = 639, .length = 2}, - [295] = {.index = 641, .length = 3}, - [296] = {.index = 644, .length = 2}, - [297] = {.index = 646, .length = 4}, - [298] = {.index = 650, .length = 4}, - [299] = {.index = 654, .length = 4}, - [300] = {.index = 658, .length = 3}, - [301] = {.index = 661, .length = 5}, - [302] = {.index = 666, .length = 5}, - [303] = {.index = 671, .length = 4}, - [304] = {.index = 675, .length = 4}, - [305] = {.index = 679, .length = 3}, - [306] = {.index = 682, .length = 3}, - [307] = {.index = 682, .length = 3}, - [308] = {.index = 685, .length = 2}, - [309] = {.index = 687, .length = 2}, - [310] = {.index = 689, .length = 3}, - [311] = {.index = 692, .length = 2}, - [312] = {.index = 694, .length = 2}, - [313] = {.index = 696, .length = 4}, - [314] = {.index = 700, .length = 3}, - [315] = {.index = 703, .length = 3}, - [316] = {.index = 706, .length = 4}, - [317] = {.index = 710, .length = 3}, - [318] = {.index = 713, .length = 3}, - [319] = {.index = 716, .length = 2}, - [320] = {.index = 718, .length = 4}, - [321] = {.index = 722, .length = 5}, - [322] = {.index = 727, .length = 5}, - [323] = {.index = 732, .length = 4}, - [324] = {.index = 732, .length = 4}, - [325] = {.index = 736, .length = 4}, - [326] = {.index = 740, .length = 3}, - [327] = {.index = 743, .length = 2}, - [328] = {.index = 745, .length = 2}, - [329] = {.index = 747, .length = 3}, - [330] = {.index = 750, .length = 4}, - [331] = {.index = 754, .length = 4}, - [332] = {.index = 758, .length = 3}, - [333] = {.index = 761, .length = 3}, - [334] = {.index = 764, .length = 4}, - [335] = {.index = 768, .length = 3}, - [336] = {.index = 771, .length = 3}, - [337] = {.index = 774, .length = 5}, - [338] = {.index = 779, .length = 3}, - [339] = {.index = 782, .length = 4}, - [340] = {.index = 786, .length = 4}, - [341] = {.index = 790, .length = 3}, - [342] = {.index = 793, .length = 3}, - [343] = {.index = 796, .length = 4}, - [344] = {.index = 800, .length = 4}, + [129] = {.index = 234, .length = 2}, + [130] = {.index = 236, .length = 2}, + [131] = {.index = 238, .length = 2}, + [132] = {.index = 240, .length = 2}, + [133] = {.index = 242, .length = 2}, + [134] = {.index = 244, .length = 3}, + [135] = {.index = 242, .length = 2}, + [136] = {.index = 238, .length = 2}, + [137] = {.index = 142, .length = 2}, + [138] = {.index = 247, .length = 1}, + [139] = {.index = 247, .length = 1}, + [140] = {.index = 178, .length = 2}, + [141] = {.index = 180, .length = 3}, + [142] = {.index = 248, .length = 2}, + [143] = {.index = 250, .length = 3}, + [144] = {.index = 253, .length = 2}, + [145] = {.index = 255, .length = 3}, + [146] = {.index = 258, .length = 2}, + [147] = {.index = 260, .length = 3}, + [148] = {.index = 263, .length = 1}, + [149] = {.index = 264, .length = 2}, + [150] = {.index = 266, .length = 2}, + [151] = {.index = 268, .length = 5}, + [152] = {.index = 273, .length = 6}, + [153] = {.index = 264, .length = 2}, + [154] = {.index = 279, .length = 1}, + [155] = {.index = 280, .length = 4}, + [156] = {.index = 284, .length = 2}, + [157] = {.index = 286, .length = 1}, + [158] = {.index = 287, .length = 2}, + [159] = {.index = 289, .length = 2}, + [160] = {.index = 291, .length = 2}, + [161] = {.index = 293, .length = 4}, + [162] = {.index = 297, .length = 2}, + [163] = {.index = 299, .length = 3}, + [164] = {.index = 302, .length = 3}, + [165] = {.index = 305, .length = 3}, + [166] = {.index = 308, .length = 4}, + [167] = {.index = 312, .length = 1}, + [168] = {.index = 313, .length = 2}, + [169] = {.index = 315, .length = 4}, + [170] = {.index = 319, .length = 4}, + [171] = {.index = 323, .length = 4}, + [172] = {.index = 327, .length = 2}, + [173] = {.index = 329, .length = 2}, + [174] = {.index = 331, .length = 4}, + [175] = {.index = 331, .length = 4}, + [176] = {.index = 335, .length = 4}, + [177] = {.index = 335, .length = 4}, + [178] = {.index = 339, .length = 4}, + [179] = {.index = 343, .length = 4}, + [180] = {.index = 347, .length = 5}, + [181] = {.index = 352, .length = 3}, + [182] = {.index = 355, .length = 3}, + [183] = {.index = 355, .length = 3}, + [184] = {.index = 358, .length = 2}, + [185] = {.index = 360, .length = 3}, + [186] = {.index = 363, .length = 2}, + [187] = {.index = 363, .length = 2}, + [188] = {.index = 305, .length = 3}, + [189] = {.index = 365, .length = 3}, + [190] = {.index = 368, .length = 3}, + [191] = {.index = 137, .length = 2}, + [192] = {.index = 371, .length = 2}, + [193] = {.index = 373, .length = 3}, + [194] = {.index = 376, .length = 4}, + [195] = {.index = 380, .length = 3}, + [196] = {.index = 383, .length = 3}, + [197] = {.index = 386, .length = 2}, + [198] = {.index = 388, .length = 3}, + [199] = {.index = 391, .length = 5}, + [200] = {.index = 396, .length = 6}, + [201] = {.index = 402, .length = 6}, + [202] = {.index = 386, .length = 2}, + [203] = {.index = 408, .length = 3}, + [204] = {.index = 408, .length = 3}, + [205] = {.index = 411, .length = 3}, + [206] = {.index = 414, .length = 2}, + [207] = {.index = 416, .length = 4}, + [208] = {.index = 137, .length = 2}, + [209] = {.index = 420, .length = 1}, + [210] = {.index = 421, .length = 2}, + [211] = {.index = 423, .length = 2}, + [212] = {.index = 425, .length = 2}, + [213] = {.index = 427, .length = 2}, + [214] = {.index = 429, .length = 3}, + [215] = {.index = 432, .length = 1}, + [216] = {.index = 433, .length = 3}, + [217] = {.index = 436, .length = 2}, + [218] = {.index = 438, .length = 3}, + [219] = {.index = 441, .length = 3}, + [220] = {.index = 444, .length = 3}, + [221] = {.index = 447, .length = 3}, + [222] = {.index = 450, .length = 4}, + [223] = {.index = 454, .length = 2}, + [224] = {.index = 456, .length = 2}, + [225] = {.index = 458, .length = 1}, + [226] = {.index = 459, .length = 4}, + [227] = {.index = 459, .length = 4}, + [228] = {.index = 463, .length = 2}, + [229] = {.index = 465, .length = 3}, + [230] = {.index = 468, .length = 5}, + [231] = {.index = 473, .length = 3}, + [232] = {.index = 476, .length = 2}, + [233] = {.index = 478, .length = 2}, + [234] = {.index = 480, .length = 2}, + [235] = {.index = 482, .length = 1}, + [236] = {.index = 483, .length = 4}, + [237] = {.index = 487, .length = 3}, + [238] = {.index = 490, .length = 4}, + [239] = {.index = 494, .length = 5}, + [240] = {.index = 499, .length = 6}, + [241] = {.index = 505, .length = 6}, + [242] = {.index = 511, .length = 1}, + [243] = {.index = 512, .length = 2}, + [244] = {.index = 514, .length = 4}, + [245] = {.index = 518, .length = 4}, + [246] = {.index = 522, .length = 2}, + [247] = {.index = 524, .length = 4}, + [248] = {.index = 528, .length = 4}, + [249] = {.index = 532, .length = 2}, + [250] = {.index = 534, .length = 2}, + [251] = {.index = 536, .length = 3}, + [252] = {.index = 539, .length = 3}, + [253] = {.index = 542, .length = 2}, + [254] = {.index = 544, .length = 2}, + [255] = {.index = 546, .length = 1}, + [256] = {.index = 547, .length = 1}, + [257] = {.index = 548, .length = 3}, + [258] = {.index = 551, .length = 3}, + [259] = {.index = 554, .length = 3}, + [260] = {.index = 557, .length = 3}, + [261] = {.index = 560, .length = 4}, + [262] = {.index = 564, .length = 2}, + [263] = {.index = 566, .length = 4}, + [264] = {.index = 570, .length = 3}, + [265] = {.index = 573, .length = 2}, + [266] = {.index = 575, .length = 2}, + [267] = {.index = 577, .length = 4}, + [268] = {.index = 581, .length = 4}, + [269] = {.index = 585, .length = 4}, + [270] = {.index = 589, .length = 3}, + [271] = {.index = 592, .length = 2}, + [273] = {.index = 594, .length = 4}, + [274] = {.index = 598, .length = 5}, + [275] = {.index = 603, .length = 5}, + [276] = {.index = 608, .length = 6}, + [277] = {.index = 614, .length = 6}, + [278] = {.index = 620, .length = 5}, + [279] = {.index = 625, .length = 3}, + [280] = {.index = 628, .length = 3}, + [281] = {.index = 631, .length = 3}, + [282] = {.index = 628, .length = 3}, + [283] = {.index = 634, .length = 2}, + [284] = {.index = 636, .length = 4}, + [285] = {.index = 640, .length = 4}, + [286] = {.index = 644, .length = 3}, + [287] = {.index = 647, .length = 2}, + [288] = {.index = 649, .length = 2}, + [289] = {.index = 651, .length = 3}, + [290] = {.index = 654, .length = 2}, + [291] = {.index = 656, .length = 2}, + [292] = {.index = 658, .length = 1}, + [293] = {.index = 659, .length = 3}, + [294] = {.index = 662, .length = 3}, + [295] = {.index = 665, .length = 4}, + [296] = {.index = 669, .length = 4}, + [297] = {.index = 673, .length = 3}, + [298] = {.index = 676, .length = 3}, + [299] = {.index = 679, .length = 2}, + [300] = {.index = 681, .length = 3}, + [301] = {.index = 684, .length = 2}, + [302] = {.index = 686, .length = 4}, + [303] = {.index = 690, .length = 4}, + [304] = {.index = 694, .length = 4}, + [305] = {.index = 698, .length = 3}, + [306] = {.index = 701, .length = 5}, + [307] = {.index = 706, .length = 5}, + [308] = {.index = 711, .length = 6}, + [309] = {.index = 717, .length = 6}, + [310] = {.index = 723, .length = 4}, + [311] = {.index = 727, .length = 4}, + [312] = {.index = 731, .length = 3}, + [313] = {.index = 734, .length = 3}, + [314] = {.index = 734, .length = 3}, + [315] = {.index = 737, .length = 2}, + [316] = {.index = 739, .length = 2}, + [317] = {.index = 741, .length = 3}, + [318] = {.index = 744, .length = 2}, + [319] = {.index = 746, .length = 2}, + [320] = {.index = 748, .length = 4}, + [321] = {.index = 752, .length = 3}, + [322] = {.index = 755, .length = 3}, + [323] = {.index = 758, .length = 4}, + [324] = {.index = 762, .length = 3}, + [325] = {.index = 765, .length = 3}, + [326] = {.index = 768, .length = 2}, + [327] = {.index = 770, .length = 4}, + [328] = {.index = 774, .length = 5}, + [329] = {.index = 779, .length = 5}, + [330] = {.index = 784, .length = 6}, + [331] = {.index = 790, .length = 6}, + [332] = {.index = 796, .length = 4}, + [333] = {.index = 796, .length = 4}, + [334] = {.index = 800, .length = 4}, + [335] = {.index = 804, .length = 3}, + [336] = {.index = 807, .length = 2}, + [337] = {.index = 809, .length = 2}, + [338] = {.index = 811, .length = 3}, + [339] = {.index = 814, .length = 4}, + [340] = {.index = 818, .length = 4}, + [341] = {.index = 822, .length = 3}, + [342] = {.index = 825, .length = 3}, + [343] = {.index = 828, .length = 4}, + [344] = {.index = 832, .length = 3}, + [345] = {.index = 835, .length = 3}, + [346] = {.index = 838, .length = 5}, + [347] = {.index = 843, .length = 6}, + [348] = {.index = 849, .length = 6}, + [349] = {.index = 855, .length = 3}, + [350] = {.index = 858, .length = 4}, + [351] = {.index = 862, .length = 4}, + [352] = {.index = 866, .length = 3}, + [353] = {.index = 869, .length = 3}, + [354] = {.index = 872, .length = 4}, + [355] = {.index = 876, .length = 6}, + [356] = {.index = 882, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3578,844 +3590,938 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type_parameters, 1, .inherited = true}, [176] = {field_decorator, 0, .inherited = true}, - [177] = - {field_decorator, 0, .inherited = true}, {field_name, 1}, - [179] = - {field_decorator, 1, .inherited = true}, - [180] = + [178] = {field_body, 3}, {field_name, 1}, - [182] = + [180] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [185] = + [183] = {field_type_arguments, 1}, {field_value, 0}, - [187] = + [185] = {field_type_arguments, 1, .inherited = true}, {field_type_arguments, 2, .inherited = true}, {field_value, 1, .inherited = true}, {field_value, 2, .inherited = true}, - [191] = + [189] = {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [194] = + [192] = {field_object, 1, .inherited = true}, {field_property, 1, .inherited = true}, - [196] = + [194] = {field_index, 1, .inherited = true}, {field_object, 1, .inherited = true}, - [198] = + [196] = {field_arguments, 1, .inherited = true}, {field_function, 1, .inherited = true}, - [200] = + [198] = {field_function, 1, .inherited = true}, {field_type_arguments, 1, .inherited = true}, - [202] = + [200] = {field_name, 0}, {field_type_arguments, 1}, - [204] = + [202] = {field_arguments, 1}, {field_function, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [208] = + [206] = {field_body, 3}, {field_type_parameters, 1}, - [210] = + [208] = {field_body, 3}, {field_parameter, 1}, - [212] = + [210] = {field_body, 3}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [216] = + [214] = {field_body, 3}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [220] = + [218] = {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [224] = + [222] = {field_body, 3}, {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [229] = + [227] = {field_arguments, 3}, {field_constructor, 1}, {field_type_arguments, 2}, - [232] = + [230] = {field_left, 1}, {field_right, 3}, - [234] = + [232] = {field_flags, 3}, {field_pattern, 1}, - [236] = + [234] = {field_name, 1}, {field_value, 2}, - [238] = + [236] = {field_constraint, 2}, {field_name, 1}, - [240] = + [238] = {field_attribute, 2, .inherited = true}, {field_name, 1}, - [242] = + [240] = {field_attribute, 0, .inherited = true}, {field_attribute, 1, .inherited = true}, - [244] = + [242] = {field_name, 1}, {field_type_arguments, 2}, - [246] = + [244] = {field_constraint, 1}, {field_name, 0}, {field_value, 2}, - [249] = + [247] = {field_type, 1}, - [250] = + [248] = {field_index, 2}, {field_object, 0}, - [252] = + [250] = {field_arguments, 3}, {field_function, 0}, {field_type_arguments, 2}, - [255] = + [253] = {field_declaration, 3}, {field_decorator, 0, .inherited = true}, - [257] = + [255] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [260] = + [258] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [262] = + [260] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [265] = + [263] = {field_source, 3, .inherited = true}, - [266] = + [264] = {field_alias, 2}, {field_name, 0}, - [268] = + [266] = {field_name, 1}, {field_value, 3}, - [270] = + [268] = {field_body, 3}, {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [275] = + [273] = + {field_body, 3}, + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_parameters, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + {field_type_parameters, 2, .inherited = true}, + [279] = {field_pattern, 3}, - [276] = + [280] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 2}, {field_value, 3, .inherited = true}, - [280] = + [284] = {field_decorator, 0, .inherited = true}, {field_pattern, 3}, - [282] = + [286] = {field_name, 2}, - [283] = + [287] = {field_name, 1}, {field_value, 2, .inherited = true}, - [285] = + [289] = {field_name, 1}, {field_type, 2}, - [287] = + [291] = {field_name, 0}, {field_value, 2, .inherited = true}, - [289] = + [293] = {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [293] = + [297] = {field_decorator, 0, .inherited = true}, {field_name, 2}, - [295] = + [299] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 2, .inherited = true}, - [298] = + [302] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 2}, - [301] = + [305] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [304] = + [308] = {field_type_arguments, 0, .inherited = true}, {field_type_arguments, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [308] = + [312] = {field_parameters, 1}, - [309] = + [313] = {field_function, 0}, {field_type_arguments, 1}, - [311] = + [315] = {field_function, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, {field_type_arguments, 1}, - [315] = + [319] = {field_arguments, 1}, {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, - [319] = + [323] = {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, {field_type_arguments, 1}, - [323] = + [327] = {field_module, 0}, {field_name, 2}, - [325] = + [329] = {field_parameters, 0}, {field_return_type, 2}, - [327] = + [331] = {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, {field_property, 2}, - [331] = + [335] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_object, 0}, {field_property, 2}, - [335] = + [339] = {field_body, 4}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [339] = + [343] = {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [343] = + [347] = {field_body, 4}, {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [348] = + [352] = {field_constraint, 2}, {field_name, 1}, {field_value, 3}, - [351] = + [355] = {field_attribute, 3, .inherited = true}, {field_name, 1}, {field_type_arguments, 2}, - [354] = + [358] = {field_body, 4}, {field_name, 2}, - [356] = + [360] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [359] = + [363] = {field_type, 1}, {field_type, 2, .inherited = true}, - [361] = + [365] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [364] = + [368] = {field_index, 3}, {field_object, 0}, {field_optional_chain, 1}, - [367] = + [371] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [369] = + [373] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [372] = + [376] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [376] = + [380] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [379] = + [383] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [382] = + [386] = {field_alias, 3}, {field_name, 1}, - [384] = + [388] = {field_name, 1}, {field_type_parameters, 2}, {field_value, 4}, - [387] = + [391] = + {field_body, 4}, + {field_name, 1}, + {field_parameters, 3, .inherited = true}, + {field_return_type, 3, .inherited = true}, + {field_type_parameters, 3, .inherited = true}, + [396] = {field_body, 4}, + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_parameters, 3, .inherited = true}, + {field_return_type, 3, .inherited = true}, + {field_type_parameters, 3, .inherited = true}, + [402] = + {field_body, 4}, + {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [392] = + [408] = {field_left, 1}, {field_operator, 2}, {field_right, 3}, - [395] = + [411] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [398] = + [414] = {field_decorator, 0, .inherited = true}, {field_pattern, 4}, - [400] = + [416] = {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [404] = + [420] = {field_type, 3}, - [405] = + [421] = {field_name, 2}, {field_value, 3, .inherited = true}, - [407] = + [423] = {field_name, 2}, {field_type, 3}, - [409] = + [425] = {field_name, 1}, {field_value, 3, .inherited = true}, - [411] = + [427] = {field_name, 1}, {field_type, 3}, - [413] = + [429] = {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [416] = + [432] = {field_name, 3}, - [417] = + [433] = {field_name, 0}, {field_type, 2}, {field_value, 3, .inherited = true}, - [420] = + [436] = {field_decorator, 0, .inherited = true}, {field_name, 3}, - [422] = + [438] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_value, 3, .inherited = true}, - [425] = + [441] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 3}, - [428] = + [444] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 3, .inherited = true}, - [431] = + [447] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 3}, - [434] = + [450] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [438] = + [454] = {field_parameters, 1}, {field_type, 2}, - [440] = + [456] = {field_parameters, 2}, {field_type_parameters, 1}, - [442] = + [458] = {field_parameters, 2}, - [443] = + [459] = {field_index, 0, .inherited = true}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 2}, - [447] = + [463] = {field_parameters, 1}, {field_type, 3}, - [449] = + [465] = {field_parameters, 1}, {field_return_type, 3}, {field_type_parameters, 0}, - [452] = + [468] = {field_body, 5}, {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [457] = + [473] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [460] = + [476] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [462] = + [478] = {field_name, 1}, {field_name, 2, .inherited = true}, - [464] = + [480] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [466] = + [482] = {field_name, 2, .inherited = true}, - [467] = + [483] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [471] = + [487] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [474] = + [490] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [478] = + [494] = {field_body, 5}, {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [483] = + [499] = + {field_body, 5}, + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_parameters, 4, .inherited = true}, + {field_return_type, 4, .inherited = true}, + {field_type_parameters, 4, .inherited = true}, + [505] = + {field_body, 5}, + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_parameters, 4, .inherited = true}, + {field_return_type, 4, .inherited = true}, + {field_type_parameters, 4, .inherited = true}, + [511] = {field_source, 4}, - [484] = + [512] = {field_body, 3}, {field_value, 1}, - [486] = + [514] = {field_kind, 1}, {field_left, 2}, {field_operator, 3}, {field_right, 4}, - [490] = + [518] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [494] = + [522] = {field_body, 4}, {field_parameter, 2}, - [496] = + [524] = {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [500] = + [528] = {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [504] = + [532] = {field_name, 2}, {field_value, 4, .inherited = true}, - [506] = + [534] = {field_name, 2}, {field_type, 4}, - [508] = + [536] = {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [511] = + [539] = {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [514] = + [542] = {field_name, 3}, {field_value, 4, .inherited = true}, - [516] = + [544] = {field_name, 3}, {field_type, 4}, - [518] = + [546] = {field_type, 4}, - [519] = + [547] = {field_name, 4}, - [520] = + [548] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 4, .inherited = true}, - [523] = + [551] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, - [526] = + [554] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_value, 4, .inherited = true}, - [529] = + [557] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 4}, - [532] = + [560] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [536] = + [564] = {field_decorator, 0, .inherited = true}, {field_name, 4}, - [538] = + [566] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [542] = + [570] = {field_parameters, 2}, {field_type, 3}, {field_type_parameters, 1}, - [545] = + [573] = {field_parameters, 2}, {field_type, 3}, - [547] = + [575] = {field_parameters, 3}, {field_type_parameters, 2}, - [549] = + [577] = {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [553] = + [581] = {field_index, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, - [557] = + [585] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, - [561] = + [589] = {field_parameters, 2}, {field_type, 4}, {field_type_parameters, 1}, - [564] = + [592] = {field_parameters, 2}, {field_type, 4}, - [566] = + [594] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [570] = + [598] = {field_body, 6}, {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [575] = + [603] = + {field_body, 6}, + {field_name, 4}, + {field_parameters, 5, .inherited = true}, + {field_return_type, 5, .inherited = true}, + {field_type_parameters, 5, .inherited = true}, + [608] = + {field_body, 6}, + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_parameters, 5, .inherited = true}, + {field_return_type, 5, .inherited = true}, + {field_type_parameters, 5, .inherited = true}, + [614] = {field_body, 6}, + {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [580] = + [620] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, {field_value, 3, .inherited = true}, - [585] = + [625] = {field_body, 5}, {field_parameter, 2}, {field_type, 3}, - [588] = + [628] = {field_index_type, 3}, {field_name, 1}, {field_type, 5}, - [591] = + [631] = {field_alias, 4}, {field_name, 0}, {field_type, 2}, - [594] = + [634] = {field_sign, 0}, {field_type, 5}, - [596] = + [636] = {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [600] = + [640] = {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [604] = + [644] = {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [607] = + [647] = {field_name, 3}, {field_value, 5, .inherited = true}, - [609] = + [649] = {field_name, 3}, {field_type, 5}, - [611] = + [651] = {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [614] = + [654] = {field_name, 4}, {field_value, 5, .inherited = true}, - [616] = + [656] = {field_name, 4}, {field_type, 5}, - [618] = + [658] = {field_name, 5}, - [619] = + [659] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 5, .inherited = true}, - [622] = + [662] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, - [625] = + [665] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [629] = + [669] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [633] = + [673] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 5, .inherited = true}, - [636] = + [676] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, - [639] = + [679] = {field_decorator, 0, .inherited = true}, {field_name, 5}, - [641] = + [681] = {field_parameters, 3}, {field_type, 4}, {field_type_parameters, 2}, - [644] = + [684] = {field_index, 3}, {field_object, 0}, - [646] = + [686] = {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [650] = + [690] = {field_index, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, - [654] = + [694] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, - [658] = + [698] = {field_parameters, 3}, {field_type, 5}, {field_type_parameters, 2}, - [661] = + [701] = {field_body, 7}, {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [666] = + [706] = {field_body, 7}, {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [671] = + [711] = + {field_body, 7}, + {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [675] = + [717] = + {field_body, 7}, + {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [679] = + [723] = + {field_name, 4}, + {field_parameters, 6, .inherited = true}, + {field_return_type, 6, .inherited = true}, + {field_type_parameters, 6, .inherited = true}, + [727] = + {field_name, 5}, + {field_parameters, 6, .inherited = true}, + {field_return_type, 6, .inherited = true}, + {field_type_parameters, 6, .inherited = true}, + [731] = {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [682] = + [734] = {field_index_type, 4}, {field_name, 2}, {field_type, 6}, - [685] = + [737] = {field_name, 4}, {field_value, 6, .inherited = true}, - [687] = + [739] = {field_name, 4}, {field_type, 6}, - [689] = + [741] = {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [692] = + [744] = {field_name, 5}, {field_value, 6, .inherited = true}, - [694] = + [746] = {field_name, 5}, {field_type, 6}, - [696] = + [748] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [700] = + [752] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 6, .inherited = true}, - [703] = + [755] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, - [706] = + [758] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [710] = + [762] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 6, .inherited = true}, - [713] = + [765] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, - [716] = + [768] = {field_decorator, 0, .inherited = true}, {field_name, 6}, - [718] = + [770] = {field_alternative, 6}, {field_consequence, 4}, {field_left, 0}, {field_right, 2}, - [722] = + [774] = {field_body, 8}, {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [727] = + [779] = + {field_body, 8}, + {field_name, 6}, + {field_parameters, 7, .inherited = true}, + {field_return_type, 7, .inherited = true}, + {field_type_parameters, 7, .inherited = true}, + [784] = + {field_body, 8}, + {field_decorator, 0, .inherited = true}, + {field_name, 5}, + {field_parameters, 7, .inherited = true}, + {field_return_type, 7, .inherited = true}, + {field_type_parameters, 7, .inherited = true}, + [790] = {field_body, 8}, + {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [732] = + [796] = {field_index_type, 5}, {field_name, 3}, {field_sign, 0}, {field_type, 7}, - [736] = + [800] = {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [740] = + [804] = {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [743] = + [807] = {field_name, 5}, {field_value, 7, .inherited = true}, - [745] = + [809] = {field_name, 5}, {field_type, 7}, - [747] = + [811] = {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [750] = + [814] = {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [754] = + [818] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [758] = + [822] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 7, .inherited = true}, - [761] = + [825] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, - [764] = + [828] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [768] = + [832] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_value, 7, .inherited = true}, - [771] = + [835] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 7}, - [774] = + [838] = {field_body, 9}, {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [779] = + [843] = + {field_body, 9}, + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_parameters, 8, .inherited = true}, + {field_return_type, 8, .inherited = true}, + {field_type_parameters, 8, .inherited = true}, + [849] = + {field_body, 9}, + {field_decorator, 0, .inherited = true}, + {field_name, 7}, + {field_parameters, 8, .inherited = true}, + {field_return_type, 8, .inherited = true}, + {field_type_parameters, 8, .inherited = true}, + [855] = {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, - [782] = + [858] = {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [786] = + [862] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, - [790] = + [866] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_value, 8, .inherited = true}, - [793] = + [869] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 8}, - [796] = + [872] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 7}, {field_value, 8, .inherited = true}, - [800] = + [876] = + {field_body, 10}, + {field_decorator, 0, .inherited = true}, + {field_name, 7}, + {field_parameters, 9, .inherited = true}, + {field_return_type, 9, .inherited = true}, + {field_type_parameters, 9, .inherited = true}, + [882] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 8}, @@ -4492,151 +4598,151 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [84] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [106] = { + [104] = { [1] = alias_sym_type_identifier, }, - [107] = { + [105] = { [1] = alias_sym_type_identifier, }, - [115] = { + [113] = { [0] = alias_sym_type_identifier, }, - [116] = { + [114] = { [1] = alias_sym_type_identifier, }, - [117] = { + [115] = { [1] = anon_sym_unique, }, - [121] = { + [119] = { [1] = sym_identifier, }, - [128] = { + [126] = { [1] = sym_identifier, }, - [131] = { + [129] = { [1] = alias_sym_type_identifier, }, - [132] = { + [130] = { [1] = alias_sym_type_identifier, }, - [136] = { + [134] = { [0] = alias_sym_type_identifier, }, - [137] = { + [135] = { [1] = sym_member_expression, }, - [138] = { + [136] = { [1] = sym_member_expression, }, - [139] = { + [137] = { [2] = alias_sym_type_identifier, }, - [140] = { + [138] = { [1] = alias_sym_type_identifier, }, - [142] = { + [140] = { [1] = alias_sym_type_identifier, [3] = alias_sym_interface_body, }, - [143] = { + [141] = { [1] = alias_sym_type_identifier, [3] = alias_sym_interface_body, }, - [147] = { + [145] = { [2] = alias_sym_type_identifier, }, - [152] = { + [150] = { [1] = alias_sym_type_identifier, }, - [154] = { + [153] = { [0] = sym_identifier, }, - [166] = { + [165] = { [1] = alias_sym_type_identifier, }, - [173] = { + [172] = { [2] = alias_sym_type_identifier, }, - [175] = { + [174] = { [2] = alias_sym_property_identifier, }, - [177] = { + [176] = { [2] = alias_sym_property_identifier, }, - [182] = { + [181] = { [1] = alias_sym_type_identifier, }, - [184] = { + [183] = { [1] = sym_member_expression, }, - [185] = { + [184] = { [2] = alias_sym_type_identifier, }, - [186] = { + [185] = { [2] = alias_sym_type_identifier, }, - [187] = { + [186] = { [1] = alias_sym_type_identifier, }, - [189] = { + [188] = { [1] = alias_sym_type_identifier, [4] = alias_sym_interface_body, }, - [192] = { + [191] = { [0] = sym_identifier, }, - [194] = { + [193] = { [2] = alias_sym_type_identifier, }, - [195] = { + [194] = { [2] = alias_sym_type_identifier, }, - [197] = { + [196] = { [3] = alias_sym_type_identifier, }, - [199] = { + [198] = { [1] = alias_sym_type_identifier, }, - [201] = { + [202] = { [1] = sym_identifier, }, - [202] = { + [203] = { [1] = sym_identifier, }, - [207] = { + [208] = { [0] = alias_sym_type_identifier, }, - [225] = { + [226] = { [2] = alias_sym_property_identifier, }, - [230] = { + [231] = { [2] = alias_sym_type_identifier, }, - [235] = { + [236] = { [2] = alias_sym_type_identifier, }, - [236] = { + [237] = { [3] = alias_sym_type_identifier, }, - [237] = { + [238] = { [3] = alias_sym_type_identifier, }, - [269] = { + [272] = { [3] = alias_sym_property_identifier, }, - [270] = { + [273] = { [3] = alias_sym_type_identifier, }, - [275] = { + [280] = { [1] = sym_identifier, }, - [276] = { + [281] = { [0] = alias_sym_type_identifier, }, - [306] = { + [313] = { [2] = sym_identifier, }, - [323] = { + [332] = { [3] = sym_identifier, }, }; @@ -4671,143 +4777,143 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [13] = 13, [14] = 14, [15] = 15, - [16] = 16, - [17] = 17, + [16] = 14, + [17] = 14, [18] = 18, - [19] = 14, - [20] = 17, + [19] = 19, + [20] = 14, [21] = 14, [22] = 14, - [23] = 17, - [24] = 17, - [25] = 14, - [26] = 17, - [27] = 14, - [28] = 17, - [29] = 17, - [30] = 14, + [23] = 18, + [24] = 18, + [25] = 18, + [26] = 18, + [27] = 27, + [28] = 18, + [29] = 14, + [30] = 18, [31] = 31, - [32] = 32, + [32] = 31, [33] = 33, [34] = 34, - [35] = 31, + [35] = 34, [36] = 36, - [37] = 37, + [37] = 31, [38] = 38, - [39] = 38, - [40] = 32, - [41] = 34, - [42] = 37, + [39] = 31, + [40] = 31, + [41] = 33, + [42] = 36, [43] = 43, - [44] = 44, - [45] = 45, - [46] = 33, - [47] = 36, - [48] = 43, - [49] = 44, - [50] = 44, - [51] = 44, - [52] = 45, - [53] = 44, - [54] = 44, - [55] = 44, - [56] = 44, - [57] = 44, - [58] = 44, + [44] = 43, + [45] = 33, + [46] = 46, + [47] = 47, + [48] = 48, + [49] = 49, + [50] = 47, + [51] = 46, + [52] = 31, + [53] = 48, + [54] = 49, + [55] = 47, + [56] = 56, + [57] = 31, + [58] = 31, [59] = 38, - [60] = 32, + [60] = 31, [61] = 31, - [62] = 37, - [63] = 43, - [64] = 45, - [65] = 33, + [62] = 48, + [63] = 46, + [64] = 43, + [65] = 34, [66] = 36, - [67] = 34, - [68] = 68, + [67] = 49, + [68] = 38, [69] = 69, [70] = 69, [71] = 69, [72] = 72, [73] = 73, - [74] = 74, + [74] = 72, [75] = 75, - [76] = 76, + [76] = 72, [77] = 77, - [78] = 72, - [79] = 77, - [80] = 72, + [78] = 75, + [79] = 79, + [80] = 80, [81] = 81, [82] = 82, [83] = 83, [84] = 84, - [85] = 85, - [86] = 84, - [87] = 84, + [85] = 84, + [86] = 83, + [87] = 87, [88] = 84, [89] = 84, - [90] = 83, + [90] = 84, [91] = 91, [92] = 92, [93] = 91, - [94] = 94, + [94] = 91, [95] = 95, - [96] = 96, + [96] = 95, [97] = 91, [98] = 91, - [99] = 91, - [100] = 92, - [101] = 94, - [102] = 92, - [103] = 96, - [104] = 96, - [105] = 91, + [99] = 95, + [100] = 100, + [101] = 101, + [102] = 91, + [103] = 92, + [104] = 101, + [105] = 92, [106] = 106, [107] = 107, - [108] = 85, + [108] = 87, [109] = 91, [110] = 91, [111] = 91, - [112] = 83, - [113] = 94, + [112] = 112, + [113] = 91, [114] = 114, - [115] = 91, - [116] = 92, - [117] = 117, + [115] = 83, + [116] = 91, + [117] = 92, [118] = 92, - [119] = 91, - [120] = 91, - [121] = 92, - [122] = 94, - [123] = 95, - [124] = 106, + [119] = 92, + [120] = 101, + [121] = 101, + [122] = 91, + [123] = 91, + [124] = 92, [125] = 92, - [126] = 92, + [126] = 91, [127] = 91, - [128] = 91, + [128] = 107, [129] = 91, - [130] = 91, + [130] = 100, [131] = 131, [132] = 131, - [133] = 131, - [134] = 131, + [133] = 133, + [134] = 92, [135] = 131, - [136] = 92, - [137] = 131, + [136] = 131, + [137] = 91, [138] = 131, [139] = 131, [140] = 131, - [141] = 141, - [142] = 91, + [141] = 131, + [142] = 131, [143] = 143, [144] = 144, [145] = 144, [146] = 144, - [147] = 144, - [148] = 144, + [147] = 147, + [148] = 148, [149] = 144, [150] = 144, - [151] = 151, - [152] = 152, + [151] = 144, + [152] = 144, [153] = 144, [154] = 144, [155] = 155, @@ -4821,37 +4927,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [163] = 155, [164] = 164, [165] = 165, - [166] = 166, + [166] = 164, [167] = 165, - [168] = 166, - [169] = 166, + [168] = 164, + [169] = 169, [170] = 165, - [171] = 166, + [171] = 164, [172] = 165, - [173] = 164, - [174] = 164, + [173] = 169, + [174] = 169, [175] = 175, [176] = 176, - [177] = 164, - [178] = 175, - [179] = 164, + [177] = 169, + [178] = 169, + [179] = 175, [180] = 175, - [181] = 164, + [181] = 169, [182] = 176, - [183] = 164, - [184] = 164, - [185] = 164, + [183] = 169, + [184] = 169, + [185] = 169, [186] = 186, [187] = 186, [188] = 188, [189] = 189, - [190] = 189, - [191] = 191, + [190] = 190, + [191] = 189, [192] = 188, - [193] = 191, - [194] = 188, - [195] = 191, - [196] = 189, + [193] = 189, + [194] = 190, + [195] = 188, + [196] = 190, [197] = 197, [198] = 198, [199] = 199, @@ -4859,18 +4965,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [201] = 199, [202] = 199, [203] = 199, - [204] = 199, - [205] = 205, + [204] = 204, + [205] = 199, [206] = 199, - [207] = 207, + [207] = 204, [208] = 208, - [209] = 207, + [209] = 209, [210] = 210, - [211] = 197, + [211] = 211, [212] = 212, [213] = 213, - [214] = 214, - [215] = 207, + [214] = 211, + [215] = 211, [216] = 216, [217] = 217, [218] = 218, @@ -4879,8 +4985,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [221] = 221, [222] = 222, [223] = 223, - [224] = 197, - [225] = 217, + [224] = 224, + [225] = 225, [226] = 226, [227] = 227, [228] = 228, @@ -4892,61 +4998,61 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [234] = 234, [235] = 235, [236] = 236, - [237] = 237, - [238] = 232, + [237] = 204, + [238] = 238, [239] = 239, [240] = 240, - [241] = 241, + [241] = 223, [242] = 242, [243] = 243, [244] = 244, - [245] = 245, + [245] = 220, [246] = 246, [247] = 247, [248] = 248, - [249] = 249, - [250] = 197, - [251] = 249, - [252] = 197, - [253] = 253, - [254] = 249, - [255] = 249, - [256] = 249, - [257] = 197, - [258] = 197, - [259] = 197, - [260] = 197, - [261] = 261, - [262] = 249, - [263] = 249, - [264] = 197, + [249] = 204, + [250] = 250, + [251] = 204, + [252] = 252, + [253] = 204, + [254] = 204, + [255] = 252, + [256] = 252, + [257] = 252, + [258] = 204, + [259] = 259, + [260] = 252, + [261] = 252, + [262] = 252, + [263] = 204, + [264] = 204, [265] = 265, [266] = 266, - [267] = 266, - [268] = 268, - [269] = 266, - [270] = 270, - [271] = 266, - [272] = 266, - [273] = 266, - [274] = 266, - [275] = 275, - [276] = 266, - [277] = 277, + [267] = 267, + [268] = 265, + [269] = 269, + [270] = 265, + [271] = 271, + [272] = 265, + [273] = 265, + [274] = 269, + [275] = 265, + [276] = 265, + [277] = 265, [278] = 278, - [279] = 266, - [280] = 278, - [281] = 266, - [282] = 282, - [283] = 266, - [284] = 282, - [285] = 266, - [286] = 286, - [287] = 266, - [288] = 277, - [289] = 277, - [290] = 266, - [291] = 270, + [279] = 269, + [280] = 265, + [281] = 281, + [282] = 266, + [283] = 283, + [284] = 265, + [285] = 285, + [286] = 271, + [287] = 265, + [288] = 265, + [289] = 265, + [290] = 285, + [291] = 265, [292] = 292, [293] = 293, [294] = 294, @@ -4967,322 +5073,322 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [309] = 309, [310] = 310, [311] = 311, - [312] = 312, - [313] = 312, - [314] = 314, - [315] = 315, - [316] = 311, - [317] = 317, - [318] = 305, - [319] = 319, - [320] = 308, - [321] = 321, - [322] = 301, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 317, - [327] = 312, - [328] = 317, - [329] = 308, - [330] = 301, - [331] = 323, - [332] = 324, - [333] = 312, - [334] = 312, - [335] = 317, - [336] = 308, - [337] = 337, - [338] = 323, - [339] = 324, - [340] = 312, - [341] = 325, - [342] = 317, - [343] = 308, - [344] = 301, - [345] = 323, - [346] = 324, - [347] = 317, - [348] = 312, - [349] = 317, - [350] = 308, - [351] = 301, - [352] = 323, - [353] = 324, - [354] = 312, - [355] = 317, - [356] = 308, - [357] = 301, - [358] = 323, - [359] = 324, - [360] = 308, - [361] = 312, - [362] = 317, - [363] = 308, - [364] = 301, - [365] = 323, - [366] = 324, - [367] = 301, - [368] = 323, - [369] = 324, - [370] = 370, - [371] = 301, - [372] = 323, - [373] = 324, + [312] = 302, + [313] = 304, + [314] = 306, + [315] = 303, + [316] = 316, + [317] = 311, + [318] = 304, + [319] = 308, + [320] = 304, + [321] = 304, + [322] = 308, + [323] = 302, + [324] = 304, + [325] = 303, + [326] = 306, + [327] = 301, + [328] = 311, + [329] = 303, + [330] = 311, + [331] = 306, + [332] = 303, + [333] = 303, + [334] = 303, + [335] = 306, + [336] = 336, + [337] = 308, + [338] = 306, + [339] = 311, + [340] = 311, + [341] = 306, + [342] = 311, + [343] = 343, + [344] = 344, + [345] = 311, + [346] = 306, + [347] = 303, + [348] = 304, + [349] = 302, + [350] = 304, + [351] = 308, + [352] = 352, + [353] = 308, + [354] = 354, + [355] = 308, + [356] = 356, + [357] = 304, + [358] = 344, + [359] = 302, + [360] = 303, + [361] = 306, + [362] = 311, + [363] = 363, + [364] = 336, + [365] = 365, + [366] = 366, + [367] = 302, + [368] = 308, + [369] = 308, + [370] = 302, + [371] = 302, + [372] = 302, + [373] = 373, [374] = 374, [375] = 375, [376] = 376, [377] = 377, - [378] = 375, + [378] = 378, [379] = 379, [380] = 380, [381] = 381, [382] = 382, - [383] = 377, + [383] = 380, [384] = 384, - [385] = 385, - [386] = 377, + [385] = 382, + [386] = 376, [387] = 387, - [388] = 388, + [388] = 379, [389] = 389, - [390] = 389, + [390] = 390, [391] = 391, - [392] = 385, - [393] = 393, - [394] = 394, - [395] = 375, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 401, + [392] = 387, + [393] = 381, + [394] = 381, + [395] = 395, + [396] = 382, + [397] = 379, + [398] = 387, + [399] = 377, + [400] = 381, + [401] = 391, [402] = 402, - [403] = 403, + [403] = 377, [404] = 404, [405] = 405, - [406] = 406, - [407] = 407, - [408] = 408, - [409] = 409, - [410] = 381, - [411] = 411, - [412] = 396, - [413] = 413, + [406] = 391, + [407] = 391, + [408] = 377, + [409] = 380, + [410] = 410, + [411] = 382, + [412] = 379, + [413] = 380, [414] = 414, - [415] = 415, - [416] = 391, - [417] = 377, - [418] = 418, - [419] = 419, - [420] = 391, - [421] = 385, - [422] = 394, - [423] = 375, - [424] = 396, - [425] = 398, - [426] = 399, - [427] = 400, - [428] = 401, - [429] = 402, - [430] = 403, - [431] = 404, - [432] = 405, - [433] = 406, - [434] = 407, - [435] = 408, - [436] = 409, - [437] = 397, - [438] = 413, - [439] = 414, - [440] = 377, - [441] = 419, - [442] = 442, - [443] = 376, - [444] = 391, - [445] = 398, - [446] = 389, - [447] = 385, - [448] = 385, - [449] = 394, - [450] = 375, - [451] = 396, - [452] = 397, - [453] = 398, - [454] = 399, - [455] = 400, - [456] = 401, - [457] = 402, - [458] = 403, - [459] = 404, - [460] = 405, - [461] = 406, - [462] = 407, - [463] = 408, - [464] = 418, - [465] = 409, - [466] = 466, - [467] = 413, - [468] = 414, - [469] = 377, - [470] = 419, - [471] = 391, - [472] = 385, - [473] = 394, - [474] = 375, - [475] = 399, - [476] = 396, - [477] = 398, - [478] = 399, - [479] = 400, - [480] = 401, - [481] = 402, - [482] = 403, - [483] = 404, - [484] = 405, - [485] = 406, - [486] = 407, - [487] = 408, - [488] = 409, - [489] = 400, - [490] = 401, - [491] = 413, - [492] = 414, - [493] = 493, - [494] = 377, - [495] = 394, - [496] = 419, - [497] = 442, - [498] = 442, - [499] = 376, - [500] = 376, - [501] = 389, - [502] = 397, - [503] = 418, - [504] = 385, - [505] = 394, - [506] = 375, - [507] = 377, - [508] = 396, - [509] = 398, - [510] = 399, - [511] = 400, - [512] = 401, - [513] = 402, - [514] = 403, - [515] = 404, - [516] = 409, - [517] = 406, - [518] = 407, - [519] = 408, - [520] = 402, - [521] = 409, - [522] = 403, - [523] = 404, + [415] = 376, + [416] = 414, + [417] = 414, + [418] = 387, + [419] = 414, + [420] = 402, + [421] = 421, + [422] = 379, + [423] = 402, + [424] = 424, + [425] = 424, + [426] = 426, + [427] = 427, + [428] = 410, + [429] = 391, + [430] = 426, + [431] = 377, + [432] = 432, + [433] = 414, + [434] = 379, + [435] = 376, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 410, + [442] = 387, + [443] = 443, + [444] = 437, + [445] = 379, + [446] = 432, + [447] = 440, + [448] = 382, + [449] = 424, + [450] = 378, + [451] = 384, + [452] = 410, + [453] = 453, + [454] = 454, + [455] = 380, + [456] = 381, + [457] = 389, + [458] = 458, + [459] = 459, + [460] = 453, + [461] = 402, + [462] = 391, + [463] = 436, + [464] = 375, + [465] = 377, + [466] = 376, + [467] = 405, + [468] = 436, + [469] = 414, + [470] = 436, + [471] = 459, + [472] = 382, + [473] = 438, + [474] = 402, + [475] = 436, + [476] = 440, + [477] = 437, + [478] = 432, + [479] = 378, + [480] = 384, + [481] = 453, + [482] = 454, + [483] = 483, + [484] = 389, + [485] = 459, + [486] = 380, + [487] = 427, + [488] = 436, + [489] = 402, + [490] = 490, + [491] = 375, + [492] = 454, + [493] = 424, + [494] = 426, + [495] = 387, + [496] = 410, + [497] = 497, + [498] = 438, + [499] = 424, + [500] = 389, + [501] = 438, + [502] = 440, + [503] = 379, + [504] = 381, + [505] = 426, + [506] = 506, + [507] = 432, + [508] = 379, + [509] = 378, + [510] = 440, + [511] = 490, + [512] = 454, + [513] = 384, + [514] = 405, + [515] = 410, + [516] = 453, + [517] = 426, + [518] = 454, + [519] = 453, + [520] = 459, + [521] = 389, + [522] = 375, + [523] = 459, [524] = 405, - [525] = 413, - [526] = 414, - [527] = 396, - [528] = 398, - [529] = 377, - [530] = 466, - [531] = 399, - [532] = 419, - [533] = 400, - [534] = 442, - [535] = 376, - [536] = 401, - [537] = 389, - [538] = 397, - [539] = 402, - [540] = 419, - [541] = 385, - [542] = 394, - [543] = 375, - [544] = 396, - [545] = 398, - [546] = 399, - [547] = 400, - [548] = 401, - [549] = 402, - [550] = 403, - [551] = 404, - [552] = 405, - [553] = 406, - [554] = 407, - [555] = 408, - [556] = 409, - [557] = 406, - [558] = 413, - [559] = 414, - [560] = 403, - [561] = 404, - [562] = 377, - [563] = 405, - [564] = 406, - [565] = 419, - [566] = 442, - [567] = 376, - [568] = 407, - [569] = 389, - [570] = 397, - [571] = 408, - [572] = 409, - [573] = 442, - [574] = 376, - [575] = 391, - [576] = 418, + [525] = 459, + [526] = 526, + [527] = 527, + [528] = 454, + [529] = 389, + [530] = 381, + [531] = 438, + [532] = 389, + [533] = 453, + [534] = 459, + [535] = 454, + [536] = 426, + [537] = 537, + [538] = 384, + [539] = 539, + [540] = 410, + [541] = 381, + [542] = 453, + [543] = 384, + [544] = 378, + [545] = 380, + [546] = 432, + [547] = 426, + [548] = 437, + [549] = 424, + [550] = 440, + [551] = 438, + [552] = 378, + [553] = 436, + [554] = 382, + [555] = 376, + [556] = 432, + [557] = 437, + [558] = 440, + [559] = 438, + [560] = 436, + [561] = 414, + [562] = 384, + [563] = 379, + [564] = 379, + [565] = 382, + [566] = 378, + [567] = 432, + [568] = 375, + [569] = 379, + [570] = 414, + [571] = 440, + [572] = 376, + [573] = 377, + [574] = 424, + [575] = 377, + [576] = 391, [577] = 391, - [578] = 385, - [579] = 394, - [580] = 375, - [581] = 396, - [582] = 398, - [583] = 399, - [584] = 400, - [585] = 401, + [578] = 402, + [579] = 380, + [580] = 437, + [581] = 379, + [582] = 375, + [583] = 437, + [584] = 437, + [585] = 381, [586] = 402, - [587] = 403, - [588] = 404, - [589] = 405, - [590] = 406, - [591] = 591, - [592] = 407, - [593] = 408, - [594] = 409, - [595] = 595, - [596] = 407, - [597] = 408, - [598] = 413, - [599] = 414, - [600] = 442, - [601] = 377, - [602] = 413, - [603] = 414, - [604] = 419, - [605] = 605, - [606] = 442, - [607] = 376, - [608] = 377, - [609] = 377, - [610] = 419, - [611] = 413, - [612] = 414, - [613] = 389, - [614] = 397, - [615] = 415, - [616] = 394, - [617] = 442, - [618] = 376, - [619] = 619, - [620] = 391, - [621] = 391, - [622] = 389, - [623] = 377, - [624] = 397, - [625] = 389, - [626] = 397, - [627] = 405, + [587] = 459, + [588] = 497, + [589] = 391, + [590] = 377, + [591] = 414, + [592] = 432, + [593] = 436, + [594] = 402, + [595] = 438, + [596] = 440, + [597] = 387, + [598] = 387, + [599] = 437, + [600] = 432, + [601] = 387, + [602] = 378, + [603] = 376, + [604] = 384, + [605] = 378, + [606] = 375, + [607] = 453, + [608] = 454, + [609] = 424, + [610] = 375, + [611] = 389, + [612] = 459, + [613] = 438, + [614] = 382, + [615] = 380, + [616] = 384, + [617] = 453, + [618] = 375, + [619] = 426, + [620] = 410, + [621] = 426, + [622] = 410, + [623] = 379, + [624] = 389, + [625] = 424, + [626] = 376, + [627] = 454, [628] = 628, [629] = 628, [630] = 628, @@ -5300,109 +5406,109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [642] = 640, [643] = 643, [644] = 644, - [645] = 231, + [645] = 643, [646] = 644, - [647] = 643, - [648] = 245, - [649] = 643, - [650] = 644, + [647] = 644, + [648] = 643, + [649] = 221, + [650] = 222, [651] = 651, [652] = 652, [653] = 653, - [654] = 654, - [655] = 651, + [654] = 652, + [655] = 655, [656] = 656, - [657] = 651, - [658] = 658, + [657] = 657, + [658] = 652, [659] = 659, [660] = 660, - [661] = 661, - [662] = 659, - [663] = 660, - [664] = 661, - [665] = 659, - [666] = 660, - [667] = 661, + [661] = 659, + [662] = 662, + [663] = 659, + [664] = 662, + [665] = 660, + [666] = 662, + [667] = 660, [668] = 668, [669] = 668, [670] = 670, [671] = 671, [672] = 671, - [673] = 671, - [674] = 670, + [673] = 673, + [674] = 671, [675] = 675, - [676] = 676, + [676] = 670, [677] = 671, - [678] = 671, - [679] = 675, - [680] = 675, - [681] = 671, - [682] = 682, - [683] = 226, - [684] = 671, - [685] = 671, - [686] = 686, - [687] = 243, - [688] = 671, - [689] = 218, - [690] = 218, - [691] = 246, - [692] = 671, + [678] = 675, + [679] = 671, + [680] = 671, + [681] = 675, + [682] = 236, + [683] = 683, + [684] = 684, + [685] = 232, + [686] = 671, + [687] = 671, + [688] = 688, + [689] = 668, + [690] = 671, + [691] = 671, + [692] = 225, [693] = 693, - [694] = 243, - [695] = 671, - [696] = 696, - [697] = 697, - [698] = 668, - [699] = 220, - [700] = 696, - [701] = 239, - [702] = 671, - [703] = 239, - [704] = 226, - [705] = 696, - [706] = 706, - [707] = 671, - [708] = 671, - [709] = 210, + [694] = 671, + [695] = 238, + [696] = 232, + [697] = 247, + [698] = 698, + [699] = 236, + [700] = 235, + [701] = 698, + [702] = 225, + [703] = 698, + [704] = 238, + [705] = 671, + [706] = 212, + [707] = 213, + [708] = 708, + [709] = 673, [710] = 671, - [711] = 214, + [711] = 670, [712] = 671, - [713] = 670, - [714] = 676, + [713] = 671, + [714] = 671, [715] = 715, [716] = 716, - [717] = 717, + [717] = 231, [718] = 718, [719] = 719, [720] = 720, - [721] = 721, + [721] = 210, [722] = 722, [723] = 723, [724] = 724, - [725] = 725, + [725] = 723, [726] = 726, - [727] = 726, + [727] = 727, [728] = 728, - [729] = 671, - [730] = 730, - [731] = 731, - [732] = 732, - [733] = 726, + [729] = 729, + [730] = 723, + [731] = 671, + [732] = 230, + [733] = 723, [734] = 734, [735] = 735, [736] = 736, - [737] = 228, + [737] = 723, [738] = 738, - [739] = 236, - [740] = 726, - [741] = 213, - [742] = 726, - [743] = 726, - [744] = 726, - [745] = 726, + [739] = 723, + [740] = 740, + [741] = 723, + [742] = 723, + [743] = 743, + [744] = 744, + [745] = 745, [746] = 746, - [747] = 726, + [747] = 723, [748] = 748, [749] = 749, [750] = 750, @@ -5417,8 +5523,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [759] = 759, [760] = 760, [761] = 761, - [762] = 246, - [763] = 220, + [762] = 762, + [763] = 763, [764] = 764, [765] = 765, [766] = 766, @@ -5438,19 +5544,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [780] = 780, [781] = 781, [782] = 782, - [783] = 775, + [783] = 783, [784] = 784, [785] = 785, - [786] = 775, + [786] = 786, [787] = 787, [788] = 788, [789] = 789, [790] = 790, - [791] = 775, + [791] = 791, [792] = 792, [793] = 793, - [794] = 794, - [795] = 795, + [794] = 219, + [795] = 224, [796] = 796, [797] = 797, [798] = 798, @@ -5464,14 +5570,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [806] = 806, [807] = 807, [808] = 808, - [809] = 809, + [809] = 757, [810] = 810, [811] = 811, [812] = 812, [813] = 813, [814] = 814, [815] = 815, - [816] = 816, + [816] = 757, [817] = 817, [818] = 818, [819] = 819, @@ -5479,10 +5585,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [821] = 821, [822] = 822, [823] = 823, - [824] = 824, - [825] = 825, + [824] = 757, + [825] = 757, [826] = 826, - [827] = 827, + [827] = 247, [828] = 828, [829] = 829, [830] = 830, @@ -5502,22 +5608,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [844] = 844, [845] = 845, [846] = 846, - [847] = 775, + [847] = 847, [848] = 848, [849] = 849, - [850] = 850, + [850] = 235, [851] = 851, [852] = 852, [853] = 853, [854] = 854, - [855] = 247, + [855] = 855, [856] = 856, [857] = 857, [858] = 858, [859] = 859, [860] = 860, [861] = 861, - [862] = 222, + [862] = 862, [863] = 863, [864] = 864, [865] = 865, @@ -5526,603 +5632,603 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [868] = 868, [869] = 869, [870] = 870, - [871] = 870, - [872] = 872, - [873] = 872, - [874] = 872, + [871] = 871, + [872] = 870, + [873] = 871, + [874] = 870, [875] = 870, - [876] = 872, - [877] = 870, - [878] = 870, - [879] = 872, + [876] = 870, + [877] = 871, + [878] = 871, + [879] = 871, [880] = 880, [881] = 881, - [882] = 720, - [883] = 883, + [882] = 882, + [883] = 740, [884] = 884, - [885] = 885, + [885] = 715, [886] = 886, [887] = 887, [888] = 888, [889] = 889, [890] = 890, [891] = 891, - [892] = 730, + [892] = 892, [893] = 893, [894] = 894, - [895] = 894, + [895] = 895, [896] = 894, - [897] = 894, + [897] = 897, [898] = 894, - [899] = 899, - [900] = 899, - [901] = 901, - [902] = 901, - [903] = 899, - [904] = 899, - [905] = 899, - [906] = 894, - [907] = 901, - [908] = 899, - [909] = 899, - [910] = 894, + [899] = 894, + [900] = 895, + [901] = 897, + [902] = 897, + [903] = 894, + [904] = 895, + [905] = 897, + [906] = 897, + [907] = 897, + [908] = 894, + [909] = 894, + [910] = 897, [911] = 911, [912] = 912, - [913] = 913, - [914] = 914, - [915] = 914, - [916] = 914, - [917] = 917, + [913] = 911, + [914] = 912, + [915] = 915, + [916] = 912, + [917] = 915, [918] = 918, - [919] = 917, - [920] = 917, - [921] = 917, - [922] = 922, - [923] = 922, - [924] = 914, - [925] = 914, - [926] = 922, - [927] = 922, - [928] = 914, - [929] = 922, - [930] = 917, - [931] = 922, - [932] = 914, - [933] = 922, + [919] = 911, + [920] = 911, + [921] = 911, + [922] = 911, + [923] = 915, + [924] = 915, + [925] = 912, + [926] = 911, + [927] = 912, + [928] = 915, + [929] = 915, + [930] = 915, + [931] = 931, + [932] = 932, + [933] = 933, [934] = 934, - [935] = 935, - [936] = 936, + [935] = 933, + [936] = 932, [937] = 937, [938] = 938, - [939] = 939, + [939] = 931, [940] = 940, [941] = 941, [942] = 942, [943] = 943, [944] = 944, - [945] = 938, + [945] = 945, [946] = 946, - [947] = 939, + [947] = 938, [948] = 948, - [949] = 949, + [949] = 934, [950] = 950, - [951] = 951, - [952] = 938, - [953] = 939, - [954] = 934, - [955] = 941, - [956] = 942, - [957] = 948, - [958] = 941, - [959] = 942, - [960] = 943, - [961] = 944, - [962] = 949, - [963] = 963, - [964] = 950, - [965] = 948, - [966] = 949, - [967] = 950, - [968] = 951, - [969] = 941, - [970] = 942, - [971] = 951, - [972] = 972, + [951] = 944, + [952] = 943, + [953] = 953, + [954] = 938, + [955] = 955, + [956] = 956, + [957] = 937, + [958] = 933, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 943, + [963] = 945, + [964] = 942, + [965] = 932, + [966] = 931, + [967] = 945, + [968] = 953, + [969] = 940, + [970] = 932, + [971] = 931, + [972] = 933, [973] = 973, - [974] = 941, - [975] = 942, - [976] = 935, - [977] = 936, - [978] = 937, - [979] = 979, - [980] = 938, - [981] = 939, - [982] = 943, - [983] = 944, - [984] = 943, - [985] = 948, - [986] = 949, - [987] = 950, - [988] = 988, - [989] = 989, + [974] = 948, + [975] = 940, + [976] = 942, + [977] = 977, + [978] = 978, + [979] = 945, + [980] = 980, + [981] = 959, + [982] = 946, + [983] = 948, + [984] = 984, + [985] = 940, + [986] = 934, + [987] = 987, + [988] = 940, + [989] = 950, [990] = 990, - [991] = 951, - [992] = 992, - [993] = 993, - [994] = 943, + [991] = 942, + [992] = 950, + [993] = 950, + [994] = 934, [995] = 944, - [996] = 972, - [997] = 973, - [998] = 935, - [999] = 936, - [1000] = 937, - [1001] = 1001, - [1002] = 1002, - [1003] = 992, - [1004] = 944, - [1005] = 938, - [1006] = 939, - [1007] = 938, - [1008] = 941, - [1009] = 942, - [1010] = 943, - [1011] = 944, - [1012] = 939, - [1013] = 1002, - [1014] = 948, - [1015] = 949, - [1016] = 1016, - [1017] = 950, - [1018] = 951, - [1019] = 943, - [1020] = 944, - [1021] = 993, - [1022] = 948, - [1023] = 949, - [1024] = 950, - [1025] = 973, - [1026] = 1026, - [1027] = 1027, - [1028] = 1028, - [1029] = 1029, + [996] = 953, + [997] = 953, + [998] = 960, + [999] = 942, + [1000] = 946, + [1001] = 960, + [1002] = 959, + [1003] = 944, + [1004] = 953, + [1005] = 1005, + [1006] = 937, + [1007] = 1007, + [1008] = 931, + [1009] = 956, + [1010] = 937, + [1011] = 938, + [1012] = 946, + [1013] = 943, + [1014] = 945, + [1015] = 940, + [1016] = 990, + [1017] = 944, + [1018] = 960, + [1019] = 933, + [1020] = 960, + [1021] = 938, + [1022] = 937, + [1023] = 959, + [1024] = 959, + [1025] = 932, + [1026] = 948, + [1027] = 948, + [1028] = 943, + [1029] = 946, [1030] = 1030, - [1031] = 948, - [1032] = 949, - [1033] = 1016, - [1034] = 972, - [1035] = 973, - [1036] = 993, - [1037] = 1037, - [1038] = 1001, - [1039] = 1039, - [1040] = 1040, - [1041] = 1041, - [1042] = 935, - [1043] = 936, - [1044] = 950, - [1045] = 937, - [1046] = 1016, - [1047] = 972, - [1048] = 973, - [1049] = 951, - [1050] = 935, - [1051] = 936, - [1052] = 937, - [1053] = 1053, - [1054] = 1054, - [1055] = 1037, - [1056] = 993, - [1057] = 1016, - [1058] = 1058, - [1059] = 993, - [1060] = 1016, - [1061] = 972, - [1062] = 973, - [1063] = 935, - [1064] = 936, - [1065] = 937, - [1066] = 1058, - [1067] = 993, - [1068] = 993, - [1069] = 972, - [1070] = 973, - [1071] = 935, - [1072] = 936, - [1073] = 937, - [1074] = 1016, - [1075] = 979, - [1076] = 938, - [1077] = 939, - [1078] = 972, - [1079] = 934, - [1080] = 1016, - [1081] = 941, - [1082] = 942, - [1083] = 934, - [1084] = 934, - [1085] = 934, - [1086] = 934, - [1087] = 951, - [1088] = 1088, - [1089] = 1088, - [1090] = 1088, - [1091] = 1088, - [1092] = 1088, - [1093] = 1088, - [1094] = 1088, - [1095] = 1088, - [1096] = 1088, - [1097] = 1088, - [1098] = 1088, - [1099] = 1088, - [1100] = 1100, - [1101] = 1101, - [1102] = 1100, - [1103] = 1101, - [1104] = 1104, - [1105] = 1104, - [1106] = 1100, - [1107] = 1104, - [1108] = 1101, + [1031] = 934, + [1032] = 943, + [1033] = 961, + [1034] = 943, + [1035] = 959, + [1036] = 1036, + [1037] = 944, + [1038] = 1038, + [1039] = 938, + [1040] = 937, + [1041] = 948, + [1042] = 940, + [1043] = 941, + [1044] = 941, + [1045] = 945, + [1046] = 950, + [1047] = 945, + [1048] = 941, + [1049] = 978, + [1050] = 948, + [1051] = 950, + [1052] = 941, + [1053] = 934, + [1054] = 946, + [1055] = 1055, + [1056] = 933, + [1057] = 932, + [1058] = 941, + [1059] = 960, + [1060] = 950, + [1061] = 1061, + [1062] = 953, + [1063] = 960, + [1064] = 941, + [1065] = 942, + [1066] = 959, + [1067] = 942, + [1068] = 946, + [1069] = 938, + [1070] = 977, + [1071] = 1071, + [1072] = 1072, + [1073] = 931, + [1074] = 931, + [1075] = 953, + [1076] = 1061, + [1077] = 1077, + [1078] = 934, + [1079] = 1079, + [1080] = 937, + [1081] = 944, + [1082] = 933, + [1083] = 932, + [1084] = 1084, + [1085] = 1085, + [1086] = 1085, + [1087] = 1085, + [1088] = 1085, + [1089] = 1085, + [1090] = 1085, + [1091] = 1085, + [1092] = 1085, + [1093] = 1085, + [1094] = 1085, + [1095] = 1085, + [1096] = 1085, + [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 1099, + [1101] = 1099, + [1102] = 1097, + [1103] = 1098, + [1104] = 1097, + [1105] = 1098, + [1106] = 1106, + [1107] = 1107, + [1108] = 1107, [1109] = 1109, [1110] = 1110, - [1111] = 1109, + [1111] = 1111, [1112] = 1112, - [1113] = 1113, - [1114] = 1113, + [1113] = 1111, + [1114] = 1114, [1115] = 1112, - [1116] = 1113, + [1116] = 1116, [1117] = 1117, - [1118] = 1110, - [1119] = 1119, - [1120] = 1113, - [1121] = 1113, - [1122] = 1122, + [1118] = 1118, + [1119] = 1117, + [1120] = 1120, + [1121] = 1117, + [1122] = 1111, [1123] = 1123, - [1124] = 1124, - [1125] = 1117, - [1126] = 1113, + [1124] = 1120, + [1125] = 1120, + [1126] = 1106, [1127] = 1123, - [1128] = 1123, - [1129] = 1124, - [1130] = 1124, - [1131] = 1117, + [1128] = 1111, + [1129] = 1111, + [1130] = 1123, + [1131] = 1111, [1132] = 1132, - [1133] = 1132, - [1134] = 1113, + [1133] = 1133, + [1134] = 1111, [1135] = 1132, - [1136] = 1113, - [1137] = 1137, - [1138] = 1113, + [1136] = 1111, + [1137] = 1132, + [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 1113, + [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 1144, - [1145] = 1113, + [1144] = 1111, + [1145] = 1141, [1146] = 1146, - [1147] = 1147, - [1148] = 1148, + [1147] = 1111, + [1148] = 1111, [1149] = 1149, [1150] = 1150, - [1151] = 1113, + [1151] = 1151, [1152] = 1152, - [1153] = 1113, - [1154] = 1154, + [1153] = 1153, + [1154] = 1152, [1155] = 1155, - [1156] = 1154, - [1157] = 1140, - [1158] = 1154, + [1156] = 1107, + [1157] = 1138, + [1158] = 1158, [1159] = 1155, - [1160] = 1140, - [1161] = 1143, - [1162] = 1162, - [1163] = 1109, - [1164] = 1152, - [1165] = 1165, - [1166] = 1166, - [1167] = 1155, - [1168] = 1152, - [1169] = 1113, - [1170] = 1113, - [1171] = 1152, - [1172] = 1152, - [1173] = 1110, - [1174] = 720, - [1175] = 1175, - [1176] = 1122, - [1177] = 1113, - [1178] = 730, + [1160] = 1141, + [1161] = 1161, + [1162] = 1158, + [1163] = 1111, + [1164] = 1164, + [1165] = 1138, + [1166] = 1111, + [1167] = 1152, + [1168] = 1111, + [1169] = 1158, + [1170] = 1170, + [1171] = 1111, + [1172] = 1172, + [1173] = 1106, + [1174] = 1174, + [1175] = 1158, + [1176] = 1176, + [1177] = 740, + [1178] = 1116, [1179] = 1179, - [1180] = 1180, - [1181] = 1113, - [1182] = 1182, - [1183] = 1183, - [1184] = 1175, - [1185] = 1185, - [1186] = 1185, - [1187] = 1152, + [1180] = 1158, + [1181] = 1111, + [1182] = 1111, + [1183] = 715, + [1184] = 1184, + [1185] = 1176, + [1186] = 1184, + [1187] = 1111, [1188] = 1188, - [1189] = 1189, - [1190] = 1185, - [1191] = 1189, - [1192] = 1192, - [1193] = 1152, - [1194] = 1194, - [1195] = 1113, - [1196] = 1185, - [1197] = 1185, - [1198] = 1185, - [1199] = 1182, + [1189] = 1158, + [1190] = 1172, + [1191] = 1184, + [1192] = 1184, + [1193] = 1193, + [1194] = 1176, + [1195] = 1195, + [1196] = 1184, + [1197] = 1158, + [1198] = 1198, + [1199] = 1158, [1200] = 1200, - [1201] = 1201, - [1202] = 1202, + [1201] = 1158, + [1202] = 1172, [1203] = 1203, - [1204] = 1204, - [1205] = 1152, - [1206] = 1175, - [1207] = 1185, - [1208] = 1185, - [1209] = 1209, - [1210] = 1185, - [1211] = 1152, + [1204] = 1195, + [1205] = 1193, + [1206] = 1206, + [1207] = 1184, + [1208] = 1184, + [1209] = 1184, + [1210] = 1184, + [1211] = 1211, [1212] = 1212, - [1213] = 1182, - [1214] = 1192, + [1213] = 1213, + [1214] = 1214, [1215] = 1215, - [1216] = 1216, - [1217] = 1215, - [1218] = 1152, - [1219] = 1152, - [1220] = 1182, - [1221] = 1221, - [1222] = 1188, - [1223] = 1165, - [1224] = 1202, - [1225] = 1144, - [1226] = 1182, - [1227] = 1165, + [1216] = 1142, + [1217] = 1140, + [1218] = 1158, + [1219] = 1158, + [1220] = 1206, + [1221] = 1142, + [1222] = 1222, + [1223] = 1198, + [1224] = 1140, + [1225] = 1213, + [1226] = 1172, + [1227] = 1172, [1228] = 1228, - [1229] = 1229, - [1230] = 1221, - [1231] = 1231, + [1229] = 1214, + [1230] = 1140, + [1231] = 1213, [1232] = 1232, - [1233] = 1233, - [1234] = 1234, - [1235] = 1188, - [1236] = 1182, - [1237] = 1152, - [1238] = 1229, - [1239] = 1229, - [1240] = 1216, - [1241] = 1232, - [1242] = 1144, - [1243] = 1165, - [1244] = 1244, - [1245] = 1144, - [1246] = 1202, - [1247] = 1215, - [1248] = 1248, - [1249] = 1204, - [1250] = 1216, - [1251] = 1179, - [1252] = 1150, - [1253] = 1216, - [1254] = 1215, - [1255] = 1162, - [1256] = 1139, - [1257] = 1146, - [1258] = 1147, - [1259] = 1148, - [1260] = 1149, - [1261] = 1261, - [1262] = 1215, - [1263] = 1263, - [1264] = 1264, - [1265] = 1263, - [1266] = 1152, + [1233] = 1232, + [1234] = 1158, + [1235] = 1198, + [1236] = 1206, + [1237] = 1172, + [1238] = 1215, + [1239] = 1222, + [1240] = 1240, + [1241] = 1142, + [1242] = 1206, + [1243] = 1214, + [1244] = 1222, + [1245] = 1174, + [1246] = 1172, + [1247] = 1222, + [1248] = 1214, + [1249] = 1172, + [1250] = 1149, + [1251] = 1164, + [1252] = 1214, + [1253] = 1172, + [1254] = 1198, + [1255] = 1203, + [1256] = 1256, + [1257] = 1222, + [1258] = 1258, + [1259] = 1259, + [1260] = 1260, + [1261] = 1214, + [1262] = 740, + [1263] = 1174, + [1264] = 715, + [1265] = 1258, + [1266] = 1158, [1267] = 1267, - [1268] = 1152, - [1269] = 1179, - [1270] = 1216, - [1271] = 720, - [1272] = 730, - [1273] = 1202, - [1274] = 1248, - [1275] = 1188, - [1276] = 1202, - [1277] = 1264, - [1278] = 1263, - [1279] = 1202, - [1280] = 1215, - [1281] = 1182, - [1282] = 1182, - [1283] = 1216, - [1284] = 1182, - [1285] = 1264, + [1268] = 1206, + [1269] = 1267, + [1270] = 1222, + [1271] = 1267, + [1272] = 1272, + [1273] = 1206, + [1274] = 1274, + [1275] = 1275, + [1276] = 1276, + [1277] = 1258, + [1278] = 1158, + [1279] = 1150, + [1280] = 1151, + [1281] = 1161, + [1282] = 1153, + [1283] = 1139, + [1284] = 1276, + [1285] = 1285, [1286] = 1286, - [1287] = 1215, - [1288] = 1165, - [1289] = 1289, - [1290] = 1290, - [1291] = 1289, - [1292] = 1209, - [1293] = 1144, - [1294] = 1179, - [1295] = 1216, - [1296] = 1182, - [1297] = 1165, - [1298] = 1144, - [1299] = 1216, - [1300] = 1179, - [1301] = 1234, - [1302] = 1302, - [1303] = 1202, - [1304] = 1202, - [1305] = 1215, - [1306] = 1202, - [1307] = 1216, - [1308] = 1216, - [1309] = 1309, - [1310] = 1309, - [1311] = 1311, - [1312] = 1202, - [1313] = 1189, - [1314] = 1215, - [1315] = 1309, - [1316] = 1316, - [1317] = 1216, - [1318] = 1192, - [1319] = 1215, - [1320] = 1165, - [1321] = 1309, - [1322] = 1144, - [1323] = 1309, - [1324] = 1215, - [1325] = 1325, - [1326] = 1216, - [1327] = 1179, - [1328] = 1215, - [1329] = 1309, + [1287] = 1214, + [1288] = 1142, + [1289] = 1140, + [1290] = 1222, + [1291] = 1214, + [1292] = 1292, + [1293] = 1293, + [1294] = 1222, + [1295] = 1292, + [1296] = 1174, + [1297] = 1297, + [1298] = 1206, + [1299] = 1174, + [1300] = 1206, + [1301] = 1172, + [1302] = 1228, + [1303] = 1140, + [1304] = 1206, + [1305] = 1142, + [1306] = 1200, + [1307] = 1307, + [1308] = 1214, + [1309] = 1140, + [1310] = 1206, + [1311] = 1307, + [1312] = 1193, + [1313] = 1313, + [1314] = 1195, + [1315] = 1315, + [1316] = 1214, + [1317] = 1307, + [1318] = 1222, + [1319] = 1214, + [1320] = 1307, + [1321] = 1222, + [1322] = 1142, + [1323] = 1214, + [1324] = 1222, + [1325] = 1307, + [1326] = 1307, + [1327] = 1174, + [1328] = 1222, + [1329] = 1329, [1330] = 1330, - [1331] = 1215, - [1332] = 1267, - [1333] = 1216, - [1334] = 1216, - [1335] = 1216, - [1336] = 1179, - [1337] = 1216, - [1338] = 1179, - [1339] = 1215, - [1340] = 1215, - [1341] = 1215, - [1342] = 1261, - [1343] = 1204, - [1344] = 1221, - [1345] = 1179, + [1331] = 1214, + [1332] = 1272, + [1333] = 1259, + [1334] = 1214, + [1335] = 1214, + [1336] = 1222, + [1337] = 1222, + [1338] = 1174, + [1339] = 1222, + [1340] = 1174, + [1341] = 1222, + [1342] = 1214, + [1343] = 1215, + [1344] = 1203, + [1345] = 1345, [1346] = 1346, [1347] = 1347, [1348] = 1346, - [1349] = 1349, - [1350] = 1346, + [1349] = 1347, + [1350] = 1345, [1351] = 1351, - [1352] = 1346, - [1353] = 1347, - [1354] = 1354, - [1355] = 1347, - [1356] = 1349, - [1357] = 1351, - [1358] = 1346, - [1359] = 1354, - [1360] = 1347, - [1361] = 1349, - [1362] = 1354, + [1352] = 1222, + [1353] = 1353, + [1354] = 1228, + [1355] = 1286, + [1356] = 1174, + [1357] = 1346, + [1358] = 1347, + [1359] = 1174, + [1360] = 1214, + [1361] = 1346, + [1362] = 1345, [1363] = 1351, - [1364] = 1354, - [1365] = 1351, - [1366] = 1215, - [1367] = 1354, - [1368] = 1351, - [1369] = 1179, + [1364] = 1353, + [1365] = 1345, + [1366] = 1347, + [1367] = 1347, + [1368] = 1345, + [1369] = 1347, [1370] = 1351, - [1371] = 1349, - [1372] = 1346, - [1373] = 1290, - [1374] = 1349, - [1375] = 1216, - [1376] = 1351, - [1377] = 1354, - [1378] = 1347, - [1379] = 1347, - [1380] = 1351, - [1381] = 1349, - [1382] = 1349, - [1383] = 1234, - [1384] = 1349, - [1385] = 1351, - [1386] = 1349, + [1371] = 1345, + [1372] = 1347, + [1373] = 1345, + [1374] = 1345, + [1375] = 1351, + [1376] = 1347, + [1377] = 1353, + [1378] = 1351, + [1379] = 1353, + [1380] = 1345, + [1381] = 1346, + [1382] = 1351, + [1383] = 1353, + [1384] = 1346, + [1385] = 1353, + [1386] = 1347, [1387] = 1387, - [1388] = 1387, + [1388] = 1388, [1389] = 1387, - [1390] = 1387, + [1390] = 1388, [1391] = 1387, [1392] = 1387, - [1393] = 1387, - [1394] = 1387, - [1395] = 1387, - [1396] = 1396, - [1397] = 1396, - [1398] = 1396, - [1399] = 1399, - [1400] = 1396, - [1401] = 1396, - [1402] = 1396, + [1393] = 1388, + [1394] = 1388, + [1395] = 1388, + [1396] = 1388, + [1397] = 1387, + [1398] = 1387, + [1399] = 1387, + [1400] = 1388, + [1401] = 1388, + [1402] = 1388, [1403] = 1403, - [1404] = 1404, - [1405] = 1405, + [1404] = 1403, + [1405] = 1403, [1406] = 1403, - [1407] = 1405, - [1408] = 1405, - [1409] = 1409, - [1410] = 1404, - [1411] = 1405, - [1412] = 1404, - [1413] = 1403, - [1414] = 1404, - [1415] = 1403, - [1416] = 1405, - [1417] = 1404, - [1418] = 1403, - [1419] = 1419, - [1420] = 1419, - [1421] = 1419, - [1422] = 1419, - [1423] = 1419, - [1424] = 1419, - [1425] = 1419, - [1426] = 1426, + [1407] = 1407, + [1408] = 1403, + [1409] = 1403, + [1410] = 1410, + [1411] = 1411, + [1412] = 1412, + [1413] = 1412, + [1414] = 1414, + [1415] = 1414, + [1416] = 1410, + [1417] = 1417, + [1418] = 1410, + [1419] = 1412, + [1420] = 1410, + [1421] = 1412, + [1422] = 1414, + [1423] = 1414, + [1424] = 1412, + [1425] = 1410, + [1426] = 1414, [1427] = 1427, - [1428] = 245, - [1429] = 231, + [1428] = 1110, + [1429] = 222, [1430] = 1430, - [1431] = 1431, - [1432] = 1432, - [1433] = 1433, + [1431] = 1114, + [1432] = 1109, + [1433] = 221, [1434] = 1434, [1435] = 1435, [1436] = 1436, - [1437] = 913, - [1438] = 911, - [1439] = 212, + [1437] = 1437, + [1438] = 1438, + [1439] = 1439, [1440] = 1440, - [1441] = 1441, - [1442] = 210, + [1441] = 222, + [1442] = 1442, [1443] = 1443, - [1444] = 214, - [1445] = 231, + [1444] = 1444, + [1445] = 1109, [1446] = 1446, - [1447] = 1447, - [1448] = 245, + [1447] = 221, + [1448] = 1448, [1449] = 1449, - [1450] = 1450, - [1451] = 1451, - [1452] = 213, - [1453] = 912, - [1454] = 1454, - [1455] = 1455, + [1450] = 1110, + [1451] = 213, + [1452] = 212, + [1453] = 210, + [1454] = 208, + [1455] = 1114, [1456] = 1456, - [1457] = 1457, + [1457] = 213, [1458] = 1458, [1459] = 1459, - [1460] = 1460, + [1460] = 232, [1461] = 1461, [1462] = 1462, - [1463] = 1463, - [1464] = 1464, + [1463] = 1461, + [1464] = 1461, [1465] = 1465, [1466] = 1466, - [1467] = 652, + [1467] = 1467, [1468] = 1468, [1469] = 1469, [1470] = 1470, @@ -6139,24 +6245,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1484, - [1485] = 210, - [1486] = 214, + [1484] = 656, + [1485] = 1485, + [1486] = 1486, [1487] = 1487, [1488] = 1488, [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 653, + [1493] = 1493, [1494] = 1494, [1495] = 1495, [1496] = 1496, [1497] = 1497, [1498] = 1498, [1499] = 1499, - [1500] = 243, - [1501] = 1501, + [1500] = 1500, + [1501] = 653, [1502] = 1502, [1503] = 1503, [1504] = 1504, @@ -6168,16 +6274,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 213, - [1514] = 654, + [1513] = 1462, + [1514] = 1514, [1515] = 1515, [1516] = 1516, [1517] = 1517, [1518] = 1518, - [1519] = 1519, + [1519] = 1462, [1520] = 1520, [1521] = 1521, - [1522] = 1522, + [1522] = 1461, [1523] = 1523, [1524] = 1524, [1525] = 1525, @@ -6187,8 +6293,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1529] = 1529, [1530] = 1530, [1531] = 1531, - [1532] = 1511, - [1533] = 226, + [1532] = 1532, + [1533] = 657, [1534] = 1534, [1535] = 1535, [1536] = 1536, @@ -6196,7 +6302,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1538] = 1538, [1539] = 1539, [1540] = 1540, - [1541] = 1541, + [1541] = 1462, [1542] = 1542, [1543] = 1543, [1544] = 1544, @@ -6204,28 +6310,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1546] = 1546, [1547] = 1547, [1548] = 1548, - [1549] = 1506, + [1549] = 1549, [1550] = 1550, [1551] = 1551, - [1552] = 1506, + [1552] = 1552, [1553] = 1553, [1554] = 1554, [1555] = 1555, [1556] = 1556, [1557] = 1557, [1558] = 1558, - [1559] = 1559, + [1559] = 651, [1560] = 1560, [1561] = 1561, - [1562] = 1511, + [1562] = 1562, [1563] = 1563, [1564] = 1564, [1565] = 1565, [1566] = 1566, - [1567] = 1506, - [1568] = 228, - [1569] = 236, - [1570] = 656, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, [1571] = 1571, [1572] = 1572, [1573] = 1573, @@ -6236,15 +6342,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1578] = 1578, [1579] = 1579, [1580] = 1580, - [1581] = 1581, + [1581] = 655, [1582] = 1582, - [1583] = 1583, - [1584] = 1584, + [1583] = 230, + [1584] = 231, [1585] = 1585, [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 1506, + [1589] = 1589, [1590] = 1590, [1591] = 1591, [1592] = 1592, @@ -6253,16 +6359,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1595] = 1595, [1596] = 1596, [1597] = 1597, - [1598] = 1598, - [1599] = 1511, - [1600] = 658, + [1598] = 236, + [1599] = 1599, + [1600] = 1600, [1601] = 1601, - [1602] = 1602, - [1603] = 1603, + [1602] = 210, + [1603] = 212, [1604] = 1604, [1605] = 1605, [1606] = 1606, - [1607] = 1607, + [1607] = 1462, [1608] = 1608, [1609] = 1609, [1610] = 1610, @@ -6270,1063 +6376,1063 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1612] = 1612, [1613] = 1613, [1614] = 1614, - [1615] = 1543, - [1616] = 1435, - [1617] = 1544, + [1615] = 1615, + [1616] = 1616, + [1617] = 1518, [1618] = 1618, [1619] = 1619, - [1620] = 222, - [1621] = 1578, - [1622] = 239, + [1620] = 247, + [1621] = 1621, + [1622] = 1622, [1623] = 1623, - [1624] = 1547, - [1625] = 1625, + [1624] = 1624, + [1625] = 1616, [1626] = 1626, - [1627] = 1548, - [1628] = 1628, - [1629] = 1551, + [1627] = 1627, + [1628] = 1614, + [1629] = 232, [1630] = 1630, [1631] = 1631, [1632] = 1632, - [1633] = 1633, - [1634] = 1634, - [1635] = 1479, - [1636] = 1488, - [1637] = 1490, + [1633] = 1434, + [1634] = 1612, + [1635] = 1635, + [1636] = 1524, + [1637] = 1637, [1638] = 1638, - [1639] = 1639, - [1640] = 1640, + [1639] = 1481, + [1640] = 1469, [1641] = 1641, - [1642] = 228, - [1643] = 236, - [1644] = 1502, + [1642] = 1642, + [1643] = 1468, + [1644] = 1644, [1645] = 1645, - [1646] = 1646, + [1646] = 225, [1647] = 1647, [1648] = 1648, [1649] = 1649, [1650] = 1650, - [1651] = 1525, + [1651] = 230, [1652] = 1652, [1653] = 1653, - [1654] = 222, - [1655] = 1632, - [1656] = 239, - [1657] = 1527, - [1658] = 1632, - [1659] = 1530, - [1660] = 1578, - [1661] = 1488, - [1662] = 1640, - [1663] = 1534, - [1664] = 1653, - [1665] = 1538, - [1666] = 1640, - [1667] = 1518, + [1654] = 1654, + [1655] = 1655, + [1656] = 1656, + [1657] = 1657, + [1658] = 1658, + [1659] = 231, + [1660] = 1660, + [1661] = 1661, + [1662] = 1662, + [1663] = 1663, + [1664] = 1612, + [1665] = 247, + [1666] = 1666, + [1667] = 1667, [1668] = 1668, [1669] = 1669, [1670] = 1670, [1671] = 1671, - [1672] = 1541, - [1673] = 1542, - [1674] = 1543, - [1675] = 1544, + [1672] = 1672, + [1673] = 1673, + [1674] = 1674, + [1675] = 1675, [1676] = 1676, [1677] = 1677, [1678] = 1678, [1679] = 1679, - [1680] = 1547, - [1681] = 1548, + [1680] = 1680, + [1681] = 1681, [1682] = 1682, [1683] = 1683, [1684] = 1684, [1685] = 1685, - [1686] = 218, + [1686] = 1686, [1687] = 1687, - [1688] = 1551, + [1688] = 1688, [1689] = 1689, - [1690] = 220, - [1691] = 1433, - [1692] = 1431, - [1693] = 1432, - [1694] = 246, - [1695] = 1574, - [1696] = 243, - [1697] = 1697, - [1698] = 1632, - [1699] = 1502, - [1700] = 1700, - [1701] = 1701, - [1702] = 218, - [1703] = 1640, - [1704] = 1704, - [1705] = 1705, - [1706] = 1697, - [1707] = 1649, - [1708] = 1708, - [1709] = 1542, - [1710] = 247, + [1690] = 1690, + [1691] = 1691, + [1692] = 219, + [1693] = 1435, + [1694] = 1641, + [1695] = 1695, + [1696] = 1631, + [1697] = 224, + [1698] = 1614, + [1699] = 1647, + [1700] = 1436, + [1701] = 1632, + [1702] = 1624, + [1703] = 1631, + [1704] = 236, + [1705] = 1632, + [1706] = 1706, + [1707] = 1707, + [1708] = 1437, + [1709] = 1438, + [1710] = 1616, [1711] = 1711, - [1712] = 1712, - [1713] = 1713, + [1712] = 219, + [1713] = 1486, [1714] = 1714, [1715] = 1715, - [1716] = 226, - [1717] = 1557, - [1718] = 1718, - [1719] = 1430, - [1720] = 1507, - [1721] = 1721, - [1722] = 1558, - [1723] = 1723, + [1716] = 1631, + [1717] = 1717, + [1718] = 1632, + [1719] = 1719, + [1720] = 1525, + [1721] = 1632, + [1722] = 1469, + [1723] = 1468, [1724] = 1724, [1725] = 1725, - [1726] = 1726, - [1727] = 1479, + [1726] = 1631, + [1727] = 1524, [1728] = 1728, [1729] = 1729, [1730] = 1730, - [1731] = 1731, - [1732] = 1732, - [1733] = 1733, + [1731] = 1459, + [1732] = 1459, + [1733] = 1497, [1734] = 1734, - [1735] = 1527, - [1736] = 246, - [1737] = 1560, - [1738] = 1561, - [1739] = 1575, - [1740] = 1508, - [1741] = 1530, - [1742] = 1454, - [1743] = 1632, + [1735] = 1494, + [1736] = 1503, + [1737] = 1495, + [1738] = 1497, + [1739] = 1503, + [1740] = 1518, + [1741] = 1741, + [1742] = 1528, + [1743] = 1577, [1744] = 1744, - [1745] = 1745, - [1746] = 1557, - [1747] = 1747, - [1748] = 1558, - [1749] = 1640, - [1750] = 1750, + [1745] = 1578, + [1746] = 1746, + [1747] = 1580, + [1748] = 1589, + [1749] = 1590, + [1750] = 1592, [1751] = 1751, - [1752] = 1507, - [1753] = 1753, + [1752] = 1594, + [1753] = 1597, [1754] = 1754, - [1755] = 1755, - [1756] = 1756, - [1757] = 1757, + [1755] = 224, + [1756] = 235, + [1757] = 225, [1758] = 1758, - [1759] = 1508, - [1760] = 1572, - [1761] = 1761, - [1762] = 1560, + [1759] = 1759, + [1760] = 1528, + [1761] = 1577, + [1762] = 238, [1763] = 1763, - [1764] = 1561, - [1765] = 247, - [1766] = 1490, - [1767] = 1767, - [1768] = 1572, - [1769] = 1769, - [1770] = 1770, - [1771] = 1771, - [1772] = 1573, - [1773] = 1574, - [1774] = 1774, - [1775] = 1775, - [1776] = 1776, - [1777] = 220, - [1778] = 1573, - [1779] = 1575, - [1780] = 1454, + [1764] = 1764, + [1765] = 1578, + [1766] = 1580, + [1767] = 1609, + [1768] = 1589, + [1769] = 1610, + [1770] = 1590, + [1771] = 1613, + [1772] = 1772, + [1773] = 1615, + [1774] = 1592, + [1775] = 1594, + [1776] = 1597, + [1777] = 1609, + [1778] = 1610, + [1779] = 1779, + [1780] = 235, [1781] = 1781, - [1782] = 1782, - [1783] = 1518, - [1784] = 1784, - [1785] = 1785, - [1786] = 1534, - [1787] = 1538, + [1782] = 1600, + [1783] = 1613, + [1784] = 1615, + [1785] = 1600, + [1786] = 1786, + [1787] = 1787, [1788] = 1788, - [1789] = 1541, - [1790] = 1525, - [1791] = 1585, - [1792] = 1490, - [1793] = 1793, - [1794] = 1794, - [1795] = 1795, - [1796] = 1796, - [1797] = 1446, - [1798] = 1443, - [1799] = 1441, - [1800] = 1440, - [1801] = 913, - [1802] = 1802, - [1803] = 1537, + [1789] = 1495, + [1790] = 238, + [1791] = 1494, + [1792] = 1525, + [1793] = 1486, + [1794] = 1481, + [1795] = 1495, + [1796] = 1612, + [1797] = 1614, + [1798] = 1616, + [1799] = 1524, + [1800] = 1497, + [1801] = 1801, + [1802] = 1503, + [1803] = 1803, [1804] = 1804, [1805] = 1805, - [1806] = 1625, - [1807] = 1807, - [1808] = 1451, - [1809] = 1809, - [1810] = 1449, - [1811] = 1450, - [1812] = 1447, - [1813] = 1809, - [1814] = 1625, - [1815] = 1603, - [1816] = 1436, - [1817] = 1593, - [1818] = 1649, - [1819] = 1653, - [1820] = 1697, + [1806] = 1806, + [1807] = 1518, + [1808] = 1528, + [1809] = 1577, + [1810] = 1810, + [1811] = 1578, + [1812] = 1580, + [1813] = 1813, + [1814] = 1814, + [1815] = 1589, + [1816] = 1816, + [1817] = 1590, + [1818] = 1805, + [1819] = 1816, + [1820] = 1592, [1821] = 1821, - [1822] = 1822, - [1823] = 1592, + [1822] = 1594, + [1823] = 1823, [1824] = 1824, - [1825] = 1825, - [1826] = 1585, - [1827] = 1592, + [1825] = 1711, + [1826] = 1826, + [1827] = 1827, [1828] = 1828, - [1829] = 1829, - [1830] = 911, - [1831] = 1585, - [1832] = 1802, - [1833] = 1804, - [1834] = 1807, - [1835] = 1809, + [1829] = 1109, + [1830] = 1805, + [1831] = 1831, + [1832] = 1832, + [1833] = 1597, + [1834] = 1814, + [1835] = 1456, [1836] = 1836, - [1837] = 1837, - [1838] = 1592, - [1839] = 1837, - [1840] = 1809, - [1841] = 1794, - [1842] = 1802, - [1843] = 1809, - [1844] = 1802, - [1845] = 1845, + [1837] = 1439, + [1838] = 1831, + [1839] = 1443, + [1840] = 1516, + [1841] = 1841, + [1842] = 1448, + [1843] = 1832, + [1844] = 1844, + [1845] = 1816, [1846] = 1846, - [1847] = 1802, - [1848] = 1848, - [1849] = 1849, - [1850] = 1802, - [1851] = 1802, - [1852] = 1852, - [1853] = 1849, - [1854] = 912, - [1855] = 1855, + [1847] = 1847, + [1848] = 1532, + [1849] = 1459, + [1850] = 1468, + [1851] = 1469, + [1852] = 1516, + [1853] = 1828, + [1854] = 1576, + [1855] = 1449, [1856] = 1856, - [1857] = 1507, - [1858] = 1508, - [1859] = 1518, - [1860] = 1525, - [1861] = 1527, - [1862] = 1530, - [1863] = 1534, - [1864] = 1538, - [1865] = 1541, - [1866] = 1542, - [1867] = 1543, - [1868] = 1544, - [1869] = 1547, - [1870] = 1548, - [1871] = 1551, - [1872] = 1557, - [1873] = 1558, - [1874] = 1560, - [1875] = 1561, - [1876] = 1572, - [1877] = 1573, - [1878] = 1574, - [1879] = 1575, - [1880] = 1454, - [1881] = 1578, - [1882] = 1849, - [1883] = 1829, - [1884] = 1884, - [1885] = 1885, - [1886] = 1886, - [1887] = 1887, - [1888] = 1479, - [1889] = 1488, - [1890] = 1502, - [1891] = 1596, - [1892] = 1487, - [1893] = 1489, - [1894] = 1491, - [1895] = 1492, - [1896] = 1466, - [1897] = 653, - [1898] = 1494, - [1899] = 1495, - [1900] = 1496, - [1901] = 1497, - [1902] = 1498, - [1903] = 1499, - [1904] = 1501, - [1905] = 1503, - [1906] = 1504, - [1907] = 1505, - [1908] = 1509, - [1909] = 1510, - [1910] = 1512, - [1911] = 654, - [1912] = 1515, - [1913] = 1516, - [1914] = 1517, - [1915] = 1519, - [1916] = 1520, - [1917] = 1521, - [1918] = 1523, - [1919] = 1524, - [1920] = 1526, - [1921] = 1528, - [1922] = 1529, - [1923] = 1531, - [1924] = 212, - [1925] = 1925, - [1926] = 1926, - [1927] = 1670, - [1928] = 1555, - [1929] = 1556, - [1930] = 1585, - [1931] = 1565, - [1932] = 1566, - [1933] = 1592, - [1934] = 1934, - [1935] = 1539, - [1936] = 1540, - [1937] = 1550, - [1938] = 1535, - [1939] = 1563, - [1940] = 1564, - [1941] = 1536, - [1942] = 1942, - [1943] = 1553, - [1944] = 1926, - [1945] = 1668, - [1946] = 1468, - [1947] = 1545, - [1948] = 1948, - [1949] = 1949, - [1950] = 1591, - [1951] = 1668, - [1952] = 1596, - [1953] = 1761, + [1857] = 1805, + [1858] = 1532, + [1859] = 1841, + [1860] = 1805, + [1861] = 1609, + [1862] = 1805, + [1863] = 1114, + [1864] = 1864, + [1865] = 1865, + [1866] = 1610, + [1867] = 1841, + [1868] = 1624, + [1869] = 1613, + [1870] = 1615, + [1871] = 1647, + [1872] = 1803, + [1873] = 1641, + [1874] = 1444, + [1875] = 1600, + [1876] = 1494, + [1877] = 1601, + [1878] = 1878, + [1879] = 1481, + [1880] = 1880, + [1881] = 1486, + [1882] = 1110, + [1883] = 1446, + [1884] = 1532, + [1885] = 1442, + [1886] = 1805, + [1887] = 1516, + [1888] = 1888, + [1889] = 1525, + [1890] = 1537, + [1891] = 1440, + [1892] = 1892, + [1893] = 1711, + [1894] = 1841, + [1895] = 1841, + [1896] = 1896, + [1897] = 1496, + [1898] = 1466, + [1899] = 1467, + [1900] = 1900, + [1901] = 1901, + [1902] = 1532, + [1903] = 655, + [1904] = 1516, + [1905] = 1529, + [1906] = 1540, + [1907] = 1535, + [1908] = 1530, + [1909] = 1619, + [1910] = 1715, + [1911] = 1469, + [1912] = 1468, + [1913] = 1459, + [1914] = 1497, + [1915] = 1579, + [1916] = 1503, + [1917] = 1518, + [1918] = 1528, + [1919] = 1577, + [1920] = 1578, + [1921] = 1580, + [1922] = 1589, + [1923] = 1537, + [1924] = 1924, + [1925] = 1590, + [1926] = 1592, + [1927] = 1599, + [1928] = 1928, + [1929] = 1594, + [1930] = 1597, + [1931] = 1609, + [1932] = 1610, + [1933] = 1613, + [1934] = 1615, + [1935] = 1481, + [1936] = 1486, + [1937] = 1525, + [1938] = 1494, + [1939] = 1495, + [1940] = 1600, + [1941] = 1526, + [1942] = 1612, + [1943] = 1614, + [1944] = 1616, + [1945] = 1524, + [1946] = 208, + [1947] = 1608, + [1948] = 1575, + [1949] = 1574, + [1950] = 1950, + [1951] = 1951, + [1952] = 1952, + [1953] = 1801, [1954] = 1954, - [1955] = 1955, - [1956] = 1670, + [1955] = 1878, + [1956] = 1956, [1957] = 1957, - [1958] = 1958, - [1959] = 1805, - [1960] = 1960, - [1961] = 1961, - [1962] = 1822, - [1963] = 1926, - [1964] = 1585, - [1965] = 1592, - [1966] = 1603, - [1967] = 1593, - [1968] = 1926, - [1969] = 1585, - [1970] = 1592, - [1971] = 1926, - [1972] = 1668, - [1973] = 1761, - [1974] = 1670, - [1975] = 1522, - [1976] = 656, - [1977] = 1653, - [1978] = 1553, - [1979] = 1948, - [1980] = 1559, - [1981] = 1571, - [1982] = 1949, - [1983] = 1507, - [1984] = 1508, - [1985] = 1576, - [1986] = 1518, - [1987] = 1577, - [1988] = 1525, - [1989] = 1527, - [1990] = 1530, - [1991] = 1961, - [1992] = 1534, - [1993] = 1822, - [1994] = 1538, - [1995] = 1541, - [1996] = 1542, - [1997] = 1543, - [1998] = 1544, - [1999] = 1547, - [2000] = 1548, - [2001] = 1551, - [2002] = 1557, - [2003] = 1558, - [2004] = 1546, - [2005] = 1560, - [2006] = 1561, - [2007] = 1579, - [2008] = 1591, - [2009] = 1572, - [2010] = 1573, - [2011] = 1574, - [2012] = 1575, - [2013] = 1454, - [2014] = 1580, - [2015] = 1581, - [2016] = 1582, - [2017] = 2017, - [2018] = 2018, - [2019] = 1484, - [2020] = 1761, - [2021] = 1603, - [2022] = 1583, - [2023] = 2017, - [2024] = 1584, - [2025] = 1586, - [2026] = 2026, - [2027] = 1587, - [2028] = 2028, - [2029] = 1588, - [2030] = 1590, - [2031] = 212, - [2032] = 1594, - [2033] = 1595, - [2034] = 1597, - [2035] = 1554, - [2036] = 1926, - [2037] = 658, - [2038] = 1697, - [2039] = 1926, - [2040] = 1479, - [2041] = 1488, - [2042] = 1490, - [2043] = 1502, - [2044] = 2044, - [2045] = 2045, - [2046] = 1601, - [2047] = 1805, - [2048] = 2048, - [2049] = 1602, - [2050] = 2050, - [2051] = 1507, - [2052] = 1508, - [2053] = 1518, - [2054] = 1525, - [2055] = 1527, - [2056] = 1530, - [2057] = 1534, - [2058] = 1538, - [2059] = 1541, - [2060] = 1542, - [2061] = 1543, - [2062] = 1544, - [2063] = 1547, - [2064] = 1548, - [2065] = 1551, - [2066] = 1557, - [2067] = 1558, - [2068] = 1560, - [2069] = 1561, - [2070] = 1572, - [2071] = 1573, - [2072] = 1574, - [2073] = 1575, - [2074] = 1454, - [2075] = 1578, - [2076] = 1604, - [2077] = 2077, - [2078] = 1605, - [2079] = 2079, - [2080] = 2080, - [2081] = 1593, - [2082] = 1479, - [2083] = 1488, - [2084] = 1490, - [2085] = 1502, - [2086] = 1606, - [2087] = 2087, - [2088] = 1607, - [2089] = 1608, - [2090] = 1609, - [2091] = 1610, - [2092] = 1611, - [2093] = 1612, - [2094] = 1455, - [2095] = 1456, - [2096] = 1457, - [2097] = 1458, - [2098] = 1459, - [2099] = 1460, - [2100] = 1461, - [2101] = 1462, - [2102] = 1463, - [2103] = 1464, - [2104] = 1465, - [2105] = 1598, - [2106] = 652, - [2107] = 1613, - [2108] = 1469, - [2109] = 1470, - [2110] = 1471, - [2111] = 1472, - [2112] = 1473, - [2113] = 1474, - [2114] = 1649, - [2115] = 1475, - [2116] = 1476, - [2117] = 1477, - [2118] = 1478, - [2119] = 1480, - [2120] = 1481, - [2121] = 1482, - [2122] = 1483, - [2123] = 1578, - [2124] = 1734, - [2125] = 2125, - [2126] = 2126, - [2127] = 1934, - [2128] = 1683, - [2129] = 1805, - [2130] = 2130, - [2131] = 1625, - [2132] = 1689, - [2133] = 1757, - [2134] = 2134, - [2135] = 233, - [2136] = 2136, - [2137] = 2137, - [2138] = 2138, - [2139] = 230, + [1958] = 651, + [1959] = 1471, + [1960] = 1549, + [1961] = 1558, + [1962] = 1590, + [1963] = 1473, + [1964] = 1474, + [1965] = 657, + [1966] = 1715, + [1967] = 1967, + [1968] = 1475, + [1969] = 1572, + [1970] = 1476, + [1971] = 1971, + [1972] = 1477, + [1973] = 1973, + [1974] = 1478, + [1975] = 1573, + [1976] = 1479, + [1977] = 1480, + [1978] = 1482, + [1979] = 1535, + [1980] = 1483, + [1981] = 656, + [1982] = 1485, + [1983] = 1983, + [1984] = 1984, + [1985] = 1928, + [1986] = 1487, + [1987] = 1488, + [1988] = 1560, + [1989] = 1489, + [1990] = 1490, + [1991] = 1991, + [1992] = 1491, + [1993] = 1606, + [1994] = 1492, + [1995] = 1561, + [1996] = 1928, + [1997] = 1562, + [1998] = 1951, + [1999] = 1571, + [2000] = 1801, + [2001] = 1493, + [2002] = 1516, + [2003] = 1532, + [2004] = 1537, + [2005] = 1595, + [2006] = 1550, + [2007] = 1601, + [2008] = 1564, + [2009] = 1565, + [2010] = 1928, + [2011] = 1516, + [2012] = 1928, + [2013] = 1465, + [2014] = 1532, + [2015] = 1624, + [2016] = 1928, + [2017] = 1754, + [2018] = 1715, + [2019] = 1619, + [2020] = 1563, + [2021] = 1605, + [2022] = 1458, + [2023] = 1606, + [2024] = 2024, + [2025] = 1498, + [2026] = 1534, + [2027] = 1566, + [2028] = 1527, + [2029] = 1499, + [2030] = 2030, + [2031] = 1500, + [2032] = 1647, + [2033] = 653, + [2034] = 1604, + [2035] = 1567, + [2036] = 1536, + [2037] = 1538, + [2038] = 1529, + [2039] = 2039, + [2040] = 1531, + [2041] = 1502, + [2042] = 1754, + [2043] = 1585, + [2044] = 1504, + [2045] = 1505, + [2046] = 2039, + [2047] = 1469, + [2048] = 1468, + [2049] = 1586, + [2050] = 1587, + [2051] = 1619, + [2052] = 1588, + [2053] = 1878, + [2054] = 1506, + [2055] = 1507, + [2056] = 1568, + [2057] = 1539, + [2058] = 1611, + [2059] = 1508, + [2060] = 1591, + [2061] = 1524, + [2062] = 1542, + [2063] = 1459, + [2064] = 1616, + [2065] = 1509, + [2066] = 1510, + [2067] = 1614, + [2068] = 1612, + [2069] = 1557, + [2070] = 1641, + [2071] = 1511, + [2072] = 1512, + [2073] = 1593, + [2074] = 1514, + [2075] = 1515, + [2076] = 1497, + [2077] = 1503, + [2078] = 1569, + [2079] = 1601, + [2080] = 1518, + [2081] = 2081, + [2082] = 1556, + [2083] = 1528, + [2084] = 1555, + [2085] = 2085, + [2086] = 2030, + [2087] = 1543, + [2088] = 1577, + [2089] = 1754, + [2090] = 1578, + [2091] = 1582, + [2092] = 1553, + [2093] = 1580, + [2094] = 1589, + [2095] = 1472, + [2096] = 1592, + [2097] = 1594, + [2098] = 1597, + [2099] = 1600, + [2100] = 1609, + [2101] = 1928, + [2102] = 1544, + [2103] = 1610, + [2104] = 2104, + [2105] = 1613, + [2106] = 1615, + [2107] = 1570, + [2108] = 1554, + [2109] = 1545, + [2110] = 1481, + [2111] = 1486, + [2112] = 1525, + [2113] = 1494, + [2114] = 1495, + [2115] = 1470, + [2116] = 1546, + [2117] = 1517, + [2118] = 1547, + [2119] = 1548, + [2120] = 2120, + [2121] = 1552, + [2122] = 1551, + [2123] = 1950, + [2124] = 208, + [2125] = 1520, + [2126] = 1521, + [2127] = 1523, + [2128] = 1596, + [2129] = 2129, + [2130] = 217, + [2131] = 2131, + [2132] = 2132, + [2133] = 1578, + [2134] = 1655, + [2135] = 1781, + [2136] = 1730, + [2137] = 1764, + [2138] = 1606, + [2139] = 1653, [2140] = 2140, - [2141] = 1744, - [2142] = 1745, - [2143] = 2143, - [2144] = 2144, - [2145] = 1753, - [2146] = 2146, - [2147] = 1754, - [2148] = 1756, - [2149] = 1641, - [2150] = 1649, - [2151] = 1653, - [2152] = 1697, + [2141] = 2141, + [2142] = 1577, + [2143] = 1763, + [2144] = 1528, + [2145] = 1772, + [2146] = 1518, + [2147] = 1503, + [2148] = 1497, + [2149] = 2149, + [2150] = 240, + [2151] = 2151, + [2152] = 2152, [2153] = 2153, [2154] = 2154, - [2155] = 1668, - [2156] = 1761, - [2157] = 2157, - [2158] = 1708, - [2159] = 1614, - [2160] = 1711, - [2161] = 1712, - [2162] = 2153, - [2163] = 1934, - [2164] = 2154, + [2155] = 2155, + [2156] = 2156, + [2157] = 243, + [2158] = 2158, + [2159] = 242, + [2160] = 2160, + [2161] = 1801, + [2162] = 1459, + [2163] = 2163, + [2164] = 1468, [2165] = 2165, [2166] = 2166, - [2167] = 1714, - [2168] = 1769, - [2169] = 1718, - [2170] = 2153, - [2171] = 2171, - [2172] = 2154, - [2173] = 1585, - [2174] = 1592, - [2175] = 2153, - [2176] = 1585, - [2177] = 1592, - [2178] = 2165, - [2179] = 2166, - [2180] = 2165, - [2181] = 2166, + [2167] = 1652, + [2168] = 2168, + [2169] = 1469, + [2170] = 244, + [2171] = 246, + [2172] = 2131, + [2173] = 1529, + [2174] = 1535, + [2175] = 1715, + [2176] = 216, + [2177] = 228, + [2178] = 1787, + [2179] = 229, + [2180] = 234, + [2181] = 240, [2182] = 2182, - [2183] = 2154, - [2184] = 2165, - [2185] = 2166, - [2186] = 2165, - [2187] = 2166, - [2188] = 1721, - [2189] = 1724, - [2190] = 1725, - [2191] = 1726, - [2192] = 1729, - [2193] = 1730, - [2194] = 1731, - [2195] = 2195, - [2196] = 219, - [2197] = 235, - [2198] = 1684, - [2199] = 2199, - [2200] = 237, - [2201] = 216, + [2183] = 2183, + [2184] = 2184, + [2185] = 227, + [2186] = 2131, + [2187] = 217, + [2188] = 1612, + [2189] = 1754, + [2190] = 2190, + [2191] = 2191, + [2192] = 1580, + [2193] = 2193, + [2194] = 1589, + [2195] = 1590, + [2196] = 1592, + [2197] = 2197, + [2198] = 2154, + [2199] = 239, + [2200] = 1594, + [2201] = 2201, [2202] = 2202, - [2203] = 2203, - [2204] = 2204, - [2205] = 1771, - [2206] = 240, + [2203] = 1597, + [2204] = 226, + [2205] = 2205, + [2206] = 1609, [2207] = 2207, - [2208] = 1728, - [2209] = 1776, + [2208] = 2131, + [2209] = 2209, [2210] = 2210, - [2211] = 2211, - [2212] = 2199, - [2213] = 1732, - [2214] = 2214, - [2215] = 1782, - [2216] = 241, - [2217] = 1700, - [2218] = 242, - [2219] = 1774, - [2220] = 1775, - [2221] = 1781, - [2222] = 1626, - [2223] = 1784, - [2224] = 1723, - [2225] = 2134, - [2226] = 2203, - [2227] = 1646, - [2228] = 1758, - [2229] = 1763, - [2230] = 1715, + [2211] = 1610, + [2212] = 1644, + [2213] = 1613, + [2214] = 2131, + [2215] = 1615, + [2216] = 1481, + [2217] = 1486, + [2218] = 1525, + [2219] = 1494, + [2220] = 1495, + [2221] = 1600, + [2222] = 2184, + [2223] = 1635, + [2224] = 1642, + [2225] = 226, + [2226] = 2193, + [2227] = 1673, + [2228] = 2228, + [2229] = 1741, + [2230] = 239, [2231] = 2231, - [2232] = 1682, - [2233] = 1713, - [2234] = 1634, - [2235] = 2235, + [2232] = 1660, + [2233] = 1661, + [2234] = 1663, + [2235] = 1677, [2236] = 2236, - [2237] = 2237, - [2238] = 2238, - [2239] = 2239, + [2237] = 1746, + [2238] = 1681, + [2239] = 1668, [2240] = 2240, - [2241] = 2241, - [2242] = 2153, - [2243] = 2154, - [2244] = 2244, + [2241] = 1669, + [2242] = 2242, + [2243] = 2243, + [2244] = 1606, [2245] = 2245, - [2246] = 1671, - [2247] = 229, + [2246] = 1714, + [2247] = 1896, [2248] = 2248, - [2249] = 234, - [2250] = 2250, - [2251] = 2251, - [2252] = 2136, - [2253] = 2240, - [2254] = 2254, - [2255] = 2255, - [2256] = 2157, - [2257] = 1767, - [2258] = 2203, - [2259] = 1638, - [2260] = 1676, - [2261] = 223, - [2262] = 1685, - [2263] = 1687, - [2264] = 2153, - [2265] = 2154, - [2266] = 1639, - [2267] = 240, - [2268] = 2268, - [2269] = 2269, - [2270] = 1631, - [2271] = 1668, - [2272] = 2272, - [2273] = 1701, - [2274] = 1647, - [2275] = 1619, - [2276] = 1623, - [2277] = 1628, - [2278] = 2203, - [2279] = 1507, - [2280] = 1508, - [2281] = 1518, - [2282] = 1525, - [2283] = 1527, - [2284] = 1530, - [2285] = 1534, - [2286] = 1538, - [2287] = 1541, - [2288] = 1542, - [2289] = 1543, - [2290] = 1544, - [2291] = 1547, - [2292] = 1548, - [2293] = 1551, - [2294] = 1557, - [2295] = 1558, - [2296] = 1560, - [2297] = 1561, - [2298] = 1572, - [2299] = 1573, - [2300] = 1574, - [2301] = 1575, - [2302] = 1454, - [2303] = 1578, - [2304] = 229, - [2305] = 1479, - [2306] = 1488, - [2307] = 2307, - [2308] = 1490, - [2309] = 1502, - [2310] = 1650, - [2311] = 2311, - [2312] = 2312, - [2313] = 2203, - [2314] = 2254, - [2315] = 1553, + [2249] = 1670, + [2250] = 2184, + [2251] = 1878, + [2252] = 1662, + [2253] = 2253, + [2254] = 2193, + [2255] = 1612, + [2256] = 1614, + [2257] = 2257, + [2258] = 1616, + [2259] = 1524, + [2260] = 2260, + [2261] = 1711, + [2262] = 2131, + [2263] = 1654, + [2264] = 1600, + [2265] = 2163, + [2266] = 2131, + [2267] = 2267, + [2268] = 1671, + [2269] = 1676, + [2270] = 1682, + [2271] = 1495, + [2272] = 1494, + [2273] = 2273, + [2274] = 1525, + [2275] = 1672, + [2276] = 1524, + [2277] = 2201, + [2278] = 244, + [2279] = 1616, + [2280] = 1614, + [2281] = 1684, + [2282] = 227, + [2283] = 2283, + [2284] = 1759, + [2285] = 1758, + [2286] = 1618, + [2287] = 1751, + [2288] = 1717, + [2289] = 2289, + [2290] = 1706, + [2291] = 1486, + [2292] = 1630, + [2293] = 1481, + [2294] = 1615, + [2295] = 1695, + [2296] = 1688, + [2297] = 1679, + [2298] = 1686, + [2299] = 1878, + [2300] = 2300, + [2301] = 2301, + [2302] = 2300, + [2303] = 2301, + [2304] = 2165, + [2305] = 1674, + [2306] = 2300, + [2307] = 2301, + [2308] = 1675, + [2309] = 1678, + [2310] = 2131, + [2311] = 2300, + [2312] = 2301, + [2313] = 1707, + [2314] = 1532, + [2315] = 1516, [2316] = 2316, - [2317] = 2317, - [2318] = 2203, - [2319] = 2319, - [2320] = 2320, - [2321] = 234, - [2322] = 2203, - [2323] = 2323, - [2324] = 2324, - [2325] = 1822, - [2326] = 221, - [2327] = 2327, - [2328] = 1591, - [2329] = 2255, - [2330] = 1596, - [2331] = 1761, - [2332] = 223, - [2333] = 233, - [2334] = 1805, - [2335] = 230, - [2336] = 219, - [2337] = 235, - [2338] = 1648, - [2339] = 1677, - [2340] = 237, - [2341] = 216, - [2342] = 1633, - [2343] = 241, - [2344] = 1805, - [2345] = 2203, - [2346] = 1507, - [2347] = 1508, - [2348] = 1518, - [2349] = 1525, - [2350] = 1527, - [2351] = 1530, - [2352] = 1534, - [2353] = 1538, - [2354] = 1541, - [2355] = 1542, - [2356] = 1543, - [2357] = 1544, - [2358] = 1547, - [2359] = 1548, - [2360] = 1551, - [2361] = 1557, - [2362] = 1558, - [2363] = 1560, - [2364] = 1561, - [2365] = 1572, - [2366] = 1573, - [2367] = 1574, - [2368] = 1575, - [2369] = 1454, - [2370] = 1578, + [2317] = 234, + [2318] = 229, + [2319] = 1680, + [2320] = 1685, + [2321] = 1690, + [2322] = 1638, + [2323] = 1532, + [2324] = 1516, + [2325] = 2325, + [2326] = 1658, + [2327] = 1657, + [2328] = 2328, + [2329] = 1687, + [2330] = 1689, + [2331] = 1656, + [2332] = 1691, + [2333] = 2333, + [2334] = 2149, + [2335] = 228, + [2336] = 1896, + [2337] = 2193, + [2338] = 2184, + [2339] = 1649, + [2340] = 1648, + [2341] = 2341, + [2342] = 1645, + [2343] = 2343, + [2344] = 2344, + [2345] = 1610, + [2346] = 2346, + [2347] = 1622, + [2348] = 2184, + [2349] = 1637, + [2350] = 2350, + [2351] = 2193, + [2352] = 2352, + [2353] = 1878, + [2354] = 2354, + [2355] = 2355, + [2356] = 2356, + [2357] = 2357, + [2358] = 243, + [2359] = 2359, + [2360] = 2240, + [2361] = 2300, + [2362] = 2301, + [2363] = 1621, + [2364] = 2193, + [2365] = 2184, + [2366] = 1528, + [2367] = 216, + [2368] = 2368, + [2369] = 242, + [2370] = 1609, [2371] = 2371, - [2372] = 242, - [2373] = 1479, - [2374] = 1488, - [2375] = 1490, - [2376] = 1502, - [2377] = 1553, - [2378] = 1678, - [2379] = 1679, - [2380] = 2380, - [2381] = 2203, - [2382] = 1645, - [2383] = 1704, - [2384] = 1630, - [2385] = 221, - [2386] = 2153, - [2387] = 2154, - [2388] = 1785, - [2389] = 2389, - [2390] = 2390, - [2391] = 2391, - [2392] = 1653, - [2393] = 2393, - [2394] = 2390, - [2395] = 2395, - [2396] = 2390, - [2397] = 2397, - [2398] = 1585, - [2399] = 2399, - [2400] = 2400, - [2401] = 1592, - [2402] = 1670, - [2403] = 1805, - [2404] = 2390, - [2405] = 1479, - [2406] = 1488, - [2407] = 1490, - [2408] = 1502, - [2409] = 1591, - [2410] = 1596, - [2411] = 2411, - [2412] = 2412, - [2413] = 2390, - [2414] = 1934, - [2415] = 2411, - [2416] = 1593, - [2417] = 2417, - [2418] = 2418, - [2419] = 2419, - [2420] = 2390, + [2372] = 1597, + [2373] = 1594, + [2374] = 1592, + [2375] = 1590, + [2376] = 246, + [2377] = 1589, + [2378] = 1641, + [2379] = 1580, + [2380] = 1734, + [2381] = 1729, + [2382] = 1578, + [2383] = 1647, + [2384] = 1577, + [2385] = 1613, + [2386] = 1715, + [2387] = 2190, + [2388] = 1518, + [2389] = 1624, + [2390] = 2184, + [2391] = 1503, + [2392] = 1497, + [2393] = 1459, + [2394] = 1728, + [2395] = 1468, + [2396] = 1469, + [2397] = 1719, + [2398] = 2193, + [2399] = 1754, + [2400] = 1725, + [2401] = 2401, + [2402] = 2402, + [2403] = 2131, + [2404] = 2404, + [2405] = 2405, + [2406] = 1606, + [2407] = 2407, + [2408] = 1619, + [2409] = 1878, + [2410] = 1469, + [2411] = 1529, + [2412] = 1535, + [2413] = 1524, + [2414] = 1468, + [2415] = 1459, + [2416] = 1497, + [2417] = 1616, + [2418] = 2407, + [2419] = 1754, + [2420] = 1503, [2421] = 2421, - [2422] = 1670, + [2422] = 1518, [2423] = 2423, [2424] = 2424, - [2425] = 1668, + [2425] = 1614, [2426] = 2426, - [2427] = 1761, - [2428] = 1603, - [2429] = 1507, - [2430] = 1508, - [2431] = 1518, - [2432] = 1525, - [2433] = 1527, - [2434] = 1530, - [2435] = 1534, + [2427] = 2427, + [2428] = 2428, + [2429] = 1612, + [2430] = 2430, + [2431] = 2431, + [2432] = 2407, + [2433] = 2433, + [2434] = 1715, + [2435] = 2435, [2436] = 2436, - [2437] = 1538, - [2438] = 1541, - [2439] = 1542, - [2440] = 1543, - [2441] = 1544, - [2442] = 1547, - [2443] = 1548, - [2444] = 1551, - [2445] = 1557, - [2446] = 1558, - [2447] = 1560, - [2448] = 1561, - [2449] = 2400, - [2450] = 1572, - [2451] = 1573, - [2452] = 1574, - [2453] = 1575, - [2454] = 1454, + [2437] = 1528, + [2438] = 1577, + [2439] = 1578, + [2440] = 1580, + [2441] = 2441, + [2442] = 2442, + [2443] = 2443, + [2444] = 2444, + [2445] = 2445, + [2446] = 2446, + [2447] = 1878, + [2448] = 2448, + [2449] = 2449, + [2450] = 2450, + [2451] = 1601, + [2452] = 2452, + [2453] = 2407, + [2454] = 2454, [2455] = 2455, - [2456] = 2426, - [2457] = 1578, - [2458] = 2421, - [2459] = 2455, + [2456] = 1896, + [2457] = 1589, + [2458] = 2458, + [2459] = 1590, [2460] = 2460, - [2461] = 2461, - [2462] = 1795, + [2461] = 1592, + [2462] = 2462, [2463] = 2463, - [2464] = 2390, - [2465] = 2465, - [2466] = 2466, - [2467] = 1805, - [2468] = 1805, - [2469] = 1553, - [2470] = 2470, - [2471] = 2471, - [2472] = 2472, - [2473] = 2473, - [2474] = 1805, - [2475] = 1649, - [2476] = 1653, - [2477] = 2477, - [2478] = 1697, + [2464] = 1647, + [2465] = 1594, + [2466] = 1597, + [2467] = 2407, + [2468] = 2468, + [2469] = 1609, + [2470] = 1610, + [2471] = 1516, + [2472] = 1532, + [2473] = 1613, + [2474] = 1615, + [2475] = 2428, + [2476] = 2476, + [2477] = 1836, + [2478] = 1878, [2479] = 2479, - [2480] = 2480, + [2480] = 1481, [2481] = 2481, [2482] = 2482, [2483] = 2483, - [2484] = 913, - [2485] = 1668, - [2486] = 1670, - [2487] = 911, - [2488] = 1603, + [2484] = 2484, + [2485] = 2485, + [2486] = 2486, + [2487] = 2487, + [2488] = 2488, [2489] = 2489, [2490] = 2490, [2491] = 2491, - [2492] = 2492, - [2493] = 1593, - [2494] = 2494, + [2492] = 1486, + [2493] = 1525, + [2494] = 2407, [2495] = 2495, - [2496] = 1553, - [2497] = 2497, - [2498] = 2498, - [2499] = 2499, - [2500] = 2500, + [2496] = 1619, + [2497] = 1494, + [2498] = 1537, + [2499] = 1495, + [2500] = 2407, [2501] = 2501, - [2502] = 1761, - [2503] = 2503, - [2504] = 2504, + [2502] = 2495, + [2503] = 2450, + [2504] = 1600, [2505] = 2505, - [2506] = 1670, + [2506] = 2506, [2507] = 2507, [2508] = 2508, - [2509] = 1553, - [2510] = 1794, - [2511] = 2511, - [2512] = 912, - [2513] = 2166, - [2514] = 2165, - [2515] = 2515, - [2516] = 2166, + [2509] = 2509, + [2510] = 2486, + [2511] = 2509, + [2512] = 2512, + [2513] = 2513, + [2514] = 1606, + [2515] = 1878, + [2516] = 2516, [2517] = 2517, - [2518] = 1649, - [2519] = 1447, - [2520] = 1934, - [2521] = 1653, + [2518] = 2518, + [2519] = 2519, + [2520] = 1831, + [2521] = 2521, [2522] = 2522, [2523] = 2523, [2524] = 2524, [2525] = 2525, [2526] = 2526, - [2527] = 2527, - [2528] = 2165, - [2529] = 2165, + [2527] = 1641, + [2528] = 1606, + [2529] = 2529, [2530] = 2530, - [2531] = 2166, - [2532] = 1697, - [2533] = 2166, - [2534] = 2534, - [2535] = 2307, - [2536] = 2536, - [2537] = 2165, - [2538] = 2166, + [2531] = 1619, + [2532] = 2532, + [2533] = 2533, + [2534] = 1647, + [2535] = 1624, + [2536] = 1619, + [2537] = 2537, + [2538] = 1537, [2539] = 2539, [2540] = 2540, - [2541] = 2166, + [2541] = 2541, [2542] = 2542, [2543] = 2543, [2544] = 2544, - [2545] = 2545, - [2546] = 1553, - [2547] = 2165, - [2548] = 1553, - [2549] = 2165, + [2545] = 1601, + [2546] = 1715, + [2547] = 2547, + [2548] = 1754, + [2549] = 2549, [2550] = 2550, [2551] = 2551, - [2552] = 2165, - [2553] = 2166, - [2554] = 2554, - [2555] = 243, - [2556] = 2556, - [2557] = 226, - [2558] = 2558, - [2559] = 2559, - [2560] = 239, - [2561] = 2561, + [2552] = 2401, + [2553] = 2300, + [2554] = 2301, + [2555] = 2555, + [2556] = 1624, + [2557] = 1647, + [2558] = 1641, + [2559] = 1179, + [2560] = 1606, + [2561] = 2301, [2562] = 2562, - [2563] = 2563, - [2564] = 2564, + [2563] = 2300, + [2564] = 1606, [2565] = 2565, [2566] = 2566, [2567] = 2567, - [2568] = 2568, + [2568] = 1896, [2569] = 2569, - [2570] = 2570, - [2571] = 2571, - [2572] = 2572, + [2570] = 2300, + [2571] = 2301, + [2572] = 2301, [2573] = 2573, [2574] = 2574, [2575] = 2575, - [2576] = 2570, + [2576] = 2576, [2577] = 2577, [2578] = 2578, [2579] = 2579, - [2580] = 2570, + [2580] = 2580, [2581] = 2581, - [2582] = 2570, + [2582] = 2300, [2583] = 2583, - [2584] = 2584, - [2585] = 2585, + [2584] = 1448, + [2585] = 2301, [2586] = 2586, - [2587] = 2587, - [2588] = 2588, - [2589] = 2589, - [2590] = 1231, - [2591] = 243, + [2587] = 2300, + [2588] = 2301, + [2589] = 2300, + [2590] = 2590, + [2591] = 2301, [2592] = 2592, - [2593] = 2593, + [2593] = 2300, [2594] = 2594, [2595] = 2595, [2596] = 2596, [2597] = 2597, - [2598] = 226, - [2599] = 2570, - [2600] = 2600, - [2601] = 1183, - [2602] = 2602, - [2603] = 2603, - [2604] = 2570, + [2598] = 2598, + [2599] = 2598, + [2600] = 2598, + [2601] = 2598, + [2602] = 232, + [2603] = 2598, + [2604] = 2604, [2605] = 2605, [2606] = 2606, - [2607] = 2570, - [2608] = 2570, - [2609] = 2609, + [2607] = 2607, + [2608] = 238, + [2609] = 236, [2610] = 2610, - [2611] = 2611, - [2612] = 218, - [2613] = 2613, + [2611] = 225, + [2612] = 2612, + [2613] = 236, [2614] = 2614, - [2615] = 2615, + [2615] = 2598, [2616] = 2616, - [2617] = 2570, + [2617] = 2617, [2618] = 2618, - [2619] = 2503, + [2619] = 2619, [2620] = 2620, - [2621] = 218, + [2621] = 1240, [2622] = 2622, [2623] = 2623, [2624] = 2624, [2625] = 2625, [2626] = 2626, - [2627] = 239, + [2627] = 2598, [2628] = 2628, - [2629] = 2500, + [2629] = 2629, [2630] = 2630, - [2631] = 2171, + [2631] = 2631, [2632] = 2632, [2633] = 2633, [2634] = 2634, - [2635] = 2138, + [2635] = 2635, [2636] = 2636, [2637] = 2637, [2638] = 2638, - [2639] = 2202, - [2640] = 2244, + [2639] = 2639, + [2640] = 2640, [2641] = 2641, [2642] = 2642, [2643] = 2643, [2644] = 2644, - [2645] = 2463, + [2645] = 2645, [2646] = 2646, - [2647] = 2397, - [2648] = 2455, - [2649] = 2471, - [2650] = 2419, - [2651] = 2465, - [2652] = 2426, - [2653] = 2400, - [2654] = 2470, + [2647] = 2647, + [2648] = 2648, + [2649] = 2649, + [2650] = 2650, + [2651] = 2651, + [2652] = 2652, + [2653] = 2653, + [2654] = 2654, [2655] = 2655, - [2656] = 2393, - [2657] = 2400, - [2658] = 2426, - [2659] = 2421, - [2660] = 2455, - [2661] = 2646, - [2662] = 2418, - [2663] = 2421, + [2656] = 2656, + [2657] = 2657, + [2658] = 2658, + [2659] = 2659, + [2660] = 2660, + [2661] = 2661, + [2662] = 2662, + [2663] = 2663, [2664] = 2664, - [2665] = 2465, - [2666] = 2471, - [2667] = 2419, - [2668] = 2418, - [2669] = 2643, - [2670] = 2423, - [2671] = 1201, + [2665] = 2665, + [2666] = 2666, + [2667] = 2667, + [2668] = 2668, + [2669] = 2669, + [2670] = 2670, + [2671] = 2671, [2672] = 2672, [2673] = 2673, [2674] = 2674, @@ -7338,42 +7444,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2680] = 2680, [2681] = 2681, [2682] = 2682, - [2683] = 2681, - [2684] = 2681, - [2685] = 2680, - [2686] = 2676, + [2683] = 2683, + [2684] = 2684, + [2685] = 2685, + [2686] = 2686, [2687] = 2687, - [2688] = 2678, - [2689] = 2680, - [2690] = 2679, - [2691] = 2680, + [2688] = 2688, + [2689] = 2689, + [2690] = 2690, + [2691] = 2691, [2692] = 2692, - [2693] = 2692, - [2694] = 2673, + [2693] = 2693, + [2694] = 2694, [2695] = 2695, [2696] = 2696, - [2697] = 1244, + [2697] = 2697, [2698] = 2698, [2699] = 2699, [2700] = 2700, [2701] = 2701, [2702] = 2702, - [2703] = 1233, - [2704] = 1228, + [2703] = 2703, + [2704] = 2704, [2705] = 2705, [2706] = 2706, [2707] = 2707, [2708] = 2708, - [2709] = 1203, + [2709] = 2709, [2710] = 2710, [2711] = 2711, [2712] = 2712, [2713] = 2713, - [2714] = 1194, + [2714] = 2714, [2715] = 2715, [2716] = 2716, [2717] = 2717, - [2718] = 2391, + [2718] = 2598, [2719] = 2719, [2720] = 2720, [2721] = 2721, @@ -7391,20 +7497,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2733] = 2733, [2734] = 2734, [2735] = 2735, - [2736] = 2731, + [2736] = 2736, [2737] = 2737, [2738] = 2738, [2739] = 2739, [2740] = 2740, [2741] = 2741, [2742] = 2742, - [2743] = 2726, + [2743] = 2743, [2744] = 2744, [2745] = 2745, [2746] = 2746, - [2747] = 2739, + [2747] = 2747, [2748] = 2748, - [2749] = 2746, + [2749] = 2749, [2750] = 2750, [2751] = 2751, [2752] = 2752, @@ -7424,351 +7530,351 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2766] = 2766, [2767] = 2767, [2768] = 2768, - [2769] = 2752, + [2769] = 2769, [2770] = 2770, - [2771] = 2721, - [2772] = 2753, + [2771] = 2771, + [2772] = 2772, [2773] = 2773, - [2774] = 2742, - [2775] = 2765, + [2774] = 2774, + [2775] = 2775, [2776] = 2776, [2777] = 2777, - [2778] = 2770, - [2779] = 2773, - [2780] = 2744, + [2778] = 2778, + [2779] = 2779, + [2780] = 2780, [2781] = 2781, - [2782] = 1431, - [2783] = 1432, - [2784] = 1433, - [2785] = 1481, - [2786] = 1494, - [2787] = 1505, - [2788] = 1495, - [2789] = 1496, - [2790] = 1504, - [2791] = 1497, - [2792] = 1498, - [2793] = 1515, - [2794] = 1516, - [2795] = 1517, - [2796] = 1519, - [2797] = 1521, - [2798] = 1523, - [2799] = 1524, - [2800] = 1613, - [2801] = 1469, - [2802] = 1470, - [2803] = 1471, - [2804] = 1472, - [2805] = 1473, - [2806] = 1474, - [2807] = 1475, - [2808] = 1476, - [2809] = 1477, - [2810] = 1478, - [2811] = 1480, - [2812] = 1482, - [2813] = 1499, - [2814] = 1526, - [2815] = 1528, - [2816] = 1501, - [2817] = 1503, - [2818] = 1520, + [2782] = 2782, + [2783] = 2783, + [2784] = 2784, + [2785] = 2785, + [2786] = 2786, + [2787] = 2787, + [2788] = 2788, + [2789] = 2789, + [2790] = 2790, + [2791] = 2791, + [2792] = 2792, + [2793] = 2793, + [2794] = 2794, + [2795] = 2795, + [2796] = 2796, + [2797] = 2797, + [2798] = 2798, + [2799] = 2799, + [2800] = 2800, + [2801] = 2801, + [2802] = 2802, + [2803] = 2803, + [2804] = 2804, + [2805] = 2805, + [2806] = 2806, + [2807] = 2807, + [2808] = 2808, + [2809] = 2809, + [2810] = 2810, + [2811] = 232, + [2812] = 2812, + [2813] = 2813, + [2814] = 2814, + [2815] = 2598, + [2816] = 2816, + [2817] = 2817, + [2818] = 2818, [2819] = 2819, - [2820] = 245, - [2821] = 2819, - [2822] = 231, + [2820] = 2820, + [2821] = 2821, + [2822] = 2822, [2823] = 2823, - [2824] = 1443, - [2825] = 1461, - [2826] = 1456, - [2827] = 1433, - [2828] = 1441, - [2829] = 1601, - [2830] = 1455, - [2831] = 1571, - [2832] = 1431, - [2833] = 1576, - [2834] = 1612, - [2835] = 1611, - [2836] = 1460, - [2837] = 1459, - [2838] = 1462, - [2839] = 1432, - [2840] = 1435, - [2841] = 1604, - [2842] = 1466, - [2843] = 1606, - [2844] = 1554, - [2845] = 1598, - [2846] = 1440, - [2847] = 1597, - [2848] = 1594, - [2849] = 1451, - [2850] = 1555, - [2851] = 1446, - [2852] = 1602, - [2853] = 1509, - [2854] = 1510, - [2855] = 1550, - [2856] = 1584, - [2857] = 1529, - [2858] = 1587, - [2859] = 1512, - [2860] = 1590, - [2861] = 1595, - [2862] = 1433, - [2863] = 1431, - [2864] = 1432, - [2865] = 1605, - [2866] = 1607, + [2824] = 2824, + [2825] = 2825, + [2826] = 2826, + [2827] = 2827, + [2828] = 2828, + [2829] = 2829, + [2830] = 2830, + [2831] = 2831, + [2832] = 2832, + [2833] = 2833, + [2834] = 2834, + [2835] = 2835, + [2836] = 2836, + [2837] = 2837, + [2838] = 2838, + [2839] = 2839, + [2840] = 2840, + [2841] = 2841, + [2842] = 2842, + [2843] = 2843, + [2844] = 2844, + [2845] = 2845, + [2846] = 2846, + [2847] = 2847, + [2848] = 2848, + [2849] = 2849, + [2850] = 2850, + [2851] = 2851, + [2852] = 2852, + [2853] = 2853, + [2854] = 2854, + [2855] = 2855, + [2856] = 2856, + [2857] = 2857, + [2858] = 2858, + [2859] = 2859, + [2860] = 2860, + [2861] = 2861, + [2862] = 2862, + [2863] = 2863, + [2864] = 2864, + [2865] = 2865, + [2866] = 2866, [2867] = 2867, [2868] = 2868, [2869] = 2869, [2870] = 2870, - [2871] = 1608, - [2872] = 1609, - [2873] = 1610, - [2874] = 1457, + [2871] = 2871, + [2872] = 2872, + [2873] = 2873, + [2874] = 2874, [2875] = 2875, - [2876] = 1463, - [2877] = 1465, - [2878] = 2875, - [2879] = 2867, - [2880] = 2868, - [2881] = 2869, - [2882] = 2870, - [2883] = 1539, - [2884] = 2875, - [2885] = 1540, - [2886] = 2868, - [2887] = 2869, - [2888] = 2870, - [2889] = 1545, - [2890] = 1546, - [2891] = 2875, - [2892] = 2867, - [2893] = 2868, - [2894] = 2869, - [2895] = 2870, - [2896] = 1556, - [2897] = 1565, - [2898] = 2875, - [2899] = 2875, - [2900] = 2875, - [2901] = 1435, - [2902] = 2867, - [2903] = 1566, - [2904] = 2868, - [2905] = 1577, - [2906] = 1613, - [2907] = 1579, - [2908] = 2869, - [2909] = 1469, - [2910] = 1470, - [2911] = 1471, - [2912] = 1472, - [2913] = 1473, - [2914] = 1474, - [2915] = 1580, - [2916] = 1475, - [2917] = 2870, - [2918] = 1582, - [2919] = 2875, - [2920] = 1483, - [2921] = 1484, - [2922] = 1476, - [2923] = 1583, - [2924] = 1477, - [2925] = 1489, - [2926] = 1491, - [2927] = 1478, - [2928] = 1480, - [2929] = 1481, - [2930] = 1482, - [2931] = 1494, - [2932] = 1495, - [2933] = 1496, - [2934] = 1497, - [2935] = 1498, - [2936] = 1499, - [2937] = 1501, - [2938] = 1503, - [2939] = 1504, - [2940] = 1505, - [2941] = 1515, - [2942] = 1516, - [2943] = 2875, - [2944] = 1517, - [2945] = 1519, - [2946] = 1520, - [2947] = 1521, - [2948] = 1523, - [2949] = 1524, - [2950] = 1526, - [2951] = 1528, - [2952] = 2867, - [2953] = 2953, + [2876] = 2876, + [2877] = 2877, + [2878] = 2878, + [2879] = 2879, + [2880] = 2880, + [2881] = 2881, + [2882] = 2882, + [2883] = 2883, + [2884] = 2884, + [2885] = 2885, + [2886] = 2886, + [2887] = 2887, + [2888] = 2888, + [2889] = 2889, + [2890] = 2890, + [2891] = 2891, + [2892] = 2892, + [2893] = 2893, + [2894] = 2893, + [2895] = 225, + [2896] = 238, + [2897] = 2897, + [2898] = 2522, + [2899] = 2518, + [2900] = 2900, + [2901] = 2901, + [2902] = 2902, + [2903] = 2903, + [2904] = 2904, + [2905] = 2905, + [2906] = 2906, + [2907] = 2341, + [2908] = 2257, + [2909] = 2909, + [2910] = 2352, + [2911] = 2343, + [2912] = 2912, + [2913] = 2243, + [2914] = 2325, + [2915] = 2915, + [2916] = 2267, + [2917] = 2917, + [2918] = 2918, + [2919] = 1211, + [2920] = 2354, + [2921] = 2921, + [2922] = 2922, + [2923] = 2923, + [2924] = 2924, + [2925] = 2925, + [2926] = 2333, + [2927] = 2273, + [2928] = 2928, + [2929] = 2929, + [2930] = 2930, + [2931] = 2931, + [2932] = 2355, + [2933] = 2933, + [2934] = 2934, + [2935] = 2356, + [2936] = 2936, + [2937] = 2316, + [2938] = 2209, + [2939] = 2939, + [2940] = 2940, + [2941] = 2941, + [2942] = 2245, + [2943] = 2344, + [2944] = 2944, + [2945] = 2442, + [2946] = 2946, + [2947] = 2947, + [2948] = 2454, + [2949] = 2491, + [2950] = 2950, + [2951] = 2487, + [2952] = 2952, + [2953] = 2452, [2954] = 2954, [2955] = 2955, [2956] = 2956, - [2957] = 1443, - [2958] = 1440, - [2959] = 2959, - [2960] = 2953, - [2961] = 2961, - [2962] = 2953, - [2963] = 2961, - [2964] = 2964, + [2957] = 2957, + [2958] = 2958, + [2959] = 2450, + [2960] = 2947, + [2961] = 2462, + [2962] = 2463, + [2963] = 2506, + [2964] = 2507, [2965] = 2965, - [2966] = 2966, - [2967] = 2967, - [2968] = 2968, - [2969] = 2969, - [2970] = 1449, + [2966] = 2944, + [2967] = 2957, + [2968] = 2954, + [2969] = 2443, + [2970] = 2970, [2971] = 2971, - [2972] = 2953, - [2973] = 2961, - [2974] = 2974, - [2975] = 2975, - [2976] = 2976, + [2972] = 2972, + [2973] = 2405, + [2974] = 2433, + [2975] = 2509, + [2976] = 2486, [2977] = 2977, - [2978] = 2953, - [2979] = 2961, + [2978] = 2978, + [2979] = 2505, [2980] = 2980, [2981] = 2981, - [2982] = 2961, - [2983] = 2953, + [2982] = 2404, + [2983] = 2983, [2984] = 2984, - [2985] = 2985, - [2986] = 2986, - [2987] = 2987, - [2988] = 2988, - [2989] = 2989, - [2990] = 2990, - [2991] = 2953, + [2985] = 2468, + [2986] = 2955, + [2987] = 2482, + [2988] = 2978, + [2989] = 2972, + [2990] = 2984, + [2991] = 2455, [2992] = 2992, - [2993] = 1436, - [2994] = 2994, - [2995] = 1450, - [2996] = 1496, - [2997] = 2997, - [2998] = 2998, - [2999] = 1598, - [3000] = 1563, - [3001] = 1564, - [3002] = 1528, - [3003] = 1571, - [3004] = 1435, - [3005] = 1576, - [3006] = 1458, - [3007] = 912, - [3008] = 1505, - [3009] = 3009, - [3010] = 1515, - [3011] = 1516, - [3012] = 913, - [3013] = 1497, - [3014] = 1586, - [3015] = 1554, - [3016] = 3016, - [3017] = 1464, - [3018] = 911, - [3019] = 1531, - [3020] = 1601, - [3021] = 1604, - [3022] = 1498, - [3023] = 1606, - [3024] = 1517, - [3025] = 1519, - [3026] = 2997, - [3027] = 1499, + [2993] = 2993, + [2994] = 2449, + [2995] = 2448, + [2996] = 2486, + [2997] = 2428, + [2998] = 2490, + [2999] = 2999, + [3000] = 2488, + [3001] = 3001, + [3002] = 3002, + [3003] = 3003, + [3004] = 2981, + [3005] = 2445, + [3006] = 2460, + [3007] = 3007, + [3008] = 3008, + [3009] = 2436, + [3010] = 1274, + [3011] = 2435, + [3012] = 3012, + [3013] = 2431, + [3014] = 2430, + [3015] = 3015, + [3016] = 2946, + [3017] = 3017, + [3018] = 3018, + [3019] = 1275, + [3020] = 3012, + [3021] = 3015, + [3022] = 3022, + [3023] = 3023, + [3024] = 2428, + [3025] = 3025, + [3026] = 2501, + [3027] = 2476, [3028] = 3028, [3029] = 3029, - [3030] = 1520, - [3031] = 1611, - [3032] = 1612, - [3033] = 1521, - [3034] = 1466, - [3035] = 1455, - [3036] = 1456, - [3037] = 2998, - [3038] = 3038, - [3039] = 3039, - [3040] = 1526, - [3041] = 1501, - [3042] = 1459, - [3043] = 1460, - [3044] = 1461, - [3045] = 3016, - [3046] = 1462, - [3047] = 1441, - [3048] = 1503, - [3049] = 3049, - [3050] = 1581, - [3051] = 2997, - [3052] = 2988, - [3053] = 1613, - [3054] = 1487, - [3055] = 1469, - [3056] = 1523, - [3057] = 3057, - [3058] = 1470, - [3059] = 1492, - [3060] = 1471, - [3061] = 1472, - [3062] = 2998, - [3063] = 3063, - [3064] = 1473, - [3065] = 1474, - [3066] = 1475, - [3067] = 1476, - [3068] = 1588, - [3069] = 1477, - [3070] = 2997, - [3071] = 1478, - [3072] = 1480, - [3073] = 1524, + [3030] = 3030, + [3031] = 3031, + [3032] = 2965, + [3033] = 2427, + [3034] = 2426, + [3035] = 3035, + [3036] = 2483, + [3037] = 2424, + [3038] = 2423, + [3039] = 2956, + [3040] = 2484, + [3041] = 2971, + [3042] = 3025, + [3043] = 2458, + [3044] = 3029, + [3045] = 2509, + [3046] = 3030, + [3047] = 3023, + [3048] = 3028, + [3049] = 3003, + [3050] = 2970, + [3051] = 3035, + [3052] = 2485, + [3053] = 2980, + [3054] = 3022, + [3055] = 2958, + [3056] = 2450, + [3057] = 3008, + [3058] = 3007, + [3059] = 3059, + [3060] = 2993, + [3061] = 3001, + [3062] = 3002, + [3063] = 3017, + [3064] = 3018, + [3065] = 3065, + [3066] = 3066, + [3067] = 3067, + [3068] = 1256, + [3069] = 3069, + [3070] = 3070, + [3071] = 1285, + [3072] = 3072, + [3073] = 3073, [3074] = 3074, - [3075] = 2998, - [3076] = 1481, - [3077] = 1482, - [3078] = 1494, - [3079] = 1495, - [3080] = 1504, - [3081] = 3081, + [3075] = 3066, + [3076] = 3076, + [3077] = 3077, + [3078] = 3078, + [3079] = 3079, + [3080] = 3069, + [3081] = 3079, [3082] = 3082, - [3083] = 3083, - [3084] = 1451, - [3085] = 3085, - [3086] = 1594, - [3087] = 1597, + [3083] = 3079, + [3084] = 3082, + [3085] = 1260, + [3086] = 3076, + [3087] = 3079, [3088] = 3088, - [3089] = 3089, - [3090] = 3090, - [3091] = 3091, + [3089] = 3078, + [3090] = 3067, + [3091] = 3076, [3092] = 3092, [3093] = 3093, [3094] = 3094, [3095] = 3095, - [3096] = 1436, - [3097] = 1446, + [3096] = 2508, + [3097] = 3097, [3098] = 3098, [3099] = 3099, - [3100] = 3099, - [3101] = 1449, + [3100] = 3100, + [3101] = 3101, [3102] = 3102, [3103] = 3103, [3104] = 3104, [3105] = 3105, [3106] = 3106, [3107] = 3107, - [3108] = 3099, - [3109] = 231, + [3108] = 3108, + [3109] = 2081, [3110] = 3110, [3111] = 3111, - [3112] = 1450, - [3113] = 1555, + [3112] = 3112, + [3113] = 3113, [3114] = 3114, [3115] = 3115, [3116] = 3116, @@ -7776,851 +7882,851 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3118] = 3118, [3119] = 3119, [3120] = 3120, - [3121] = 3104, - [3122] = 245, + [3121] = 3121, + [3122] = 3122, [3123] = 3123, - [3124] = 3104, + [3124] = 3124, [3125] = 3125, - [3126] = 1433, - [3127] = 1431, + [3126] = 3126, + [3127] = 3127, [3128] = 3128, [3129] = 3129, [3130] = 3130, - [3131] = 1432, + [3131] = 3131, [3132] = 3132, - [3133] = 3104, - [3134] = 3134, + [3133] = 3133, + [3134] = 3128, [3135] = 3135, - [3136] = 3104, - [3137] = 3099, - [3138] = 1440, + [3136] = 3136, + [3137] = 3137, + [3138] = 3138, [3139] = 3139, [3140] = 3140, - [3141] = 1443, + [3141] = 3141, [3142] = 3142, - [3143] = 1465, - [3144] = 1459, - [3145] = 1611, - [3146] = 1590, - [3147] = 1460, - [3148] = 1461, - [3149] = 1539, - [3150] = 1565, - [3151] = 1462, - [3152] = 1458, - [3153] = 912, - [3154] = 1566, - [3155] = 1577, - [3156] = 1576, - [3157] = 1456, - [3158] = 1609, - [3159] = 1546, - [3160] = 1545, - [3161] = 1550, + [3143] = 3138, + [3144] = 3144, + [3145] = 3126, + [3146] = 3146, + [3147] = 3147, + [3148] = 3148, + [3149] = 3149, + [3150] = 3150, + [3151] = 3121, + [3152] = 3152, + [3153] = 3153, + [3154] = 3154, + [3155] = 3136, + [3156] = 3120, + [3157] = 3157, + [3158] = 3158, + [3159] = 3159, + [3160] = 3147, + [3161] = 3161, [3162] = 3162, - [3163] = 1610, - [3164] = 1579, - [3165] = 1580, - [3166] = 656, - [3167] = 3167, - [3168] = 1564, - [3169] = 1483, - [3170] = 1484, - [3171] = 1463, - [3172] = 1487, - [3173] = 1489, - [3174] = 1491, - [3175] = 1492, - [3176] = 1464, - [3177] = 1581, - [3178] = 1612, - [3179] = 1455, - [3180] = 1595, - [3181] = 3181, - [3182] = 911, + [3163] = 3163, + [3164] = 3164, + [3165] = 3165, + [3166] = 3132, + [3167] = 3129, + [3168] = 3168, + [3169] = 3169, + [3170] = 3154, + [3171] = 3127, + [3172] = 3172, + [3173] = 3173, + [3174] = 3174, + [3175] = 3175, + [3176] = 3176, + [3177] = 3177, + [3178] = 3178, + [3179] = 3179, + [3180] = 3174, + [3181] = 3133, + [3182] = 3182, [3183] = 3183, - [3184] = 1435, - [3185] = 1601, - [3186] = 658, - [3187] = 1582, - [3188] = 1583, - [3189] = 1602, - [3190] = 1509, - [3191] = 1510, - [3192] = 1512, - [3193] = 654, - [3194] = 1584, - [3195] = 1540, - [3196] = 1605, - [3197] = 652, - [3198] = 1441, - [3199] = 1571, - [3200] = 1604, - [3201] = 1563, - [3202] = 1606, - [3203] = 1586, - [3204] = 1587, - [3205] = 1556, - [3206] = 1607, - [3207] = 1588, - [3208] = 1457, - [3209] = 913, - [3210] = 1529, - [3211] = 1531, - [3212] = 1608, - [3213] = 653, - [3214] = 3214, + [3184] = 3184, + [3185] = 3185, + [3186] = 3186, + [3187] = 3187, + [3188] = 3139, + [3189] = 3189, + [3190] = 3189, + [3191] = 3117, + [3192] = 3192, + [3193] = 3140, + [3194] = 3175, + [3195] = 3195, + [3196] = 3196, + [3197] = 3197, + [3198] = 3172, + [3199] = 3158, + [3200] = 3200, + [3201] = 3201, + [3202] = 3186, + [3203] = 3203, + [3204] = 3192, + [3205] = 3141, + [3206] = 3169, + [3207] = 3200, + [3208] = 3208, + [3209] = 3209, + [3210] = 3203, + [3211] = 3211, + [3212] = 3212, + [3213] = 3213, + [3214] = 3162, [3215] = 3215, - [3216] = 3215, - [3217] = 3215, - [3218] = 3218, + [3216] = 3196, + [3217] = 3195, + [3218] = 3157, [3219] = 3219, - [3220] = 3220, - [3221] = 1446, - [3222] = 3219, - [3223] = 1555, - [3224] = 3220, - [3225] = 1449, + [3220] = 3168, + [3221] = 3144, + [3222] = 3148, + [3223] = 3152, + [3224] = 3224, + [3225] = 3153, [3226] = 3226, - [3227] = 1450, - [3228] = 1440, + [3227] = 3178, + [3228] = 3228, [3229] = 3229, [3230] = 3230, [3231] = 3231, [3232] = 3232, [3233] = 3233, - [3234] = 3219, - [3235] = 3220, - [3236] = 2988, - [3237] = 3237, - [3238] = 1451, - [3239] = 1594, - [3240] = 3240, - [3241] = 1597, - [3242] = 3215, - [3243] = 1436, - [3244] = 3231, - [3245] = 3245, - [3246] = 3240, - [3247] = 3247, - [3248] = 3248, - [3249] = 1435, - [3250] = 3250, - [3251] = 1484, - [3252] = 3252, - [3253] = 3253, - [3254] = 3254, - [3255] = 3255, - [3256] = 1539, - [3257] = 1540, - [3258] = 3258, - [3259] = 3259, - [3260] = 1487, - [3261] = 3254, - [3262] = 3262, - [3263] = 3259, - [3264] = 3254, - [3265] = 1509, - [3266] = 3259, - [3267] = 3104, - [3268] = 1510, - [3269] = 1512, - [3270] = 3270, - [3271] = 654, - [3272] = 1545, - [3273] = 3273, - [3274] = 3274, - [3275] = 3275, - [3276] = 1546, + [3234] = 3159, + [3235] = 3164, + [3236] = 3236, + [3237] = 1435, + [3238] = 1436, + [3239] = 1438, + [3240] = 1493, + [3241] = 1496, + [3242] = 1510, + [3243] = 1500, + [3244] = 1499, + [3245] = 1498, + [3246] = 1476, + [3247] = 1473, + [3248] = 1477, + [3249] = 1458, + [3250] = 1478, + [3251] = 1492, + [3252] = 1509, + [3253] = 1491, + [3254] = 1479, + [3255] = 1480, + [3256] = 1474, + [3257] = 1482, + [3258] = 1490, + [3259] = 1475, + [3260] = 1489, + [3261] = 1511, + [3262] = 1512, + [3263] = 1514, + [3264] = 1515, + [3265] = 1517, + [3266] = 1483, + [3267] = 1520, + [3268] = 1521, + [3269] = 1523, + [3270] = 1531, + [3271] = 1530, + [3272] = 1526, + [3273] = 1527, + [3274] = 222, + [3275] = 1456, + [3276] = 221, [3277] = 3277, - [3278] = 3278, + [3278] = 3277, [3279] = 3279, - [3280] = 1556, - [3281] = 1565, - [3282] = 1529, - [3283] = 1183, - [3284] = 1531, - [3285] = 1566, - [3286] = 3286, - [3287] = 3287, - [3288] = 3288, - [3289] = 3289, - [3290] = 3259, - [3291] = 3291, - [3292] = 1489, - [3293] = 3293, - [3294] = 3294, - [3295] = 3295, - [3296] = 3296, - [3297] = 3297, - [3298] = 3298, - [3299] = 1491, - [3300] = 1584, - [3301] = 1595, - [3302] = 3302, - [3303] = 3259, - [3304] = 3252, - [3305] = 3305, - [3306] = 3306, - [3307] = 245, - [3308] = 3104, - [3309] = 3309, - [3310] = 3273, - [3311] = 231, - [3312] = 3253, - [3313] = 656, - [3314] = 3314, - [3315] = 3104, - [3316] = 3316, - [3317] = 1492, - [3318] = 3259, - [3319] = 3104, - [3320] = 3229, - [3321] = 3321, + [3280] = 1547, + [3281] = 1435, + [3282] = 1544, + [3283] = 1548, + [3284] = 1549, + [3285] = 1550, + [3286] = 1582, + [3287] = 1556, + [3288] = 1558, + [3289] = 1437, + [3290] = 1542, + [3291] = 1539, + [3292] = 1436, + [3293] = 1438, + [3294] = 1604, + [3295] = 1605, + [3296] = 1608, + [3297] = 1575, + [3298] = 1439, + [3299] = 1543, + [3300] = 1579, + [3301] = 1443, + [3302] = 1588, + [3303] = 1449, + [3304] = 1444, + [3305] = 1562, + [3306] = 1560, + [3307] = 1523, + [3308] = 1520, + [3309] = 1492, + [3310] = 1493, + [3311] = 1467, + [3312] = 1496, + [3313] = 3313, + [3314] = 1458, + [3315] = 1498, + [3316] = 3313, + [3317] = 3317, + [3318] = 3318, + [3319] = 1435, + [3320] = 1572, + [3321] = 1436, [3322] = 3322, - [3323] = 3323, - [3324] = 3324, - [3325] = 1577, - [3326] = 3326, - [3327] = 1579, - [3328] = 3254, - [3329] = 1580, - [3330] = 1581, - [3331] = 1466, - [3332] = 1440, - [3333] = 3226, - [3334] = 3306, - [3335] = 1582, - [3336] = 1583, - [3337] = 1586, - [3338] = 1587, - [3339] = 3339, - [3340] = 3340, - [3341] = 3341, - [3342] = 3342, - [3343] = 653, - [3344] = 1588, - [3345] = 3345, - [3346] = 1590, - [3347] = 3347, - [3348] = 3348, - [3349] = 3252, - [3350] = 3294, - [3351] = 3351, - [3352] = 3352, - [3353] = 3253, - [3354] = 3354, - [3355] = 3348, - [3356] = 3352, - [3357] = 3270, - [3358] = 3358, - [3359] = 1554, - [3360] = 3352, - [3361] = 3361, - [3362] = 3273, - [3363] = 3363, - [3364] = 1550, - [3365] = 3365, - [3366] = 3366, - [3367] = 3298, - [3368] = 3279, - [3369] = 3352, - [3370] = 3370, - [3371] = 3371, - [3372] = 3372, - [3373] = 3270, - [3374] = 3374, - [3375] = 3375, - [3376] = 3273, - [3377] = 3279, - [3378] = 3286, - [3379] = 3287, - [3380] = 3289, - [3381] = 3381, - [3382] = 3382, - [3383] = 3383, - [3384] = 3384, - [3385] = 658, - [3386] = 3286, - [3387] = 3387, - [3388] = 3388, - [3389] = 3389, - [3390] = 3390, - [3391] = 3391, - [3392] = 3392, - [3393] = 3393, - [3394] = 1602, - [3395] = 3259, - [3396] = 3396, - [3397] = 3104, - [3398] = 3398, - [3399] = 1605, - [3400] = 3294, - [3401] = 3398, - [3402] = 3402, - [3403] = 3322, - [3404] = 1607, - [3405] = 1608, - [3406] = 3286, - [3407] = 3407, - [3408] = 3252, - [3409] = 3253, - [3410] = 3254, - [3411] = 3254, + [3323] = 3317, + [3324] = 1438, + [3325] = 3318, + [3326] = 1499, + [3327] = 3322, + [3328] = 3328, + [3329] = 1500, + [3330] = 1561, + [3331] = 3328, + [3332] = 1564, + [3333] = 1566, + [3334] = 3313, + [3335] = 1568, + [3336] = 1569, + [3337] = 1570, + [3338] = 1490, + [3339] = 1472, + [3340] = 3313, + [3341] = 1489, + [3342] = 1554, + [3343] = 1509, + [3344] = 3313, + [3345] = 1510, + [3346] = 1596, + [3347] = 1595, + [3348] = 3328, + [3349] = 1593, + [3350] = 1573, + [3351] = 1591, + [3352] = 1574, + [3353] = 3317, + [3354] = 1587, + [3355] = 1586, + [3356] = 1585, + [3357] = 1483, + [3358] = 1505, + [3359] = 1511, + [3360] = 1507, + [3361] = 1512, + [3362] = 1508, + [3363] = 3313, + [3364] = 3328, + [3365] = 1482, + [3366] = 1488, + [3367] = 3313, + [3368] = 1480, + [3369] = 1514, + [3370] = 3313, + [3371] = 1487, + [3372] = 1485, + [3373] = 1557, + [3374] = 3322, + [3375] = 1555, + [3376] = 1553, + [3377] = 1515, + [3378] = 3318, + [3379] = 3317, + [3380] = 1517, + [3381] = 1479, + [3382] = 1552, + [3383] = 1478, + [3384] = 1477, + [3385] = 1551, + [3386] = 1437, + [3387] = 1476, + [3388] = 1546, + [3389] = 1491, + [3390] = 3328, + [3391] = 1538, + [3392] = 3322, + [3393] = 1504, + [3394] = 1521, + [3395] = 3318, + [3396] = 3318, + [3397] = 3317, + [3398] = 1526, + [3399] = 1475, + [3400] = 1527, + [3401] = 1534, + [3402] = 3322, + [3403] = 1474, + [3404] = 3313, + [3405] = 1531, + [3406] = 1530, + [3407] = 1473, + [3408] = 3408, + [3409] = 3409, + [3410] = 3410, + [3411] = 3411, [3412] = 3412, [3413] = 3413, - [3414] = 3414, - [3415] = 3233, - [3416] = 1609, - [3417] = 1610, - [3418] = 3287, - [3419] = 1457, - [3420] = 3420, - [3421] = 1458, - [3422] = 3363, + [3414] = 1456, + [3415] = 3408, + [3416] = 3416, + [3417] = 1440, + [3418] = 3413, + [3419] = 1443, + [3420] = 1446, + [3421] = 3413, + [3422] = 3422, [3423] = 3423, - [3424] = 3287, - [3425] = 1563, - [3426] = 1564, - [3427] = 1463, - [3428] = 1464, - [3429] = 1465, - [3430] = 3270, - [3431] = 1598, - [3432] = 3289, - [3433] = 3348, - [3434] = 652, - [3435] = 3289, - [3436] = 3384, - [3437] = 3104, - [3438] = 3438, - [3439] = 3414, - [3440] = 1483, + [3424] = 3413, + [3425] = 3425, + [3426] = 3426, + [3427] = 3427, + [3428] = 3428, + [3429] = 3429, + [3430] = 3430, + [3431] = 3431, + [3432] = 3432, + [3433] = 3433, + [3434] = 3434, + [3435] = 3435, + [3436] = 3436, + [3437] = 3437, + [3438] = 3413, + [3439] = 3439, + [3440] = 3413, [3441] = 3441, - [3442] = 3442, - [3443] = 3443, - [3444] = 3104, - [3445] = 3259, - [3446] = 3446, + [3442] = 3408, + [3443] = 3413, + [3444] = 3444, + [3445] = 3445, + [3446] = 3408, [3447] = 3447, - [3448] = 3279, - [3449] = 3449, - [3450] = 3450, + [3448] = 3448, + [3449] = 1442, + [3450] = 3408, [3451] = 3451, - [3452] = 3449, - [3453] = 3453, - [3454] = 3226, + [3452] = 1465, + [3453] = 1491, + [3454] = 1490, [3455] = 3455, - [3456] = 3456, + [3456] = 1543, [3457] = 3457, - [3458] = 3450, - [3459] = 3457, - [3460] = 3450, - [3461] = 3457, - [3462] = 3462, - [3463] = 3457, - [3464] = 228, - [3465] = 236, - [3466] = 3457, - [3467] = 3450, - [3468] = 3450, + [3458] = 3434, + [3459] = 1582, + [3460] = 1542, + [3461] = 1539, + [3462] = 1492, + [3463] = 1471, + [3464] = 1511, + [3465] = 1437, + [3466] = 3466, + [3467] = 3467, + [3468] = 3468, [3469] = 3469, - [3470] = 1436, - [3471] = 1449, - [3472] = 1450, - [3473] = 3473, + [3470] = 3470, + [3471] = 1548, + [3472] = 3467, + [3473] = 1109, [3474] = 3474, - [3475] = 3475, - [3476] = 913, - [3477] = 3450, - [3478] = 3450, - [3479] = 911, - [3480] = 912, - [3481] = 3481, - [3482] = 210, - [3483] = 214, - [3484] = 3484, - [3485] = 3485, - [3486] = 3450, - [3487] = 3487, - [3488] = 3451, - [3489] = 3489, - [3490] = 3490, - [3491] = 3457, - [3492] = 3492, - [3493] = 3493, - [3494] = 3494, - [3495] = 3495, - [3496] = 3496, - [3497] = 3497, + [3475] = 1489, + [3476] = 1605, + [3477] = 1608, + [3478] = 1510, + [3479] = 3467, + [3480] = 1110, + [3481] = 1556, + [3482] = 1544, + [3483] = 1509, + [3484] = 1506, + [3485] = 1483, + [3486] = 1482, + [3487] = 1480, + [3488] = 1500, + [3489] = 3455, + [3490] = 1439, + [3491] = 1499, + [3492] = 1498, + [3493] = 1466, + [3494] = 1114, + [3495] = 1479, + [3496] = 1567, + [3497] = 1458, [3498] = 3498, - [3499] = 3499, - [3500] = 3500, - [3501] = 3501, - [3502] = 3502, - [3503] = 3503, - [3504] = 3504, + [3499] = 1558, + [3500] = 1478, + [3501] = 1496, + [3502] = 1477, + [3503] = 1476, + [3504] = 1502, [3505] = 3505, - [3506] = 3506, - [3507] = 3507, - [3508] = 3508, - [3509] = 3509, - [3510] = 3510, - [3511] = 3511, - [3512] = 3512, - [3513] = 3513, - [3514] = 3181, - [3515] = 3515, - [3516] = 3516, - [3517] = 3517, - [3518] = 3518, - [3519] = 3519, - [3520] = 3520, - [3521] = 3521, - [3522] = 3351, - [3523] = 3523, - [3524] = 3524, - [3525] = 3515, - [3526] = 3526, - [3527] = 3527, - [3528] = 3507, - [3529] = 3529, - [3530] = 3530, - [3531] = 3531, - [3532] = 3532, - [3533] = 3533, + [3506] = 1475, + [3507] = 1493, + [3508] = 1474, + [3509] = 1512, + [3510] = 1575, + [3511] = 1531, + [3512] = 1530, + [3513] = 3457, + [3514] = 3457, + [3515] = 1473, + [3516] = 1527, + [3517] = 1579, + [3518] = 1514, + [3519] = 1571, + [3520] = 1526, + [3521] = 1523, + [3522] = 1515, + [3523] = 3457, + [3524] = 1565, + [3525] = 3525, + [3526] = 1549, + [3527] = 1517, + [3528] = 1536, + [3529] = 1604, + [3530] = 3467, + [3531] = 1550, + [3532] = 1520, + [3533] = 1521, [3534] = 3534, - [3535] = 3535, - [3536] = 3230, + [3535] = 1545, + [3536] = 1547, [3537] = 3537, - [3538] = 3538, + [3538] = 1444, [3539] = 3539, [3540] = 3540, [3541] = 3541, - [3542] = 3542, - [3543] = 3543, - [3544] = 3544, + [3542] = 3537, + [3543] = 221, + [3544] = 1443, [3545] = 3545, [3546] = 3546, - [3547] = 1554, - [3548] = 3548, - [3549] = 3523, + [3547] = 1446, + [3548] = 1440, + [3549] = 3549, [3550] = 3550, [3551] = 3551, [3552] = 3552, [3553] = 3553, [3554] = 3554, [3555] = 3555, - [3556] = 3556, - [3557] = 3557, + [3556] = 1560, + [3557] = 1435, [3558] = 3558, - [3559] = 3559, + [3559] = 1436, [3560] = 3560, [3561] = 3561, [3562] = 3562, - [3563] = 3423, - [3564] = 3564, + [3563] = 3563, + [3564] = 222, [3565] = 3565, [3566] = 3566, - [3567] = 228, + [3567] = 1588, [3568] = 3568, [3569] = 3569, - [3570] = 3526, + [3570] = 3570, [3571] = 3571, [3572] = 3572, - [3573] = 236, + [3573] = 3573, [3574] = 3574, [3575] = 3575, [3576] = 3576, - [3577] = 3577, + [3577] = 3537, [3578] = 3578, [3579] = 3579, [3580] = 3580, - [3581] = 3581, - [3582] = 3568, - [3583] = 3583, - [3584] = 3584, - [3585] = 1449, - [3586] = 3586, + [3581] = 3551, + [3582] = 3582, + [3583] = 1562, + [3584] = 3537, + [3585] = 1442, + [3586] = 1438, [3587] = 3587, [3588] = 3588, - [3589] = 3589, - [3590] = 1450, - [3591] = 3530, - [3592] = 3592, + [3589] = 3551, + [3590] = 3551, + [3591] = 3591, + [3592] = 1456, [3593] = 3593, [3594] = 3594, - [3595] = 3595, + [3595] = 3551, [3596] = 3596, - [3597] = 3534, - [3598] = 3278, - [3599] = 3599, - [3600] = 3507, - [3601] = 3601, - [3602] = 3602, - [3603] = 3603, - [3604] = 3604, - [3605] = 3605, - [3606] = 3606, - [3607] = 3607, - [3608] = 3608, - [3609] = 1598, - [3610] = 3588, + [3597] = 1449, + [3598] = 1543, + [3599] = 1534, + [3600] = 1538, + [3601] = 1582, + [3602] = 1585, + [3603] = 1556, + [3604] = 1548, + [3605] = 1549, + [3606] = 1558, + [3607] = 653, + [3608] = 1439, + [3609] = 1110, + [3610] = 1467, [3611] = 3611, - [3612] = 3612, - [3613] = 3613, - [3614] = 3614, - [3615] = 3615, - [3616] = 3616, - [3617] = 3512, - [3618] = 1581, - [3619] = 1586, - [3620] = 1588, - [3621] = 3545, - [3622] = 3529, - [3623] = 1458, - [3624] = 3624, - [3625] = 1464, - [3626] = 3626, - [3627] = 3627, - [3628] = 3628, - [3629] = 1563, - [3630] = 1564, + [3612] = 1505, + [3613] = 1553, + [3614] = 1550, + [3615] = 1504, + [3616] = 1506, + [3617] = 1488, + [3618] = 1437, + [3619] = 1487, + [3620] = 1485, + [3621] = 1502, + [3622] = 1544, + [3623] = 1564, + [3624] = 656, + [3625] = 1575, + [3626] = 1586, + [3627] = 1542, + [3628] = 1507, + [3629] = 1554, + [3630] = 1579, [3631] = 3631, - [3632] = 3632, - [3633] = 3633, - [3634] = 3634, - [3635] = 3635, - [3636] = 3636, - [3637] = 3637, - [3638] = 3438, - [3639] = 3639, - [3640] = 3531, - [3641] = 3641, - [3642] = 3642, - [3643] = 3643, - [3644] = 3644, - [3645] = 3645, - [3646] = 1487, - [3647] = 3647, - [3648] = 1436, - [3649] = 3649, + [3632] = 1466, + [3633] = 1552, + [3634] = 1565, + [3635] = 1465, + [3636] = 1545, + [3637] = 1114, + [3638] = 1587, + [3639] = 655, + [3640] = 1508, + [3641] = 1555, + [3642] = 1566, + [3643] = 1539, + [3644] = 1109, + [3645] = 1557, + [3646] = 1536, + [3647] = 1574, + [3648] = 1546, + [3649] = 651, [3650] = 3650, - [3651] = 1492, - [3652] = 3652, - [3653] = 3653, - [3654] = 3505, - [3655] = 3655, + [3651] = 1547, + [3652] = 1472, + [3653] = 1573, + [3654] = 1591, + [3655] = 1551, [3656] = 3656, - [3657] = 3657, - [3658] = 3658, - [3659] = 3659, - [3660] = 3650, - [3661] = 3661, - [3662] = 3662, - [3663] = 3663, - [3664] = 3664, - [3665] = 3665, - [3666] = 1531, - [3667] = 3667, - [3668] = 3668, + [3657] = 1471, + [3658] = 1567, + [3659] = 1593, + [3660] = 1561, + [3661] = 1572, + [3662] = 1595, + [3663] = 1568, + [3664] = 1571, + [3665] = 1596, + [3666] = 1570, + [3667] = 1569, + [3668] = 657, [3669] = 3669, - [3670] = 3670, - [3671] = 3523, + [3670] = 3669, + [3671] = 3671, [3672] = 3672, - [3673] = 3673, - [3674] = 3295, + [3673] = 3672, + [3674] = 3674, [3675] = 3675, [3676] = 3676, - [3677] = 3677, - [3678] = 3678, + [3677] = 1443, + [3678] = 3675, [3679] = 3679, [3680] = 3680, - [3681] = 3681, + [3681] = 3434, [3682] = 3682, [3683] = 3683, - [3684] = 3684, + [3684] = 1442, [3685] = 3685, - [3686] = 3686, - [3687] = 3687, - [3688] = 3553, + [3686] = 3680, + [3687] = 3680, + [3688] = 3688, [3689] = 3689, - [3690] = 3568, + [3690] = 3690, [3691] = 3691, - [3692] = 3692, - [3693] = 3680, - [3694] = 3530, - [3695] = 1466, - [3696] = 3696, - [3697] = 213, - [3698] = 3650, - [3699] = 3663, - [3700] = 3700, - [3701] = 3701, + [3692] = 3672, + [3693] = 1588, + [3694] = 3682, + [3695] = 1449, + [3696] = 1444, + [3697] = 1562, + [3698] = 3682, + [3699] = 1437, + [3700] = 1560, + [3701] = 1446, [3702] = 3702, - [3703] = 3703, - [3704] = 3704, + [3703] = 3672, + [3704] = 1440, [3705] = 3705, - [3706] = 3706, - [3707] = 3707, - [3708] = 3708, - [3709] = 3653, - [3710] = 3624, - [3711] = 3711, + [3706] = 1593, + [3707] = 1591, + [3708] = 1587, + [3709] = 3709, + [3710] = 1586, + [3711] = 1585, [3712] = 3712, [3713] = 3713, - [3714] = 3714, + [3714] = 3551, [3715] = 3715, [3716] = 3716, - [3717] = 3717, + [3717] = 1595, [3718] = 3718, - [3719] = 3719, - [3720] = 3662, + [3719] = 1596, + [3720] = 3720, [3721] = 3721, - [3722] = 3722, + [3722] = 3551, [3723] = 3723, - [3724] = 1700, - [3725] = 3725, - [3726] = 1633, + [3724] = 1443, + [3725] = 3671, + [3726] = 3726, [3727] = 3727, [3728] = 3728, [3729] = 3729, [3730] = 3730, [3731] = 3731, - [3732] = 3635, + [3732] = 3732, [3733] = 3733, - [3734] = 3734, + [3734] = 655, [3735] = 3735, [3736] = 3736, [3737] = 3737, [3738] = 3738, - [3739] = 656, - [3740] = 3740, + [3739] = 3721, + [3740] = 3551, [3741] = 3741, - [3742] = 3229, - [3743] = 3574, + [3742] = 3716, + [3743] = 3743, [3744] = 3744, - [3745] = 3735, + [3745] = 3745, [3746] = 3746, [3747] = 3747, - [3748] = 3748, - [3749] = 3749, - [3750] = 3750, + [3748] = 1574, + [3749] = 1573, + [3750] = 1572, [3751] = 3751, - [3752] = 3524, - [3753] = 3753, + [3752] = 1571, + [3753] = 1570, [3754] = 3754, - [3755] = 3755, - [3756] = 3737, - [3757] = 3757, + [3755] = 1569, + [3756] = 1567, + [3757] = 1566, [3758] = 3758, - [3759] = 3500, - [3760] = 3183, + [3759] = 1565, + [3760] = 3760, [3761] = 3761, - [3762] = 3537, - [3763] = 1725, - [3764] = 1726, - [3765] = 1729, - [3766] = 3735, - [3767] = 3767, - [3768] = 1730, - [3769] = 3233, - [3770] = 3747, - [3771] = 3753, + [3762] = 1564, + [3763] = 3763, + [3764] = 3764, + [3765] = 1465, + [3766] = 3766, + [3767] = 222, + [3768] = 3768, + [3769] = 3769, + [3770] = 1466, + [3771] = 3771, [3772] = 3772, [3773] = 3773, [3774] = 3774, [3775] = 3758, [3776] = 3776, - [3777] = 3607, - [3778] = 1731, - [3779] = 3779, - [3780] = 1734, - [3781] = 3781, - [3782] = 1581, - [3783] = 3783, - [3784] = 1586, - [3785] = 1588, - [3786] = 3736, - [3787] = 3787, - [3788] = 3788, - [3789] = 658, - [3790] = 3678, - [3791] = 3543, - [3792] = 1638, - [3793] = 1639, + [3777] = 3777, + [3778] = 3778, + [3779] = 1608, + [3780] = 3780, + [3781] = 3712, + [3782] = 3551, + [3783] = 221, + [3784] = 3784, + [3785] = 3785, + [3786] = 3786, + [3787] = 651, + [3788] = 3760, + [3789] = 1557, + [3790] = 3790, + [3791] = 3791, + [3792] = 3718, + [3793] = 1555, [3794] = 3794, - [3795] = 3679, + [3795] = 3795, [3796] = 3796, - [3797] = 3728, - [3798] = 3798, - [3799] = 3572, - [3800] = 3800, - [3801] = 3749, - [3802] = 3753, + [3797] = 1553, + [3798] = 1554, + [3799] = 3799, + [3800] = 3551, + [3801] = 1552, + [3802] = 3802, [3803] = 3803, - [3804] = 3736, - [3805] = 3681, - [3806] = 3796, - [3807] = 3682, - [3808] = 3731, - [3809] = 3736, - [3810] = 3787, - [3811] = 3811, - [3812] = 1458, - [3813] = 1464, - [3814] = 1201, - [3815] = 1775, - [3816] = 1781, - [3817] = 3817, - [3818] = 3818, - [3819] = 1563, - [3820] = 1564, - [3821] = 3787, + [3804] = 3685, + [3805] = 1551, + [3806] = 3806, + [3807] = 3807, + [3808] = 3808, + [3809] = 3808, + [3810] = 3796, + [3811] = 1546, + [3812] = 3803, + [3813] = 1545, + [3814] = 3726, + [3815] = 1561, + [3816] = 3726, + [3817] = 1568, + [3818] = 3726, + [3819] = 3726, + [3820] = 3820, + [3821] = 1538, [3822] = 3822, [3823] = 3823, - [3824] = 3788, - [3825] = 3735, - [3826] = 3826, - [3827] = 3827, - [3828] = 1487, - [3829] = 1492, - [3830] = 3753, - [3831] = 3736, - [3832] = 3822, - [3833] = 3833, - [3834] = 3772, - [3835] = 3497, - [3836] = 3823, - [3837] = 1531, - [3838] = 3838, - [3839] = 3737, + [3824] = 3795, + [3825] = 1536, + [3826] = 3799, + [3827] = 1534, + [3828] = 3828, + [3829] = 3799, + [3830] = 1605, + [3831] = 3808, + [3832] = 3795, + [3833] = 657, + [3834] = 3834, + [3835] = 3702, + [3836] = 3836, + [3837] = 3837, + [3838] = 3820, + [3839] = 3839, [3840] = 3840, - [3841] = 3733, + [3841] = 3841, [3842] = 3842, - [3843] = 3843, + [3843] = 3758, [3844] = 3844, [3845] = 3845, - [3846] = 652, - [3847] = 3593, + [3846] = 3846, + [3847] = 3735, [3848] = 3848, - [3849] = 3787, - [3850] = 3757, - [3851] = 1769, - [3852] = 3817, - [3853] = 3853, - [3854] = 3725, - [3855] = 1771, - [3856] = 653, - [3857] = 654, - [3858] = 3783, + [3849] = 1471, + [3850] = 3850, + [3851] = 3758, + [3852] = 3852, + [3853] = 1472, + [3854] = 3823, + [3855] = 3551, + [3856] = 3856, + [3857] = 3716, + [3858] = 3712, [3859] = 3859, - [3860] = 3848, - [3861] = 3552, - [3862] = 3862, - [3863] = 3848, - [3864] = 3520, + [3860] = 3776, + [3861] = 3760, + [3862] = 3718, + [3863] = 3796, + [3864] = 3803, [3865] = 3865, - [3866] = 3866, - [3867] = 3735, - [3868] = 3779, - [3869] = 3869, - [3870] = 3787, - [3871] = 3642, - [3872] = 3735, - [3873] = 3596, - [3874] = 3753, - [3875] = 3601, - [3876] = 3728, - [3877] = 3877, - [3878] = 3878, - [3879] = 3737, - [3880] = 3880, - [3881] = 3818, - [3882] = 3559, - [3883] = 1677, - [3884] = 3749, - [3885] = 3495, - [3886] = 3499, - [3887] = 1678, - [3888] = 3560, - [3889] = 3737, - [3890] = 3878, - [3891] = 3737, - [3892] = 3853, - [3893] = 3541, - [3894] = 3894, - [3895] = 3895, - [3896] = 3896, - [3897] = 3897, - [3898] = 3844, - [3899] = 3869, - [3900] = 3900, - [3901] = 3641, - [3902] = 3902, + [3866] = 3726, + [3867] = 3867, + [3868] = 3868, + [3869] = 3726, + [3870] = 3808, + [3871] = 3754, + [3872] = 3712, + [3873] = 3776, + [3874] = 3731, + [3875] = 653, + [3876] = 1604, + [3877] = 3776, + [3878] = 1467, + [3879] = 1508, + [3880] = 656, + [3881] = 1502, + [3882] = 1504, + [3883] = 1505, + [3884] = 3760, + [3885] = 1485, + [3886] = 1506, + [3887] = 3887, + [3888] = 3718, + [3889] = 1487, + [3890] = 3796, + [3891] = 3803, + [3892] = 3808, + [3893] = 1488, + [3894] = 3726, + [3895] = 3795, + [3896] = 3841, + [3897] = 3799, + [3898] = 3808, + [3899] = 3807, + [3900] = 1507, + [3901] = 3551, + [3902] = 3820, [3903] = 3903, - [3904] = 3895, - [3905] = 3905, - [3906] = 3737, - [3907] = 3736, - [3908] = 3818, - [3909] = 3787, - [3910] = 3853, - [3911] = 3753, - [3912] = 3639, + [3904] = 3904, + [3905] = 3904, + [3906] = 3906, + [3907] = 3904, + [3908] = 3908, + [3909] = 3909, + [3910] = 213, + [3911] = 212, + [3912] = 3912, [3913] = 3913, - [3914] = 3798, - [3915] = 3915, - [3916] = 3916, - [3917] = 3917, - [3918] = 3918, - [3919] = 3919, - [3920] = 856, - [3921] = 857, - [3922] = 858, - [3923] = 3923, - [3924] = 3924, - [3925] = 3925, - [3926] = 3926, + [3914] = 3914, + [3915] = 3906, + [3916] = 1442, + [3917] = 1446, + [3918] = 3904, + [3919] = 1440, + [3920] = 3920, + [3921] = 3903, + [3922] = 3922, + [3923] = 3914, + [3924] = 3903, + [3925] = 3903, + [3926] = 1109, [3927] = 3927, - [3928] = 3928, + [3928] = 1110, [3929] = 3929, - [3930] = 3930, - [3931] = 3741, + [3930] = 1114, + [3931] = 3931, [3932] = 3932, - [3933] = 3896, - [3934] = 3934, - [3935] = 3900, - [3936] = 3729, - [3937] = 863, - [3938] = 3938, - [3939] = 864, - [3940] = 865, - [3941] = 866, - [3942] = 867, - [3943] = 716, - [3944] = 868, - [3945] = 750, - [3946] = 808, - [3947] = 751, + [3933] = 3702, + [3934] = 3903, + [3935] = 3904, + [3936] = 3936, + [3937] = 3904, + [3938] = 3903, + [3939] = 3939, + [3940] = 3940, + [3941] = 3903, + [3942] = 230, + [3943] = 231, + [3944] = 3903, + [3945] = 3945, + [3946] = 3946, + [3947] = 3947, [3948] = 3948, [3949] = 3949, [3950] = 3950, [3951] = 3951, [3952] = 3952, - [3953] = 3527, - [3954] = 758, - [3955] = 759, - [3956] = 760, + [3953] = 3953, + [3954] = 3954, + [3955] = 3955, + [3956] = 1608, [3957] = 3957, [3958] = 3958, [3959] = 3959, [3960] = 3960, [3961] = 3961, [3962] = 3962, - [3963] = 3963, - [3964] = 3964, - [3965] = 3965, + [3963] = 1545, + [3964] = 1536, + [3965] = 1471, [3966] = 3966, [3967] = 3967, [3968] = 3968, @@ -8628,213 +8734,213 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3970] = 3970, [3971] = 3971, [3972] = 3972, - [3973] = 3973, - [3974] = 3974, - [3975] = 776, + [3973] = 1466, + [3974] = 1465, + [3975] = 231, [3976] = 3976, - [3977] = 777, - [3978] = 778, + [3977] = 3977, + [3978] = 3845, [3979] = 3979, - [3980] = 3980, - [3981] = 3981, + [3980] = 3842, + [3981] = 1605, [3982] = 3982, [3983] = 3983, [3984] = 3984, - [3985] = 3985, - [3986] = 779, - [3987] = 780, - [3988] = 781, - [3989] = 782, + [3985] = 1604, + [3986] = 3986, + [3987] = 3987, + [3988] = 3988, + [3989] = 3989, [3990] = 3990, [3991] = 3991, - [3992] = 3992, + [3992] = 230, [3993] = 3993, [3994] = 3994, [3995] = 3995, - [3996] = 3838, + [3996] = 3996, [3997] = 3997, [3998] = 3998, - [3999] = 788, + [3999] = 3999, [4000] = 4000, - [4001] = 3952, - [4002] = 789, - [4003] = 790, - [4004] = 792, - [4005] = 718, - [4006] = 736, - [4007] = 717, - [4008] = 795, + [4001] = 4001, + [4002] = 4002, + [4003] = 3993, + [4004] = 4004, + [4005] = 4005, + [4006] = 4006, + [4007] = 4007, + [4008] = 4008, [4009] = 4009, [4010] = 4010, [4011] = 4011, [4012] = 4012, - [4013] = 4013, - [4014] = 4009, - [4015] = 801, + [4013] = 4004, + [4014] = 4014, + [4015] = 4015, [4016] = 4016, - [4017] = 4017, + [4017] = 4010, [4018] = 4018, [4019] = 4019, [4020] = 4020, [4021] = 4021, [4022] = 4022, - [4023] = 3980, - [4024] = 3915, + [4023] = 4023, + [4024] = 4024, [4025] = 4025, [4026] = 4026, [4027] = 4027, [4028] = 4028, [4029] = 4029, [4030] = 4030, - [4031] = 746, - [4032] = 4032, + [4031] = 4031, + [4032] = 4010, [4033] = 4033, [4034] = 4034, [4035] = 4035, [4036] = 4036, [4037] = 4037, [4038] = 4038, - [4039] = 4039, - [4040] = 4040, + [4039] = 3972, + [4040] = 3988, [4041] = 4041, [4042] = 4042, [4043] = 4043, - [4044] = 4044, + [4044] = 1440, [4045] = 4045, - [4046] = 4046, - [4047] = 4011, + [4046] = 4022, + [4047] = 1446, [4048] = 4048, - [4049] = 810, - [4050] = 748, - [4051] = 735, - [4052] = 811, + [4049] = 4049, + [4050] = 4050, + [4051] = 4051, + [4052] = 4052, [4053] = 4053, - [4054] = 812, - [4055] = 813, - [4056] = 4025, + [4054] = 3650, + [4055] = 4055, + [4056] = 3949, [4057] = 4057, [4058] = 4058, - [4059] = 814, - [4060] = 724, - [4061] = 3950, - [4062] = 815, - [4063] = 816, - [4064] = 4064, - [4065] = 817, - [4066] = 818, - [4067] = 4067, + [4059] = 4059, + [4060] = 4060, + [4061] = 4000, + [4062] = 4062, + [4063] = 4063, + [4064] = 1442, + [4065] = 3948, + [4066] = 4066, + [4067] = 4066, [4068] = 4068, [4069] = 4069, - [4070] = 4070, - [4071] = 820, - [4072] = 821, - [4073] = 824, - [4074] = 723, - [4075] = 715, - [4076] = 719, - [4077] = 828, - [4078] = 4078, - [4079] = 4067, + [4070] = 3947, + [4071] = 4071, + [4072] = 4072, + [4073] = 4073, + [4074] = 4074, + [4075] = 4075, + [4076] = 4076, + [4077] = 4077, + [4078] = 3947, + [4079] = 3949, [4080] = 4080, - [4081] = 4081, - [4082] = 4082, + [4081] = 1565, + [4082] = 1567, [4083] = 4083, [4084] = 4084, - [4085] = 3957, + [4085] = 1571, [4086] = 4086, [4087] = 4087, - [4088] = 3606, + [4088] = 4088, [4089] = 4089, - [4090] = 4030, + [4090] = 4090, [4091] = 4091, [4092] = 4092, - [4093] = 3976, - [4094] = 4033, - [4095] = 835, - [4096] = 836, - [4097] = 837, - [4098] = 838, - [4099] = 3990, - [4100] = 3991, - [4101] = 839, - [4102] = 840, - [4103] = 841, + [4093] = 4093, + [4094] = 4094, + [4095] = 4095, + [4096] = 4096, + [4097] = 4097, + [4098] = 4051, + [4099] = 1506, + [4100] = 3982, + [4101] = 1502, + [4102] = 4102, + [4103] = 4103, [4104] = 4104, - [4105] = 844, - [4106] = 845, - [4107] = 728, + [4105] = 4105, + [4106] = 4106, + [4107] = 3948, [4108] = 4108, [4109] = 4109, - [4110] = 4017, - [4111] = 4020, - [4112] = 4112, + [4110] = 4110, + [4111] = 4111, + [4112] = 3723, [4113] = 4113, [4114] = 4114, - [4115] = 4115, + [4115] = 4048, [4116] = 4116, [4117] = 4117, [4118] = 4118, [4119] = 4119, - [4120] = 848, - [4121] = 849, - [4122] = 850, - [4123] = 851, - [4124] = 853, - [4125] = 3976, - [4126] = 3990, + [4120] = 4120, + [4121] = 3806, + [4122] = 4122, + [4123] = 4123, + [4124] = 4124, + [4125] = 4125, + [4126] = 4126, [4127] = 4127, [4128] = 4128, [4129] = 4129, [4130] = 4130, - [4131] = 4017, + [4131] = 4131, [4132] = 4132, [4133] = 4133, - [4134] = 4134, - [4135] = 4135, + [4134] = 4007, + [4135] = 3962, [4136] = 4136, [4137] = 4137, - [4138] = 3990, + [4138] = 4138, [4139] = 4139, [4140] = 4140, [4141] = 4141, - [4142] = 4142, - [4143] = 4017, + [4142] = 3705, + [4143] = 4143, [4144] = 4144, [4145] = 4145, [4146] = 4146, [4147] = 4147, - [4148] = 4148, + [4148] = 3969, [4149] = 4149, [4150] = 4150, [4151] = 4151, [4152] = 4152, [4153] = 4153, [4154] = 4154, - [4155] = 4036, + [4155] = 4155, [4156] = 4156, - [4157] = 4157, + [4157] = 210, [4158] = 4158, - [4159] = 4159, + [4159] = 3951, [4160] = 4160, [4161] = 4161, [4162] = 4162, [4163] = 4163, - [4164] = 4164, + [4164] = 4004, [4165] = 4165, [4166] = 4166, [4167] = 4167, [4168] = 4168, - [4169] = 4169, + [4169] = 4084, [4170] = 4170, [4171] = 4171, - [4172] = 4172, - [4173] = 4173, + [4172] = 3959, + [4173] = 3679, [4174] = 4174, [4175] = 4175, [4176] = 4176, [4177] = 4177, [4178] = 4178, - [4179] = 4179, + [4179] = 3996, [4180] = 4180, [4181] = 4181, [4182] = 4182, @@ -8847,25 +8953,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4189] = 4189, [4190] = 4190, [4191] = 4191, - [4192] = 4012, - [4193] = 4069, - [4194] = 4194, - [4195] = 4158, - [4196] = 4159, + [4192] = 4192, + [4193] = 3656, + [4194] = 4171, + [4195] = 4195, + [4196] = 4196, [4197] = 4197, - [4198] = 4198, + [4198] = 3997, [4199] = 4199, [4200] = 4200, [4201] = 4201, - [4202] = 4178, + [4202] = 4202, [4203] = 4203, [4204] = 4204, [4205] = 4205, - [4206] = 4109, - [4207] = 4117, + [4206] = 4206, + [4207] = 4207, [4208] = 4208, [4209] = 4209, - [4210] = 4210, + [4210] = 4168, [4211] = 4211, [4212] = 4212, [4213] = 4213, @@ -8876,21 +8982,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4218] = 4218, [4219] = 4219, [4220] = 4220, - [4221] = 4221, - [4222] = 4177, + [4221] = 3994, + [4222] = 4222, [4223] = 4223, - [4224] = 4078, - [4225] = 3976, + [4224] = 4224, + [4225] = 4213, [4226] = 4226, [4227] = 4227, [4228] = 4228, - [4229] = 4229, + [4229] = 4183, [4230] = 4230, - [4231] = 4231, + [4231] = 4180, [4232] = 4232, - [4233] = 4233, - [4234] = 4068, - [4235] = 4064, + [4233] = 3966, + [4234] = 3671, + [4235] = 4235, [4236] = 4236, [4237] = 4237, [4238] = 4238, @@ -8907,357 +9013,357 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4249] = 4249, [4250] = 4250, [4251] = 4251, - [4252] = 4170, + [4252] = 4197, [4253] = 4253, [4254] = 4254, - [4255] = 3983, - [4256] = 4174, + [4255] = 3954, + [4256] = 4200, [4257] = 4257, - [4258] = 4180, - [4259] = 1700, - [4260] = 1633, - [4261] = 4182, + [4258] = 4258, + [4259] = 4259, + [4260] = 4260, + [4261] = 4261, [4262] = 4262, - [4263] = 4203, - [4264] = 4264, + [4263] = 4228, + [4264] = 4178, [4265] = 4265, - [4266] = 4046, + [4266] = 4266, [4267] = 4267, - [4268] = 4268, - [4269] = 4269, - [4270] = 4270, - [4271] = 4210, + [4268] = 4246, + [4269] = 4249, + [4270] = 4167, + [4271] = 4271, [4272] = 4272, - [4273] = 4273, - [4274] = 4274, - [4275] = 1769, - [4276] = 1771, + [4273] = 4166, + [4274] = 4272, + [4275] = 4271, + [4276] = 4178, [4277] = 4277, - [4278] = 4278, - [4279] = 1677, - [4280] = 1678, + [4278] = 4267, + [4279] = 4279, + [4280] = 4251, [4281] = 4281, [4282] = 4282, - [4283] = 4283, - [4284] = 4284, - [4285] = 4285, + [4283] = 4242, + [4284] = 4277, + [4285] = 4232, [4286] = 4286, - [4287] = 4287, - [4288] = 4288, - [4289] = 4289, - [4290] = 4290, + [4287] = 4281, + [4288] = 4222, + [4289] = 4186, + [4290] = 4204, [4291] = 4291, - [4292] = 1725, - [4293] = 1726, - [4294] = 1729, - [4295] = 1730, + [4292] = 4292, + [4293] = 4293, + [4294] = 4294, + [4295] = 4295, [4296] = 4296, - [4297] = 1731, - [4298] = 4298, - [4299] = 1734, + [4297] = 4237, + [4298] = 4247, + [4299] = 4253, [4300] = 4300, [4301] = 4301, - [4302] = 4053, + [4302] = 4302, [4303] = 4303, - [4304] = 4304, + [4304] = 4243, [4305] = 4305, [4306] = 4306, [4307] = 4307, - [4308] = 1775, - [4309] = 1781, + [4308] = 4262, + [4309] = 4309, [4310] = 4310, [4311] = 4311, [4312] = 4312, [4313] = 4313, [4314] = 4314, - [4315] = 4315, + [4315] = 4250, [4316] = 4316, - [4317] = 4174, + [4317] = 4216, [4318] = 4318, - [4319] = 1638, - [4320] = 1639, + [4319] = 4279, + [4320] = 4320, [4321] = 4321, - [4322] = 4322, + [4322] = 4208, [4323] = 4323, - [4324] = 4324, + [4324] = 4207, [4325] = 4325, [4326] = 4326, [4327] = 4327, [4328] = 4328, - [4329] = 4329, - [4330] = 4330, + [4329] = 3976, + [4330] = 4301, [4331] = 4331, [4332] = 4332, - [4333] = 4270, + [4333] = 4333, [4334] = 4334, [4335] = 4335, - [4336] = 861, - [4337] = 4175, - [4338] = 4338, + [4336] = 4336, + [4337] = 4337, + [4338] = 656, [4339] = 4339, [4340] = 4340, [4341] = 4341, - [4342] = 859, - [4343] = 860, - [4344] = 3952, + [4342] = 653, + [4343] = 4343, + [4344] = 4206, [4345] = 4345, - [4346] = 247, - [4347] = 4017, - [4348] = 4013, - [4349] = 222, + [4346] = 4218, + [4347] = 4347, + [4348] = 4348, + [4349] = 4349, [4350] = 4350, - [4351] = 3915, - [4352] = 4025, - [4353] = 4089, - [4354] = 4354, - [4355] = 4046, + [4351] = 4332, + [4352] = 657, + [4353] = 4353, + [4354] = 4314, + [4355] = 4333, [4356] = 4356, [4357] = 4357, - [4358] = 4358, + [4358] = 4337, [4359] = 4359, - [4360] = 4360, + [4360] = 4341, [4361] = 4361, [4362] = 4362, [4363] = 4363, [4364] = 4364, - [4365] = 4365, - [4366] = 3990, - [4367] = 4367, + [4365] = 4227, + [4366] = 4366, + [4367] = 4314, [4368] = 4368, - [4369] = 819, - [4370] = 825, - [4371] = 4371, + [4369] = 4369, + [4370] = 4370, + [4371] = 651, [4372] = 4372, [4373] = 4373, [4374] = 4374, - [4375] = 4180, - [4376] = 4170, - [4377] = 4182, - [4378] = 3991, - [4379] = 3730, - [4380] = 4380, - [4381] = 766, + [4375] = 4336, + [4376] = 4376, + [4377] = 4339, + [4378] = 4378, + [4379] = 4379, + [4380] = 4093, + [4381] = 4197, [4382] = 4382, - [4383] = 769, + [4383] = 4383, [4384] = 4384, [4385] = 4385, - [4386] = 1611, - [4387] = 1456, + [4386] = 4386, + [4387] = 4387, [4388] = 4388, [4389] = 4389, [4390] = 4390, - [4391] = 4391, + [4391] = 4104, [4392] = 4392, - [4393] = 4058, - [4394] = 3957, - [4395] = 4395, - [4396] = 4396, + [4393] = 4296, + [4394] = 4394, + [4395] = 4294, + [4396] = 4108, [4397] = 4397, - [4398] = 4203, + [4398] = 4109, [4399] = 4399, - [4400] = 4400, - [4401] = 4401, - [4402] = 3656, - [4403] = 3669, - [4404] = 793, - [4405] = 794, + [4400] = 4292, + [4401] = 4277, + [4402] = 4402, + [4403] = 655, + [4404] = 4160, + [4405] = 4405, [4406] = 4406, - [4407] = 4407, - [4408] = 4020, - [4409] = 4409, - [4410] = 4219, - [4411] = 4411, - [4412] = 4412, - [4413] = 4413, + [4407] = 4259, + [4408] = 4243, + [4409] = 4182, + [4410] = 4410, + [4411] = 4241, + [4412] = 4262, + [4413] = 4178, [4414] = 4414, [4415] = 4415, [4416] = 4416, [4417] = 4417, [4418] = 4418, - [4419] = 3995, - [4420] = 4420, + [4419] = 4265, + [4420] = 4216, [4421] = 4421, - [4422] = 3748, + [4422] = 4422, [4423] = 4423, - [4424] = 4424, + [4424] = 4189, [4425] = 4425, - [4426] = 4421, - [4427] = 4427, - [4428] = 210, - [4429] = 214, - [4430] = 4430, - [4431] = 4431, - [4432] = 4432, - [4433] = 4433, - [4434] = 4434, + [4426] = 4261, + [4427] = 4260, + [4428] = 4428, + [4429] = 4190, + [4430] = 4258, + [4431] = 4257, + [4432] = 4254, + [4433] = 4302, + [4434] = 4196, [4435] = 4435, [4436] = 4436, - [4437] = 4437, - [4438] = 4421, - [4439] = 4439, - [4440] = 4427, - [4441] = 4441, - [4442] = 4442, - [4443] = 4421, - [4444] = 4444, - [4445] = 4445, - [4446] = 4432, - [4447] = 4447, - [4448] = 4448, - [4449] = 4449, - [4450] = 4450, - [4451] = 4427, - [4452] = 4433, - [4453] = 4453, - [4454] = 4421, - [4455] = 4455, - [4456] = 4456, - [4457] = 4430, - [4458] = 4458, - [4459] = 4431, - [4460] = 4423, - [4461] = 4461, - [4462] = 4462, - [4463] = 4430, + [4437] = 4240, + [4438] = 4277, + [4439] = 4238, + [4440] = 4178, + [4441] = 4423, + [4442] = 4425, + [4443] = 4443, + [4444] = 4428, + [4445] = 4091, + [4446] = 4306, + [4447] = 1571, + [4448] = 4092, + [4449] = 1567, + [4450] = 4418, + [4451] = 1565, + [4452] = 4417, + [4453] = 4416, + [4454] = 4277, + [4455] = 4236, + [4456] = 4012, + [4457] = 4049, + [4458] = 4230, + [4459] = 4459, + [4460] = 4460, + [4461] = 4357, + [4462] = 4088, + [4463] = 4224, [4464] = 4464, - [4465] = 4431, - [4466] = 4466, - [4467] = 4467, + [4465] = 4243, + [4466] = 4188, + [4467] = 4262, [4468] = 4468, [4469] = 4469, - [4470] = 4436, - [4471] = 4471, - [4472] = 4424, + [4470] = 1471, + [4471] = 1677, + [4472] = 1662, [4473] = 4473, - [4474] = 4474, - [4475] = 4475, - [4476] = 4434, - [4477] = 4444, - [4478] = 4450, - [4479] = 4423, - [4480] = 4480, + [4474] = 4014, + [4475] = 4220, + [4476] = 4459, + [4477] = 4216, + [4478] = 4478, + [4479] = 4479, + [4480] = 3983, [4481] = 4481, - [4482] = 4434, - [4483] = 4455, - [4484] = 4423, - [4485] = 4434, - [4486] = 4430, - [4487] = 4487, - [4488] = 4488, - [4489] = 4423, - [4490] = 4490, - [4491] = 4424, - [4492] = 4424, - [4493] = 4493, - [4494] = 4432, - [4495] = 4450, - [4496] = 4434, - [4497] = 4455, - [4498] = 4498, - [4499] = 4458, - [4500] = 4500, - [4501] = 4501, + [4482] = 4394, + [4483] = 4058, + [4484] = 4484, + [4485] = 4293, + [4486] = 4190, + [4487] = 4295, + [4488] = 4219, + [4489] = 4305, + [4490] = 4310, + [4491] = 4316, + [4492] = 1763, + [4493] = 1764, + [4494] = 3984, + [4495] = 4495, + [4496] = 4245, + [4497] = 4497, + [4498] = 4323, + [4499] = 4326, + [4500] = 4211, + [4501] = 4220, [4502] = 4502, - [4503] = 4431, - [4504] = 4421, - [4505] = 4427, - [4506] = 4442, - [4507] = 4431, - [4508] = 4430, - [4509] = 4431, - [4510] = 4510, - [4511] = 4511, - [4512] = 4427, - [4513] = 3803, - [4514] = 4432, - [4515] = 4515, - [4516] = 4435, - [4517] = 4450, - [4518] = 4430, - [4519] = 4424, - [4520] = 4520, - [4521] = 4500, - [4522] = 4522, - [4523] = 4523, - [4524] = 4450, - [4525] = 4455, - [4526] = 4526, - [4527] = 4461, - [4528] = 4528, - [4529] = 4423, - [4530] = 4424, - [4531] = 4420, - [4532] = 4532, - [4533] = 4501, - [4534] = 4432, - [4535] = 4535, - [4536] = 4434, - [4537] = 4537, - [4538] = 4421, - [4539] = 4427, + [4503] = 4201, + [4504] = 4215, + [4505] = 3685, + [4506] = 4353, + [4507] = 4178, + [4508] = 1502, + [4509] = 1506, + [4510] = 4384, + [4511] = 4389, + [4512] = 1656, + [4513] = 1657, + [4514] = 4468, + [4515] = 4277, + [4516] = 4385, + [4517] = 4382, + [4518] = 4518, + [4519] = 4379, + [4520] = 4243, + [4521] = 1684, + [4522] = 1682, + [4523] = 4443, + [4524] = 4262, + [4525] = 4525, + [4526] = 4399, + [4527] = 4527, + [4528] = 4376, + [4529] = 4529, + [4530] = 4436, + [4531] = 4374, + [4532] = 4402, + [4533] = 4435, + [4534] = 4372, + [4535] = 4216, + [4536] = 4422, + [4537] = 4469, + [4538] = 4209, + [4539] = 4307, [4540] = 4540, - [4541] = 4541, - [4542] = 4444, - [4543] = 4450, - [4544] = 4468, - [4545] = 4444, - [4546] = 4546, - [4547] = 4430, - [4548] = 4444, - [4549] = 4549, - [4550] = 4467, - [4551] = 4551, - [4552] = 4431, + [4541] = 4216, + [4542] = 4205, + [4543] = 4390, + [4544] = 4544, + [4545] = 4545, + [4546] = 4421, + [4547] = 4226, + [4548] = 4548, + [4549] = 4415, + [4550] = 4484, + [4551] = 4178, + [4552] = 4552, [4553] = 4553, - [4554] = 4423, - [4555] = 4424, - [4556] = 4444, - [4557] = 4455, - [4558] = 4427, - [4559] = 4559, - [4560] = 4560, - [4561] = 4444, - [4562] = 4562, - [4563] = 4434, + [4554] = 4554, + [4555] = 4392, + [4556] = 4556, + [4557] = 4309, + [4558] = 4558, + [4559] = 4388, + [4560] = 4558, + [4561] = 4556, + [4562] = 4312, + [4563] = 4328, [4564] = 4564, - [4565] = 4565, - [4566] = 4566, - [4567] = 4567, - [4568] = 4568, - [4569] = 4569, - [4570] = 4570, - [4571] = 4571, - [4572] = 4572, - [4573] = 4573, - [4574] = 4574, - [4575] = 4575, - [4576] = 4576, + [4565] = 4387, + [4566] = 4554, + [4567] = 4386, + [4568] = 4553, + [4569] = 1678, + [4570] = 1680, + [4571] = 1685, + [4572] = 1687, + [4573] = 1689, + [4574] = 1691, + [4575] = 4359, + [4576] = 4552, [4577] = 4577, - [4578] = 4578, - [4579] = 4579, - [4580] = 4580, - [4581] = 4569, - [4582] = 4582, + [4578] = 1466, + [4579] = 4335, + [4580] = 4378, + [4581] = 4370, + [4582] = 1545, [4583] = 4583, - [4584] = 4584, - [4585] = 4585, - [4586] = 4586, - [4587] = 4587, - [4588] = 4588, - [4589] = 4589, - [4590] = 3968, - [4591] = 4591, - [4592] = 4592, - [4593] = 4593, + [4584] = 1536, + [4585] = 1465, + [4586] = 4089, + [4587] = 4199, + [4588] = 4356, + [4589] = 4201, + [4590] = 1725, + [4591] = 1728, + [4592] = 4545, + [4593] = 4345, [4594] = 4594, - [4595] = 4571, - [4596] = 4596, - [4597] = 4597, - [4598] = 4598, - [4599] = 4599, - [4600] = 4600, - [4601] = 4601, - [4602] = 4602, + [4595] = 4544, + [4596] = 4383, + [4597] = 4203, + [4598] = 4243, + [4599] = 4262, + [4600] = 4540, + [4601] = 4015, + [4602] = 826, [4603] = 4603, [4604] = 4604, [4605] = 4605, @@ -9265,25 +9371,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4607] = 4607, [4608] = 4608, [4609] = 4609, - [4610] = 4572, - [4611] = 4583, + [4610] = 4610, + [4611] = 4611, [4612] = 4612, [4613] = 4613, [4614] = 4614, [4615] = 4615, [4616] = 4616, [4617] = 4617, - [4618] = 4606, + [4618] = 4618, [4619] = 4619, - [4620] = 4567, + [4620] = 4620, [4621] = 4621, - [4622] = 4594, - [4623] = 4569, + [4622] = 4622, + [4623] = 4623, [4624] = 4624, - [4625] = 4571, + [4625] = 4625, [4626] = 4626, [4627] = 4627, - [4628] = 4582, + [4628] = 4628, [4629] = 4629, [4630] = 4630, [4631] = 4631, @@ -9291,141 +9397,141 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4633] = 4633, [4634] = 4634, [4635] = 4635, - [4636] = 4565, + [4636] = 4636, [4637] = 4637, [4638] = 4638, [4639] = 4639, [4640] = 4640, [4641] = 4641, - [4642] = 4606, + [4642] = 4642, [4643] = 4643, - [4644] = 4572, - [4645] = 4583, + [4644] = 4644, + [4645] = 4645, [4646] = 4646, [4647] = 4647, [4648] = 4648, [4649] = 4649, - [4650] = 4619, - [4651] = 4567, - [4652] = 4572, - [4653] = 4569, + [4650] = 4650, + [4651] = 4651, + [4652] = 4652, + [4653] = 4653, [4654] = 4654, - [4655] = 4571, - [4656] = 4583, + [4655] = 4655, + [4656] = 4656, [4657] = 4657, [4658] = 4658, - [4659] = 4577, - [4660] = 4578, - [4661] = 4579, - [4662] = 4580, - [4663] = 4582, + [4659] = 4659, + [4660] = 4660, + [4661] = 4661, + [4662] = 4662, + [4663] = 4663, [4664] = 4664, [4665] = 4665, [4666] = 4666, [4667] = 4667, [4668] = 4668, - [4669] = 3552, - [4670] = 4670, - [4671] = 4671, - [4672] = 4672, + [4669] = 4669, + [4670] = 4669, + [4671] = 4654, + [4672] = 4668, [4673] = 4673, - [4674] = 4674, - [4675] = 4675, - [4676] = 4572, - [4677] = 4583, - [4678] = 4678, - [4679] = 4679, - [4680] = 4680, - [4681] = 4569, + [4674] = 4667, + [4675] = 4651, + [4676] = 4648, + [4677] = 4645, + [4678] = 4643, + [4679] = 4642, + [4680] = 4631, + [4681] = 4630, [4682] = 4682, - [4683] = 4571, + [4683] = 4683, [4684] = 4684, [4685] = 4685, [4686] = 4686, - [4687] = 4687, + [4687] = 736, [4688] = 4688, [4689] = 4689, - [4690] = 4690, - [4691] = 4691, + [4690] = 4629, + [4691] = 4626, [4692] = 4692, - [4693] = 4693, - [4694] = 4572, - [4695] = 4583, + [4693] = 4625, + [4694] = 4694, + [4695] = 4695, [4696] = 4696, - [4697] = 4697, + [4697] = 4622, [4698] = 4698, [4699] = 4699, [4700] = 4700, - [4701] = 4569, - [4702] = 4702, - [4703] = 4571, + [4701] = 4618, + [4702] = 1677, + [4703] = 1662, [4704] = 4704, - [4705] = 4616, - [4706] = 4706, + [4705] = 4613, + [4706] = 4612, [4707] = 4707, [4708] = 4708, - [4709] = 4709, + [4709] = 4610, [4710] = 4710, [4711] = 4711, - [4712] = 4690, + [4712] = 4712, [4713] = 4713, [4714] = 4714, - [4715] = 4715, + [4715] = 4604, [4716] = 4716, [4717] = 4717, [4718] = 4718, - [4719] = 4719, - [4720] = 4720, - [4721] = 4721, + [4719] = 4605, + [4720] = 4611, + [4721] = 4627, [4722] = 4722, - [4723] = 4723, + [4723] = 4700, [4724] = 4724, [4725] = 4725, [4726] = 4726, - [4727] = 4727, + [4727] = 4704, [4728] = 4728, [4729] = 4729, - [4730] = 4730, + [4730] = 4707, [4731] = 4731, [4732] = 4732, [4733] = 4733, - [4734] = 4734, + [4734] = 4608, [4735] = 4735, [4736] = 4736, [4737] = 4737, - [4738] = 4738, - [4739] = 4739, + [4738] = 1656, + [4739] = 1657, [4740] = 4740, [4741] = 4741, [4742] = 4742, [4743] = 4743, - [4744] = 4744, + [4744] = 4673, [4745] = 4745, - [4746] = 4746, - [4747] = 4747, - [4748] = 4748, - [4749] = 4749, + [4746] = 1684, + [4747] = 1682, + [4748] = 4718, + [4749] = 4713, [4750] = 4750, - [4751] = 734, + [4751] = 4736, [4752] = 4752, - [4753] = 4606, - [4754] = 4752, + [4753] = 4753, + [4754] = 4716, [4755] = 4755, - [4756] = 4756, + [4756] = 4741, [4757] = 4757, [4758] = 4758, - [4759] = 4759, + [4759] = 4743, [4760] = 4760, - [4761] = 4412, + [4761] = 4761, [4762] = 4762, - [4763] = 4763, + [4763] = 744, [4764] = 4764, [4765] = 4765, - [4766] = 4647, + [4766] = 4766, [4767] = 4767, - [4768] = 4756, + [4768] = 4768, [4769] = 4769, - [4770] = 4619, + [4770] = 4770, [4771] = 4771, [4772] = 4772, [4773] = 4773, @@ -9434,31 +9540,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4776] = 4776, [4777] = 4777, [4778] = 4778, - [4779] = 4730, + [4779] = 4779, [4780] = 4780, - [4781] = 4567, + [4781] = 4781, [4782] = 4782, - [4783] = 4783, - [4784] = 4784, - [4785] = 4785, - [4786] = 4786, - [4787] = 4787, - [4788] = 4788, + [4783] = 1678, + [4784] = 1680, + [4785] = 1685, + [4786] = 1687, + [4787] = 1689, + [4788] = 1691, [4789] = 4789, [4790] = 4790, - [4791] = 4567, + [4791] = 4791, [4792] = 4792, [4793] = 4793, [4794] = 4794, [4795] = 4795, [4796] = 4796, [4797] = 4797, - [4798] = 4798, - [4799] = 4577, + [4798] = 1725, + [4799] = 1728, [4800] = 4800, [4801] = 4801, [4802] = 4802, - [4803] = 4578, + [4803] = 4803, [4804] = 4804, [4805] = 4805, [4806] = 4806, @@ -9467,7 +9573,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4809] = 4809, [4810] = 4810, [4811] = 4811, - [4812] = 4579, + [4812] = 4812, [4813] = 4813, [4814] = 4814, [4815] = 4815, @@ -9475,36 +9581,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4817] = 4817, [4818] = 4818, [4819] = 4819, - [4820] = 4566, - [4821] = 4569, + [4820] = 4820, + [4821] = 4821, [4822] = 4822, - [4823] = 4571, - [4824] = 4580, + [4823] = 4823, + [4824] = 4824, [4825] = 4825, [4826] = 4826, [4827] = 4827, - [4828] = 4828, - [4829] = 4679, - [4830] = 4735, + [4828] = 1764, + [4829] = 1763, + [4830] = 4830, [4831] = 4831, [4832] = 4832, [4833] = 4833, [4834] = 4834, - [4835] = 4603, - [4836] = 4836, + [4835] = 4835, + [4836] = 842, [4837] = 4837, - [4838] = 4582, - [4839] = 4682, + [4838] = 4838, + [4839] = 4839, [4840] = 4840, [4841] = 4841, [4842] = 4842, - [4843] = 4843, + [4843] = 834, [4844] = 4844, - [4845] = 4845, - [4846] = 4846, - [4847] = 4847, - [4848] = 4759, - [4849] = 4849, + [4845] = 817, + [4846] = 813, + [4847] = 804, + [4848] = 4848, + [4849] = 4632, [4850] = 4850, [4851] = 4851, [4852] = 4852, @@ -9514,12 +9620,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4856] = 4856, [4857] = 4857, [4858] = 4858, - [4859] = 4859, + [4859] = 743, [4860] = 4860, - [4861] = 4834, + [4861] = 4861, [4862] = 4862, - [4863] = 4863, - [4864] = 4864, + [4863] = 4857, + [4864] = 4603, [4865] = 4865, [4866] = 4866, [4867] = 4867, @@ -9527,16 +9633,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4869] = 4869, [4870] = 4870, [4871] = 4871, - [4872] = 4582, + [4872] = 4872, [4873] = 4873, [4874] = 4874, [4875] = 4875, [4876] = 4876, - [4877] = 4877, + [4877] = 4641, [4878] = 4878, - [4879] = 4879, + [4879] = 4640, [4880] = 4880, - [4881] = 4881, + [4881] = 4639, [4882] = 4882, [4883] = 4883, [4884] = 4884, @@ -9544,21 +9650,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4886] = 4886, [4887] = 4887, [4888] = 4888, - [4889] = 4619, + [4889] = 4889, [4890] = 4890, [4891] = 4891, - [4892] = 4890, - [4893] = 4893, + [4892] = 4892, + [4893] = 219, [4894] = 4894, - [4895] = 4893, - [4896] = 4896, + [4895] = 4895, + [4896] = 224, [4897] = 4897, - [4898] = 4897, + [4898] = 4898, [4899] = 4899, [4900] = 4900, [4901] = 4901, [4902] = 4902, - [4903] = 4606, + [4903] = 4903, [4904] = 4904, [4905] = 4905, [4906] = 4906, @@ -9571,17 +9677,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4913] = 4913, [4914] = 4914, [4915] = 4915, - [4916] = 4916, - [4917] = 4917, - [4918] = 4918, - [4919] = 3497, - [4920] = 4920, - [4921] = 4921, - [4922] = 4922, - [4923] = 4923, - [4924] = 4924, - [4925] = 4925, - [4926] = 4926, + [4916] = 745, + [4917] = 853, + [4918] = 858, + [4919] = 4919, + [4920] = 755, + [4921] = 753, + [4922] = 789, + [4923] = 802, + [4924] = 869, + [4925] = 812, + [4926] = 806, [4927] = 4927, [4928] = 4928, [4929] = 4929, @@ -9594,118 +9700,118 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4936] = 4936, [4937] = 4937, [4938] = 4938, - [4939] = 4939, - [4940] = 1554, + [4939] = 4835, + [4940] = 4940, [4941] = 4941, - [4942] = 4942, + [4942] = 4840, [4943] = 4943, - [4944] = 4944, - [4945] = 4250, + [4944] = 4666, + [4945] = 4665, [4946] = 4946, - [4947] = 4947, - [4948] = 4948, + [4947] = 4664, + [4948] = 845, [4949] = 4949, [4950] = 4950, - [4951] = 4720, + [4951] = 4951, [4952] = 4952, [4953] = 4953, [4954] = 4954, - [4955] = 4955, - [4956] = 4956, - [4957] = 4957, - [4958] = 4958, - [4959] = 4959, + [4955] = 788, + [4956] = 716, + [4957] = 735, + [4958] = 746, + [4959] = 760, [4960] = 4960, - [4961] = 4961, - [4962] = 4962, + [4961] = 775, + [4962] = 762, [4963] = 4963, - [4964] = 4964, - [4965] = 4965, + [4964] = 4803, + [4965] = 4663, [4966] = 4966, - [4967] = 4967, + [4967] = 836, [4968] = 4968, - [4969] = 4969, + [4969] = 838, [4970] = 4970, - [4971] = 4971, + [4971] = 4842, [4972] = 4972, - [4973] = 4973, - [4974] = 4974, - [4975] = 4975, - [4976] = 4976, - [4977] = 4977, - [4978] = 4978, - [4979] = 4979, + [4973] = 749, + [4974] = 811, + [4975] = 778, + [4976] = 4662, + [4977] = 796, + [4978] = 832, + [4979] = 843, [4980] = 4980, - [4981] = 4981, + [4981] = 4661, [4982] = 4982, - [4983] = 4983, - [4984] = 4984, - [4985] = 4985, + [4983] = 4735, + [4984] = 4766, + [4985] = 4782, [4986] = 4986, - [4987] = 4987, + [4987] = 1550, [4988] = 4988, - [4989] = 4989, - [4990] = 4990, - [4991] = 4991, - [4992] = 4992, - [4993] = 4993, - [4994] = 4994, - [4995] = 4995, - [4996] = 4996, - [4997] = 4997, - [4998] = 4998, - [4999] = 4999, - [5000] = 5000, - [5001] = 5001, - [5002] = 5002, - [5003] = 5003, + [4989] = 4790, + [4990] = 4885, + [4991] = 1547, + [4992] = 4660, + [4993] = 4850, + [4994] = 4659, + [4995] = 4854, + [4996] = 4658, + [4997] = 772, + [4998] = 4775, + [4999] = 4988, + [5000] = 4655, + [5001] = 4652, + [5002] = 4912, + [5003] = 4650, [5004] = 5004, - [5005] = 5005, + [5005] = 4653, [5006] = 5006, [5007] = 5007, - [5008] = 5008, - [5009] = 5009, - [5010] = 5010, - [5011] = 5011, - [5012] = 5012, - [5013] = 5013, - [5014] = 5014, - [5015] = 5015, - [5016] = 5016, - [5017] = 5017, - [5018] = 5018, + [5008] = 4930, + [5009] = 4932, + [5010] = 4963, + [5011] = 4966, + [5012] = 759, + [5013] = 729, + [5014] = 720, + [5015] = 728, + [5016] = 786, + [5017] = 781, + [5018] = 819, [5019] = 5019, - [5020] = 5020, - [5021] = 5021, - [5022] = 5022, + [5020] = 847, + [5021] = 833, + [5022] = 4495, [5023] = 5023, [5024] = 5024, - [5025] = 1598, - [5026] = 5026, - [5027] = 5027, - [5028] = 5028, - [5029] = 5029, - [5030] = 4616, - [5031] = 5031, - [5032] = 4744, - [5033] = 5033, - [5034] = 5034, + [5025] = 4927, + [5026] = 4889, + [5027] = 4607, + [5028] = 829, + [5029] = 839, + [5030] = 861, + [5031] = 840, + [5032] = 4805, + [5033] = 4833, + [5034] = 4646, [5035] = 5035, [5036] = 5036, - [5037] = 3635, + [5037] = 4644, [5038] = 5038, - [5039] = 4954, - [5040] = 5040, - [5041] = 5041, - [5042] = 5042, + [5039] = 5039, + [5040] = 765, + [5041] = 766, + [5042] = 773, [5043] = 5043, - [5044] = 5044, + [5044] = 4820, [5045] = 5045, [5046] = 5046, [5047] = 5047, - [5048] = 5048, - [5049] = 4619, - [5050] = 5050, + [5048] = 5047, + [5049] = 5046, + [5050] = 4865, [5051] = 5051, [5052] = 5052, [5053] = 5053, @@ -9713,194 +9819,194 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5055] = 5055, [5056] = 5056, [5057] = 5057, - [5058] = 5058, + [5058] = 4941, [5059] = 5059, - [5060] = 4567, - [5061] = 5061, + [5060] = 822, + [5061] = 750, [5062] = 5062, - [5063] = 5063, + [5063] = 4158, [5064] = 5064, [5065] = 5065, [5066] = 5066, [5067] = 5067, [5068] = 5068, - [5069] = 3560, - [5070] = 4591, - [5071] = 5071, - [5072] = 5072, + [5069] = 5069, + [5070] = 4841, + [5071] = 4943, + [5072] = 770, [5073] = 5073, - [5074] = 5074, - [5075] = 5075, - [5076] = 4567, - [5077] = 5077, + [5074] = 769, + [5075] = 768, + [5076] = 767, + [5077] = 748, [5078] = 5078, - [5079] = 5079, - [5080] = 4772, + [5079] = 751, + [5080] = 5043, [5081] = 5081, - [5082] = 1466, - [5083] = 5083, - [5084] = 5084, + [5082] = 761, + [5083] = 764, + [5084] = 780, [5085] = 5085, - [5086] = 4603, - [5087] = 4606, + [5086] = 5086, + [5087] = 4529, [5088] = 5088, - [5089] = 4682, - [5090] = 5090, + [5089] = 4527, + [5090] = 4525, [5091] = 5091, - [5092] = 4890, + [5092] = 5038, [5093] = 5093, - [5094] = 1584, - [5095] = 5095, - [5096] = 5096, - [5097] = 5097, - [5098] = 1595, - [5099] = 5099, + [5094] = 5094, + [5095] = 727, + [5096] = 4286, + [5097] = 5036, + [5098] = 5098, + [5099] = 4606, [5100] = 5100, [5101] = 5101, [5102] = 5102, [5103] = 5103, [5104] = 5104, [5105] = 5105, - [5106] = 5106, + [5106] = 4941, [5107] = 5107, - [5108] = 5108, + [5108] = 4762, [5109] = 5109, - [5110] = 4818, - [5111] = 5111, + [5110] = 4176, + [5111] = 5039, [5112] = 5112, [5113] = 5113, - [5114] = 5114, + [5114] = 830, [5115] = 5115, - [5116] = 5116, - [5117] = 5117, - [5118] = 5118, + [5116] = 821, + [5117] = 815, + [5118] = 4940, [5119] = 5119, [5120] = 5120, [5121] = 5121, [5122] = 5122, [5123] = 5123, - [5124] = 4671, + [5124] = 4946, [5125] = 5125, - [5126] = 4565, + [5126] = 4889, [5127] = 5127, - [5128] = 5128, - [5129] = 4690, - [5130] = 4591, + [5128] = 4927, + [5129] = 4844, + [5130] = 5023, [5131] = 5131, [5132] = 5132, [5133] = 5133, - [5134] = 734, + [5134] = 5134, [5135] = 5135, - [5136] = 4721, + [5136] = 4761, [5137] = 5137, [5138] = 5138, - [5139] = 4606, - [5140] = 5140, + [5139] = 5139, + [5140] = 4982, [5141] = 5141, [5142] = 5142, [5143] = 5143, - [5144] = 3588, - [5145] = 5145, - [5146] = 5146, + [5144] = 5144, + [5145] = 4792, + [5146] = 4937, [5147] = 5147, - [5148] = 4906, - [5149] = 5149, - [5150] = 5150, - [5151] = 4572, - [5152] = 4907, - [5153] = 4583, - [5154] = 4963, - [5155] = 4912, - [5156] = 4671, - [5157] = 4672, - [5158] = 4621, - [5159] = 5159, + [5148] = 5148, + [5149] = 865, + [5150] = 867, + [5151] = 4936, + [5152] = 5152, + [5153] = 4102, + [5154] = 4934, + [5155] = 5155, + [5156] = 4096, + [5157] = 5157, + [5158] = 5158, + [5159] = 4949, [5160] = 5160, [5161] = 5161, [5162] = 5162, [5163] = 5163, [5164] = 5164, - [5165] = 4923, - [5166] = 4616, + [5165] = 4951, + [5166] = 5166, [5167] = 5167, - [5168] = 5168, + [5168] = 4880, [5169] = 5169, - [5170] = 4593, - [5171] = 4637, - [5172] = 5172, + [5170] = 5170, + [5171] = 5171, + [5172] = 4689, [5173] = 5173, [5174] = 5174, [5175] = 5175, - [5176] = 4925, - [5177] = 5177, + [5176] = 5176, + [5177] = 4684, [5178] = 5178, [5179] = 5179, - [5180] = 5180, - [5181] = 5181, - [5182] = 5182, + [5180] = 818, + [5181] = 4931, + [5182] = 4928, [5183] = 5183, - [5184] = 5184, + [5184] = 4919, [5185] = 5185, - [5186] = 5186, + [5186] = 4915, [5187] = 5187, [5188] = 5188, [5189] = 5189, - [5190] = 5190, - [5191] = 5191, - [5192] = 5192, + [5190] = 798, + [5191] = 5054, + [5192] = 4841, [5193] = 5193, - [5194] = 5194, + [5194] = 4473, [5195] = 5195, - [5196] = 5196, + [5196] = 4914, [5197] = 5197, - [5198] = 2563, + [5198] = 4842, [5199] = 5199, [5200] = 5200, - [5201] = 5201, + [5201] = 4805, [5202] = 5202, [5203] = 5203, - [5204] = 2571, - [5205] = 5205, + [5204] = 5204, + [5205] = 4931, [5206] = 5206, - [5207] = 5207, - [5208] = 5208, + [5207] = 5065, + [5208] = 5163, [5209] = 5209, [5210] = 5210, - [5211] = 1682, - [5212] = 5186, - [5213] = 5210, + [5211] = 758, + [5212] = 5212, + [5213] = 756, [5214] = 5214, [5215] = 5215, [5216] = 5216, [5217] = 5217, [5218] = 5218, - [5219] = 5219, + [5219] = 4907, [5220] = 5220, - [5221] = 5221, - [5222] = 5222, + [5221] = 4952, + [5222] = 4910, [5223] = 5223, - [5224] = 5224, + [5224] = 4826, [5225] = 5225, [5226] = 5226, - [5227] = 5227, - [5228] = 5228, - [5229] = 5229, - [5230] = 5230, + [5227] = 4954, + [5228] = 4943, + [5229] = 5212, + [5230] = 4907, [5231] = 5231, - [5232] = 3730, + [5232] = 5232, [5233] = 5233, [5234] = 5234, - [5235] = 5235, + [5235] = 4758, [5236] = 5236, - [5237] = 5237, - [5238] = 5238, - [5239] = 5207, + [5237] = 4953, + [5238] = 855, + [5239] = 856, [5240] = 5240, - [5241] = 5241, - [5242] = 5242, + [5241] = 4760, + [5242] = 5120, [5243] = 5243, - [5244] = 5215, - [5245] = 5245, + [5244] = 5244, + [5245] = 844, [5246] = 5246, [5247] = 5247, [5248] = 5248, @@ -9908,287 +10014,287 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5250] = 5250, [5251] = 5251, [5252] = 5252, - [5253] = 5221, + [5253] = 5253, [5254] = 5254, - [5255] = 5187, - [5256] = 5230, + [5255] = 5255, + [5256] = 4931, [5257] = 5257, - [5258] = 5231, + [5258] = 5258, [5259] = 5259, [5260] = 5260, [5261] = 5261, [5262] = 5262, [5263] = 5263, [5264] = 5264, - [5265] = 5265, - [5266] = 5237, - [5267] = 2618, - [5268] = 5241, - [5269] = 2569, - [5270] = 5243, - [5271] = 5246, + [5265] = 4953, + [5266] = 5266, + [5267] = 5267, + [5268] = 5268, + [5269] = 4819, + [5270] = 5270, + [5271] = 4818, [5272] = 5272, - [5273] = 5249, + [5273] = 5273, [5274] = 5274, - [5275] = 5275, + [5275] = 4816, [5276] = 5276, - [5277] = 5207, - [5278] = 5207, - [5279] = 5279, + [5277] = 5277, + [5278] = 4814, + [5279] = 4892, [5280] = 5280, [5281] = 5281, - [5282] = 5282, - [5283] = 5283, + [5282] = 5203, + [5283] = 4810, [5284] = 5284, - [5285] = 5193, - [5286] = 5195, - [5287] = 5287, - [5288] = 5196, + [5285] = 4890, + [5286] = 5286, + [5287] = 4775, + [5288] = 4953, [5289] = 5289, - [5290] = 5254, - [5291] = 5291, - [5292] = 5205, + [5290] = 5290, + [5291] = 4960, + [5292] = 5292, [5293] = 5293, - [5294] = 5294, - [5295] = 5228, - [5296] = 5199, - [5297] = 5235, + [5294] = 4792, + [5295] = 5295, + [5296] = 5296, + [5297] = 4857, [5298] = 5298, - [5299] = 5240, + [5299] = 5299, [5300] = 5300, - [5301] = 5301, - [5302] = 5302, - [5303] = 5303, + [5301] = 4857, + [5302] = 4888, + [5303] = 4872, [5304] = 5304, [5305] = 5305, [5306] = 5306, [5307] = 5307, [5308] = 5308, - [5309] = 5309, - [5310] = 5310, + [5309] = 4869, + [5310] = 4769, [5311] = 5311, - [5312] = 5312, - [5313] = 5313, + [5312] = 4771, + [5313] = 4857, [5314] = 5314, - [5315] = 5315, - [5316] = 5194, - [5317] = 5317, + [5315] = 4773, + [5316] = 5316, + [5317] = 4802, [5318] = 5318, [5319] = 5319, [5320] = 5320, - [5321] = 2572, - [5322] = 5308, - [5323] = 2589, - [5324] = 5228, - [5325] = 5235, - [5326] = 5326, - [5327] = 5240, - [5328] = 5317, - [5329] = 2559, + [5321] = 4780, + [5322] = 4866, + [5323] = 4862, + [5324] = 4840, + [5325] = 5325, + [5326] = 4800, + [5327] = 4804, + [5328] = 5328, + [5329] = 4931, [5330] = 5330, - [5331] = 1684, - [5332] = 1685, - [5333] = 5262, - [5334] = 2565, + [5331] = 4861, + [5332] = 4781, + [5333] = 5333, + [5334] = 5334, [5335] = 5335, [5336] = 5336, - [5337] = 5202, - [5338] = 5318, - [5339] = 5209, + [5337] = 4791, + [5338] = 4950, + [5339] = 4794, [5340] = 5340, - [5341] = 5335, + [5341] = 5341, [5342] = 5342, [5343] = 5343, - [5344] = 5252, - [5345] = 2583, + [5344] = 5344, + [5345] = 5345, [5346] = 5346, - [5347] = 5228, - [5348] = 5319, - [5349] = 5342, + [5347] = 5347, + [5348] = 5340, + [5349] = 5349, [5350] = 5350, - [5351] = 2566, - [5352] = 2605, + [5351] = 5351, + [5352] = 5352, [5353] = 5353, [5354] = 5354, - [5355] = 5350, - [5356] = 5215, + [5355] = 5349, + [5356] = 5356, [5357] = 5357, [5358] = 5358, - [5359] = 5201, - [5360] = 2584, - [5361] = 5221, - [5362] = 5320, - [5363] = 5282, - [5364] = 2615, - [5365] = 5217, - [5366] = 5193, + [5359] = 5359, + [5360] = 5360, + [5361] = 5361, + [5362] = 5362, + [5363] = 5363, + [5364] = 5364, + [5365] = 5365, + [5366] = 5366, [5367] = 5367, - [5368] = 5276, - [5369] = 5226, - [5370] = 5370, - [5371] = 5371, - [5372] = 5372, - [5373] = 5373, + [5368] = 5340, + [5369] = 5353, + [5370] = 5351, + [5371] = 5366, + [5372] = 5351, + [5373] = 5363, [5374] = 5374, - [5375] = 5357, - [5376] = 5370, + [5375] = 5353, + [5376] = 5358, [5377] = 5377, - [5378] = 5378, - [5379] = 5235, + [5378] = 5349, + [5379] = 5340, [5380] = 5380, - [5381] = 5381, - [5382] = 5382, - [5383] = 2574, - [5384] = 2588, - [5385] = 5385, - [5386] = 5228, - [5387] = 5229, + [5381] = 5342, + [5382] = 5363, + [5383] = 5343, + [5384] = 5366, + [5385] = 5380, + [5386] = 5386, + [5387] = 4195, [5388] = 5388, - [5389] = 5272, - [5390] = 5190, - [5391] = 5391, - [5392] = 5195, - [5393] = 5183, - [5394] = 5236, - [5395] = 5235, - [5396] = 5280, - [5397] = 5397, - [5398] = 5398, - [5399] = 5248, + [5389] = 5353, + [5390] = 5351, + [5391] = 5347, + [5392] = 5374, + [5393] = 5343, + [5394] = 5344, + [5395] = 5342, + [5396] = 5350, + [5397] = 5354, + [5398] = 5354, + [5399] = 5399, [5400] = 5400, - [5401] = 5250, - [5402] = 5388, - [5403] = 5240, - [5404] = 5342, - [5405] = 3729, + [5401] = 5401, + [5402] = 5343, + [5403] = 5342, + [5404] = 5349, + [5405] = 5405, [5406] = 5406, - [5407] = 5196, - [5408] = 5408, - [5409] = 5236, - [5410] = 5235, - [5411] = 5411, - [5412] = 5412, - [5413] = 5400, + [5407] = 5406, + [5408] = 5351, + [5409] = 5353, + [5410] = 5358, + [5411] = 5366, + [5412] = 5363, + [5413] = 5358, [5414] = 5414, - [5415] = 5415, - [5416] = 5199, - [5417] = 5305, - [5418] = 5418, - [5419] = 5419, - [5420] = 5420, + [5415] = 5356, + [5416] = 5363, + [5417] = 5366, + [5418] = 5343, + [5419] = 5354, + [5420] = 5356, [5421] = 5421, - [5422] = 5422, - [5423] = 5423, - [5424] = 5217, - [5425] = 5425, - [5426] = 5312, - [5427] = 5236, + [5422] = 5356, + [5423] = 5356, + [5424] = 5424, + [5425] = 5340, + [5426] = 5351, + [5427] = 5353, [5428] = 5428, - [5429] = 5248, - [5430] = 5430, - [5431] = 5193, + [5429] = 5429, + [5430] = 5340, + [5431] = 5431, [5432] = 5432, - [5433] = 5236, - [5434] = 5206, - [5435] = 5228, - [5436] = 5259, - [5437] = 5195, - [5438] = 5248, - [5439] = 5439, - [5440] = 5250, - [5441] = 5281, - [5442] = 5304, - [5443] = 5430, - [5444] = 5250, + [5433] = 5429, + [5434] = 5434, + [5435] = 5435, + [5436] = 5436, + [5437] = 5365, + [5438] = 5356, + [5439] = 5364, + [5440] = 5354, + [5441] = 5441, + [5442] = 5442, + [5443] = 5443, + [5444] = 5444, [5445] = 5445, [5446] = 5446, - [5447] = 5447, - [5448] = 5284, - [5449] = 5248, - [5450] = 5450, - [5451] = 5451, - [5452] = 5452, + [5447] = 5363, + [5448] = 5448, + [5449] = 5366, + [5450] = 5361, + [5451] = 5351, + [5452] = 5353, [5453] = 5453, - [5454] = 5343, - [5455] = 5250, - [5456] = 5456, - [5457] = 5207, - [5458] = 5240, - [5459] = 5196, - [5460] = 5283, - [5461] = 5193, - [5462] = 5263, + [5454] = 5454, + [5455] = 5455, + [5456] = 5354, + [5457] = 5342, + [5458] = 5343, + [5459] = 5459, + [5460] = 5341, + [5461] = 5358, + [5462] = 5462, [5463] = 5463, - [5464] = 5207, - [5465] = 5195, - [5466] = 5186, - [5467] = 5196, - [5468] = 2596, - [5469] = 5199, - [5470] = 5187, - [5471] = 5184, + [5464] = 5464, + [5465] = 5465, + [5466] = 4366, + [5467] = 5349, + [5468] = 5366, + [5469] = 5469, + [5470] = 5358, + [5471] = 5471, [5472] = 5472, - [5473] = 5272, - [5474] = 5199, + [5473] = 5473, + [5474] = 5363, [5475] = 5475, - [5476] = 5400, - [5477] = 2600, - [5478] = 5408, - [5479] = 5308, - [5480] = 5207, - [5481] = 5481, + [5476] = 5354, + [5477] = 213, + [5478] = 5340, + [5479] = 212, + [5480] = 5356, + [5481] = 5358, [5482] = 5482, - [5483] = 5224, - [5484] = 2586, + [5483] = 5483, + [5484] = 5484, [5485] = 5485, [5486] = 5486, - [5487] = 3896, - [5488] = 5326, - [5489] = 5264, - [5490] = 5445, - [5491] = 5456, - [5492] = 3900, + [5487] = 5487, + [5488] = 5488, + [5489] = 5489, + [5490] = 5490, + [5491] = 5491, + [5492] = 5492, [5493] = 5493, - [5494] = 2587, + [5494] = 5494, [5495] = 5495, [5496] = 5496, - [5497] = 5229, - [5498] = 5411, + [5497] = 5497, + [5498] = 5498, [5499] = 5499, - [5500] = 5289, - [5501] = 5398, - [5502] = 5421, + [5500] = 5500, + [5501] = 5501, + [5502] = 5486, [5503] = 5503, - [5504] = 2597, - [5505] = 5294, - [5506] = 2606, - [5507] = 5507, - [5508] = 5298, + [5504] = 5504, + [5505] = 5505, + [5506] = 5506, + [5507] = 5488, + [5508] = 5489, [5509] = 5509, [5510] = 5510, [5511] = 5511, [5512] = 5512, - [5513] = 5432, - [5514] = 5215, + [5513] = 5513, + [5514] = 5514, [5515] = 5515, - [5516] = 5221, - [5517] = 5228, - [5518] = 5276, - [5519] = 5235, - [5520] = 5475, - [5521] = 5206, - [5522] = 5240, - [5523] = 5510, - [5524] = 5234, - [5525] = 5353, - [5526] = 5350, - [5527] = 5240, - [5528] = 5354, - [5529] = 5264, - [5530] = 5230, + [5516] = 5516, + [5517] = 5517, + [5518] = 5518, + [5519] = 5519, + [5520] = 5520, + [5521] = 5521, + [5522] = 5522, + [5523] = 5523, + [5524] = 5524, + [5525] = 5525, + [5526] = 5526, + [5527] = 5527, + [5528] = 5528, + [5529] = 4160, + [5530] = 5530, [5531] = 5531, [5532] = 5532, - [5533] = 2567, + [5533] = 5533, [5534] = 5534, [5535] = 5535, [5536] = 5536, @@ -10207,7 +10313,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5549] = 5549, [5550] = 5550, [5551] = 5551, - [5552] = 5547, + [5552] = 5552, [5553] = 5553, [5554] = 5554, [5555] = 5555, @@ -10220,366 +10326,2010 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5562] = 5562, [5563] = 5563, [5564] = 5564, - [5565] = 5547, + [5565] = 5565, [5566] = 5566, [5567] = 5567, [5568] = 5568, - [5569] = 5553, + [5569] = 5569, [5570] = 5570, [5571] = 5571, [5572] = 5572, [5573] = 5573, [5574] = 5574, [5575] = 5575, - [5576] = 5535, + [5576] = 5576, [5577] = 5577, - [5578] = 5550, + [5578] = 5578, [5579] = 5579, [5580] = 5580, - [5581] = 5570, + [5581] = 5581, [5582] = 5582, [5583] = 5583, [5584] = 5584, - [5585] = 5558, + [5585] = 5585, [5586] = 5586, - [5587] = 5559, - [5588] = 5566, + [5587] = 5587, + [5588] = 5588, [5589] = 5589, [5590] = 5590, - [5591] = 5536, + [5591] = 5591, [5592] = 5592, [5593] = 5593, [5594] = 5594, [5595] = 5595, - [5596] = 5562, - [5597] = 5536, - [5598] = 5556, + [5596] = 5596, + [5597] = 5597, + [5598] = 5598, [5599] = 5599, [5600] = 5600, - [5601] = 5538, - [5602] = 5557, + [5601] = 5601, + [5602] = 5602, [5603] = 5603, [5604] = 5604, - [5605] = 5547, - [5606] = 5548, + [5605] = 5605, + [5606] = 5606, [5607] = 5607, - [5608] = 5582, - [5609] = 5590, - [5610] = 5541, + [5608] = 5608, + [5609] = 5609, + [5610] = 5610, [5611] = 5611, - [5612] = 5550, + [5612] = 5612, [5613] = 5613, - [5614] = 5600, - [5615] = 5595, + [5614] = 5614, + [5615] = 5615, [5616] = 5616, [5617] = 5617, - [5618] = 5613, - [5619] = 5553, + [5618] = 5618, + [5619] = 5619, [5620] = 5620, - [5621] = 5584, - [5622] = 5562, + [5621] = 5621, + [5622] = 5622, [5623] = 5623, - [5624] = 5595, - [5625] = 5544, + [5624] = 5624, + [5625] = 5625, [5626] = 5626, - [5627] = 5558, - [5628] = 5599, - [5629] = 5613, - [5630] = 5607, + [5627] = 5627, + [5628] = 5628, + [5629] = 5629, + [5630] = 5630, [5631] = 5631, - [5632] = 5626, - [5633] = 5571, + [5632] = 5632, + [5633] = 5633, [5634] = 5634, [5635] = 5635, [5636] = 5636, - [5637] = 5559, - [5638] = 5550, + [5637] = 5637, + [5638] = 5638, [5639] = 5639, [5640] = 5640, - [5641] = 5534, + [5641] = 5641, [5642] = 5642, [5643] = 5643, - [5644] = 5604, - [5645] = 5554, - [5646] = 5646, - [5647] = 5550, - [5648] = 5575, - [5649] = 5590, + [5644] = 5644, + [5645] = 5645, + [5646] = 5487, + [5647] = 5647, + [5648] = 5648, + [5649] = 5649, [5650] = 5650, - [5651] = 5626, - [5652] = 5556, - [5653] = 5541, - [5654] = 5650, + [5651] = 5651, + [5652] = 5652, + [5653] = 5653, + [5654] = 5654, [5655] = 5655, [5656] = 5656, - [5657] = 5543, - [5658] = 5655, + [5657] = 5657, + [5658] = 5658, [5659] = 5659, - [5660] = 5556, - [5661] = 5607, - [5662] = 5643, - [5663] = 5631, + [5660] = 5660, + [5661] = 5661, + [5662] = 5662, + [5663] = 5663, [5664] = 5664, - [5665] = 5583, - [5666] = 5554, - [5667] = 5571, + [5665] = 5665, + [5666] = 5666, + [5667] = 5667, [5668] = 5668, - [5669] = 5556, + [5669] = 5669, [5670] = 5670, - [5671] = 5550, - [5672] = 5636, - [5673] = 5636, + [5671] = 5671, + [5672] = 5672, + [5673] = 5673, [5674] = 5674, - [5675] = 5558, + [5675] = 5675, [5676] = 5676, - [5677] = 5650, + [5677] = 5677, [5678] = 5678, - [5679] = 5566, - [5680] = 5536, - [5681] = 5643, - [5682] = 5562, + [5679] = 5679, + [5680] = 5680, + [5681] = 5681, + [5682] = 5682, [5683] = 5683, [5684] = 5684, - [5685] = 5655, - [5686] = 5558, - [5687] = 5656, - [5688] = 5635, + [5685] = 5685, + [5686] = 5686, + [5687] = 5687, + [5688] = 5688, [5689] = 5689, - [5690] = 5600, + [5690] = 5690, [5691] = 5691, - [5692] = 5554, - [5693] = 5550, - [5694] = 5659, - [5695] = 5678, - [5696] = 5683, + [5692] = 5692, + [5693] = 5693, + [5694] = 5694, + [5695] = 5695, + [5696] = 5696, [5697] = 5697, - [5698] = 5559, - [5699] = 5546, - [5700] = 5559, - [5701] = 5623, - [5702] = 5595, - [5703] = 5566, - [5704] = 5613, - [5705] = 5705, - [5706] = 5604, - [5707] = 5541, - [5708] = 5643, - [5709] = 5626, + [5698] = 5698, + [5699] = 5699, + [5700] = 5700, + [5701] = 5701, + [5702] = 5566, + [5703] = 5567, + [5704] = 5568, + [5705] = 5569, + [5706] = 5706, + [5707] = 5707, + [5708] = 5708, + [5709] = 5709, [5710] = 5710, - [5711] = 5556, + [5711] = 5711, [5712] = 5712, [5713] = 5713, - [5714] = 5697, - [5715] = 5546, - [5716] = 5716, - [5717] = 5551, + [5714] = 5714, + [5715] = 5715, + [5716] = 5538, + [5717] = 5717, [5718] = 5718, - [5719] = 5551, - [5720] = 5643, + [5719] = 5719, + [5720] = 5720, [5721] = 5721, - [5722] = 5643, - [5723] = 5535, - [5724] = 5570, - [5725] = 5635, + [5722] = 5722, + [5723] = 5723, + [5724] = 5724, + [5725] = 5725, [5726] = 5726, - [5727] = 5583, - [5728] = 5636, - [5729] = 5547, - [5730] = 5590, - [5731] = 5534, - [5732] = 5543, - [5733] = 5555, - [5734] = 5573, - [5735] = 5593, + [5727] = 5727, + [5728] = 5728, + [5729] = 5538, + [5730] = 5730, + [5731] = 5731, + [5732] = 5732, + [5733] = 5733, + [5734] = 5734, + [5735] = 5735, [5736] = 5736, - [5737] = 5664, - [5738] = 5566, - [5739] = 5555, + [5737] = 5737, + [5738] = 5738, + [5739] = 5739, [5740] = 5740, [5741] = 5741, - [5742] = 5547, - [5743] = 5553, - [5744] = 5595, - [5745] = 5571, + [5742] = 5742, + [5743] = 5743, + [5744] = 5744, + [5745] = 5745, [5746] = 5746, - [5747] = 5554, - [5748] = 5534, - [5749] = 5716, - [5750] = 5697, - [5751] = 5558, - [5752] = 5559, - [5753] = 5566, - [5754] = 5572, - [5755] = 5543, - [5756] = 5656, + [5747] = 5747, + [5748] = 5748, + [5749] = 5749, + [5750] = 5750, + [5751] = 5751, + [5752] = 5752, + [5753] = 5753, + [5754] = 5754, + [5755] = 5755, + [5756] = 5756, [5757] = 5757, - [5758] = 5607, - [5759] = 5561, + [5758] = 5758, + [5759] = 5759, [5760] = 5760, - [5761] = 5536, - [5762] = 5561, - [5763] = 5659, - [5764] = 5547, - [5765] = 5553, - [5766] = 5710, + [5761] = 5761, + [5762] = 5762, + [5763] = 5763, + [5764] = 5764, + [5765] = 5765, + [5766] = 5766, [5767] = 5767, - [5768] = 5558, - [5769] = 5650, - [5770] = 5655, - [5771] = 5559, - [5772] = 5566, - [5773] = 5705, - [5774] = 5590, - [5775] = 5611, + [5768] = 5768, + [5769] = 5769, + [5770] = 5770, + [5771] = 5771, + [5772] = 5772, + [5773] = 5773, + [5774] = 5774, + [5775] = 5590, [5776] = 5776, - [5777] = 5650, + [5777] = 5777, [5778] = 5778, - [5779] = 5655, - [5780] = 5678, - [5781] = 5691, - [5782] = 5620, - [5783] = 5683, - [5784] = 5568, - [5785] = 5684, - [5786] = 5575, - [5787] = 5549, - [5788] = 5554, - [5789] = 5712, - [5790] = 5536, + [5779] = 5779, + [5780] = 718, + [5781] = 5781, + [5782] = 5782, + [5783] = 5783, + [5784] = 5784, + [5785] = 5785, + [5786] = 5786, + [5787] = 5787, + [5788] = 5788, + [5789] = 5789, + [5790] = 5790, [5791] = 5791, - [5792] = 5697, - [5793] = 5568, - [5794] = 5554, - [5795] = 5564, - [5796] = 5604, - [5797] = 5535, - [5798] = 5546, - [5799] = 5600, - [5800] = 5551, - [5801] = 5541, - [5802] = 5577, - [5803] = 5575, - [5804] = 5564, + [5792] = 5792, + [5793] = 5793, + [5794] = 5794, + [5795] = 5795, + [5796] = 5796, + [5797] = 5797, + [5798] = 5798, + [5799] = 5799, + [5800] = 5800, + [5801] = 5801, + [5802] = 5802, + [5803] = 5803, + [5804] = 5804, [5805] = 5805, - [5806] = 5607, - [5807] = 5570, - [5808] = 5650, - [5809] = 5553, - [5810] = 5568, - [5811] = 5600, - [5812] = 5757, - [5813] = 5590, - [5814] = 5655, - [5815] = 5564, - [5816] = 5736, - [5817] = 5595, - [5818] = 5613, - [5819] = 5555, - [5820] = 5573, - [5821] = 5571, - [5822] = 5710, - [5823] = 5536, - [5824] = 5593, - [5825] = 5590, - [5826] = 5547, - [5827] = 5626, - [5828] = 5553, - [5829] = 5553, + [5806] = 5806, + [5807] = 5807, + [5808] = 5808, + [5809] = 5809, + [5810] = 5810, + [5811] = 5811, + [5812] = 5812, + [5813] = 5813, + [5814] = 5814, + [5815] = 5815, + [5816] = 5816, + [5817] = 5817, + [5818] = 5818, + [5819] = 5819, + [5820] = 5820, + [5821] = 5821, + [5822] = 5822, + [5823] = 3966, + [5824] = 5824, + [5825] = 5485, + [5826] = 5826, + [5827] = 5827, + [5828] = 5828, + [5829] = 5829, [5830] = 5830, - [5831] = 5571, + [5831] = 5831, [5832] = 5832, - [5833] = 5713, - [5834] = 5558, - [5835] = 5646, - [5836] = 5559, - [5837] = 5566, - [5838] = 5583, - [5839] = 5712, - [5840] = 5626, + [5833] = 5833, + [5834] = 5834, + [5835] = 5590, + [5836] = 5836, + [5837] = 5837, + [5838] = 5838, + [5839] = 5839, + [5840] = 5840, [5841] = 5841, [5842] = 5842, - [5843] = 5713, - [5844] = 5757, - [5845] = 5568, - [5846] = 5536, - [5847] = 5607, + [5843] = 5843, + [5844] = 5639, + [5845] = 5845, + [5846] = 5846, + [5847] = 5847, [5848] = 5848, - [5849] = 5623, + [5849] = 5849, [5850] = 5850, - [5851] = 5716, - [5852] = 5575, - [5853] = 5853, - [5854] = 5571, - [5855] = 5656, - [5856] = 5537, - [5857] = 5710, - [5858] = 5659, - [5859] = 5678, - [5860] = 5712, - [5861] = 5571, - [5862] = 5623, - [5863] = 5767, - [5864] = 5713, - [5865] = 5568, - [5866] = 5683, - [5867] = 5604, - [5868] = 5716, - [5869] = 5573, - [5870] = 5656, - [5871] = 5697, - [5872] = 5571, - [5873] = 5623, - [5874] = 5561, - [5875] = 5546, - [5876] = 5535, - [5877] = 5551, - [5878] = 5570, - [5879] = 5659, - [5880] = 5575, - [5881] = 5583, - [5882] = 5555, - [5883] = 5573, - [5884] = 5616, - [5885] = 5718, - [5886] = 5886, - [5887] = 5577, - [5888] = 5650, - [5889] = 5594, - [5890] = 5577, - [5891] = 5623, - [5892] = 5595, - [5893] = 5593, - [5894] = 5740, - [5895] = 5567, - [5896] = 5848, - [5897] = 5678, - [5898] = 5636, - [5899] = 5899, - [5900] = 5635, - [5901] = 5534, - [5902] = 5547, - [5903] = 5593, - [5904] = 5553, + [5851] = 5562, + [5852] = 5538, + [5853] = 4058, + [5854] = 5854, + [5855] = 1604, + [5856] = 5552, + [5857] = 5857, + [5858] = 5566, + [5859] = 5567, + [5860] = 5860, + [5861] = 5861, + [5862] = 5820, + [5863] = 5824, + [5864] = 5485, + [5865] = 5865, + [5866] = 5566, + [5867] = 5860, + [5868] = 5567, + [5869] = 5861, + [5870] = 5850, + [5871] = 5849, + [5872] = 5843, + [5873] = 5838, + [5874] = 3993, + [5875] = 5828, + [5876] = 5648, + [5877] = 5650, + [5878] = 5649, + [5879] = 5649, + [5880] = 5648, + [5881] = 5828, + [5882] = 5813, + [5883] = 5647, + [5884] = 5783, + [5885] = 5824, + [5886] = 5485, + [5887] = 5887, + [5888] = 5888, + [5889] = 5558, + [5890] = 1608, + [5891] = 1605, + [5892] = 1568, + [5893] = 1561, + [5894] = 5894, + [5895] = 5895, + [5896] = 5896, + [5897] = 5897, + [5898] = 5854, + [5899] = 5848, + [5900] = 5845, + [5901] = 5901, + [5902] = 5902, + [5903] = 5842, + [5904] = 5904, [5905] = 5905, - [5906] = 5541, - [5907] = 5655, - [5908] = 5558, - [5909] = 5559, + [5906] = 5906, + [5907] = 5808, + [5908] = 5809, + [5909] = 5909, [5910] = 5910, [5911] = 5911, - [5912] = 5566, - [5913] = 5536, - [5914] = 5561, - [5915] = 5607, - [5916] = 5626, - [5917] = 5716, - [5918] = 5710, - [5919] = 5712, - [5920] = 5623, - [5921] = 5713, - [5922] = 5683, - [5923] = 5562, - [5924] = 5543, + [5912] = 5912, + [5913] = 5913, + [5914] = 5590, + [5915] = 5915, + [5916] = 5261, + [5917] = 5917, + [5918] = 4986, + [5919] = 4812, + [5920] = 5920, + [5921] = 5921, + [5922] = 5922, + [5923] = 5923, + [5924] = 5485, + [5925] = 5824, + [5926] = 5926, + [5927] = 5927, + [5928] = 5928, + [5929] = 5929, + [5930] = 5930, + [5931] = 5931, + [5932] = 5486, + [5933] = 5819, + [5934] = 5934, + [5935] = 5935, + [5936] = 5936, + [5937] = 5937, + [5938] = 5938, + [5939] = 5491, + [5940] = 5940, + [5941] = 5941, + [5942] = 5942, + [5943] = 718, + [5944] = 5783, + [5945] = 5493, + [5946] = 5946, + [5947] = 5495, + [5948] = 5538, + [5949] = 5496, + [5950] = 5950, + [5951] = 5951, + [5952] = 5952, + [5953] = 5953, + [5954] = 5954, + [5955] = 5955, + [5956] = 5566, + [5957] = 5957, + [5958] = 5958, + [5959] = 5567, + [5960] = 5960, + [5961] = 5566, + [5962] = 5962, + [5963] = 5963, + [5964] = 5567, + [5965] = 5965, + [5966] = 5966, + [5967] = 5967, + [5968] = 5968, + [5969] = 5969, + [5970] = 5538, + [5971] = 5496, + [5972] = 5972, + [5973] = 5495, + [5974] = 5974, + [5975] = 5493, + [5976] = 5783, + [5977] = 5491, + [5978] = 5978, + [5979] = 5486, + [5980] = 5552, + [5981] = 5981, + [5982] = 5982, + [5983] = 5983, + [5984] = 5984, + [5985] = 5985, + [5986] = 5986, + [5987] = 5987, + [5988] = 5848, + [5989] = 5847, + [5990] = 5990, + [5991] = 5991, + [5992] = 5845, + [5993] = 5993, + [5994] = 5994, + [5995] = 5995, + [5996] = 5996, + [5997] = 5997, + [5998] = 5998, + [5999] = 5999, + [6000] = 6000, + [6001] = 6001, + [6002] = 6002, + [6003] = 6003, + [6004] = 6004, + [6005] = 6005, + [6006] = 5824, + [6007] = 5485, + [6008] = 5590, + [6009] = 6009, + [6010] = 6010, + [6011] = 6011, + [6012] = 6012, + [6013] = 6013, + [6014] = 6014, + [6015] = 6015, + [6016] = 6016, + [6017] = 6017, + [6018] = 6018, + [6019] = 6019, + [6020] = 6020, + [6021] = 6021, + [6022] = 6022, + [6023] = 6023, + [6024] = 6024, + [6025] = 6025, + [6026] = 6026, + [6027] = 6027, + [6028] = 6028, + [6029] = 6029, + [6030] = 6030, + [6031] = 6031, + [6032] = 6032, + [6033] = 6033, + [6034] = 6034, + [6035] = 6035, + [6036] = 6036, + [6037] = 6037, + [6038] = 6038, + [6039] = 6039, + [6040] = 5819, + [6041] = 5824, + [6042] = 5920, + [6043] = 3954, + [6044] = 5842, + [6045] = 6045, + [6046] = 6046, + [6047] = 6047, + [6048] = 6048, + [6049] = 6049, + [6050] = 6050, + [6051] = 5486, + [6052] = 6052, + [6053] = 5590, + [6054] = 6054, + [6055] = 6055, + [6056] = 6056, + [6057] = 6057, + [6058] = 6058, + [6059] = 6059, + [6060] = 6060, + [6061] = 6061, + [6062] = 5485, + [6063] = 5824, + [6064] = 6064, + [6065] = 6065, + [6066] = 6066, + [6067] = 6067, + [6068] = 6068, + [6069] = 6069, + [6070] = 5819, + [6071] = 6071, + [6072] = 5846, + [6073] = 6073, + [6074] = 6074, + [6075] = 6075, + [6076] = 6076, + [6077] = 6077, + [6078] = 5783, + [6079] = 6079, + [6080] = 6080, + [6081] = 5841, + [6082] = 5538, + [6083] = 6083, + [6084] = 5840, + [6085] = 6085, + [6086] = 6086, + [6087] = 6087, + [6088] = 6088, + [6089] = 6089, + [6090] = 6090, + [6091] = 5567, + [6092] = 6092, + [6093] = 5566, + [6094] = 6094, + [6095] = 5590, + [6096] = 6096, + [6097] = 6097, + [6098] = 6098, + [6099] = 6099, + [6100] = 5826, + [6101] = 5830, + [6102] = 6102, + [6103] = 2725, + [6104] = 6104, + [6105] = 6105, + [6106] = 6106, + [6107] = 6107, + [6108] = 6108, + [6109] = 6109, + [6110] = 6110, + [6111] = 6111, + [6112] = 6112, + [6113] = 6113, + [6114] = 6114, + [6115] = 6115, + [6116] = 6116, + [6117] = 6117, + [6118] = 6118, + [6119] = 6119, + [6120] = 6120, + [6121] = 6121, + [6122] = 6122, + [6123] = 6123, + [6124] = 6124, + [6125] = 6125, + [6126] = 2648, + [6127] = 6127, + [6128] = 6128, + [6129] = 6107, + [6130] = 2664, + [6131] = 6108, + [6132] = 4525, + [6133] = 4527, + [6134] = 4529, + [6135] = 2663, + [6136] = 2662, + [6137] = 2661, + [6138] = 2658, + [6139] = 2657, + [6140] = 6140, + [6141] = 2656, + [6142] = 2654, + [6143] = 2653, + [6144] = 2652, + [6145] = 6145, + [6146] = 2651, + [6147] = 6147, + [6148] = 6148, + [6149] = 2650, + [6150] = 6150, + [6151] = 6151, + [6152] = 6152, + [6153] = 2649, + [6154] = 6154, + [6155] = 2647, + [6156] = 2646, + [6157] = 2645, + [6158] = 2644, + [6159] = 2643, + [6160] = 6160, + [6161] = 6161, + [6162] = 2699, + [6163] = 6163, + [6164] = 6164, + [6165] = 6165, + [6166] = 6166, + [6167] = 6167, + [6168] = 6168, + [6169] = 6169, + [6170] = 6170, + [6171] = 6171, + [6172] = 6172, + [6173] = 6173, + [6174] = 6174, + [6175] = 6175, + [6176] = 6176, + [6177] = 6116, + [6178] = 6115, + [6179] = 6114, + [6180] = 6109, + [6181] = 6181, + [6182] = 6110, + [6183] = 6111, + [6184] = 6113, + [6185] = 2607, + [6186] = 6186, + [6187] = 6187, + [6188] = 6112, + [6189] = 6189, + [6190] = 6112, + [6191] = 6191, + [6192] = 6192, + [6193] = 6111, + [6194] = 6110, + [6195] = 6113, + [6196] = 6196, + [6197] = 6114, + [6198] = 6109, + [6199] = 6115, + [6200] = 6200, + [6201] = 6116, + [6202] = 6202, + [6203] = 6203, + [6204] = 6108, + [6205] = 6205, + [6206] = 6206, + [6207] = 6107, + [6208] = 2642, + [6209] = 2641, + [6210] = 2640, + [6211] = 6211, + [6212] = 6212, + [6213] = 2655, + [6214] = 2616, + [6215] = 6215, + [6216] = 6216, + [6217] = 2606, + [6218] = 2604, + [6219] = 2704, + [6220] = 6220, + [6221] = 2698, + [6222] = 6222, + [6223] = 2612, + [6224] = 6117, + [6225] = 2597, + [6226] = 1630, + [6227] = 6227, + [6228] = 6228, + [6229] = 4473, + [6230] = 6230, + [6231] = 6231, + [6232] = 6232, + [6233] = 6233, + [6234] = 6234, + [6235] = 2610, + [6236] = 1746, + [6237] = 2666, + [6238] = 2667, + [6239] = 2668, + [6240] = 2669, + [6241] = 2670, + [6242] = 2671, + [6243] = 2672, + [6244] = 6244, + [6245] = 2673, + [6246] = 1741, + [6247] = 6203, + [6248] = 6248, + [6249] = 2674, + [6250] = 6250, + [6251] = 6251, + [6252] = 6252, + [6253] = 2675, + [6254] = 2676, + [6255] = 2677, + [6256] = 2678, + [6257] = 2680, + [6258] = 6258, + [6259] = 6259, + [6260] = 6260, + [6261] = 2683, + [6262] = 6262, + [6263] = 2684, + [6264] = 6112, + [6265] = 2686, + [6266] = 2687, + [6267] = 2688, + [6268] = 2689, + [6269] = 6269, + [6270] = 2690, + [6271] = 6271, + [6272] = 2691, + [6273] = 6273, + [6274] = 6274, + [6275] = 6275, + [6276] = 6276, + [6277] = 2692, + [6278] = 6278, + [6279] = 2693, + [6280] = 2694, + [6281] = 6281, + [6282] = 2695, + [6283] = 6283, + [6284] = 6260, + [6285] = 6285, + [6286] = 2696, + [6287] = 6287, + [6288] = 2697, + [6289] = 2709, + [6290] = 6262, + [6291] = 2700, + [6292] = 6168, + [6293] = 6112, + [6294] = 2701, + [6295] = 2702, + [6296] = 6296, + [6297] = 2703, + [6298] = 6298, + [6299] = 2705, + [6300] = 6300, + [6301] = 2706, + [6302] = 2707, + [6303] = 2708, + [6304] = 6259, + [6305] = 2710, + [6306] = 6175, + [6307] = 2711, + [6308] = 2712, + [6309] = 2715, + [6310] = 6310, + [6311] = 6251, + [6312] = 6312, + [6313] = 6187, + [6314] = 2716, + [6315] = 6315, + [6316] = 2717, + [6317] = 6317, + [6318] = 6318, + [6319] = 2595, + [6320] = 2719, + [6321] = 2720, + [6322] = 2721, + [6323] = 2722, + [6324] = 6250, + [6325] = 6216, + [6326] = 2723, + [6327] = 6196, + [6328] = 6192, + [6329] = 2724, + [6330] = 6109, + [6331] = 6331, + [6332] = 6332, + [6333] = 6333, + [6334] = 2726, + [6335] = 6140, + [6336] = 6117, + [6337] = 6337, + [6338] = 6338, + [6339] = 6339, + [6340] = 6119, + [6341] = 6120, + [6342] = 6121, + [6343] = 6110, + [6344] = 6202, + [6345] = 6345, + [6346] = 6125, + [6347] = 6128, + [6348] = 6202, + [6349] = 6107, + [6350] = 6108, + [6351] = 6351, + [6352] = 6148, + [6353] = 6150, + [6354] = 6151, + [6355] = 6111, + [6356] = 6174, + [6357] = 6234, + [6358] = 6205, + [6359] = 6206, + [6360] = 6152, + [6361] = 6147, + [6362] = 6145, + [6363] = 6203, + [6364] = 6244, + [6365] = 6248, + [6366] = 6252, + [6367] = 6269, + [6368] = 6271, + [6369] = 6273, + [6370] = 6274, + [6371] = 6275, + [6372] = 6276, + [6373] = 6278, + [6374] = 6281, + [6375] = 6285, + [6376] = 6287, + [6377] = 6296, + [6378] = 6378, + [6379] = 6298, + [6380] = 6300, + [6381] = 6312, + [6382] = 6315, + [6383] = 6317, + [6384] = 6384, + [6385] = 6191, + [6386] = 6386, + [6387] = 6387, + [6388] = 6388, + [6389] = 6389, + [6390] = 6390, + [6391] = 6391, + [6392] = 6189, + [6393] = 6393, + [6394] = 6394, + [6395] = 6118, + [6396] = 6396, + [6397] = 6397, + [6398] = 6398, + [6399] = 6399, + [6400] = 6400, + [6401] = 6401, + [6402] = 6402, + [6403] = 6403, + [6404] = 6404, + [6405] = 6405, + [6406] = 6406, + [6407] = 6407, + [6408] = 6408, + [6409] = 6409, + [6410] = 6410, + [6411] = 6411, + [6412] = 6412, + [6413] = 6413, + [6414] = 6414, + [6415] = 6415, + [6416] = 6416, + [6417] = 2740, + [6418] = 6418, + [6419] = 6419, + [6420] = 6420, + [6421] = 6421, + [6422] = 6422, + [6423] = 6423, + [6424] = 6127, + [6425] = 6425, + [6426] = 6426, + [6427] = 6427, + [6428] = 6428, + [6429] = 6429, + [6430] = 6430, + [6431] = 6431, + [6432] = 6432, + [6433] = 6433, + [6434] = 6434, + [6435] = 6161, + [6436] = 6436, + [6437] = 6437, + [6438] = 6438, + [6439] = 6439, + [6440] = 6440, + [6441] = 6441, + [6442] = 6442, + [6443] = 6443, + [6444] = 6444, + [6445] = 6109, + [6446] = 6446, + [6447] = 6447, + [6448] = 6448, + [6449] = 6449, + [6450] = 6450, + [6451] = 6451, + [6452] = 6452, + [6453] = 6453, + [6454] = 6454, + [6455] = 6318, + [6456] = 6456, + [6457] = 6457, + [6458] = 6458, + [6459] = 6459, + [6460] = 6460, + [6461] = 6461, + [6462] = 6462, + [6463] = 6463, + [6464] = 6464, + [6465] = 6465, + [6466] = 6466, + [6467] = 6467, + [6468] = 6468, + [6469] = 2729, + [6470] = 2730, + [6471] = 2731, + [6472] = 2732, + [6473] = 6386, + [6474] = 6474, + [6475] = 2733, + [6476] = 6387, + [6477] = 6477, + [6478] = 2734, + [6479] = 6479, + [6480] = 6388, + [6481] = 2735, + [6482] = 2736, + [6483] = 2737, + [6484] = 2738, + [6485] = 2739, + [6486] = 2768, + [6487] = 2741, + [6488] = 2742, + [6489] = 6389, + [6490] = 2743, + [6491] = 6390, + [6492] = 2744, + [6493] = 6391, + [6494] = 6394, + [6495] = 6396, + [6496] = 6397, + [6497] = 2745, + [6498] = 6398, + [6499] = 2746, + [6500] = 2747, + [6501] = 6399, + [6502] = 2748, + [6503] = 6400, + [6504] = 2749, + [6505] = 6505, + [6506] = 6401, + [6507] = 2750, + [6508] = 2751, + [6509] = 2752, + [6510] = 2753, + [6511] = 6511, + [6512] = 6512, + [6513] = 6513, + [6514] = 2754, + [6515] = 6402, + [6516] = 2755, + [6517] = 6403, + [6518] = 2756, + [6519] = 6404, + [6520] = 2757, + [6521] = 2758, + [6522] = 6522, + [6523] = 2759, + [6524] = 6405, + [6525] = 2760, + [6526] = 6406, + [6527] = 2761, + [6528] = 6407, + [6529] = 6408, + [6530] = 6409, + [6531] = 6283, + [6532] = 6411, + [6533] = 2762, + [6534] = 6412, + [6535] = 6413, + [6536] = 6414, + [6537] = 6415, + [6538] = 2763, + [6539] = 6416, + [6540] = 2764, + [6541] = 2765, + [6542] = 2766, + [6543] = 2767, + [6544] = 6418, + [6545] = 2806, + [6546] = 6419, + [6547] = 2769, + [6548] = 6420, + [6549] = 6421, + [6550] = 6422, + [6551] = 6423, + [6552] = 2770, + [6553] = 6425, + [6554] = 2771, + [6555] = 2772, + [6556] = 6426, + [6557] = 2773, + [6558] = 6427, + [6559] = 2774, + [6560] = 6428, + [6561] = 2775, + [6562] = 2776, + [6563] = 2778, + [6564] = 2782, + [6565] = 2783, + [6566] = 2784, + [6567] = 2785, + [6568] = 2786, + [6569] = 2788, + [6570] = 2789, + [6571] = 2790, + [6572] = 6429, + [6573] = 2791, + [6574] = 6410, + [6575] = 2792, + [6576] = 6431, + [6577] = 6432, + [6578] = 6433, + [6579] = 6436, + [6580] = 2793, + [6581] = 6437, + [6582] = 2794, + [6583] = 2795, + [6584] = 6438, + [6585] = 2796, + [6586] = 6439, + [6587] = 6587, + [6588] = 2797, + [6589] = 6440, + [6590] = 2798, + [6591] = 2799, + [6592] = 2800, + [6593] = 2801, + [6594] = 2802, + [6595] = 6441, + [6596] = 2803, + [6597] = 6442, + [6598] = 2804, + [6599] = 6443, + [6600] = 2805, + [6601] = 6601, + [6602] = 2807, + [6603] = 2808, + [6604] = 6604, + [6605] = 2809, + [6606] = 6606, + [6607] = 2810, + [6608] = 6608, + [6609] = 6609, + [6610] = 6610, + [6611] = 6611, + [6612] = 6612, + [6613] = 6613, + [6614] = 6614, + [6615] = 6615, + [6616] = 6616, + [6617] = 6617, + [6618] = 6618, + [6619] = 6619, + [6620] = 6620, + [6621] = 6621, + [6622] = 6622, + [6623] = 6623, + [6624] = 6624, + [6625] = 6625, + [6626] = 6626, + [6627] = 6627, + [6628] = 6628, + [6629] = 6629, + [6630] = 6630, + [6631] = 6631, + [6632] = 6632, + [6633] = 6633, + [6634] = 6634, + [6635] = 6635, + [6636] = 6636, + [6637] = 6637, + [6638] = 6638, + [6639] = 6639, + [6640] = 6640, + [6641] = 6641, + [6642] = 6642, + [6643] = 6643, + [6644] = 6644, + [6645] = 6645, + [6646] = 6646, + [6647] = 6647, + [6648] = 6648, + [6649] = 6649, + [6650] = 6650, + [6651] = 6651, + [6652] = 6652, + [6653] = 6653, + [6654] = 6654, + [6655] = 6655, + [6656] = 6656, + [6657] = 6175, + [6658] = 6332, + [6659] = 6659, + [6660] = 6118, + [6661] = 6127, + [6662] = 6318, + [6663] = 6111, + [6664] = 6378, + [6665] = 6665, + [6666] = 6666, + [6667] = 6667, + [6668] = 6668, + [6669] = 6669, + [6670] = 6670, + [6671] = 6671, + [6672] = 6672, + [6673] = 6673, + [6674] = 6674, + [6675] = 6675, + [6676] = 6676, + [6677] = 6677, + [6678] = 6678, + [6679] = 6679, + [6680] = 6680, + [6681] = 6681, + [6682] = 6682, + [6683] = 6683, + [6684] = 6684, + [6685] = 6685, + [6686] = 6686, + [6687] = 6687, + [6688] = 6688, + [6689] = 6689, + [6690] = 6690, + [6691] = 6691, + [6692] = 6692, + [6693] = 6693, + [6694] = 6694, + [6695] = 6695, + [6696] = 6696, + [6697] = 6697, + [6698] = 6698, + [6699] = 6699, + [6700] = 6700, + [6701] = 6623, + [6702] = 2821, + [6703] = 2822, + [6704] = 2823, + [6705] = 2824, + [6706] = 6446, + [6707] = 2825, + [6708] = 6447, + [6709] = 2826, + [6710] = 6448, + [6711] = 6449, + [6712] = 6450, + [6713] = 6451, + [6714] = 2827, + [6715] = 6452, + [6716] = 2828, + [6717] = 2829, + [6718] = 6453, + [6719] = 2830, + [6720] = 6456, + [6721] = 2831, + [6722] = 6457, + [6723] = 2832, + [6724] = 2833, + [6725] = 2834, + [6726] = 6458, + [6727] = 2835, + [6728] = 6459, + [6729] = 2836, + [6730] = 6460, + [6731] = 6461, + [6732] = 6462, + [6733] = 6463, + [6734] = 6464, + [6735] = 2837, + [6736] = 6465, + [6737] = 6466, + [6738] = 6467, + [6739] = 6468, + [6740] = 2838, + [6741] = 6505, + [6742] = 2839, + [6743] = 2840, + [6744] = 2841, + [6745] = 2842, + [6746] = 6511, + [6747] = 2843, + [6748] = 6512, + [6749] = 2844, + [6750] = 6430, + [6751] = 6601, + [6752] = 6608, + [6753] = 6609, + [6754] = 2845, + [6755] = 6610, + [6756] = 2846, + [6757] = 6611, + [6758] = 6612, + [6759] = 6613, + [6760] = 6614, + [6761] = 6615, + [6762] = 6616, + [6763] = 2847, + [6764] = 2848, + [6765] = 6617, + [6766] = 2849, + [6767] = 6618, + [6768] = 2850, + [6769] = 6619, + [6770] = 6620, + [6771] = 6621, + [6772] = 6622, + [6773] = 6633, + [6774] = 2851, + [6775] = 6624, + [6776] = 6625, + [6777] = 6626, + [6778] = 6627, + [6779] = 2852, + [6780] = 6628, + [6781] = 2853, + [6782] = 2854, + [6783] = 6629, + [6784] = 2855, + [6785] = 6630, + [6786] = 2856, + [6787] = 6631, + [6788] = 2857, + [6789] = 2858, + [6790] = 2860, + [6791] = 2861, + [6792] = 2862, + [6793] = 6474, + [6794] = 6186, + [6795] = 6632, + [6796] = 6796, + [6797] = 2863, + [6798] = 6798, + [6799] = 6513, + [6800] = 6800, + [6801] = 6801, + [6802] = 2864, + [6803] = 6634, + [6804] = 2865, + [6805] = 2866, + [6806] = 2867, + [6807] = 6635, + [6808] = 6808, + [6809] = 2868, + [6810] = 6636, + [6811] = 2869, + [6812] = 6637, + [6813] = 6638, + [6814] = 6639, + [6815] = 6104, + [6816] = 6641, + [6817] = 2870, + [6818] = 6642, + [6819] = 6643, + [6820] = 6644, + [6821] = 6645, + [6822] = 2871, + [6823] = 6646, + [6824] = 2872, + [6825] = 2873, + [6826] = 2874, + [6827] = 2875, + [6828] = 6647, + [6829] = 2876, + [6830] = 6648, + [6831] = 2877, + [6832] = 6649, + [6833] = 6650, + [6834] = 6651, + [6835] = 6652, + [6836] = 2878, + [6837] = 6653, + [6838] = 2879, + [6839] = 6839, + [6840] = 2880, + [6841] = 6654, + [6842] = 2881, + [6843] = 6655, + [6844] = 2882, + [6845] = 6656, + [6846] = 2883, + [6847] = 2884, + [6848] = 2885, + [6849] = 2886, + [6850] = 6850, + [6851] = 2887, + [6852] = 6852, + [6853] = 2888, + [6854] = 6479, + [6855] = 6855, + [6856] = 6856, + [6857] = 2617, + [6858] = 6858, + [6859] = 2618, + [6860] = 6165, + [6861] = 6861, + [6862] = 6862, + [6863] = 6863, + [6864] = 6864, + [6865] = 6865, + [6866] = 6866, + [6867] = 6867, + [6868] = 6868, + [6869] = 6869, + [6870] = 6870, + [6871] = 6871, + [6872] = 6872, + [6873] = 6873, + [6874] = 6118, + [6875] = 6875, + [6876] = 6876, + [6877] = 6877, + [6878] = 6878, + [6879] = 6879, + [6880] = 6880, + [6881] = 6881, + [6882] = 6882, + [6883] = 6883, + [6884] = 6884, + [6885] = 6885, + [6886] = 6886, + [6887] = 6887, + [6888] = 6318, + [6889] = 6889, + [6890] = 6890, + [6891] = 6891, + [6892] = 6892, + [6893] = 6513, + [6894] = 6189, + [6895] = 6895, + [6896] = 6477, + [6897] = 6474, + [6898] = 2889, + [6899] = 6112, + [6900] = 6513, + [6901] = 6168, + [6902] = 6902, + [6903] = 6310, + [6904] = 6904, + [6905] = 6905, + [6906] = 6187, + [6907] = 6186, + [6908] = 6796, + [6909] = 6839, + [6910] = 6855, + [6911] = 6110, + [6912] = 6912, + [6913] = 6913, + [6914] = 6914, + [6915] = 6915, + [6916] = 6916, + [6917] = 6917, + [6918] = 6918, + [6919] = 6919, + [6920] = 6920, + [6921] = 6921, + [6922] = 6922, + [6923] = 2620, + [6924] = 2892, + [6925] = 2891, + [6926] = 6665, + [6927] = 2890, + [6928] = 6587, + [6929] = 6680, + [6930] = 6667, + [6931] = 6668, + [6932] = 6669, + [6933] = 6670, + [6934] = 6671, + [6935] = 2859, + [6936] = 6672, + [6937] = 6673, + [6938] = 6674, + [6939] = 6675, + [6940] = 2820, + [6941] = 6676, + [6942] = 2819, + [6943] = 6677, + [6944] = 6678, + [6945] = 6679, + [6946] = 6946, + [6947] = 6112, + [6948] = 6882, + [6949] = 6681, + [6950] = 6950, + [6951] = 6951, + [6952] = 6952, + [6953] = 6682, + [6954] = 2818, + [6955] = 2817, + [6956] = 6683, + [6957] = 2816, + [6958] = 6684, + [6959] = 2814, + [6960] = 6960, + [6961] = 6685, + [6962] = 6686, + [6963] = 6687, + [6964] = 6666, + [6965] = 6689, + [6966] = 6690, + [6967] = 2813, + [6968] = 6691, + [6969] = 6692, + [6970] = 6693, + [6971] = 6694, + [6972] = 6695, + [6973] = 6696, + [6974] = 2812, + [6975] = 6697, + [6976] = 6698, + [6977] = 6699, + [6978] = 6700, + [6979] = 2787, + [6980] = 6688, + [6981] = 2781, + [6982] = 2780, + [6983] = 2779, + [6984] = 2777, + [6985] = 6801, + [6986] = 2728, + [6987] = 6863, + [6988] = 2727, + [6989] = 6989, + [6990] = 6864, + [6991] = 6865, + [6992] = 6866, + [6993] = 6867, + [6994] = 6994, + [6995] = 6118, + [6996] = 2714, + [6997] = 6318, + [6998] = 6868, + [6999] = 6513, + [7000] = 2713, + [7001] = 6869, + [7002] = 6870, + [7003] = 6871, + [7004] = 6873, + [7005] = 6875, + [7006] = 6876, + [7007] = 2685, + [7008] = 2682, + [7009] = 6877, + [7010] = 2681, + [7011] = 6878, + [7012] = 2679, + [7013] = 6879, + [7014] = 6880, + [7015] = 6881, + [7016] = 7016, + [7017] = 6883, + [7018] = 2665, + [7019] = 6884, + [7020] = 6885, + [7021] = 6886, + [7022] = 6887, + [7023] = 2660, + [7024] = 6889, + [7025] = 2659, + [7026] = 2639, + [7027] = 6890, + [7028] = 2638, + [7029] = 6891, + [7030] = 2637, + [7031] = 6892, + [7032] = 2596, + [7033] = 7033, + [7034] = 2636, + [7035] = 7035, + [7036] = 2635, + [7037] = 6895, + [7038] = 7038, + [7039] = 7039, + [7040] = 7040, + [7041] = 6318, + [7042] = 7042, + [7043] = 7043, + [7044] = 7044, + [7045] = 7045, + [7046] = 7046, + [7047] = 7047, + [7048] = 7048, + [7049] = 7049, + [7050] = 6861, + [7051] = 7051, + [7052] = 7052, + [7053] = 7053, + [7054] = 7054, + [7055] = 7055, + [7056] = 6118, + [7057] = 7057, + [7058] = 7058, + [7059] = 7059, + [7060] = 7060, + [7061] = 7061, + [7062] = 7062, + [7063] = 7063, + [7064] = 7064, + [7065] = 7065, + [7066] = 7066, + [7067] = 7067, + [7068] = 6118, + [7069] = 7069, + [7070] = 6318, + [7071] = 7071, + [7072] = 6513, + [7073] = 7073, + [7074] = 7074, + [7075] = 7075, + [7076] = 7076, + [7077] = 7077, + [7078] = 7078, + [7079] = 7079, + [7080] = 7080, + [7081] = 7081, + [7082] = 7082, + [7083] = 7083, + [7084] = 6172, + [7085] = 7085, + [7086] = 6173, + [7087] = 7087, + [7088] = 6310, + [7089] = 7089, + [7090] = 6116, + [7091] = 7091, + [7092] = 7065, + [7093] = 7093, + [7094] = 7094, + [7095] = 6115, + [7096] = 7096, + [7097] = 6114, + [7098] = 6113, + [7099] = 7099, + [7100] = 7100, + [7101] = 6912, + [7102] = 6913, + [7103] = 2634, + [7104] = 6914, + [7105] = 6915, + [7106] = 6916, + [7107] = 6917, + [7108] = 6918, + [7109] = 6798, + [7110] = 7016, + [7111] = 2632, + [7112] = 7038, + [7113] = 7040, + [7114] = 7042, + [7115] = 7115, + [7116] = 6200, + [7117] = 7043, + [7118] = 6113, + [7119] = 6960, + [7120] = 6114, + [7121] = 7047, + [7122] = 6989, + [7123] = 7051, + [7124] = 2631, + [7125] = 2630, + [7126] = 7054, + [7127] = 2629, + [7128] = 6952, + [7129] = 7060, + [7130] = 2628, + [7131] = 7061, + [7132] = 7062, + [7133] = 6115, + [7134] = 7064, + [7135] = 6951, + [7136] = 7066, + [7137] = 7067, + [7138] = 2626, + [7139] = 7069, + [7140] = 7071, + [7141] = 7073, + [7142] = 7074, + [7143] = 7075, + [7144] = 7076, + [7145] = 2625, + [7146] = 7077, + [7147] = 7078, + [7148] = 7079, + [7149] = 7080, + [7150] = 2624, + [7151] = 7081, + [7152] = 7152, + [7153] = 2623, + [7154] = 7154, + [7155] = 2622, + [7156] = 7082, + [7157] = 6950, + [7158] = 6522, + [7159] = 6116, + [7160] = 7091, + [7161] = 6946, + [7162] = 7162, + [7163] = 6922, + [7164] = 7164, + [7165] = 7083, + [7166] = 6659, + [7167] = 6172, + [7168] = 6921, + [7169] = 6920, + [7170] = 6872, + [7171] = 7171, + [7172] = 7085, + [7173] = 7173, + [7174] = 7174, + [7175] = 6173, + [7176] = 6513, + [7177] = 6862, + [7178] = 7178, + [7179] = 7179, + [7180] = 7180, + [7181] = 7181, + [7182] = 7182, + [7183] = 7183, + [7184] = 7184, + [7185] = 7185, + [7186] = 7186, + [7187] = 7187, + [7188] = 7188, + [7189] = 7189, + [7190] = 7190, + [7191] = 7191, + [7192] = 7192, + [7193] = 7193, + [7194] = 7188, + [7195] = 7179, + [7196] = 7183, + [7197] = 7197, + [7198] = 7182, + [7199] = 7199, + [7200] = 7187, + [7201] = 7191, + [7202] = 7202, + [7203] = 7203, + [7204] = 7204, + [7205] = 7205, + [7206] = 7206, + [7207] = 7207, + [7208] = 7193, + [7209] = 7209, + [7210] = 7210, + [7211] = 7211, + [7212] = 7212, + [7213] = 7213, + [7214] = 7214, + [7215] = 7188, + [7216] = 7216, + [7217] = 7217, + [7218] = 7218, + [7219] = 7219, + [7220] = 7220, + [7221] = 7221, + [7222] = 7222, + [7223] = 7223, + [7224] = 7224, + [7225] = 7225, + [7226] = 7226, + [7227] = 7179, + [7228] = 7183, + [7229] = 7229, + [7230] = 7182, + [7231] = 7231, + [7232] = 7187, + [7233] = 7233, + [7234] = 7191, + [7235] = 7235, + [7236] = 7236, + [7237] = 7193, + [7238] = 7210, + [7239] = 7188, + [7240] = 7240, + [7241] = 7241, + [7242] = 7179, + [7243] = 7183, + [7244] = 7244, + [7245] = 7182, + [7246] = 7187, + [7247] = 7191, + [7248] = 7248, + [7249] = 7249, + [7250] = 7250, + [7251] = 7191, + [7252] = 7193, + [7253] = 7253, + [7254] = 7254, + [7255] = 7255, + [7256] = 7256, + [7257] = 7178, + [7258] = 7258, + [7259] = 7259, + [7260] = 7260, + [7261] = 7261, + [7262] = 7210, + [7263] = 7188, + [7264] = 7264, + [7265] = 7181, + [7266] = 7180, + [7267] = 7179, + [7268] = 7183, + [7269] = 7182, + [7270] = 7186, + [7271] = 7244, + [7272] = 7272, + [7273] = 7273, + [7274] = 7187, + [7275] = 7185, + [7276] = 7276, + [7277] = 7180, + [7278] = 7181, + [7279] = 7221, + [7280] = 7241, + [7281] = 7244, + [7282] = 7240, + [7283] = 7233, + [7284] = 7210, + [7285] = 7216, + [7286] = 7193, + [7287] = 7240, + [7288] = 7288, + [7289] = 7289, + [7290] = 7290, + [7291] = 7291, + [7292] = 7185, + [7293] = 7293, + [7294] = 7294, + [7295] = 7295, + [7296] = 7296, + [7297] = 7233, + [7298] = 7256, + [7299] = 7291, + [7300] = 7300, + [7301] = 7301, + [7302] = 7273, + [7303] = 7303, + [7304] = 7304, + [7305] = 7305, + [7306] = 7306, + [7307] = 7261, + [7308] = 7260, + [7309] = 7259, + [7310] = 7258, + [7311] = 7178, + [7312] = 7312, + [7313] = 7313, + [7314] = 7255, + [7315] = 7254, + [7316] = 7253, + [7317] = 7317, + [7318] = 7264, + [7319] = 7185, + [7320] = 7231, + [7321] = 7321, + [7322] = 7226, + [7323] = 7225, + [7324] = 7220, + [7325] = 7325, + [7326] = 7219, + [7327] = 7327, + [7328] = 7218, + [7329] = 7236, + [7330] = 7217, + [7331] = 7212, + [7332] = 7332, + [7333] = 7333, + [7334] = 7211, + [7335] = 7180, + [7336] = 7181, + [7337] = 7244, + [7338] = 7240, + [7339] = 7291, + [7340] = 7273, + [7341] = 7341, + [7342] = 7342, + [7343] = 7233, + [7344] = 7300, + [7345] = 7216, + [7346] = 7346, + [7347] = 7214, + [7348] = 7348, + [7349] = 7303, + [7350] = 7350, + [7351] = 7276, + [7352] = 7304, + [7353] = 7353, + [7354] = 7261, + [7355] = 7260, + [7356] = 7356, + [7357] = 7259, + [7358] = 7258, + [7359] = 7178, + [7360] = 7360, + [7361] = 7256, + [7362] = 7255, + [7363] = 7363, + [7364] = 7254, + [7365] = 7253, + [7366] = 7264, + [7367] = 7367, + [7368] = 7185, + [7369] = 7369, + [7370] = 7231, + [7371] = 7371, + [7372] = 7226, + [7373] = 7225, + [7374] = 7220, + [7375] = 7219, + [7376] = 7218, + [7377] = 7236, + [7378] = 7378, + [7379] = 7217, + [7380] = 7216, + [7381] = 7193, + [7382] = 7212, + [7383] = 7346, + [7384] = 7214, + [7385] = 7213, + [7386] = 7348, + [7387] = 7191, + [7388] = 7187, + [7389] = 7211, + [7390] = 7186, + [7391] = 7180, + [7392] = 7392, + [7393] = 7181, + [7394] = 7244, + [7395] = 7240, + [7396] = 7182, + [7397] = 7183, + [7398] = 7179, + [7399] = 7291, + [7400] = 7273, + [7401] = 7233, + [7402] = 7300, + [7403] = 7356, + [7404] = 7216, + [7405] = 7346, + [7406] = 7188, + [7407] = 7214, + [7408] = 7348, + [7409] = 7409, + [7410] = 7409, + [7411] = 7303, + [7412] = 7304, + [7413] = 7313, + [7414] = 7211, + [7415] = 7261, + [7416] = 7416, + [7417] = 7260, + [7418] = 7259, + [7419] = 7258, + [7420] = 7256, + [7421] = 7255, + [7422] = 7254, + [7423] = 7423, + [7424] = 7253, + [7425] = 7425, + [7426] = 7426, + [7427] = 7264, + [7428] = 7185, + [7429] = 7231, + [7430] = 7430, + [7431] = 7226, + [7432] = 7225, + [7433] = 7220, + [7434] = 7219, + [7435] = 7303, + [7436] = 7218, + [7437] = 7437, + [7438] = 7236, + [7439] = 7217, + [7440] = 7212, + [7441] = 7191, + [7442] = 7190, + [7443] = 7180, + [7444] = 7181, + [7445] = 7304, + [7446] = 7199, + [7447] = 7288, + [7448] = 7244, + [7449] = 7240, + [7450] = 7450, + [7451] = 7291, + [7452] = 7273, + [7453] = 7197, + [7454] = 7233, + [7455] = 7300, + [7456] = 7356, + [7457] = 7221, + [7458] = 7216, + [7459] = 7459, + [7460] = 7289, + [7461] = 7346, + [7462] = 7214, + [7463] = 7192, + [7464] = 7348, + [7465] = 7409, + [7466] = 7186, + [7467] = 7303, + [7468] = 7304, + [7469] = 7313, + [7470] = 7300, + [7471] = 7191, + [7472] = 7290, + [7473] = 7187, + [7474] = 7187, + [7475] = 7475, + [7476] = 7186, + [7477] = 7186, + [7478] = 7353, + [7479] = 7182, + [7480] = 7353, + [7481] = 7183, + [7482] = 7179, + [7483] = 7483, + [7484] = 7313, + [7485] = 7188, + [7486] = 7486, + [7487] = 7182, + [7488] = 7179, + [7489] = 7183, + [7490] = 7182, + [7491] = 7188, + [7492] = 7492, + [7493] = 7183, + [7494] = 7213, + [7495] = 7179, + [7496] = 7486, + [7497] = 7188, + [7498] = 7313, + [7499] = 7304, + [7500] = 7303, + [7501] = 7409, + [7502] = 7348, + [7503] = 7214, + [7504] = 7346, + [7505] = 7216, + [7506] = 7186, + [7507] = 7213, + [7508] = 7508, + [7509] = 7353, + [7510] = 7341, + [7511] = 7369, + [7512] = 7363, + [7513] = 7360, + [7514] = 7293, + [7515] = 7356, + [7516] = 7516, + [7517] = 7186, + [7518] = 7213, + [7519] = 7240, + [7520] = 7273, + [7521] = 7291, + [7522] = 7233, + [7523] = 7261, + [7524] = 7260, + [7525] = 7525, + [7526] = 7259, + [7527] = 7258, + [7528] = 7178, + [7529] = 7529, + [7530] = 7530, + [7531] = 7256, + [7532] = 7530, + [7533] = 7294, + [7534] = 7450, + [7535] = 7529, + [7536] = 7213, + [7537] = 7214, + [7538] = 7255, + [7539] = 7367, + [7540] = 7254, + [7541] = 7342, + [7542] = 7253, + [7543] = 7184, + [7544] = 7264, + [7545] = 7181, + [7546] = 7185, + [7547] = 7272, + [7548] = 7244, + [7549] = 7231, + [7550] = 7186, + [7551] = 7187, + [7552] = 7552, + [7553] = 7295, + [7554] = 7296, + [7555] = 7189, + [7556] = 7191, + [7557] = 7210, + [7558] = 7226, + [7559] = 7225, + [7560] = 7220, + [7561] = 7219, + [7562] = 7218, + [7563] = 7236, + [7564] = 7217, + [7565] = 7213, + [7566] = 7212, + [7567] = 7211, + [7568] = 7180, }; static TSCharacterRange extras_character_set_1[] = { @@ -10602,954 +12352,924 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(152); + if (eof) ADVANCE(151); ADVANCE_MAP( - '!', 166, - '"', 200, + '!', 165, + '"', 199, '#', 11, - '$', 324, - '%', 264, - '&', 243, - '\'', 201, - '(', 167, - ')', 168, - '*', 155, - '+', 256, - ',', 163, - '-', 260, - '.', 196, - '/', 309, - '0', 314, - ':', 170, - ';', 169, - '<', 269, - '=', 159, - '>', 192, - '?', 330, - '@', 327, - '[', 171, - '\\', 106, - ']', 172, - '^', 246, - '`', 307, - '{', 162, - '|', 249, - '}', 164, - '~', 283, + '$', 323, + '%', 263, + '&', 242, + '\'', 200, + '(', 166, + ')', 167, + '*', 154, + '+', 255, + ',', 162, + '-', 259, + '.', 195, + '/', 308, + '0', 313, + ':', 169, + ';', 168, + '<', 268, + '=', 158, + '>', 191, + '?', 329, + '@', 326, + '[', 170, + '\\', 105, + ']', 171, + '^', 245, + '`', 306, + '{', 161, + '|', 248, + '}', 163, + '~', 282, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(149); - if (lookahead > '@') ADVANCE(325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(148); + if (lookahead > '@') ADVANCE(324); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(27); - if (lookahead == '&') ADVANCE(21); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '<') ADVANCE(268); - if (lookahead == '{') ADVANCE(161); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(189); + if (lookahead == '\n') ADVANCE(26); + if (lookahead == '&') ADVANCE(20); + if (lookahead == '/') ADVANCE(178); + if (lookahead == '<') ADVANCE(267); + if (lookahead == '{') ADVANCE(160); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(188); if (lookahead != 0 && lookahead != '>' && - lookahead != '}') ADVANCE(181); + lookahead != '}') ADVANCE(180); END_STATE(); case 2: if (lookahead == '\n') SKIP(2); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '<') ADVANCE(176); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(175); - if (lookahead != 0) ADVANCE(173); + if (lookahead == '/') ADVANCE(173); + if (lookahead == '<') ADVANCE(175); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(174); + if (lookahead != 0) ADVANCE(172); END_STATE(); case 3: - if (lookahead == '\n') SKIP(41); - if (lookahead == '/') ADVANCE(31); - if (lookahead == '[') ADVANCE(90); - if (lookahead == '\\') ADVANCE(148); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(310); - if (lookahead != 0) ADVANCE(311); + if (lookahead == '\n') SKIP(40); + if (lookahead == '/') ADVANCE(30); + if (lookahead == '[') ADVANCE(89); + if (lookahead == '\\') ADVANCE(147); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(309); + if (lookahead != 0) ADVANCE(310); END_STATE(); case 4: ADVANCE_MAP( - '!', 166, - '"', 200, - '#', 89, - '%', 264, - '&', 243, - '\'', 201, - '(', 167, - ')', 168, - '*', 155, - '+', 255, - ',', 163, - '-', 259, - '.', 196, - '/', 262, - '0', 314, - ':', 170, - ';', 169, - '<', 271, - '=', 159, - '>', 192, - '?', 330, - '@', 327, - '[', 171, - '\\', 108, - ']', 172, - '^', 246, - '`', 307, - '{', 161, - '|', 248, - '}', 164, - '~', 283, + '!', 165, + '"', 199, + '#', 88, + '%', 263, + '&', 242, + '\'', 200, + '(', 166, + ')', 167, + '*', 154, + '+', 254, + ',', 162, + '-', 258, + '.', 195, + '/', 261, + '0', 313, + ':', 169, + ';', 168, + '<', 270, + '=', 158, + '>', 191, + '?', 329, + '@', 326, + '[', 170, + '\\', 107, + ']', 171, + '^', 245, + '`', 306, + '{', 160, + '|', 247, + '}', 163, + '~', 282, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(4); - if (lookahead > '#') ADVANCE(325); + if (lookahead > '#') ADVANCE(324); END_STATE(); case 5: ADVANCE_MAP( - '!', 166, - '"', 200, - '#', 89, - '%', 264, - '&', 243, - '\'', 201, - '(', 167, - ')', 168, - '*', 155, - '+', 255, - ',', 163, - '-', 259, - '.', 196, - '/', 262, - '0', 314, - ':', 170, - '<', 271, - '=', 159, - '>', 192, - '?', 330, - '@', 327, - '[', 171, - '\\', 108, - '^', 246, - '`', 307, - '{', 162, - '|', 248, - '~', 283, + '!', 165, + '"', 199, + '#', 88, + '%', 263, + '&', 242, + '\'', 200, + '(', 166, + ')', 167, + '*', 154, + '+', 254, + ',', 162, + '-', 258, + '.', 195, + '/', 261, + '0', 313, + ':', 169, + '<', 270, + '=', 158, + '>', 191, + '?', 329, + '@', 326, + '[', 170, + '\\', 107, + '^', 245, + '`', 306, + '{', 161, + '|', 247, + '~', 282, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(325); + (lookahead < '{' || '~' < lookahead)) ADVANCE(324); END_STATE(); case 6: ADVANCE_MAP( - '!', 166, - '"', 200, - '#', 89, - '%', 264, - '&', 243, - '\'', 201, - '(', 167, - ')', 168, - '*', 155, - '+', 255, - ',', 163, - '-', 259, - '.', 197, - '/', 262, - '0', 314, - ':', 170, - ';', 169, - '<', 270, - '=', 159, - '>', 192, - '?', 330, - '@', 327, - '[', 171, - '\\', 108, - ']', 172, - '^', 246, - '`', 307, - '{', 162, - '|', 249, - '}', 164, + '!', 165, + '"', 199, + '#', 88, + '%', 263, + '&', 242, + '\'', 200, + '(', 166, + ')', 167, + '*', 154, + '+', 254, + ',', 162, + '-', 258, + '.', 196, + '/', 261, + '0', 313, + ':', 169, + ';', 168, + '<', 269, + '=', 158, + '>', 191, + '?', 329, + '@', 326, + '[', 170, + '\\', 107, + ']', 171, + '^', 245, + '`', 306, + '{', 161, + '|', 248, + '}', 163, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6); if (lookahead > '#' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(325); + (lookahead < '{' || '~' < lookahead)) ADVANCE(324); END_STATE(); case 7: ADVANCE_MAP( - '!', 166, - '"', 200, - '%', 264, - '&', 243, - '\'', 201, - '(', 167, - ')', 168, - '*', 155, - '+', 255, - ',', 163, - '-', 259, - '.', 195, - '/', 262, - ':', 170, - ';', 169, - '<', 270, - '=', 159, - '>', 192, - '?', 330, - '@', 327, - '[', 171, - '\\', 108, - ']', 172, - '^', 246, - '`', 307, - '{', 161, - '|', 248, - '}', 164, + '!', 165, + '"', 199, + '%', 263, + '&', 242, + '\'', 200, + '(', 166, + ')', 167, + '*', 154, + '+', 254, + ',', 162, + '-', 258, + '.', 194, + '/', 261, + ':', 169, + ';', 168, + '<', 269, + '=', 158, + '>', 191, + '?', 329, + '@', 326, + '[', 170, + '\\', 107, + ']', 171, + '^', 245, + '`', 306, + '{', 160, + '|', 247, + '}', 163, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(7); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(325); + (lookahead < '{' || '~' < lookahead)) ADVANCE(324); END_STATE(); case 8: ADVANCE_MAP( - '!', 166, - '%', 263, - '&', 244, - '(', 167, - ')', 168, - '*', 156, - '+', 254, - ',', 163, - '-', 258, - '.', 195, - '/', 261, - ':', 170, - ';', 169, - '<', 272, - '=', 158, - '>', 193, - '?', 331, - '[', 171, - '\\', 108, - ']', 172, - '^', 245, - '`', 307, - '{', 161, - '|', 251, - '}', 164, + '!', 165, + '%', 262, + '&', 243, + '(', 166, + ')', 167, + '*', 155, + '+', 253, + ',', 162, + '-', 257, + '.', 194, + '/', 260, + ':', 169, + ';', 168, + '<', 271, + '=', 157, + '>', 192, + '?', 330, + '[', 170, + '\\', 107, + ']', 171, + '^', 244, + '`', 306, + '{', 160, + '|', 250, + '}', 163, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(325); + (lookahead < '{' || '~' < lookahead)) ADVANCE(324); END_STATE(); case 9: ADVANCE_MAP( - '!', 166, - '%', 263, - '&', 244, - '(', 167, - ')', 168, - '*', 156, - '+', 254, - ',', 163, - '-', 258, - '.', 195, - '/', 261, - ':', 170, - ';', 169, - '<', 272, - '=', 84, - '>', 193, - '?', 38, - '[', 171, - '\\', 108, - ']', 172, - '^', 245, - '`', 307, - '{', 161, - '|', 250, - '}', 164, + '!', 165, + '%', 262, + '&', 243, + '(', 166, + ')', 167, + '*', 155, + '+', 253, + ',', 162, + '-', 257, + '.', 194, + '/', 260, + ':', 169, + ';', 168, + '<', 271, + '=', 83, + '>', 192, + '?', 37, + '[', 170, + '\\', 107, + ']', 171, + '^', 244, + '`', 306, + '{', 160, + '|', 249, + '}', 163, ); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(312); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(311); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(10); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '`' || '~' < lookahead)) ADVANCE(325); + (lookahead < '`' || '~' < lookahead)) ADVANCE(324); END_STATE(); case 10: ADVANCE_MAP( - '!', 166, - '%', 263, - '&', 244, - '(', 167, - ')', 168, - '*', 156, - '+', 254, - ',', 163, - '-', 258, - '.', 195, - '/', 261, - ':', 170, - ';', 169, - '<', 272, - '=', 84, - '>', 193, - '?', 38, - '[', 171, - '\\', 108, - ']', 172, - '^', 245, - '`', 307, - '{', 161, - '|', 250, - '}', 164, + '!', 165, + '%', 262, + '&', 243, + '(', 166, + ')', 167, + '*', 155, + '+', 253, + ',', 162, + '-', 257, + '.', 194, + '/', 260, + ':', 169, + ';', 168, + '<', 271, + '=', 83, + '>', 192, + '?', 37, + '[', 170, + '\\', 107, + ']', 171, + '^', 244, + '`', 306, + '{', 160, + '|', 249, + '}', 163, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(10); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(325); + (lookahead < '{' || '~' < lookahead)) ADVANCE(324); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(153); - if (lookahead == '\\') ADVANCE(107); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(326); + if (lookahead == '!') ADVANCE(152); + if (lookahead == '\\') ADVANCE(106); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(325); END_STATE(); case 12: ADVANCE_MAP( - '!', 165, - '"', 200, - '#', 89, - '&', 242, - '\'', 201, - '(', 167, - ')', 168, - '*', 154, - '+', 254, - ',', 163, - '-', 258, - '.', 37, - '/', 261, - '0', 314, - '<', 274, - '?', 328, - '@', 327, - '[', 171, - '\\', 108, - ']', 172, - '`', 307, - '{', 162, - '|', 247, - '~', 283, + '!', 164, + '"', 199, + '#', 88, + '&', 241, + '\'', 200, + '(', 166, + ')', 167, + '*', 153, + '+', 253, + ',', 162, + '-', 257, + '.', 36, + '/', 260, + '0', 313, + '<', 273, + '?', 327, + '@', 326, + '[', 170, + '\\', 107, + ']', 171, + '`', 306, + '{', 161, + '|', 246, + '~', 282, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(12); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(325); + (lookahead < '{' || '~' < lookahead)) ADVANCE(324); END_STATE(); case 13: ADVANCE_MAP( - '!', 165, - '"', 200, - '#', 89, - '&', 242, - '\'', 201, - '(', 167, - ')', 168, - '*', 154, - '+', 253, - ',', 163, - '-', 257, - '.', 196, - '/', 31, - '0', 314, - ':', 170, - ';', 169, - '<', 267, - '=', 160, - '>', 191, - '?', 328, - '@', 327, - '[', 171, - '\\', 108, - ']', 172, - '`', 307, - '{', 162, - '|', 252, - '}', 164, + '!', 164, + '"', 199, + '#', 88, + '&', 241, + '\'', 200, + '(', 166, + ')', 167, + '*', 153, + '+', 252, + ',', 162, + '-', 256, + '.', 195, + '/', 30, + '0', 313, + ':', 169, + ';', 168, + '<', 266, + '=', 159, + '>', 190, + '?', 327, + '@', 326, + '[', 170, + '\\', 107, + ']', 171, + '`', 306, + '{', 161, + '|', 251, + '}', 163, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(13); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(325); + (lookahead < '{' || '~' < lookahead)) ADVANCE(324); END_STATE(); case 14: ADVANCE_MAP( - '!', 165, - '"', 200, - '#', 89, - '&', 242, - '\'', 201, - '(', 167, - ')', 168, - '*', 154, - '+', 253, - ',', 163, - '-', 257, - '.', 196, - '/', 31, - '0', 314, - ':', 170, - ';', 169, - '<', 267, - '=', 160, - '>', 191, - '?', 328, - '@', 327, - '[', 171, - '\\', 108, - ']', 172, - '{', 161, - '|', 252, - '}', 164, + '!', 164, + '"', 199, + '#', 88, + '&', 241, + '\'', 200, + '(', 166, + ')', 167, + '*', 153, + '+', 252, + ',', 162, + '-', 256, + '.', 195, + '/', 30, + '0', 313, + ':', 169, + ';', 168, + '<', 266, + '=', 159, + '>', 190, + '?', 327, + '@', 326, + '[', 170, + '\\', 107, + ']', 171, + '{', 160, + '|', 251, + '}', 163, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(325); + (lookahead < '{' || '~' < lookahead)) ADVANCE(324); END_STATE(); case 15: ADVANCE_MAP( - '!', 165, - '"', 200, - '#', 89, - '&', 242, - '\'', 201, - '(', 167, - ')', 168, - '+', 254, - ',', 163, - '-', 258, + '"', 199, + '#', 88, + '&', 241, + '\'', 200, + '(', 166, + ')', 167, + '*', 153, + ',', 162, '.', 196, - '/', 261, - '0', 314, - ':', 170, - ';', 169, - '<', 274, - '=', 160, - '>', 191, - '?', 329, - '@', 327, - '[', 171, - '\\', 108, - ']', 172, - '`', 307, - '{', 161, - '|', 252, - '}', 164, - '~', 283, + '/', 30, + '0', 313, + ':', 169, + ';', 168, + '<', 266, + '=', 159, + '>', 190, + '?', 328, + '@', 326, + '[', 170, + '\\', 107, + ']', 171, + '`', 306, + '{', 160, + '|', 251, + '}', 163, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(15); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(325); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(324); END_STATE(); case 16: ADVANCE_MAP( - '"', 200, - '&', 242, - '\'', 201, - '(', 167, - ')', 168, - '*', 154, - ',', 163, - '.', 195, + '"', 199, + '&', 241, + '\'', 200, + '(', 166, + '*', 153, + '+', 252, + '-', 256, + '.', 123, '/', 31, - ':', 170, - ';', 169, - '<', 267, - '=', 160, - '>', 191, - '?', 329, - '[', 171, - '\\', 108, - ']', 172, - '`', 307, + '0', 313, + '<', 266, + '>', 190, + '?', 327, + '[', 170, + '\\', 107, + '`', 306, '{', 161, - '|', 252, - '}', 164, + '|', 246, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(325); - END_STATE(); - case 17: - ADVANCE_MAP( - '"', 200, - '&', 242, - '\'', 201, - '(', 167, - '*', 154, - '+', 253, - '-', 257, - '.', 124, - '/', 32, - '0', 314, - '<', 267, - '>', 191, - '?', 328, - '[', 171, - '\\', 108, - '`', 307, - '{', 162, - '|', 247, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(17); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(323); - if (lookahead > '~') ADVANCE(325); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(322); + if (lookahead > '~') ADVANCE(324); END_STATE(); - case 18: - if (lookahead == '"') ADVANCE(200); + case 17: + if (lookahead == '"') ADVANCE(199); if (lookahead == '&') ADVANCE(22); - if (lookahead == '/') ADVANCE(203); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(202); - if (lookahead != 0) ADVANCE(204); + if (lookahead == '/') ADVANCE(202); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(201); + if (lookahead != 0) ADVANCE(203); + END_STATE(); + case 18: + if (lookahead == '"') ADVANCE(199); + if (lookahead == '/') ADVANCE(30); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(18); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(200); - if (lookahead == '/') ADVANCE(31); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); + if (lookahead == '"') ADVANCE(199); + if (lookahead == '/') ADVANCE(285); + if (lookahead == '\\') ADVANCE(108); + if (lookahead == '\n' || + lookahead == '\r') SKIP(18); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(288); + if (lookahead != 0) ADVANCE(290); END_STATE(); case 20: - if (lookahead == '"') ADVANCE(200); - if (lookahead == '/') ADVANCE(286); - if (lookahead == '\\') ADVANCE(109); - if (lookahead == '\n' || - lookahead == '\r') SKIP(19); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(289); - if (lookahead != 0) ADVANCE(291); + if (lookahead == '#') ADVANCE(119); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); END_STATE(); case 21: - if (lookahead == '#') ADVANCE(120); + if (lookahead == '#') ADVANCE(119); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); + if (lookahead != 0) ADVANCE(209); END_STATE(); case 22: - if (lookahead == '#') ADVANCE(120); + if (lookahead == '#') ADVANCE(119); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); - if (lookahead != 0) ADVANCE(204); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); + if (lookahead != 0) ADVANCE(203); END_STATE(); case 23: - if (lookahead == '#') ADVANCE(120); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); - if (lookahead != 0) ADVANCE(210); + if (lookahead == '$') ADVANCE(109); + if (lookahead == '/') ADVANCE(30); + if (lookahead == '\\') ADVANCE(108); + if (lookahead == '`') ADVANCE(306); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); END_STATE(); case 24: - if (lookahead == '$') ADVANCE(110); - if (lookahead == '/') ADVANCE(31); - if (lookahead == '\\') ADVANCE(109); - if (lookahead == '`') ADVANCE(307); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(25); + if (lookahead == '$') ADVANCE(109); + if (lookahead == '/') ADVANCE(30); + if (lookahead == '`') ADVANCE(306); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); END_STATE(); case 25: - if (lookahead == '$') ADVANCE(110); - if (lookahead == '/') ADVANCE(31); - if (lookahead == '`') ADVANCE(307); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(25); - END_STATE(); - case 26: ADVANCE_MAP( - '&', 242, - '(', 167, - '+', 87, - ',', 163, - '-', 88, - '.', 195, - '/', 32, - ':', 170, - '<', 267, - '=', 157, - '>', 191, - '?', 44, - '[', 171, - '\\', 108, - '`', 307, - '{', 161, - '|', 247, + '&', 241, + '(', 166, + '+', 86, + ',', 162, + '-', 87, + '.', 194, + '/', 31, + ':', 169, + '<', 266, + '=', 156, + '>', 190, + '?', 43, + '[', 170, + '\\', 107, + '`', 306, + '{', 160, + '|', 246, ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(26); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(25); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(323); - if (lookahead > '~') ADVANCE(325); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(322); + if (lookahead > '~') ADVANCE(324); END_STATE(); - case 27: - if (lookahead == '&') ADVANCE(21); - if (lookahead == '/') ADVANCE(184); - if (lookahead == '<') ADVANCE(268); - if (lookahead == '{') ADVANCE(161); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(27); + case 26: + if (lookahead == '&') ADVANCE(20); + if (lookahead == '/') ADVANCE(183); + if (lookahead == '<') ADVANCE(267); + if (lookahead == '{') ADVANCE(160); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(26); if (lookahead != 0 && lookahead != '>' && - lookahead != '}') ADVANCE(188); + lookahead != '}') ADVANCE(187); + END_STATE(); + case 27: + if (lookahead == '&') ADVANCE(21); + if (lookahead == '\'') ADVANCE(200); + if (lookahead == '/') ADVANCE(208); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(207); + if (lookahead != 0) ADVANCE(209); END_STATE(); case 28: - if (lookahead == '&') ADVANCE(23); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '/') ADVANCE(209); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(208); - if (lookahead != 0) ADVANCE(210); + if (lookahead == '\'') ADVANCE(200); + if (lookahead == '/') ADVANCE(30); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(28); END_STATE(); case 29: - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '/') ADVANCE(31); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(29); + if (lookahead == '\'') ADVANCE(200); + if (lookahead == '/') ADVANCE(291); + if (lookahead == '\\') ADVANCE(108); + if (lookahead == '\n' || + lookahead == '\r') SKIP(28); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(294); + if (lookahead != 0) ADVANCE(296); END_STATE(); case 30: - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '/') ADVANCE(292); - if (lookahead == '\\') ADVANCE(109); - if (lookahead == '\n' || - lookahead == '\r') SKIP(29); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(295); - if (lookahead != 0) ADVANCE(297); + if (lookahead == '*') ADVANCE(33); + if (lookahead == '/') ADVANCE(305); END_STATE(); case 31: - if (lookahead == '*') ADVANCE(34); - if (lookahead == '/') ADVANCE(306); + if (lookahead == '*') ADVANCE(33); + if (lookahead == '/') ADVANCE(305); + if (lookahead == '>') ADVANCE(198); END_STATE(); case 32: - if (lookahead == '*') ADVANCE(34); - if (lookahead == '/') ADVANCE(306); - if (lookahead == '>') ADVANCE(199); + if (lookahead == '*') ADVANCE(32); + if (lookahead == '/') ADVANCE(302); + if (lookahead != 0) ADVANCE(33); END_STATE(); case 33: - if (lookahead == '*') ADVANCE(33); - if (lookahead == '/') ADVANCE(303); - if (lookahead != 0) ADVANCE(34); + if (lookahead == '*') ADVANCE(32); + if (lookahead != 0) ADVANCE(33); END_STATE(); case 34: - if (lookahead == '*') ADVANCE(33); - if (lookahead != 0) ADVANCE(34); + if (lookahead == '*') ADVANCE(210); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); + if (lookahead != 0) ADVANCE(211); END_STATE(); case 35: - if (lookahead == '*') ADVANCE(205); + if (lookahead == '*') ADVANCE(204); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); - if (lookahead != 0) ADVANCE(206); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); + if (lookahead != 0) ADVANCE(205); END_STATE(); case 36: - if (lookahead == '*') ADVANCE(211); - if (lookahead == '#' || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); - if (lookahead != 0) ADVANCE(212); + if (lookahead == '.') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(319); END_STATE(); case 37: - if (lookahead == '.') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); + if (lookahead == '.') ADVANCE(214); + if (lookahead == '?') ADVANCE(280); END_STATE(); case 38: - if (lookahead == '.') ADVANCE(215); - if (lookahead == '?') ADVANCE(281); + if (lookahead == '.') ADVANCE(230); END_STATE(); case 39: - if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(308); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(40); END_STATE(); case 40: - if (lookahead == '/') ADVANCE(309); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(41); + if (lookahead == '/') ADVANCE(30); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(40); END_STATE(); case 41: - if (lookahead == '/') ADVANCE(31); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(41); + if (lookahead == ':') ADVANCE(332); END_STATE(); case 42: - if (lookahead == ':') ADVANCE(333); + if (lookahead == ':') ADVANCE(331); END_STATE(); case 43: - if (lookahead == ':') ADVANCE(332); + if (lookahead == ':') ADVANCE(333); END_STATE(); case 44: - if (lookahead == ':') ADVANCE(334); + if (lookahead == ';') ADVANCE(189); END_STATE(); case 45: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); END_STATE(); case 46: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45); END_STATE(); case 47: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); END_STATE(); case 48: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); END_STATE(); case 49: - if (lookahead == ';') ADVANCE(190); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ';') ADVANCE(189); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 50: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); case 51: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); case 52: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); END_STATE(); case 53: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); END_STATE(); case 54: - if (lookahead == ';') ADVANCE(190); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53); + if (lookahead == ';') ADVANCE(189); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); END_STATE(); case 55: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); END_STATE(); case 56: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); END_STATE(); case 57: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); END_STATE(); case 58: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 59: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); case 60: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); END_STATE(); case 61: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); END_STATE(); case 62: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); END_STATE(); case 63: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); END_STATE(); case 64: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 65: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); END_STATE(); case 66: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(65); END_STATE(); case 67: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 68: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(67); END_STATE(); case 69: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); END_STATE(); case 70: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(69); END_STATE(); case 71: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); END_STATE(); case 72: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); END_STATE(); case 73: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); END_STATE(); case 74: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(73); END_STATE(); case 75: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); END_STATE(); case 76: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); END_STATE(); case 77: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); END_STATE(); case 78: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(77); END_STATE(); case 79: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); END_STATE(); case 80: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(79); END_STATE(); case 81: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 82: - if (lookahead == ';') ADVANCE(190); + if (lookahead == ';') ADVANCE(189); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(81); END_STATE(); case 83: - if (lookahead == ';') ADVANCE(190); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); + if (lookahead == '=') ADVANCE(275); END_STATE(); case 84: - if (lookahead == '=') ADVANCE(276); + if (lookahead == '>') ADVANCE(176); END_STATE(); case 85: if (lookahead == '>') ADVANCE(177); END_STATE(); case 86: - if (lookahead == '>') ADVANCE(178); + if (lookahead == '?') ADVANCE(41); END_STATE(); case 87: if (lookahead == '?') ADVANCE(42); END_STATE(); case 88: - if (lookahead == '?') ADVANCE(43); + if (lookahead == '\\') ADVANCE(106); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(325); END_STATE(); case 89: - if (lookahead == '\\') ADVANCE(107); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(326); + if (lookahead == '\\') ADVANCE(146); + if (lookahead == ']') ADVANCE(310); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(89); END_STATE(); case 90: - if (lookahead == '\\') ADVANCE(147); - if (lookahead == ']') ADVANCE(311); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(90); + if (lookahead == 'a') ADVANCE(102); END_STATE(); case 91: if (lookahead == 'a') ADVANCE(103); END_STATE(); case 92: - if (lookahead == 'a') ADVANCE(104); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(99); + if (lookahead == 'e') ADVANCE(84); END_STATE(); case 94: if (lookahead == 'e') ADVANCE(85); END_STATE(); case 95: - if (lookahead == 'e') ADVANCE(86); + if (lookahead == 'e') ADVANCE(99); END_STATE(); case 96: - if (lookahead == 'e') ADVANCE(100); + if (lookahead == 'l') ADVANCE(90); END_STATE(); case 97: if (lookahead == 'l') ADVANCE(91); END_STATE(); case 98: - if (lookahead == 'l') ADVANCE(92); + if (lookahead == 'm') ADVANCE(100); END_STATE(); case 99: if (lookahead == 'm') ADVANCE(101); END_STATE(); case 100: - if (lookahead == 'm') ADVANCE(102); + if (lookahead == 'p') ADVANCE(96); END_STATE(); case 101: if (lookahead == 'p') ADVANCE(97); END_STATE(); case 102: - if (lookahead == 'p') ADVANCE(98); + if (lookahead == 't') ADVANCE(93); END_STATE(); case 103: if (lookahead == 't') ADVANCE(94); @@ -11558,35 +13278,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(95); END_STATE(); case 105: - if (lookahead == 't') ADVANCE(96); + if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'x') ADVANCE(136); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(301); + if (lookahead != 0) ADVANCE(297); END_STATE(); case 106: if (lookahead == 'u') ADVANCE(111); - if (lookahead == 'x') ADVANCE(137); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(300); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(302); - if (lookahead != 0) ADVANCE(298); END_STATE(); case 107: if (lookahead == 'u') ADVANCE(112); END_STATE(); case 108: if (lookahead == 'u') ADVANCE(113); + if (lookahead == 'x') ADVANCE(136); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(301); + if (lookahead != 0) ADVANCE(297); END_STATE(); case 109: - if (lookahead == 'u') ADVANCE(114); - if (lookahead == 'x') ADVANCE(137); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(300); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(302); - if (lookahead != 0) ADVANCE(298); + if (lookahead == '{') ADVANCE(307); END_STATE(); case 110: - if (lookahead == '{') ADVANCE(308); + if (lookahead == '{') ADVANCE(130); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); END_STATE(); case 111: - if (lookahead == '{') ADVANCE(131); + if (lookahead == '{') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(142); @@ -11598,16 +13321,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); END_STATE(); case 113: - if (lookahead == '{') ADVANCE(136); + if (lookahead == '{') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(133); END_STATE(); case 114: - if (lookahead == '{') ADVANCE(138); + if (lookahead == '}') ADVANCE(324); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); END_STATE(); case 115: if (lookahead == '}') ADVANCE(325); @@ -11616,7 +13339,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); END_STATE(); case 116: - if (lookahead == '}') ADVANCE(326); + if (lookahead == '}') ADVANCE(297); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); @@ -11628,39 +13351,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 118: - if (lookahead == '}') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + if (lookahead == '+' || + lookahead == '-') ADVANCE(125); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); END_STATE(); case 119: - if (lookahead == '+' || - lookahead == '-') ADVANCE(126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); END_STATE(); case 120: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == '0' || + lookahead == '1') ADVANCE(316); END_STATE(); case 121: - if (lookahead == '0' || - lookahead == '1') ADVANCE(317); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(317); END_STATE(); case 122: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(318); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(314); END_STATE(); case 123: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(319); END_STATE(); case 124: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); END_STATE(); case 125: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); END_STATE(); case 126: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(324); END_STATE(); case 127: if (('0' <= lookahead && lookahead <= '9') || @@ -11670,72 +13392,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 128: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(326); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(297); END_STATE(); case 129: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(298); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); END_STATE(); case 130: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(319); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 131: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(298); END_STATE(); case 132: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(299); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53); END_STATE(); case 133: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(136); END_STATE(); case 134: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); END_STATE(); case 135: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); END_STATE(); case 136: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); END_STATE(); case 137: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); END_STATE(); case 138: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(131); END_STATE(); case 139: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); END_STATE(); case 140: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(126); END_STATE(); case 141: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); END_STATE(); case 142: if (('0' <= lookahead && lookahead <= '9') || @@ -11748,1151 +13470,1146 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140); END_STATE(); case 144: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); + if (lookahead != 0 && + lookahead != '#' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(209); END_STATE(); case 145: if (lookahead != 0 && lookahead != '#' && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(204); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(203); END_STATE(); case 146: if (lookahead != 0 && - lookahead != '#' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(210); + lookahead != '\n') ADVANCE(89); END_STATE(); case 147: if (lookahead != 0 && - lookahead != '\n') ADVANCE(90); + lookahead != '\n') ADVANCE(310); END_STATE(); case 148: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(311); + if (eof) ADVANCE(151); + ADVANCE_MAP( + '!', 165, + '"', 199, + '#', 11, + '$', 323, + '%', 263, + '&', 242, + '\'', 200, + '(', 166, + ')', 167, + '*', 154, + '+', 255, + ',', 162, + '-', 259, + '.', 195, + '/', 261, + '0', 313, + ':', 169, + ';', 168, + '<', 268, + '=', 158, + '>', 191, + '?', 329, + '@', 326, + '[', 170, + '\\', 107, + ']', 171, + '^', 245, + '`', 306, + '{', 161, + '|', 248, + '}', 163, + '~', 282, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(148); + if (lookahead > '@') ADVANCE(324); END_STATE(); case 149: - if (eof) ADVANCE(152); + if (eof) ADVANCE(151); ADVANCE_MAP( - '!', 166, - '"', 200, - '#', 11, - '$', 324, - '%', 264, + '!', 165, + '"', 199, + '#', 88, + '%', 262, '&', 243, - '\'', 201, - '(', 167, - ')', 168, + '\'', 200, + '(', 166, + ')', 167, '*', 155, - '+', 256, - ',', 163, - '-', 260, + '+', 253, + ',', 162, + '-', 257, '.', 196, - '/', 262, - '0', 314, - ':', 170, - ';', 169, - '<', 269, - '=', 159, + '/', 260, + '0', 313, + ':', 169, + ';', 168, + '<', 272, + '=', 157, '>', 192, - '?', 330, - '@', 327, - '[', 171, - '\\', 108, - ']', 172, - '^', 246, - '`', 307, - '{', 162, + '?', 37, + '@', 326, + '[', 170, + '\\', 107, + ']', 171, + '^', 244, + '`', 306, + '{', 160, '|', 249, - '}', 164, - '~', 283, + '}', 163, + '~', 282, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(149); - if (lookahead > '@') ADVANCE(325); + if (lookahead > '#') ADVANCE(324); END_STATE(); case 150: - if (eof) ADVANCE(152); + if (eof) ADVANCE(151); ADVANCE_MAP( - '!', 166, - '"', 200, - '#', 89, - '%', 263, - '&', 244, - '\'', 201, - '(', 167, - ')', 168, - '*', 156, - '+', 254, - ',', 163, - '-', 258, - '.', 197, - '/', 261, - '0', 314, - ':', 170, - ';', 169, + '!', 164, + '"', 199, + '#', 11, + '&', 241, + '\'', 200, + '(', 166, + ')', 167, + '*', 153, + '+', 253, + ',', 162, + '-', 257, + '.', 195, + '/', 260, + '0', 313, + ':', 169, + ';', 168, '<', 273, - '=', 158, - '>', 193, - '?', 38, - '@', 327, - '[', 171, - '\\', 108, - ']', 172, - '^', 245, - '`', 307, - '{', 161, - '|', 250, - '}', 164, - '~', 283, + '=', 159, + '>', 190, + '?', 327, + '@', 326, + '[', 170, + '\\', 107, + ']', 171, + '`', 306, + '{', 160, + '|', 251, + '}', 163, + '~', 282, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(150); - if (lookahead > '#') ADVANCE(325); - END_STATE(); - case 151: - if (eof) ADVANCE(152); - ADVANCE_MAP( - '!', 165, - '"', 200, - '#', 11, - '&', 242, - '\'', 201, - '(', 167, - ')', 168, - '*', 154, - '+', 254, - ',', 163, - '-', 258, - '.', 196, - '/', 261, - '0', 314, - ':', 170, - ';', 169, - '<', 274, - '=', 160, - '>', 191, - '?', 328, - '@', 327, - '[', 171, - '\\', 108, - ']', 172, - '`', 307, - '{', 161, - '|', 252, - '}', 164, - '~', 283, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(151); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(325); + (lookahead < '[' || '^' < lookahead)) ADVANCE(324); END_STATE(); - case 152: + case 151: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 153: + case 152: ACCEPT_TOKEN(sym_hash_bang_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(153); + lookahead != '\n') ADVANCE(152); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 154: ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '=') ADVANCE(217); END_STATE(); case 155: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(266); - if (lookahead == '=') ADVANCE(218); + if (lookahead == '*') ADVANCE(264); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(265); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(275); END_STATE(); case 158: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(276); + if (lookahead == '=') ADVANCE(275); + if (lookahead == '>') ADVANCE(213); END_STATE(); case 159: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(276); - if (lookahead == '>') ADVANCE(214); + if (lookahead == '>') ADVANCE(213); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(214); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 161: ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '|') ADVANCE(334); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(335); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 165: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(277); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(278); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(sym__glimmer_template_content); END_STATE(); case 173: ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == '*') ADVANCE(33); + if (lookahead == '/') ADVANCE(305); END_STATE(); case 174: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '*') ADVANCE(34); - if (lookahead == '/') ADVANCE(306); - END_STATE(); - case 175: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '<') ADVANCE(176); + if (lookahead == '/') ADVANCE(173); + if (lookahead == '<') ADVANCE(175); if ((set_contains(extras_character_set_1, 10, lookahead)) && - lookahead != '\n') ADVANCE(175); + lookahead != '\n') ADVANCE(174); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(173); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(172); END_STATE(); - case 176: + case 175: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(105); + if (lookahead == '/') ADVANCE(104); END_STATE(); - case 177: + case 176: ACCEPT_TOKEN(sym_glimmer_opening_tag); END_STATE(); - case 178: + case 177: ACCEPT_TOKEN(sym_glimmer_closing_tag); END_STATE(); - case 179: + case 178: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '*') ADVANCE(183); - if (lookahead == '/') ADVANCE(180); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(181); + if (lookahead == '\n') ADVANCE(187); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '/') ADVANCE(179); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(180); if (lookahead != 0 && lookahead != '&' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(181); + lookahead != '}') ADVANCE(180); END_STATE(); - case 180: + case 179: ACCEPT_TOKEN(aux_sym_jsx_text_token1); ADVANCE_MAP( - '\n', 188, - '\r', 181, - 0x2028, 181, - 0x2029, 181, - '&', 306, - '<', 306, - '>', 306, - '{', 306, - '}', 306, + '\n', 187, + '\r', 180, + 0x2028, 180, + 0x2029, 180, + '&', 305, + '<', 305, + '>', 305, + '{', 305, + '}', 305, ); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(180); - if (lookahead != 0) ADVANCE(180); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(179); + if (lookahead != 0) ADVANCE(179); END_STATE(); - case 181: + case 180: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == '\n') ADVANCE(188); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(181); + if (lookahead == '\n') ADVANCE(187); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(180); if (lookahead != 0 && lookahead != '&' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(181); + lookahead != '}') ADVANCE(180); END_STATE(); - case 182: + case 181: ACCEPT_TOKEN(aux_sym_jsx_text_token1); ADVANCE_MAP( - '\n', 186, - '*', 182, - '/', 181, - '&', 34, - '<', 34, - '>', 34, - '{', 34, - '}', 34, + '\n', 185, + '*', 181, + '/', 180, + '&', 33, + '<', 33, + '>', 33, + '{', 33, + '}', 33, ); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(183); - if (lookahead != 0) ADVANCE(183); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(182); + if (lookahead != 0) ADVANCE(182); END_STATE(); - case 183: + case 182: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(182); + if (lookahead == '\n') ADVANCE(185); + if (lookahead == '*') ADVANCE(181); if (lookahead == '&' || lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(34); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(183); - if (lookahead != 0) ADVANCE(183); + lookahead == '}') ADVANCE(33); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(182); + if (lookahead != 0) ADVANCE(182); END_STATE(); - case 184: + case 183: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == '*') ADVANCE(186); - if (lookahead == '/') ADVANCE(187); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(188); + if (lookahead == '*') ADVANCE(185); + if (lookahead == '/') ADVANCE(186); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(187); if (lookahead != 0 && lookahead != '&' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(188); + lookahead != '}') ADVANCE(187); END_STATE(); - case 185: + case 184: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '/') ADVANCE(188); + if (lookahead == '*') ADVANCE(184); + if (lookahead == '/') ADVANCE(187); if (lookahead == '&' || lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(34); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(186); - if (lookahead != 0) ADVANCE(186); + lookahead == '}') ADVANCE(33); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(185); + if (lookahead != 0) ADVANCE(185); END_STATE(); - case 186: + case 185: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == '*') ADVANCE(185); + if (lookahead == '*') ADVANCE(184); if (lookahead == '&' || lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(34); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(186); - if (lookahead != 0) ADVANCE(186); + lookahead == '}') ADVANCE(33); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(185); + if (lookahead != 0) ADVANCE(185); END_STATE(); - case 187: + case 186: ACCEPT_TOKEN(aux_sym_jsx_text_token1); ADVANCE_MAP( - '\n', 188, - '\r', 188, - 0x2028, 188, - 0x2029, 188, - '&', 306, - '<', 306, - '>', 306, - '{', 306, - '}', 306, + '\n', 187, + '\r', 187, + 0x2028, 187, + 0x2029, 187, + '&', 305, + '<', 305, + '>', 305, + '{', 305, + '}', 305, ); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(187); - if (lookahead != 0) ADVANCE(187); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(186); + if (lookahead != 0) ADVANCE(186); END_STATE(); - case 188: + case 187: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(188); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(187); if (lookahead != 0 && lookahead != '&' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(188); + lookahead != '}') ADVANCE(187); END_STATE(); - case 189: + case 188: ACCEPT_TOKEN(aux_sym_jsx_text_token2); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '/') ADVANCE(178); if ((set_contains(extras_character_set_1, 10, lookahead)) && - lookahead != '\n') ADVANCE(189); + lookahead != '\n') ADVANCE(188); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '&' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(181); + lookahead != '}') ADVANCE(180); END_STATE(); - case 190: + case 189: ACCEPT_TOKEN(sym_html_character_reference); END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); case 191: ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(279); + if (lookahead == '>') ADVANCE(235); END_STATE(); case 192: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(280); + if (lookahead == '=') ADVANCE(279); if (lookahead == '>') ADVANCE(236); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(280); - if (lookahead == '>') ADVANCE(237); - END_STATE(); - case 194: ACCEPT_TOKEN(sym_jsx_identifier); if (lookahead == '$' || lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(193); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 195: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(319); END_STATE(); case 196: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(319); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); - END_STATE(); - case 198: ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); - case 199: + case 198: ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); - case 200: + case 199: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 201: + case 200: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 202: + case 201: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); if (lookahead == '&') ADVANCE(22); - if (lookahead == '/') ADVANCE(203); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(202); + if (lookahead == '/') ADVANCE(202); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(201); if (lookahead != 0 && - lookahead != '"') ADVANCE(204); + lookahead != '"') ADVANCE(203); END_STATE(); - case 203: + case 202: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); if (lookahead == '&') ADVANCE(145); - if (lookahead == '*') ADVANCE(206); - if (lookahead == '/') ADVANCE(207); + if (lookahead == '*') ADVANCE(205); + if (lookahead == '/') ADVANCE(206); if (lookahead != 0 && - lookahead != '"') ADVANCE(204); + lookahead != '"') ADVANCE(203); END_STATE(); - case 204: + case 203: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); if (lookahead == '&') ADVANCE(145); if (lookahead != 0 && - lookahead != '"') ADVANCE(204); + lookahead != '"') ADVANCE(203); END_STATE(); - case 205: + case 204: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); if (lookahead == '&') ADVANCE(35); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '/') ADVANCE(204); + if (lookahead == '*') ADVANCE(204); + if (lookahead == '/') ADVANCE(203); if (lookahead != 0 && - lookahead != '"') ADVANCE(206); + lookahead != '"') ADVANCE(205); END_STATE(); - case 206: + case 205: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); if (lookahead == '&') ADVANCE(35); - if (lookahead == '*') ADVANCE(205); + if (lookahead == '*') ADVANCE(204); if (lookahead != 0 && - lookahead != '"') ADVANCE(206); + lookahead != '"') ADVANCE(205); END_STATE(); - case 207: + case 206: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); if (lookahead == '&') ADVANCE(304); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(204); + lookahead == 0x2029) ADVANCE(203); + if (lookahead != 0 && + lookahead != '"') ADVANCE(206); + END_STATE(); + case 207: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(21); + if (lookahead == '/') ADVANCE(208); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(207); if (lookahead != 0 && - lookahead != '"') ADVANCE(207); + lookahead != '&' && + lookahead != '\'') ADVANCE(209); END_STATE(); case 208: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(23); - if (lookahead == '/') ADVANCE(209); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(208); + if (lookahead == '&') ADVANCE(144); + if (lookahead == '*') ADVANCE(211); + if (lookahead == '/') ADVANCE(212); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(210); + lookahead != '\'') ADVANCE(209); END_STATE(); case 209: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(146); - if (lookahead == '*') ADVANCE(212); - if (lookahead == '/') ADVANCE(213); + if (lookahead == '&') ADVANCE(144); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(210); + lookahead != '\'') ADVANCE(209); END_STATE(); case 210: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(146); + if (lookahead == '&') ADVANCE(34); + if (lookahead == '*') ADVANCE(210); + if (lookahead == '/') ADVANCE(209); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(210); + lookahead != '\'') ADVANCE(211); END_STATE(); case 211: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(36); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '/') ADVANCE(210); + if (lookahead == '&') ADVANCE(34); + if (lookahead == '*') ADVANCE(210); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(212); + lookahead != '\'') ADVANCE(211); END_STATE(); case 212: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(36); - if (lookahead == '*') ADVANCE(211); - if (lookahead != 0 && - lookahead != '&' && - lookahead != '\'') ADVANCE(212); - END_STATE(); - case 213: - ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(305); + if (lookahead == '&') ADVANCE(303); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(210); + lookahead == 0x2029) ADVANCE(209); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(213); + lookahead != '\'') ADVANCE(212); END_STATE(); - case 214: + case 213: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 215: + case 214: ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); - case 216: + case 215: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 217: + case 216: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 218: + case 217: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 219: + case 218: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 220: + case 219: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 221: + case 220: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 222: + case 221: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 223: + case 222: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 224: + case 223: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 225: + case 224: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 226: + case 225: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 227: + case 226: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 228: + case 227: ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); - case 229: + case 228: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); - case 230: + case 229: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 231: + case 230: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); + case 231: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); case 232: ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(227); END_STATE(); case 233: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(228); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 234: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(228); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(229); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '>') ADVANCE(238); END_STATE(); case 236: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(239); + if (lookahead == '>') ADVANCE(237); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(238); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); case 238: ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(224); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 240: ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(225); END_STATE(); case 241: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(226); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 242: ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(232); + if (lookahead == '=') ADVANCE(221); END_STATE(); case 243: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(233); - if (lookahead == '=') ADVANCE(222); + if (lookahead == '&') ADVANCE(231); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(232); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 245: ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(220); END_STATE(); case 246: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(221); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 247: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(222); + if (lookahead == '|') ADVANCE(234); END_STATE(); case 248: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '|') ADVANCE(235); + if (lookahead == '=') ADVANCE(222); + if (lookahead == '|') ADVANCE(234); + if (lookahead == '}') ADVANCE(335); END_STATE(); case 249: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '|') ADVANCE(235); - if (lookahead == '}') ADVANCE(336); + if (lookahead == '|') ADVANCE(233); END_STATE(); case 250: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(234); + if (lookahead == '|') ADVANCE(233); + if (lookahead == '}') ADVANCE(335); END_STATE(); case 251: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(234); - if (lookahead == '}') ADVANCE(336); + if (lookahead == '}') ADVANCE(335); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '}') ADVANCE(336); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 253: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(283); END_STATE(); case 254: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(284); + if (lookahead == '+') ADVANCE(283); + if (lookahead == '=') ADVANCE(215); END_STATE(); case 255: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(284); - if (lookahead == '=') ADVANCE(216); + if (lookahead == '+') ADVANCE(283); + if (lookahead == '=') ADVANCE(215); + if (lookahead == '?') ADVANCE(41); END_STATE(); case 256: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(284); - if (lookahead == '=') ADVANCE(216); - if (lookahead == '?') ADVANCE(42); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 257: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(284); END_STATE(); case 258: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(285); + if (lookahead == '-') ADVANCE(284); + if (lookahead == '=') ADVANCE(216); END_STATE(); case 259: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(285); - if (lookahead == '=') ADVANCE(217); + if (lookahead == '-') ADVANCE(284); + if (lookahead == '=') ADVANCE(216); + if (lookahead == '?') ADVANCE(42); END_STATE(); case 260: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(285); - if (lookahead == '=') ADVANCE(217); - if (lookahead == '?') ADVANCE(43); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(33); + if (lookahead == '/') ADVANCE(305); END_STATE(); case 261: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(34); - if (lookahead == '/') ADVANCE(306); + if (lookahead == '*') ADVANCE(33); + if (lookahead == '/') ADVANCE(305); + if (lookahead == '=') ADVANCE(218); END_STATE(); case 262: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(34); - if (lookahead == '/') ADVANCE(306); - if (lookahead == '=') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 263: ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(219); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(220); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 265: ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(226); END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(227); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 267: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(197); END_STATE(); case 268: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(198); + if (lookahead == '/') ADVANCE(197); + if (lookahead == '<') ADVANCE(240); + if (lookahead == '=') ADVANCE(274); + if (lookahead == 't') ADVANCE(92); END_STATE(); case 269: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(198); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(275); - if (lookahead == 't') ADVANCE(93); + if (lookahead == '<') ADVANCE(240); + if (lookahead == '=') ADVANCE(274); END_STATE(); case 270: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(275); + if (lookahead == '<') ADVANCE(240); + if (lookahead == '=') ADVANCE(274); + if (lookahead == 't') ADVANCE(92); END_STATE(); case 271: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(275); - if (lookahead == 't') ADVANCE(93); + if (lookahead == '<') ADVANCE(239); + if (lookahead == '=') ADVANCE(274); END_STATE(); case 272: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(275); + if (lookahead == '<') ADVANCE(239); + if (lookahead == '=') ADVANCE(274); + if (lookahead == 't') ADVANCE(92); END_STATE(); case 273: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(275); - if (lookahead == 't') ADVANCE(93); + if (lookahead == 't') ADVANCE(92); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == 't') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(276); END_STATE(); case 276: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(277); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(278); END_STATE(); case 278: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(279); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 279: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 280: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 281: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(229); END_STATE(); case 282: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(230); - END_STATE(); - case 283: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 284: + case 283: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 285: + case 284: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 286: + case 285: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(288); - if (lookahead == '/') ADVANCE(290); + if (lookahead == '*') ADVANCE(287); + if (lookahead == '/') ADVANCE(289); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(291); + lookahead != '\\') ADVANCE(290); END_STATE(); - case 287: + case 286: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(287); - if (lookahead == '/') ADVANCE(291); + if (lookahead == '*') ADVANCE(286); + if (lookahead == '/') ADVANCE(290); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(288); + lookahead != '\\') ADVANCE(287); END_STATE(); - case 288: + case 287: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(287); + if (lookahead == '*') ADVANCE(286); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(288); + lookahead != '\\') ADVANCE(287); END_STATE(); - case 289: + case 288: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(286); + if (lookahead == '/') ADVANCE(285); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(289); + lookahead != '\r') ADVANCE(288); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(291); + lookahead != '\\') ADVANCE(290); END_STATE(); - case 290: + case 289: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(291); + lookahead == 0x2029) ADVANCE(290); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(290); + lookahead != '\\') ADVANCE(289); END_STATE(); - case 291: + case 290: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(291); + lookahead != '\\') ADVANCE(290); END_STATE(); - case 292: + case 291: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(294); - if (lookahead == '/') ADVANCE(296); + if (lookahead == '*') ADVANCE(293); + if (lookahead == '/') ADVANCE(295); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(297); + lookahead != '\\') ADVANCE(296); END_STATE(); - case 293: + case 292: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(293); - if (lookahead == '/') ADVANCE(297); + if (lookahead == '*') ADVANCE(292); + if (lookahead == '/') ADVANCE(296); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(294); + lookahead != '\\') ADVANCE(293); END_STATE(); - case 294: + case 293: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(293); + if (lookahead == '*') ADVANCE(292); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(294); + lookahead != '\\') ADVANCE(293); END_STATE(); - case 295: + case 294: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(292); + if (lookahead == '/') ADVANCE(291); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(295); + lookahead != '\r') ADVANCE(294); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(297); + lookahead != '\\') ADVANCE(296); END_STATE(); - case 296: + case 295: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(297); + lookahead == 0x2029) ADVANCE(296); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(296); + lookahead != '\\') ADVANCE(295); END_STATE(); - case 297: + case 296: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(297); + lookahead != '\\') ADVANCE(296); + END_STATE(); + case 297: + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 298: ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(107); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(324); END_STATE(); case 299: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(108); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(325); + if (lookahead == '\n' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(297); END_STATE(); case 300: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\n' || - lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(298); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(297); END_STATE(); case 301: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(298); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(300); END_STATE(); case 302: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(301); - END_STATE(); - case 303: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 304: + case 303: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(204); + lookahead == 0x2029) ADVANCE(209); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); - if (lookahead != 0) ADVANCE(207); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(305); + if (lookahead != 0) ADVANCE(212); END_STATE(); - case 305: + case 304: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(210); + lookahead == 0x2029) ADVANCE(203); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); - if (lookahead != 0) ADVANCE(213); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(305); + if (lookahead != 0) ADVANCE(206); END_STATE(); - case 306: + case 305: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != 0x2028 && - lookahead != 0x2029) ADVANCE(306); + lookahead != 0x2029) ADVANCE(305); END_STATE(); - case 307: + case 306: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 308: + case 307: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 309: + case 308: ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); - case 310: + case 309: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(41); - if (lookahead == '/') ADVANCE(31); - if (lookahead == '[') ADVANCE(90); - if (lookahead == '\\') ADVANCE(148); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(310); - if (lookahead != 0) ADVANCE(311); + if (lookahead == '\n') SKIP(40); + if (lookahead == '/') ADVANCE(30); + if (lookahead == '[') ADVANCE(89); + if (lookahead == '\\') ADVANCE(147); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(309); + if (lookahead != 0) ADVANCE(310); END_STATE(); - case 311: + case 310: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(90); - if (lookahead == '\\') ADVANCE(148); + if (lookahead == '[') ADVANCE(89); + if (lookahead == '\\') ADVANCE(147); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(311); + lookahead != '/') ADVANCE(310); END_STATE(); - case 312: + case 311: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(108); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(312); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(325); + if (lookahead == '\\') ADVANCE(107); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(311); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(324); END_STATE(); - case 313: + case 312: ACCEPT_TOKEN(sym_number); END_STATE(); - case 314: + case 313: ACCEPT_TOKEN(sym_number); ADVANCE_MAP( - '.', 322, - '0', 316, - '_', 125, - 'n', 313, - 'B', 121, - 'b', 121, - 'E', 119, - 'e', 119, - 'O', 122, - 'o', 122, - 'X', 130, - 'x', 130, + '.', 321, + '0', 315, + '_', 124, + 'n', 312, + 'B', 120, + 'b', 120, + 'E', 118, + 'e', 118, + 'O', 121, + 'o', 121, + 'X', 129, + 'x', 129, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); END_STATE(); - case 315: + case 314: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(322); - if (lookahead == '_') ADVANCE(123); - if (lookahead == 'n') ADVANCE(313); + if (lookahead == '.') ADVANCE(321); + if (lookahead == '_') ADVANCE(122); + if (lookahead == 'n') ADVANCE(312); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(119); + lookahead == 'e') ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(314); + END_STATE(); + case 315: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(124); + if (lookahead == 'n') ADVANCE(312); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); END_STATE(); case 316: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(125); - if (lookahead == 'n') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (lookahead == '_') ADVANCE(120); + if (lookahead == 'n') ADVANCE(312); + if (lookahead == '0' || + lookahead == '1') ADVANCE(316); END_STATE(); case 317: ACCEPT_TOKEN(sym_number); if (lookahead == '_') ADVANCE(121); - if (lookahead == 'n') ADVANCE(313); - if (lookahead == '0' || - lookahead == '1') ADVANCE(317); + if (lookahead == 'n') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(317); END_STATE(); case 318: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(122); - if (lookahead == 'n') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(318); + if (lookahead == '_') ADVANCE(129); + if (lookahead == 'n') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); END_STATE(); case 319: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(130); - if (lookahead == 'n') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(319); + if (lookahead == '_') ADVANCE(123); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(319); END_STATE(); case 320: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(124); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(119); + if (lookahead == '_') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); END_STATE(); case 321: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); - END_STATE(); - case 322: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(119); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); + lookahead == 'e') ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(319); END_STATE(); - case 323: + case 322: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '\\') ADVANCE(108); + if (lookahead == '-') ADVANCE(193); + if (lookahead == '\\') ADVANCE(107); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(323); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(324); + END_STATE(); + case 323: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(107); + if (lookahead == '{') ADVANCE(307); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(324); END_STATE(); case 324: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(108); - if (lookahead == '{') ADVANCE(308); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(325); + if (lookahead == '\\') ADVANCE(107); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(324); END_STATE(); case 325: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(108); + ACCEPT_TOKEN(sym_private_property_identifier); + if (lookahead == '\\') ADVANCE(106); if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(325); END_STATE(); case 326: - ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(107); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(326); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 327: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 328: ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(214); END_STATE(); case 329: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(215); + if (lookahead == '.') ADVANCE(214); + if (lookahead == '?') ADVANCE(281); END_STATE(); case 330: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '?') ADVANCE(282); + if (lookahead == '.') ADVANCE(214); + if (lookahead == '?') ADVANCE(280); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '?') ADVANCE(281); - END_STATE(); - case 332: ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); END_STATE(); - case 333: + case 332: ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON); END_STATE(); - case 334: + case 333: ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); - case 335: + case 334: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 336: + case 335: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); default: @@ -14036,100 +15753,100 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 151, .external_lex_state = 2}, + [1] = {.lex_state = 150, .external_lex_state = 2}, [2] = {.lex_state = 5, .external_lex_state = 3}, [3] = {.lex_state = 5, .external_lex_state = 3}, - [4] = {.lex_state = 151, .external_lex_state = 2}, - [5] = {.lex_state = 151, .external_lex_state = 2}, - [6] = {.lex_state = 151, .external_lex_state = 2}, - [7] = {.lex_state = 151, .external_lex_state = 2}, - [8] = {.lex_state = 151, .external_lex_state = 2}, - [9] = {.lex_state = 151, .external_lex_state = 2}, - [10] = {.lex_state = 151, .external_lex_state = 2}, - [11] = {.lex_state = 151, .external_lex_state = 2}, - [12] = {.lex_state = 151, .external_lex_state = 2}, - [13] = {.lex_state = 151, .external_lex_state = 2}, - [14] = {.lex_state = 151, .external_lex_state = 2}, - [15] = {.lex_state = 151, .external_lex_state = 2}, - [16] = {.lex_state = 151, .external_lex_state = 2}, - [17] = {.lex_state = 151, .external_lex_state = 2}, - [18] = {.lex_state = 151, .external_lex_state = 2}, - [19] = {.lex_state = 151, .external_lex_state = 2}, - [20] = {.lex_state = 151, .external_lex_state = 2}, - [21] = {.lex_state = 151, .external_lex_state = 2}, - [22] = {.lex_state = 151, .external_lex_state = 2}, - [23] = {.lex_state = 151, .external_lex_state = 2}, - [24] = {.lex_state = 151, .external_lex_state = 2}, - [25] = {.lex_state = 151, .external_lex_state = 2}, - [26] = {.lex_state = 151, .external_lex_state = 2}, - [27] = {.lex_state = 151, .external_lex_state = 2}, - [28] = {.lex_state = 151, .external_lex_state = 2}, - [29] = {.lex_state = 151, .external_lex_state = 2}, - [30] = {.lex_state = 151, .external_lex_state = 2}, - [31] = {.lex_state = 151, .external_lex_state = 2}, - [32] = {.lex_state = 151, .external_lex_state = 2}, - [33] = {.lex_state = 151, .external_lex_state = 2}, - [34] = {.lex_state = 151, .external_lex_state = 2}, - [35] = {.lex_state = 151, .external_lex_state = 2}, - [36] = {.lex_state = 151, .external_lex_state = 2}, - [37] = {.lex_state = 151, .external_lex_state = 2}, - [38] = {.lex_state = 151, .external_lex_state = 2}, - [39] = {.lex_state = 151, .external_lex_state = 2}, - [40] = {.lex_state = 151, .external_lex_state = 2}, - [41] = {.lex_state = 151, .external_lex_state = 2}, - [42] = {.lex_state = 151, .external_lex_state = 2}, - [43] = {.lex_state = 151, .external_lex_state = 2}, - [44] = {.lex_state = 12, .external_lex_state = 2}, - [45] = {.lex_state = 151, .external_lex_state = 2}, - [46] = {.lex_state = 151, .external_lex_state = 2}, - [47] = {.lex_state = 151, .external_lex_state = 2}, - [48] = {.lex_state = 151, .external_lex_state = 2}, - [49] = {.lex_state = 12, .external_lex_state = 2}, - [50] = {.lex_state = 12, .external_lex_state = 2}, - [51] = {.lex_state = 12, .external_lex_state = 2}, - [52] = {.lex_state = 151, .external_lex_state = 2}, - [53] = {.lex_state = 12, .external_lex_state = 2}, - [54] = {.lex_state = 12, .external_lex_state = 2}, - [55] = {.lex_state = 12, .external_lex_state = 2}, - [56] = {.lex_state = 12, .external_lex_state = 2}, + [4] = {.lex_state = 150, .external_lex_state = 2}, + [5] = {.lex_state = 150, .external_lex_state = 2}, + [6] = {.lex_state = 150, .external_lex_state = 2}, + [7] = {.lex_state = 150, .external_lex_state = 2}, + [8] = {.lex_state = 150, .external_lex_state = 2}, + [9] = {.lex_state = 150, .external_lex_state = 2}, + [10] = {.lex_state = 150, .external_lex_state = 2}, + [11] = {.lex_state = 150, .external_lex_state = 2}, + [12] = {.lex_state = 150, .external_lex_state = 2}, + [13] = {.lex_state = 150, .external_lex_state = 2}, + [14] = {.lex_state = 150, .external_lex_state = 2}, + [15] = {.lex_state = 150, .external_lex_state = 2}, + [16] = {.lex_state = 150, .external_lex_state = 2}, + [17] = {.lex_state = 150, .external_lex_state = 2}, + [18] = {.lex_state = 150, .external_lex_state = 2}, + [19] = {.lex_state = 150, .external_lex_state = 2}, + [20] = {.lex_state = 150, .external_lex_state = 2}, + [21] = {.lex_state = 150, .external_lex_state = 2}, + [22] = {.lex_state = 150, .external_lex_state = 2}, + [23] = {.lex_state = 150, .external_lex_state = 2}, + [24] = {.lex_state = 150, .external_lex_state = 2}, + [25] = {.lex_state = 150, .external_lex_state = 2}, + [26] = {.lex_state = 150, .external_lex_state = 2}, + [27] = {.lex_state = 150, .external_lex_state = 2}, + [28] = {.lex_state = 150, .external_lex_state = 2}, + [29] = {.lex_state = 150, .external_lex_state = 2}, + [30] = {.lex_state = 150, .external_lex_state = 2}, + [31] = {.lex_state = 12, .external_lex_state = 2}, + [32] = {.lex_state = 12, .external_lex_state = 2}, + [33] = {.lex_state = 150, .external_lex_state = 2}, + [34] = {.lex_state = 150, .external_lex_state = 2}, + [35] = {.lex_state = 150, .external_lex_state = 2}, + [36] = {.lex_state = 150, .external_lex_state = 2}, + [37] = {.lex_state = 12, .external_lex_state = 2}, + [38] = {.lex_state = 150, .external_lex_state = 2}, + [39] = {.lex_state = 12, .external_lex_state = 2}, + [40] = {.lex_state = 12, .external_lex_state = 2}, + [41] = {.lex_state = 150, .external_lex_state = 2}, + [42] = {.lex_state = 150, .external_lex_state = 2}, + [43] = {.lex_state = 150, .external_lex_state = 2}, + [44] = {.lex_state = 150, .external_lex_state = 2}, + [45] = {.lex_state = 150, .external_lex_state = 2}, + [46] = {.lex_state = 150, .external_lex_state = 2}, + [47] = {.lex_state = 150, .external_lex_state = 2}, + [48] = {.lex_state = 150, .external_lex_state = 2}, + [49] = {.lex_state = 150, .external_lex_state = 2}, + [50] = {.lex_state = 150, .external_lex_state = 2}, + [51] = {.lex_state = 150, .external_lex_state = 2}, + [52] = {.lex_state = 12, .external_lex_state = 2}, + [53] = {.lex_state = 150, .external_lex_state = 2}, + [54] = {.lex_state = 150, .external_lex_state = 2}, + [55] = {.lex_state = 150, .external_lex_state = 2}, + [56] = {.lex_state = 150, .external_lex_state = 2}, [57] = {.lex_state = 12, .external_lex_state = 2}, [58] = {.lex_state = 12, .external_lex_state = 2}, - [59] = {.lex_state = 151, .external_lex_state = 2}, - [60] = {.lex_state = 151, .external_lex_state = 2}, - [61] = {.lex_state = 151, .external_lex_state = 2}, - [62] = {.lex_state = 151, .external_lex_state = 2}, - [63] = {.lex_state = 151, .external_lex_state = 2}, - [64] = {.lex_state = 151, .external_lex_state = 2}, - [65] = {.lex_state = 151, .external_lex_state = 2}, - [66] = {.lex_state = 151, .external_lex_state = 2}, - [67] = {.lex_state = 151, .external_lex_state = 2}, - [68] = {.lex_state = 151, .external_lex_state = 2}, + [59] = {.lex_state = 150, .external_lex_state = 2}, + [60] = {.lex_state = 12, .external_lex_state = 2}, + [61] = {.lex_state = 12, .external_lex_state = 2}, + [62] = {.lex_state = 150, .external_lex_state = 2}, + [63] = {.lex_state = 150, .external_lex_state = 2}, + [64] = {.lex_state = 150, .external_lex_state = 2}, + [65] = {.lex_state = 150, .external_lex_state = 2}, + [66] = {.lex_state = 150, .external_lex_state = 2}, + [67] = {.lex_state = 150, .external_lex_state = 2}, + [68] = {.lex_state = 150, .external_lex_state = 2}, [69] = {.lex_state = 4, .external_lex_state = 4}, [70] = {.lex_state = 4, .external_lex_state = 4}, [71] = {.lex_state = 4, .external_lex_state = 4}, [72] = {.lex_state = 12, .external_lex_state = 2}, [73] = {.lex_state = 4, .external_lex_state = 3}, - [74] = {.lex_state = 4, .external_lex_state = 3}, + [74] = {.lex_state = 12, .external_lex_state = 2}, [75] = {.lex_state = 4, .external_lex_state = 3}, - [76] = {.lex_state = 4, .external_lex_state = 3}, + [76] = {.lex_state = 12, .external_lex_state = 2}, [77] = {.lex_state = 4, .external_lex_state = 3}, - [78] = {.lex_state = 12, .external_lex_state = 2}, + [78] = {.lex_state = 4, .external_lex_state = 3}, [79] = {.lex_state = 4, .external_lex_state = 3}, - [80] = {.lex_state = 12, .external_lex_state = 2}, + [80] = {.lex_state = 4, .external_lex_state = 3}, [81] = {.lex_state = 4, .external_lex_state = 3}, [82] = {.lex_state = 4, .external_lex_state = 3}, [83] = {.lex_state = 4, .external_lex_state = 3}, [84] = {.lex_state = 12, .external_lex_state = 2}, - [85] = {.lex_state = 4, .external_lex_state = 3}, - [86] = {.lex_state = 12, .external_lex_state = 2}, - [87] = {.lex_state = 12, .external_lex_state = 2}, + [85] = {.lex_state = 12, .external_lex_state = 2}, + [86] = {.lex_state = 4, .external_lex_state = 3}, + [87] = {.lex_state = 4, .external_lex_state = 3}, [88] = {.lex_state = 12, .external_lex_state = 2}, [89] = {.lex_state = 12, .external_lex_state = 2}, - [90] = {.lex_state = 4, .external_lex_state = 3}, + [90] = {.lex_state = 12, .external_lex_state = 2}, [91] = {.lex_state = 4, .external_lex_state = 3}, [92] = {.lex_state = 4, .external_lex_state = 3}, [93] = {.lex_state = 4, .external_lex_state = 3}, - [94] = {.lex_state = 4, .external_lex_state = 3}, + [94] = {.lex_state = 4, .external_lex_state = 4}, [95] = {.lex_state = 4, .external_lex_state = 4}, [96] = {.lex_state = 4, .external_lex_state = 4}, [97] = {.lex_state = 4, .external_lex_state = 4}, @@ -14139,20 +15856,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 4, .external_lex_state = 3}, [102] = {.lex_state = 4, .external_lex_state = 4}, [103] = {.lex_state = 4, .external_lex_state = 4}, - [104] = {.lex_state = 4, .external_lex_state = 4}, + [104] = {.lex_state = 4, .external_lex_state = 3}, [105] = {.lex_state = 4, .external_lex_state = 4}, [106] = {.lex_state = 4, .external_lex_state = 3}, [107] = {.lex_state = 4, .external_lex_state = 3}, [108] = {.lex_state = 4, .external_lex_state = 3}, - [109] = {.lex_state = 4, .external_lex_state = 3}, - [110] = {.lex_state = 4, .external_lex_state = 3}, - [111] = {.lex_state = 4, .external_lex_state = 4}, + [109] = {.lex_state = 4, .external_lex_state = 4}, + [110] = {.lex_state = 4, .external_lex_state = 4}, + [111] = {.lex_state = 4, .external_lex_state = 3}, [112] = {.lex_state = 4, .external_lex_state = 3}, [113] = {.lex_state = 4, .external_lex_state = 3}, [114] = {.lex_state = 4, .external_lex_state = 3}, - [115] = {.lex_state = 4, .external_lex_state = 4}, - [116] = {.lex_state = 4, .external_lex_state = 4}, - [117] = {.lex_state = 4, .external_lex_state = 3}, + [115] = {.lex_state = 4, .external_lex_state = 3}, + [116] = {.lex_state = 4, .external_lex_state = 3}, + [117] = {.lex_state = 4, .external_lex_state = 4}, [118] = {.lex_state = 4, .external_lex_state = 3}, [119] = {.lex_state = 4, .external_lex_state = 3}, [120] = {.lex_state = 4, .external_lex_state = 3}, @@ -14168,7 +15885,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [130] = {.lex_state = 4, .external_lex_state = 3}, [131] = {.lex_state = 4, .external_lex_state = 3}, [132] = {.lex_state = 4, .external_lex_state = 3}, - [133] = {.lex_state = 4, .external_lex_state = 3}, + [133] = {.lex_state = 12, .external_lex_state = 2}, [134] = {.lex_state = 4, .external_lex_state = 3}, [135] = {.lex_state = 4, .external_lex_state = 3}, [136] = {.lex_state = 4, .external_lex_state = 3}, @@ -14176,7 +15893,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [138] = {.lex_state = 4, .external_lex_state = 3}, [139] = {.lex_state = 4, .external_lex_state = 3}, [140] = {.lex_state = 4, .external_lex_state = 3}, - [141] = {.lex_state = 12, .external_lex_state = 2}, + [141] = {.lex_state = 4, .external_lex_state = 3}, [142] = {.lex_state = 4, .external_lex_state = 3}, [143] = {.lex_state = 12, .external_lex_state = 2}, [144] = {.lex_state = 12, .external_lex_state = 2}, @@ -14190,479 +15907,479 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [152] = {.lex_state = 12, .external_lex_state = 2}, [153] = {.lex_state = 12, .external_lex_state = 2}, [154] = {.lex_state = 12, .external_lex_state = 2}, - [155] = {.lex_state = 150, .external_lex_state = 3}, - [156] = {.lex_state = 150, .external_lex_state = 4}, - [157] = {.lex_state = 150, .external_lex_state = 4}, - [158] = {.lex_state = 150, .external_lex_state = 4}, - [159] = {.lex_state = 150, .external_lex_state = 3}, - [160] = {.lex_state = 150, .external_lex_state = 3}, - [161] = {.lex_state = 150, .external_lex_state = 3}, - [162] = {.lex_state = 150, .external_lex_state = 3}, - [163] = {.lex_state = 150, .external_lex_state = 3}, - [164] = {.lex_state = 6, .external_lex_state = 3}, - [165] = {.lex_state = 151, .external_lex_state = 2}, - [166] = {.lex_state = 151, .external_lex_state = 2}, - [167] = {.lex_state = 151, .external_lex_state = 2}, - [168] = {.lex_state = 151, .external_lex_state = 2}, - [169] = {.lex_state = 151, .external_lex_state = 2}, - [170] = {.lex_state = 151, .external_lex_state = 2}, - [171] = {.lex_state = 151, .external_lex_state = 2}, - [172] = {.lex_state = 151, .external_lex_state = 2}, + [155] = {.lex_state = 149, .external_lex_state = 3}, + [156] = {.lex_state = 149, .external_lex_state = 4}, + [157] = {.lex_state = 149, .external_lex_state = 4}, + [158] = {.lex_state = 149, .external_lex_state = 3}, + [159] = {.lex_state = 149, .external_lex_state = 4}, + [160] = {.lex_state = 149, .external_lex_state = 3}, + [161] = {.lex_state = 149, .external_lex_state = 3}, + [162] = {.lex_state = 149, .external_lex_state = 3}, + [163] = {.lex_state = 149, .external_lex_state = 3}, + [164] = {.lex_state = 150, .external_lex_state = 2}, + [165] = {.lex_state = 150, .external_lex_state = 2}, + [166] = {.lex_state = 150, .external_lex_state = 2}, + [167] = {.lex_state = 150, .external_lex_state = 2}, + [168] = {.lex_state = 150, .external_lex_state = 2}, + [169] = {.lex_state = 6, .external_lex_state = 3}, + [170] = {.lex_state = 150, .external_lex_state = 2}, + [171] = {.lex_state = 150, .external_lex_state = 2}, + [172] = {.lex_state = 150, .external_lex_state = 2}, [173] = {.lex_state = 6, .external_lex_state = 4}, [174] = {.lex_state = 6, .external_lex_state = 4}, [175] = {.lex_state = 6, .external_lex_state = 3}, [176] = {.lex_state = 6, .external_lex_state = 3}, - [177] = {.lex_state = 6, .external_lex_state = 3}, + [177] = {.lex_state = 6, .external_lex_state = 4}, [178] = {.lex_state = 6, .external_lex_state = 3}, - [179] = {.lex_state = 6, .external_lex_state = 4}, + [179] = {.lex_state = 6, .external_lex_state = 3}, [180] = {.lex_state = 6, .external_lex_state = 3}, [181] = {.lex_state = 6, .external_lex_state = 3}, [182] = {.lex_state = 6, .external_lex_state = 3}, [183] = {.lex_state = 6, .external_lex_state = 3}, [184] = {.lex_state = 6, .external_lex_state = 3}, [185] = {.lex_state = 6, .external_lex_state = 3}, - [186] = {.lex_state = 151, .external_lex_state = 2}, - [187] = {.lex_state = 151, .external_lex_state = 2}, - [188] = {.lex_state = 151, .external_lex_state = 2}, - [189] = {.lex_state = 151, .external_lex_state = 2}, - [190] = {.lex_state = 151, .external_lex_state = 2}, - [191] = {.lex_state = 151, .external_lex_state = 2}, - [192] = {.lex_state = 151, .external_lex_state = 2}, - [193] = {.lex_state = 151, .external_lex_state = 2}, - [194] = {.lex_state = 151, .external_lex_state = 2}, - [195] = {.lex_state = 151, .external_lex_state = 2}, - [196] = {.lex_state = 151, .external_lex_state = 2}, - [197] = {.lex_state = 151, .external_lex_state = 2}, - [198] = {.lex_state = 151, .external_lex_state = 2}, - [199] = {.lex_state = 151, .external_lex_state = 2}, - [200] = {.lex_state = 151, .external_lex_state = 2}, - [201] = {.lex_state = 151, .external_lex_state = 2}, - [202] = {.lex_state = 151, .external_lex_state = 2}, - [203] = {.lex_state = 151, .external_lex_state = 2}, - [204] = {.lex_state = 151, .external_lex_state = 2}, - [205] = {.lex_state = 151, .external_lex_state = 2}, - [206] = {.lex_state = 151, .external_lex_state = 2}, - [207] = {.lex_state = 151, .external_lex_state = 2}, - [208] = {.lex_state = 151, .external_lex_state = 2}, - [209] = {.lex_state = 151, .external_lex_state = 2}, - [210] = {.lex_state = 150, .external_lex_state = 4}, - [211] = {.lex_state = 151, .external_lex_state = 5}, - [212] = {.lex_state = 150, .external_lex_state = 4}, - [213] = {.lex_state = 150, .external_lex_state = 4}, - [214] = {.lex_state = 150, .external_lex_state = 4}, - [215] = {.lex_state = 151, .external_lex_state = 2}, - [216] = {.lex_state = 150, .external_lex_state = 4}, - [217] = {.lex_state = 151, .external_lex_state = 2}, - [218] = {.lex_state = 150, .external_lex_state = 4}, - [219] = {.lex_state = 150, .external_lex_state = 4}, - [220] = {.lex_state = 150, .external_lex_state = 4}, - [221] = {.lex_state = 150, .external_lex_state = 4}, - [222] = {.lex_state = 150, .external_lex_state = 4}, - [223] = {.lex_state = 150, .external_lex_state = 4}, - [224] = {.lex_state = 151, .external_lex_state = 2}, - [225] = {.lex_state = 151, .external_lex_state = 2}, - [226] = {.lex_state = 150, .external_lex_state = 4}, - [227] = {.lex_state = 151, .external_lex_state = 2}, - [228] = {.lex_state = 150, .external_lex_state = 4}, - [229] = {.lex_state = 150, .external_lex_state = 4}, - [230] = {.lex_state = 150, .external_lex_state = 4}, - [231] = {.lex_state = 150, .external_lex_state = 4}, - [232] = {.lex_state = 151, .external_lex_state = 2}, - [233] = {.lex_state = 150, .external_lex_state = 4}, - [234] = {.lex_state = 150, .external_lex_state = 4}, - [235] = {.lex_state = 150, .external_lex_state = 4}, - [236] = {.lex_state = 150, .external_lex_state = 4}, - [237] = {.lex_state = 150, .external_lex_state = 4}, - [238] = {.lex_state = 151, .external_lex_state = 2}, - [239] = {.lex_state = 150, .external_lex_state = 4}, - [240] = {.lex_state = 150, .external_lex_state = 4}, - [241] = {.lex_state = 150, .external_lex_state = 4}, - [242] = {.lex_state = 150, .external_lex_state = 4}, - [243] = {.lex_state = 150, .external_lex_state = 4}, - [244] = {.lex_state = 151, .external_lex_state = 2}, - [245] = {.lex_state = 150, .external_lex_state = 4}, - [246] = {.lex_state = 150, .external_lex_state = 4}, - [247] = {.lex_state = 150, .external_lex_state = 4}, - [248] = {.lex_state = 151, .external_lex_state = 2}, - [249] = {.lex_state = 151, .external_lex_state = 2}, - [250] = {.lex_state = 151, .external_lex_state = 2}, - [251] = {.lex_state = 151, .external_lex_state = 2}, - [252] = {.lex_state = 151, .external_lex_state = 2}, - [253] = {.lex_state = 151, .external_lex_state = 2}, - [254] = {.lex_state = 151, .external_lex_state = 2}, - [255] = {.lex_state = 151, .external_lex_state = 2}, - [256] = {.lex_state = 151, .external_lex_state = 2}, - [257] = {.lex_state = 151, .external_lex_state = 2}, - [258] = {.lex_state = 151, .external_lex_state = 2}, - [259] = {.lex_state = 151, .external_lex_state = 2}, - [260] = {.lex_state = 151, .external_lex_state = 2}, - [261] = {.lex_state = 151, .external_lex_state = 2}, - [262] = {.lex_state = 151, .external_lex_state = 2}, - [263] = {.lex_state = 151, .external_lex_state = 2}, - [264] = {.lex_state = 151, .external_lex_state = 2}, - [265] = {.lex_state = 151, .external_lex_state = 2}, - [266] = {.lex_state = 151, .external_lex_state = 2}, - [267] = {.lex_state = 151, .external_lex_state = 2}, - [268] = {.lex_state = 151, .external_lex_state = 2}, - [269] = {.lex_state = 151, .external_lex_state = 2}, - [270] = {.lex_state = 151, .external_lex_state = 2}, - [271] = {.lex_state = 151, .external_lex_state = 2}, - [272] = {.lex_state = 151, .external_lex_state = 2}, - [273] = {.lex_state = 151, .external_lex_state = 2}, - [274] = {.lex_state = 151, .external_lex_state = 2}, - [275] = {.lex_state = 151, .external_lex_state = 2}, - [276] = {.lex_state = 151, .external_lex_state = 2}, - [277] = {.lex_state = 151, .external_lex_state = 2}, - [278] = {.lex_state = 4, .external_lex_state = 3}, - [279] = {.lex_state = 151, .external_lex_state = 2}, - [280] = {.lex_state = 4, .external_lex_state = 3}, - [281] = {.lex_state = 151, .external_lex_state = 2}, + [186] = {.lex_state = 150, .external_lex_state = 2}, + [187] = {.lex_state = 150, .external_lex_state = 2}, + [188] = {.lex_state = 150, .external_lex_state = 2}, + [189] = {.lex_state = 150, .external_lex_state = 2}, + [190] = {.lex_state = 150, .external_lex_state = 2}, + [191] = {.lex_state = 150, .external_lex_state = 2}, + [192] = {.lex_state = 150, .external_lex_state = 2}, + [193] = {.lex_state = 150, .external_lex_state = 2}, + [194] = {.lex_state = 150, .external_lex_state = 2}, + [195] = {.lex_state = 150, .external_lex_state = 2}, + [196] = {.lex_state = 150, .external_lex_state = 2}, + [197] = {.lex_state = 150, .external_lex_state = 2}, + [198] = {.lex_state = 150, .external_lex_state = 2}, + [199] = {.lex_state = 150, .external_lex_state = 2}, + [200] = {.lex_state = 150, .external_lex_state = 2}, + [201] = {.lex_state = 150, .external_lex_state = 2}, + [202] = {.lex_state = 150, .external_lex_state = 2}, + [203] = {.lex_state = 150, .external_lex_state = 2}, + [204] = {.lex_state = 150, .external_lex_state = 2}, + [205] = {.lex_state = 150, .external_lex_state = 2}, + [206] = {.lex_state = 150, .external_lex_state = 2}, + [207] = {.lex_state = 150, .external_lex_state = 5}, + [208] = {.lex_state = 149, .external_lex_state = 4}, + [209] = {.lex_state = 150, .external_lex_state = 2}, + [210] = {.lex_state = 149, .external_lex_state = 4}, + [211] = {.lex_state = 150, .external_lex_state = 2}, + [212] = {.lex_state = 149, .external_lex_state = 4}, + [213] = {.lex_state = 149, .external_lex_state = 4}, + [214] = {.lex_state = 150, .external_lex_state = 2}, + [215] = {.lex_state = 150, .external_lex_state = 2}, + [216] = {.lex_state = 149, .external_lex_state = 4}, + [217] = {.lex_state = 149, .external_lex_state = 4}, + [218] = {.lex_state = 150, .external_lex_state = 2}, + [219] = {.lex_state = 149, .external_lex_state = 4}, + [220] = {.lex_state = 150, .external_lex_state = 2}, + [221] = {.lex_state = 149, .external_lex_state = 4}, + [222] = {.lex_state = 149, .external_lex_state = 4}, + [223] = {.lex_state = 150, .external_lex_state = 2}, + [224] = {.lex_state = 149, .external_lex_state = 4}, + [225] = {.lex_state = 149, .external_lex_state = 4}, + [226] = {.lex_state = 149, .external_lex_state = 4}, + [227] = {.lex_state = 149, .external_lex_state = 4}, + [228] = {.lex_state = 149, .external_lex_state = 4}, + [229] = {.lex_state = 149, .external_lex_state = 4}, + [230] = {.lex_state = 149, .external_lex_state = 4}, + [231] = {.lex_state = 149, .external_lex_state = 4}, + [232] = {.lex_state = 149, .external_lex_state = 4}, + [233] = {.lex_state = 150, .external_lex_state = 2}, + [234] = {.lex_state = 149, .external_lex_state = 4}, + [235] = {.lex_state = 149, .external_lex_state = 4}, + [236] = {.lex_state = 149, .external_lex_state = 4}, + [237] = {.lex_state = 150, .external_lex_state = 2}, + [238] = {.lex_state = 149, .external_lex_state = 4}, + [239] = {.lex_state = 149, .external_lex_state = 4}, + [240] = {.lex_state = 149, .external_lex_state = 4}, + [241] = {.lex_state = 150, .external_lex_state = 2}, + [242] = {.lex_state = 149, .external_lex_state = 4}, + [243] = {.lex_state = 149, .external_lex_state = 4}, + [244] = {.lex_state = 149, .external_lex_state = 4}, + [245] = {.lex_state = 150, .external_lex_state = 2}, + [246] = {.lex_state = 149, .external_lex_state = 4}, + [247] = {.lex_state = 149, .external_lex_state = 4}, + [248] = {.lex_state = 150, .external_lex_state = 2}, + [249] = {.lex_state = 150, .external_lex_state = 2}, + [250] = {.lex_state = 150, .external_lex_state = 2}, + [251] = {.lex_state = 150, .external_lex_state = 2}, + [252] = {.lex_state = 150, .external_lex_state = 2}, + [253] = {.lex_state = 150, .external_lex_state = 2}, + [254] = {.lex_state = 150, .external_lex_state = 2}, + [255] = {.lex_state = 150, .external_lex_state = 2}, + [256] = {.lex_state = 150, .external_lex_state = 2}, + [257] = {.lex_state = 150, .external_lex_state = 2}, + [258] = {.lex_state = 150, .external_lex_state = 2}, + [259] = {.lex_state = 150, .external_lex_state = 2}, + [260] = {.lex_state = 150, .external_lex_state = 2}, + [261] = {.lex_state = 150, .external_lex_state = 2}, + [262] = {.lex_state = 150, .external_lex_state = 2}, + [263] = {.lex_state = 150, .external_lex_state = 2}, + [264] = {.lex_state = 150, .external_lex_state = 2}, + [265] = {.lex_state = 150, .external_lex_state = 2}, + [266] = {.lex_state = 4, .external_lex_state = 3}, + [267] = {.lex_state = 150, .external_lex_state = 2}, + [268] = {.lex_state = 150, .external_lex_state = 2}, + [269] = {.lex_state = 150, .external_lex_state = 2}, + [270] = {.lex_state = 150, .external_lex_state = 2}, + [271] = {.lex_state = 150, .external_lex_state = 2}, + [272] = {.lex_state = 150, .external_lex_state = 2}, + [273] = {.lex_state = 150, .external_lex_state = 2}, + [274] = {.lex_state = 150, .external_lex_state = 2}, + [275] = {.lex_state = 150, .external_lex_state = 2}, + [276] = {.lex_state = 150, .external_lex_state = 2}, + [277] = {.lex_state = 150, .external_lex_state = 2}, + [278] = {.lex_state = 150, .external_lex_state = 2}, + [279] = {.lex_state = 150, .external_lex_state = 2}, + [280] = {.lex_state = 150, .external_lex_state = 2}, + [281] = {.lex_state = 150, .external_lex_state = 2}, [282] = {.lex_state = 4, .external_lex_state = 3}, - [283] = {.lex_state = 151, .external_lex_state = 2}, - [284] = {.lex_state = 4, .external_lex_state = 3}, - [285] = {.lex_state = 151, .external_lex_state = 2}, - [286] = {.lex_state = 151, .external_lex_state = 2}, - [287] = {.lex_state = 151, .external_lex_state = 2}, - [288] = {.lex_state = 151, .external_lex_state = 2}, - [289] = {.lex_state = 151, .external_lex_state = 2}, - [290] = {.lex_state = 151, .external_lex_state = 2}, - [291] = {.lex_state = 151, .external_lex_state = 2}, - [292] = {.lex_state = 151, .external_lex_state = 2}, - [293] = {.lex_state = 151, .external_lex_state = 2}, - [294] = {.lex_state = 151, .external_lex_state = 5}, - [295] = {.lex_state = 151, .external_lex_state = 2}, - [296] = {.lex_state = 151, .external_lex_state = 2}, - [297] = {.lex_state = 151, .external_lex_state = 2}, - [298] = {.lex_state = 151, .external_lex_state = 2}, - [299] = {.lex_state = 151, .external_lex_state = 2}, - [300] = {.lex_state = 151, .external_lex_state = 2}, - [301] = {.lex_state = 151, .external_lex_state = 2}, - [302] = {.lex_state = 151, .external_lex_state = 2}, - [303] = {.lex_state = 151, .external_lex_state = 2}, - [304] = {.lex_state = 151, .external_lex_state = 2}, - [305] = {.lex_state = 151, .external_lex_state = 2}, - [306] = {.lex_state = 151, .external_lex_state = 2}, - [307] = {.lex_state = 151, .external_lex_state = 2}, - [308] = {.lex_state = 151, .external_lex_state = 2}, - [309] = {.lex_state = 151, .external_lex_state = 2}, - [310] = {.lex_state = 151, .external_lex_state = 2}, - [311] = {.lex_state = 151, .external_lex_state = 2}, - [312] = {.lex_state = 151, .external_lex_state = 2}, - [313] = {.lex_state = 151, .external_lex_state = 2}, - [314] = {.lex_state = 151, .external_lex_state = 2}, - [315] = {.lex_state = 151, .external_lex_state = 2}, - [316] = {.lex_state = 151, .external_lex_state = 2}, - [317] = {.lex_state = 151, .external_lex_state = 2}, - [318] = {.lex_state = 151, .external_lex_state = 2}, - [319] = {.lex_state = 151, .external_lex_state = 2}, - [320] = {.lex_state = 151, .external_lex_state = 2}, - [321] = {.lex_state = 151, .external_lex_state = 2}, - [322] = {.lex_state = 151, .external_lex_state = 2}, - [323] = {.lex_state = 151, .external_lex_state = 2}, - [324] = {.lex_state = 151, .external_lex_state = 2}, - [325] = {.lex_state = 151, .external_lex_state = 2}, - [326] = {.lex_state = 151, .external_lex_state = 2}, - [327] = {.lex_state = 151, .external_lex_state = 2}, - [328] = {.lex_state = 151, .external_lex_state = 2}, - [329] = {.lex_state = 151, .external_lex_state = 2}, - [330] = {.lex_state = 151, .external_lex_state = 2}, - [331] = {.lex_state = 151, .external_lex_state = 2}, - [332] = {.lex_state = 151, .external_lex_state = 2}, - [333] = {.lex_state = 151, .external_lex_state = 2}, - [334] = {.lex_state = 151, .external_lex_state = 2}, - [335] = {.lex_state = 151, .external_lex_state = 2}, - [336] = {.lex_state = 151, .external_lex_state = 2}, - [337] = {.lex_state = 151, .external_lex_state = 2}, - [338] = {.lex_state = 151, .external_lex_state = 2}, - [339] = {.lex_state = 151, .external_lex_state = 2}, - [340] = {.lex_state = 151, .external_lex_state = 2}, - [341] = {.lex_state = 151, .external_lex_state = 2}, - [342] = {.lex_state = 151, .external_lex_state = 2}, - [343] = {.lex_state = 151, .external_lex_state = 2}, - [344] = {.lex_state = 151, .external_lex_state = 2}, - [345] = {.lex_state = 151, .external_lex_state = 2}, - [346] = {.lex_state = 151, .external_lex_state = 2}, - [347] = {.lex_state = 151, .external_lex_state = 2}, - [348] = {.lex_state = 151, .external_lex_state = 2}, - [349] = {.lex_state = 151, .external_lex_state = 2}, - [350] = {.lex_state = 151, .external_lex_state = 2}, - [351] = {.lex_state = 151, .external_lex_state = 2}, - [352] = {.lex_state = 151, .external_lex_state = 2}, - [353] = {.lex_state = 151, .external_lex_state = 2}, - [354] = {.lex_state = 151, .external_lex_state = 2}, - [355] = {.lex_state = 151, .external_lex_state = 2}, - [356] = {.lex_state = 151, .external_lex_state = 2}, - [357] = {.lex_state = 151, .external_lex_state = 2}, - [358] = {.lex_state = 151, .external_lex_state = 2}, - [359] = {.lex_state = 151, .external_lex_state = 2}, - [360] = {.lex_state = 151, .external_lex_state = 2}, - [361] = {.lex_state = 151, .external_lex_state = 2}, - [362] = {.lex_state = 151, .external_lex_state = 2}, - [363] = {.lex_state = 151, .external_lex_state = 2}, - [364] = {.lex_state = 151, .external_lex_state = 2}, - [365] = {.lex_state = 151, .external_lex_state = 2}, - [366] = {.lex_state = 151, .external_lex_state = 2}, - [367] = {.lex_state = 151, .external_lex_state = 2}, - [368] = {.lex_state = 151, .external_lex_state = 2}, - [369] = {.lex_state = 151, .external_lex_state = 2}, - [370] = {.lex_state = 151, .external_lex_state = 2}, - [371] = {.lex_state = 151, .external_lex_state = 2}, - [372] = {.lex_state = 151, .external_lex_state = 2}, - [373] = {.lex_state = 151, .external_lex_state = 2}, - [374] = {.lex_state = 151, .external_lex_state = 2}, - [375] = {.lex_state = 151, .external_lex_state = 2}, - [376] = {.lex_state = 151, .external_lex_state = 2}, - [377] = {.lex_state = 151, .external_lex_state = 2}, - [378] = {.lex_state = 151, .external_lex_state = 2}, - [379] = {.lex_state = 151, .external_lex_state = 2}, - [380] = {.lex_state = 151, .external_lex_state = 2}, - [381] = {.lex_state = 151, .external_lex_state = 2}, - [382] = {.lex_state = 151, .external_lex_state = 2}, - [383] = {.lex_state = 151, .external_lex_state = 2}, - [384] = {.lex_state = 151, .external_lex_state = 2}, - [385] = {.lex_state = 151, .external_lex_state = 2}, - [386] = {.lex_state = 151, .external_lex_state = 2}, - [387] = {.lex_state = 151, .external_lex_state = 2}, - [388] = {.lex_state = 151, .external_lex_state = 2}, - [389] = {.lex_state = 151, .external_lex_state = 2}, - [390] = {.lex_state = 151, .external_lex_state = 2}, - [391] = {.lex_state = 151, .external_lex_state = 2}, - [392] = {.lex_state = 151, .external_lex_state = 2}, - [393] = {.lex_state = 151, .external_lex_state = 2}, - [394] = {.lex_state = 151, .external_lex_state = 2}, - [395] = {.lex_state = 151, .external_lex_state = 2}, - [396] = {.lex_state = 151, .external_lex_state = 2}, - [397] = {.lex_state = 151, .external_lex_state = 2}, - [398] = {.lex_state = 151, .external_lex_state = 2}, - [399] = {.lex_state = 151, .external_lex_state = 2}, - [400] = {.lex_state = 151, .external_lex_state = 2}, - [401] = {.lex_state = 151, .external_lex_state = 2}, - [402] = {.lex_state = 151, .external_lex_state = 2}, - [403] = {.lex_state = 151, .external_lex_state = 2}, - [404] = {.lex_state = 151, .external_lex_state = 2}, - [405] = {.lex_state = 151, .external_lex_state = 2}, - [406] = {.lex_state = 151, .external_lex_state = 2}, - [407] = {.lex_state = 151, .external_lex_state = 2}, - [408] = {.lex_state = 151, .external_lex_state = 2}, - [409] = {.lex_state = 151, .external_lex_state = 2}, - [410] = {.lex_state = 151, .external_lex_state = 2}, - [411] = {.lex_state = 151, .external_lex_state = 2}, - [412] = {.lex_state = 151, .external_lex_state = 2}, - [413] = {.lex_state = 151, .external_lex_state = 2}, - [414] = {.lex_state = 151, .external_lex_state = 2}, - [415] = {.lex_state = 151, .external_lex_state = 2}, - [416] = {.lex_state = 151, .external_lex_state = 2}, - [417] = {.lex_state = 151, .external_lex_state = 2}, - [418] = {.lex_state = 151, .external_lex_state = 2}, - [419] = {.lex_state = 151, .external_lex_state = 2}, - [420] = {.lex_state = 151, .external_lex_state = 2}, - [421] = {.lex_state = 151, .external_lex_state = 2}, - [422] = {.lex_state = 151, .external_lex_state = 2}, - [423] = {.lex_state = 151, .external_lex_state = 2}, - [424] = {.lex_state = 151, .external_lex_state = 2}, - [425] = {.lex_state = 151, .external_lex_state = 2}, - [426] = {.lex_state = 151, .external_lex_state = 2}, - [427] = {.lex_state = 151, .external_lex_state = 2}, - [428] = {.lex_state = 151, .external_lex_state = 2}, - [429] = {.lex_state = 151, .external_lex_state = 2}, - [430] = {.lex_state = 151, .external_lex_state = 2}, - [431] = {.lex_state = 151, .external_lex_state = 2}, - [432] = {.lex_state = 151, .external_lex_state = 2}, - [433] = {.lex_state = 151, .external_lex_state = 2}, - [434] = {.lex_state = 151, .external_lex_state = 2}, - [435] = {.lex_state = 151, .external_lex_state = 2}, - [436] = {.lex_state = 151, .external_lex_state = 2}, - [437] = {.lex_state = 151, .external_lex_state = 2}, - [438] = {.lex_state = 151, .external_lex_state = 2}, - [439] = {.lex_state = 151, .external_lex_state = 2}, - [440] = {.lex_state = 151, .external_lex_state = 2}, - [441] = {.lex_state = 151, .external_lex_state = 2}, - [442] = {.lex_state = 151, .external_lex_state = 2}, - [443] = {.lex_state = 151, .external_lex_state = 2}, - [444] = {.lex_state = 151, .external_lex_state = 2}, - [445] = {.lex_state = 151, .external_lex_state = 2}, - [446] = {.lex_state = 151, .external_lex_state = 2}, - [447] = {.lex_state = 151, .external_lex_state = 2}, - [448] = {.lex_state = 151, .external_lex_state = 2}, - [449] = {.lex_state = 151, .external_lex_state = 2}, - [450] = {.lex_state = 151, .external_lex_state = 2}, - [451] = {.lex_state = 151, .external_lex_state = 2}, - [452] = {.lex_state = 151, .external_lex_state = 2}, - [453] = {.lex_state = 151, .external_lex_state = 2}, - [454] = {.lex_state = 151, .external_lex_state = 2}, - [455] = {.lex_state = 151, .external_lex_state = 2}, - [456] = {.lex_state = 151, .external_lex_state = 2}, - [457] = {.lex_state = 151, .external_lex_state = 2}, - [458] = {.lex_state = 151, .external_lex_state = 2}, - [459] = {.lex_state = 151, .external_lex_state = 2}, - [460] = {.lex_state = 151, .external_lex_state = 2}, - [461] = {.lex_state = 151, .external_lex_state = 2}, - [462] = {.lex_state = 151, .external_lex_state = 2}, - [463] = {.lex_state = 151, .external_lex_state = 2}, - [464] = {.lex_state = 151, .external_lex_state = 2}, - [465] = {.lex_state = 151, .external_lex_state = 2}, - [466] = {.lex_state = 151, .external_lex_state = 2}, - [467] = {.lex_state = 151, .external_lex_state = 2}, - [468] = {.lex_state = 151, .external_lex_state = 2}, - [469] = {.lex_state = 151, .external_lex_state = 2}, - [470] = {.lex_state = 151, .external_lex_state = 2}, - [471] = {.lex_state = 151, .external_lex_state = 2}, - [472] = {.lex_state = 151, .external_lex_state = 2}, - [473] = {.lex_state = 151, .external_lex_state = 2}, - [474] = {.lex_state = 151, .external_lex_state = 2}, - [475] = {.lex_state = 151, .external_lex_state = 2}, - [476] = {.lex_state = 151, .external_lex_state = 2}, - [477] = {.lex_state = 151, .external_lex_state = 2}, - [478] = {.lex_state = 151, .external_lex_state = 2}, - [479] = {.lex_state = 151, .external_lex_state = 2}, - [480] = {.lex_state = 151, .external_lex_state = 2}, - [481] = {.lex_state = 151, .external_lex_state = 2}, - [482] = {.lex_state = 151, .external_lex_state = 2}, - [483] = {.lex_state = 151, .external_lex_state = 2}, - [484] = {.lex_state = 151, .external_lex_state = 2}, - [485] = {.lex_state = 151, .external_lex_state = 2}, - [486] = {.lex_state = 151, .external_lex_state = 2}, - [487] = {.lex_state = 151, .external_lex_state = 2}, - [488] = {.lex_state = 151, .external_lex_state = 2}, - [489] = {.lex_state = 151, .external_lex_state = 2}, - [490] = {.lex_state = 151, .external_lex_state = 2}, - [491] = {.lex_state = 151, .external_lex_state = 2}, - [492] = {.lex_state = 151, .external_lex_state = 2}, - [493] = {.lex_state = 151, .external_lex_state = 2}, - [494] = {.lex_state = 151, .external_lex_state = 2}, - [495] = {.lex_state = 151, .external_lex_state = 2}, - [496] = {.lex_state = 151, .external_lex_state = 2}, - [497] = {.lex_state = 151, .external_lex_state = 2}, - [498] = {.lex_state = 151, .external_lex_state = 2}, - [499] = {.lex_state = 151, .external_lex_state = 2}, - [500] = {.lex_state = 151, .external_lex_state = 2}, - [501] = {.lex_state = 151, .external_lex_state = 2}, - [502] = {.lex_state = 151, .external_lex_state = 2}, - [503] = {.lex_state = 151, .external_lex_state = 2}, - [504] = {.lex_state = 151, .external_lex_state = 2}, - [505] = {.lex_state = 151, .external_lex_state = 2}, - [506] = {.lex_state = 151, .external_lex_state = 2}, - [507] = {.lex_state = 151, .external_lex_state = 2}, - [508] = {.lex_state = 151, .external_lex_state = 2}, - [509] = {.lex_state = 151, .external_lex_state = 2}, - [510] = {.lex_state = 151, .external_lex_state = 2}, - [511] = {.lex_state = 151, .external_lex_state = 2}, - [512] = {.lex_state = 151, .external_lex_state = 2}, - [513] = {.lex_state = 151, .external_lex_state = 2}, - [514] = {.lex_state = 151, .external_lex_state = 2}, - [515] = {.lex_state = 151, .external_lex_state = 2}, - [516] = {.lex_state = 151, .external_lex_state = 2}, - [517] = {.lex_state = 151, .external_lex_state = 2}, - [518] = {.lex_state = 151, .external_lex_state = 2}, - [519] = {.lex_state = 151, .external_lex_state = 2}, - [520] = {.lex_state = 151, .external_lex_state = 2}, - [521] = {.lex_state = 151, .external_lex_state = 2}, - [522] = {.lex_state = 151, .external_lex_state = 2}, - [523] = {.lex_state = 151, .external_lex_state = 2}, - [524] = {.lex_state = 151, .external_lex_state = 2}, - [525] = {.lex_state = 151, .external_lex_state = 2}, - [526] = {.lex_state = 151, .external_lex_state = 2}, - [527] = {.lex_state = 151, .external_lex_state = 2}, - [528] = {.lex_state = 151, .external_lex_state = 2}, - [529] = {.lex_state = 151, .external_lex_state = 2}, - [530] = {.lex_state = 151, .external_lex_state = 2}, - [531] = {.lex_state = 151, .external_lex_state = 2}, - [532] = {.lex_state = 151, .external_lex_state = 2}, - [533] = {.lex_state = 151, .external_lex_state = 2}, - [534] = {.lex_state = 151, .external_lex_state = 2}, - [535] = {.lex_state = 151, .external_lex_state = 2}, - [536] = {.lex_state = 151, .external_lex_state = 2}, - [537] = {.lex_state = 151, .external_lex_state = 2}, - [538] = {.lex_state = 151, .external_lex_state = 2}, - [539] = {.lex_state = 151, .external_lex_state = 2}, - [540] = {.lex_state = 151, .external_lex_state = 2}, - [541] = {.lex_state = 151, .external_lex_state = 2}, - [542] = {.lex_state = 151, .external_lex_state = 2}, - [543] = {.lex_state = 151, .external_lex_state = 2}, - [544] = {.lex_state = 151, .external_lex_state = 2}, - [545] = {.lex_state = 151, .external_lex_state = 2}, - [546] = {.lex_state = 151, .external_lex_state = 2}, - [547] = {.lex_state = 151, .external_lex_state = 2}, - [548] = {.lex_state = 151, .external_lex_state = 2}, - [549] = {.lex_state = 151, .external_lex_state = 2}, - [550] = {.lex_state = 151, .external_lex_state = 2}, - [551] = {.lex_state = 151, .external_lex_state = 2}, - [552] = {.lex_state = 151, .external_lex_state = 2}, - [553] = {.lex_state = 151, .external_lex_state = 2}, - [554] = {.lex_state = 151, .external_lex_state = 2}, - [555] = {.lex_state = 151, .external_lex_state = 2}, - [556] = {.lex_state = 151, .external_lex_state = 2}, - [557] = {.lex_state = 151, .external_lex_state = 2}, - [558] = {.lex_state = 151, .external_lex_state = 2}, - [559] = {.lex_state = 151, .external_lex_state = 2}, - [560] = {.lex_state = 151, .external_lex_state = 2}, - [561] = {.lex_state = 151, .external_lex_state = 2}, - [562] = {.lex_state = 151, .external_lex_state = 2}, - [563] = {.lex_state = 151, .external_lex_state = 2}, - [564] = {.lex_state = 151, .external_lex_state = 2}, - [565] = {.lex_state = 151, .external_lex_state = 2}, - [566] = {.lex_state = 151, .external_lex_state = 2}, - [567] = {.lex_state = 151, .external_lex_state = 2}, - [568] = {.lex_state = 151, .external_lex_state = 2}, - [569] = {.lex_state = 151, .external_lex_state = 2}, - [570] = {.lex_state = 151, .external_lex_state = 2}, - [571] = {.lex_state = 151, .external_lex_state = 2}, - [572] = {.lex_state = 151, .external_lex_state = 2}, - [573] = {.lex_state = 151, .external_lex_state = 2}, - [574] = {.lex_state = 151, .external_lex_state = 2}, - [575] = {.lex_state = 151, .external_lex_state = 2}, - [576] = {.lex_state = 151, .external_lex_state = 2}, - [577] = {.lex_state = 151, .external_lex_state = 2}, - [578] = {.lex_state = 151, .external_lex_state = 2}, - [579] = {.lex_state = 151, .external_lex_state = 2}, - [580] = {.lex_state = 151, .external_lex_state = 2}, - [581] = {.lex_state = 151, .external_lex_state = 2}, - [582] = {.lex_state = 151, .external_lex_state = 2}, - [583] = {.lex_state = 151, .external_lex_state = 2}, - [584] = {.lex_state = 151, .external_lex_state = 2}, - [585] = {.lex_state = 151, .external_lex_state = 2}, - [586] = {.lex_state = 151, .external_lex_state = 2}, - [587] = {.lex_state = 151, .external_lex_state = 2}, - [588] = {.lex_state = 151, .external_lex_state = 2}, - [589] = {.lex_state = 151, .external_lex_state = 2}, - [590] = {.lex_state = 151, .external_lex_state = 2}, - [591] = {.lex_state = 151, .external_lex_state = 2}, - [592] = {.lex_state = 151, .external_lex_state = 2}, - [593] = {.lex_state = 151, .external_lex_state = 2}, - [594] = {.lex_state = 151, .external_lex_state = 2}, - [595] = {.lex_state = 151, .external_lex_state = 2}, - [596] = {.lex_state = 151, .external_lex_state = 2}, - [597] = {.lex_state = 151, .external_lex_state = 2}, - [598] = {.lex_state = 151, .external_lex_state = 2}, - [599] = {.lex_state = 151, .external_lex_state = 2}, - [600] = {.lex_state = 151, .external_lex_state = 2}, - [601] = {.lex_state = 151, .external_lex_state = 2}, - [602] = {.lex_state = 151, .external_lex_state = 2}, - [603] = {.lex_state = 151, .external_lex_state = 2}, - [604] = {.lex_state = 151, .external_lex_state = 2}, - [605] = {.lex_state = 151, .external_lex_state = 2}, - [606] = {.lex_state = 151, .external_lex_state = 2}, - [607] = {.lex_state = 151, .external_lex_state = 2}, - [608] = {.lex_state = 151, .external_lex_state = 2}, - [609] = {.lex_state = 151, .external_lex_state = 2}, - [610] = {.lex_state = 151, .external_lex_state = 2}, - [611] = {.lex_state = 151, .external_lex_state = 2}, - [612] = {.lex_state = 151, .external_lex_state = 2}, - [613] = {.lex_state = 151, .external_lex_state = 2}, - [614] = {.lex_state = 151, .external_lex_state = 2}, - [615] = {.lex_state = 151, .external_lex_state = 2}, - [616] = {.lex_state = 151, .external_lex_state = 2}, - [617] = {.lex_state = 151, .external_lex_state = 2}, - [618] = {.lex_state = 151, .external_lex_state = 2}, - [619] = {.lex_state = 151, .external_lex_state = 2}, - [620] = {.lex_state = 151, .external_lex_state = 2}, - [621] = {.lex_state = 151, .external_lex_state = 2}, - [622] = {.lex_state = 151, .external_lex_state = 2}, - [623] = {.lex_state = 151, .external_lex_state = 2}, - [624] = {.lex_state = 151, .external_lex_state = 2}, - [625] = {.lex_state = 151, .external_lex_state = 2}, - [626] = {.lex_state = 151, .external_lex_state = 2}, - [627] = {.lex_state = 151, .external_lex_state = 2}, + [283] = {.lex_state = 150, .external_lex_state = 2}, + [284] = {.lex_state = 150, .external_lex_state = 2}, + [285] = {.lex_state = 4, .external_lex_state = 3}, + [286] = {.lex_state = 150, .external_lex_state = 2}, + [287] = {.lex_state = 150, .external_lex_state = 2}, + [288] = {.lex_state = 150, .external_lex_state = 2}, + [289] = {.lex_state = 150, .external_lex_state = 2}, + [290] = {.lex_state = 4, .external_lex_state = 3}, + [291] = {.lex_state = 150, .external_lex_state = 2}, + [292] = {.lex_state = 150, .external_lex_state = 2}, + [293] = {.lex_state = 150, .external_lex_state = 2}, + [294] = {.lex_state = 150, .external_lex_state = 2}, + [295] = {.lex_state = 150, .external_lex_state = 5}, + [296] = {.lex_state = 150, .external_lex_state = 2}, + [297] = {.lex_state = 150, .external_lex_state = 2}, + [298] = {.lex_state = 150, .external_lex_state = 2}, + [299] = {.lex_state = 150, .external_lex_state = 2}, + [300] = {.lex_state = 150, .external_lex_state = 2}, + [301] = {.lex_state = 150, .external_lex_state = 2}, + [302] = {.lex_state = 150, .external_lex_state = 2}, + [303] = {.lex_state = 150, .external_lex_state = 2}, + [304] = {.lex_state = 150, .external_lex_state = 2}, + [305] = {.lex_state = 150, .external_lex_state = 2}, + [306] = {.lex_state = 150, .external_lex_state = 2}, + [307] = {.lex_state = 150, .external_lex_state = 2}, + [308] = {.lex_state = 150, .external_lex_state = 2}, + [309] = {.lex_state = 150, .external_lex_state = 2}, + [310] = {.lex_state = 150, .external_lex_state = 2}, + [311] = {.lex_state = 150, .external_lex_state = 2}, + [312] = {.lex_state = 150, .external_lex_state = 2}, + [313] = {.lex_state = 150, .external_lex_state = 2}, + [314] = {.lex_state = 150, .external_lex_state = 2}, + [315] = {.lex_state = 150, .external_lex_state = 2}, + [316] = {.lex_state = 150, .external_lex_state = 2}, + [317] = {.lex_state = 150, .external_lex_state = 2}, + [318] = {.lex_state = 150, .external_lex_state = 2}, + [319] = {.lex_state = 150, .external_lex_state = 2}, + [320] = {.lex_state = 150, .external_lex_state = 2}, + [321] = {.lex_state = 150, .external_lex_state = 2}, + [322] = {.lex_state = 150, .external_lex_state = 2}, + [323] = {.lex_state = 150, .external_lex_state = 2}, + [324] = {.lex_state = 150, .external_lex_state = 2}, + [325] = {.lex_state = 150, .external_lex_state = 2}, + [326] = {.lex_state = 150, .external_lex_state = 2}, + [327] = {.lex_state = 150, .external_lex_state = 2}, + [328] = {.lex_state = 150, .external_lex_state = 2}, + [329] = {.lex_state = 150, .external_lex_state = 2}, + [330] = {.lex_state = 150, .external_lex_state = 2}, + [331] = {.lex_state = 150, .external_lex_state = 2}, + [332] = {.lex_state = 150, .external_lex_state = 2}, + [333] = {.lex_state = 150, .external_lex_state = 2}, + [334] = {.lex_state = 150, .external_lex_state = 2}, + [335] = {.lex_state = 150, .external_lex_state = 2}, + [336] = {.lex_state = 150, .external_lex_state = 2}, + [337] = {.lex_state = 150, .external_lex_state = 2}, + [338] = {.lex_state = 150, .external_lex_state = 2}, + [339] = {.lex_state = 150, .external_lex_state = 2}, + [340] = {.lex_state = 150, .external_lex_state = 2}, + [341] = {.lex_state = 150, .external_lex_state = 2}, + [342] = {.lex_state = 150, .external_lex_state = 2}, + [343] = {.lex_state = 150, .external_lex_state = 2}, + [344] = {.lex_state = 150, .external_lex_state = 2}, + [345] = {.lex_state = 150, .external_lex_state = 2}, + [346] = {.lex_state = 150, .external_lex_state = 2}, + [347] = {.lex_state = 150, .external_lex_state = 2}, + [348] = {.lex_state = 150, .external_lex_state = 2}, + [349] = {.lex_state = 150, .external_lex_state = 2}, + [350] = {.lex_state = 150, .external_lex_state = 2}, + [351] = {.lex_state = 150, .external_lex_state = 2}, + [352] = {.lex_state = 150, .external_lex_state = 2}, + [353] = {.lex_state = 150, .external_lex_state = 2}, + [354] = {.lex_state = 150, .external_lex_state = 2}, + [355] = {.lex_state = 150, .external_lex_state = 2}, + [356] = {.lex_state = 150, .external_lex_state = 2}, + [357] = {.lex_state = 150, .external_lex_state = 2}, + [358] = {.lex_state = 150, .external_lex_state = 2}, + [359] = {.lex_state = 150, .external_lex_state = 2}, + [360] = {.lex_state = 150, .external_lex_state = 2}, + [361] = {.lex_state = 150, .external_lex_state = 2}, + [362] = {.lex_state = 150, .external_lex_state = 2}, + [363] = {.lex_state = 150, .external_lex_state = 2}, + [364] = {.lex_state = 150, .external_lex_state = 2}, + [365] = {.lex_state = 150, .external_lex_state = 2}, + [366] = {.lex_state = 150, .external_lex_state = 2}, + [367] = {.lex_state = 150, .external_lex_state = 2}, + [368] = {.lex_state = 150, .external_lex_state = 2}, + [369] = {.lex_state = 150, .external_lex_state = 2}, + [370] = {.lex_state = 150, .external_lex_state = 2}, + [371] = {.lex_state = 150, .external_lex_state = 2}, + [372] = {.lex_state = 150, .external_lex_state = 2}, + [373] = {.lex_state = 150, .external_lex_state = 2}, + [374] = {.lex_state = 150, .external_lex_state = 2}, + [375] = {.lex_state = 150, .external_lex_state = 2}, + [376] = {.lex_state = 150, .external_lex_state = 2}, + [377] = {.lex_state = 150, .external_lex_state = 2}, + [378] = {.lex_state = 150, .external_lex_state = 2}, + [379] = {.lex_state = 150, .external_lex_state = 2}, + [380] = {.lex_state = 150, .external_lex_state = 2}, + [381] = {.lex_state = 150, .external_lex_state = 2}, + [382] = {.lex_state = 150, .external_lex_state = 2}, + [383] = {.lex_state = 150, .external_lex_state = 2}, + [384] = {.lex_state = 150, .external_lex_state = 2}, + [385] = {.lex_state = 150, .external_lex_state = 2}, + [386] = {.lex_state = 150, .external_lex_state = 2}, + [387] = {.lex_state = 150, .external_lex_state = 2}, + [388] = {.lex_state = 150, .external_lex_state = 2}, + [389] = {.lex_state = 150, .external_lex_state = 2}, + [390] = {.lex_state = 150, .external_lex_state = 2}, + [391] = {.lex_state = 150, .external_lex_state = 2}, + [392] = {.lex_state = 150, .external_lex_state = 2}, + [393] = {.lex_state = 150, .external_lex_state = 2}, + [394] = {.lex_state = 150, .external_lex_state = 2}, + [395] = {.lex_state = 150, .external_lex_state = 2}, + [396] = {.lex_state = 150, .external_lex_state = 2}, + [397] = {.lex_state = 150, .external_lex_state = 2}, + [398] = {.lex_state = 150, .external_lex_state = 2}, + [399] = {.lex_state = 150, .external_lex_state = 2}, + [400] = {.lex_state = 150, .external_lex_state = 2}, + [401] = {.lex_state = 150, .external_lex_state = 2}, + [402] = {.lex_state = 150, .external_lex_state = 2}, + [403] = {.lex_state = 150, .external_lex_state = 2}, + [404] = {.lex_state = 150, .external_lex_state = 2}, + [405] = {.lex_state = 150, .external_lex_state = 2}, + [406] = {.lex_state = 150, .external_lex_state = 2}, + [407] = {.lex_state = 150, .external_lex_state = 2}, + [408] = {.lex_state = 150, .external_lex_state = 2}, + [409] = {.lex_state = 150, .external_lex_state = 2}, + [410] = {.lex_state = 150, .external_lex_state = 2}, + [411] = {.lex_state = 150, .external_lex_state = 2}, + [412] = {.lex_state = 150, .external_lex_state = 2}, + [413] = {.lex_state = 150, .external_lex_state = 2}, + [414] = {.lex_state = 150, .external_lex_state = 2}, + [415] = {.lex_state = 150, .external_lex_state = 2}, + [416] = {.lex_state = 150, .external_lex_state = 2}, + [417] = {.lex_state = 150, .external_lex_state = 2}, + [418] = {.lex_state = 150, .external_lex_state = 2}, + [419] = {.lex_state = 150, .external_lex_state = 2}, + [420] = {.lex_state = 150, .external_lex_state = 2}, + [421] = {.lex_state = 150, .external_lex_state = 2}, + [422] = {.lex_state = 150, .external_lex_state = 2}, + [423] = {.lex_state = 150, .external_lex_state = 2}, + [424] = {.lex_state = 150, .external_lex_state = 2}, + [425] = {.lex_state = 150, .external_lex_state = 2}, + [426] = {.lex_state = 150, .external_lex_state = 2}, + [427] = {.lex_state = 150, .external_lex_state = 2}, + [428] = {.lex_state = 150, .external_lex_state = 2}, + [429] = {.lex_state = 150, .external_lex_state = 2}, + [430] = {.lex_state = 150, .external_lex_state = 2}, + [431] = {.lex_state = 150, .external_lex_state = 2}, + [432] = {.lex_state = 150, .external_lex_state = 2}, + [433] = {.lex_state = 150, .external_lex_state = 2}, + [434] = {.lex_state = 150, .external_lex_state = 2}, + [435] = {.lex_state = 150, .external_lex_state = 2}, + [436] = {.lex_state = 150, .external_lex_state = 2}, + [437] = {.lex_state = 150, .external_lex_state = 2}, + [438] = {.lex_state = 150, .external_lex_state = 2}, + [439] = {.lex_state = 150, .external_lex_state = 2}, + [440] = {.lex_state = 150, .external_lex_state = 2}, + [441] = {.lex_state = 150, .external_lex_state = 2}, + [442] = {.lex_state = 150, .external_lex_state = 2}, + [443] = {.lex_state = 150, .external_lex_state = 2}, + [444] = {.lex_state = 150, .external_lex_state = 2}, + [445] = {.lex_state = 150, .external_lex_state = 2}, + [446] = {.lex_state = 150, .external_lex_state = 2}, + [447] = {.lex_state = 150, .external_lex_state = 2}, + [448] = {.lex_state = 150, .external_lex_state = 2}, + [449] = {.lex_state = 150, .external_lex_state = 2}, + [450] = {.lex_state = 150, .external_lex_state = 2}, + [451] = {.lex_state = 150, .external_lex_state = 2}, + [452] = {.lex_state = 150, .external_lex_state = 2}, + [453] = {.lex_state = 150, .external_lex_state = 2}, + [454] = {.lex_state = 150, .external_lex_state = 2}, + [455] = {.lex_state = 150, .external_lex_state = 2}, + [456] = {.lex_state = 150, .external_lex_state = 2}, + [457] = {.lex_state = 150, .external_lex_state = 2}, + [458] = {.lex_state = 150, .external_lex_state = 2}, + [459] = {.lex_state = 150, .external_lex_state = 2}, + [460] = {.lex_state = 150, .external_lex_state = 2}, + [461] = {.lex_state = 150, .external_lex_state = 2}, + [462] = {.lex_state = 150, .external_lex_state = 2}, + [463] = {.lex_state = 150, .external_lex_state = 2}, + [464] = {.lex_state = 150, .external_lex_state = 2}, + [465] = {.lex_state = 150, .external_lex_state = 2}, + [466] = {.lex_state = 150, .external_lex_state = 2}, + [467] = {.lex_state = 150, .external_lex_state = 2}, + [468] = {.lex_state = 150, .external_lex_state = 2}, + [469] = {.lex_state = 150, .external_lex_state = 2}, + [470] = {.lex_state = 150, .external_lex_state = 2}, + [471] = {.lex_state = 150, .external_lex_state = 2}, + [472] = {.lex_state = 150, .external_lex_state = 2}, + [473] = {.lex_state = 150, .external_lex_state = 2}, + [474] = {.lex_state = 150, .external_lex_state = 2}, + [475] = {.lex_state = 150, .external_lex_state = 2}, + [476] = {.lex_state = 150, .external_lex_state = 2}, + [477] = {.lex_state = 150, .external_lex_state = 2}, + [478] = {.lex_state = 150, .external_lex_state = 2}, + [479] = {.lex_state = 150, .external_lex_state = 2}, + [480] = {.lex_state = 150, .external_lex_state = 2}, + [481] = {.lex_state = 150, .external_lex_state = 2}, + [482] = {.lex_state = 150, .external_lex_state = 2}, + [483] = {.lex_state = 150, .external_lex_state = 2}, + [484] = {.lex_state = 150, .external_lex_state = 2}, + [485] = {.lex_state = 150, .external_lex_state = 2}, + [486] = {.lex_state = 150, .external_lex_state = 2}, + [487] = {.lex_state = 150, .external_lex_state = 2}, + [488] = {.lex_state = 150, .external_lex_state = 2}, + [489] = {.lex_state = 150, .external_lex_state = 2}, + [490] = {.lex_state = 150, .external_lex_state = 2}, + [491] = {.lex_state = 150, .external_lex_state = 2}, + [492] = {.lex_state = 150, .external_lex_state = 2}, + [493] = {.lex_state = 150, .external_lex_state = 2}, + [494] = {.lex_state = 150, .external_lex_state = 2}, + [495] = {.lex_state = 150, .external_lex_state = 2}, + [496] = {.lex_state = 150, .external_lex_state = 2}, + [497] = {.lex_state = 150, .external_lex_state = 2}, + [498] = {.lex_state = 150, .external_lex_state = 2}, + [499] = {.lex_state = 150, .external_lex_state = 2}, + [500] = {.lex_state = 150, .external_lex_state = 2}, + [501] = {.lex_state = 150, .external_lex_state = 2}, + [502] = {.lex_state = 150, .external_lex_state = 2}, + [503] = {.lex_state = 150, .external_lex_state = 2}, + [504] = {.lex_state = 150, .external_lex_state = 2}, + [505] = {.lex_state = 150, .external_lex_state = 2}, + [506] = {.lex_state = 150, .external_lex_state = 2}, + [507] = {.lex_state = 150, .external_lex_state = 2}, + [508] = {.lex_state = 150, .external_lex_state = 2}, + [509] = {.lex_state = 150, .external_lex_state = 2}, + [510] = {.lex_state = 150, .external_lex_state = 2}, + [511] = {.lex_state = 150, .external_lex_state = 2}, + [512] = {.lex_state = 150, .external_lex_state = 2}, + [513] = {.lex_state = 150, .external_lex_state = 2}, + [514] = {.lex_state = 150, .external_lex_state = 2}, + [515] = {.lex_state = 150, .external_lex_state = 2}, + [516] = {.lex_state = 150, .external_lex_state = 2}, + [517] = {.lex_state = 150, .external_lex_state = 2}, + [518] = {.lex_state = 150, .external_lex_state = 2}, + [519] = {.lex_state = 150, .external_lex_state = 2}, + [520] = {.lex_state = 150, .external_lex_state = 2}, + [521] = {.lex_state = 150, .external_lex_state = 2}, + [522] = {.lex_state = 150, .external_lex_state = 2}, + [523] = {.lex_state = 150, .external_lex_state = 2}, + [524] = {.lex_state = 150, .external_lex_state = 2}, + [525] = {.lex_state = 150, .external_lex_state = 2}, + [526] = {.lex_state = 150, .external_lex_state = 2}, + [527] = {.lex_state = 150, .external_lex_state = 2}, + [528] = {.lex_state = 150, .external_lex_state = 2}, + [529] = {.lex_state = 150, .external_lex_state = 2}, + [530] = {.lex_state = 150, .external_lex_state = 2}, + [531] = {.lex_state = 150, .external_lex_state = 2}, + [532] = {.lex_state = 150, .external_lex_state = 2}, + [533] = {.lex_state = 150, .external_lex_state = 2}, + [534] = {.lex_state = 150, .external_lex_state = 2}, + [535] = {.lex_state = 150, .external_lex_state = 2}, + [536] = {.lex_state = 150, .external_lex_state = 2}, + [537] = {.lex_state = 150, .external_lex_state = 2}, + [538] = {.lex_state = 150, .external_lex_state = 2}, + [539] = {.lex_state = 150, .external_lex_state = 2}, + [540] = {.lex_state = 150, .external_lex_state = 2}, + [541] = {.lex_state = 150, .external_lex_state = 2}, + [542] = {.lex_state = 150, .external_lex_state = 2}, + [543] = {.lex_state = 150, .external_lex_state = 2}, + [544] = {.lex_state = 150, .external_lex_state = 2}, + [545] = {.lex_state = 150, .external_lex_state = 2}, + [546] = {.lex_state = 150, .external_lex_state = 2}, + [547] = {.lex_state = 150, .external_lex_state = 2}, + [548] = {.lex_state = 150, .external_lex_state = 2}, + [549] = {.lex_state = 150, .external_lex_state = 2}, + [550] = {.lex_state = 150, .external_lex_state = 2}, + [551] = {.lex_state = 150, .external_lex_state = 2}, + [552] = {.lex_state = 150, .external_lex_state = 2}, + [553] = {.lex_state = 150, .external_lex_state = 2}, + [554] = {.lex_state = 150, .external_lex_state = 2}, + [555] = {.lex_state = 150, .external_lex_state = 2}, + [556] = {.lex_state = 150, .external_lex_state = 2}, + [557] = {.lex_state = 150, .external_lex_state = 2}, + [558] = {.lex_state = 150, .external_lex_state = 2}, + [559] = {.lex_state = 150, .external_lex_state = 2}, + [560] = {.lex_state = 150, .external_lex_state = 2}, + [561] = {.lex_state = 150, .external_lex_state = 2}, + [562] = {.lex_state = 150, .external_lex_state = 2}, + [563] = {.lex_state = 150, .external_lex_state = 2}, + [564] = {.lex_state = 150, .external_lex_state = 2}, + [565] = {.lex_state = 150, .external_lex_state = 2}, + [566] = {.lex_state = 150, .external_lex_state = 2}, + [567] = {.lex_state = 150, .external_lex_state = 2}, + [568] = {.lex_state = 150, .external_lex_state = 2}, + [569] = {.lex_state = 150, .external_lex_state = 2}, + [570] = {.lex_state = 150, .external_lex_state = 2}, + [571] = {.lex_state = 150, .external_lex_state = 2}, + [572] = {.lex_state = 150, .external_lex_state = 2}, + [573] = {.lex_state = 150, .external_lex_state = 2}, + [574] = {.lex_state = 150, .external_lex_state = 2}, + [575] = {.lex_state = 150, .external_lex_state = 2}, + [576] = {.lex_state = 150, .external_lex_state = 2}, + [577] = {.lex_state = 150, .external_lex_state = 2}, + [578] = {.lex_state = 150, .external_lex_state = 2}, + [579] = {.lex_state = 150, .external_lex_state = 2}, + [580] = {.lex_state = 150, .external_lex_state = 2}, + [581] = {.lex_state = 150, .external_lex_state = 2}, + [582] = {.lex_state = 150, .external_lex_state = 2}, + [583] = {.lex_state = 150, .external_lex_state = 2}, + [584] = {.lex_state = 150, .external_lex_state = 2}, + [585] = {.lex_state = 150, .external_lex_state = 2}, + [586] = {.lex_state = 150, .external_lex_state = 2}, + [587] = {.lex_state = 150, .external_lex_state = 2}, + [588] = {.lex_state = 150, .external_lex_state = 2}, + [589] = {.lex_state = 150, .external_lex_state = 2}, + [590] = {.lex_state = 150, .external_lex_state = 2}, + [591] = {.lex_state = 150, .external_lex_state = 2}, + [592] = {.lex_state = 150, .external_lex_state = 2}, + [593] = {.lex_state = 150, .external_lex_state = 2}, + [594] = {.lex_state = 150, .external_lex_state = 2}, + [595] = {.lex_state = 150, .external_lex_state = 2}, + [596] = {.lex_state = 150, .external_lex_state = 2}, + [597] = {.lex_state = 150, .external_lex_state = 2}, + [598] = {.lex_state = 150, .external_lex_state = 2}, + [599] = {.lex_state = 150, .external_lex_state = 2}, + [600] = {.lex_state = 150, .external_lex_state = 2}, + [601] = {.lex_state = 150, .external_lex_state = 2}, + [602] = {.lex_state = 150, .external_lex_state = 2}, + [603] = {.lex_state = 150, .external_lex_state = 2}, + [604] = {.lex_state = 150, .external_lex_state = 2}, + [605] = {.lex_state = 150, .external_lex_state = 2}, + [606] = {.lex_state = 150, .external_lex_state = 2}, + [607] = {.lex_state = 150, .external_lex_state = 2}, + [608] = {.lex_state = 150, .external_lex_state = 2}, + [609] = {.lex_state = 150, .external_lex_state = 2}, + [610] = {.lex_state = 150, .external_lex_state = 2}, + [611] = {.lex_state = 150, .external_lex_state = 2}, + [612] = {.lex_state = 150, .external_lex_state = 2}, + [613] = {.lex_state = 150, .external_lex_state = 2}, + [614] = {.lex_state = 150, .external_lex_state = 2}, + [615] = {.lex_state = 150, .external_lex_state = 2}, + [616] = {.lex_state = 150, .external_lex_state = 2}, + [617] = {.lex_state = 150, .external_lex_state = 2}, + [618] = {.lex_state = 150, .external_lex_state = 2}, + [619] = {.lex_state = 150, .external_lex_state = 2}, + [620] = {.lex_state = 150, .external_lex_state = 2}, + [621] = {.lex_state = 150, .external_lex_state = 2}, + [622] = {.lex_state = 150, .external_lex_state = 2}, + [623] = {.lex_state = 150, .external_lex_state = 2}, + [624] = {.lex_state = 150, .external_lex_state = 2}, + [625] = {.lex_state = 150, .external_lex_state = 2}, + [626] = {.lex_state = 150, .external_lex_state = 2}, + [627] = {.lex_state = 150, .external_lex_state = 2}, [628] = {.lex_state = 7, .external_lex_state = 4}, [629] = {.lex_state = 7, .external_lex_state = 4}, [630] = {.lex_state = 7, .external_lex_state = 4}, @@ -14680,20 +16397,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [642] = {.lex_state = 6, .external_lex_state = 4}, [643] = {.lex_state = 6, .external_lex_state = 4}, [644] = {.lex_state = 6, .external_lex_state = 4}, - [645] = {.lex_state = 151, .external_lex_state = 2}, + [645] = {.lex_state = 6, .external_lex_state = 4}, [646] = {.lex_state = 6, .external_lex_state = 4}, [647] = {.lex_state = 6, .external_lex_state = 4}, - [648] = {.lex_state = 151, .external_lex_state = 2}, - [649] = {.lex_state = 6, .external_lex_state = 4}, - [650] = {.lex_state = 6, .external_lex_state = 4}, - [651] = {.lex_state = 6, .external_lex_state = 4}, - [652] = {.lex_state = 151, .external_lex_state = 2}, - [653] = {.lex_state = 151, .external_lex_state = 2}, - [654] = {.lex_state = 151, .external_lex_state = 2}, - [655] = {.lex_state = 6, .external_lex_state = 4}, - [656] = {.lex_state = 151, .external_lex_state = 2}, - [657] = {.lex_state = 6, .external_lex_state = 4}, - [658] = {.lex_state = 151, .external_lex_state = 2}, + [648] = {.lex_state = 6, .external_lex_state = 4}, + [649] = {.lex_state = 150, .external_lex_state = 2}, + [650] = {.lex_state = 150, .external_lex_state = 2}, + [651] = {.lex_state = 150, .external_lex_state = 2}, + [652] = {.lex_state = 6, .external_lex_state = 4}, + [653] = {.lex_state = 150, .external_lex_state = 2}, + [654] = {.lex_state = 6, .external_lex_state = 4}, + [655] = {.lex_state = 150, .external_lex_state = 2}, + [656] = {.lex_state = 150, .external_lex_state = 2}, + [657] = {.lex_state = 150, .external_lex_state = 2}, + [658] = {.lex_state = 6, .external_lex_state = 4}, [659] = {.lex_state = 6, .external_lex_state = 4}, [660] = {.lex_state = 6, .external_lex_state = 4}, [661] = {.lex_state = 6, .external_lex_state = 4}, @@ -14709,202 +16426,202 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [671] = {.lex_state = 6, .external_lex_state = 3}, [672] = {.lex_state = 6, .external_lex_state = 3}, [673] = {.lex_state = 6, .external_lex_state = 4}, - [674] = {.lex_state = 6, .external_lex_state = 3}, + [674] = {.lex_state = 6, .external_lex_state = 4}, [675] = {.lex_state = 6, .external_lex_state = 4}, - [676] = {.lex_state = 6, .external_lex_state = 4}, + [676] = {.lex_state = 6, .external_lex_state = 3}, [677] = {.lex_state = 6, .external_lex_state = 4}, [678] = {.lex_state = 6, .external_lex_state = 4}, [679] = {.lex_state = 6, .external_lex_state = 4}, [680] = {.lex_state = 6, .external_lex_state = 4}, [681] = {.lex_state = 6, .external_lex_state = 4}, - [682] = {.lex_state = 6, .external_lex_state = 3}, - [683] = {.lex_state = 151, .external_lex_state = 5}, - [684] = {.lex_state = 7, .external_lex_state = 3}, - [685] = {.lex_state = 7, .external_lex_state = 3}, - [686] = {.lex_state = 151, .external_lex_state = 2}, - [687] = {.lex_state = 151, .external_lex_state = 5}, + [682] = {.lex_state = 150, .external_lex_state = 5}, + [683] = {.lex_state = 6, .external_lex_state = 3}, + [684] = {.lex_state = 150, .external_lex_state = 2}, + [685] = {.lex_state = 150, .external_lex_state = 5}, + [686] = {.lex_state = 7, .external_lex_state = 3}, + [687] = {.lex_state = 7, .external_lex_state = 3}, [688] = {.lex_state = 6, .external_lex_state = 3}, - [689] = {.lex_state = 151, .external_lex_state = 5}, - [690] = {.lex_state = 151, .external_lex_state = 2}, - [691] = {.lex_state = 151, .external_lex_state = 5}, - [692] = {.lex_state = 6, .external_lex_state = 4}, + [689] = {.lex_state = 6, .external_lex_state = 3}, + [690] = {.lex_state = 6, .external_lex_state = 4}, + [691] = {.lex_state = 6, .external_lex_state = 4}, + [692] = {.lex_state = 150, .external_lex_state = 2}, [693] = {.lex_state = 6, .external_lex_state = 3}, - [694] = {.lex_state = 151, .external_lex_state = 5}, - [695] = {.lex_state = 6, .external_lex_state = 4}, - [696] = {.lex_state = 6, .external_lex_state = 4}, - [697] = {.lex_state = 6, .external_lex_state = 3}, - [698] = {.lex_state = 6, .external_lex_state = 3}, - [699] = {.lex_state = 151, .external_lex_state = 5}, - [700] = {.lex_state = 6, .external_lex_state = 4}, - [701] = {.lex_state = 151, .external_lex_state = 2}, - [702] = {.lex_state = 6, .external_lex_state = 3}, - [703] = {.lex_state = 151, .external_lex_state = 5}, - [704] = {.lex_state = 151, .external_lex_state = 5}, - [705] = {.lex_state = 6, .external_lex_state = 4}, - [706] = {.lex_state = 151, .external_lex_state = 2}, - [707] = {.lex_state = 6, .external_lex_state = 3}, - [708] = {.lex_state = 6, .external_lex_state = 3}, - [709] = {.lex_state = 151, .external_lex_state = 2}, + [694] = {.lex_state = 6, .external_lex_state = 3}, + [695] = {.lex_state = 150, .external_lex_state = 5}, + [696] = {.lex_state = 150, .external_lex_state = 5}, + [697] = {.lex_state = 150, .external_lex_state = 5}, + [698] = {.lex_state = 6, .external_lex_state = 4}, + [699] = {.lex_state = 150, .external_lex_state = 5}, + [700] = {.lex_state = 150, .external_lex_state = 5}, + [701] = {.lex_state = 6, .external_lex_state = 4}, + [702] = {.lex_state = 150, .external_lex_state = 5}, + [703] = {.lex_state = 6, .external_lex_state = 4}, + [704] = {.lex_state = 150, .external_lex_state = 2}, + [705] = {.lex_state = 6, .external_lex_state = 3}, + [706] = {.lex_state = 150, .external_lex_state = 2}, + [707] = {.lex_state = 150, .external_lex_state = 2}, + [708] = {.lex_state = 150, .external_lex_state = 2}, + [709] = {.lex_state = 6, .external_lex_state = 3}, [710] = {.lex_state = 6, .external_lex_state = 3}, - [711] = {.lex_state = 151, .external_lex_state = 2}, + [711] = {.lex_state = 6, .external_lex_state = 3}, [712] = {.lex_state = 6, .external_lex_state = 3}, [713] = {.lex_state = 6, .external_lex_state = 3}, [714] = {.lex_state = 6, .external_lex_state = 3}, - [715] = {.lex_state = 151, .external_lex_state = 5}, - [716] = {.lex_state = 151, .external_lex_state = 5}, - [717] = {.lex_state = 151, .external_lex_state = 5}, - [718] = {.lex_state = 151, .external_lex_state = 5}, - [719] = {.lex_state = 151, .external_lex_state = 5}, - [720] = {.lex_state = 151, .external_lex_state = 5}, - [721] = {.lex_state = 151, .external_lex_state = 2}, - [722] = {.lex_state = 151, .external_lex_state = 2}, - [723] = {.lex_state = 151, .external_lex_state = 5}, - [724] = {.lex_state = 151, .external_lex_state = 5}, - [725] = {.lex_state = 151, .external_lex_state = 2}, - [726] = {.lex_state = 6, .external_lex_state = 3}, - [727] = {.lex_state = 6, .external_lex_state = 3}, - [728] = {.lex_state = 151, .external_lex_state = 5}, - [729] = {.lex_state = 6, .external_lex_state = 3}, - [730] = {.lex_state = 151, .external_lex_state = 5}, - [731] = {.lex_state = 151, .external_lex_state = 2}, - [732] = {.lex_state = 151, .external_lex_state = 5}, + [715] = {.lex_state = 150, .external_lex_state = 5}, + [716] = {.lex_state = 150, .external_lex_state = 5}, + [717] = {.lex_state = 150, .external_lex_state = 2}, + [718] = {.lex_state = 150, .external_lex_state = 2}, + [719] = {.lex_state = 150, .external_lex_state = 5}, + [720] = {.lex_state = 150, .external_lex_state = 5}, + [721] = {.lex_state = 150, .external_lex_state = 2}, + [722] = {.lex_state = 150, .external_lex_state = 2}, + [723] = {.lex_state = 6, .external_lex_state = 3}, + [724] = {.lex_state = 150, .external_lex_state = 2}, + [725] = {.lex_state = 6, .external_lex_state = 3}, + [726] = {.lex_state = 150, .external_lex_state = 2}, + [727] = {.lex_state = 150, .external_lex_state = 5}, + [728] = {.lex_state = 150, .external_lex_state = 5}, + [729] = {.lex_state = 150, .external_lex_state = 5}, + [730] = {.lex_state = 6, .external_lex_state = 3}, + [731] = {.lex_state = 6, .external_lex_state = 3}, + [732] = {.lex_state = 150, .external_lex_state = 2}, [733] = {.lex_state = 6, .external_lex_state = 3}, - [734] = {.lex_state = 151, .external_lex_state = 2}, - [735] = {.lex_state = 151, .external_lex_state = 5}, - [736] = {.lex_state = 151, .external_lex_state = 5}, - [737] = {.lex_state = 151, .external_lex_state = 2}, - [738] = {.lex_state = 151, .external_lex_state = 2}, - [739] = {.lex_state = 151, .external_lex_state = 2}, - [740] = {.lex_state = 6, .external_lex_state = 3}, - [741] = {.lex_state = 151, .external_lex_state = 2}, + [734] = {.lex_state = 150, .external_lex_state = 2}, + [735] = {.lex_state = 150, .external_lex_state = 5}, + [736] = {.lex_state = 150, .external_lex_state = 5}, + [737] = {.lex_state = 6, .external_lex_state = 3}, + [738] = {.lex_state = 150, .external_lex_state = 2}, + [739] = {.lex_state = 6, .external_lex_state = 3}, + [740] = {.lex_state = 150, .external_lex_state = 5}, + [741] = {.lex_state = 6, .external_lex_state = 3}, [742] = {.lex_state = 6, .external_lex_state = 3}, - [743] = {.lex_state = 6, .external_lex_state = 3}, - [744] = {.lex_state = 6, .external_lex_state = 3}, - [745] = {.lex_state = 6, .external_lex_state = 3}, - [746] = {.lex_state = 151, .external_lex_state = 5}, + [743] = {.lex_state = 150, .external_lex_state = 5}, + [744] = {.lex_state = 150, .external_lex_state = 5}, + [745] = {.lex_state = 150, .external_lex_state = 5}, + [746] = {.lex_state = 150, .external_lex_state = 5}, [747] = {.lex_state = 6, .external_lex_state = 3}, - [748] = {.lex_state = 151, .external_lex_state = 5}, - [749] = {.lex_state = 151, .external_lex_state = 2}, - [750] = {.lex_state = 151, .external_lex_state = 2}, - [751] = {.lex_state = 151, .external_lex_state = 2}, - [752] = {.lex_state = 151, .external_lex_state = 2}, - [753] = {.lex_state = 151, .external_lex_state = 2}, - [754] = {.lex_state = 151, .external_lex_state = 2}, - [755] = {.lex_state = 151, .external_lex_state = 2}, - [756] = {.lex_state = 151, .external_lex_state = 2}, - [757] = {.lex_state = 151, .external_lex_state = 2}, - [758] = {.lex_state = 151, .external_lex_state = 2}, - [759] = {.lex_state = 151, .external_lex_state = 2}, - [760] = {.lex_state = 151, .external_lex_state = 2}, - [761] = {.lex_state = 151, .external_lex_state = 2}, - [762] = {.lex_state = 151, .external_lex_state = 2}, - [763] = {.lex_state = 151, .external_lex_state = 2}, - [764] = {.lex_state = 151, .external_lex_state = 2}, - [765] = {.lex_state = 151, .external_lex_state = 2}, - [766] = {.lex_state = 151, .external_lex_state = 2}, - [767] = {.lex_state = 151, .external_lex_state = 2}, - [768] = {.lex_state = 151, .external_lex_state = 2}, - [769] = {.lex_state = 151, .external_lex_state = 2}, - [770] = {.lex_state = 151, .external_lex_state = 2}, - [771] = {.lex_state = 151, .external_lex_state = 2}, - [772] = {.lex_state = 151, .external_lex_state = 2}, - [773] = {.lex_state = 151, .external_lex_state = 2}, - [774] = {.lex_state = 151, .external_lex_state = 2}, - [775] = {.lex_state = 13, .external_lex_state = 2}, - [776] = {.lex_state = 151, .external_lex_state = 2}, - [777] = {.lex_state = 151, .external_lex_state = 2}, - [778] = {.lex_state = 151, .external_lex_state = 2}, - [779] = {.lex_state = 151, .external_lex_state = 2}, - [780] = {.lex_state = 151, .external_lex_state = 2}, - [781] = {.lex_state = 151, .external_lex_state = 2}, - [782] = {.lex_state = 151, .external_lex_state = 2}, - [783] = {.lex_state = 13, .external_lex_state = 2}, - [784] = {.lex_state = 151, .external_lex_state = 2}, - [785] = {.lex_state = 151, .external_lex_state = 2}, - [786] = {.lex_state = 13, .external_lex_state = 2}, - [787] = {.lex_state = 151, .external_lex_state = 2}, - [788] = {.lex_state = 151, .external_lex_state = 2}, - [789] = {.lex_state = 151, .external_lex_state = 2}, - [790] = {.lex_state = 151, .external_lex_state = 2}, - [791] = {.lex_state = 13, .external_lex_state = 2}, - [792] = {.lex_state = 151, .external_lex_state = 2}, - [793] = {.lex_state = 151, .external_lex_state = 2}, - [794] = {.lex_state = 151, .external_lex_state = 2}, - [795] = {.lex_state = 151, .external_lex_state = 2}, - [796] = {.lex_state = 151, .external_lex_state = 2}, - [797] = {.lex_state = 151, .external_lex_state = 2}, - [798] = {.lex_state = 151, .external_lex_state = 2}, - [799] = {.lex_state = 151, .external_lex_state = 2}, - [800] = {.lex_state = 151, .external_lex_state = 2}, - [801] = {.lex_state = 151, .external_lex_state = 2}, - [802] = {.lex_state = 151, .external_lex_state = 2}, - [803] = {.lex_state = 151, .external_lex_state = 2}, - [804] = {.lex_state = 151, .external_lex_state = 2}, - [805] = {.lex_state = 151, .external_lex_state = 2}, - [806] = {.lex_state = 151, .external_lex_state = 2}, - [807] = {.lex_state = 151, .external_lex_state = 2}, - [808] = {.lex_state = 151, .external_lex_state = 2}, - [809] = {.lex_state = 151, .external_lex_state = 2}, - [810] = {.lex_state = 151, .external_lex_state = 2}, - [811] = {.lex_state = 151, .external_lex_state = 2}, - [812] = {.lex_state = 151, .external_lex_state = 2}, - [813] = {.lex_state = 151, .external_lex_state = 2}, - [814] = {.lex_state = 151, .external_lex_state = 2}, - [815] = {.lex_state = 151, .external_lex_state = 2}, - [816] = {.lex_state = 151, .external_lex_state = 2}, - [817] = {.lex_state = 151, .external_lex_state = 2}, - [818] = {.lex_state = 151, .external_lex_state = 2}, - [819] = {.lex_state = 151, .external_lex_state = 2}, - [820] = {.lex_state = 151, .external_lex_state = 2}, - [821] = {.lex_state = 151, .external_lex_state = 2}, - [822] = {.lex_state = 151, .external_lex_state = 2}, - [823] = {.lex_state = 151, .external_lex_state = 2}, - [824] = {.lex_state = 151, .external_lex_state = 2}, - [825] = {.lex_state = 151, .external_lex_state = 2}, - [826] = {.lex_state = 151, .external_lex_state = 2}, - [827] = {.lex_state = 151, .external_lex_state = 2}, - [828] = {.lex_state = 151, .external_lex_state = 2}, - [829] = {.lex_state = 151, .external_lex_state = 2}, - [830] = {.lex_state = 151, .external_lex_state = 2}, - [831] = {.lex_state = 151, .external_lex_state = 2}, - [832] = {.lex_state = 151, .external_lex_state = 2}, - [833] = {.lex_state = 151, .external_lex_state = 2}, - [834] = {.lex_state = 151, .external_lex_state = 2}, - [835] = {.lex_state = 151, .external_lex_state = 2}, - [836] = {.lex_state = 151, .external_lex_state = 2}, - [837] = {.lex_state = 151, .external_lex_state = 2}, - [838] = {.lex_state = 151, .external_lex_state = 2}, - [839] = {.lex_state = 151, .external_lex_state = 2}, - [840] = {.lex_state = 151, .external_lex_state = 2}, - [841] = {.lex_state = 151, .external_lex_state = 2}, - [842] = {.lex_state = 151, .external_lex_state = 2}, - [843] = {.lex_state = 151, .external_lex_state = 2}, - [844] = {.lex_state = 151, .external_lex_state = 2}, - [845] = {.lex_state = 151, .external_lex_state = 2}, - [846] = {.lex_state = 151, .external_lex_state = 2}, - [847] = {.lex_state = 13, .external_lex_state = 2}, - [848] = {.lex_state = 151, .external_lex_state = 2}, - [849] = {.lex_state = 151, .external_lex_state = 2}, - [850] = {.lex_state = 151, .external_lex_state = 2}, - [851] = {.lex_state = 151, .external_lex_state = 2}, - [852] = {.lex_state = 151, .external_lex_state = 2}, - [853] = {.lex_state = 151, .external_lex_state = 2}, - [854] = {.lex_state = 151, .external_lex_state = 2}, - [855] = {.lex_state = 151, .external_lex_state = 2}, - [856] = {.lex_state = 151, .external_lex_state = 2}, - [857] = {.lex_state = 151, .external_lex_state = 2}, - [858] = {.lex_state = 151, .external_lex_state = 2}, - [859] = {.lex_state = 151, .external_lex_state = 2}, - [860] = {.lex_state = 151, .external_lex_state = 2}, - [861] = {.lex_state = 151, .external_lex_state = 2}, - [862] = {.lex_state = 151, .external_lex_state = 2}, - [863] = {.lex_state = 151, .external_lex_state = 2}, - [864] = {.lex_state = 151, .external_lex_state = 2}, - [865] = {.lex_state = 151, .external_lex_state = 2}, - [866] = {.lex_state = 151, .external_lex_state = 2}, - [867] = {.lex_state = 151, .external_lex_state = 2}, - [868] = {.lex_state = 151, .external_lex_state = 2}, - [869] = {.lex_state = 151, .external_lex_state = 2}, + [748] = {.lex_state = 150, .external_lex_state = 5}, + [749] = {.lex_state = 150, .external_lex_state = 2}, + [750] = {.lex_state = 150, .external_lex_state = 2}, + [751] = {.lex_state = 150, .external_lex_state = 2}, + [752] = {.lex_state = 150, .external_lex_state = 2}, + [753] = {.lex_state = 150, .external_lex_state = 2}, + [754] = {.lex_state = 150, .external_lex_state = 2}, + [755] = {.lex_state = 150, .external_lex_state = 2}, + [756] = {.lex_state = 150, .external_lex_state = 2}, + [757] = {.lex_state = 13, .external_lex_state = 2}, + [758] = {.lex_state = 150, .external_lex_state = 2}, + [759] = {.lex_state = 150, .external_lex_state = 2}, + [760] = {.lex_state = 150, .external_lex_state = 2}, + [761] = {.lex_state = 150, .external_lex_state = 2}, + [762] = {.lex_state = 150, .external_lex_state = 2}, + [763] = {.lex_state = 150, .external_lex_state = 2}, + [764] = {.lex_state = 150, .external_lex_state = 2}, + [765] = {.lex_state = 150, .external_lex_state = 2}, + [766] = {.lex_state = 150, .external_lex_state = 2}, + [767] = {.lex_state = 150, .external_lex_state = 2}, + [768] = {.lex_state = 150, .external_lex_state = 2}, + [769] = {.lex_state = 150, .external_lex_state = 2}, + [770] = {.lex_state = 150, .external_lex_state = 2}, + [771] = {.lex_state = 150, .external_lex_state = 2}, + [772] = {.lex_state = 150, .external_lex_state = 2}, + [773] = {.lex_state = 150, .external_lex_state = 2}, + [774] = {.lex_state = 150, .external_lex_state = 2}, + [775] = {.lex_state = 150, .external_lex_state = 2}, + [776] = {.lex_state = 150, .external_lex_state = 2}, + [777] = {.lex_state = 150, .external_lex_state = 2}, + [778] = {.lex_state = 150, .external_lex_state = 2}, + [779] = {.lex_state = 150, .external_lex_state = 2}, + [780] = {.lex_state = 150, .external_lex_state = 2}, + [781] = {.lex_state = 150, .external_lex_state = 2}, + [782] = {.lex_state = 150, .external_lex_state = 2}, + [783] = {.lex_state = 150, .external_lex_state = 2}, + [784] = {.lex_state = 150, .external_lex_state = 2}, + [785] = {.lex_state = 150, .external_lex_state = 2}, + [786] = {.lex_state = 150, .external_lex_state = 2}, + [787] = {.lex_state = 150, .external_lex_state = 2}, + [788] = {.lex_state = 150, .external_lex_state = 2}, + [789] = {.lex_state = 150, .external_lex_state = 2}, + [790] = {.lex_state = 150, .external_lex_state = 2}, + [791] = {.lex_state = 150, .external_lex_state = 2}, + [792] = {.lex_state = 150, .external_lex_state = 2}, + [793] = {.lex_state = 150, .external_lex_state = 2}, + [794] = {.lex_state = 150, .external_lex_state = 2}, + [795] = {.lex_state = 150, .external_lex_state = 2}, + [796] = {.lex_state = 150, .external_lex_state = 2}, + [797] = {.lex_state = 150, .external_lex_state = 2}, + [798] = {.lex_state = 150, .external_lex_state = 2}, + [799] = {.lex_state = 150, .external_lex_state = 2}, + [800] = {.lex_state = 150, .external_lex_state = 2}, + [801] = {.lex_state = 150, .external_lex_state = 2}, + [802] = {.lex_state = 150, .external_lex_state = 2}, + [803] = {.lex_state = 150, .external_lex_state = 2}, + [804] = {.lex_state = 150, .external_lex_state = 2}, + [805] = {.lex_state = 150, .external_lex_state = 2}, + [806] = {.lex_state = 150, .external_lex_state = 2}, + [807] = {.lex_state = 150, .external_lex_state = 2}, + [808] = {.lex_state = 150, .external_lex_state = 2}, + [809] = {.lex_state = 13, .external_lex_state = 2}, + [810] = {.lex_state = 150, .external_lex_state = 2}, + [811] = {.lex_state = 150, .external_lex_state = 2}, + [812] = {.lex_state = 150, .external_lex_state = 2}, + [813] = {.lex_state = 150, .external_lex_state = 2}, + [814] = {.lex_state = 150, .external_lex_state = 2}, + [815] = {.lex_state = 150, .external_lex_state = 2}, + [816] = {.lex_state = 13, .external_lex_state = 2}, + [817] = {.lex_state = 150, .external_lex_state = 2}, + [818] = {.lex_state = 150, .external_lex_state = 2}, + [819] = {.lex_state = 150, .external_lex_state = 2}, + [820] = {.lex_state = 150, .external_lex_state = 2}, + [821] = {.lex_state = 150, .external_lex_state = 2}, + [822] = {.lex_state = 150, .external_lex_state = 2}, + [823] = {.lex_state = 150, .external_lex_state = 2}, + [824] = {.lex_state = 13, .external_lex_state = 2}, + [825] = {.lex_state = 13, .external_lex_state = 2}, + [826] = {.lex_state = 150, .external_lex_state = 2}, + [827] = {.lex_state = 150, .external_lex_state = 2}, + [828] = {.lex_state = 150, .external_lex_state = 2}, + [829] = {.lex_state = 150, .external_lex_state = 2}, + [830] = {.lex_state = 150, .external_lex_state = 2}, + [831] = {.lex_state = 150, .external_lex_state = 2}, + [832] = {.lex_state = 150, .external_lex_state = 2}, + [833] = {.lex_state = 150, .external_lex_state = 2}, + [834] = {.lex_state = 150, .external_lex_state = 2}, + [835] = {.lex_state = 150, .external_lex_state = 2}, + [836] = {.lex_state = 150, .external_lex_state = 2}, + [837] = {.lex_state = 150, .external_lex_state = 2}, + [838] = {.lex_state = 150, .external_lex_state = 2}, + [839] = {.lex_state = 150, .external_lex_state = 2}, + [840] = {.lex_state = 150, .external_lex_state = 2}, + [841] = {.lex_state = 150, .external_lex_state = 2}, + [842] = {.lex_state = 150, .external_lex_state = 2}, + [843] = {.lex_state = 150, .external_lex_state = 2}, + [844] = {.lex_state = 150, .external_lex_state = 2}, + [845] = {.lex_state = 150, .external_lex_state = 2}, + [846] = {.lex_state = 150, .external_lex_state = 2}, + [847] = {.lex_state = 150, .external_lex_state = 2}, + [848] = {.lex_state = 150, .external_lex_state = 2}, + [849] = {.lex_state = 150, .external_lex_state = 2}, + [850] = {.lex_state = 150, .external_lex_state = 2}, + [851] = {.lex_state = 150, .external_lex_state = 2}, + [852] = {.lex_state = 150, .external_lex_state = 2}, + [853] = {.lex_state = 150, .external_lex_state = 2}, + [854] = {.lex_state = 150, .external_lex_state = 2}, + [855] = {.lex_state = 150, .external_lex_state = 2}, + [856] = {.lex_state = 150, .external_lex_state = 2}, + [857] = {.lex_state = 150, .external_lex_state = 2}, + [858] = {.lex_state = 150, .external_lex_state = 2}, + [859] = {.lex_state = 150, .external_lex_state = 2}, + [860] = {.lex_state = 150, .external_lex_state = 2}, + [861] = {.lex_state = 150, .external_lex_state = 2}, + [862] = {.lex_state = 150, .external_lex_state = 2}, + [863] = {.lex_state = 150, .external_lex_state = 2}, + [864] = {.lex_state = 150, .external_lex_state = 2}, + [865] = {.lex_state = 150, .external_lex_state = 2}, + [866] = {.lex_state = 150, .external_lex_state = 2}, + [867] = {.lex_state = 150, .external_lex_state = 2}, + [868] = {.lex_state = 150, .external_lex_state = 2}, + [869] = {.lex_state = 150, .external_lex_state = 2}, [870] = {.lex_state = 13, .external_lex_state = 2}, [871] = {.lex_state = 13, .external_lex_state = 2}, [872] = {.lex_state = 13, .external_lex_state = 2}, @@ -14916,19 +16633,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [878] = {.lex_state = 13, .external_lex_state = 2}, [879] = {.lex_state = 13, .external_lex_state = 2}, [880] = {.lex_state = 13, .external_lex_state = 2}, - [881] = {.lex_state = 151, .external_lex_state = 2}, - [882] = {.lex_state = 151, .external_lex_state = 2}, - [883] = {.lex_state = 151, .external_lex_state = 2}, - [884] = {.lex_state = 151, .external_lex_state = 2}, - [885] = {.lex_state = 151, .external_lex_state = 2}, - [886] = {.lex_state = 151, .external_lex_state = 2}, - [887] = {.lex_state = 151, .external_lex_state = 2}, - [888] = {.lex_state = 151, .external_lex_state = 2}, - [889] = {.lex_state = 151, .external_lex_state = 2}, - [890] = {.lex_state = 151, .external_lex_state = 2}, - [891] = {.lex_state = 151, .external_lex_state = 2}, - [892] = {.lex_state = 151, .external_lex_state = 2}, - [893] = {.lex_state = 151, .external_lex_state = 2}, + [881] = {.lex_state = 150, .external_lex_state = 2}, + [882] = {.lex_state = 150, .external_lex_state = 2}, + [883] = {.lex_state = 150, .external_lex_state = 2}, + [884] = {.lex_state = 150, .external_lex_state = 2}, + [885] = {.lex_state = 150, .external_lex_state = 2}, + [886] = {.lex_state = 150, .external_lex_state = 2}, + [887] = {.lex_state = 150, .external_lex_state = 2}, + [888] = {.lex_state = 150, .external_lex_state = 2}, + [889] = {.lex_state = 150, .external_lex_state = 2}, + [890] = {.lex_state = 150, .external_lex_state = 2}, + [891] = {.lex_state = 150, .external_lex_state = 2}, + [892] = {.lex_state = 150, .external_lex_state = 2}, + [893] = {.lex_state = 150, .external_lex_state = 2}, [894] = {.lex_state = 13, .external_lex_state = 2}, [895] = {.lex_state = 13, .external_lex_state = 2}, [896] = {.lex_state = 13, .external_lex_state = 2}, @@ -14946,14 +16663,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [908] = {.lex_state = 13, .external_lex_state = 2}, [909] = {.lex_state = 13, .external_lex_state = 2}, [910] = {.lex_state = 13, .external_lex_state = 2}, - [911] = {.lex_state = 15, .external_lex_state = 2}, - [912] = {.lex_state = 15, .external_lex_state = 2}, - [913] = {.lex_state = 15, .external_lex_state = 2}, + [911] = {.lex_state = 13, .external_lex_state = 2}, + [912] = {.lex_state = 13, .external_lex_state = 2}, + [913] = {.lex_state = 13, .external_lex_state = 2}, [914] = {.lex_state = 13, .external_lex_state = 2}, [915] = {.lex_state = 13, .external_lex_state = 2}, [916] = {.lex_state = 13, .external_lex_state = 2}, [917] = {.lex_state = 13, .external_lex_state = 2}, - [918] = {.lex_state = 17, .external_lex_state = 2}, + [918] = {.lex_state = 16, .external_lex_state = 2}, [919] = {.lex_state = 13, .external_lex_state = 2}, [920] = {.lex_state = 13, .external_lex_state = 2}, [921] = {.lex_state = 13, .external_lex_state = 2}, @@ -15120,9 +16837,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1082] = {.lex_state = 13, .external_lex_state = 2}, [1083] = {.lex_state = 13, .external_lex_state = 2}, [1084] = {.lex_state = 13, .external_lex_state = 2}, - [1085] = {.lex_state = 13, .external_lex_state = 2}, - [1086] = {.lex_state = 13, .external_lex_state = 2}, - [1087] = {.lex_state = 13, .external_lex_state = 2}, + [1085] = {.lex_state = 14, .external_lex_state = 2}, + [1086] = {.lex_state = 14, .external_lex_state = 2}, + [1087] = {.lex_state = 14, .external_lex_state = 2}, [1088] = {.lex_state = 14, .external_lex_state = 2}, [1089] = {.lex_state = 14, .external_lex_state = 2}, [1090] = {.lex_state = 14, .external_lex_state = 2}, @@ -15132,122 +16849,122 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1094] = {.lex_state = 14, .external_lex_state = 2}, [1095] = {.lex_state = 14, .external_lex_state = 2}, [1096] = {.lex_state = 14, .external_lex_state = 2}, - [1097] = {.lex_state = 14, .external_lex_state = 2}, - [1098] = {.lex_state = 14, .external_lex_state = 2}, - [1099] = {.lex_state = 14, .external_lex_state = 2}, + [1097] = {.lex_state = 7, .external_lex_state = 4}, + [1098] = {.lex_state = 6, .external_lex_state = 4}, + [1099] = {.lex_state = 6, .external_lex_state = 4}, [1100] = {.lex_state = 6, .external_lex_state = 4}, - [1101] = {.lex_state = 7, .external_lex_state = 4}, - [1102] = {.lex_state = 6, .external_lex_state = 4}, - [1103] = {.lex_state = 7, .external_lex_state = 4}, - [1104] = {.lex_state = 6, .external_lex_state = 4}, + [1101] = {.lex_state = 6, .external_lex_state = 4}, + [1102] = {.lex_state = 7, .external_lex_state = 4}, + [1103] = {.lex_state = 6, .external_lex_state = 4}, + [1104] = {.lex_state = 7, .external_lex_state = 4}, [1105] = {.lex_state = 6, .external_lex_state = 4}, - [1106] = {.lex_state = 6, .external_lex_state = 4}, - [1107] = {.lex_state = 6, .external_lex_state = 4}, - [1108] = {.lex_state = 7, .external_lex_state = 4}, - [1109] = {.lex_state = 6, .external_lex_state = 3}, - [1110] = {.lex_state = 6, .external_lex_state = 3}, + [1106] = {.lex_state = 6, .external_lex_state = 3}, + [1107] = {.lex_state = 6, .external_lex_state = 3}, + [1108] = {.lex_state = 6, .external_lex_state = 3}, + [1109] = {.lex_state = 150, .external_lex_state = 2}, + [1110] = {.lex_state = 150, .external_lex_state = 2}, [1111] = {.lex_state = 6, .external_lex_state = 3}, [1112] = {.lex_state = 14, .external_lex_state = 2}, [1113] = {.lex_state = 6, .external_lex_state = 3}, - [1114] = {.lex_state = 6, .external_lex_state = 3}, + [1114] = {.lex_state = 150, .external_lex_state = 2}, [1115] = {.lex_state = 14, .external_lex_state = 2}, [1116] = {.lex_state = 6, .external_lex_state = 4}, [1117] = {.lex_state = 6, .external_lex_state = 4}, - [1118] = {.lex_state = 6, .external_lex_state = 3}, - [1119] = {.lex_state = 7, .external_lex_state = 4}, - [1120] = {.lex_state = 6, .external_lex_state = 4}, + [1118] = {.lex_state = 7, .external_lex_state = 4}, + [1119] = {.lex_state = 6, .external_lex_state = 4}, + [1120] = {.lex_state = 7, .external_lex_state = 4}, [1121] = {.lex_state = 6, .external_lex_state = 4}, [1122] = {.lex_state = 6, .external_lex_state = 4}, - [1123] = {.lex_state = 7, .external_lex_state = 4}, - [1124] = {.lex_state = 6, .external_lex_state = 4}, - [1125] = {.lex_state = 6, .external_lex_state = 4}, - [1126] = {.lex_state = 6, .external_lex_state = 4}, - [1127] = {.lex_state = 7, .external_lex_state = 4}, - [1128] = {.lex_state = 7, .external_lex_state = 4}, + [1123] = {.lex_state = 6, .external_lex_state = 4}, + [1124] = {.lex_state = 7, .external_lex_state = 4}, + [1125] = {.lex_state = 7, .external_lex_state = 4}, + [1126] = {.lex_state = 6, .external_lex_state = 3}, + [1127] = {.lex_state = 6, .external_lex_state = 4}, + [1128] = {.lex_state = 6, .external_lex_state = 4}, [1129] = {.lex_state = 6, .external_lex_state = 4}, [1130] = {.lex_state = 6, .external_lex_state = 4}, [1131] = {.lex_state = 6, .external_lex_state = 4}, [1132] = {.lex_state = 6, .external_lex_state = 4}, - [1133] = {.lex_state = 6, .external_lex_state = 4}, + [1133] = {.lex_state = 6, .external_lex_state = 3}, [1134] = {.lex_state = 7, .external_lex_state = 3}, [1135] = {.lex_state = 6, .external_lex_state = 4}, [1136] = {.lex_state = 7, .external_lex_state = 3}, - [1137] = {.lex_state = 6, .external_lex_state = 3}, + [1137] = {.lex_state = 6, .external_lex_state = 4}, [1138] = {.lex_state = 6, .external_lex_state = 4}, [1139] = {.lex_state = 7, .external_lex_state = 3}, - [1140] = {.lex_state = 6, .external_lex_state = 4}, - [1141] = {.lex_state = 6, .external_lex_state = 3}, - [1142] = {.lex_state = 6, .external_lex_state = 3}, - [1143] = {.lex_state = 7, .external_lex_state = 4}, - [1144] = {.lex_state = 7, .external_lex_state = 3}, - [1145] = {.lex_state = 6, .external_lex_state = 3}, - [1146] = {.lex_state = 7, .external_lex_state = 3}, - [1147] = {.lex_state = 7, .external_lex_state = 3}, - [1148] = {.lex_state = 7, .external_lex_state = 3}, + [1140] = {.lex_state = 7, .external_lex_state = 3}, + [1141] = {.lex_state = 6, .external_lex_state = 4}, + [1142] = {.lex_state = 7, .external_lex_state = 3}, + [1143] = {.lex_state = 6, .external_lex_state = 3}, + [1144] = {.lex_state = 6, .external_lex_state = 3}, + [1145] = {.lex_state = 6, .external_lex_state = 4}, + [1146] = {.lex_state = 6, .external_lex_state = 3}, + [1147] = {.lex_state = 6, .external_lex_state = 3}, + [1148] = {.lex_state = 6, .external_lex_state = 4}, [1149] = {.lex_state = 7, .external_lex_state = 3}, [1150] = {.lex_state = 7, .external_lex_state = 3}, - [1151] = {.lex_state = 6, .external_lex_state = 4}, + [1151] = {.lex_state = 7, .external_lex_state = 3}, [1152] = {.lex_state = 6, .external_lex_state = 4}, - [1153] = {.lex_state = 6, .external_lex_state = 4}, + [1153] = {.lex_state = 7, .external_lex_state = 3}, [1154] = {.lex_state = 6, .external_lex_state = 4}, - [1155] = {.lex_state = 6, .external_lex_state = 4}, - [1156] = {.lex_state = 6, .external_lex_state = 4}, + [1155] = {.lex_state = 7, .external_lex_state = 4}, + [1156] = {.lex_state = 6, .external_lex_state = 3}, [1157] = {.lex_state = 6, .external_lex_state = 4}, - [1158] = {.lex_state = 6, .external_lex_state = 4}, - [1159] = {.lex_state = 6, .external_lex_state = 4}, + [1158] = {.lex_state = 6, .external_lex_state = 3}, + [1159] = {.lex_state = 7, .external_lex_state = 4}, [1160] = {.lex_state = 6, .external_lex_state = 4}, - [1161] = {.lex_state = 7, .external_lex_state = 4}, - [1162] = {.lex_state = 7, .external_lex_state = 3}, - [1163] = {.lex_state = 6, .external_lex_state = 3}, - [1164] = {.lex_state = 6, .external_lex_state = 3}, - [1165] = {.lex_state = 7, .external_lex_state = 3}, - [1166] = {.lex_state = 6, .external_lex_state = 3}, + [1161] = {.lex_state = 7, .external_lex_state = 3}, + [1162] = {.lex_state = 6, .external_lex_state = 4}, + [1163] = {.lex_state = 6, .external_lex_state = 4}, + [1164] = {.lex_state = 7, .external_lex_state = 3}, + [1165] = {.lex_state = 6, .external_lex_state = 4}, + [1166] = {.lex_state = 6, .external_lex_state = 4}, [1167] = {.lex_state = 6, .external_lex_state = 4}, [1168] = {.lex_state = 6, .external_lex_state = 3}, - [1169] = {.lex_state = 6, .external_lex_state = 3}, + [1169] = {.lex_state = 6, .external_lex_state = 4}, [1170] = {.lex_state = 6, .external_lex_state = 3}, - [1171] = {.lex_state = 6, .external_lex_state = 4}, - [1172] = {.lex_state = 6, .external_lex_state = 4}, + [1171] = {.lex_state = 6, .external_lex_state = 3}, + [1172] = {.lex_state = 6, .external_lex_state = 3}, [1173] = {.lex_state = 6, .external_lex_state = 3}, [1174] = {.lex_state = 7, .external_lex_state = 3}, [1175] = {.lex_state = 6, .external_lex_state = 4}, - [1176] = {.lex_state = 6, .external_lex_state = 3}, - [1177] = {.lex_state = 6, .external_lex_state = 3}, - [1178] = {.lex_state = 7, .external_lex_state = 3}, - [1179] = {.lex_state = 7, .external_lex_state = 3}, + [1176] = {.lex_state = 6, .external_lex_state = 4}, + [1177] = {.lex_state = 7, .external_lex_state = 3}, + [1178] = {.lex_state = 6, .external_lex_state = 3}, + [1179] = {.lex_state = 150, .external_lex_state = 2}, [1180] = {.lex_state = 6, .external_lex_state = 3}, [1181] = {.lex_state = 6, .external_lex_state = 3}, [1182] = {.lex_state = 6, .external_lex_state = 3}, - [1183] = {.lex_state = 151, .external_lex_state = 2}, + [1183] = {.lex_state = 7, .external_lex_state = 3}, [1184] = {.lex_state = 6, .external_lex_state = 3}, [1185] = {.lex_state = 6, .external_lex_state = 3}, [1186] = {.lex_state = 6, .external_lex_state = 3}, - [1187] = {.lex_state = 6, .external_lex_state = 4}, - [1188] = {.lex_state = 6, .external_lex_state = 4}, + [1187] = {.lex_state = 6, .external_lex_state = 3}, + [1188] = {.lex_state = 7, .external_lex_state = 3}, [1189] = {.lex_state = 6, .external_lex_state = 3}, - [1190] = {.lex_state = 6, .external_lex_state = 3}, + [1190] = {.lex_state = 6, .external_lex_state = 4}, [1191] = {.lex_state = 6, .external_lex_state = 3}, [1192] = {.lex_state = 6, .external_lex_state = 3}, [1193] = {.lex_state = 6, .external_lex_state = 3}, - [1194] = {.lex_state = 151, .external_lex_state = 2}, + [1194] = {.lex_state = 6, .external_lex_state = 3}, [1195] = {.lex_state = 6, .external_lex_state = 3}, [1196] = {.lex_state = 6, .external_lex_state = 3}, - [1197] = {.lex_state = 6, .external_lex_state = 3}, - [1198] = {.lex_state = 6, .external_lex_state = 3}, + [1197] = {.lex_state = 7, .external_lex_state = 3}, + [1198] = {.lex_state = 6, .external_lex_state = 4}, [1199] = {.lex_state = 6, .external_lex_state = 4}, - [1200] = {.lex_state = 7, .external_lex_state = 3}, - [1201] = {.lex_state = 151, .external_lex_state = 2}, - [1202] = {.lex_state = 6, .external_lex_state = 3}, - [1203] = {.lex_state = 151, .external_lex_state = 2}, + [1200] = {.lex_state = 6, .external_lex_state = 3}, + [1201] = {.lex_state = 6, .external_lex_state = 3}, + [1202] = {.lex_state = 6, .external_lex_state = 4}, + [1203] = {.lex_state = 6, .external_lex_state = 3}, [1204] = {.lex_state = 6, .external_lex_state = 3}, - [1205] = {.lex_state = 7, .external_lex_state = 3}, + [1205] = {.lex_state = 6, .external_lex_state = 3}, [1206] = {.lex_state = 6, .external_lex_state = 3}, [1207] = {.lex_state = 6, .external_lex_state = 3}, [1208] = {.lex_state = 6, .external_lex_state = 3}, [1209] = {.lex_state = 6, .external_lex_state = 3}, [1210] = {.lex_state = 6, .external_lex_state = 3}, - [1211] = {.lex_state = 6, .external_lex_state = 3}, - [1212] = {.lex_state = 151, .external_lex_state = 2}, + [1211] = {.lex_state = 150, .external_lex_state = 2}, + [1212] = {.lex_state = 150, .external_lex_state = 2}, [1213] = {.lex_state = 6, .external_lex_state = 4}, [1214] = {.lex_state = 6, .external_lex_state = 3}, [1215] = {.lex_state = 6, .external_lex_state = 3}, @@ -15255,50 +16972,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1217] = {.lex_state = 6, .external_lex_state = 3}, [1218] = {.lex_state = 6, .external_lex_state = 3}, [1219] = {.lex_state = 6, .external_lex_state = 3}, - [1220] = {.lex_state = 7, .external_lex_state = 3}, - [1221] = {.lex_state = 6, .external_lex_state = 3}, + [1220] = {.lex_state = 6, .external_lex_state = 4}, + [1221] = {.lex_state = 6, .external_lex_state = 4}, [1222] = {.lex_state = 6, .external_lex_state = 3}, - [1223] = {.lex_state = 6, .external_lex_state = 4}, + [1223] = {.lex_state = 6, .external_lex_state = 3}, [1224] = {.lex_state = 6, .external_lex_state = 4}, [1225] = {.lex_state = 6, .external_lex_state = 4}, [1226] = {.lex_state = 6, .external_lex_state = 3}, - [1227] = {.lex_state = 6, .external_lex_state = 3}, - [1228] = {.lex_state = 151, .external_lex_state = 2}, - [1229] = {.lex_state = 6, .external_lex_state = 4}, - [1230] = {.lex_state = 6, .external_lex_state = 3}, - [1231] = {.lex_state = 151, .external_lex_state = 2}, + [1227] = {.lex_state = 6, .external_lex_state = 4}, + [1228] = {.lex_state = 6, .external_lex_state = 3}, + [1229] = {.lex_state = 6, .external_lex_state = 3}, + [1230] = {.lex_state = 6, .external_lex_state = 4}, + [1231] = {.lex_state = 6, .external_lex_state = 4}, [1232] = {.lex_state = 6, .external_lex_state = 3}, - [1233] = {.lex_state = 151, .external_lex_state = 2}, + [1233] = {.lex_state = 6, .external_lex_state = 3}, [1234] = {.lex_state = 6, .external_lex_state = 3}, [1235] = {.lex_state = 6, .external_lex_state = 3}, [1236] = {.lex_state = 6, .external_lex_state = 4}, - [1237] = {.lex_state = 6, .external_lex_state = 3}, - [1238] = {.lex_state = 6, .external_lex_state = 4}, - [1239] = {.lex_state = 6, .external_lex_state = 4}, - [1240] = {.lex_state = 6, .external_lex_state = 3}, - [1241] = {.lex_state = 6, .external_lex_state = 3}, - [1242] = {.lex_state = 6, .external_lex_state = 3}, + [1237] = {.lex_state = 7, .external_lex_state = 3}, + [1238] = {.lex_state = 6, .external_lex_state = 3}, + [1239] = {.lex_state = 6, .external_lex_state = 3}, + [1240] = {.lex_state = 150, .external_lex_state = 2}, + [1241] = {.lex_state = 6, .external_lex_state = 4}, + [1242] = {.lex_state = 6, .external_lex_state = 4}, [1243] = {.lex_state = 6, .external_lex_state = 4}, - [1244] = {.lex_state = 151, .external_lex_state = 2}, + [1244] = {.lex_state = 6, .external_lex_state = 4}, [1245] = {.lex_state = 6, .external_lex_state = 4}, - [1246] = {.lex_state = 6, .external_lex_state = 4}, + [1246] = {.lex_state = 6, .external_lex_state = 3}, [1247] = {.lex_state = 6, .external_lex_state = 4}, - [1248] = {.lex_state = 6, .external_lex_state = 3}, + [1248] = {.lex_state = 6, .external_lex_state = 4}, [1249] = {.lex_state = 6, .external_lex_state = 3}, [1250] = {.lex_state = 6, .external_lex_state = 4}, - [1251] = {.lex_state = 6, .external_lex_state = 3}, + [1251] = {.lex_state = 6, .external_lex_state = 4}, [1252] = {.lex_state = 6, .external_lex_state = 4}, - [1253] = {.lex_state = 6, .external_lex_state = 4}, - [1254] = {.lex_state = 6, .external_lex_state = 4}, - [1255] = {.lex_state = 6, .external_lex_state = 4}, - [1256] = {.lex_state = 6, .external_lex_state = 4}, + [1253] = {.lex_state = 6, .external_lex_state = 3}, + [1254] = {.lex_state = 6, .external_lex_state = 3}, + [1255] = {.lex_state = 6, .external_lex_state = 3}, + [1256] = {.lex_state = 150, .external_lex_state = 2}, [1257] = {.lex_state = 6, .external_lex_state = 4}, [1258] = {.lex_state = 6, .external_lex_state = 4}, [1259] = {.lex_state = 6, .external_lex_state = 4}, - [1260] = {.lex_state = 6, .external_lex_state = 4}, + [1260] = {.lex_state = 150, .external_lex_state = 2}, [1261] = {.lex_state = 6, .external_lex_state = 4}, [1262] = {.lex_state = 6, .external_lex_state = 4}, - [1263] = {.lex_state = 6, .external_lex_state = 4}, + [1263] = {.lex_state = 6, .external_lex_state = 3}, [1264] = {.lex_state = 6, .external_lex_state = 4}, [1265] = {.lex_state = 6, .external_lex_state = 4}, [1266] = {.lex_state = 6, .external_lex_state = 3}, @@ -15309,62 +17026,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1271] = {.lex_state = 6, .external_lex_state = 4}, [1272] = {.lex_state = 6, .external_lex_state = 4}, [1273] = {.lex_state = 7, .external_lex_state = 3}, - [1274] = {.lex_state = 6, .external_lex_state = 3}, - [1275] = {.lex_state = 6, .external_lex_state = 3}, + [1274] = {.lex_state = 150, .external_lex_state = 2}, + [1275] = {.lex_state = 150, .external_lex_state = 2}, [1276] = {.lex_state = 6, .external_lex_state = 3}, [1277] = {.lex_state = 6, .external_lex_state = 4}, - [1278] = {.lex_state = 6, .external_lex_state = 4}, + [1278] = {.lex_state = 6, .external_lex_state = 3}, [1279] = {.lex_state = 6, .external_lex_state = 4}, [1280] = {.lex_state = 6, .external_lex_state = 4}, - [1281] = {.lex_state = 6, .external_lex_state = 3}, - [1282] = {.lex_state = 6, .external_lex_state = 3}, + [1281] = {.lex_state = 6, .external_lex_state = 4}, + [1282] = {.lex_state = 6, .external_lex_state = 4}, [1283] = {.lex_state = 6, .external_lex_state = 4}, [1284] = {.lex_state = 6, .external_lex_state = 3}, - [1285] = {.lex_state = 6, .external_lex_state = 4}, - [1286] = {.lex_state = 6, .external_lex_state = 3}, + [1285] = {.lex_state = 150, .external_lex_state = 2}, + [1286] = {.lex_state = 6, .external_lex_state = 4}, [1287] = {.lex_state = 7, .external_lex_state = 3}, [1288] = {.lex_state = 6, .external_lex_state = 4}, [1289] = {.lex_state = 6, .external_lex_state = 4}, - [1290] = {.lex_state = 6, .external_lex_state = 4}, - [1291] = {.lex_state = 6, .external_lex_state = 4}, - [1292] = {.lex_state = 6, .external_lex_state = 3}, - [1293] = {.lex_state = 6, .external_lex_state = 4}, - [1294] = {.lex_state = 6, .external_lex_state = 4}, - [1295] = {.lex_state = 7, .external_lex_state = 3}, - [1296] = {.lex_state = 6, .external_lex_state = 3}, + [1290] = {.lex_state = 7, .external_lex_state = 3}, + [1291] = {.lex_state = 7, .external_lex_state = 3}, + [1292] = {.lex_state = 6, .external_lex_state = 4}, + [1293] = {.lex_state = 6, .external_lex_state = 3}, + [1294] = {.lex_state = 7, .external_lex_state = 3}, + [1295] = {.lex_state = 6, .external_lex_state = 4}, + [1296] = {.lex_state = 6, .external_lex_state = 4}, [1297] = {.lex_state = 6, .external_lex_state = 3}, [1298] = {.lex_state = 6, .external_lex_state = 3}, - [1299] = {.lex_state = 7, .external_lex_state = 3}, - [1300] = {.lex_state = 6, .external_lex_state = 4}, + [1299] = {.lex_state = 6, .external_lex_state = 4}, + [1300] = {.lex_state = 6, .external_lex_state = 3}, [1301] = {.lex_state = 6, .external_lex_state = 3}, [1302] = {.lex_state = 6, .external_lex_state = 3}, [1303] = {.lex_state = 6, .external_lex_state = 3}, [1304] = {.lex_state = 6, .external_lex_state = 3}, - [1305] = {.lex_state = 7, .external_lex_state = 3}, + [1305] = {.lex_state = 6, .external_lex_state = 3}, [1306] = {.lex_state = 6, .external_lex_state = 3}, - [1307] = {.lex_state = 6, .external_lex_state = 3}, - [1308] = {.lex_state = 6, .external_lex_state = 4}, - [1309] = {.lex_state = 13, .external_lex_state = 2}, - [1310] = {.lex_state = 13, .external_lex_state = 2}, - [1311] = {.lex_state = 6, .external_lex_state = 3}, + [1307] = {.lex_state = 13, .external_lex_state = 2}, + [1308] = {.lex_state = 6, .external_lex_state = 3}, + [1309] = {.lex_state = 6, .external_lex_state = 3}, + [1310] = {.lex_state = 6, .external_lex_state = 3}, + [1311] = {.lex_state = 13, .external_lex_state = 2}, [1312] = {.lex_state = 6, .external_lex_state = 3}, [1313] = {.lex_state = 6, .external_lex_state = 3}, - [1314] = {.lex_state = 6, .external_lex_state = 4}, - [1315] = {.lex_state = 13, .external_lex_state = 2}, - [1316] = {.lex_state = 6, .external_lex_state = 3}, - [1317] = {.lex_state = 6, .external_lex_state = 3}, + [1314] = {.lex_state = 6, .external_lex_state = 3}, + [1315] = {.lex_state = 6, .external_lex_state = 3}, + [1316] = {.lex_state = 6, .external_lex_state = 4}, + [1317] = {.lex_state = 13, .external_lex_state = 2}, [1318] = {.lex_state = 6, .external_lex_state = 3}, [1319] = {.lex_state = 6, .external_lex_state = 3}, - [1320] = {.lex_state = 6, .external_lex_state = 3}, - [1321] = {.lex_state = 13, .external_lex_state = 2}, + [1320] = {.lex_state = 13, .external_lex_state = 2}, + [1321] = {.lex_state = 6, .external_lex_state = 4}, [1322] = {.lex_state = 6, .external_lex_state = 3}, - [1323] = {.lex_state = 13, .external_lex_state = 2}, + [1323] = {.lex_state = 6, .external_lex_state = 4}, [1324] = {.lex_state = 6, .external_lex_state = 3}, - [1325] = {.lex_state = 6, .external_lex_state = 3}, - [1326] = {.lex_state = 6, .external_lex_state = 4}, + [1325] = {.lex_state = 13, .external_lex_state = 2}, + [1326] = {.lex_state = 13, .external_lex_state = 2}, [1327] = {.lex_state = 7, .external_lex_state = 3}, [1328] = {.lex_state = 6, .external_lex_state = 4}, - [1329] = {.lex_state = 13, .external_lex_state = 2}, + [1329] = {.lex_state = 6, .external_lex_state = 3}, [1330] = {.lex_state = 6, .external_lex_state = 3}, [1331] = {.lex_state = 6, .external_lex_state = 3}, [1332] = {.lex_state = 6, .external_lex_state = 3}, @@ -15373,131 +17090,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1335] = {.lex_state = 6, .external_lex_state = 3}, [1336] = {.lex_state = 6, .external_lex_state = 3}, [1337] = {.lex_state = 6, .external_lex_state = 3}, - [1338] = {.lex_state = 6, .external_lex_state = 4}, + [1338] = {.lex_state = 6, .external_lex_state = 3}, [1339] = {.lex_state = 6, .external_lex_state = 3}, - [1340] = {.lex_state = 6, .external_lex_state = 3}, + [1340] = {.lex_state = 6, .external_lex_state = 4}, [1341] = {.lex_state = 6, .external_lex_state = 3}, [1342] = {.lex_state = 6, .external_lex_state = 3}, [1343] = {.lex_state = 6, .external_lex_state = 3}, [1344] = {.lex_state = 6, .external_lex_state = 3}, [1345] = {.lex_state = 6, .external_lex_state = 3}, [1346] = {.lex_state = 13, .external_lex_state = 2}, - [1347] = {.lex_state = 13, .external_lex_state = 2}, + [1347] = {.lex_state = 6, .external_lex_state = 3}, [1348] = {.lex_state = 13, .external_lex_state = 2}, [1349] = {.lex_state = 6, .external_lex_state = 3}, - [1350] = {.lex_state = 13, .external_lex_state = 2}, - [1351] = {.lex_state = 6, .external_lex_state = 3}, - [1352] = {.lex_state = 13, .external_lex_state = 2}, + [1350] = {.lex_state = 6, .external_lex_state = 3}, + [1351] = {.lex_state = 13, .external_lex_state = 2}, + [1352] = {.lex_state = 6, .external_lex_state = 3}, [1353] = {.lex_state = 13, .external_lex_state = 2}, - [1354] = {.lex_state = 13, .external_lex_state = 2}, - [1355] = {.lex_state = 13, .external_lex_state = 2}, + [1354] = {.lex_state = 6, .external_lex_state = 3}, + [1355] = {.lex_state = 6, .external_lex_state = 3}, [1356] = {.lex_state = 6, .external_lex_state = 3}, - [1357] = {.lex_state = 6, .external_lex_state = 3}, - [1358] = {.lex_state = 13, .external_lex_state = 2}, - [1359] = {.lex_state = 13, .external_lex_state = 2}, - [1360] = {.lex_state = 13, .external_lex_state = 2}, - [1361] = {.lex_state = 6, .external_lex_state = 3}, - [1362] = {.lex_state = 13, .external_lex_state = 2}, - [1363] = {.lex_state = 6, .external_lex_state = 3}, + [1357] = {.lex_state = 13, .external_lex_state = 2}, + [1358] = {.lex_state = 6, .external_lex_state = 3}, + [1359] = {.lex_state = 6, .external_lex_state = 3}, + [1360] = {.lex_state = 6, .external_lex_state = 3}, + [1361] = {.lex_state = 13, .external_lex_state = 2}, + [1362] = {.lex_state = 6, .external_lex_state = 3}, + [1363] = {.lex_state = 13, .external_lex_state = 2}, [1364] = {.lex_state = 13, .external_lex_state = 2}, [1365] = {.lex_state = 6, .external_lex_state = 3}, [1366] = {.lex_state = 6, .external_lex_state = 3}, - [1367] = {.lex_state = 13, .external_lex_state = 2}, + [1367] = {.lex_state = 6, .external_lex_state = 3}, [1368] = {.lex_state = 6, .external_lex_state = 3}, [1369] = {.lex_state = 6, .external_lex_state = 3}, - [1370] = {.lex_state = 6, .external_lex_state = 3}, + [1370] = {.lex_state = 13, .external_lex_state = 2}, [1371] = {.lex_state = 6, .external_lex_state = 3}, - [1372] = {.lex_state = 13, .external_lex_state = 2}, + [1372] = {.lex_state = 6, .external_lex_state = 3}, [1373] = {.lex_state = 6, .external_lex_state = 3}, [1374] = {.lex_state = 6, .external_lex_state = 3}, - [1375] = {.lex_state = 6, .external_lex_state = 3}, + [1375] = {.lex_state = 13, .external_lex_state = 2}, [1376] = {.lex_state = 6, .external_lex_state = 3}, [1377] = {.lex_state = 13, .external_lex_state = 2}, [1378] = {.lex_state = 13, .external_lex_state = 2}, [1379] = {.lex_state = 13, .external_lex_state = 2}, [1380] = {.lex_state = 6, .external_lex_state = 3}, - [1381] = {.lex_state = 6, .external_lex_state = 3}, - [1382] = {.lex_state = 6, .external_lex_state = 3}, - [1383] = {.lex_state = 6, .external_lex_state = 3}, - [1384] = {.lex_state = 6, .external_lex_state = 3}, - [1385] = {.lex_state = 6, .external_lex_state = 3}, + [1381] = {.lex_state = 13, .external_lex_state = 2}, + [1382] = {.lex_state = 13, .external_lex_state = 2}, + [1383] = {.lex_state = 13, .external_lex_state = 2}, + [1384] = {.lex_state = 13, .external_lex_state = 2}, + [1385] = {.lex_state = 13, .external_lex_state = 2}, [1386] = {.lex_state = 6, .external_lex_state = 3}, - [1387] = {.lex_state = 6, .external_lex_state = 3}, + [1387] = {.lex_state = 150, .external_lex_state = 2}, [1388] = {.lex_state = 6, .external_lex_state = 3}, - [1389] = {.lex_state = 6, .external_lex_state = 3}, + [1389] = {.lex_state = 150, .external_lex_state = 2}, [1390] = {.lex_state = 6, .external_lex_state = 3}, - [1391] = {.lex_state = 6, .external_lex_state = 3}, - [1392] = {.lex_state = 6, .external_lex_state = 3}, + [1391] = {.lex_state = 150, .external_lex_state = 2}, + [1392] = {.lex_state = 150, .external_lex_state = 2}, [1393] = {.lex_state = 6, .external_lex_state = 3}, [1394] = {.lex_state = 6, .external_lex_state = 3}, [1395] = {.lex_state = 6, .external_lex_state = 3}, - [1396] = {.lex_state = 13, .external_lex_state = 2}, - [1397] = {.lex_state = 13, .external_lex_state = 2}, - [1398] = {.lex_state = 13, .external_lex_state = 2}, - [1399] = {.lex_state = 13, .external_lex_state = 2}, - [1400] = {.lex_state = 13, .external_lex_state = 2}, - [1401] = {.lex_state = 13, .external_lex_state = 2}, - [1402] = {.lex_state = 13, .external_lex_state = 2}, + [1396] = {.lex_state = 6, .external_lex_state = 3}, + [1397] = {.lex_state = 150, .external_lex_state = 2}, + [1398] = {.lex_state = 150, .external_lex_state = 2}, + [1399] = {.lex_state = 150, .external_lex_state = 2}, + [1400] = {.lex_state = 6, .external_lex_state = 3}, + [1401] = {.lex_state = 6, .external_lex_state = 3}, + [1402] = {.lex_state = 6, .external_lex_state = 3}, [1403] = {.lex_state = 13, .external_lex_state = 2}, - [1404] = {.lex_state = 14, .external_lex_state = 5}, + [1404] = {.lex_state = 13, .external_lex_state = 2}, [1405] = {.lex_state = 13, .external_lex_state = 2}, [1406] = {.lex_state = 13, .external_lex_state = 2}, [1407] = {.lex_state = 13, .external_lex_state = 2}, [1408] = {.lex_state = 13, .external_lex_state = 2}, [1409] = {.lex_state = 13, .external_lex_state = 2}, - [1410] = {.lex_state = 14, .external_lex_state = 5}, + [1410] = {.lex_state = 13, .external_lex_state = 2}, [1411] = {.lex_state = 13, .external_lex_state = 2}, - [1412] = {.lex_state = 14, .external_lex_state = 5}, + [1412] = {.lex_state = 13, .external_lex_state = 2}, [1413] = {.lex_state = 13, .external_lex_state = 2}, [1414] = {.lex_state = 14, .external_lex_state = 5}, - [1415] = {.lex_state = 13, .external_lex_state = 2}, + [1415] = {.lex_state = 14, .external_lex_state = 5}, [1416] = {.lex_state = 13, .external_lex_state = 2}, - [1417] = {.lex_state = 14, .external_lex_state = 5}, + [1417] = {.lex_state = 150, .external_lex_state = 2}, [1418] = {.lex_state = 13, .external_lex_state = 2}, - [1419] = {.lex_state = 151, .external_lex_state = 2}, - [1420] = {.lex_state = 151, .external_lex_state = 2}, - [1421] = {.lex_state = 151, .external_lex_state = 2}, - [1422] = {.lex_state = 151, .external_lex_state = 2}, - [1423] = {.lex_state = 151, .external_lex_state = 2}, - [1424] = {.lex_state = 151, .external_lex_state = 2}, - [1425] = {.lex_state = 151, .external_lex_state = 2}, + [1419] = {.lex_state = 13, .external_lex_state = 2}, + [1420] = {.lex_state = 13, .external_lex_state = 2}, + [1421] = {.lex_state = 13, .external_lex_state = 2}, + [1422] = {.lex_state = 14, .external_lex_state = 5}, + [1423] = {.lex_state = 14, .external_lex_state = 5}, + [1424] = {.lex_state = 13, .external_lex_state = 2}, + [1425] = {.lex_state = 13, .external_lex_state = 2}, [1426] = {.lex_state = 14, .external_lex_state = 5}, [1427] = {.lex_state = 14, .external_lex_state = 5}, - [1428] = {.lex_state = 8, .external_lex_state = 4}, + [1428] = {.lex_state = 15, .external_lex_state = 2}, [1429] = {.lex_state = 8, .external_lex_state = 4}, - [1430] = {.lex_state = 8, .external_lex_state = 3}, - [1431] = {.lex_state = 8, .external_lex_state = 3}, - [1432] = {.lex_state = 8, .external_lex_state = 3}, - [1433] = {.lex_state = 8, .external_lex_state = 3}, - [1434] = {.lex_state = 151, .external_lex_state = 2}, + [1430] = {.lex_state = 14, .external_lex_state = 5}, + [1431] = {.lex_state = 15, .external_lex_state = 2}, + [1432] = {.lex_state = 15, .external_lex_state = 2}, + [1433] = {.lex_state = 8, .external_lex_state = 4}, + [1434] = {.lex_state = 8, .external_lex_state = 3}, [1435] = {.lex_state = 8, .external_lex_state = 3}, [1436] = {.lex_state = 8, .external_lex_state = 3}, [1437] = {.lex_state = 8, .external_lex_state = 3}, [1438] = {.lex_state = 8, .external_lex_state = 3}, - [1439] = {.lex_state = 8, .external_lex_state = 4}, + [1439] = {.lex_state = 8, .external_lex_state = 3}, [1440] = {.lex_state = 8, .external_lex_state = 3}, [1441] = {.lex_state = 8, .external_lex_state = 3}, - [1442] = {.lex_state = 8, .external_lex_state = 4}, + [1442] = {.lex_state = 8, .external_lex_state = 3}, [1443] = {.lex_state = 8, .external_lex_state = 3}, - [1444] = {.lex_state = 8, .external_lex_state = 4}, + [1444] = {.lex_state = 8, .external_lex_state = 3}, [1445] = {.lex_state = 8, .external_lex_state = 3}, [1446] = {.lex_state = 8, .external_lex_state = 3}, [1447] = {.lex_state = 8, .external_lex_state = 3}, [1448] = {.lex_state = 8, .external_lex_state = 3}, [1449] = {.lex_state = 8, .external_lex_state = 3}, [1450] = {.lex_state = 8, .external_lex_state = 3}, - [1451] = {.lex_state = 8, .external_lex_state = 3}, + [1451] = {.lex_state = 8, .external_lex_state = 4}, [1452] = {.lex_state = 8, .external_lex_state = 4}, - [1453] = {.lex_state = 8, .external_lex_state = 3}, - [1454] = {.lex_state = 8, .external_lex_state = 3}, + [1453] = {.lex_state = 8, .external_lex_state = 4}, + [1454] = {.lex_state = 8, .external_lex_state = 4}, [1455] = {.lex_state = 8, .external_lex_state = 3}, [1456] = {.lex_state = 8, .external_lex_state = 3}, [1457] = {.lex_state = 8, .external_lex_state = 3}, [1458] = {.lex_state = 8, .external_lex_state = 3}, [1459] = {.lex_state = 8, .external_lex_state = 3}, - [1460] = {.lex_state = 8, .external_lex_state = 3}, + [1460] = {.lex_state = 8, .external_lex_state = 4}, [1461] = {.lex_state = 8, .external_lex_state = 3}, - [1462] = {.lex_state = 8, .external_lex_state = 3}, + [1462] = {.lex_state = 13, .external_lex_state = 5}, [1463] = {.lex_state = 8, .external_lex_state = 3}, [1464] = {.lex_state = 8, .external_lex_state = 3}, [1465] = {.lex_state = 8, .external_lex_state = 3}, @@ -15535,26 +17252,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1497] = {.lex_state = 8, .external_lex_state = 3}, [1498] = {.lex_state = 8, .external_lex_state = 3}, [1499] = {.lex_state = 8, .external_lex_state = 3}, - [1500] = {.lex_state = 8, .external_lex_state = 4}, + [1500] = {.lex_state = 8, .external_lex_state = 3}, [1501] = {.lex_state = 8, .external_lex_state = 3}, [1502] = {.lex_state = 8, .external_lex_state = 3}, [1503] = {.lex_state = 8, .external_lex_state = 3}, [1504] = {.lex_state = 8, .external_lex_state = 3}, [1505] = {.lex_state = 8, .external_lex_state = 3}, - [1506] = {.lex_state = 13, .external_lex_state = 5}, + [1506] = {.lex_state = 8, .external_lex_state = 3}, [1507] = {.lex_state = 8, .external_lex_state = 3}, [1508] = {.lex_state = 8, .external_lex_state = 3}, [1509] = {.lex_state = 8, .external_lex_state = 3}, [1510] = {.lex_state = 8, .external_lex_state = 3}, [1511] = {.lex_state = 8, .external_lex_state = 3}, [1512] = {.lex_state = 8, .external_lex_state = 3}, - [1513] = {.lex_state = 8, .external_lex_state = 3}, + [1513] = {.lex_state = 13, .external_lex_state = 5}, [1514] = {.lex_state = 8, .external_lex_state = 3}, [1515] = {.lex_state = 8, .external_lex_state = 3}, [1516] = {.lex_state = 8, .external_lex_state = 3}, [1517] = {.lex_state = 8, .external_lex_state = 3}, [1518] = {.lex_state = 8, .external_lex_state = 3}, - [1519] = {.lex_state = 8, .external_lex_state = 3}, + [1519] = {.lex_state = 13, .external_lex_state = 5}, [1520] = {.lex_state = 8, .external_lex_state = 3}, [1521] = {.lex_state = 8, .external_lex_state = 3}, [1522] = {.lex_state = 8, .external_lex_state = 3}, @@ -15568,7 +17285,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1530] = {.lex_state = 8, .external_lex_state = 3}, [1531] = {.lex_state = 8, .external_lex_state = 3}, [1532] = {.lex_state = 8, .external_lex_state = 3}, - [1533] = {.lex_state = 8, .external_lex_state = 4}, + [1533] = {.lex_state = 8, .external_lex_state = 3}, [1534] = {.lex_state = 8, .external_lex_state = 3}, [1535] = {.lex_state = 8, .external_lex_state = 3}, [1536] = {.lex_state = 8, .external_lex_state = 3}, @@ -15576,7 +17293,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1538] = {.lex_state = 8, .external_lex_state = 3}, [1539] = {.lex_state = 8, .external_lex_state = 3}, [1540] = {.lex_state = 8, .external_lex_state = 3}, - [1541] = {.lex_state = 8, .external_lex_state = 3}, + [1541] = {.lex_state = 13, .external_lex_state = 5}, [1542] = {.lex_state = 8, .external_lex_state = 3}, [1543] = {.lex_state = 8, .external_lex_state = 3}, [1544] = {.lex_state = 8, .external_lex_state = 3}, @@ -15584,10 +17301,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1546] = {.lex_state = 8, .external_lex_state = 3}, [1547] = {.lex_state = 8, .external_lex_state = 3}, [1548] = {.lex_state = 8, .external_lex_state = 3}, - [1549] = {.lex_state = 13, .external_lex_state = 5}, + [1549] = {.lex_state = 8, .external_lex_state = 3}, [1550] = {.lex_state = 8, .external_lex_state = 3}, [1551] = {.lex_state = 8, .external_lex_state = 3}, - [1552] = {.lex_state = 13, .external_lex_state = 5}, + [1552] = {.lex_state = 8, .external_lex_state = 3}, [1553] = {.lex_state = 8, .external_lex_state = 3}, [1554] = {.lex_state = 8, .external_lex_state = 3}, [1555] = {.lex_state = 8, .external_lex_state = 3}, @@ -15602,9 +17319,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1564] = {.lex_state = 8, .external_lex_state = 3}, [1565] = {.lex_state = 8, .external_lex_state = 3}, [1566] = {.lex_state = 8, .external_lex_state = 3}, - [1567] = {.lex_state = 13, .external_lex_state = 5}, - [1568] = {.lex_state = 8, .external_lex_state = 4}, - [1569] = {.lex_state = 8, .external_lex_state = 4}, + [1567] = {.lex_state = 8, .external_lex_state = 3}, + [1568] = {.lex_state = 8, .external_lex_state = 3}, + [1569] = {.lex_state = 8, .external_lex_state = 3}, [1570] = {.lex_state = 8, .external_lex_state = 3}, [1571] = {.lex_state = 8, .external_lex_state = 3}, [1572] = {.lex_state = 8, .external_lex_state = 3}, @@ -15618,13 +17335,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1580] = {.lex_state = 8, .external_lex_state = 3}, [1581] = {.lex_state = 8, .external_lex_state = 3}, [1582] = {.lex_state = 8, .external_lex_state = 3}, - [1583] = {.lex_state = 8, .external_lex_state = 3}, - [1584] = {.lex_state = 8, .external_lex_state = 3}, + [1583] = {.lex_state = 8, .external_lex_state = 4}, + [1584] = {.lex_state = 8, .external_lex_state = 4}, [1585] = {.lex_state = 8, .external_lex_state = 3}, [1586] = {.lex_state = 8, .external_lex_state = 3}, [1587] = {.lex_state = 8, .external_lex_state = 3}, [1588] = {.lex_state = 8, .external_lex_state = 3}, - [1589] = {.lex_state = 13, .external_lex_state = 5}, + [1589] = {.lex_state = 8, .external_lex_state = 3}, [1590] = {.lex_state = 8, .external_lex_state = 3}, [1591] = {.lex_state = 8, .external_lex_state = 3}, [1592] = {.lex_state = 8, .external_lex_state = 3}, @@ -15633,7 +17350,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1595] = {.lex_state = 8, .external_lex_state = 3}, [1596] = {.lex_state = 8, .external_lex_state = 3}, [1597] = {.lex_state = 8, .external_lex_state = 3}, - [1598] = {.lex_state = 8, .external_lex_state = 3}, + [1598] = {.lex_state = 8, .external_lex_state = 4}, [1599] = {.lex_state = 8, .external_lex_state = 3}, [1600] = {.lex_state = 8, .external_lex_state = 3}, [1601] = {.lex_state = 8, .external_lex_state = 3}, @@ -15642,7 +17359,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1604] = {.lex_state = 8, .external_lex_state = 3}, [1605] = {.lex_state = 8, .external_lex_state = 3}, [1606] = {.lex_state = 8, .external_lex_state = 3}, - [1607] = {.lex_state = 8, .external_lex_state = 3}, + [1607] = {.lex_state = 13, .external_lex_state = 5}, [1608] = {.lex_state = 8, .external_lex_state = 3}, [1609] = {.lex_state = 8, .external_lex_state = 3}, [1610] = {.lex_state = 8, .external_lex_state = 3}, @@ -15650,266 +17367,266 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1612] = {.lex_state = 8, .external_lex_state = 3}, [1613] = {.lex_state = 8, .external_lex_state = 3}, [1614] = {.lex_state = 8, .external_lex_state = 3}, - [1615] = {.lex_state = 8, .external_lex_state = 4}, - [1616] = {.lex_state = 8, .external_lex_state = 4}, + [1615] = {.lex_state = 8, .external_lex_state = 3}, + [1616] = {.lex_state = 8, .external_lex_state = 3}, [1617] = {.lex_state = 8, .external_lex_state = 4}, - [1618] = {.lex_state = 8, .external_lex_state = 4}, + [1618] = {.lex_state = 8, .external_lex_state = 3}, [1619] = {.lex_state = 8, .external_lex_state = 3}, [1620] = {.lex_state = 8, .external_lex_state = 3}, - [1621] = {.lex_state = 8, .external_lex_state = 4}, + [1621] = {.lex_state = 8, .external_lex_state = 3}, [1622] = {.lex_state = 8, .external_lex_state = 3}, - [1623] = {.lex_state = 8, .external_lex_state = 3}, - [1624] = {.lex_state = 8, .external_lex_state = 4}, + [1623] = {.lex_state = 8, .external_lex_state = 4}, + [1624] = {.lex_state = 8, .external_lex_state = 3}, [1625] = {.lex_state = 8, .external_lex_state = 4}, - [1626] = {.lex_state = 8, .external_lex_state = 3}, + [1626] = {.lex_state = 8, .external_lex_state = 4}, [1627] = {.lex_state = 8, .external_lex_state = 4}, - [1628] = {.lex_state = 8, .external_lex_state = 3}, + [1628] = {.lex_state = 8, .external_lex_state = 4}, [1629] = {.lex_state = 8, .external_lex_state = 4}, [1630] = {.lex_state = 8, .external_lex_state = 3}, - [1631] = {.lex_state = 8, .external_lex_state = 3}, + [1631] = {.lex_state = 13, .external_lex_state = 5}, [1632] = {.lex_state = 13, .external_lex_state = 5}, - [1633] = {.lex_state = 8, .external_lex_state = 3}, - [1634] = {.lex_state = 8, .external_lex_state = 3}, - [1635] = {.lex_state = 8, .external_lex_state = 4}, + [1633] = {.lex_state = 8, .external_lex_state = 4}, + [1634] = {.lex_state = 8, .external_lex_state = 4}, + [1635] = {.lex_state = 8, .external_lex_state = 3}, [1636] = {.lex_state = 8, .external_lex_state = 4}, - [1637] = {.lex_state = 8, .external_lex_state = 4}, + [1637] = {.lex_state = 8, .external_lex_state = 3}, [1638] = {.lex_state = 8, .external_lex_state = 3}, - [1639] = {.lex_state = 8, .external_lex_state = 3}, - [1640] = {.lex_state = 13, .external_lex_state = 5}, + [1639] = {.lex_state = 8, .external_lex_state = 4}, + [1640] = {.lex_state = 8, .external_lex_state = 4}, [1641] = {.lex_state = 8, .external_lex_state = 3}, [1642] = {.lex_state = 8, .external_lex_state = 3}, - [1643] = {.lex_state = 8, .external_lex_state = 3}, - [1644] = {.lex_state = 8, .external_lex_state = 4}, + [1643] = {.lex_state = 8, .external_lex_state = 4}, + [1644] = {.lex_state = 8, .external_lex_state = 3}, [1645] = {.lex_state = 8, .external_lex_state = 3}, - [1646] = {.lex_state = 8, .external_lex_state = 3}, + [1646] = {.lex_state = 8, .external_lex_state = 4}, [1647] = {.lex_state = 8, .external_lex_state = 3}, [1648] = {.lex_state = 8, .external_lex_state = 3}, [1649] = {.lex_state = 8, .external_lex_state = 3}, - [1650] = {.lex_state = 8, .external_lex_state = 3}, - [1651] = {.lex_state = 8, .external_lex_state = 4}, - [1652] = {.lex_state = 8, .external_lex_state = 4}, + [1650] = {.lex_state = 8, .external_lex_state = 4}, + [1651] = {.lex_state = 8, .external_lex_state = 3}, + [1652] = {.lex_state = 8, .external_lex_state = 3}, [1653] = {.lex_state = 8, .external_lex_state = 3}, - [1654] = {.lex_state = 8, .external_lex_state = 4}, - [1655] = {.lex_state = 13, .external_lex_state = 5}, - [1656] = {.lex_state = 8, .external_lex_state = 4}, - [1657] = {.lex_state = 8, .external_lex_state = 4}, - [1658] = {.lex_state = 13, .external_lex_state = 5}, - [1659] = {.lex_state = 8, .external_lex_state = 4}, - [1660] = {.lex_state = 8, .external_lex_state = 4}, - [1661] = {.lex_state = 8, .external_lex_state = 4}, - [1662] = {.lex_state = 13, .external_lex_state = 5}, - [1663] = {.lex_state = 8, .external_lex_state = 4}, - [1664] = {.lex_state = 8, .external_lex_state = 3}, + [1654] = {.lex_state = 8, .external_lex_state = 3}, + [1655] = {.lex_state = 8, .external_lex_state = 3}, + [1656] = {.lex_state = 8, .external_lex_state = 3}, + [1657] = {.lex_state = 8, .external_lex_state = 3}, + [1658] = {.lex_state = 8, .external_lex_state = 3}, + [1659] = {.lex_state = 8, .external_lex_state = 3}, + [1660] = {.lex_state = 8, .external_lex_state = 3}, + [1661] = {.lex_state = 8, .external_lex_state = 3}, + [1662] = {.lex_state = 8, .external_lex_state = 3}, + [1663] = {.lex_state = 8, .external_lex_state = 3}, + [1664] = {.lex_state = 8, .external_lex_state = 4}, [1665] = {.lex_state = 8, .external_lex_state = 4}, - [1666] = {.lex_state = 13, .external_lex_state = 5}, - [1667] = {.lex_state = 8, .external_lex_state = 4}, + [1666] = {.lex_state = 14, .external_lex_state = 5}, + [1667] = {.lex_state = 13, .external_lex_state = 5}, [1668] = {.lex_state = 8, .external_lex_state = 3}, - [1669] = {.lex_state = 8, .external_lex_state = 4}, + [1669] = {.lex_state = 8, .external_lex_state = 3}, [1670] = {.lex_state = 8, .external_lex_state = 3}, [1671] = {.lex_state = 8, .external_lex_state = 3}, - [1672] = {.lex_state = 8, .external_lex_state = 4}, - [1673] = {.lex_state = 8, .external_lex_state = 4}, - [1674] = {.lex_state = 8, .external_lex_state = 4}, - [1675] = {.lex_state = 8, .external_lex_state = 4}, + [1672] = {.lex_state = 8, .external_lex_state = 3}, + [1673] = {.lex_state = 8, .external_lex_state = 3}, + [1674] = {.lex_state = 8, .external_lex_state = 3}, + [1675] = {.lex_state = 8, .external_lex_state = 3}, [1676] = {.lex_state = 8, .external_lex_state = 3}, [1677] = {.lex_state = 8, .external_lex_state = 3}, [1678] = {.lex_state = 8, .external_lex_state = 3}, [1679] = {.lex_state = 8, .external_lex_state = 3}, - [1680] = {.lex_state = 8, .external_lex_state = 4}, - [1681] = {.lex_state = 8, .external_lex_state = 4}, + [1680] = {.lex_state = 8, .external_lex_state = 3}, + [1681] = {.lex_state = 8, .external_lex_state = 3}, [1682] = {.lex_state = 8, .external_lex_state = 3}, - [1683] = {.lex_state = 8, .external_lex_state = 3}, + [1683] = {.lex_state = 13, .external_lex_state = 5}, [1684] = {.lex_state = 8, .external_lex_state = 3}, [1685] = {.lex_state = 8, .external_lex_state = 3}, - [1686] = {.lex_state = 8, .external_lex_state = 4}, + [1686] = {.lex_state = 8, .external_lex_state = 3}, [1687] = {.lex_state = 8, .external_lex_state = 3}, - [1688] = {.lex_state = 8, .external_lex_state = 4}, + [1688] = {.lex_state = 8, .external_lex_state = 3}, [1689] = {.lex_state = 8, .external_lex_state = 3}, [1690] = {.lex_state = 8, .external_lex_state = 3}, - [1691] = {.lex_state = 8, .external_lex_state = 4}, + [1691] = {.lex_state = 8, .external_lex_state = 3}, [1692] = {.lex_state = 8, .external_lex_state = 4}, [1693] = {.lex_state = 8, .external_lex_state = 4}, - [1694] = {.lex_state = 8, .external_lex_state = 4}, - [1695] = {.lex_state = 8, .external_lex_state = 4}, - [1696] = {.lex_state = 8, .external_lex_state = 4}, - [1697] = {.lex_state = 8, .external_lex_state = 3}, - [1698] = {.lex_state = 13, .external_lex_state = 5}, - [1699] = {.lex_state = 8, .external_lex_state = 4}, - [1700] = {.lex_state = 8, .external_lex_state = 3}, - [1701] = {.lex_state = 8, .external_lex_state = 3}, + [1694] = {.lex_state = 8, .external_lex_state = 3}, + [1695] = {.lex_state = 8, .external_lex_state = 3}, + [1696] = {.lex_state = 13, .external_lex_state = 5}, + [1697] = {.lex_state = 8, .external_lex_state = 4}, + [1698] = {.lex_state = 8, .external_lex_state = 4}, + [1699] = {.lex_state = 8, .external_lex_state = 3}, + [1700] = {.lex_state = 8, .external_lex_state = 4}, + [1701] = {.lex_state = 13, .external_lex_state = 5}, [1702] = {.lex_state = 8, .external_lex_state = 3}, [1703] = {.lex_state = 13, .external_lex_state = 5}, - [1704] = {.lex_state = 8, .external_lex_state = 3}, - [1705] = {.lex_state = 8, .external_lex_state = 4}, + [1704] = {.lex_state = 8, .external_lex_state = 4}, + [1705] = {.lex_state = 13, .external_lex_state = 5}, [1706] = {.lex_state = 8, .external_lex_state = 3}, [1707] = {.lex_state = 8, .external_lex_state = 3}, - [1708] = {.lex_state = 8, .external_lex_state = 3}, + [1708] = {.lex_state = 8, .external_lex_state = 4}, [1709] = {.lex_state = 8, .external_lex_state = 4}, - [1710] = {.lex_state = 8, .external_lex_state = 3}, - [1711] = {.lex_state = 8, .external_lex_state = 3}, + [1710] = {.lex_state = 8, .external_lex_state = 4}, + [1711] = {.lex_state = 8, .external_lex_state = 4}, [1712] = {.lex_state = 8, .external_lex_state = 3}, - [1713] = {.lex_state = 8, .external_lex_state = 3}, + [1713] = {.lex_state = 8, .external_lex_state = 4}, [1714] = {.lex_state = 8, .external_lex_state = 3}, [1715] = {.lex_state = 8, .external_lex_state = 3}, - [1716] = {.lex_state = 8, .external_lex_state = 4}, - [1717] = {.lex_state = 8, .external_lex_state = 4}, - [1718] = {.lex_state = 8, .external_lex_state = 3}, - [1719] = {.lex_state = 8, .external_lex_state = 4}, + [1716] = {.lex_state = 13, .external_lex_state = 5}, + [1717] = {.lex_state = 8, .external_lex_state = 3}, + [1718] = {.lex_state = 13, .external_lex_state = 5}, + [1719] = {.lex_state = 8, .external_lex_state = 3}, [1720] = {.lex_state = 8, .external_lex_state = 4}, - [1721] = {.lex_state = 8, .external_lex_state = 3}, + [1721] = {.lex_state = 13, .external_lex_state = 5}, [1722] = {.lex_state = 8, .external_lex_state = 4}, - [1723] = {.lex_state = 8, .external_lex_state = 3}, - [1724] = {.lex_state = 8, .external_lex_state = 3}, + [1723] = {.lex_state = 8, .external_lex_state = 4}, + [1724] = {.lex_state = 150, .external_lex_state = 2}, [1725] = {.lex_state = 8, .external_lex_state = 3}, - [1726] = {.lex_state = 8, .external_lex_state = 3}, + [1726] = {.lex_state = 13, .external_lex_state = 5}, [1727] = {.lex_state = 8, .external_lex_state = 4}, [1728] = {.lex_state = 8, .external_lex_state = 3}, [1729] = {.lex_state = 8, .external_lex_state = 3}, [1730] = {.lex_state = 8, .external_lex_state = 3}, - [1731] = {.lex_state = 8, .external_lex_state = 3}, - [1732] = {.lex_state = 8, .external_lex_state = 3}, - [1733] = {.lex_state = 14, .external_lex_state = 5}, + [1731] = {.lex_state = 8, .external_lex_state = 4}, + [1732] = {.lex_state = 8, .external_lex_state = 4}, + [1733] = {.lex_state = 8, .external_lex_state = 4}, [1734] = {.lex_state = 8, .external_lex_state = 3}, [1735] = {.lex_state = 8, .external_lex_state = 4}, - [1736] = {.lex_state = 8, .external_lex_state = 3}, + [1736] = {.lex_state = 8, .external_lex_state = 4}, [1737] = {.lex_state = 8, .external_lex_state = 4}, [1738] = {.lex_state = 8, .external_lex_state = 4}, [1739] = {.lex_state = 8, .external_lex_state = 4}, [1740] = {.lex_state = 8, .external_lex_state = 4}, - [1741] = {.lex_state = 8, .external_lex_state = 4}, + [1741] = {.lex_state = 8, .external_lex_state = 3}, [1742] = {.lex_state = 8, .external_lex_state = 4}, - [1743] = {.lex_state = 13, .external_lex_state = 5}, - [1744] = {.lex_state = 8, .external_lex_state = 3}, - [1745] = {.lex_state = 8, .external_lex_state = 3}, - [1746] = {.lex_state = 8, .external_lex_state = 4}, + [1743] = {.lex_state = 8, .external_lex_state = 4}, + [1744] = {.lex_state = 8, .external_lex_state = 4}, + [1745] = {.lex_state = 8, .external_lex_state = 4}, + [1746] = {.lex_state = 8, .external_lex_state = 3}, [1747] = {.lex_state = 8, .external_lex_state = 4}, [1748] = {.lex_state = 8, .external_lex_state = 4}, - [1749] = {.lex_state = 13, .external_lex_state = 5}, + [1749] = {.lex_state = 8, .external_lex_state = 4}, [1750] = {.lex_state = 8, .external_lex_state = 4}, - [1751] = {.lex_state = 8, .external_lex_state = 4}, + [1751] = {.lex_state = 8, .external_lex_state = 3}, [1752] = {.lex_state = 8, .external_lex_state = 4}, - [1753] = {.lex_state = 8, .external_lex_state = 3}, + [1753] = {.lex_state = 8, .external_lex_state = 4}, [1754] = {.lex_state = 8, .external_lex_state = 3}, - [1755] = {.lex_state = 13, .external_lex_state = 5}, - [1756] = {.lex_state = 8, .external_lex_state = 3}, + [1755] = {.lex_state = 8, .external_lex_state = 3}, + [1756] = {.lex_state = 8, .external_lex_state = 4}, [1757] = {.lex_state = 8, .external_lex_state = 3}, [1758] = {.lex_state = 8, .external_lex_state = 3}, - [1759] = {.lex_state = 8, .external_lex_state = 4}, + [1759] = {.lex_state = 8, .external_lex_state = 3}, [1760] = {.lex_state = 8, .external_lex_state = 4}, - [1761] = {.lex_state = 8, .external_lex_state = 3}, + [1761] = {.lex_state = 8, .external_lex_state = 4}, [1762] = {.lex_state = 8, .external_lex_state = 4}, [1763] = {.lex_state = 8, .external_lex_state = 3}, - [1764] = {.lex_state = 8, .external_lex_state = 4}, + [1764] = {.lex_state = 8, .external_lex_state = 3}, [1765] = {.lex_state = 8, .external_lex_state = 4}, [1766] = {.lex_state = 8, .external_lex_state = 4}, - [1767] = {.lex_state = 8, .external_lex_state = 3}, + [1767] = {.lex_state = 8, .external_lex_state = 4}, [1768] = {.lex_state = 8, .external_lex_state = 4}, - [1769] = {.lex_state = 8, .external_lex_state = 3}, - [1770] = {.lex_state = 13, .external_lex_state = 5}, - [1771] = {.lex_state = 8, .external_lex_state = 3}, - [1772] = {.lex_state = 8, .external_lex_state = 4}, + [1769] = {.lex_state = 8, .external_lex_state = 4}, + [1770] = {.lex_state = 8, .external_lex_state = 4}, + [1771] = {.lex_state = 8, .external_lex_state = 4}, + [1772] = {.lex_state = 8, .external_lex_state = 3}, [1773] = {.lex_state = 8, .external_lex_state = 4}, - [1774] = {.lex_state = 8, .external_lex_state = 3}, - [1775] = {.lex_state = 8, .external_lex_state = 3}, - [1776] = {.lex_state = 8, .external_lex_state = 3}, + [1774] = {.lex_state = 8, .external_lex_state = 4}, + [1775] = {.lex_state = 8, .external_lex_state = 4}, + [1776] = {.lex_state = 8, .external_lex_state = 4}, [1777] = {.lex_state = 8, .external_lex_state = 4}, [1778] = {.lex_state = 8, .external_lex_state = 4}, [1779] = {.lex_state = 8, .external_lex_state = 4}, - [1780] = {.lex_state = 8, .external_lex_state = 4}, + [1780] = {.lex_state = 8, .external_lex_state = 3}, [1781] = {.lex_state = 8, .external_lex_state = 3}, - [1782] = {.lex_state = 8, .external_lex_state = 3}, + [1782] = {.lex_state = 8, .external_lex_state = 4}, [1783] = {.lex_state = 8, .external_lex_state = 4}, - [1784] = {.lex_state = 8, .external_lex_state = 3}, - [1785] = {.lex_state = 8, .external_lex_state = 3}, + [1784] = {.lex_state = 8, .external_lex_state = 4}, + [1785] = {.lex_state = 8, .external_lex_state = 4}, [1786] = {.lex_state = 8, .external_lex_state = 4}, - [1787] = {.lex_state = 8, .external_lex_state = 4}, + [1787] = {.lex_state = 8, .external_lex_state = 3}, [1788] = {.lex_state = 8, .external_lex_state = 4}, [1789] = {.lex_state = 8, .external_lex_state = 4}, - [1790] = {.lex_state = 8, .external_lex_state = 4}, - [1791] = {.lex_state = 8, .external_lex_state = 3}, - [1792] = {.lex_state = 8, .external_lex_state = 3}, - [1793] = {.lex_state = 8, .external_lex_state = 3}, - [1794] = {.lex_state = 8, .external_lex_state = 3}, + [1790] = {.lex_state = 8, .external_lex_state = 3}, + [1791] = {.lex_state = 8, .external_lex_state = 4}, + [1792] = {.lex_state = 8, .external_lex_state = 4}, + [1793] = {.lex_state = 8, .external_lex_state = 4}, + [1794] = {.lex_state = 8, .external_lex_state = 4}, [1795] = {.lex_state = 8, .external_lex_state = 3}, [1796] = {.lex_state = 8, .external_lex_state = 3}, - [1797] = {.lex_state = 8, .external_lex_state = 4}, - [1798] = {.lex_state = 8, .external_lex_state = 4}, - [1799] = {.lex_state = 8, .external_lex_state = 4}, - [1800] = {.lex_state = 8, .external_lex_state = 4}, + [1797] = {.lex_state = 8, .external_lex_state = 3}, + [1798] = {.lex_state = 8, .external_lex_state = 3}, + [1799] = {.lex_state = 8, .external_lex_state = 3}, + [1800] = {.lex_state = 8, .external_lex_state = 3}, [1801] = {.lex_state = 8, .external_lex_state = 4}, [1802] = {.lex_state = 8, .external_lex_state = 3}, - [1803] = {.lex_state = 8, .external_lex_state = 4}, + [1803] = {.lex_state = 8, .external_lex_state = 3}, [1804] = {.lex_state = 8, .external_lex_state = 3}, [1805] = {.lex_state = 8, .external_lex_state = 3}, [1806] = {.lex_state = 8, .external_lex_state = 3}, [1807] = {.lex_state = 8, .external_lex_state = 3}, - [1808] = {.lex_state = 8, .external_lex_state = 4}, - [1809] = {.lex_state = 13, .external_lex_state = 5}, - [1810] = {.lex_state = 8, .external_lex_state = 4}, - [1811] = {.lex_state = 8, .external_lex_state = 4}, - [1812] = {.lex_state = 8, .external_lex_state = 4}, + [1808] = {.lex_state = 8, .external_lex_state = 3}, + [1809] = {.lex_state = 8, .external_lex_state = 3}, + [1810] = {.lex_state = 8, .external_lex_state = 3}, + [1811] = {.lex_state = 8, .external_lex_state = 3}, + [1812] = {.lex_state = 8, .external_lex_state = 3}, [1813] = {.lex_state = 13, .external_lex_state = 5}, - [1814] = {.lex_state = 8, .external_lex_state = 4}, + [1814] = {.lex_state = 8, .external_lex_state = 3}, [1815] = {.lex_state = 8, .external_lex_state = 3}, - [1816] = {.lex_state = 8, .external_lex_state = 4}, + [1816] = {.lex_state = 8, .external_lex_state = 3}, [1817] = {.lex_state = 8, .external_lex_state = 3}, [1818] = {.lex_state = 8, .external_lex_state = 3}, [1819] = {.lex_state = 8, .external_lex_state = 3}, [1820] = {.lex_state = 8, .external_lex_state = 3}, [1821] = {.lex_state = 8, .external_lex_state = 3}, - [1822] = {.lex_state = 8, .external_lex_state = 4}, + [1822] = {.lex_state = 8, .external_lex_state = 3}, [1823] = {.lex_state = 8, .external_lex_state = 3}, - [1824] = {.lex_state = 13, .external_lex_state = 5}, - [1825] = {.lex_state = 8, .external_lex_state = 4}, - [1826] = {.lex_state = 8, .external_lex_state = 4}, - [1827] = {.lex_state = 8, .external_lex_state = 4}, + [1824] = {.lex_state = 8, .external_lex_state = 3}, + [1825] = {.lex_state = 8, .external_lex_state = 3}, + [1826] = {.lex_state = 8, .external_lex_state = 3}, + [1827] = {.lex_state = 8, .external_lex_state = 3}, [1828] = {.lex_state = 8, .external_lex_state = 3}, - [1829] = {.lex_state = 8, .external_lex_state = 3}, - [1830] = {.lex_state = 8, .external_lex_state = 4}, - [1831] = {.lex_state = 8, .external_lex_state = 4}, + [1829] = {.lex_state = 8, .external_lex_state = 4}, + [1830] = {.lex_state = 8, .external_lex_state = 3}, + [1831] = {.lex_state = 8, .external_lex_state = 3}, [1832] = {.lex_state = 8, .external_lex_state = 3}, [1833] = {.lex_state = 8, .external_lex_state = 3}, [1834] = {.lex_state = 8, .external_lex_state = 3}, - [1835] = {.lex_state = 13, .external_lex_state = 5}, + [1835] = {.lex_state = 8, .external_lex_state = 4}, [1836] = {.lex_state = 8, .external_lex_state = 3}, - [1837] = {.lex_state = 8, .external_lex_state = 3}, - [1838] = {.lex_state = 8, .external_lex_state = 4}, - [1839] = {.lex_state = 8, .external_lex_state = 3}, - [1840] = {.lex_state = 13, .external_lex_state = 5}, - [1841] = {.lex_state = 8, .external_lex_state = 3}, - [1842] = {.lex_state = 8, .external_lex_state = 3}, - [1843] = {.lex_state = 13, .external_lex_state = 5}, - [1844] = {.lex_state = 8, .external_lex_state = 3}, + [1837] = {.lex_state = 8, .external_lex_state = 4}, + [1838] = {.lex_state = 8, .external_lex_state = 3}, + [1839] = {.lex_state = 8, .external_lex_state = 4}, + [1840] = {.lex_state = 8, .external_lex_state = 3}, + [1841] = {.lex_state = 13, .external_lex_state = 5}, + [1842] = {.lex_state = 8, .external_lex_state = 4}, + [1843] = {.lex_state = 8, .external_lex_state = 3}, + [1844] = {.lex_state = 8, .external_lex_state = 4}, [1845] = {.lex_state = 8, .external_lex_state = 3}, [1846] = {.lex_state = 8, .external_lex_state = 3}, - [1847] = {.lex_state = 8, .external_lex_state = 3}, - [1848] = {.lex_state = 8, .external_lex_state = 3}, + [1847] = {.lex_state = 150, .external_lex_state = 2}, + [1848] = {.lex_state = 8, .external_lex_state = 4}, [1849] = {.lex_state = 8, .external_lex_state = 3}, [1850] = {.lex_state = 8, .external_lex_state = 3}, [1851] = {.lex_state = 8, .external_lex_state = 3}, - [1852] = {.lex_state = 13, .external_lex_state = 5}, + [1852] = {.lex_state = 8, .external_lex_state = 4}, [1853] = {.lex_state = 8, .external_lex_state = 3}, [1854] = {.lex_state = 8, .external_lex_state = 4}, - [1855] = {.lex_state = 13, .external_lex_state = 5}, + [1855] = {.lex_state = 8, .external_lex_state = 4}, [1856] = {.lex_state = 8, .external_lex_state = 3}, [1857] = {.lex_state = 8, .external_lex_state = 3}, [1858] = {.lex_state = 8, .external_lex_state = 3}, - [1859] = {.lex_state = 8, .external_lex_state = 3}, + [1859] = {.lex_state = 13, .external_lex_state = 5}, [1860] = {.lex_state = 8, .external_lex_state = 3}, [1861] = {.lex_state = 8, .external_lex_state = 3}, [1862] = {.lex_state = 8, .external_lex_state = 3}, - [1863] = {.lex_state = 8, .external_lex_state = 3}, + [1863] = {.lex_state = 8, .external_lex_state = 4}, [1864] = {.lex_state = 8, .external_lex_state = 3}, - [1865] = {.lex_state = 8, .external_lex_state = 3}, + [1865] = {.lex_state = 13, .external_lex_state = 5}, [1866] = {.lex_state = 8, .external_lex_state = 3}, - [1867] = {.lex_state = 8, .external_lex_state = 3}, + [1867] = {.lex_state = 13, .external_lex_state = 5}, [1868] = {.lex_state = 8, .external_lex_state = 3}, [1869] = {.lex_state = 8, .external_lex_state = 3}, [1870] = {.lex_state = 8, .external_lex_state = 3}, [1871] = {.lex_state = 8, .external_lex_state = 3}, [1872] = {.lex_state = 8, .external_lex_state = 3}, [1873] = {.lex_state = 8, .external_lex_state = 3}, - [1874] = {.lex_state = 8, .external_lex_state = 3}, + [1874] = {.lex_state = 8, .external_lex_state = 4}, [1875] = {.lex_state = 8, .external_lex_state = 3}, [1876] = {.lex_state = 8, .external_lex_state = 3}, [1877] = {.lex_state = 8, .external_lex_state = 3}, @@ -15917,214 +17634,214 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1879] = {.lex_state = 8, .external_lex_state = 3}, [1880] = {.lex_state = 8, .external_lex_state = 3}, [1881] = {.lex_state = 8, .external_lex_state = 3}, - [1882] = {.lex_state = 8, .external_lex_state = 3}, - [1883] = {.lex_state = 8, .external_lex_state = 3}, - [1884] = {.lex_state = 8, .external_lex_state = 3}, - [1885] = {.lex_state = 8, .external_lex_state = 3}, + [1882] = {.lex_state = 8, .external_lex_state = 4}, + [1883] = {.lex_state = 8, .external_lex_state = 4}, + [1884] = {.lex_state = 8, .external_lex_state = 4}, + [1885] = {.lex_state = 8, .external_lex_state = 4}, [1886] = {.lex_state = 8, .external_lex_state = 3}, - [1887] = {.lex_state = 8, .external_lex_state = 3}, - [1888] = {.lex_state = 8, .external_lex_state = 3}, + [1887] = {.lex_state = 8, .external_lex_state = 4}, + [1888] = {.lex_state = 13, .external_lex_state = 5}, [1889] = {.lex_state = 8, .external_lex_state = 3}, [1890] = {.lex_state = 8, .external_lex_state = 3}, [1891] = {.lex_state = 8, .external_lex_state = 4}, - [1892] = {.lex_state = 8, .external_lex_state = 4}, + [1892] = {.lex_state = 8, .external_lex_state = 3}, [1893] = {.lex_state = 8, .external_lex_state = 4}, - [1894] = {.lex_state = 8, .external_lex_state = 4}, - [1895] = {.lex_state = 8, .external_lex_state = 4}, - [1896] = {.lex_state = 8, .external_lex_state = 4}, + [1894] = {.lex_state = 13, .external_lex_state = 5}, + [1895] = {.lex_state = 13, .external_lex_state = 5}, + [1896] = {.lex_state = 9, .external_lex_state = 3}, [1897] = {.lex_state = 8, .external_lex_state = 4}, [1898] = {.lex_state = 8, .external_lex_state = 4}, [1899] = {.lex_state = 8, .external_lex_state = 4}, - [1900] = {.lex_state = 8, .external_lex_state = 4}, - [1901] = {.lex_state = 8, .external_lex_state = 4}, - [1902] = {.lex_state = 8, .external_lex_state = 4}, + [1900] = {.lex_state = 13, .external_lex_state = 5}, + [1901] = {.lex_state = 13, .external_lex_state = 5}, + [1902] = {.lex_state = 8, .external_lex_state = 3}, [1903] = {.lex_state = 8, .external_lex_state = 4}, - [1904] = {.lex_state = 8, .external_lex_state = 4}, + [1904] = {.lex_state = 8, .external_lex_state = 3}, [1905] = {.lex_state = 8, .external_lex_state = 4}, [1906] = {.lex_state = 8, .external_lex_state = 4}, [1907] = {.lex_state = 8, .external_lex_state = 4}, [1908] = {.lex_state = 8, .external_lex_state = 4}, - [1909] = {.lex_state = 8, .external_lex_state = 4}, + [1909] = {.lex_state = 8, .external_lex_state = 3}, [1910] = {.lex_state = 8, .external_lex_state = 4}, - [1911] = {.lex_state = 8, .external_lex_state = 4}, - [1912] = {.lex_state = 8, .external_lex_state = 4}, - [1913] = {.lex_state = 8, .external_lex_state = 4}, - [1914] = {.lex_state = 8, .external_lex_state = 4}, + [1911] = {.lex_state = 8, .external_lex_state = 3}, + [1912] = {.lex_state = 8, .external_lex_state = 3}, + [1913] = {.lex_state = 8, .external_lex_state = 3}, + [1914] = {.lex_state = 8, .external_lex_state = 3}, [1915] = {.lex_state = 8, .external_lex_state = 4}, - [1916] = {.lex_state = 8, .external_lex_state = 4}, - [1917] = {.lex_state = 8, .external_lex_state = 4}, - [1918] = {.lex_state = 8, .external_lex_state = 4}, - [1919] = {.lex_state = 8, .external_lex_state = 4}, - [1920] = {.lex_state = 8, .external_lex_state = 4}, - [1921] = {.lex_state = 8, .external_lex_state = 4}, - [1922] = {.lex_state = 8, .external_lex_state = 4}, + [1916] = {.lex_state = 8, .external_lex_state = 3}, + [1917] = {.lex_state = 8, .external_lex_state = 3}, + [1918] = {.lex_state = 8, .external_lex_state = 3}, + [1919] = {.lex_state = 8, .external_lex_state = 3}, + [1920] = {.lex_state = 8, .external_lex_state = 3}, + [1921] = {.lex_state = 8, .external_lex_state = 3}, + [1922] = {.lex_state = 8, .external_lex_state = 3}, [1923] = {.lex_state = 8, .external_lex_state = 4}, [1924] = {.lex_state = 8, .external_lex_state = 4}, [1925] = {.lex_state = 8, .external_lex_state = 3}, - [1926] = {.lex_state = 13, .external_lex_state = 2}, - [1927] = {.lex_state = 8, .external_lex_state = 3}, - [1928] = {.lex_state = 8, .external_lex_state = 4}, - [1929] = {.lex_state = 8, .external_lex_state = 4}, + [1926] = {.lex_state = 8, .external_lex_state = 3}, + [1927] = {.lex_state = 8, .external_lex_state = 4}, + [1928] = {.lex_state = 13, .external_lex_state = 2}, + [1929] = {.lex_state = 8, .external_lex_state = 3}, [1930] = {.lex_state = 8, .external_lex_state = 3}, - [1931] = {.lex_state = 8, .external_lex_state = 4}, - [1932] = {.lex_state = 8, .external_lex_state = 4}, + [1931] = {.lex_state = 8, .external_lex_state = 3}, + [1932] = {.lex_state = 8, .external_lex_state = 3}, [1933] = {.lex_state = 8, .external_lex_state = 3}, - [1934] = {.lex_state = 9, .external_lex_state = 3}, - [1935] = {.lex_state = 8, .external_lex_state = 4}, - [1936] = {.lex_state = 8, .external_lex_state = 4}, - [1937] = {.lex_state = 8, .external_lex_state = 4}, - [1938] = {.lex_state = 8, .external_lex_state = 4}, - [1939] = {.lex_state = 8, .external_lex_state = 4}, - [1940] = {.lex_state = 8, .external_lex_state = 4}, + [1934] = {.lex_state = 8, .external_lex_state = 3}, + [1935] = {.lex_state = 8, .external_lex_state = 3}, + [1936] = {.lex_state = 8, .external_lex_state = 3}, + [1937] = {.lex_state = 8, .external_lex_state = 3}, + [1938] = {.lex_state = 8, .external_lex_state = 3}, + [1939] = {.lex_state = 8, .external_lex_state = 3}, + [1940] = {.lex_state = 8, .external_lex_state = 3}, [1941] = {.lex_state = 8, .external_lex_state = 4}, - [1942] = {.lex_state = 13, .external_lex_state = 5}, - [1943] = {.lex_state = 8, .external_lex_state = 3}, - [1944] = {.lex_state = 13, .external_lex_state = 2}, - [1945] = {.lex_state = 8, .external_lex_state = 3}, + [1942] = {.lex_state = 8, .external_lex_state = 4}, + [1943] = {.lex_state = 8, .external_lex_state = 4}, + [1944] = {.lex_state = 8, .external_lex_state = 4}, + [1945] = {.lex_state = 8, .external_lex_state = 4}, [1946] = {.lex_state = 8, .external_lex_state = 4}, [1947] = {.lex_state = 8, .external_lex_state = 4}, - [1948] = {.lex_state = 151, .external_lex_state = 2}, + [1948] = {.lex_state = 8, .external_lex_state = 4}, [1949] = {.lex_state = 8, .external_lex_state = 4}, [1950] = {.lex_state = 8, .external_lex_state = 4}, - [1951] = {.lex_state = 8, .external_lex_state = 4}, - [1952] = {.lex_state = 8, .external_lex_state = 4}, + [1951] = {.lex_state = 8, .external_lex_state = 3}, + [1952] = {.lex_state = 13, .external_lex_state = 5}, [1953] = {.lex_state = 8, .external_lex_state = 3}, [1954] = {.lex_state = 13, .external_lex_state = 5}, - [1955] = {.lex_state = 13, .external_lex_state = 5}, - [1956] = {.lex_state = 8, .external_lex_state = 4}, + [1955] = {.lex_state = 8, .external_lex_state = 4}, + [1956] = {.lex_state = 13, .external_lex_state = 5}, [1957] = {.lex_state = 13, .external_lex_state = 5}, - [1958] = {.lex_state = 13, .external_lex_state = 5}, + [1958] = {.lex_state = 8, .external_lex_state = 4}, [1959] = {.lex_state = 8, .external_lex_state = 4}, - [1960] = {.lex_state = 13, .external_lex_state = 5}, - [1961] = {.lex_state = 8, .external_lex_state = 3}, - [1962] = {.lex_state = 8, .external_lex_state = 3}, - [1963] = {.lex_state = 13, .external_lex_state = 2}, - [1964] = {.lex_state = 8, .external_lex_state = 3}, - [1965] = {.lex_state = 8, .external_lex_state = 3}, - [1966] = {.lex_state = 8, .external_lex_state = 4}, - [1967] = {.lex_state = 8, .external_lex_state = 4}, - [1968] = {.lex_state = 13, .external_lex_state = 2}, - [1969] = {.lex_state = 8, .external_lex_state = 3}, - [1970] = {.lex_state = 8, .external_lex_state = 3}, - [1971] = {.lex_state = 13, .external_lex_state = 2}, + [1960] = {.lex_state = 8, .external_lex_state = 4}, + [1961] = {.lex_state = 8, .external_lex_state = 4}, + [1962] = {.lex_state = 8, .external_lex_state = 4}, + [1963] = {.lex_state = 8, .external_lex_state = 4}, + [1964] = {.lex_state = 8, .external_lex_state = 4}, + [1965] = {.lex_state = 8, .external_lex_state = 4}, + [1966] = {.lex_state = 8, .external_lex_state = 3}, + [1967] = {.lex_state = 8, .external_lex_state = 3}, + [1968] = {.lex_state = 8, .external_lex_state = 4}, + [1969] = {.lex_state = 8, .external_lex_state = 4}, + [1970] = {.lex_state = 8, .external_lex_state = 4}, + [1971] = {.lex_state = 13, .external_lex_state = 5}, [1972] = {.lex_state = 8, .external_lex_state = 4}, - [1973] = {.lex_state = 8, .external_lex_state = 4}, + [1973] = {.lex_state = 13, .external_lex_state = 5}, [1974] = {.lex_state = 8, .external_lex_state = 4}, [1975] = {.lex_state = 8, .external_lex_state = 4}, [1976] = {.lex_state = 8, .external_lex_state = 4}, [1977] = {.lex_state = 8, .external_lex_state = 4}, [1978] = {.lex_state = 8, .external_lex_state = 4}, - [1979] = {.lex_state = 151, .external_lex_state = 2}, + [1979] = {.lex_state = 8, .external_lex_state = 4}, [1980] = {.lex_state = 8, .external_lex_state = 4}, [1981] = {.lex_state = 8, .external_lex_state = 4}, [1982] = {.lex_state = 8, .external_lex_state = 4}, - [1983] = {.lex_state = 8, .external_lex_state = 4}, - [1984] = {.lex_state = 8, .external_lex_state = 4}, - [1985] = {.lex_state = 8, .external_lex_state = 4}, + [1983] = {.lex_state = 8, .external_lex_state = 3}, + [1984] = {.lex_state = 8, .external_lex_state = 3}, + [1985] = {.lex_state = 13, .external_lex_state = 2}, [1986] = {.lex_state = 8, .external_lex_state = 4}, [1987] = {.lex_state = 8, .external_lex_state = 4}, [1988] = {.lex_state = 8, .external_lex_state = 4}, [1989] = {.lex_state = 8, .external_lex_state = 4}, [1990] = {.lex_state = 8, .external_lex_state = 4}, - [1991] = {.lex_state = 8, .external_lex_state = 3}, + [1991] = {.lex_state = 13, .external_lex_state = 5}, [1992] = {.lex_state = 8, .external_lex_state = 4}, [1993] = {.lex_state = 8, .external_lex_state = 3}, [1994] = {.lex_state = 8, .external_lex_state = 4}, [1995] = {.lex_state = 8, .external_lex_state = 4}, - [1996] = {.lex_state = 8, .external_lex_state = 4}, + [1996] = {.lex_state = 13, .external_lex_state = 2}, [1997] = {.lex_state = 8, .external_lex_state = 4}, - [1998] = {.lex_state = 8, .external_lex_state = 4}, + [1998] = {.lex_state = 8, .external_lex_state = 3}, [1999] = {.lex_state = 8, .external_lex_state = 4}, - [2000] = {.lex_state = 8, .external_lex_state = 4}, + [2000] = {.lex_state = 8, .external_lex_state = 3}, [2001] = {.lex_state = 8, .external_lex_state = 4}, - [2002] = {.lex_state = 8, .external_lex_state = 4}, - [2003] = {.lex_state = 8, .external_lex_state = 4}, + [2002] = {.lex_state = 8, .external_lex_state = 3}, + [2003] = {.lex_state = 8, .external_lex_state = 3}, [2004] = {.lex_state = 8, .external_lex_state = 4}, [2005] = {.lex_state = 8, .external_lex_state = 4}, [2006] = {.lex_state = 8, .external_lex_state = 4}, [2007] = {.lex_state = 8, .external_lex_state = 4}, [2008] = {.lex_state = 8, .external_lex_state = 4}, [2009] = {.lex_state = 8, .external_lex_state = 4}, - [2010] = {.lex_state = 8, .external_lex_state = 4}, - [2011] = {.lex_state = 8, .external_lex_state = 4}, - [2012] = {.lex_state = 8, .external_lex_state = 4}, + [2010] = {.lex_state = 13, .external_lex_state = 2}, + [2011] = {.lex_state = 8, .external_lex_state = 3}, + [2012] = {.lex_state = 13, .external_lex_state = 2}, [2013] = {.lex_state = 8, .external_lex_state = 4}, - [2014] = {.lex_state = 8, .external_lex_state = 4}, + [2014] = {.lex_state = 8, .external_lex_state = 3}, [2015] = {.lex_state = 8, .external_lex_state = 4}, - [2016] = {.lex_state = 8, .external_lex_state = 4}, + [2016] = {.lex_state = 13, .external_lex_state = 2}, [2017] = {.lex_state = 8, .external_lex_state = 4}, - [2018] = {.lex_state = 13, .external_lex_state = 5}, + [2018] = {.lex_state = 8, .external_lex_state = 4}, [2019] = {.lex_state = 8, .external_lex_state = 4}, [2020] = {.lex_state = 8, .external_lex_state = 4}, [2021] = {.lex_state = 8, .external_lex_state = 4}, [2022] = {.lex_state = 8, .external_lex_state = 4}, [2023] = {.lex_state = 8, .external_lex_state = 4}, - [2024] = {.lex_state = 8, .external_lex_state = 4}, + [2024] = {.lex_state = 8, .external_lex_state = 3}, [2025] = {.lex_state = 8, .external_lex_state = 4}, - [2026] = {.lex_state = 8, .external_lex_state = 3}, + [2026] = {.lex_state = 8, .external_lex_state = 4}, [2027] = {.lex_state = 8, .external_lex_state = 4}, - [2028] = {.lex_state = 8, .external_lex_state = 3}, + [2028] = {.lex_state = 8, .external_lex_state = 4}, [2029] = {.lex_state = 8, .external_lex_state = 4}, - [2030] = {.lex_state = 8, .external_lex_state = 4}, + [2030] = {.lex_state = 150, .external_lex_state = 2}, [2031] = {.lex_state = 8, .external_lex_state = 4}, [2032] = {.lex_state = 8, .external_lex_state = 4}, [2033] = {.lex_state = 8, .external_lex_state = 4}, [2034] = {.lex_state = 8, .external_lex_state = 4}, [2035] = {.lex_state = 8, .external_lex_state = 4}, - [2036] = {.lex_state = 13, .external_lex_state = 2}, + [2036] = {.lex_state = 8, .external_lex_state = 4}, [2037] = {.lex_state = 8, .external_lex_state = 4}, [2038] = {.lex_state = 8, .external_lex_state = 4}, - [2039] = {.lex_state = 13, .external_lex_state = 2}, + [2039] = {.lex_state = 8, .external_lex_state = 4}, [2040] = {.lex_state = 8, .external_lex_state = 4}, [2041] = {.lex_state = 8, .external_lex_state = 4}, [2042] = {.lex_state = 8, .external_lex_state = 4}, [2043] = {.lex_state = 8, .external_lex_state = 4}, - [2044] = {.lex_state = 13, .external_lex_state = 5}, - [2045] = {.lex_state = 13, .external_lex_state = 5}, + [2044] = {.lex_state = 8, .external_lex_state = 4}, + [2045] = {.lex_state = 8, .external_lex_state = 4}, [2046] = {.lex_state = 8, .external_lex_state = 4}, [2047] = {.lex_state = 8, .external_lex_state = 4}, - [2048] = {.lex_state = 13, .external_lex_state = 5}, + [2048] = {.lex_state = 8, .external_lex_state = 4}, [2049] = {.lex_state = 8, .external_lex_state = 4}, - [2050] = {.lex_state = 8, .external_lex_state = 3}, - [2051] = {.lex_state = 8, .external_lex_state = 3}, - [2052] = {.lex_state = 8, .external_lex_state = 3}, - [2053] = {.lex_state = 8, .external_lex_state = 3}, - [2054] = {.lex_state = 8, .external_lex_state = 3}, - [2055] = {.lex_state = 8, .external_lex_state = 3}, - [2056] = {.lex_state = 8, .external_lex_state = 3}, - [2057] = {.lex_state = 8, .external_lex_state = 3}, - [2058] = {.lex_state = 8, .external_lex_state = 3}, - [2059] = {.lex_state = 8, .external_lex_state = 3}, - [2060] = {.lex_state = 8, .external_lex_state = 3}, + [2050] = {.lex_state = 8, .external_lex_state = 4}, + [2051] = {.lex_state = 8, .external_lex_state = 4}, + [2052] = {.lex_state = 8, .external_lex_state = 4}, + [2053] = {.lex_state = 8, .external_lex_state = 4}, + [2054] = {.lex_state = 8, .external_lex_state = 4}, + [2055] = {.lex_state = 8, .external_lex_state = 4}, + [2056] = {.lex_state = 8, .external_lex_state = 4}, + [2057] = {.lex_state = 8, .external_lex_state = 4}, + [2058] = {.lex_state = 8, .external_lex_state = 4}, + [2059] = {.lex_state = 8, .external_lex_state = 4}, + [2060] = {.lex_state = 8, .external_lex_state = 4}, [2061] = {.lex_state = 8, .external_lex_state = 3}, - [2062] = {.lex_state = 8, .external_lex_state = 3}, - [2063] = {.lex_state = 8, .external_lex_state = 3}, + [2062] = {.lex_state = 8, .external_lex_state = 4}, + [2063] = {.lex_state = 8, .external_lex_state = 4}, [2064] = {.lex_state = 8, .external_lex_state = 3}, - [2065] = {.lex_state = 8, .external_lex_state = 3}, - [2066] = {.lex_state = 8, .external_lex_state = 3}, + [2065] = {.lex_state = 8, .external_lex_state = 4}, + [2066] = {.lex_state = 8, .external_lex_state = 4}, [2067] = {.lex_state = 8, .external_lex_state = 3}, [2068] = {.lex_state = 8, .external_lex_state = 3}, - [2069] = {.lex_state = 8, .external_lex_state = 3}, - [2070] = {.lex_state = 8, .external_lex_state = 3}, - [2071] = {.lex_state = 8, .external_lex_state = 3}, - [2072] = {.lex_state = 8, .external_lex_state = 3}, - [2073] = {.lex_state = 8, .external_lex_state = 3}, - [2074] = {.lex_state = 8, .external_lex_state = 3}, - [2075] = {.lex_state = 8, .external_lex_state = 3}, + [2069] = {.lex_state = 8, .external_lex_state = 4}, + [2070] = {.lex_state = 8, .external_lex_state = 4}, + [2071] = {.lex_state = 8, .external_lex_state = 4}, + [2072] = {.lex_state = 8, .external_lex_state = 4}, + [2073] = {.lex_state = 8, .external_lex_state = 4}, + [2074] = {.lex_state = 8, .external_lex_state = 4}, + [2075] = {.lex_state = 8, .external_lex_state = 4}, [2076] = {.lex_state = 8, .external_lex_state = 4}, - [2077] = {.lex_state = 13, .external_lex_state = 5}, + [2077] = {.lex_state = 8, .external_lex_state = 4}, [2078] = {.lex_state = 8, .external_lex_state = 4}, - [2079] = {.lex_state = 13, .external_lex_state = 5}, - [2080] = {.lex_state = 13, .external_lex_state = 5}, - [2081] = {.lex_state = 8, .external_lex_state = 4}, - [2082] = {.lex_state = 8, .external_lex_state = 3}, - [2083] = {.lex_state = 8, .external_lex_state = 3}, - [2084] = {.lex_state = 8, .external_lex_state = 3}, - [2085] = {.lex_state = 8, .external_lex_state = 3}, - [2086] = {.lex_state = 8, .external_lex_state = 4}, + [2079] = {.lex_state = 8, .external_lex_state = 4}, + [2080] = {.lex_state = 8, .external_lex_state = 4}, + [2081] = {.lex_state = 13, .external_lex_state = 5}, + [2082] = {.lex_state = 8, .external_lex_state = 4}, + [2083] = {.lex_state = 8, .external_lex_state = 4}, + [2084] = {.lex_state = 8, .external_lex_state = 4}, + [2085] = {.lex_state = 13, .external_lex_state = 5}, + [2086] = {.lex_state = 150, .external_lex_state = 2}, [2087] = {.lex_state = 8, .external_lex_state = 4}, [2088] = {.lex_state = 8, .external_lex_state = 4}, - [2089] = {.lex_state = 8, .external_lex_state = 4}, + [2089] = {.lex_state = 8, .external_lex_state = 3}, [2090] = {.lex_state = 8, .external_lex_state = 4}, [2091] = {.lex_state = 8, .external_lex_state = 4}, [2092] = {.lex_state = 8, .external_lex_state = 4}, @@ -16136,10 +17853,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2098] = {.lex_state = 8, .external_lex_state = 4}, [2099] = {.lex_state = 8, .external_lex_state = 4}, [2100] = {.lex_state = 8, .external_lex_state = 4}, - [2101] = {.lex_state = 8, .external_lex_state = 4}, + [2101] = {.lex_state = 13, .external_lex_state = 2}, [2102] = {.lex_state = 8, .external_lex_state = 4}, [2103] = {.lex_state = 8, .external_lex_state = 4}, - [2104] = {.lex_state = 8, .external_lex_state = 4}, + [2104] = {.lex_state = 13, .external_lex_state = 5}, [2105] = {.lex_state = 8, .external_lex_state = 4}, [2106] = {.lex_state = 8, .external_lex_state = 4}, [2107] = {.lex_state = 8, .external_lex_state = 4}, @@ -16155,3811 +17872,5455 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2117] = {.lex_state = 8, .external_lex_state = 4}, [2118] = {.lex_state = 8, .external_lex_state = 4}, [2119] = {.lex_state = 8, .external_lex_state = 4}, - [2120] = {.lex_state = 8, .external_lex_state = 4}, + [2120] = {.lex_state = 13, .external_lex_state = 5}, [2121] = {.lex_state = 8, .external_lex_state = 4}, [2122] = {.lex_state = 8, .external_lex_state = 4}, [2123] = {.lex_state = 8, .external_lex_state = 4}, [2124] = {.lex_state = 8, .external_lex_state = 4}, - [2125] = {.lex_state = 8, .external_lex_state = 3}, - [2126] = {.lex_state = 8, .external_lex_state = 3}, - [2127] = {.lex_state = 9, .external_lex_state = 4}, + [2125] = {.lex_state = 8, .external_lex_state = 4}, + [2126] = {.lex_state = 8, .external_lex_state = 4}, + [2127] = {.lex_state = 8, .external_lex_state = 4}, [2128] = {.lex_state = 8, .external_lex_state = 4}, - [2129] = {.lex_state = 8, .external_lex_state = 4}, - [2130] = {.lex_state = 8, .external_lex_state = 3}, + [2129] = {.lex_state = 8, .external_lex_state = 3}, + [2130] = {.lex_state = 8, .external_lex_state = 4}, [2131] = {.lex_state = 8, .external_lex_state = 3}, - [2132] = {.lex_state = 8, .external_lex_state = 4}, - [2133] = {.lex_state = 8, .external_lex_state = 4}, - [2134] = {.lex_state = 8, .external_lex_state = 3}, + [2132] = {.lex_state = 13, .external_lex_state = 5}, + [2133] = {.lex_state = 8, .external_lex_state = 3}, + [2134] = {.lex_state = 8, .external_lex_state = 4}, [2135] = {.lex_state = 8, .external_lex_state = 4}, - [2136] = {.lex_state = 13, .external_lex_state = 5}, - [2137] = {.lex_state = 13, .external_lex_state = 5}, - [2138] = {.lex_state = 13, .external_lex_state = 5}, + [2136] = {.lex_state = 8, .external_lex_state = 4}, + [2137] = {.lex_state = 8, .external_lex_state = 4}, + [2138] = {.lex_state = 8, .external_lex_state = 4}, [2139] = {.lex_state = 8, .external_lex_state = 4}, - [2140] = {.lex_state = 13, .external_lex_state = 5}, - [2141] = {.lex_state = 8, .external_lex_state = 4}, - [2142] = {.lex_state = 8, .external_lex_state = 4}, - [2143] = {.lex_state = 8, .external_lex_state = 3}, - [2144] = {.lex_state = 13, .external_lex_state = 5}, + [2140] = {.lex_state = 8, .external_lex_state = 3}, + [2141] = {.lex_state = 13, .external_lex_state = 5}, + [2142] = {.lex_state = 8, .external_lex_state = 3}, + [2143] = {.lex_state = 8, .external_lex_state = 4}, + [2144] = {.lex_state = 8, .external_lex_state = 3}, [2145] = {.lex_state = 8, .external_lex_state = 4}, - [2146] = {.lex_state = 13, .external_lex_state = 5}, - [2147] = {.lex_state = 8, .external_lex_state = 4}, - [2148] = {.lex_state = 8, .external_lex_state = 4}, - [2149] = {.lex_state = 8, .external_lex_state = 4}, + [2146] = {.lex_state = 8, .external_lex_state = 3}, + [2147] = {.lex_state = 8, .external_lex_state = 3}, + [2148] = {.lex_state = 8, .external_lex_state = 3}, + [2149] = {.lex_state = 8, .external_lex_state = 3}, [2150] = {.lex_state = 8, .external_lex_state = 4}, - [2151] = {.lex_state = 8, .external_lex_state = 4}, - [2152] = {.lex_state = 8, .external_lex_state = 4}, - [2153] = {.lex_state = 13, .external_lex_state = 2}, - [2154] = {.lex_state = 13, .external_lex_state = 2}, + [2151] = {.lex_state = 13, .external_lex_state = 5}, + [2152] = {.lex_state = 13, .external_lex_state = 5}, + [2153] = {.lex_state = 13, .external_lex_state = 5}, + [2154] = {.lex_state = 8, .external_lex_state = 3}, [2155] = {.lex_state = 8, .external_lex_state = 3}, [2156] = {.lex_state = 8, .external_lex_state = 3}, - [2157] = {.lex_state = 8, .external_lex_state = 3}, + [2157] = {.lex_state = 8, .external_lex_state = 4}, [2158] = {.lex_state = 8, .external_lex_state = 4}, [2159] = {.lex_state = 8, .external_lex_state = 4}, - [2160] = {.lex_state = 8, .external_lex_state = 4}, - [2161] = {.lex_state = 8, .external_lex_state = 4}, - [2162] = {.lex_state = 13, .external_lex_state = 2}, - [2163] = {.lex_state = 9, .external_lex_state = 4}, - [2164] = {.lex_state = 13, .external_lex_state = 2}, + [2160] = {.lex_state = 13, .external_lex_state = 5}, + [2161] = {.lex_state = 8, .external_lex_state = 3}, + [2162] = {.lex_state = 8, .external_lex_state = 3}, + [2163] = {.lex_state = 8, .external_lex_state = 3}, + [2164] = {.lex_state = 8, .external_lex_state = 3}, [2165] = {.lex_state = 13, .external_lex_state = 5}, - [2166] = {.lex_state = 13, .external_lex_state = 5}, - [2167] = {.lex_state = 8, .external_lex_state = 4}, - [2168] = {.lex_state = 8, .external_lex_state = 4}, - [2169] = {.lex_state = 8, .external_lex_state = 4}, - [2170] = {.lex_state = 13, .external_lex_state = 2}, - [2171] = {.lex_state = 13, .external_lex_state = 5}, - [2172] = {.lex_state = 13, .external_lex_state = 2}, - [2173] = {.lex_state = 8, .external_lex_state = 4}, - [2174] = {.lex_state = 8, .external_lex_state = 4}, - [2175] = {.lex_state = 13, .external_lex_state = 2}, - [2176] = {.lex_state = 8, .external_lex_state = 3}, - [2177] = {.lex_state = 8, .external_lex_state = 3}, - [2178] = {.lex_state = 13, .external_lex_state = 5}, - [2179] = {.lex_state = 13, .external_lex_state = 5}, - [2180] = {.lex_state = 13, .external_lex_state = 5}, - [2181] = {.lex_state = 13, .external_lex_state = 5}, + [2166] = {.lex_state = 8, .external_lex_state = 3}, + [2167] = {.lex_state = 8, .external_lex_state = 3}, + [2168] = {.lex_state = 13, .external_lex_state = 5}, + [2169] = {.lex_state = 8, .external_lex_state = 3}, + [2170] = {.lex_state = 8, .external_lex_state = 4}, + [2171] = {.lex_state = 8, .external_lex_state = 4}, + [2172] = {.lex_state = 8, .external_lex_state = 3}, + [2173] = {.lex_state = 8, .external_lex_state = 3}, + [2174] = {.lex_state = 8, .external_lex_state = 3}, + [2175] = {.lex_state = 8, .external_lex_state = 3}, + [2176] = {.lex_state = 8, .external_lex_state = 4}, + [2177] = {.lex_state = 8, .external_lex_state = 4}, + [2178] = {.lex_state = 8, .external_lex_state = 4}, + [2179] = {.lex_state = 8, .external_lex_state = 4}, + [2180] = {.lex_state = 8, .external_lex_state = 4}, + [2181] = {.lex_state = 8, .external_lex_state = 4}, [2182] = {.lex_state = 13, .external_lex_state = 5}, - [2183] = {.lex_state = 13, .external_lex_state = 2}, - [2184] = {.lex_state = 13, .external_lex_state = 5}, - [2185] = {.lex_state = 13, .external_lex_state = 5}, - [2186] = {.lex_state = 13, .external_lex_state = 5}, - [2187] = {.lex_state = 13, .external_lex_state = 5}, - [2188] = {.lex_state = 8, .external_lex_state = 4}, - [2189] = {.lex_state = 8, .external_lex_state = 4}, - [2190] = {.lex_state = 8, .external_lex_state = 4}, - [2191] = {.lex_state = 8, .external_lex_state = 4}, - [2192] = {.lex_state = 8, .external_lex_state = 4}, - [2193] = {.lex_state = 8, .external_lex_state = 4}, - [2194] = {.lex_state = 8, .external_lex_state = 4}, - [2195] = {.lex_state = 8, .external_lex_state = 4}, - [2196] = {.lex_state = 8, .external_lex_state = 4}, - [2197] = {.lex_state = 8, .external_lex_state = 4}, - [2198] = {.lex_state = 8, .external_lex_state = 4}, - [2199] = {.lex_state = 8, .external_lex_state = 3}, - [2200] = {.lex_state = 8, .external_lex_state = 4}, - [2201] = {.lex_state = 8, .external_lex_state = 4}, - [2202] = {.lex_state = 13, .external_lex_state = 5}, + [2183] = {.lex_state = 13, .external_lex_state = 5}, + [2184] = {.lex_state = 13, .external_lex_state = 2}, + [2185] = {.lex_state = 8, .external_lex_state = 4}, + [2186] = {.lex_state = 8, .external_lex_state = 3}, + [2187] = {.lex_state = 8, .external_lex_state = 4}, + [2188] = {.lex_state = 8, .external_lex_state = 3}, + [2189] = {.lex_state = 8, .external_lex_state = 3}, + [2190] = {.lex_state = 13, .external_lex_state = 5}, + [2191] = {.lex_state = 13, .external_lex_state = 5}, + [2192] = {.lex_state = 8, .external_lex_state = 3}, + [2193] = {.lex_state = 13, .external_lex_state = 2}, + [2194] = {.lex_state = 8, .external_lex_state = 3}, + [2195] = {.lex_state = 8, .external_lex_state = 3}, + [2196] = {.lex_state = 8, .external_lex_state = 3}, + [2197] = {.lex_state = 13, .external_lex_state = 5}, + [2198] = {.lex_state = 8, .external_lex_state = 3}, + [2199] = {.lex_state = 8, .external_lex_state = 4}, + [2200] = {.lex_state = 8, .external_lex_state = 3}, + [2201] = {.lex_state = 13, .external_lex_state = 5}, + [2202] = {.lex_state = 8, .external_lex_state = 3}, [2203] = {.lex_state = 8, .external_lex_state = 3}, [2204] = {.lex_state = 8, .external_lex_state = 4}, - [2205] = {.lex_state = 8, .external_lex_state = 4}, - [2206] = {.lex_state = 8, .external_lex_state = 4}, + [2205] = {.lex_state = 13, .external_lex_state = 5}, + [2206] = {.lex_state = 8, .external_lex_state = 3}, [2207] = {.lex_state = 13, .external_lex_state = 5}, - [2208] = {.lex_state = 8, .external_lex_state = 4}, - [2209] = {.lex_state = 8, .external_lex_state = 4}, + [2208] = {.lex_state = 8, .external_lex_state = 3}, + [2209] = {.lex_state = 13, .external_lex_state = 5}, [2210] = {.lex_state = 13, .external_lex_state = 5}, - [2211] = {.lex_state = 13, .external_lex_state = 5}, - [2212] = {.lex_state = 8, .external_lex_state = 3}, - [2213] = {.lex_state = 8, .external_lex_state = 4}, - [2214] = {.lex_state = 13, .external_lex_state = 5}, - [2215] = {.lex_state = 8, .external_lex_state = 4}, - [2216] = {.lex_state = 8, .external_lex_state = 4}, - [2217] = {.lex_state = 8, .external_lex_state = 4}, - [2218] = {.lex_state = 8, .external_lex_state = 4}, - [2219] = {.lex_state = 8, .external_lex_state = 4}, - [2220] = {.lex_state = 8, .external_lex_state = 4}, - [2221] = {.lex_state = 8, .external_lex_state = 4}, - [2222] = {.lex_state = 8, .external_lex_state = 4}, + [2211] = {.lex_state = 8, .external_lex_state = 3}, + [2212] = {.lex_state = 8, .external_lex_state = 4}, + [2213] = {.lex_state = 8, .external_lex_state = 3}, + [2214] = {.lex_state = 8, .external_lex_state = 3}, + [2215] = {.lex_state = 8, .external_lex_state = 3}, + [2216] = {.lex_state = 8, .external_lex_state = 3}, + [2217] = {.lex_state = 8, .external_lex_state = 3}, + [2218] = {.lex_state = 8, .external_lex_state = 3}, + [2219] = {.lex_state = 8, .external_lex_state = 3}, + [2220] = {.lex_state = 8, .external_lex_state = 3}, + [2221] = {.lex_state = 8, .external_lex_state = 3}, + [2222] = {.lex_state = 13, .external_lex_state = 2}, [2223] = {.lex_state = 8, .external_lex_state = 4}, [2224] = {.lex_state = 8, .external_lex_state = 4}, - [2225] = {.lex_state = 8, .external_lex_state = 3}, - [2226] = {.lex_state = 8, .external_lex_state = 3}, + [2225] = {.lex_state = 8, .external_lex_state = 4}, + [2226] = {.lex_state = 13, .external_lex_state = 2}, [2227] = {.lex_state = 8, .external_lex_state = 4}, - [2228] = {.lex_state = 8, .external_lex_state = 4}, + [2228] = {.lex_state = 13, .external_lex_state = 5}, [2229] = {.lex_state = 8, .external_lex_state = 4}, [2230] = {.lex_state = 8, .external_lex_state = 4}, - [2231] = {.lex_state = 151, .external_lex_state = 2}, + [2231] = {.lex_state = 8, .external_lex_state = 3}, [2232] = {.lex_state = 8, .external_lex_state = 4}, [2233] = {.lex_state = 8, .external_lex_state = 4}, [2234] = {.lex_state = 8, .external_lex_state = 4}, - [2235] = {.lex_state = 8, .external_lex_state = 3}, + [2235] = {.lex_state = 8, .external_lex_state = 4}, [2236] = {.lex_state = 8, .external_lex_state = 3}, - [2237] = {.lex_state = 8, .external_lex_state = 3}, - [2238] = {.lex_state = 8, .external_lex_state = 3}, - [2239] = {.lex_state = 13, .external_lex_state = 5}, + [2237] = {.lex_state = 8, .external_lex_state = 4}, + [2238] = {.lex_state = 8, .external_lex_state = 4}, + [2239] = {.lex_state = 8, .external_lex_state = 4}, [2240] = {.lex_state = 13, .external_lex_state = 5}, - [2241] = {.lex_state = 13, .external_lex_state = 5}, - [2242] = {.lex_state = 13, .external_lex_state = 2}, - [2243] = {.lex_state = 13, .external_lex_state = 2}, - [2244] = {.lex_state = 13, .external_lex_state = 5}, + [2241] = {.lex_state = 8, .external_lex_state = 4}, + [2242] = {.lex_state = 13, .external_lex_state = 5}, + [2243] = {.lex_state = 13, .external_lex_state = 5}, + [2244] = {.lex_state = 8, .external_lex_state = 4}, [2245] = {.lex_state = 13, .external_lex_state = 5}, - [2246] = {.lex_state = 8, .external_lex_state = 3}, - [2247] = {.lex_state = 8, .external_lex_state = 4}, + [2246] = {.lex_state = 8, .external_lex_state = 4}, + [2247] = {.lex_state = 9, .external_lex_state = 4}, [2248] = {.lex_state = 13, .external_lex_state = 5}, [2249] = {.lex_state = 8, .external_lex_state = 4}, - [2250] = {.lex_state = 13, .external_lex_state = 5}, - [2251] = {.lex_state = 13, .external_lex_state = 5}, - [2252] = {.lex_state = 13, .external_lex_state = 5}, - [2253] = {.lex_state = 13, .external_lex_state = 5}, - [2254] = {.lex_state = 13, .external_lex_state = 5}, - [2255] = {.lex_state = 13, .external_lex_state = 5}, + [2250] = {.lex_state = 13, .external_lex_state = 2}, + [2251] = {.lex_state = 8, .external_lex_state = 4}, + [2252] = {.lex_state = 8, .external_lex_state = 4}, + [2253] = {.lex_state = 8, .external_lex_state = 3}, + [2254] = {.lex_state = 13, .external_lex_state = 2}, + [2255] = {.lex_state = 8, .external_lex_state = 3}, [2256] = {.lex_state = 8, .external_lex_state = 3}, - [2257] = {.lex_state = 8, .external_lex_state = 4}, + [2257] = {.lex_state = 13, .external_lex_state = 5}, [2258] = {.lex_state = 8, .external_lex_state = 3}, - [2259] = {.lex_state = 8, .external_lex_state = 4}, + [2259] = {.lex_state = 8, .external_lex_state = 3}, [2260] = {.lex_state = 8, .external_lex_state = 4}, - [2261] = {.lex_state = 8, .external_lex_state = 4}, - [2262] = {.lex_state = 8, .external_lex_state = 4}, + [2261] = {.lex_state = 8, .external_lex_state = 3}, + [2262] = {.lex_state = 8, .external_lex_state = 3}, [2263] = {.lex_state = 8, .external_lex_state = 4}, - [2264] = {.lex_state = 13, .external_lex_state = 2}, - [2265] = {.lex_state = 13, .external_lex_state = 2}, - [2266] = {.lex_state = 8, .external_lex_state = 4}, - [2267] = {.lex_state = 8, .external_lex_state = 4}, - [2268] = {.lex_state = 13, .external_lex_state = 5}, - [2269] = {.lex_state = 13, .external_lex_state = 5}, + [2264] = {.lex_state = 8, .external_lex_state = 3}, + [2265] = {.lex_state = 8, .external_lex_state = 3}, + [2266] = {.lex_state = 8, .external_lex_state = 3}, + [2267] = {.lex_state = 13, .external_lex_state = 5}, + [2268] = {.lex_state = 8, .external_lex_state = 4}, + [2269] = {.lex_state = 8, .external_lex_state = 4}, [2270] = {.lex_state = 8, .external_lex_state = 4}, [2271] = {.lex_state = 8, .external_lex_state = 3}, [2272] = {.lex_state = 8, .external_lex_state = 3}, - [2273] = {.lex_state = 8, .external_lex_state = 4}, - [2274] = {.lex_state = 8, .external_lex_state = 4}, + [2273] = {.lex_state = 13, .external_lex_state = 5}, + [2274] = {.lex_state = 8, .external_lex_state = 3}, [2275] = {.lex_state = 8, .external_lex_state = 4}, - [2276] = {.lex_state = 8, .external_lex_state = 4}, - [2277] = {.lex_state = 8, .external_lex_state = 4}, - [2278] = {.lex_state = 8, .external_lex_state = 3}, + [2276] = {.lex_state = 8, .external_lex_state = 3}, + [2277] = {.lex_state = 13, .external_lex_state = 5}, + [2278] = {.lex_state = 8, .external_lex_state = 4}, [2279] = {.lex_state = 8, .external_lex_state = 3}, [2280] = {.lex_state = 8, .external_lex_state = 3}, - [2281] = {.lex_state = 8, .external_lex_state = 3}, - [2282] = {.lex_state = 8, .external_lex_state = 3}, - [2283] = {.lex_state = 8, .external_lex_state = 3}, - [2284] = {.lex_state = 8, .external_lex_state = 3}, - [2285] = {.lex_state = 8, .external_lex_state = 3}, - [2286] = {.lex_state = 8, .external_lex_state = 3}, - [2287] = {.lex_state = 8, .external_lex_state = 3}, - [2288] = {.lex_state = 8, .external_lex_state = 3}, - [2289] = {.lex_state = 8, .external_lex_state = 3}, - [2290] = {.lex_state = 8, .external_lex_state = 3}, + [2281] = {.lex_state = 8, .external_lex_state = 4}, + [2282] = {.lex_state = 8, .external_lex_state = 4}, + [2283] = {.lex_state = 13, .external_lex_state = 5}, + [2284] = {.lex_state = 8, .external_lex_state = 4}, + [2285] = {.lex_state = 8, .external_lex_state = 4}, + [2286] = {.lex_state = 8, .external_lex_state = 4}, + [2287] = {.lex_state = 8, .external_lex_state = 4}, + [2288] = {.lex_state = 8, .external_lex_state = 4}, + [2289] = {.lex_state = 150, .external_lex_state = 2}, + [2290] = {.lex_state = 8, .external_lex_state = 4}, [2291] = {.lex_state = 8, .external_lex_state = 3}, - [2292] = {.lex_state = 8, .external_lex_state = 3}, + [2292] = {.lex_state = 8, .external_lex_state = 4}, [2293] = {.lex_state = 8, .external_lex_state = 3}, [2294] = {.lex_state = 8, .external_lex_state = 3}, - [2295] = {.lex_state = 8, .external_lex_state = 3}, - [2296] = {.lex_state = 8, .external_lex_state = 3}, - [2297] = {.lex_state = 8, .external_lex_state = 3}, - [2298] = {.lex_state = 8, .external_lex_state = 3}, + [2295] = {.lex_state = 8, .external_lex_state = 4}, + [2296] = {.lex_state = 8, .external_lex_state = 4}, + [2297] = {.lex_state = 8, .external_lex_state = 4}, + [2298] = {.lex_state = 8, .external_lex_state = 4}, [2299] = {.lex_state = 8, .external_lex_state = 3}, - [2300] = {.lex_state = 8, .external_lex_state = 3}, - [2301] = {.lex_state = 8, .external_lex_state = 3}, - [2302] = {.lex_state = 8, .external_lex_state = 3}, - [2303] = {.lex_state = 8, .external_lex_state = 3}, - [2304] = {.lex_state = 8, .external_lex_state = 4}, - [2305] = {.lex_state = 8, .external_lex_state = 3}, - [2306] = {.lex_state = 8, .external_lex_state = 3}, - [2307] = {.lex_state = 8, .external_lex_state = 4}, - [2308] = {.lex_state = 8, .external_lex_state = 3}, - [2309] = {.lex_state = 8, .external_lex_state = 3}, - [2310] = {.lex_state = 8, .external_lex_state = 4}, - [2311] = {.lex_state = 8, .external_lex_state = 3}, - [2312] = {.lex_state = 8, .external_lex_state = 3}, - [2313] = {.lex_state = 8, .external_lex_state = 3}, - [2314] = {.lex_state = 13, .external_lex_state = 5}, - [2315] = {.lex_state = 8, .external_lex_state = 4}, + [2300] = {.lex_state = 13, .external_lex_state = 5}, + [2301] = {.lex_state = 13, .external_lex_state = 5}, + [2302] = {.lex_state = 13, .external_lex_state = 5}, + [2303] = {.lex_state = 13, .external_lex_state = 5}, + [2304] = {.lex_state = 13, .external_lex_state = 5}, + [2305] = {.lex_state = 8, .external_lex_state = 4}, + [2306] = {.lex_state = 13, .external_lex_state = 5}, + [2307] = {.lex_state = 13, .external_lex_state = 5}, + [2308] = {.lex_state = 8, .external_lex_state = 4}, + [2309] = {.lex_state = 8, .external_lex_state = 4}, + [2310] = {.lex_state = 8, .external_lex_state = 3}, + [2311] = {.lex_state = 13, .external_lex_state = 5}, + [2312] = {.lex_state = 13, .external_lex_state = 5}, + [2313] = {.lex_state = 8, .external_lex_state = 4}, + [2314] = {.lex_state = 8, .external_lex_state = 3}, + [2315] = {.lex_state = 8, .external_lex_state = 3}, [2316] = {.lex_state = 13, .external_lex_state = 5}, - [2317] = {.lex_state = 13, .external_lex_state = 5}, - [2318] = {.lex_state = 8, .external_lex_state = 3}, - [2319] = {.lex_state = 13, .external_lex_state = 5}, - [2320] = {.lex_state = 13, .external_lex_state = 5}, + [2317] = {.lex_state = 8, .external_lex_state = 4}, + [2318] = {.lex_state = 8, .external_lex_state = 4}, + [2319] = {.lex_state = 8, .external_lex_state = 4}, + [2320] = {.lex_state = 8, .external_lex_state = 4}, [2321] = {.lex_state = 8, .external_lex_state = 4}, - [2322] = {.lex_state = 8, .external_lex_state = 3}, - [2323] = {.lex_state = 13, .external_lex_state = 5}, - [2324] = {.lex_state = 13, .external_lex_state = 5}, - [2325] = {.lex_state = 8, .external_lex_state = 3}, + [2322] = {.lex_state = 8, .external_lex_state = 4}, + [2323] = {.lex_state = 8, .external_lex_state = 4}, + [2324] = {.lex_state = 8, .external_lex_state = 4}, + [2325] = {.lex_state = 13, .external_lex_state = 5}, [2326] = {.lex_state = 8, .external_lex_state = 4}, - [2327] = {.lex_state = 151, .external_lex_state = 2}, + [2327] = {.lex_state = 8, .external_lex_state = 4}, [2328] = {.lex_state = 8, .external_lex_state = 3}, - [2329] = {.lex_state = 13, .external_lex_state = 5}, - [2330] = {.lex_state = 8, .external_lex_state = 3}, - [2331] = {.lex_state = 8, .external_lex_state = 3}, + [2329] = {.lex_state = 8, .external_lex_state = 4}, + [2330] = {.lex_state = 8, .external_lex_state = 4}, + [2331] = {.lex_state = 8, .external_lex_state = 4}, [2332] = {.lex_state = 8, .external_lex_state = 4}, - [2333] = {.lex_state = 8, .external_lex_state = 4}, + [2333] = {.lex_state = 13, .external_lex_state = 5}, [2334] = {.lex_state = 8, .external_lex_state = 3}, [2335] = {.lex_state = 8, .external_lex_state = 4}, - [2336] = {.lex_state = 8, .external_lex_state = 4}, - [2337] = {.lex_state = 8, .external_lex_state = 4}, - [2338] = {.lex_state = 8, .external_lex_state = 4}, + [2336] = {.lex_state = 9, .external_lex_state = 4}, + [2337] = {.lex_state = 13, .external_lex_state = 2}, + [2338] = {.lex_state = 13, .external_lex_state = 2}, [2339] = {.lex_state = 8, .external_lex_state = 4}, [2340] = {.lex_state = 8, .external_lex_state = 4}, - [2341] = {.lex_state = 8, .external_lex_state = 4}, + [2341] = {.lex_state = 13, .external_lex_state = 5}, [2342] = {.lex_state = 8, .external_lex_state = 4}, - [2343] = {.lex_state = 8, .external_lex_state = 4}, - [2344] = {.lex_state = 8, .external_lex_state = 3}, + [2343] = {.lex_state = 13, .external_lex_state = 5}, + [2344] = {.lex_state = 13, .external_lex_state = 5}, [2345] = {.lex_state = 8, .external_lex_state = 3}, - [2346] = {.lex_state = 8, .external_lex_state = 3}, - [2347] = {.lex_state = 8, .external_lex_state = 3}, - [2348] = {.lex_state = 8, .external_lex_state = 3}, - [2349] = {.lex_state = 8, .external_lex_state = 3}, - [2350] = {.lex_state = 8, .external_lex_state = 3}, - [2351] = {.lex_state = 8, .external_lex_state = 3}, - [2352] = {.lex_state = 8, .external_lex_state = 3}, + [2346] = {.lex_state = 13, .external_lex_state = 5}, + [2347] = {.lex_state = 8, .external_lex_state = 4}, + [2348] = {.lex_state = 13, .external_lex_state = 2}, + [2349] = {.lex_state = 8, .external_lex_state = 4}, + [2350] = {.lex_state = 13, .external_lex_state = 5}, + [2351] = {.lex_state = 13, .external_lex_state = 2}, + [2352] = {.lex_state = 13, .external_lex_state = 5}, [2353] = {.lex_state = 8, .external_lex_state = 3}, - [2354] = {.lex_state = 8, .external_lex_state = 3}, - [2355] = {.lex_state = 8, .external_lex_state = 3}, - [2356] = {.lex_state = 8, .external_lex_state = 3}, - [2357] = {.lex_state = 8, .external_lex_state = 3}, - [2358] = {.lex_state = 8, .external_lex_state = 3}, - [2359] = {.lex_state = 8, .external_lex_state = 3}, - [2360] = {.lex_state = 8, .external_lex_state = 3}, - [2361] = {.lex_state = 8, .external_lex_state = 3}, - [2362] = {.lex_state = 8, .external_lex_state = 3}, - [2363] = {.lex_state = 8, .external_lex_state = 3}, - [2364] = {.lex_state = 8, .external_lex_state = 3}, - [2365] = {.lex_state = 8, .external_lex_state = 3}, + [2354] = {.lex_state = 13, .external_lex_state = 5}, + [2355] = {.lex_state = 13, .external_lex_state = 5}, + [2356] = {.lex_state = 13, .external_lex_state = 5}, + [2357] = {.lex_state = 13, .external_lex_state = 5}, + [2358] = {.lex_state = 8, .external_lex_state = 4}, + [2359] = {.lex_state = 13, .external_lex_state = 5}, + [2360] = {.lex_state = 13, .external_lex_state = 5}, + [2361] = {.lex_state = 13, .external_lex_state = 5}, + [2362] = {.lex_state = 13, .external_lex_state = 5}, + [2363] = {.lex_state = 8, .external_lex_state = 4}, + [2364] = {.lex_state = 13, .external_lex_state = 2}, + [2365] = {.lex_state = 13, .external_lex_state = 2}, [2366] = {.lex_state = 8, .external_lex_state = 3}, - [2367] = {.lex_state = 8, .external_lex_state = 3}, + [2367] = {.lex_state = 8, .external_lex_state = 4}, [2368] = {.lex_state = 8, .external_lex_state = 3}, - [2369] = {.lex_state = 8, .external_lex_state = 3}, + [2369] = {.lex_state = 8, .external_lex_state = 4}, [2370] = {.lex_state = 8, .external_lex_state = 3}, - [2371] = {.lex_state = 8, .external_lex_state = 3}, - [2372] = {.lex_state = 8, .external_lex_state = 4}, + [2371] = {.lex_state = 13, .external_lex_state = 5}, + [2372] = {.lex_state = 8, .external_lex_state = 3}, [2373] = {.lex_state = 8, .external_lex_state = 3}, [2374] = {.lex_state = 8, .external_lex_state = 3}, [2375] = {.lex_state = 8, .external_lex_state = 3}, - [2376] = {.lex_state = 8, .external_lex_state = 3}, - [2377] = {.lex_state = 8, .external_lex_state = 4}, + [2376] = {.lex_state = 8, .external_lex_state = 4}, + [2377] = {.lex_state = 8, .external_lex_state = 3}, [2378] = {.lex_state = 8, .external_lex_state = 4}, - [2379] = {.lex_state = 8, .external_lex_state = 4}, - [2380] = {.lex_state = 13, .external_lex_state = 5}, - [2381] = {.lex_state = 8, .external_lex_state = 3}, - [2382] = {.lex_state = 8, .external_lex_state = 4}, + [2379] = {.lex_state = 8, .external_lex_state = 3}, + [2380] = {.lex_state = 8, .external_lex_state = 4}, + [2381] = {.lex_state = 8, .external_lex_state = 4}, + [2382] = {.lex_state = 8, .external_lex_state = 3}, [2383] = {.lex_state = 8, .external_lex_state = 4}, - [2384] = {.lex_state = 8, .external_lex_state = 4}, - [2385] = {.lex_state = 8, .external_lex_state = 4}, - [2386] = {.lex_state = 13, .external_lex_state = 2}, - [2387] = {.lex_state = 13, .external_lex_state = 2}, - [2388] = {.lex_state = 8, .external_lex_state = 4}, - [2389] = {.lex_state = 13, .external_lex_state = 2}, + [2384] = {.lex_state = 8, .external_lex_state = 3}, + [2385] = {.lex_state = 8, .external_lex_state = 3}, + [2386] = {.lex_state = 8, .external_lex_state = 3}, + [2387] = {.lex_state = 13, .external_lex_state = 5}, + [2388] = {.lex_state = 8, .external_lex_state = 3}, + [2389] = {.lex_state = 8, .external_lex_state = 4}, [2390] = {.lex_state = 13, .external_lex_state = 2}, - [2391] = {.lex_state = 13, .external_lex_state = 5}, + [2391] = {.lex_state = 8, .external_lex_state = 3}, [2392] = {.lex_state = 8, .external_lex_state = 3}, - [2393] = {.lex_state = 13, .external_lex_state = 5}, - [2394] = {.lex_state = 13, .external_lex_state = 2}, - [2395] = {.lex_state = 13, .external_lex_state = 5}, - [2396] = {.lex_state = 13, .external_lex_state = 2}, - [2397] = {.lex_state = 13, .external_lex_state = 5}, - [2398] = {.lex_state = 8, .external_lex_state = 3}, - [2399] = {.lex_state = 13, .external_lex_state = 5}, - [2400] = {.lex_state = 13, .external_lex_state = 5}, - [2401] = {.lex_state = 8, .external_lex_state = 3}, - [2402] = {.lex_state = 8, .external_lex_state = 4}, + [2393] = {.lex_state = 8, .external_lex_state = 3}, + [2394] = {.lex_state = 8, .external_lex_state = 4}, + [2395] = {.lex_state = 8, .external_lex_state = 3}, + [2396] = {.lex_state = 8, .external_lex_state = 3}, + [2397] = {.lex_state = 8, .external_lex_state = 4}, + [2398] = {.lex_state = 13, .external_lex_state = 2}, + [2399] = {.lex_state = 8, .external_lex_state = 3}, + [2400] = {.lex_state = 8, .external_lex_state = 4}, + [2401] = {.lex_state = 8, .external_lex_state = 4}, + [2402] = {.lex_state = 8, .external_lex_state = 3}, [2403] = {.lex_state = 8, .external_lex_state = 3}, - [2404] = {.lex_state = 13, .external_lex_state = 2}, - [2405] = {.lex_state = 8, .external_lex_state = 3}, + [2404] = {.lex_state = 13, .external_lex_state = 5}, + [2405] = {.lex_state = 13, .external_lex_state = 5}, [2406] = {.lex_state = 8, .external_lex_state = 3}, - [2407] = {.lex_state = 8, .external_lex_state = 3}, - [2408] = {.lex_state = 8, .external_lex_state = 3}, + [2407] = {.lex_state = 13, .external_lex_state = 2}, + [2408] = {.lex_state = 8, .external_lex_state = 4}, [2409] = {.lex_state = 8, .external_lex_state = 3}, [2410] = {.lex_state = 8, .external_lex_state = 3}, [2411] = {.lex_state = 8, .external_lex_state = 3}, - [2412] = {.lex_state = 13, .external_lex_state = 5}, - [2413] = {.lex_state = 13, .external_lex_state = 2}, - [2414] = {.lex_state = 9, .external_lex_state = 3}, + [2412] = {.lex_state = 8, .external_lex_state = 3}, + [2413] = {.lex_state = 8, .external_lex_state = 3}, + [2414] = {.lex_state = 8, .external_lex_state = 3}, [2415] = {.lex_state = 8, .external_lex_state = 3}, - [2416] = {.lex_state = 8, .external_lex_state = 4}, - [2417] = {.lex_state = 13, .external_lex_state = 2}, - [2418] = {.lex_state = 13, .external_lex_state = 5}, - [2419] = {.lex_state = 13, .external_lex_state = 5}, - [2420] = {.lex_state = 13, .external_lex_state = 2}, + [2416] = {.lex_state = 8, .external_lex_state = 3}, + [2417] = {.lex_state = 8, .external_lex_state = 3}, + [2418] = {.lex_state = 13, .external_lex_state = 2}, + [2419] = {.lex_state = 8, .external_lex_state = 4}, + [2420] = {.lex_state = 8, .external_lex_state = 3}, [2421] = {.lex_state = 13, .external_lex_state = 5}, [2422] = {.lex_state = 8, .external_lex_state = 3}, [2423] = {.lex_state = 13, .external_lex_state = 5}, [2424] = {.lex_state = 13, .external_lex_state = 5}, - [2425] = {.lex_state = 8, .external_lex_state = 4}, + [2425] = {.lex_state = 8, .external_lex_state = 3}, [2426] = {.lex_state = 13, .external_lex_state = 5}, - [2427] = {.lex_state = 8, .external_lex_state = 4}, - [2428] = {.lex_state = 8, .external_lex_state = 4}, + [2427] = {.lex_state = 13, .external_lex_state = 5}, + [2428] = {.lex_state = 13, .external_lex_state = 5}, [2429] = {.lex_state = 8, .external_lex_state = 3}, - [2430] = {.lex_state = 8, .external_lex_state = 3}, - [2431] = {.lex_state = 8, .external_lex_state = 3}, - [2432] = {.lex_state = 8, .external_lex_state = 3}, - [2433] = {.lex_state = 8, .external_lex_state = 3}, - [2434] = {.lex_state = 8, .external_lex_state = 3}, - [2435] = {.lex_state = 8, .external_lex_state = 3}, - [2436] = {.lex_state = 151, .external_lex_state = 2}, + [2430] = {.lex_state = 13, .external_lex_state = 5}, + [2431] = {.lex_state = 13, .external_lex_state = 5}, + [2432] = {.lex_state = 13, .external_lex_state = 2}, + [2433] = {.lex_state = 13, .external_lex_state = 5}, + [2434] = {.lex_state = 8, .external_lex_state = 4}, + [2435] = {.lex_state = 13, .external_lex_state = 5}, + [2436] = {.lex_state = 13, .external_lex_state = 5}, [2437] = {.lex_state = 8, .external_lex_state = 3}, [2438] = {.lex_state = 8, .external_lex_state = 3}, [2439] = {.lex_state = 8, .external_lex_state = 3}, [2440] = {.lex_state = 8, .external_lex_state = 3}, - [2441] = {.lex_state = 8, .external_lex_state = 3}, - [2442] = {.lex_state = 8, .external_lex_state = 3}, - [2443] = {.lex_state = 8, .external_lex_state = 3}, - [2444] = {.lex_state = 8, .external_lex_state = 3}, - [2445] = {.lex_state = 8, .external_lex_state = 3}, - [2446] = {.lex_state = 8, .external_lex_state = 3}, + [2441] = {.lex_state = 13, .external_lex_state = 5}, + [2442] = {.lex_state = 13, .external_lex_state = 5}, + [2443] = {.lex_state = 13, .external_lex_state = 5}, + [2444] = {.lex_state = 13, .external_lex_state = 5}, + [2445] = {.lex_state = 13, .external_lex_state = 5}, + [2446] = {.lex_state = 13, .external_lex_state = 5}, [2447] = {.lex_state = 8, .external_lex_state = 3}, - [2448] = {.lex_state = 8, .external_lex_state = 3}, + [2448] = {.lex_state = 13, .external_lex_state = 5}, [2449] = {.lex_state = 13, .external_lex_state = 5}, - [2450] = {.lex_state = 8, .external_lex_state = 3}, - [2451] = {.lex_state = 8, .external_lex_state = 3}, - [2452] = {.lex_state = 8, .external_lex_state = 3}, - [2453] = {.lex_state = 8, .external_lex_state = 3}, - [2454] = {.lex_state = 8, .external_lex_state = 3}, + [2450] = {.lex_state = 13, .external_lex_state = 5}, + [2451] = {.lex_state = 8, .external_lex_state = 4}, + [2452] = {.lex_state = 13, .external_lex_state = 5}, + [2453] = {.lex_state = 13, .external_lex_state = 2}, + [2454] = {.lex_state = 13, .external_lex_state = 5}, [2455] = {.lex_state = 13, .external_lex_state = 5}, - [2456] = {.lex_state = 13, .external_lex_state = 5}, + [2456] = {.lex_state = 9, .external_lex_state = 3}, [2457] = {.lex_state = 8, .external_lex_state = 3}, [2458] = {.lex_state = 13, .external_lex_state = 5}, - [2459] = {.lex_state = 13, .external_lex_state = 5}, + [2459] = {.lex_state = 8, .external_lex_state = 3}, [2460] = {.lex_state = 13, .external_lex_state = 5}, - [2461] = {.lex_state = 13, .external_lex_state = 5}, - [2462] = {.lex_state = 8, .external_lex_state = 3}, + [2461] = {.lex_state = 8, .external_lex_state = 3}, + [2462] = {.lex_state = 13, .external_lex_state = 5}, [2463] = {.lex_state = 13, .external_lex_state = 5}, - [2464] = {.lex_state = 13, .external_lex_state = 2}, - [2465] = {.lex_state = 13, .external_lex_state = 5}, - [2466] = {.lex_state = 151, .external_lex_state = 2}, - [2467] = {.lex_state = 8, .external_lex_state = 3}, - [2468] = {.lex_state = 8, .external_lex_state = 3}, + [2464] = {.lex_state = 8, .external_lex_state = 3}, + [2465] = {.lex_state = 8, .external_lex_state = 3}, + [2466] = {.lex_state = 8, .external_lex_state = 3}, + [2467] = {.lex_state = 13, .external_lex_state = 2}, + [2468] = {.lex_state = 13, .external_lex_state = 5}, [2469] = {.lex_state = 8, .external_lex_state = 3}, - [2470] = {.lex_state = 13, .external_lex_state = 5}, - [2471] = {.lex_state = 13, .external_lex_state = 5}, - [2472] = {.lex_state = 151, .external_lex_state = 5}, + [2470] = {.lex_state = 8, .external_lex_state = 3}, + [2471] = {.lex_state = 8, .external_lex_state = 3}, + [2472] = {.lex_state = 8, .external_lex_state = 3}, [2473] = {.lex_state = 8, .external_lex_state = 3}, [2474] = {.lex_state = 8, .external_lex_state = 3}, - [2475] = {.lex_state = 8, .external_lex_state = 3}, - [2476] = {.lex_state = 8, .external_lex_state = 3}, - [2477] = {.lex_state = 13, .external_lex_state = 2}, + [2475] = {.lex_state = 13, .external_lex_state = 5}, + [2476] = {.lex_state = 13, .external_lex_state = 5}, + [2477] = {.lex_state = 8, .external_lex_state = 3}, [2478] = {.lex_state = 8, .external_lex_state = 3}, [2479] = {.lex_state = 13, .external_lex_state = 2}, - [2480] = {.lex_state = 151, .external_lex_state = 5}, - [2481] = {.lex_state = 151, .external_lex_state = 5}, - [2482] = {.lex_state = 151, .external_lex_state = 5}, - [2483] = {.lex_state = 151, .external_lex_state = 5}, - [2484] = {.lex_state = 151, .external_lex_state = 2}, - [2485] = {.lex_state = 8, .external_lex_state = 3}, - [2486] = {.lex_state = 8, .external_lex_state = 3}, - [2487] = {.lex_state = 151, .external_lex_state = 2}, - [2488] = {.lex_state = 8, .external_lex_state = 3}, - [2489] = {.lex_state = 8, .external_lex_state = 3}, - [2490] = {.lex_state = 8, .external_lex_state = 3}, - [2491] = {.lex_state = 8, .external_lex_state = 3}, - [2492] = {.lex_state = 151, .external_lex_state = 5}, + [2480] = {.lex_state = 8, .external_lex_state = 3}, + [2481] = {.lex_state = 13, .external_lex_state = 5}, + [2482] = {.lex_state = 13, .external_lex_state = 5}, + [2483] = {.lex_state = 13, .external_lex_state = 5}, + [2484] = {.lex_state = 13, .external_lex_state = 5}, + [2485] = {.lex_state = 13, .external_lex_state = 5}, + [2486] = {.lex_state = 13, .external_lex_state = 5}, + [2487] = {.lex_state = 13, .external_lex_state = 5}, + [2488] = {.lex_state = 13, .external_lex_state = 5}, + [2489] = {.lex_state = 13, .external_lex_state = 2}, + [2490] = {.lex_state = 13, .external_lex_state = 5}, + [2491] = {.lex_state = 13, .external_lex_state = 5}, + [2492] = {.lex_state = 8, .external_lex_state = 3}, [2493] = {.lex_state = 8, .external_lex_state = 3}, - [2494] = {.lex_state = 8, .external_lex_state = 3}, - [2495] = {.lex_state = 151, .external_lex_state = 5}, - [2496] = {.lex_state = 8, .external_lex_state = 4}, - [2497] = {.lex_state = 151, .external_lex_state = 5}, - [2498] = {.lex_state = 151, .external_lex_state = 5}, + [2494] = {.lex_state = 13, .external_lex_state = 2}, + [2495] = {.lex_state = 8, .external_lex_state = 3}, + [2496] = {.lex_state = 8, .external_lex_state = 3}, + [2497] = {.lex_state = 8, .external_lex_state = 3}, + [2498] = {.lex_state = 8, .external_lex_state = 4}, [2499] = {.lex_state = 8, .external_lex_state = 3}, - [2500] = {.lex_state = 13, .external_lex_state = 5}, - [2501] = {.lex_state = 8, .external_lex_state = 3}, + [2500] = {.lex_state = 13, .external_lex_state = 2}, + [2501] = {.lex_state = 13, .external_lex_state = 5}, [2502] = {.lex_state = 8, .external_lex_state = 3}, [2503] = {.lex_state = 13, .external_lex_state = 5}, [2504] = {.lex_state = 8, .external_lex_state = 3}, - [2505] = {.lex_state = 13, .external_lex_state = 2}, - [2506] = {.lex_state = 8, .external_lex_state = 3}, - [2507] = {.lex_state = 13, .external_lex_state = 2}, - [2508] = {.lex_state = 13, .external_lex_state = 2}, - [2509] = {.lex_state = 8, .external_lex_state = 3}, - [2510] = {.lex_state = 8, .external_lex_state = 3}, - [2511] = {.lex_state = 151, .external_lex_state = 5}, - [2512] = {.lex_state = 151, .external_lex_state = 2}, - [2513] = {.lex_state = 13, .external_lex_state = 2}, - [2514] = {.lex_state = 13, .external_lex_state = 2}, - [2515] = {.lex_state = 151, .external_lex_state = 5}, + [2505] = {.lex_state = 13, .external_lex_state = 5}, + [2506] = {.lex_state = 13, .external_lex_state = 5}, + [2507] = {.lex_state = 13, .external_lex_state = 5}, + [2508] = {.lex_state = 13, .external_lex_state = 5}, + [2509] = {.lex_state = 13, .external_lex_state = 5}, + [2510] = {.lex_state = 13, .external_lex_state = 5}, + [2511] = {.lex_state = 13, .external_lex_state = 5}, + [2512] = {.lex_state = 150, .external_lex_state = 2}, + [2513] = {.lex_state = 8, .external_lex_state = 3}, + [2514] = {.lex_state = 8, .external_lex_state = 4}, + [2515] = {.lex_state = 8, .external_lex_state = 3}, [2516] = {.lex_state = 13, .external_lex_state = 2}, - [2517] = {.lex_state = 151, .external_lex_state = 5}, - [2518] = {.lex_state = 8, .external_lex_state = 3}, + [2517] = {.lex_state = 150, .external_lex_state = 5}, + [2518] = {.lex_state = 13, .external_lex_state = 5}, [2519] = {.lex_state = 8, .external_lex_state = 3}, - [2520] = {.lex_state = 9, .external_lex_state = 3}, - [2521] = {.lex_state = 8, .external_lex_state = 3}, - [2522] = {.lex_state = 151, .external_lex_state = 5}, - [2523] = {.lex_state = 151, .external_lex_state = 5}, - [2524] = {.lex_state = 151, .external_lex_state = 5}, - [2525] = {.lex_state = 151, .external_lex_state = 5}, - [2526] = {.lex_state = 151, .external_lex_state = 5}, - [2527] = {.lex_state = 151, .external_lex_state = 5}, - [2528] = {.lex_state = 13, .external_lex_state = 2}, + [2520] = {.lex_state = 8, .external_lex_state = 3}, + [2521] = {.lex_state = 13, .external_lex_state = 2}, + [2522] = {.lex_state = 13, .external_lex_state = 5}, + [2523] = {.lex_state = 150, .external_lex_state = 5}, + [2524] = {.lex_state = 8, .external_lex_state = 3}, + [2525] = {.lex_state = 150, .external_lex_state = 5}, + [2526] = {.lex_state = 150, .external_lex_state = 5}, + [2527] = {.lex_state = 8, .external_lex_state = 3}, + [2528] = {.lex_state = 8, .external_lex_state = 3}, [2529] = {.lex_state = 13, .external_lex_state = 2}, - [2530] = {.lex_state = 151, .external_lex_state = 5}, - [2531] = {.lex_state = 13, .external_lex_state = 2}, + [2530] = {.lex_state = 13, .external_lex_state = 2}, + [2531] = {.lex_state = 8, .external_lex_state = 3}, [2532] = {.lex_state = 8, .external_lex_state = 3}, - [2533] = {.lex_state = 13, .external_lex_state = 2}, - [2534] = {.lex_state = 13, .external_lex_state = 2}, + [2533] = {.lex_state = 150, .external_lex_state = 5}, + [2534] = {.lex_state = 8, .external_lex_state = 3}, [2535] = {.lex_state = 8, .external_lex_state = 3}, - [2536] = {.lex_state = 13, .external_lex_state = 2}, - [2537] = {.lex_state = 13, .external_lex_state = 2}, - [2538] = {.lex_state = 13, .external_lex_state = 2}, - [2539] = {.lex_state = 151, .external_lex_state = 5}, - [2540] = {.lex_state = 151, .external_lex_state = 5}, - [2541] = {.lex_state = 13, .external_lex_state = 2}, - [2542] = {.lex_state = 151, .external_lex_state = 5}, - [2543] = {.lex_state = 13, .external_lex_state = 2}, - [2544] = {.lex_state = 151, .external_lex_state = 5}, - [2545] = {.lex_state = 13, .external_lex_state = 2}, + [2536] = {.lex_state = 8, .external_lex_state = 3}, + [2537] = {.lex_state = 8, .external_lex_state = 3}, + [2538] = {.lex_state = 8, .external_lex_state = 3}, + [2539] = {.lex_state = 8, .external_lex_state = 3}, + [2540] = {.lex_state = 8, .external_lex_state = 3}, + [2541] = {.lex_state = 8, .external_lex_state = 3}, + [2542] = {.lex_state = 150, .external_lex_state = 5}, + [2543] = {.lex_state = 150, .external_lex_state = 5}, + [2544] = {.lex_state = 150, .external_lex_state = 5}, + [2545] = {.lex_state = 8, .external_lex_state = 3}, [2546] = {.lex_state = 8, .external_lex_state = 3}, - [2547] = {.lex_state = 13, .external_lex_state = 2}, + [2547] = {.lex_state = 150, .external_lex_state = 2}, [2548] = {.lex_state = 8, .external_lex_state = 3}, - [2549] = {.lex_state = 13, .external_lex_state = 2}, - [2550] = {.lex_state = 151, .external_lex_state = 5}, - [2551] = {.lex_state = 151, .external_lex_state = 5}, - [2552] = {.lex_state = 13, .external_lex_state = 2}, + [2549] = {.lex_state = 150, .external_lex_state = 5}, + [2550] = {.lex_state = 150, .external_lex_state = 5}, + [2551] = {.lex_state = 13, .external_lex_state = 2}, + [2552] = {.lex_state = 8, .external_lex_state = 3}, [2553] = {.lex_state = 13, .external_lex_state = 2}, - [2554] = {.lex_state = 151, .external_lex_state = 5}, - [2555] = {.lex_state = 13, .external_lex_state = 5}, - [2556] = {.lex_state = 13, .external_lex_state = 5}, - [2557] = {.lex_state = 13, .external_lex_state = 5}, - [2558] = {.lex_state = 13, .external_lex_state = 5}, - [2559] = {.lex_state = 13, .external_lex_state = 5}, - [2560] = {.lex_state = 13, .external_lex_state = 5}, - [2561] = {.lex_state = 13, .external_lex_state = 5}, - [2562] = {.lex_state = 13, .external_lex_state = 5}, - [2563] = {.lex_state = 13, .external_lex_state = 5}, - [2564] = {.lex_state = 13, .external_lex_state = 5}, - [2565] = {.lex_state = 13, .external_lex_state = 5}, - [2566] = {.lex_state = 13, .external_lex_state = 5}, - [2567] = {.lex_state = 13, .external_lex_state = 5}, - [2568] = {.lex_state = 13, .external_lex_state = 5}, - [2569] = {.lex_state = 13, .external_lex_state = 5}, - [2570] = {.lex_state = 8, .external_lex_state = 3}, - [2571] = {.lex_state = 13, .external_lex_state = 5}, - [2572] = {.lex_state = 13, .external_lex_state = 5}, - [2573] = {.lex_state = 13, .external_lex_state = 5}, - [2574] = {.lex_state = 13, .external_lex_state = 5}, - [2575] = {.lex_state = 13, .external_lex_state = 5}, - [2576] = {.lex_state = 8, .external_lex_state = 3}, - [2577] = {.lex_state = 13, .external_lex_state = 5}, - [2578] = {.lex_state = 13, .external_lex_state = 5}, - [2579] = {.lex_state = 13, .external_lex_state = 5}, - [2580] = {.lex_state = 8, .external_lex_state = 3}, - [2581] = {.lex_state = 13, .external_lex_state = 5}, - [2582] = {.lex_state = 8, .external_lex_state = 3}, - [2583] = {.lex_state = 13, .external_lex_state = 5}, - [2584] = {.lex_state = 13, .external_lex_state = 5}, - [2585] = {.lex_state = 13, .external_lex_state = 5}, - [2586] = {.lex_state = 13, .external_lex_state = 5}, - [2587] = {.lex_state = 13, .external_lex_state = 5}, - [2588] = {.lex_state = 13, .external_lex_state = 5}, - [2589] = {.lex_state = 13, .external_lex_state = 5}, - [2590] = {.lex_state = 13, .external_lex_state = 2}, - [2591] = {.lex_state = 13, .external_lex_state = 5}, - [2592] = {.lex_state = 13, .external_lex_state = 5}, + [2554] = {.lex_state = 13, .external_lex_state = 2}, + [2555] = {.lex_state = 150, .external_lex_state = 5}, + [2556] = {.lex_state = 8, .external_lex_state = 3}, + [2557] = {.lex_state = 8, .external_lex_state = 3}, + [2558] = {.lex_state = 8, .external_lex_state = 3}, + [2559] = {.lex_state = 13, .external_lex_state = 2}, + [2560] = {.lex_state = 8, .external_lex_state = 3}, + [2561] = {.lex_state = 13, .external_lex_state = 2}, + [2562] = {.lex_state = 150, .external_lex_state = 5}, + [2563] = {.lex_state = 13, .external_lex_state = 2}, + [2564] = {.lex_state = 8, .external_lex_state = 3}, + [2565] = {.lex_state = 150, .external_lex_state = 5}, + [2566] = {.lex_state = 150, .external_lex_state = 5}, + [2567] = {.lex_state = 150, .external_lex_state = 5}, + [2568] = {.lex_state = 9, .external_lex_state = 3}, + [2569] = {.lex_state = 150, .external_lex_state = 5}, + [2570] = {.lex_state = 13, .external_lex_state = 2}, + [2571] = {.lex_state = 13, .external_lex_state = 2}, + [2572] = {.lex_state = 13, .external_lex_state = 2}, + [2573] = {.lex_state = 13, .external_lex_state = 2}, + [2574] = {.lex_state = 150, .external_lex_state = 5}, + [2575] = {.lex_state = 150, .external_lex_state = 5}, + [2576] = {.lex_state = 150, .external_lex_state = 5}, + [2577] = {.lex_state = 13, .external_lex_state = 2}, + [2578] = {.lex_state = 150, .external_lex_state = 5}, + [2579] = {.lex_state = 150, .external_lex_state = 5}, + [2580] = {.lex_state = 150, .external_lex_state = 5}, + [2581] = {.lex_state = 150, .external_lex_state = 5}, + [2582] = {.lex_state = 13, .external_lex_state = 2}, + [2583] = {.lex_state = 150, .external_lex_state = 5}, + [2584] = {.lex_state = 8, .external_lex_state = 3}, + [2585] = {.lex_state = 13, .external_lex_state = 2}, + [2586] = {.lex_state = 150, .external_lex_state = 5}, + [2587] = {.lex_state = 13, .external_lex_state = 2}, + [2588] = {.lex_state = 13, .external_lex_state = 2}, + [2589] = {.lex_state = 13, .external_lex_state = 2}, + [2590] = {.lex_state = 150, .external_lex_state = 5}, + [2591] = {.lex_state = 13, .external_lex_state = 2}, + [2592] = {.lex_state = 13, .external_lex_state = 2}, [2593] = {.lex_state = 13, .external_lex_state = 2}, - [2594] = {.lex_state = 13, .external_lex_state = 5}, + [2594] = {.lex_state = 13, .external_lex_state = 2}, [2595] = {.lex_state = 13, .external_lex_state = 5}, [2596] = {.lex_state = 13, .external_lex_state = 5}, [2597] = {.lex_state = 13, .external_lex_state = 5}, - [2598] = {.lex_state = 13, .external_lex_state = 5}, + [2598] = {.lex_state = 8, .external_lex_state = 3}, [2599] = {.lex_state = 8, .external_lex_state = 3}, - [2600] = {.lex_state = 13, .external_lex_state = 5}, - [2601] = {.lex_state = 13, .external_lex_state = 2}, + [2600] = {.lex_state = 8, .external_lex_state = 3}, + [2601] = {.lex_state = 8, .external_lex_state = 3}, [2602] = {.lex_state = 13, .external_lex_state = 5}, - [2603] = {.lex_state = 13, .external_lex_state = 5}, - [2604] = {.lex_state = 8, .external_lex_state = 3}, - [2605] = {.lex_state = 13, .external_lex_state = 5}, + [2603] = {.lex_state = 8, .external_lex_state = 3}, + [2604] = {.lex_state = 13, .external_lex_state = 5}, + [2605] = {.lex_state = 150, .external_lex_state = 2}, [2606] = {.lex_state = 13, .external_lex_state = 5}, - [2607] = {.lex_state = 8, .external_lex_state = 3}, - [2608] = {.lex_state = 8, .external_lex_state = 3}, + [2607] = {.lex_state = 13, .external_lex_state = 5}, + [2608] = {.lex_state = 13, .external_lex_state = 5}, [2609] = {.lex_state = 13, .external_lex_state = 5}, [2610] = {.lex_state = 13, .external_lex_state = 5}, [2611] = {.lex_state = 13, .external_lex_state = 5}, [2612] = {.lex_state = 13, .external_lex_state = 5}, [2613] = {.lex_state = 13, .external_lex_state = 5}, - [2614] = {.lex_state = 13, .external_lex_state = 5}, - [2615] = {.lex_state = 13, .external_lex_state = 5}, + [2614] = {.lex_state = 150, .external_lex_state = 2}, + [2615] = {.lex_state = 8, .external_lex_state = 3}, [2616] = {.lex_state = 13, .external_lex_state = 5}, - [2617] = {.lex_state = 8, .external_lex_state = 3}, + [2617] = {.lex_state = 13, .external_lex_state = 5}, [2618] = {.lex_state = 13, .external_lex_state = 5}, - [2619] = {.lex_state = 13, .external_lex_state = 2}, - [2620] = {.lex_state = 13, .external_lex_state = 2}, + [2619] = {.lex_state = 13, .external_lex_state = 5}, + [2620] = {.lex_state = 13, .external_lex_state = 5}, [2621] = {.lex_state = 13, .external_lex_state = 2}, - [2622] = {.lex_state = 13, .external_lex_state = 2}, - [2623] = {.lex_state = 13, .external_lex_state = 2}, - [2624] = {.lex_state = 13, .external_lex_state = 2}, - [2625] = {.lex_state = 13, .external_lex_state = 2}, - [2626] = {.lex_state = 13, .external_lex_state = 2}, - [2627] = {.lex_state = 13, .external_lex_state = 2}, - [2628] = {.lex_state = 13, .external_lex_state = 2}, - [2629] = {.lex_state = 13, .external_lex_state = 2}, - [2630] = {.lex_state = 13, .external_lex_state = 2}, - [2631] = {.lex_state = 13, .external_lex_state = 2}, - [2632] = {.lex_state = 13, .external_lex_state = 2}, - [2633] = {.lex_state = 151, .external_lex_state = 2}, - [2634] = {.lex_state = 13, .external_lex_state = 2}, - [2635] = {.lex_state = 13, .external_lex_state = 2}, - [2636] = {.lex_state = 13, .external_lex_state = 2}, - [2637] = {.lex_state = 13, .external_lex_state = 2}, - [2638] = {.lex_state = 151, .external_lex_state = 2}, - [2639] = {.lex_state = 13, .external_lex_state = 2}, - [2640] = {.lex_state = 13, .external_lex_state = 2}, - [2641] = {.lex_state = 13, .external_lex_state = 2}, - [2642] = {.lex_state = 13, .external_lex_state = 2}, - [2643] = {.lex_state = 13, .external_lex_state = 2}, - [2644] = {.lex_state = 151, .external_lex_state = 2}, - [2645] = {.lex_state = 13, .external_lex_state = 2}, - [2646] = {.lex_state = 13, .external_lex_state = 2}, - [2647] = {.lex_state = 13, .external_lex_state = 2}, - [2648] = {.lex_state = 13, .external_lex_state = 2}, - [2649] = {.lex_state = 13, .external_lex_state = 2}, - [2650] = {.lex_state = 13, .external_lex_state = 2}, - [2651] = {.lex_state = 13, .external_lex_state = 2}, - [2652] = {.lex_state = 13, .external_lex_state = 2}, - [2653] = {.lex_state = 13, .external_lex_state = 2}, - [2654] = {.lex_state = 13, .external_lex_state = 2}, - [2655] = {.lex_state = 151, .external_lex_state = 2}, - [2656] = {.lex_state = 13, .external_lex_state = 2}, - [2657] = {.lex_state = 13, .external_lex_state = 2}, - [2658] = {.lex_state = 13, .external_lex_state = 2}, - [2659] = {.lex_state = 13, .external_lex_state = 2}, - [2660] = {.lex_state = 13, .external_lex_state = 2}, - [2661] = {.lex_state = 13, .external_lex_state = 2}, - [2662] = {.lex_state = 13, .external_lex_state = 2}, - [2663] = {.lex_state = 13, .external_lex_state = 2}, - [2664] = {.lex_state = 13, .external_lex_state = 2}, - [2665] = {.lex_state = 13, .external_lex_state = 2}, - [2666] = {.lex_state = 13, .external_lex_state = 2}, - [2667] = {.lex_state = 13, .external_lex_state = 2}, - [2668] = {.lex_state = 13, .external_lex_state = 2}, - [2669] = {.lex_state = 13, .external_lex_state = 2}, - [2670] = {.lex_state = 13, .external_lex_state = 2}, - [2671] = {.lex_state = 151, .external_lex_state = 2}, - [2672] = {.lex_state = 13, .external_lex_state = 2}, - [2673] = {.lex_state = 151, .external_lex_state = 2}, - [2674] = {.lex_state = 151, .external_lex_state = 2}, - [2675] = {.lex_state = 151, .external_lex_state = 2}, - [2676] = {.lex_state = 151, .external_lex_state = 2}, - [2677] = {.lex_state = 151, .external_lex_state = 2}, - [2678] = {.lex_state = 151, .external_lex_state = 2}, - [2679] = {.lex_state = 151, .external_lex_state = 2}, - [2680] = {.lex_state = 151, .external_lex_state = 2}, - [2681] = {.lex_state = 151, .external_lex_state = 2}, - [2682] = {.lex_state = 151, .external_lex_state = 2}, - [2683] = {.lex_state = 151, .external_lex_state = 2}, - [2684] = {.lex_state = 151, .external_lex_state = 2}, - [2685] = {.lex_state = 151, .external_lex_state = 2}, - [2686] = {.lex_state = 151, .external_lex_state = 2}, - [2687] = {.lex_state = 151, .external_lex_state = 2}, - [2688] = {.lex_state = 151, .external_lex_state = 2}, - [2689] = {.lex_state = 151, .external_lex_state = 2}, - [2690] = {.lex_state = 151, .external_lex_state = 2}, - [2691] = {.lex_state = 151, .external_lex_state = 2}, - [2692] = {.lex_state = 151, .external_lex_state = 2}, - [2693] = {.lex_state = 151, .external_lex_state = 2}, - [2694] = {.lex_state = 151, .external_lex_state = 2}, - [2695] = {.lex_state = 151, .external_lex_state = 2}, - [2696] = {.lex_state = 151, .external_lex_state = 2}, - [2697] = {.lex_state = 151, .external_lex_state = 2}, - [2698] = {.lex_state = 151, .external_lex_state = 2}, - [2699] = {.lex_state = 151, .external_lex_state = 2}, - [2700] = {.lex_state = 151, .external_lex_state = 2}, - [2701] = {.lex_state = 151, .external_lex_state = 2}, - [2702] = {.lex_state = 151, .external_lex_state = 2}, - [2703] = {.lex_state = 151, .external_lex_state = 2}, - [2704] = {.lex_state = 151, .external_lex_state = 2}, - [2705] = {.lex_state = 151, .external_lex_state = 2}, - [2706] = {.lex_state = 151, .external_lex_state = 2}, - [2707] = {.lex_state = 151, .external_lex_state = 2}, - [2708] = {.lex_state = 151, .external_lex_state = 2}, - [2709] = {.lex_state = 151, .external_lex_state = 2}, - [2710] = {.lex_state = 151, .external_lex_state = 2}, - [2711] = {.lex_state = 151, .external_lex_state = 2}, - [2712] = {.lex_state = 151, .external_lex_state = 2}, - [2713] = {.lex_state = 151, .external_lex_state = 2}, - [2714] = {.lex_state = 151, .external_lex_state = 2}, - [2715] = {.lex_state = 151, .external_lex_state = 2}, - [2716] = {.lex_state = 151, .external_lex_state = 2}, - [2717] = {.lex_state = 151, .external_lex_state = 2}, - [2718] = {.lex_state = 13, .external_lex_state = 2}, - [2719] = {.lex_state = 151, .external_lex_state = 2}, - [2720] = {.lex_state = 151, .external_lex_state = 2}, - [2721] = {.lex_state = 151, .external_lex_state = 2}, - [2722] = {.lex_state = 151, .external_lex_state = 2}, - [2723] = {.lex_state = 151, .external_lex_state = 2}, - [2724] = {.lex_state = 151, .external_lex_state = 2}, - [2725] = {.lex_state = 151, .external_lex_state = 2}, - [2726] = {.lex_state = 151, .external_lex_state = 2}, - [2727] = {.lex_state = 151, .external_lex_state = 2}, - [2728] = {.lex_state = 151, .external_lex_state = 2}, - [2729] = {.lex_state = 151, .external_lex_state = 2}, - [2730] = {.lex_state = 151, .external_lex_state = 2}, - [2731] = {.lex_state = 151, .external_lex_state = 2}, - [2732] = {.lex_state = 151, .external_lex_state = 2}, - [2733] = {.lex_state = 151, .external_lex_state = 2}, - [2734] = {.lex_state = 151, .external_lex_state = 2}, - [2735] = {.lex_state = 151, .external_lex_state = 2}, - [2736] = {.lex_state = 151, .external_lex_state = 2}, - [2737] = {.lex_state = 151, .external_lex_state = 2}, - [2738] = {.lex_state = 151, .external_lex_state = 2}, - [2739] = {.lex_state = 151, .external_lex_state = 2}, - [2740] = {.lex_state = 151, .external_lex_state = 2}, - [2741] = {.lex_state = 151, .external_lex_state = 2}, - [2742] = {.lex_state = 151, .external_lex_state = 2}, - [2743] = {.lex_state = 151, .external_lex_state = 2}, - [2744] = {.lex_state = 151, .external_lex_state = 2}, - [2745] = {.lex_state = 151, .external_lex_state = 2}, - [2746] = {.lex_state = 151, .external_lex_state = 2}, - [2747] = {.lex_state = 151, .external_lex_state = 2}, - [2748] = {.lex_state = 151, .external_lex_state = 2}, - [2749] = {.lex_state = 151, .external_lex_state = 2}, - [2750] = {.lex_state = 151, .external_lex_state = 2}, - [2751] = {.lex_state = 151, .external_lex_state = 2}, - [2752] = {.lex_state = 151, .external_lex_state = 2}, - [2753] = {.lex_state = 151, .external_lex_state = 2}, - [2754] = {.lex_state = 151, .external_lex_state = 2}, - [2755] = {.lex_state = 151, .external_lex_state = 2}, - [2756] = {.lex_state = 151, .external_lex_state = 2}, - [2757] = {.lex_state = 151, .external_lex_state = 2}, - [2758] = {.lex_state = 151, .external_lex_state = 2}, - [2759] = {.lex_state = 151, .external_lex_state = 2}, - [2760] = {.lex_state = 151, .external_lex_state = 2}, - [2761] = {.lex_state = 151, .external_lex_state = 2}, - [2762] = {.lex_state = 151, .external_lex_state = 2}, - [2763] = {.lex_state = 151, .external_lex_state = 2}, - [2764] = {.lex_state = 151, .external_lex_state = 2}, - [2765] = {.lex_state = 151, .external_lex_state = 2}, - [2766] = {.lex_state = 151, .external_lex_state = 2}, - [2767] = {.lex_state = 151, .external_lex_state = 2}, - [2768] = {.lex_state = 151, .external_lex_state = 2}, - [2769] = {.lex_state = 151, .external_lex_state = 2}, - [2770] = {.lex_state = 151, .external_lex_state = 2}, - [2771] = {.lex_state = 151, .external_lex_state = 2}, - [2772] = {.lex_state = 151, .external_lex_state = 2}, - [2773] = {.lex_state = 151, .external_lex_state = 2}, - [2774] = {.lex_state = 151, .external_lex_state = 2}, - [2775] = {.lex_state = 151, .external_lex_state = 2}, - [2776] = {.lex_state = 151, .external_lex_state = 2}, - [2777] = {.lex_state = 151, .external_lex_state = 2}, - [2778] = {.lex_state = 151, .external_lex_state = 2}, - [2779] = {.lex_state = 151, .external_lex_state = 2}, - [2780] = {.lex_state = 151, .external_lex_state = 2}, - [2781] = {.lex_state = 151, .external_lex_state = 2}, - [2782] = {.lex_state = 16, .external_lex_state = 2}, - [2783] = {.lex_state = 16, .external_lex_state = 2}, - [2784] = {.lex_state = 16, .external_lex_state = 2}, - [2785] = {.lex_state = 16, .external_lex_state = 2}, - [2786] = {.lex_state = 16, .external_lex_state = 2}, - [2787] = {.lex_state = 16, .external_lex_state = 2}, - [2788] = {.lex_state = 16, .external_lex_state = 2}, - [2789] = {.lex_state = 16, .external_lex_state = 2}, - [2790] = {.lex_state = 16, .external_lex_state = 2}, - [2791] = {.lex_state = 16, .external_lex_state = 2}, - [2792] = {.lex_state = 16, .external_lex_state = 2}, - [2793] = {.lex_state = 16, .external_lex_state = 2}, - [2794] = {.lex_state = 16, .external_lex_state = 2}, - [2795] = {.lex_state = 16, .external_lex_state = 2}, - [2796] = {.lex_state = 16, .external_lex_state = 2}, - [2797] = {.lex_state = 16, .external_lex_state = 2}, - [2798] = {.lex_state = 16, .external_lex_state = 2}, - [2799] = {.lex_state = 16, .external_lex_state = 2}, - [2800] = {.lex_state = 16, .external_lex_state = 2}, - [2801] = {.lex_state = 16, .external_lex_state = 2}, - [2802] = {.lex_state = 16, .external_lex_state = 2}, - [2803] = {.lex_state = 16, .external_lex_state = 2}, - [2804] = {.lex_state = 16, .external_lex_state = 2}, - [2805] = {.lex_state = 16, .external_lex_state = 2}, - [2806] = {.lex_state = 16, .external_lex_state = 2}, - [2807] = {.lex_state = 16, .external_lex_state = 2}, - [2808] = {.lex_state = 16, .external_lex_state = 2}, - [2809] = {.lex_state = 16, .external_lex_state = 2}, - [2810] = {.lex_state = 16, .external_lex_state = 2}, - [2811] = {.lex_state = 16, .external_lex_state = 2}, - [2812] = {.lex_state = 16, .external_lex_state = 2}, - [2813] = {.lex_state = 16, .external_lex_state = 2}, - [2814] = {.lex_state = 16, .external_lex_state = 2}, - [2815] = {.lex_state = 16, .external_lex_state = 2}, - [2816] = {.lex_state = 16, .external_lex_state = 2}, - [2817] = {.lex_state = 16, .external_lex_state = 2}, - [2818] = {.lex_state = 16, .external_lex_state = 2}, - [2819] = {.lex_state = 26, .external_lex_state = 2}, - [2820] = {.lex_state = 14, .external_lex_state = 5}, - [2821] = {.lex_state = 26, .external_lex_state = 2}, - [2822] = {.lex_state = 14, .external_lex_state = 5}, - [2823] = {.lex_state = 16, .external_lex_state = 2}, - [2824] = {.lex_state = 14, .external_lex_state = 2}, - [2825] = {.lex_state = 151, .external_lex_state = 2}, - [2826] = {.lex_state = 14, .external_lex_state = 2}, - [2827] = {.lex_state = 16, .external_lex_state = 5}, - [2828] = {.lex_state = 14, .external_lex_state = 2}, - [2829] = {.lex_state = 15, .external_lex_state = 2}, - [2830] = {.lex_state = 151, .external_lex_state = 2}, - [2831] = {.lex_state = 15, .external_lex_state = 2}, - [2832] = {.lex_state = 16, .external_lex_state = 5}, - [2833] = {.lex_state = 15, .external_lex_state = 2}, - [2834] = {.lex_state = 151, .external_lex_state = 2}, - [2835] = {.lex_state = 14, .external_lex_state = 2}, - [2836] = {.lex_state = 151, .external_lex_state = 2}, - [2837] = {.lex_state = 151, .external_lex_state = 2}, - [2838] = {.lex_state = 151, .external_lex_state = 2}, - [2839] = {.lex_state = 16, .external_lex_state = 5}, - [2840] = {.lex_state = 14, .external_lex_state = 2}, - [2841] = {.lex_state = 15, .external_lex_state = 2}, - [2842] = {.lex_state = 151, .external_lex_state = 2}, - [2843] = {.lex_state = 15, .external_lex_state = 2}, - [2844] = {.lex_state = 151, .external_lex_state = 2}, - [2845] = {.lex_state = 151, .external_lex_state = 2}, - [2846] = {.lex_state = 151, .external_lex_state = 2}, - [2847] = {.lex_state = 151, .external_lex_state = 2}, - [2848] = {.lex_state = 151, .external_lex_state = 2}, - [2849] = {.lex_state = 151, .external_lex_state = 2}, - [2850] = {.lex_state = 151, .external_lex_state = 2}, - [2851] = {.lex_state = 151, .external_lex_state = 2}, - [2852] = {.lex_state = 151, .external_lex_state = 2}, - [2853] = {.lex_state = 151, .external_lex_state = 2}, - [2854] = {.lex_state = 151, .external_lex_state = 2}, - [2855] = {.lex_state = 151, .external_lex_state = 2}, - [2856] = {.lex_state = 151, .external_lex_state = 2}, - [2857] = {.lex_state = 151, .external_lex_state = 2}, - [2858] = {.lex_state = 151, .external_lex_state = 2}, - [2859] = {.lex_state = 151, .external_lex_state = 2}, - [2860] = {.lex_state = 151, .external_lex_state = 2}, - [2861] = {.lex_state = 151, .external_lex_state = 2}, - [2862] = {.lex_state = 16, .external_lex_state = 6}, - [2863] = {.lex_state = 16, .external_lex_state = 6}, - [2864] = {.lex_state = 16, .external_lex_state = 6}, - [2865] = {.lex_state = 151, .external_lex_state = 2}, - [2866] = {.lex_state = 151, .external_lex_state = 2}, - [2867] = {.lex_state = 151, .external_lex_state = 2}, - [2868] = {.lex_state = 151, .external_lex_state = 2}, - [2869] = {.lex_state = 151, .external_lex_state = 2}, - [2870] = {.lex_state = 151, .external_lex_state = 2}, - [2871] = {.lex_state = 151, .external_lex_state = 2}, - [2872] = {.lex_state = 151, .external_lex_state = 2}, - [2873] = {.lex_state = 151, .external_lex_state = 2}, - [2874] = {.lex_state = 151, .external_lex_state = 2}, - [2875] = {.lex_state = 5, .external_lex_state = 2}, - [2876] = {.lex_state = 151, .external_lex_state = 2}, - [2877] = {.lex_state = 151, .external_lex_state = 2}, - [2878] = {.lex_state = 5, .external_lex_state = 2}, - [2879] = {.lex_state = 151, .external_lex_state = 2}, - [2880] = {.lex_state = 151, .external_lex_state = 2}, - [2881] = {.lex_state = 151, .external_lex_state = 2}, - [2882] = {.lex_state = 151, .external_lex_state = 2}, - [2883] = {.lex_state = 151, .external_lex_state = 2}, - [2884] = {.lex_state = 5, .external_lex_state = 2}, - [2885] = {.lex_state = 151, .external_lex_state = 2}, - [2886] = {.lex_state = 151, .external_lex_state = 2}, - [2887] = {.lex_state = 151, .external_lex_state = 2}, - [2888] = {.lex_state = 151, .external_lex_state = 2}, - [2889] = {.lex_state = 151, .external_lex_state = 2}, - [2890] = {.lex_state = 151, .external_lex_state = 2}, - [2891] = {.lex_state = 5, .external_lex_state = 2}, - [2892] = {.lex_state = 151, .external_lex_state = 2}, - [2893] = {.lex_state = 151, .external_lex_state = 2}, - [2894] = {.lex_state = 151, .external_lex_state = 2}, - [2895] = {.lex_state = 151, .external_lex_state = 2}, - [2896] = {.lex_state = 151, .external_lex_state = 2}, - [2897] = {.lex_state = 151, .external_lex_state = 2}, - [2898] = {.lex_state = 5, .external_lex_state = 2}, - [2899] = {.lex_state = 5, .external_lex_state = 2}, - [2900] = {.lex_state = 5, .external_lex_state = 2}, - [2901] = {.lex_state = 14, .external_lex_state = 5}, - [2902] = {.lex_state = 151, .external_lex_state = 2}, - [2903] = {.lex_state = 151, .external_lex_state = 2}, - [2904] = {.lex_state = 151, .external_lex_state = 2}, - [2905] = {.lex_state = 151, .external_lex_state = 2}, - [2906] = {.lex_state = 16, .external_lex_state = 5}, - [2907] = {.lex_state = 151, .external_lex_state = 2}, - [2908] = {.lex_state = 151, .external_lex_state = 2}, - [2909] = {.lex_state = 16, .external_lex_state = 5}, - [2910] = {.lex_state = 16, .external_lex_state = 5}, - [2911] = {.lex_state = 16, .external_lex_state = 5}, - [2912] = {.lex_state = 16, .external_lex_state = 5}, - [2913] = {.lex_state = 16, .external_lex_state = 5}, - [2914] = {.lex_state = 16, .external_lex_state = 5}, - [2915] = {.lex_state = 151, .external_lex_state = 2}, - [2916] = {.lex_state = 16, .external_lex_state = 5}, - [2917] = {.lex_state = 151, .external_lex_state = 2}, - [2918] = {.lex_state = 151, .external_lex_state = 2}, - [2919] = {.lex_state = 5, .external_lex_state = 2}, - [2920] = {.lex_state = 151, .external_lex_state = 2}, - [2921] = {.lex_state = 151, .external_lex_state = 2}, - [2922] = {.lex_state = 16, .external_lex_state = 5}, - [2923] = {.lex_state = 151, .external_lex_state = 2}, - [2924] = {.lex_state = 16, .external_lex_state = 5}, - [2925] = {.lex_state = 151, .external_lex_state = 2}, - [2926] = {.lex_state = 151, .external_lex_state = 2}, - [2927] = {.lex_state = 16, .external_lex_state = 5}, - [2928] = {.lex_state = 16, .external_lex_state = 5}, - [2929] = {.lex_state = 16, .external_lex_state = 5}, - [2930] = {.lex_state = 16, .external_lex_state = 5}, - [2931] = {.lex_state = 16, .external_lex_state = 5}, - [2932] = {.lex_state = 16, .external_lex_state = 5}, - [2933] = {.lex_state = 16, .external_lex_state = 5}, - [2934] = {.lex_state = 16, .external_lex_state = 5}, - [2935] = {.lex_state = 16, .external_lex_state = 5}, - [2936] = {.lex_state = 16, .external_lex_state = 5}, - [2937] = {.lex_state = 16, .external_lex_state = 5}, - [2938] = {.lex_state = 16, .external_lex_state = 5}, - [2939] = {.lex_state = 16, .external_lex_state = 5}, - [2940] = {.lex_state = 16, .external_lex_state = 5}, - [2941] = {.lex_state = 16, .external_lex_state = 5}, - [2942] = {.lex_state = 16, .external_lex_state = 5}, - [2943] = {.lex_state = 5, .external_lex_state = 2}, - [2944] = {.lex_state = 16, .external_lex_state = 5}, - [2945] = {.lex_state = 16, .external_lex_state = 5}, - [2946] = {.lex_state = 16, .external_lex_state = 5}, - [2947] = {.lex_state = 16, .external_lex_state = 5}, - [2948] = {.lex_state = 16, .external_lex_state = 5}, - [2949] = {.lex_state = 16, .external_lex_state = 5}, - [2950] = {.lex_state = 16, .external_lex_state = 5}, - [2951] = {.lex_state = 16, .external_lex_state = 5}, - [2952] = {.lex_state = 151, .external_lex_state = 2}, - [2953] = {.lex_state = 151, .external_lex_state = 2}, - [2954] = {.lex_state = 151, .external_lex_state = 2}, - [2955] = {.lex_state = 13, .external_lex_state = 5}, - [2956] = {.lex_state = 13, .external_lex_state = 5}, - [2957] = {.lex_state = 14, .external_lex_state = 5}, - [2958] = {.lex_state = 151, .external_lex_state = 5}, - [2959] = {.lex_state = 13, .external_lex_state = 5}, - [2960] = {.lex_state = 151, .external_lex_state = 2}, - [2961] = {.lex_state = 13, .external_lex_state = 5}, - [2962] = {.lex_state = 151, .external_lex_state = 2}, - [2963] = {.lex_state = 13, .external_lex_state = 5}, - [2964] = {.lex_state = 13, .external_lex_state = 5}, - [2965] = {.lex_state = 13, .external_lex_state = 5}, - [2966] = {.lex_state = 13, .external_lex_state = 5}, - [2967] = {.lex_state = 13, .external_lex_state = 5}, - [2968] = {.lex_state = 13, .external_lex_state = 5}, - [2969] = {.lex_state = 13, .external_lex_state = 5}, - [2970] = {.lex_state = 151, .external_lex_state = 2}, - [2971] = {.lex_state = 13, .external_lex_state = 5}, - [2972] = {.lex_state = 151, .external_lex_state = 2}, - [2973] = {.lex_state = 13, .external_lex_state = 5}, - [2974] = {.lex_state = 13, .external_lex_state = 5}, - [2975] = {.lex_state = 26, .external_lex_state = 2}, - [2976] = {.lex_state = 13, .external_lex_state = 5}, - [2977] = {.lex_state = 13, .external_lex_state = 5}, - [2978] = {.lex_state = 151, .external_lex_state = 2}, - [2979] = {.lex_state = 13, .external_lex_state = 5}, - [2980] = {.lex_state = 13, .external_lex_state = 5}, - [2981] = {.lex_state = 13, .external_lex_state = 5}, - [2982] = {.lex_state = 13, .external_lex_state = 5}, - [2983] = {.lex_state = 151, .external_lex_state = 2}, - [2984] = {.lex_state = 13, .external_lex_state = 5}, - [2985] = {.lex_state = 13, .external_lex_state = 5}, - [2986] = {.lex_state = 13, .external_lex_state = 5}, - [2987] = {.lex_state = 13, .external_lex_state = 5}, - [2988] = {.lex_state = 151, .external_lex_state = 2}, - [2989] = {.lex_state = 13, .external_lex_state = 5}, - [2990] = {.lex_state = 13, .external_lex_state = 5}, - [2991] = {.lex_state = 151, .external_lex_state = 2}, - [2992] = {.lex_state = 13, .external_lex_state = 5}, - [2993] = {.lex_state = 151, .external_lex_state = 2}, - [2994] = {.lex_state = 13, .external_lex_state = 5}, - [2995] = {.lex_state = 151, .external_lex_state = 2}, - [2996] = {.lex_state = 16, .external_lex_state = 6}, - [2997] = {.lex_state = 1, .external_lex_state = 2}, - [2998] = {.lex_state = 1, .external_lex_state = 2}, - [2999] = {.lex_state = 151, .external_lex_state = 5}, - [3000] = {.lex_state = 151, .external_lex_state = 2}, - [3001] = {.lex_state = 151, .external_lex_state = 2}, - [3002] = {.lex_state = 16, .external_lex_state = 6}, - [3003] = {.lex_state = 15, .external_lex_state = 5}, - [3004] = {.lex_state = 14, .external_lex_state = 6}, - [3005] = {.lex_state = 15, .external_lex_state = 5}, - [3006] = {.lex_state = 151, .external_lex_state = 2}, - [3007] = {.lex_state = 15, .external_lex_state = 5}, - [3008] = {.lex_state = 16, .external_lex_state = 6}, - [3009] = {.lex_state = 13, .external_lex_state = 5}, - [3010] = {.lex_state = 16, .external_lex_state = 6}, - [3011] = {.lex_state = 16, .external_lex_state = 6}, - [3012] = {.lex_state = 15, .external_lex_state = 5}, - [3013] = {.lex_state = 16, .external_lex_state = 6}, - [3014] = {.lex_state = 151, .external_lex_state = 2}, - [3015] = {.lex_state = 151, .external_lex_state = 5}, - [3016] = {.lex_state = 26, .external_lex_state = 2}, - [3017] = {.lex_state = 151, .external_lex_state = 2}, - [3018] = {.lex_state = 15, .external_lex_state = 5}, - [3019] = {.lex_state = 151, .external_lex_state = 2}, - [3020] = {.lex_state = 15, .external_lex_state = 5}, - [3021] = {.lex_state = 15, .external_lex_state = 5}, - [3022] = {.lex_state = 16, .external_lex_state = 6}, - [3023] = {.lex_state = 15, .external_lex_state = 5}, - [3024] = {.lex_state = 16, .external_lex_state = 6}, - [3025] = {.lex_state = 16, .external_lex_state = 6}, - [3026] = {.lex_state = 1, .external_lex_state = 2}, - [3027] = {.lex_state = 16, .external_lex_state = 6}, - [3028] = {.lex_state = 13, .external_lex_state = 5}, - [3029] = {.lex_state = 13, .external_lex_state = 5}, - [3030] = {.lex_state = 16, .external_lex_state = 6}, - [3031] = {.lex_state = 14, .external_lex_state = 5}, - [3032] = {.lex_state = 151, .external_lex_state = 5}, - [3033] = {.lex_state = 16, .external_lex_state = 6}, - [3034] = {.lex_state = 151, .external_lex_state = 5}, - [3035] = {.lex_state = 151, .external_lex_state = 5}, - [3036] = {.lex_state = 14, .external_lex_state = 5}, - [3037] = {.lex_state = 1, .external_lex_state = 2}, - [3038] = {.lex_state = 13, .external_lex_state = 5}, - [3039] = {.lex_state = 13, .external_lex_state = 5}, - [3040] = {.lex_state = 16, .external_lex_state = 6}, - [3041] = {.lex_state = 16, .external_lex_state = 6}, - [3042] = {.lex_state = 151, .external_lex_state = 5}, - [3043] = {.lex_state = 151, .external_lex_state = 5}, - [3044] = {.lex_state = 151, .external_lex_state = 5}, - [3045] = {.lex_state = 26, .external_lex_state = 2}, - [3046] = {.lex_state = 151, .external_lex_state = 5}, - [3047] = {.lex_state = 14, .external_lex_state = 5}, - [3048] = {.lex_state = 16, .external_lex_state = 6}, - [3049] = {.lex_state = 13, .external_lex_state = 5}, - [3050] = {.lex_state = 151, .external_lex_state = 2}, - [3051] = {.lex_state = 1, .external_lex_state = 2}, - [3052] = {.lex_state = 151, .external_lex_state = 5}, - [3053] = {.lex_state = 16, .external_lex_state = 6}, - [3054] = {.lex_state = 151, .external_lex_state = 2}, - [3055] = {.lex_state = 16, .external_lex_state = 6}, - [3056] = {.lex_state = 16, .external_lex_state = 6}, - [3057] = {.lex_state = 13, .external_lex_state = 5}, - [3058] = {.lex_state = 16, .external_lex_state = 6}, - [3059] = {.lex_state = 151, .external_lex_state = 2}, - [3060] = {.lex_state = 16, .external_lex_state = 6}, - [3061] = {.lex_state = 16, .external_lex_state = 6}, - [3062] = {.lex_state = 1, .external_lex_state = 2}, - [3063] = {.lex_state = 13, .external_lex_state = 5}, - [3064] = {.lex_state = 16, .external_lex_state = 6}, - [3065] = {.lex_state = 16, .external_lex_state = 6}, - [3066] = {.lex_state = 16, .external_lex_state = 6}, - [3067] = {.lex_state = 16, .external_lex_state = 6}, - [3068] = {.lex_state = 151, .external_lex_state = 2}, - [3069] = {.lex_state = 16, .external_lex_state = 6}, - [3070] = {.lex_state = 1, .external_lex_state = 2}, - [3071] = {.lex_state = 16, .external_lex_state = 6}, - [3072] = {.lex_state = 16, .external_lex_state = 6}, - [3073] = {.lex_state = 16, .external_lex_state = 6}, - [3074] = {.lex_state = 13, .external_lex_state = 5}, - [3075] = {.lex_state = 1, .external_lex_state = 2}, - [3076] = {.lex_state = 16, .external_lex_state = 6}, - [3077] = {.lex_state = 16, .external_lex_state = 6}, - [3078] = {.lex_state = 16, .external_lex_state = 6}, - [3079] = {.lex_state = 16, .external_lex_state = 6}, - [3080] = {.lex_state = 16, .external_lex_state = 6}, - [3081] = {.lex_state = 13, .external_lex_state = 5}, - [3082] = {.lex_state = 13, .external_lex_state = 5}, - [3083] = {.lex_state = 13, .external_lex_state = 5}, - [3084] = {.lex_state = 151, .external_lex_state = 5}, - [3085] = {.lex_state = 13, .external_lex_state = 5}, - [3086] = {.lex_state = 151, .external_lex_state = 5}, - [3087] = {.lex_state = 151, .external_lex_state = 5}, - [3088] = {.lex_state = 151, .external_lex_state = 2}, - [3089] = {.lex_state = 13, .external_lex_state = 5}, - [3090] = {.lex_state = 13, .external_lex_state = 5}, - [3091] = {.lex_state = 13, .external_lex_state = 5}, - [3092] = {.lex_state = 13, .external_lex_state = 5}, - [3093] = {.lex_state = 13, .external_lex_state = 5}, - [3094] = {.lex_state = 13, .external_lex_state = 5}, - [3095] = {.lex_state = 13, .external_lex_state = 5}, - [3096] = {.lex_state = 151, .external_lex_state = 5}, - [3097] = {.lex_state = 151, .external_lex_state = 5}, - [3098] = {.lex_state = 13, .external_lex_state = 5}, - [3099] = {.lex_state = 26, .external_lex_state = 2}, - [3100] = {.lex_state = 26, .external_lex_state = 2}, - [3101] = {.lex_state = 151, .external_lex_state = 5}, - [3102] = {.lex_state = 13, .external_lex_state = 5}, - [3103] = {.lex_state = 13, .external_lex_state = 5}, - [3104] = {.lex_state = 13, .external_lex_state = 5}, - [3105] = {.lex_state = 13, .external_lex_state = 5}, - [3106] = {.lex_state = 13, .external_lex_state = 5}, - [3107] = {.lex_state = 13, .external_lex_state = 5}, - [3108] = {.lex_state = 26, .external_lex_state = 2}, + [2622] = {.lex_state = 13, .external_lex_state = 5}, + [2623] = {.lex_state = 13, .external_lex_state = 5}, + [2624] = {.lex_state = 13, .external_lex_state = 5}, + [2625] = {.lex_state = 13, .external_lex_state = 5}, + [2626] = {.lex_state = 13, .external_lex_state = 5}, + [2627] = {.lex_state = 8, .external_lex_state = 3}, + [2628] = {.lex_state = 13, .external_lex_state = 5}, + [2629] = {.lex_state = 13, .external_lex_state = 5}, + [2630] = {.lex_state = 13, .external_lex_state = 5}, + [2631] = {.lex_state = 13, .external_lex_state = 5}, + [2632] = {.lex_state = 13, .external_lex_state = 5}, + [2633] = {.lex_state = 13, .external_lex_state = 2}, + [2634] = {.lex_state = 13, .external_lex_state = 5}, + [2635] = {.lex_state = 13, .external_lex_state = 5}, + [2636] = {.lex_state = 13, .external_lex_state = 5}, + [2637] = {.lex_state = 13, .external_lex_state = 5}, + [2638] = {.lex_state = 13, .external_lex_state = 5}, + [2639] = {.lex_state = 13, .external_lex_state = 5}, + [2640] = {.lex_state = 13, .external_lex_state = 5}, + [2641] = {.lex_state = 13, .external_lex_state = 5}, + [2642] = {.lex_state = 13, .external_lex_state = 5}, + [2643] = {.lex_state = 13, .external_lex_state = 5}, + [2644] = {.lex_state = 13, .external_lex_state = 5}, + [2645] = {.lex_state = 13, .external_lex_state = 5}, + [2646] = {.lex_state = 13, .external_lex_state = 5}, + [2647] = {.lex_state = 13, .external_lex_state = 5}, + [2648] = {.lex_state = 13, .external_lex_state = 5}, + [2649] = {.lex_state = 13, .external_lex_state = 5}, + [2650] = {.lex_state = 13, .external_lex_state = 5}, + [2651] = {.lex_state = 13, .external_lex_state = 5}, + [2652] = {.lex_state = 13, .external_lex_state = 5}, + [2653] = {.lex_state = 13, .external_lex_state = 5}, + [2654] = {.lex_state = 13, .external_lex_state = 5}, + [2655] = {.lex_state = 13, .external_lex_state = 5}, + [2656] = {.lex_state = 13, .external_lex_state = 5}, + [2657] = {.lex_state = 13, .external_lex_state = 5}, + [2658] = {.lex_state = 13, .external_lex_state = 5}, + [2659] = {.lex_state = 13, .external_lex_state = 5}, + [2660] = {.lex_state = 13, .external_lex_state = 5}, + [2661] = {.lex_state = 13, .external_lex_state = 5}, + [2662] = {.lex_state = 13, .external_lex_state = 5}, + [2663] = {.lex_state = 13, .external_lex_state = 5}, + [2664] = {.lex_state = 13, .external_lex_state = 5}, + [2665] = {.lex_state = 13, .external_lex_state = 5}, + [2666] = {.lex_state = 13, .external_lex_state = 5}, + [2667] = {.lex_state = 13, .external_lex_state = 5}, + [2668] = {.lex_state = 13, .external_lex_state = 5}, + [2669] = {.lex_state = 13, .external_lex_state = 5}, + [2670] = {.lex_state = 13, .external_lex_state = 5}, + [2671] = {.lex_state = 13, .external_lex_state = 5}, + [2672] = {.lex_state = 13, .external_lex_state = 5}, + [2673] = {.lex_state = 13, .external_lex_state = 5}, + [2674] = {.lex_state = 13, .external_lex_state = 5}, + [2675] = {.lex_state = 13, .external_lex_state = 5}, + [2676] = {.lex_state = 13, .external_lex_state = 5}, + [2677] = {.lex_state = 13, .external_lex_state = 5}, + [2678] = {.lex_state = 13, .external_lex_state = 5}, + [2679] = {.lex_state = 13, .external_lex_state = 5}, + [2680] = {.lex_state = 13, .external_lex_state = 5}, + [2681] = {.lex_state = 13, .external_lex_state = 5}, + [2682] = {.lex_state = 13, .external_lex_state = 5}, + [2683] = {.lex_state = 13, .external_lex_state = 5}, + [2684] = {.lex_state = 13, .external_lex_state = 5}, + [2685] = {.lex_state = 13, .external_lex_state = 5}, + [2686] = {.lex_state = 13, .external_lex_state = 5}, + [2687] = {.lex_state = 13, .external_lex_state = 5}, + [2688] = {.lex_state = 13, .external_lex_state = 5}, + [2689] = {.lex_state = 13, .external_lex_state = 5}, + [2690] = {.lex_state = 13, .external_lex_state = 5}, + [2691] = {.lex_state = 13, .external_lex_state = 5}, + [2692] = {.lex_state = 13, .external_lex_state = 5}, + [2693] = {.lex_state = 13, .external_lex_state = 5}, + [2694] = {.lex_state = 13, .external_lex_state = 5}, + [2695] = {.lex_state = 13, .external_lex_state = 5}, + [2696] = {.lex_state = 13, .external_lex_state = 5}, + [2697] = {.lex_state = 13, .external_lex_state = 5}, + [2698] = {.lex_state = 13, .external_lex_state = 5}, + [2699] = {.lex_state = 13, .external_lex_state = 5}, + [2700] = {.lex_state = 13, .external_lex_state = 5}, + [2701] = {.lex_state = 13, .external_lex_state = 5}, + [2702] = {.lex_state = 13, .external_lex_state = 5}, + [2703] = {.lex_state = 13, .external_lex_state = 5}, + [2704] = {.lex_state = 13, .external_lex_state = 5}, + [2705] = {.lex_state = 13, .external_lex_state = 5}, + [2706] = {.lex_state = 13, .external_lex_state = 5}, + [2707] = {.lex_state = 13, .external_lex_state = 5}, + [2708] = {.lex_state = 13, .external_lex_state = 5}, + [2709] = {.lex_state = 13, .external_lex_state = 5}, + [2710] = {.lex_state = 13, .external_lex_state = 5}, + [2711] = {.lex_state = 13, .external_lex_state = 5}, + [2712] = {.lex_state = 13, .external_lex_state = 5}, + [2713] = {.lex_state = 13, .external_lex_state = 5}, + [2714] = {.lex_state = 13, .external_lex_state = 5}, + [2715] = {.lex_state = 13, .external_lex_state = 5}, + [2716] = {.lex_state = 13, .external_lex_state = 5}, + [2717] = {.lex_state = 13, .external_lex_state = 5}, + [2718] = {.lex_state = 8, .external_lex_state = 3}, + [2719] = {.lex_state = 13, .external_lex_state = 5}, + [2720] = {.lex_state = 13, .external_lex_state = 5}, + [2721] = {.lex_state = 13, .external_lex_state = 5}, + [2722] = {.lex_state = 13, .external_lex_state = 5}, + [2723] = {.lex_state = 13, .external_lex_state = 5}, + [2724] = {.lex_state = 13, .external_lex_state = 5}, + [2725] = {.lex_state = 13, .external_lex_state = 5}, + [2726] = {.lex_state = 13, .external_lex_state = 5}, + [2727] = {.lex_state = 13, .external_lex_state = 5}, + [2728] = {.lex_state = 13, .external_lex_state = 5}, + [2729] = {.lex_state = 13, .external_lex_state = 5}, + [2730] = {.lex_state = 13, .external_lex_state = 5}, + [2731] = {.lex_state = 13, .external_lex_state = 5}, + [2732] = {.lex_state = 13, .external_lex_state = 5}, + [2733] = {.lex_state = 13, .external_lex_state = 5}, + [2734] = {.lex_state = 13, .external_lex_state = 5}, + [2735] = {.lex_state = 13, .external_lex_state = 5}, + [2736] = {.lex_state = 13, .external_lex_state = 5}, + [2737] = {.lex_state = 13, .external_lex_state = 5}, + [2738] = {.lex_state = 13, .external_lex_state = 5}, + [2739] = {.lex_state = 13, .external_lex_state = 5}, + [2740] = {.lex_state = 13, .external_lex_state = 5}, + [2741] = {.lex_state = 13, .external_lex_state = 5}, + [2742] = {.lex_state = 13, .external_lex_state = 5}, + [2743] = {.lex_state = 13, .external_lex_state = 5}, + [2744] = {.lex_state = 13, .external_lex_state = 5}, + [2745] = {.lex_state = 13, .external_lex_state = 5}, + [2746] = {.lex_state = 13, .external_lex_state = 5}, + [2747] = {.lex_state = 13, .external_lex_state = 5}, + [2748] = {.lex_state = 13, .external_lex_state = 5}, + [2749] = {.lex_state = 13, .external_lex_state = 5}, + [2750] = {.lex_state = 13, .external_lex_state = 5}, + [2751] = {.lex_state = 13, .external_lex_state = 5}, + [2752] = {.lex_state = 13, .external_lex_state = 5}, + [2753] = {.lex_state = 13, .external_lex_state = 5}, + [2754] = {.lex_state = 13, .external_lex_state = 5}, + [2755] = {.lex_state = 13, .external_lex_state = 5}, + [2756] = {.lex_state = 13, .external_lex_state = 5}, + [2757] = {.lex_state = 13, .external_lex_state = 5}, + [2758] = {.lex_state = 13, .external_lex_state = 5}, + [2759] = {.lex_state = 13, .external_lex_state = 5}, + [2760] = {.lex_state = 13, .external_lex_state = 5}, + [2761] = {.lex_state = 13, .external_lex_state = 5}, + [2762] = {.lex_state = 13, .external_lex_state = 5}, + [2763] = {.lex_state = 13, .external_lex_state = 5}, + [2764] = {.lex_state = 13, .external_lex_state = 5}, + [2765] = {.lex_state = 13, .external_lex_state = 5}, + [2766] = {.lex_state = 13, .external_lex_state = 5}, + [2767] = {.lex_state = 13, .external_lex_state = 5}, + [2768] = {.lex_state = 13, .external_lex_state = 5}, + [2769] = {.lex_state = 13, .external_lex_state = 5}, + [2770] = {.lex_state = 13, .external_lex_state = 5}, + [2771] = {.lex_state = 13, .external_lex_state = 5}, + [2772] = {.lex_state = 13, .external_lex_state = 5}, + [2773] = {.lex_state = 13, .external_lex_state = 5}, + [2774] = {.lex_state = 13, .external_lex_state = 5}, + [2775] = {.lex_state = 13, .external_lex_state = 5}, + [2776] = {.lex_state = 13, .external_lex_state = 5}, + [2777] = {.lex_state = 13, .external_lex_state = 5}, + [2778] = {.lex_state = 13, .external_lex_state = 5}, + [2779] = {.lex_state = 13, .external_lex_state = 5}, + [2780] = {.lex_state = 13, .external_lex_state = 5}, + [2781] = {.lex_state = 13, .external_lex_state = 5}, + [2782] = {.lex_state = 13, .external_lex_state = 5}, + [2783] = {.lex_state = 13, .external_lex_state = 5}, + [2784] = {.lex_state = 13, .external_lex_state = 5}, + [2785] = {.lex_state = 13, .external_lex_state = 5}, + [2786] = {.lex_state = 13, .external_lex_state = 5}, + [2787] = {.lex_state = 13, .external_lex_state = 5}, + [2788] = {.lex_state = 13, .external_lex_state = 5}, + [2789] = {.lex_state = 13, .external_lex_state = 5}, + [2790] = {.lex_state = 13, .external_lex_state = 5}, + [2791] = {.lex_state = 13, .external_lex_state = 5}, + [2792] = {.lex_state = 13, .external_lex_state = 5}, + [2793] = {.lex_state = 13, .external_lex_state = 5}, + [2794] = {.lex_state = 13, .external_lex_state = 5}, + [2795] = {.lex_state = 13, .external_lex_state = 5}, + [2796] = {.lex_state = 13, .external_lex_state = 5}, + [2797] = {.lex_state = 13, .external_lex_state = 5}, + [2798] = {.lex_state = 13, .external_lex_state = 5}, + [2799] = {.lex_state = 13, .external_lex_state = 5}, + [2800] = {.lex_state = 13, .external_lex_state = 5}, + [2801] = {.lex_state = 13, .external_lex_state = 5}, + [2802] = {.lex_state = 13, .external_lex_state = 5}, + [2803] = {.lex_state = 13, .external_lex_state = 5}, + [2804] = {.lex_state = 13, .external_lex_state = 5}, + [2805] = {.lex_state = 13, .external_lex_state = 5}, + [2806] = {.lex_state = 13, .external_lex_state = 5}, + [2807] = {.lex_state = 13, .external_lex_state = 5}, + [2808] = {.lex_state = 13, .external_lex_state = 5}, + [2809] = {.lex_state = 13, .external_lex_state = 5}, + [2810] = {.lex_state = 13, .external_lex_state = 5}, + [2811] = {.lex_state = 13, .external_lex_state = 5}, + [2812] = {.lex_state = 13, .external_lex_state = 5}, + [2813] = {.lex_state = 13, .external_lex_state = 5}, + [2814] = {.lex_state = 13, .external_lex_state = 5}, + [2815] = {.lex_state = 8, .external_lex_state = 3}, + [2816] = {.lex_state = 13, .external_lex_state = 5}, + [2817] = {.lex_state = 13, .external_lex_state = 5}, + [2818] = {.lex_state = 13, .external_lex_state = 5}, + [2819] = {.lex_state = 13, .external_lex_state = 5}, + [2820] = {.lex_state = 13, .external_lex_state = 5}, + [2821] = {.lex_state = 13, .external_lex_state = 5}, + [2822] = {.lex_state = 13, .external_lex_state = 5}, + [2823] = {.lex_state = 13, .external_lex_state = 5}, + [2824] = {.lex_state = 13, .external_lex_state = 5}, + [2825] = {.lex_state = 13, .external_lex_state = 5}, + [2826] = {.lex_state = 13, .external_lex_state = 5}, + [2827] = {.lex_state = 13, .external_lex_state = 5}, + [2828] = {.lex_state = 13, .external_lex_state = 5}, + [2829] = {.lex_state = 13, .external_lex_state = 5}, + [2830] = {.lex_state = 13, .external_lex_state = 5}, + [2831] = {.lex_state = 13, .external_lex_state = 5}, + [2832] = {.lex_state = 13, .external_lex_state = 5}, + [2833] = {.lex_state = 13, .external_lex_state = 5}, + [2834] = {.lex_state = 13, .external_lex_state = 5}, + [2835] = {.lex_state = 13, .external_lex_state = 5}, + [2836] = {.lex_state = 13, .external_lex_state = 5}, + [2837] = {.lex_state = 13, .external_lex_state = 5}, + [2838] = {.lex_state = 13, .external_lex_state = 5}, + [2839] = {.lex_state = 13, .external_lex_state = 5}, + [2840] = {.lex_state = 13, .external_lex_state = 5}, + [2841] = {.lex_state = 13, .external_lex_state = 5}, + [2842] = {.lex_state = 13, .external_lex_state = 5}, + [2843] = {.lex_state = 13, .external_lex_state = 5}, + [2844] = {.lex_state = 13, .external_lex_state = 5}, + [2845] = {.lex_state = 13, .external_lex_state = 5}, + [2846] = {.lex_state = 13, .external_lex_state = 5}, + [2847] = {.lex_state = 13, .external_lex_state = 5}, + [2848] = {.lex_state = 13, .external_lex_state = 5}, + [2849] = {.lex_state = 13, .external_lex_state = 5}, + [2850] = {.lex_state = 13, .external_lex_state = 5}, + [2851] = {.lex_state = 13, .external_lex_state = 5}, + [2852] = {.lex_state = 13, .external_lex_state = 5}, + [2853] = {.lex_state = 13, .external_lex_state = 5}, + [2854] = {.lex_state = 13, .external_lex_state = 5}, + [2855] = {.lex_state = 13, .external_lex_state = 5}, + [2856] = {.lex_state = 13, .external_lex_state = 5}, + [2857] = {.lex_state = 13, .external_lex_state = 5}, + [2858] = {.lex_state = 13, .external_lex_state = 5}, + [2859] = {.lex_state = 13, .external_lex_state = 5}, + [2860] = {.lex_state = 13, .external_lex_state = 5}, + [2861] = {.lex_state = 13, .external_lex_state = 5}, + [2862] = {.lex_state = 13, .external_lex_state = 5}, + [2863] = {.lex_state = 13, .external_lex_state = 5}, + [2864] = {.lex_state = 13, .external_lex_state = 5}, + [2865] = {.lex_state = 13, .external_lex_state = 5}, + [2866] = {.lex_state = 13, .external_lex_state = 5}, + [2867] = {.lex_state = 13, .external_lex_state = 5}, + [2868] = {.lex_state = 13, .external_lex_state = 5}, + [2869] = {.lex_state = 13, .external_lex_state = 5}, + [2870] = {.lex_state = 13, .external_lex_state = 5}, + [2871] = {.lex_state = 13, .external_lex_state = 5}, + [2872] = {.lex_state = 13, .external_lex_state = 5}, + [2873] = {.lex_state = 13, .external_lex_state = 5}, + [2874] = {.lex_state = 13, .external_lex_state = 5}, + [2875] = {.lex_state = 13, .external_lex_state = 5}, + [2876] = {.lex_state = 13, .external_lex_state = 5}, + [2877] = {.lex_state = 13, .external_lex_state = 5}, + [2878] = {.lex_state = 13, .external_lex_state = 5}, + [2879] = {.lex_state = 13, .external_lex_state = 5}, + [2880] = {.lex_state = 13, .external_lex_state = 5}, + [2881] = {.lex_state = 13, .external_lex_state = 5}, + [2882] = {.lex_state = 13, .external_lex_state = 5}, + [2883] = {.lex_state = 13, .external_lex_state = 5}, + [2884] = {.lex_state = 13, .external_lex_state = 5}, + [2885] = {.lex_state = 13, .external_lex_state = 5}, + [2886] = {.lex_state = 13, .external_lex_state = 5}, + [2887] = {.lex_state = 13, .external_lex_state = 5}, + [2888] = {.lex_state = 13, .external_lex_state = 5}, + [2889] = {.lex_state = 13, .external_lex_state = 5}, + [2890] = {.lex_state = 13, .external_lex_state = 5}, + [2891] = {.lex_state = 13, .external_lex_state = 5}, + [2892] = {.lex_state = 13, .external_lex_state = 5}, + [2893] = {.lex_state = 13, .external_lex_state = 2}, + [2894] = {.lex_state = 13, .external_lex_state = 2}, + [2895] = {.lex_state = 13, .external_lex_state = 2}, + [2896] = {.lex_state = 13, .external_lex_state = 2}, + [2897] = {.lex_state = 13, .external_lex_state = 2}, + [2898] = {.lex_state = 13, .external_lex_state = 2}, + [2899] = {.lex_state = 13, .external_lex_state = 2}, + [2900] = {.lex_state = 13, .external_lex_state = 2}, + [2901] = {.lex_state = 13, .external_lex_state = 2}, + [2902] = {.lex_state = 13, .external_lex_state = 2}, + [2903] = {.lex_state = 13, .external_lex_state = 2}, + [2904] = {.lex_state = 13, .external_lex_state = 2}, + [2905] = {.lex_state = 13, .external_lex_state = 2}, + [2906] = {.lex_state = 13, .external_lex_state = 2}, + [2907] = {.lex_state = 13, .external_lex_state = 2}, + [2908] = {.lex_state = 13, .external_lex_state = 2}, + [2909] = {.lex_state = 13, .external_lex_state = 2}, + [2910] = {.lex_state = 13, .external_lex_state = 2}, + [2911] = {.lex_state = 13, .external_lex_state = 2}, + [2912] = {.lex_state = 13, .external_lex_state = 2}, + [2913] = {.lex_state = 13, .external_lex_state = 2}, + [2914] = {.lex_state = 13, .external_lex_state = 2}, + [2915] = {.lex_state = 13, .external_lex_state = 2}, + [2916] = {.lex_state = 13, .external_lex_state = 2}, + [2917] = {.lex_state = 150, .external_lex_state = 2}, + [2918] = {.lex_state = 13, .external_lex_state = 2}, + [2919] = {.lex_state = 150, .external_lex_state = 2}, + [2920] = {.lex_state = 13, .external_lex_state = 2}, + [2921] = {.lex_state = 13, .external_lex_state = 2}, + [2922] = {.lex_state = 13, .external_lex_state = 2}, + [2923] = {.lex_state = 13, .external_lex_state = 2}, + [2924] = {.lex_state = 13, .external_lex_state = 2}, + [2925] = {.lex_state = 13, .external_lex_state = 2}, + [2926] = {.lex_state = 13, .external_lex_state = 2}, + [2927] = {.lex_state = 13, .external_lex_state = 2}, + [2928] = {.lex_state = 13, .external_lex_state = 2}, + [2929] = {.lex_state = 13, .external_lex_state = 2}, + [2930] = {.lex_state = 13, .external_lex_state = 2}, + [2931] = {.lex_state = 13, .external_lex_state = 2}, + [2932] = {.lex_state = 13, .external_lex_state = 2}, + [2933] = {.lex_state = 13, .external_lex_state = 2}, + [2934] = {.lex_state = 13, .external_lex_state = 2}, + [2935] = {.lex_state = 13, .external_lex_state = 2}, + [2936] = {.lex_state = 13, .external_lex_state = 2}, + [2937] = {.lex_state = 13, .external_lex_state = 2}, + [2938] = {.lex_state = 13, .external_lex_state = 2}, + [2939] = {.lex_state = 150, .external_lex_state = 2}, + [2940] = {.lex_state = 13, .external_lex_state = 2}, + [2941] = {.lex_state = 13, .external_lex_state = 2}, + [2942] = {.lex_state = 13, .external_lex_state = 2}, + [2943] = {.lex_state = 13, .external_lex_state = 2}, + [2944] = {.lex_state = 13, .external_lex_state = 2}, + [2945] = {.lex_state = 13, .external_lex_state = 2}, + [2946] = {.lex_state = 13, .external_lex_state = 2}, + [2947] = {.lex_state = 13, .external_lex_state = 2}, + [2948] = {.lex_state = 13, .external_lex_state = 2}, + [2949] = {.lex_state = 13, .external_lex_state = 2}, + [2950] = {.lex_state = 150, .external_lex_state = 2}, + [2951] = {.lex_state = 13, .external_lex_state = 2}, + [2952] = {.lex_state = 13, .external_lex_state = 2}, + [2953] = {.lex_state = 13, .external_lex_state = 2}, + [2954] = {.lex_state = 13, .external_lex_state = 2}, + [2955] = {.lex_state = 13, .external_lex_state = 2}, + [2956] = {.lex_state = 13, .external_lex_state = 2}, + [2957] = {.lex_state = 13, .external_lex_state = 2}, + [2958] = {.lex_state = 13, .external_lex_state = 2}, + [2959] = {.lex_state = 13, .external_lex_state = 2}, + [2960] = {.lex_state = 13, .external_lex_state = 2}, + [2961] = {.lex_state = 13, .external_lex_state = 2}, + [2962] = {.lex_state = 13, .external_lex_state = 2}, + [2963] = {.lex_state = 13, .external_lex_state = 2}, + [2964] = {.lex_state = 13, .external_lex_state = 2}, + [2965] = {.lex_state = 13, .external_lex_state = 2}, + [2966] = {.lex_state = 13, .external_lex_state = 2}, + [2967] = {.lex_state = 13, .external_lex_state = 2}, + [2968] = {.lex_state = 13, .external_lex_state = 2}, + [2969] = {.lex_state = 13, .external_lex_state = 2}, + [2970] = {.lex_state = 13, .external_lex_state = 2}, + [2971] = {.lex_state = 13, .external_lex_state = 2}, + [2972] = {.lex_state = 13, .external_lex_state = 2}, + [2973] = {.lex_state = 13, .external_lex_state = 2}, + [2974] = {.lex_state = 13, .external_lex_state = 2}, + [2975] = {.lex_state = 13, .external_lex_state = 2}, + [2976] = {.lex_state = 13, .external_lex_state = 2}, + [2977] = {.lex_state = 150, .external_lex_state = 2}, + [2978] = {.lex_state = 13, .external_lex_state = 2}, + [2979] = {.lex_state = 13, .external_lex_state = 2}, + [2980] = {.lex_state = 13, .external_lex_state = 2}, + [2981] = {.lex_state = 13, .external_lex_state = 2}, + [2982] = {.lex_state = 13, .external_lex_state = 2}, + [2983] = {.lex_state = 13, .external_lex_state = 2}, + [2984] = {.lex_state = 13, .external_lex_state = 2}, + [2985] = {.lex_state = 13, .external_lex_state = 2}, + [2986] = {.lex_state = 13, .external_lex_state = 2}, + [2987] = {.lex_state = 13, .external_lex_state = 2}, + [2988] = {.lex_state = 13, .external_lex_state = 2}, + [2989] = {.lex_state = 13, .external_lex_state = 2}, + [2990] = {.lex_state = 13, .external_lex_state = 2}, + [2991] = {.lex_state = 13, .external_lex_state = 2}, + [2992] = {.lex_state = 13, .external_lex_state = 2}, + [2993] = {.lex_state = 13, .external_lex_state = 2}, + [2994] = {.lex_state = 13, .external_lex_state = 2}, + [2995] = {.lex_state = 13, .external_lex_state = 2}, + [2996] = {.lex_state = 13, .external_lex_state = 2}, + [2997] = {.lex_state = 13, .external_lex_state = 2}, + [2998] = {.lex_state = 13, .external_lex_state = 2}, + [2999] = {.lex_state = 13, .external_lex_state = 2}, + [3000] = {.lex_state = 13, .external_lex_state = 2}, + [3001] = {.lex_state = 13, .external_lex_state = 2}, + [3002] = {.lex_state = 13, .external_lex_state = 2}, + [3003] = {.lex_state = 13, .external_lex_state = 2}, + [3004] = {.lex_state = 13, .external_lex_state = 2}, + [3005] = {.lex_state = 13, .external_lex_state = 2}, + [3006] = {.lex_state = 13, .external_lex_state = 2}, + [3007] = {.lex_state = 13, .external_lex_state = 2}, + [3008] = {.lex_state = 13, .external_lex_state = 2}, + [3009] = {.lex_state = 13, .external_lex_state = 2}, + [3010] = {.lex_state = 150, .external_lex_state = 2}, + [3011] = {.lex_state = 13, .external_lex_state = 2}, + [3012] = {.lex_state = 13, .external_lex_state = 2}, + [3013] = {.lex_state = 13, .external_lex_state = 2}, + [3014] = {.lex_state = 13, .external_lex_state = 2}, + [3015] = {.lex_state = 13, .external_lex_state = 2}, + [3016] = {.lex_state = 13, .external_lex_state = 2}, + [3017] = {.lex_state = 13, .external_lex_state = 2}, + [3018] = {.lex_state = 13, .external_lex_state = 2}, + [3019] = {.lex_state = 150, .external_lex_state = 2}, + [3020] = {.lex_state = 13, .external_lex_state = 2}, + [3021] = {.lex_state = 13, .external_lex_state = 2}, + [3022] = {.lex_state = 13, .external_lex_state = 2}, + [3023] = {.lex_state = 13, .external_lex_state = 2}, + [3024] = {.lex_state = 13, .external_lex_state = 2}, + [3025] = {.lex_state = 13, .external_lex_state = 2}, + [3026] = {.lex_state = 13, .external_lex_state = 2}, + [3027] = {.lex_state = 13, .external_lex_state = 2}, + [3028] = {.lex_state = 13, .external_lex_state = 2}, + [3029] = {.lex_state = 13, .external_lex_state = 2}, + [3030] = {.lex_state = 13, .external_lex_state = 2}, + [3031] = {.lex_state = 13, .external_lex_state = 2}, + [3032] = {.lex_state = 13, .external_lex_state = 2}, + [3033] = {.lex_state = 13, .external_lex_state = 2}, + [3034] = {.lex_state = 13, .external_lex_state = 2}, + [3035] = {.lex_state = 13, .external_lex_state = 2}, + [3036] = {.lex_state = 13, .external_lex_state = 2}, + [3037] = {.lex_state = 13, .external_lex_state = 2}, + [3038] = {.lex_state = 13, .external_lex_state = 2}, + [3039] = {.lex_state = 13, .external_lex_state = 2}, + [3040] = {.lex_state = 13, .external_lex_state = 2}, + [3041] = {.lex_state = 13, .external_lex_state = 2}, + [3042] = {.lex_state = 13, .external_lex_state = 2}, + [3043] = {.lex_state = 13, .external_lex_state = 2}, + [3044] = {.lex_state = 13, .external_lex_state = 2}, + [3045] = {.lex_state = 13, .external_lex_state = 2}, + [3046] = {.lex_state = 13, .external_lex_state = 2}, + [3047] = {.lex_state = 13, .external_lex_state = 2}, + [3048] = {.lex_state = 13, .external_lex_state = 2}, + [3049] = {.lex_state = 13, .external_lex_state = 2}, + [3050] = {.lex_state = 13, .external_lex_state = 2}, + [3051] = {.lex_state = 13, .external_lex_state = 2}, + [3052] = {.lex_state = 13, .external_lex_state = 2}, + [3053] = {.lex_state = 13, .external_lex_state = 2}, + [3054] = {.lex_state = 13, .external_lex_state = 2}, + [3055] = {.lex_state = 13, .external_lex_state = 2}, + [3056] = {.lex_state = 13, .external_lex_state = 2}, + [3057] = {.lex_state = 13, .external_lex_state = 2}, + [3058] = {.lex_state = 13, .external_lex_state = 2}, + [3059] = {.lex_state = 13, .external_lex_state = 2}, + [3060] = {.lex_state = 13, .external_lex_state = 2}, + [3061] = {.lex_state = 13, .external_lex_state = 2}, + [3062] = {.lex_state = 13, .external_lex_state = 2}, + [3063] = {.lex_state = 13, .external_lex_state = 2}, + [3064] = {.lex_state = 13, .external_lex_state = 2}, + [3065] = {.lex_state = 13, .external_lex_state = 2}, + [3066] = {.lex_state = 150, .external_lex_state = 2}, + [3067] = {.lex_state = 150, .external_lex_state = 2}, + [3068] = {.lex_state = 150, .external_lex_state = 2}, + [3069] = {.lex_state = 150, .external_lex_state = 2}, + [3070] = {.lex_state = 150, .external_lex_state = 2}, + [3071] = {.lex_state = 150, .external_lex_state = 2}, + [3072] = {.lex_state = 150, .external_lex_state = 2}, + [3073] = {.lex_state = 150, .external_lex_state = 2}, + [3074] = {.lex_state = 150, .external_lex_state = 2}, + [3075] = {.lex_state = 150, .external_lex_state = 2}, + [3076] = {.lex_state = 150, .external_lex_state = 2}, + [3077] = {.lex_state = 150, .external_lex_state = 2}, + [3078] = {.lex_state = 150, .external_lex_state = 2}, + [3079] = {.lex_state = 150, .external_lex_state = 2}, + [3080] = {.lex_state = 150, .external_lex_state = 2}, + [3081] = {.lex_state = 150, .external_lex_state = 2}, + [3082] = {.lex_state = 150, .external_lex_state = 2}, + [3083] = {.lex_state = 150, .external_lex_state = 2}, + [3084] = {.lex_state = 150, .external_lex_state = 2}, + [3085] = {.lex_state = 150, .external_lex_state = 2}, + [3086] = {.lex_state = 150, .external_lex_state = 2}, + [3087] = {.lex_state = 150, .external_lex_state = 2}, + [3088] = {.lex_state = 150, .external_lex_state = 2}, + [3089] = {.lex_state = 150, .external_lex_state = 2}, + [3090] = {.lex_state = 150, .external_lex_state = 2}, + [3091] = {.lex_state = 150, .external_lex_state = 2}, + [3092] = {.lex_state = 150, .external_lex_state = 2}, + [3093] = {.lex_state = 150, .external_lex_state = 2}, + [3094] = {.lex_state = 150, .external_lex_state = 2}, + [3095] = {.lex_state = 150, .external_lex_state = 2}, + [3096] = {.lex_state = 13, .external_lex_state = 2}, + [3097] = {.lex_state = 150, .external_lex_state = 2}, + [3098] = {.lex_state = 150, .external_lex_state = 2}, + [3099] = {.lex_state = 150, .external_lex_state = 2}, + [3100] = {.lex_state = 150, .external_lex_state = 2}, + [3101] = {.lex_state = 150, .external_lex_state = 2}, + [3102] = {.lex_state = 150, .external_lex_state = 2}, + [3103] = {.lex_state = 150, .external_lex_state = 2}, + [3104] = {.lex_state = 150, .external_lex_state = 2}, + [3105] = {.lex_state = 150, .external_lex_state = 2}, + [3106] = {.lex_state = 150, .external_lex_state = 2}, + [3107] = {.lex_state = 150, .external_lex_state = 2}, + [3108] = {.lex_state = 150, .external_lex_state = 2}, [3109] = {.lex_state = 13, .external_lex_state = 2}, - [3110] = {.lex_state = 13, .external_lex_state = 5}, - [3111] = {.lex_state = 13, .external_lex_state = 5}, - [3112] = {.lex_state = 151, .external_lex_state = 5}, - [3113] = {.lex_state = 151, .external_lex_state = 5}, - [3114] = {.lex_state = 13, .external_lex_state = 5}, - [3115] = {.lex_state = 13, .external_lex_state = 5}, - [3116] = {.lex_state = 13, .external_lex_state = 5}, - [3117] = {.lex_state = 13, .external_lex_state = 5}, - [3118] = {.lex_state = 13, .external_lex_state = 5}, - [3119] = {.lex_state = 13, .external_lex_state = 5}, - [3120] = {.lex_state = 13, .external_lex_state = 5}, - [3121] = {.lex_state = 13, .external_lex_state = 5}, - [3122] = {.lex_state = 13, .external_lex_state = 2}, - [3123] = {.lex_state = 13, .external_lex_state = 5}, - [3124] = {.lex_state = 13, .external_lex_state = 5}, - [3125] = {.lex_state = 13, .external_lex_state = 5}, - [3126] = {.lex_state = 16, .external_lex_state = 2}, - [3127] = {.lex_state = 16, .external_lex_state = 2}, - [3128] = {.lex_state = 13, .external_lex_state = 5}, - [3129] = {.lex_state = 13, .external_lex_state = 5}, - [3130] = {.lex_state = 13, .external_lex_state = 5}, - [3131] = {.lex_state = 16, .external_lex_state = 2}, - [3132] = {.lex_state = 13, .external_lex_state = 5}, - [3133] = {.lex_state = 13, .external_lex_state = 5}, - [3134] = {.lex_state = 1, .external_lex_state = 2}, - [3135] = {.lex_state = 13, .external_lex_state = 5}, - [3136] = {.lex_state = 13, .external_lex_state = 5}, - [3137] = {.lex_state = 26, .external_lex_state = 2}, - [3138] = {.lex_state = 151, .external_lex_state = 6}, - [3139] = {.lex_state = 13, .external_lex_state = 5}, - [3140] = {.lex_state = 13, .external_lex_state = 5}, - [3141] = {.lex_state = 14, .external_lex_state = 6}, - [3142] = {.lex_state = 13, .external_lex_state = 2}, - [3143] = {.lex_state = 151, .external_lex_state = 5}, - [3144] = {.lex_state = 151, .external_lex_state = 6}, - [3145] = {.lex_state = 14, .external_lex_state = 6}, - [3146] = {.lex_state = 151, .external_lex_state = 5}, - [3147] = {.lex_state = 151, .external_lex_state = 6}, - [3148] = {.lex_state = 151, .external_lex_state = 6}, - [3149] = {.lex_state = 151, .external_lex_state = 5}, - [3150] = {.lex_state = 151, .external_lex_state = 5}, - [3151] = {.lex_state = 151, .external_lex_state = 6}, - [3152] = {.lex_state = 151, .external_lex_state = 5}, - [3153] = {.lex_state = 15, .external_lex_state = 6}, - [3154] = {.lex_state = 151, .external_lex_state = 5}, - [3155] = {.lex_state = 151, .external_lex_state = 5}, - [3156] = {.lex_state = 15, .external_lex_state = 6}, - [3157] = {.lex_state = 14, .external_lex_state = 6}, - [3158] = {.lex_state = 151, .external_lex_state = 5}, - [3159] = {.lex_state = 151, .external_lex_state = 5}, - [3160] = {.lex_state = 151, .external_lex_state = 5}, - [3161] = {.lex_state = 151, .external_lex_state = 5}, - [3162] = {.lex_state = 13, .external_lex_state = 5}, - [3163] = {.lex_state = 151, .external_lex_state = 5}, - [3164] = {.lex_state = 151, .external_lex_state = 5}, - [3165] = {.lex_state = 151, .external_lex_state = 5}, - [3166] = {.lex_state = 151, .external_lex_state = 5}, - [3167] = {.lex_state = 151, .external_lex_state = 2}, - [3168] = {.lex_state = 151, .external_lex_state = 5}, - [3169] = {.lex_state = 151, .external_lex_state = 5}, - [3170] = {.lex_state = 151, .external_lex_state = 5}, - [3171] = {.lex_state = 151, .external_lex_state = 5}, - [3172] = {.lex_state = 151, .external_lex_state = 5}, - [3173] = {.lex_state = 151, .external_lex_state = 5}, - [3174] = {.lex_state = 151, .external_lex_state = 5}, - [3175] = {.lex_state = 151, .external_lex_state = 5}, - [3176] = {.lex_state = 151, .external_lex_state = 5}, - [3177] = {.lex_state = 151, .external_lex_state = 5}, - [3178] = {.lex_state = 151, .external_lex_state = 6}, - [3179] = {.lex_state = 151, .external_lex_state = 6}, - [3180] = {.lex_state = 151, .external_lex_state = 5}, - [3181] = {.lex_state = 13, .external_lex_state = 5}, - [3182] = {.lex_state = 15, .external_lex_state = 6}, - [3183] = {.lex_state = 13, .external_lex_state = 5}, - [3184] = {.lex_state = 13, .external_lex_state = 2}, - [3185] = {.lex_state = 15, .external_lex_state = 6}, - [3186] = {.lex_state = 151, .external_lex_state = 5}, - [3187] = {.lex_state = 151, .external_lex_state = 5}, - [3188] = {.lex_state = 151, .external_lex_state = 5}, - [3189] = {.lex_state = 151, .external_lex_state = 5}, - [3190] = {.lex_state = 151, .external_lex_state = 5}, - [3191] = {.lex_state = 151, .external_lex_state = 5}, - [3192] = {.lex_state = 151, .external_lex_state = 5}, - [3193] = {.lex_state = 151, .external_lex_state = 5}, - [3194] = {.lex_state = 151, .external_lex_state = 5}, - [3195] = {.lex_state = 151, .external_lex_state = 5}, - [3196] = {.lex_state = 151, .external_lex_state = 5}, - [3197] = {.lex_state = 151, .external_lex_state = 5}, - [3198] = {.lex_state = 14, .external_lex_state = 6}, - [3199] = {.lex_state = 15, .external_lex_state = 6}, - [3200] = {.lex_state = 15, .external_lex_state = 6}, - [3201] = {.lex_state = 151, .external_lex_state = 5}, - [3202] = {.lex_state = 15, .external_lex_state = 6}, - [3203] = {.lex_state = 151, .external_lex_state = 5}, - [3204] = {.lex_state = 151, .external_lex_state = 5}, - [3205] = {.lex_state = 151, .external_lex_state = 5}, - [3206] = {.lex_state = 151, .external_lex_state = 5}, - [3207] = {.lex_state = 151, .external_lex_state = 5}, - [3208] = {.lex_state = 151, .external_lex_state = 5}, - [3209] = {.lex_state = 15, .external_lex_state = 6}, - [3210] = {.lex_state = 151, .external_lex_state = 5}, - [3211] = {.lex_state = 151, .external_lex_state = 5}, - [3212] = {.lex_state = 151, .external_lex_state = 5}, - [3213] = {.lex_state = 151, .external_lex_state = 5}, - [3214] = {.lex_state = 151, .external_lex_state = 5}, - [3215] = {.lex_state = 26, .external_lex_state = 2}, - [3216] = {.lex_state = 26, .external_lex_state = 2}, - [3217] = {.lex_state = 26, .external_lex_state = 2}, - [3218] = {.lex_state = 151, .external_lex_state = 2}, - [3219] = {.lex_state = 14, .external_lex_state = 2}, - [3220] = {.lex_state = 14, .external_lex_state = 2}, - [3221] = {.lex_state = 151, .external_lex_state = 6}, - [3222] = {.lex_state = 14, .external_lex_state = 2}, - [3223] = {.lex_state = 151, .external_lex_state = 6}, - [3224] = {.lex_state = 14, .external_lex_state = 2}, - [3225] = {.lex_state = 151, .external_lex_state = 6}, - [3226] = {.lex_state = 151, .external_lex_state = 5}, - [3227] = {.lex_state = 151, .external_lex_state = 6}, - [3228] = {.lex_state = 151, .external_lex_state = 2}, - [3229] = {.lex_state = 151, .external_lex_state = 5}, - [3230] = {.lex_state = 13, .external_lex_state = 5}, - [3231] = {.lex_state = 14, .external_lex_state = 2}, - [3232] = {.lex_state = 151, .external_lex_state = 2}, - [3233] = {.lex_state = 151, .external_lex_state = 5}, - [3234] = {.lex_state = 14, .external_lex_state = 2}, - [3235] = {.lex_state = 14, .external_lex_state = 2}, - [3236] = {.lex_state = 151, .external_lex_state = 2}, - [3237] = {.lex_state = 151, .external_lex_state = 2}, - [3238] = {.lex_state = 151, .external_lex_state = 6}, - [3239] = {.lex_state = 151, .external_lex_state = 6}, - [3240] = {.lex_state = 14, .external_lex_state = 2}, - [3241] = {.lex_state = 151, .external_lex_state = 6}, - [3242] = {.lex_state = 26, .external_lex_state = 2}, - [3243] = {.lex_state = 151, .external_lex_state = 6}, - [3244] = {.lex_state = 14, .external_lex_state = 2}, - [3245] = {.lex_state = 151, .external_lex_state = 2}, - [3246] = {.lex_state = 14, .external_lex_state = 2}, - [3247] = {.lex_state = 14, .external_lex_state = 2}, - [3248] = {.lex_state = 151, .external_lex_state = 5}, - [3249] = {.lex_state = 13, .external_lex_state = 2}, - [3250] = {.lex_state = 14, .external_lex_state = 2}, - [3251] = {.lex_state = 151, .external_lex_state = 6}, - [3252] = {.lex_state = 26, .external_lex_state = 2}, - [3253] = {.lex_state = 26, .external_lex_state = 2}, - [3254] = {.lex_state = 16, .external_lex_state = 2}, - [3255] = {.lex_state = 151, .external_lex_state = 5}, - [3256] = {.lex_state = 151, .external_lex_state = 6}, - [3257] = {.lex_state = 151, .external_lex_state = 6}, - [3258] = {.lex_state = 151, .external_lex_state = 5}, - [3259] = {.lex_state = 16, .external_lex_state = 2}, - [3260] = {.lex_state = 151, .external_lex_state = 6}, - [3261] = {.lex_state = 16, .external_lex_state = 2}, - [3262] = {.lex_state = 151, .external_lex_state = 5}, - [3263] = {.lex_state = 16, .external_lex_state = 2}, - [3264] = {.lex_state = 16, .external_lex_state = 2}, - [3265] = {.lex_state = 151, .external_lex_state = 6}, - [3266] = {.lex_state = 16, .external_lex_state = 2}, - [3267] = {.lex_state = 13, .external_lex_state = 2}, - [3268] = {.lex_state = 151, .external_lex_state = 6}, - [3269] = {.lex_state = 151, .external_lex_state = 6}, - [3270] = {.lex_state = 26, .external_lex_state = 2}, - [3271] = {.lex_state = 151, .external_lex_state = 6}, - [3272] = {.lex_state = 151, .external_lex_state = 6}, - [3273] = {.lex_state = 26, .external_lex_state = 2}, - [3274] = {.lex_state = 151, .external_lex_state = 5}, + [3110] = {.lex_state = 150, .external_lex_state = 2}, + [3111] = {.lex_state = 150, .external_lex_state = 2}, + [3112] = {.lex_state = 150, .external_lex_state = 2}, + [3113] = {.lex_state = 150, .external_lex_state = 2}, + [3114] = {.lex_state = 150, .external_lex_state = 2}, + [3115] = {.lex_state = 150, .external_lex_state = 2}, + [3116] = {.lex_state = 150, .external_lex_state = 2}, + [3117] = {.lex_state = 150, .external_lex_state = 2}, + [3118] = {.lex_state = 150, .external_lex_state = 2}, + [3119] = {.lex_state = 150, .external_lex_state = 2}, + [3120] = {.lex_state = 150, .external_lex_state = 2}, + [3121] = {.lex_state = 150, .external_lex_state = 2}, + [3122] = {.lex_state = 150, .external_lex_state = 2}, + [3123] = {.lex_state = 150, .external_lex_state = 2}, + [3124] = {.lex_state = 150, .external_lex_state = 2}, + [3125] = {.lex_state = 150, .external_lex_state = 2}, + [3126] = {.lex_state = 150, .external_lex_state = 2}, + [3127] = {.lex_state = 150, .external_lex_state = 2}, + [3128] = {.lex_state = 150, .external_lex_state = 2}, + [3129] = {.lex_state = 150, .external_lex_state = 2}, + [3130] = {.lex_state = 150, .external_lex_state = 2}, + [3131] = {.lex_state = 150, .external_lex_state = 2}, + [3132] = {.lex_state = 150, .external_lex_state = 2}, + [3133] = {.lex_state = 150, .external_lex_state = 2}, + [3134] = {.lex_state = 150, .external_lex_state = 2}, + [3135] = {.lex_state = 150, .external_lex_state = 2}, + [3136] = {.lex_state = 150, .external_lex_state = 2}, + [3137] = {.lex_state = 150, .external_lex_state = 2}, + [3138] = {.lex_state = 150, .external_lex_state = 2}, + [3139] = {.lex_state = 150, .external_lex_state = 2}, + [3140] = {.lex_state = 150, .external_lex_state = 2}, + [3141] = {.lex_state = 150, .external_lex_state = 2}, + [3142] = {.lex_state = 150, .external_lex_state = 2}, + [3143] = {.lex_state = 150, .external_lex_state = 2}, + [3144] = {.lex_state = 150, .external_lex_state = 2}, + [3145] = {.lex_state = 150, .external_lex_state = 2}, + [3146] = {.lex_state = 150, .external_lex_state = 2}, + [3147] = {.lex_state = 150, .external_lex_state = 2}, + [3148] = {.lex_state = 150, .external_lex_state = 2}, + [3149] = {.lex_state = 150, .external_lex_state = 2}, + [3150] = {.lex_state = 150, .external_lex_state = 2}, + [3151] = {.lex_state = 150, .external_lex_state = 2}, + [3152] = {.lex_state = 150, .external_lex_state = 2}, + [3153] = {.lex_state = 150, .external_lex_state = 2}, + [3154] = {.lex_state = 150, .external_lex_state = 2}, + [3155] = {.lex_state = 150, .external_lex_state = 2}, + [3156] = {.lex_state = 150, .external_lex_state = 2}, + [3157] = {.lex_state = 150, .external_lex_state = 2}, + [3158] = {.lex_state = 150, .external_lex_state = 2}, + [3159] = {.lex_state = 150, .external_lex_state = 2}, + [3160] = {.lex_state = 150, .external_lex_state = 2}, + [3161] = {.lex_state = 150, .external_lex_state = 2}, + [3162] = {.lex_state = 150, .external_lex_state = 2}, + [3163] = {.lex_state = 150, .external_lex_state = 2}, + [3164] = {.lex_state = 150, .external_lex_state = 2}, + [3165] = {.lex_state = 150, .external_lex_state = 2}, + [3166] = {.lex_state = 150, .external_lex_state = 2}, + [3167] = {.lex_state = 150, .external_lex_state = 2}, + [3168] = {.lex_state = 150, .external_lex_state = 2}, + [3169] = {.lex_state = 150, .external_lex_state = 2}, + [3170] = {.lex_state = 150, .external_lex_state = 2}, + [3171] = {.lex_state = 150, .external_lex_state = 2}, + [3172] = {.lex_state = 150, .external_lex_state = 2}, + [3173] = {.lex_state = 150, .external_lex_state = 2}, + [3174] = {.lex_state = 150, .external_lex_state = 2}, + [3175] = {.lex_state = 150, .external_lex_state = 2}, + [3176] = {.lex_state = 150, .external_lex_state = 2}, + [3177] = {.lex_state = 150, .external_lex_state = 2}, + [3178] = {.lex_state = 150, .external_lex_state = 2}, + [3179] = {.lex_state = 150, .external_lex_state = 2}, + [3180] = {.lex_state = 150, .external_lex_state = 2}, + [3181] = {.lex_state = 150, .external_lex_state = 2}, + [3182] = {.lex_state = 150, .external_lex_state = 2}, + [3183] = {.lex_state = 150, .external_lex_state = 2}, + [3184] = {.lex_state = 150, .external_lex_state = 2}, + [3185] = {.lex_state = 150, .external_lex_state = 2}, + [3186] = {.lex_state = 150, .external_lex_state = 2}, + [3187] = {.lex_state = 150, .external_lex_state = 2}, + [3188] = {.lex_state = 150, .external_lex_state = 2}, + [3189] = {.lex_state = 150, .external_lex_state = 2}, + [3190] = {.lex_state = 150, .external_lex_state = 2}, + [3191] = {.lex_state = 150, .external_lex_state = 2}, + [3192] = {.lex_state = 150, .external_lex_state = 2}, + [3193] = {.lex_state = 150, .external_lex_state = 2}, + [3194] = {.lex_state = 150, .external_lex_state = 2}, + [3195] = {.lex_state = 150, .external_lex_state = 2}, + [3196] = {.lex_state = 150, .external_lex_state = 2}, + [3197] = {.lex_state = 150, .external_lex_state = 2}, + [3198] = {.lex_state = 150, .external_lex_state = 2}, + [3199] = {.lex_state = 150, .external_lex_state = 2}, + [3200] = {.lex_state = 150, .external_lex_state = 2}, + [3201] = {.lex_state = 150, .external_lex_state = 2}, + [3202] = {.lex_state = 150, .external_lex_state = 2}, + [3203] = {.lex_state = 150, .external_lex_state = 2}, + [3204] = {.lex_state = 150, .external_lex_state = 2}, + [3205] = {.lex_state = 150, .external_lex_state = 2}, + [3206] = {.lex_state = 150, .external_lex_state = 2}, + [3207] = {.lex_state = 150, .external_lex_state = 2}, + [3208] = {.lex_state = 150, .external_lex_state = 2}, + [3209] = {.lex_state = 150, .external_lex_state = 2}, + [3210] = {.lex_state = 150, .external_lex_state = 2}, + [3211] = {.lex_state = 150, .external_lex_state = 2}, + [3212] = {.lex_state = 150, .external_lex_state = 2}, + [3213] = {.lex_state = 150, .external_lex_state = 2}, + [3214] = {.lex_state = 150, .external_lex_state = 2}, + [3215] = {.lex_state = 150, .external_lex_state = 2}, + [3216] = {.lex_state = 150, .external_lex_state = 2}, + [3217] = {.lex_state = 150, .external_lex_state = 2}, + [3218] = {.lex_state = 150, .external_lex_state = 2}, + [3219] = {.lex_state = 150, .external_lex_state = 2}, + [3220] = {.lex_state = 150, .external_lex_state = 2}, + [3221] = {.lex_state = 150, .external_lex_state = 2}, + [3222] = {.lex_state = 150, .external_lex_state = 2}, + [3223] = {.lex_state = 150, .external_lex_state = 2}, + [3224] = {.lex_state = 150, .external_lex_state = 2}, + [3225] = {.lex_state = 150, .external_lex_state = 2}, + [3226] = {.lex_state = 150, .external_lex_state = 2}, + [3227] = {.lex_state = 150, .external_lex_state = 2}, + [3228] = {.lex_state = 150, .external_lex_state = 2}, + [3229] = {.lex_state = 150, .external_lex_state = 2}, + [3230] = {.lex_state = 150, .external_lex_state = 2}, + [3231] = {.lex_state = 150, .external_lex_state = 2}, + [3232] = {.lex_state = 150, .external_lex_state = 2}, + [3233] = {.lex_state = 150, .external_lex_state = 2}, + [3234] = {.lex_state = 150, .external_lex_state = 2}, + [3235] = {.lex_state = 150, .external_lex_state = 2}, + [3236] = {.lex_state = 150, .external_lex_state = 2}, + [3237] = {.lex_state = 15, .external_lex_state = 2}, + [3238] = {.lex_state = 15, .external_lex_state = 2}, + [3239] = {.lex_state = 15, .external_lex_state = 2}, + [3240] = {.lex_state = 15, .external_lex_state = 2}, + [3241] = {.lex_state = 15, .external_lex_state = 2}, + [3242] = {.lex_state = 15, .external_lex_state = 2}, + [3243] = {.lex_state = 15, .external_lex_state = 2}, + [3244] = {.lex_state = 15, .external_lex_state = 2}, + [3245] = {.lex_state = 15, .external_lex_state = 2}, + [3246] = {.lex_state = 15, .external_lex_state = 2}, + [3247] = {.lex_state = 15, .external_lex_state = 2}, + [3248] = {.lex_state = 15, .external_lex_state = 2}, + [3249] = {.lex_state = 15, .external_lex_state = 2}, + [3250] = {.lex_state = 15, .external_lex_state = 2}, + [3251] = {.lex_state = 15, .external_lex_state = 2}, + [3252] = {.lex_state = 15, .external_lex_state = 2}, + [3253] = {.lex_state = 15, .external_lex_state = 2}, + [3254] = {.lex_state = 15, .external_lex_state = 2}, + [3255] = {.lex_state = 15, .external_lex_state = 2}, + [3256] = {.lex_state = 15, .external_lex_state = 2}, + [3257] = {.lex_state = 15, .external_lex_state = 2}, + [3258] = {.lex_state = 15, .external_lex_state = 2}, + [3259] = {.lex_state = 15, .external_lex_state = 2}, + [3260] = {.lex_state = 15, .external_lex_state = 2}, + [3261] = {.lex_state = 15, .external_lex_state = 2}, + [3262] = {.lex_state = 15, .external_lex_state = 2}, + [3263] = {.lex_state = 15, .external_lex_state = 2}, + [3264] = {.lex_state = 15, .external_lex_state = 2}, + [3265] = {.lex_state = 15, .external_lex_state = 2}, + [3266] = {.lex_state = 15, .external_lex_state = 2}, + [3267] = {.lex_state = 15, .external_lex_state = 2}, + [3268] = {.lex_state = 15, .external_lex_state = 2}, + [3269] = {.lex_state = 15, .external_lex_state = 2}, + [3270] = {.lex_state = 15, .external_lex_state = 2}, + [3271] = {.lex_state = 15, .external_lex_state = 2}, + [3272] = {.lex_state = 15, .external_lex_state = 2}, + [3273] = {.lex_state = 15, .external_lex_state = 2}, + [3274] = {.lex_state = 14, .external_lex_state = 5}, [3275] = {.lex_state = 14, .external_lex_state = 2}, - [3276] = {.lex_state = 151, .external_lex_state = 6}, - [3277] = {.lex_state = 151, .external_lex_state = 5}, - [3278] = {.lex_state = 151, .external_lex_state = 2}, - [3279] = {.lex_state = 26, .external_lex_state = 2}, - [3280] = {.lex_state = 151, .external_lex_state = 6}, - [3281] = {.lex_state = 151, .external_lex_state = 6}, - [3282] = {.lex_state = 151, .external_lex_state = 6}, - [3283] = {.lex_state = 13, .external_lex_state = 2}, - [3284] = {.lex_state = 151, .external_lex_state = 6}, - [3285] = {.lex_state = 151, .external_lex_state = 6}, - [3286] = {.lex_state = 26, .external_lex_state = 2}, - [3287] = {.lex_state = 26, .external_lex_state = 2}, - [3288] = {.lex_state = 151, .external_lex_state = 5}, - [3289] = {.lex_state = 26, .external_lex_state = 2}, - [3290] = {.lex_state = 16, .external_lex_state = 2}, - [3291] = {.lex_state = 151, .external_lex_state = 5}, - [3292] = {.lex_state = 151, .external_lex_state = 6}, - [3293] = {.lex_state = 151, .external_lex_state = 5}, - [3294] = {.lex_state = 14, .external_lex_state = 2}, - [3295] = {.lex_state = 151, .external_lex_state = 2}, - [3296] = {.lex_state = 151, .external_lex_state = 5}, - [3297] = {.lex_state = 151, .external_lex_state = 5}, + [3276] = {.lex_state = 14, .external_lex_state = 5}, + [3277] = {.lex_state = 25, .external_lex_state = 2}, + [3278] = {.lex_state = 25, .external_lex_state = 2}, + [3279] = {.lex_state = 15, .external_lex_state = 2}, + [3280] = {.lex_state = 14, .external_lex_state = 2}, + [3281] = {.lex_state = 15, .external_lex_state = 5}, + [3282] = {.lex_state = 150, .external_lex_state = 2}, + [3283] = {.lex_state = 150, .external_lex_state = 2}, + [3284] = {.lex_state = 150, .external_lex_state = 2}, + [3285] = {.lex_state = 14, .external_lex_state = 2}, + [3286] = {.lex_state = 15, .external_lex_state = 2}, + [3287] = {.lex_state = 15, .external_lex_state = 2}, + [3288] = {.lex_state = 15, .external_lex_state = 2}, + [3289] = {.lex_state = 14, .external_lex_state = 2}, + [3290] = {.lex_state = 150, .external_lex_state = 2}, + [3291] = {.lex_state = 150, .external_lex_state = 2}, + [3292] = {.lex_state = 15, .external_lex_state = 5}, + [3293] = {.lex_state = 15, .external_lex_state = 5}, + [3294] = {.lex_state = 150, .external_lex_state = 2}, + [3295] = {.lex_state = 150, .external_lex_state = 2}, + [3296] = {.lex_state = 150, .external_lex_state = 2}, + [3297] = {.lex_state = 15, .external_lex_state = 2}, [3298] = {.lex_state = 14, .external_lex_state = 2}, - [3299] = {.lex_state = 151, .external_lex_state = 6}, - [3300] = {.lex_state = 151, .external_lex_state = 6}, - [3301] = {.lex_state = 151, .external_lex_state = 6}, - [3302] = {.lex_state = 151, .external_lex_state = 5}, - [3303] = {.lex_state = 16, .external_lex_state = 2}, - [3304] = {.lex_state = 26, .external_lex_state = 2}, - [3305] = {.lex_state = 151, .external_lex_state = 5}, - [3306] = {.lex_state = 16, .external_lex_state = 2}, - [3307] = {.lex_state = 151, .external_lex_state = 6}, - [3308] = {.lex_state = 13, .external_lex_state = 2}, - [3309] = {.lex_state = 151, .external_lex_state = 5}, - [3310] = {.lex_state = 26, .external_lex_state = 2}, - [3311] = {.lex_state = 151, .external_lex_state = 6}, - [3312] = {.lex_state = 26, .external_lex_state = 2}, - [3313] = {.lex_state = 151, .external_lex_state = 6}, - [3314] = {.lex_state = 151, .external_lex_state = 5}, - [3315] = {.lex_state = 13, .external_lex_state = 2}, - [3316] = {.lex_state = 151, .external_lex_state = 5}, - [3317] = {.lex_state = 151, .external_lex_state = 6}, - [3318] = {.lex_state = 16, .external_lex_state = 2}, - [3319] = {.lex_state = 13, .external_lex_state = 2}, - [3320] = {.lex_state = 151, .external_lex_state = 6}, - [3321] = {.lex_state = 151, .external_lex_state = 5}, - [3322] = {.lex_state = 14, .external_lex_state = 2}, - [3323] = {.lex_state = 151, .external_lex_state = 5}, - [3324] = {.lex_state = 151, .external_lex_state = 5}, - [3325] = {.lex_state = 151, .external_lex_state = 6}, - [3326] = {.lex_state = 151, .external_lex_state = 5}, - [3327] = {.lex_state = 151, .external_lex_state = 6}, - [3328] = {.lex_state = 16, .external_lex_state = 2}, - [3329] = {.lex_state = 151, .external_lex_state = 6}, - [3330] = {.lex_state = 151, .external_lex_state = 6}, - [3331] = {.lex_state = 151, .external_lex_state = 6}, - [3332] = {.lex_state = 151, .external_lex_state = 2}, - [3333] = {.lex_state = 151, .external_lex_state = 2}, - [3334] = {.lex_state = 16, .external_lex_state = 2}, - [3335] = {.lex_state = 151, .external_lex_state = 6}, - [3336] = {.lex_state = 151, .external_lex_state = 6}, - [3337] = {.lex_state = 151, .external_lex_state = 6}, - [3338] = {.lex_state = 151, .external_lex_state = 6}, - [3339] = {.lex_state = 151, .external_lex_state = 5}, - [3340] = {.lex_state = 151, .external_lex_state = 5}, - [3341] = {.lex_state = 14, .external_lex_state = 2}, - [3342] = {.lex_state = 151, .external_lex_state = 2}, - [3343] = {.lex_state = 151, .external_lex_state = 6}, - [3344] = {.lex_state = 151, .external_lex_state = 6}, - [3345] = {.lex_state = 26, .external_lex_state = 2}, - [3346] = {.lex_state = 151, .external_lex_state = 6}, - [3347] = {.lex_state = 151, .external_lex_state = 2}, - [3348] = {.lex_state = 14, .external_lex_state = 2}, - [3349] = {.lex_state = 26, .external_lex_state = 2}, - [3350] = {.lex_state = 14, .external_lex_state = 2}, - [3351] = {.lex_state = 151, .external_lex_state = 2}, - [3352] = {.lex_state = 26, .external_lex_state = 2}, - [3353] = {.lex_state = 26, .external_lex_state = 2}, - [3354] = {.lex_state = 151, .external_lex_state = 5}, - [3355] = {.lex_state = 14, .external_lex_state = 2}, - [3356] = {.lex_state = 26, .external_lex_state = 2}, - [3357] = {.lex_state = 26, .external_lex_state = 2}, - [3358] = {.lex_state = 151, .external_lex_state = 5}, - [3359] = {.lex_state = 151, .external_lex_state = 6}, - [3360] = {.lex_state = 26, .external_lex_state = 2}, - [3361] = {.lex_state = 151, .external_lex_state = 2}, - [3362] = {.lex_state = 26, .external_lex_state = 2}, - [3363] = {.lex_state = 14, .external_lex_state = 2}, - [3364] = {.lex_state = 151, .external_lex_state = 6}, - [3365] = {.lex_state = 151, .external_lex_state = 5}, - [3366] = {.lex_state = 151, .external_lex_state = 5}, - [3367] = {.lex_state = 14, .external_lex_state = 2}, - [3368] = {.lex_state = 26, .external_lex_state = 2}, - [3369] = {.lex_state = 26, .external_lex_state = 2}, - [3370] = {.lex_state = 151, .external_lex_state = 5}, - [3371] = {.lex_state = 151, .external_lex_state = 5}, - [3372] = {.lex_state = 151, .external_lex_state = 5}, - [3373] = {.lex_state = 26, .external_lex_state = 2}, - [3374] = {.lex_state = 151, .external_lex_state = 5}, - [3375] = {.lex_state = 151, .external_lex_state = 5}, - [3376] = {.lex_state = 26, .external_lex_state = 2}, - [3377] = {.lex_state = 26, .external_lex_state = 2}, - [3378] = {.lex_state = 26, .external_lex_state = 2}, - [3379] = {.lex_state = 26, .external_lex_state = 2}, - [3380] = {.lex_state = 26, .external_lex_state = 2}, - [3381] = {.lex_state = 151, .external_lex_state = 5}, - [3382] = {.lex_state = 151, .external_lex_state = 5}, - [3383] = {.lex_state = 151, .external_lex_state = 5}, - [3384] = {.lex_state = 14, .external_lex_state = 2}, - [3385] = {.lex_state = 151, .external_lex_state = 6}, - [3386] = {.lex_state = 26, .external_lex_state = 2}, - [3387] = {.lex_state = 151, .external_lex_state = 5}, - [3388] = {.lex_state = 151, .external_lex_state = 5}, - [3389] = {.lex_state = 151, .external_lex_state = 5}, - [3390] = {.lex_state = 151, .external_lex_state = 5}, - [3391] = {.lex_state = 151, .external_lex_state = 5}, - [3392] = {.lex_state = 151, .external_lex_state = 5}, - [3393] = {.lex_state = 151, .external_lex_state = 5}, - [3394] = {.lex_state = 151, .external_lex_state = 6}, - [3395] = {.lex_state = 16, .external_lex_state = 2}, - [3396] = {.lex_state = 151, .external_lex_state = 5}, - [3397] = {.lex_state = 13, .external_lex_state = 2}, - [3398] = {.lex_state = 14, .external_lex_state = 2}, - [3399] = {.lex_state = 151, .external_lex_state = 6}, - [3400] = {.lex_state = 14, .external_lex_state = 2}, - [3401] = {.lex_state = 14, .external_lex_state = 2}, - [3402] = {.lex_state = 151, .external_lex_state = 5}, - [3403] = {.lex_state = 14, .external_lex_state = 2}, - [3404] = {.lex_state = 151, .external_lex_state = 6}, - [3405] = {.lex_state = 151, .external_lex_state = 6}, - [3406] = {.lex_state = 26, .external_lex_state = 2}, - [3407] = {.lex_state = 151, .external_lex_state = 5}, - [3408] = {.lex_state = 26, .external_lex_state = 2}, - [3409] = {.lex_state = 26, .external_lex_state = 2}, - [3410] = {.lex_state = 16, .external_lex_state = 2}, - [3411] = {.lex_state = 16, .external_lex_state = 2}, - [3412] = {.lex_state = 151, .external_lex_state = 5}, - [3413] = {.lex_state = 151, .external_lex_state = 5}, - [3414] = {.lex_state = 14, .external_lex_state = 2}, - [3415] = {.lex_state = 151, .external_lex_state = 6}, - [3416] = {.lex_state = 151, .external_lex_state = 6}, - [3417] = {.lex_state = 151, .external_lex_state = 6}, - [3418] = {.lex_state = 26, .external_lex_state = 2}, - [3419] = {.lex_state = 151, .external_lex_state = 6}, - [3420] = {.lex_state = 151, .external_lex_state = 5}, - [3421] = {.lex_state = 151, .external_lex_state = 6}, - [3422] = {.lex_state = 14, .external_lex_state = 2}, - [3423] = {.lex_state = 151, .external_lex_state = 2}, - [3424] = {.lex_state = 26, .external_lex_state = 2}, - [3425] = {.lex_state = 151, .external_lex_state = 6}, - [3426] = {.lex_state = 151, .external_lex_state = 6}, - [3427] = {.lex_state = 151, .external_lex_state = 6}, - [3428] = {.lex_state = 151, .external_lex_state = 6}, - [3429] = {.lex_state = 151, .external_lex_state = 6}, - [3430] = {.lex_state = 26, .external_lex_state = 2}, - [3431] = {.lex_state = 151, .external_lex_state = 6}, - [3432] = {.lex_state = 26, .external_lex_state = 2}, - [3433] = {.lex_state = 14, .external_lex_state = 2}, - [3434] = {.lex_state = 151, .external_lex_state = 6}, - [3435] = {.lex_state = 26, .external_lex_state = 2}, - [3436] = {.lex_state = 14, .external_lex_state = 2}, - [3437] = {.lex_state = 13, .external_lex_state = 2}, - [3438] = {.lex_state = 151, .external_lex_state = 2}, - [3439] = {.lex_state = 14, .external_lex_state = 2}, - [3440] = {.lex_state = 151, .external_lex_state = 6}, - [3441] = {.lex_state = 151, .external_lex_state = 5}, - [3442] = {.lex_state = 151, .external_lex_state = 5}, - [3443] = {.lex_state = 151, .external_lex_state = 5}, - [3444] = {.lex_state = 13, .external_lex_state = 2}, - [3445] = {.lex_state = 16, .external_lex_state = 2}, - [3446] = {.lex_state = 151, .external_lex_state = 5}, - [3447] = {.lex_state = 151, .external_lex_state = 5}, - [3448] = {.lex_state = 26, .external_lex_state = 2}, - [3449] = {.lex_state = 17, .external_lex_state = 2}, - [3450] = {.lex_state = 24, .external_lex_state = 7}, - [3451] = {.lex_state = 151, .external_lex_state = 2}, - [3452] = {.lex_state = 17, .external_lex_state = 2}, - [3453] = {.lex_state = 151, .external_lex_state = 5}, - [3454] = {.lex_state = 151, .external_lex_state = 6}, - [3455] = {.lex_state = 151, .external_lex_state = 2}, - [3456] = {.lex_state = 151, .external_lex_state = 5}, - [3457] = {.lex_state = 151, .external_lex_state = 2}, - [3458] = {.lex_state = 24, .external_lex_state = 7}, - [3459] = {.lex_state = 151, .external_lex_state = 2}, - [3460] = {.lex_state = 24, .external_lex_state = 7}, - [3461] = {.lex_state = 151, .external_lex_state = 2}, - [3462] = {.lex_state = 26, .external_lex_state = 2}, - [3463] = {.lex_state = 151, .external_lex_state = 2}, - [3464] = {.lex_state = 26, .external_lex_state = 2}, - [3465] = {.lex_state = 26, .external_lex_state = 2}, - [3466] = {.lex_state = 151, .external_lex_state = 2}, - [3467] = {.lex_state = 24, .external_lex_state = 7}, - [3468] = {.lex_state = 24, .external_lex_state = 7}, - [3469] = {.lex_state = 151, .external_lex_state = 5}, - [3470] = {.lex_state = 151, .external_lex_state = 2}, - [3471] = {.lex_state = 151, .external_lex_state = 2}, - [3472] = {.lex_state = 151, .external_lex_state = 2}, - [3473] = {.lex_state = 26, .external_lex_state = 2}, - [3474] = {.lex_state = 26, .external_lex_state = 2}, - [3475] = {.lex_state = 151, .external_lex_state = 5}, - [3476] = {.lex_state = 15, .external_lex_state = 2}, - [3477] = {.lex_state = 24, .external_lex_state = 7}, - [3478] = {.lex_state = 24, .external_lex_state = 7}, - [3479] = {.lex_state = 15, .external_lex_state = 2}, - [3480] = {.lex_state = 15, .external_lex_state = 2}, - [3481] = {.lex_state = 26, .external_lex_state = 2}, - [3482] = {.lex_state = 151, .external_lex_state = 5}, - [3483] = {.lex_state = 151, .external_lex_state = 5}, - [3484] = {.lex_state = 26, .external_lex_state = 2}, - [3485] = {.lex_state = 26, .external_lex_state = 2}, - [3486] = {.lex_state = 24, .external_lex_state = 7}, - [3487] = {.lex_state = 26, .external_lex_state = 2}, - [3488] = {.lex_state = 151, .external_lex_state = 2}, - [3489] = {.lex_state = 26, .external_lex_state = 2}, - [3490] = {.lex_state = 26, .external_lex_state = 2}, - [3491] = {.lex_state = 151, .external_lex_state = 2}, - [3492] = {.lex_state = 151, .external_lex_state = 5}, - [3493] = {.lex_state = 151, .external_lex_state = 2}, - [3494] = {.lex_state = 151, .external_lex_state = 5}, - [3495] = {.lex_state = 151, .external_lex_state = 5}, - [3496] = {.lex_state = 151, .external_lex_state = 5}, - [3497] = {.lex_state = 151, .external_lex_state = 5}, - [3498] = {.lex_state = 151, .external_lex_state = 5}, - [3499] = {.lex_state = 151, .external_lex_state = 5}, - [3500] = {.lex_state = 151, .external_lex_state = 5}, - [3501] = {.lex_state = 151, .external_lex_state = 2}, - [3502] = {.lex_state = 151, .external_lex_state = 5}, - [3503] = {.lex_state = 151, .external_lex_state = 5}, - [3504] = {.lex_state = 151, .external_lex_state = 5}, - [3505] = {.lex_state = 151, .external_lex_state = 2}, - [3506] = {.lex_state = 151, .external_lex_state = 5}, - [3507] = {.lex_state = 151, .external_lex_state = 2}, - [3508] = {.lex_state = 151, .external_lex_state = 5}, - [3509] = {.lex_state = 151, .external_lex_state = 5}, - [3510] = {.lex_state = 151, .external_lex_state = 5}, - [3511] = {.lex_state = 151, .external_lex_state = 5}, - [3512] = {.lex_state = 151, .external_lex_state = 2}, - [3513] = {.lex_state = 151, .external_lex_state = 5}, - [3514] = {.lex_state = 13, .external_lex_state = 2}, - [3515] = {.lex_state = 151, .external_lex_state = 2}, - [3516] = {.lex_state = 151, .external_lex_state = 5}, - [3517] = {.lex_state = 151, .external_lex_state = 5}, - [3518] = {.lex_state = 151, .external_lex_state = 5}, - [3519] = {.lex_state = 151, .external_lex_state = 2}, - [3520] = {.lex_state = 151, .external_lex_state = 5}, - [3521] = {.lex_state = 151, .external_lex_state = 5}, - [3522] = {.lex_state = 151, .external_lex_state = 5}, - [3523] = {.lex_state = 151, .external_lex_state = 2}, - [3524] = {.lex_state = 151, .external_lex_state = 5}, - [3525] = {.lex_state = 151, .external_lex_state = 2}, - [3526] = {.lex_state = 13, .external_lex_state = 2}, - [3527] = {.lex_state = 151, .external_lex_state = 5}, - [3528] = {.lex_state = 151, .external_lex_state = 2}, - [3529] = {.lex_state = 13, .external_lex_state = 2}, - [3530] = {.lex_state = 13, .external_lex_state = 2}, - [3531] = {.lex_state = 151, .external_lex_state = 2}, - [3532] = {.lex_state = 13, .external_lex_state = 2}, - [3533] = {.lex_state = 151, .external_lex_state = 5}, - [3534] = {.lex_state = 13, .external_lex_state = 2}, - [3535] = {.lex_state = 151, .external_lex_state = 5}, - [3536] = {.lex_state = 13, .external_lex_state = 2}, - [3537] = {.lex_state = 151, .external_lex_state = 5}, - [3538] = {.lex_state = 151, .external_lex_state = 5}, - [3539] = {.lex_state = 151, .external_lex_state = 5}, - [3540] = {.lex_state = 151, .external_lex_state = 5}, - [3541] = {.lex_state = 151, .external_lex_state = 5}, - [3542] = {.lex_state = 151, .external_lex_state = 5}, - [3543] = {.lex_state = 151, .external_lex_state = 5}, - [3544] = {.lex_state = 151, .external_lex_state = 5}, - [3545] = {.lex_state = 151, .external_lex_state = 2}, - [3546] = {.lex_state = 151, .external_lex_state = 5}, - [3547] = {.lex_state = 26, .external_lex_state = 2}, - [3548] = {.lex_state = 151, .external_lex_state = 5}, - [3549] = {.lex_state = 151, .external_lex_state = 2}, - [3550] = {.lex_state = 151, .external_lex_state = 5}, - [3551] = {.lex_state = 151, .external_lex_state = 5}, - [3552] = {.lex_state = 151, .external_lex_state = 5}, - [3553] = {.lex_state = 151, .external_lex_state = 2}, - [3554] = {.lex_state = 151, .external_lex_state = 5}, - [3555] = {.lex_state = 151, .external_lex_state = 5}, - [3556] = {.lex_state = 151, .external_lex_state = 5}, - [3557] = {.lex_state = 151, .external_lex_state = 5}, - [3558] = {.lex_state = 151, .external_lex_state = 5}, - [3559] = {.lex_state = 151, .external_lex_state = 5}, - [3560] = {.lex_state = 151, .external_lex_state = 5}, - [3561] = {.lex_state = 151, .external_lex_state = 5}, - [3562] = {.lex_state = 151, .external_lex_state = 5}, - [3563] = {.lex_state = 151, .external_lex_state = 5}, - [3564] = {.lex_state = 151, .external_lex_state = 5}, - [3565] = {.lex_state = 151, .external_lex_state = 5}, - [3566] = {.lex_state = 151, .external_lex_state = 5}, - [3567] = {.lex_state = 151, .external_lex_state = 5}, - [3568] = {.lex_state = 13, .external_lex_state = 2}, - [3569] = {.lex_state = 151, .external_lex_state = 5}, - [3570] = {.lex_state = 13, .external_lex_state = 2}, - [3571] = {.lex_state = 151, .external_lex_state = 5}, - [3572] = {.lex_state = 151, .external_lex_state = 5}, - [3573] = {.lex_state = 151, .external_lex_state = 5}, - [3574] = {.lex_state = 151, .external_lex_state = 5}, - [3575] = {.lex_state = 151, .external_lex_state = 5}, - [3576] = {.lex_state = 151, .external_lex_state = 5}, - [3577] = {.lex_state = 151, .external_lex_state = 5}, - [3578] = {.lex_state = 151, .external_lex_state = 5}, - [3579] = {.lex_state = 151, .external_lex_state = 5}, - [3580] = {.lex_state = 151, .external_lex_state = 5}, - [3581] = {.lex_state = 151, .external_lex_state = 5}, - [3582] = {.lex_state = 13, .external_lex_state = 2}, - [3583] = {.lex_state = 151, .external_lex_state = 5}, - [3584] = {.lex_state = 151, .external_lex_state = 5}, - [3585] = {.lex_state = 151, .external_lex_state = 2}, - [3586] = {.lex_state = 151, .external_lex_state = 5}, - [3587] = {.lex_state = 151, .external_lex_state = 5}, - [3588] = {.lex_state = 151, .external_lex_state = 2}, - [3589] = {.lex_state = 151, .external_lex_state = 2}, - [3590] = {.lex_state = 151, .external_lex_state = 2}, - [3591] = {.lex_state = 13, .external_lex_state = 2}, - [3592] = {.lex_state = 151, .external_lex_state = 5}, - [3593] = {.lex_state = 151, .external_lex_state = 5}, - [3594] = {.lex_state = 151, .external_lex_state = 5}, - [3595] = {.lex_state = 151, .external_lex_state = 5}, - [3596] = {.lex_state = 151, .external_lex_state = 5}, - [3597] = {.lex_state = 13, .external_lex_state = 2}, - [3598] = {.lex_state = 151, .external_lex_state = 5}, - [3599] = {.lex_state = 151, .external_lex_state = 5}, - [3600] = {.lex_state = 151, .external_lex_state = 2}, - [3601] = {.lex_state = 151, .external_lex_state = 5}, - [3602] = {.lex_state = 151, .external_lex_state = 5}, - [3603] = {.lex_state = 151, .external_lex_state = 5}, - [3604] = {.lex_state = 151, .external_lex_state = 5}, - [3605] = {.lex_state = 151, .external_lex_state = 5}, - [3606] = {.lex_state = 151, .external_lex_state = 2}, - [3607] = {.lex_state = 151, .external_lex_state = 5}, - [3608] = {.lex_state = 151, .external_lex_state = 5}, - [3609] = {.lex_state = 26, .external_lex_state = 2}, - [3610] = {.lex_state = 151, .external_lex_state = 2}, - [3611] = {.lex_state = 13, .external_lex_state = 2}, - [3612] = {.lex_state = 151, .external_lex_state = 5}, - [3613] = {.lex_state = 151, .external_lex_state = 5}, - [3614] = {.lex_state = 151, .external_lex_state = 5}, - [3615] = {.lex_state = 151, .external_lex_state = 5}, - [3616] = {.lex_state = 151, .external_lex_state = 5}, - [3617] = {.lex_state = 151, .external_lex_state = 2}, - [3618] = {.lex_state = 151, .external_lex_state = 2}, - [3619] = {.lex_state = 151, .external_lex_state = 2}, - [3620] = {.lex_state = 151, .external_lex_state = 2}, - [3621] = {.lex_state = 151, .external_lex_state = 2}, - [3622] = {.lex_state = 13, .external_lex_state = 2}, - [3623] = {.lex_state = 151, .external_lex_state = 2}, - [3624] = {.lex_state = 151, .external_lex_state = 2}, - [3625] = {.lex_state = 151, .external_lex_state = 2}, - [3626] = {.lex_state = 151, .external_lex_state = 5}, - [3627] = {.lex_state = 151, .external_lex_state = 5}, - [3628] = {.lex_state = 151, .external_lex_state = 5}, - [3629] = {.lex_state = 151, .external_lex_state = 2}, - [3630] = {.lex_state = 151, .external_lex_state = 2}, - [3631] = {.lex_state = 151, .external_lex_state = 5}, - [3632] = {.lex_state = 151, .external_lex_state = 5}, - [3633] = {.lex_state = 151, .external_lex_state = 5}, - [3634] = {.lex_state = 151, .external_lex_state = 5}, - [3635] = {.lex_state = 151, .external_lex_state = 5}, - [3636] = {.lex_state = 151, .external_lex_state = 5}, - [3637] = {.lex_state = 151, .external_lex_state = 5}, - [3638] = {.lex_state = 151, .external_lex_state = 5}, - [3639] = {.lex_state = 151, .external_lex_state = 5}, - [3640] = {.lex_state = 151, .external_lex_state = 2}, - [3641] = {.lex_state = 151, .external_lex_state = 5}, - [3642] = {.lex_state = 151, .external_lex_state = 5}, - [3643] = {.lex_state = 151, .external_lex_state = 5}, - [3644] = {.lex_state = 151, .external_lex_state = 5}, - [3645] = {.lex_state = 151, .external_lex_state = 5}, - [3646] = {.lex_state = 151, .external_lex_state = 2}, - [3647] = {.lex_state = 151, .external_lex_state = 5}, - [3648] = {.lex_state = 151, .external_lex_state = 2}, - [3649] = {.lex_state = 151, .external_lex_state = 5}, - [3650] = {.lex_state = 151, .external_lex_state = 2}, - [3651] = {.lex_state = 151, .external_lex_state = 2}, - [3652] = {.lex_state = 151, .external_lex_state = 2}, - [3653] = {.lex_state = 151, .external_lex_state = 2}, - [3654] = {.lex_state = 151, .external_lex_state = 2}, - [3655] = {.lex_state = 151, .external_lex_state = 5}, - [3656] = {.lex_state = 151, .external_lex_state = 5}, - [3657] = {.lex_state = 151, .external_lex_state = 5}, - [3658] = {.lex_state = 151, .external_lex_state = 2}, - [3659] = {.lex_state = 26, .external_lex_state = 2}, - [3660] = {.lex_state = 151, .external_lex_state = 2}, - [3661] = {.lex_state = 151, .external_lex_state = 5}, - [3662] = {.lex_state = 151, .external_lex_state = 2}, - [3663] = {.lex_state = 13, .external_lex_state = 2}, - [3664] = {.lex_state = 151, .external_lex_state = 5}, - [3665] = {.lex_state = 13, .external_lex_state = 2}, - [3666] = {.lex_state = 151, .external_lex_state = 2}, - [3667] = {.lex_state = 151, .external_lex_state = 5}, - [3668] = {.lex_state = 151, .external_lex_state = 5}, - [3669] = {.lex_state = 151, .external_lex_state = 5}, - [3670] = {.lex_state = 151, .external_lex_state = 5}, - [3671] = {.lex_state = 151, .external_lex_state = 2}, - [3672] = {.lex_state = 151, .external_lex_state = 5}, - [3673] = {.lex_state = 151, .external_lex_state = 5}, - [3674] = {.lex_state = 151, .external_lex_state = 5}, - [3675] = {.lex_state = 151, .external_lex_state = 5}, - [3676] = {.lex_state = 151, .external_lex_state = 5}, - [3677] = {.lex_state = 151, .external_lex_state = 5}, - [3678] = {.lex_state = 151, .external_lex_state = 5}, - [3679] = {.lex_state = 151, .external_lex_state = 5}, - [3680] = {.lex_state = 151, .external_lex_state = 2}, - [3681] = {.lex_state = 151, .external_lex_state = 5}, - [3682] = {.lex_state = 151, .external_lex_state = 5}, - [3683] = {.lex_state = 151, .external_lex_state = 5}, - [3684] = {.lex_state = 151, .external_lex_state = 5}, - [3685] = {.lex_state = 151, .external_lex_state = 5}, - [3686] = {.lex_state = 151, .external_lex_state = 5}, - [3687] = {.lex_state = 151, .external_lex_state = 5}, - [3688] = {.lex_state = 151, .external_lex_state = 2}, - [3689] = {.lex_state = 151, .external_lex_state = 5}, - [3690] = {.lex_state = 13, .external_lex_state = 2}, - [3691] = {.lex_state = 151, .external_lex_state = 5}, - [3692] = {.lex_state = 151, .external_lex_state = 5}, - [3693] = {.lex_state = 151, .external_lex_state = 2}, - [3694] = {.lex_state = 13, .external_lex_state = 2}, - [3695] = {.lex_state = 26, .external_lex_state = 2}, - [3696] = {.lex_state = 13, .external_lex_state = 2}, - [3697] = {.lex_state = 151, .external_lex_state = 5}, - [3698] = {.lex_state = 151, .external_lex_state = 2}, + [3299] = {.lex_state = 150, .external_lex_state = 2}, + [3300] = {.lex_state = 15, .external_lex_state = 2}, + [3301] = {.lex_state = 150, .external_lex_state = 2}, + [3302] = {.lex_state = 150, .external_lex_state = 2}, + [3303] = {.lex_state = 150, .external_lex_state = 2}, + [3304] = {.lex_state = 150, .external_lex_state = 2}, + [3305] = {.lex_state = 150, .external_lex_state = 2}, + [3306] = {.lex_state = 150, .external_lex_state = 2}, + [3307] = {.lex_state = 15, .external_lex_state = 5}, + [3308] = {.lex_state = 15, .external_lex_state = 5}, + [3309] = {.lex_state = 15, .external_lex_state = 5}, + [3310] = {.lex_state = 15, .external_lex_state = 5}, + [3311] = {.lex_state = 150, .external_lex_state = 2}, + [3312] = {.lex_state = 15, .external_lex_state = 5}, + [3313] = {.lex_state = 5, .external_lex_state = 2}, + [3314] = {.lex_state = 15, .external_lex_state = 5}, + [3315] = {.lex_state = 15, .external_lex_state = 5}, + [3316] = {.lex_state = 5, .external_lex_state = 2}, + [3317] = {.lex_state = 150, .external_lex_state = 2}, + [3318] = {.lex_state = 150, .external_lex_state = 2}, + [3319] = {.lex_state = 15, .external_lex_state = 6}, + [3320] = {.lex_state = 150, .external_lex_state = 2}, + [3321] = {.lex_state = 15, .external_lex_state = 6}, + [3322] = {.lex_state = 150, .external_lex_state = 2}, + [3323] = {.lex_state = 150, .external_lex_state = 2}, + [3324] = {.lex_state = 15, .external_lex_state = 6}, + [3325] = {.lex_state = 150, .external_lex_state = 2}, + [3326] = {.lex_state = 15, .external_lex_state = 5}, + [3327] = {.lex_state = 150, .external_lex_state = 2}, + [3328] = {.lex_state = 150, .external_lex_state = 2}, + [3329] = {.lex_state = 15, .external_lex_state = 5}, + [3330] = {.lex_state = 150, .external_lex_state = 2}, + [3331] = {.lex_state = 150, .external_lex_state = 2}, + [3332] = {.lex_state = 150, .external_lex_state = 2}, + [3333] = {.lex_state = 150, .external_lex_state = 2}, + [3334] = {.lex_state = 5, .external_lex_state = 2}, + [3335] = {.lex_state = 150, .external_lex_state = 2}, + [3336] = {.lex_state = 150, .external_lex_state = 2}, + [3337] = {.lex_state = 150, .external_lex_state = 2}, + [3338] = {.lex_state = 15, .external_lex_state = 5}, + [3339] = {.lex_state = 150, .external_lex_state = 2}, + [3340] = {.lex_state = 5, .external_lex_state = 2}, + [3341] = {.lex_state = 15, .external_lex_state = 5}, + [3342] = {.lex_state = 150, .external_lex_state = 2}, + [3343] = {.lex_state = 15, .external_lex_state = 5}, + [3344] = {.lex_state = 5, .external_lex_state = 2}, + [3345] = {.lex_state = 15, .external_lex_state = 5}, + [3346] = {.lex_state = 150, .external_lex_state = 2}, + [3347] = {.lex_state = 150, .external_lex_state = 2}, + [3348] = {.lex_state = 150, .external_lex_state = 2}, + [3349] = {.lex_state = 150, .external_lex_state = 2}, + [3350] = {.lex_state = 150, .external_lex_state = 2}, + [3351] = {.lex_state = 150, .external_lex_state = 2}, + [3352] = {.lex_state = 150, .external_lex_state = 2}, + [3353] = {.lex_state = 150, .external_lex_state = 2}, + [3354] = {.lex_state = 150, .external_lex_state = 2}, + [3355] = {.lex_state = 150, .external_lex_state = 2}, + [3356] = {.lex_state = 150, .external_lex_state = 2}, + [3357] = {.lex_state = 15, .external_lex_state = 5}, + [3358] = {.lex_state = 150, .external_lex_state = 2}, + [3359] = {.lex_state = 15, .external_lex_state = 5}, + [3360] = {.lex_state = 150, .external_lex_state = 2}, + [3361] = {.lex_state = 15, .external_lex_state = 5}, + [3362] = {.lex_state = 150, .external_lex_state = 2}, + [3363] = {.lex_state = 5, .external_lex_state = 2}, + [3364] = {.lex_state = 150, .external_lex_state = 2}, + [3365] = {.lex_state = 15, .external_lex_state = 5}, + [3366] = {.lex_state = 150, .external_lex_state = 2}, + [3367] = {.lex_state = 5, .external_lex_state = 2}, + [3368] = {.lex_state = 15, .external_lex_state = 5}, + [3369] = {.lex_state = 15, .external_lex_state = 5}, + [3370] = {.lex_state = 5, .external_lex_state = 2}, + [3371] = {.lex_state = 150, .external_lex_state = 2}, + [3372] = {.lex_state = 150, .external_lex_state = 2}, + [3373] = {.lex_state = 150, .external_lex_state = 2}, + [3374] = {.lex_state = 150, .external_lex_state = 2}, + [3375] = {.lex_state = 150, .external_lex_state = 2}, + [3376] = {.lex_state = 150, .external_lex_state = 2}, + [3377] = {.lex_state = 15, .external_lex_state = 5}, + [3378] = {.lex_state = 150, .external_lex_state = 2}, + [3379] = {.lex_state = 150, .external_lex_state = 2}, + [3380] = {.lex_state = 15, .external_lex_state = 5}, + [3381] = {.lex_state = 15, .external_lex_state = 5}, + [3382] = {.lex_state = 150, .external_lex_state = 2}, + [3383] = {.lex_state = 15, .external_lex_state = 5}, + [3384] = {.lex_state = 15, .external_lex_state = 5}, + [3385] = {.lex_state = 150, .external_lex_state = 2}, + [3386] = {.lex_state = 14, .external_lex_state = 5}, + [3387] = {.lex_state = 15, .external_lex_state = 5}, + [3388] = {.lex_state = 150, .external_lex_state = 2}, + [3389] = {.lex_state = 15, .external_lex_state = 5}, + [3390] = {.lex_state = 150, .external_lex_state = 2}, + [3391] = {.lex_state = 150, .external_lex_state = 2}, + [3392] = {.lex_state = 150, .external_lex_state = 2}, + [3393] = {.lex_state = 150, .external_lex_state = 2}, + [3394] = {.lex_state = 15, .external_lex_state = 5}, + [3395] = {.lex_state = 150, .external_lex_state = 2}, + [3396] = {.lex_state = 150, .external_lex_state = 2}, + [3397] = {.lex_state = 150, .external_lex_state = 2}, + [3398] = {.lex_state = 15, .external_lex_state = 5}, + [3399] = {.lex_state = 15, .external_lex_state = 5}, + [3400] = {.lex_state = 15, .external_lex_state = 5}, + [3401] = {.lex_state = 150, .external_lex_state = 2}, + [3402] = {.lex_state = 150, .external_lex_state = 2}, + [3403] = {.lex_state = 15, .external_lex_state = 5}, + [3404] = {.lex_state = 5, .external_lex_state = 2}, + [3405] = {.lex_state = 15, .external_lex_state = 5}, + [3406] = {.lex_state = 15, .external_lex_state = 5}, + [3407] = {.lex_state = 15, .external_lex_state = 5}, + [3408] = {.lex_state = 13, .external_lex_state = 5}, + [3409] = {.lex_state = 13, .external_lex_state = 5}, + [3410] = {.lex_state = 13, .external_lex_state = 5}, + [3411] = {.lex_state = 13, .external_lex_state = 5}, + [3412] = {.lex_state = 13, .external_lex_state = 5}, + [3413] = {.lex_state = 150, .external_lex_state = 2}, + [3414] = {.lex_state = 14, .external_lex_state = 5}, + [3415] = {.lex_state = 13, .external_lex_state = 5}, + [3416] = {.lex_state = 13, .external_lex_state = 5}, + [3417] = {.lex_state = 150, .external_lex_state = 2}, + [3418] = {.lex_state = 150, .external_lex_state = 2}, + [3419] = {.lex_state = 150, .external_lex_state = 5}, + [3420] = {.lex_state = 150, .external_lex_state = 2}, + [3421] = {.lex_state = 150, .external_lex_state = 2}, + [3422] = {.lex_state = 13, .external_lex_state = 5}, + [3423] = {.lex_state = 13, .external_lex_state = 5}, + [3424] = {.lex_state = 150, .external_lex_state = 2}, + [3425] = {.lex_state = 13, .external_lex_state = 5}, + [3426] = {.lex_state = 13, .external_lex_state = 5}, + [3427] = {.lex_state = 13, .external_lex_state = 5}, + [3428] = {.lex_state = 13, .external_lex_state = 5}, + [3429] = {.lex_state = 13, .external_lex_state = 5}, + [3430] = {.lex_state = 13, .external_lex_state = 5}, + [3431] = {.lex_state = 13, .external_lex_state = 5}, + [3432] = {.lex_state = 13, .external_lex_state = 5}, + [3433] = {.lex_state = 13, .external_lex_state = 5}, + [3434] = {.lex_state = 150, .external_lex_state = 2}, + [3435] = {.lex_state = 13, .external_lex_state = 5}, + [3436] = {.lex_state = 13, .external_lex_state = 5}, + [3437] = {.lex_state = 13, .external_lex_state = 5}, + [3438] = {.lex_state = 150, .external_lex_state = 2}, + [3439] = {.lex_state = 13, .external_lex_state = 5}, + [3440] = {.lex_state = 150, .external_lex_state = 2}, + [3441] = {.lex_state = 13, .external_lex_state = 5}, + [3442] = {.lex_state = 13, .external_lex_state = 5}, + [3443] = {.lex_state = 150, .external_lex_state = 2}, + [3444] = {.lex_state = 25, .external_lex_state = 2}, + [3445] = {.lex_state = 13, .external_lex_state = 5}, + [3446] = {.lex_state = 13, .external_lex_state = 5}, + [3447] = {.lex_state = 13, .external_lex_state = 5}, + [3448] = {.lex_state = 150, .external_lex_state = 2}, + [3449] = {.lex_state = 150, .external_lex_state = 2}, + [3450] = {.lex_state = 13, .external_lex_state = 5}, + [3451] = {.lex_state = 13, .external_lex_state = 5}, + [3452] = {.lex_state = 150, .external_lex_state = 2}, + [3453] = {.lex_state = 15, .external_lex_state = 6}, + [3454] = {.lex_state = 15, .external_lex_state = 6}, + [3455] = {.lex_state = 25, .external_lex_state = 2}, + [3456] = {.lex_state = 150, .external_lex_state = 5}, + [3457] = {.lex_state = 1, .external_lex_state = 2}, + [3458] = {.lex_state = 150, .external_lex_state = 5}, + [3459] = {.lex_state = 15, .external_lex_state = 5}, + [3460] = {.lex_state = 150, .external_lex_state = 5}, + [3461] = {.lex_state = 150, .external_lex_state = 5}, + [3462] = {.lex_state = 15, .external_lex_state = 6}, + [3463] = {.lex_state = 150, .external_lex_state = 2}, + [3464] = {.lex_state = 15, .external_lex_state = 6}, + [3465] = {.lex_state = 14, .external_lex_state = 6}, + [3466] = {.lex_state = 13, .external_lex_state = 5}, + [3467] = {.lex_state = 1, .external_lex_state = 2}, + [3468] = {.lex_state = 13, .external_lex_state = 5}, + [3469] = {.lex_state = 13, .external_lex_state = 5}, + [3470] = {.lex_state = 13, .external_lex_state = 5}, + [3471] = {.lex_state = 150, .external_lex_state = 5}, + [3472] = {.lex_state = 1, .external_lex_state = 2}, + [3473] = {.lex_state = 15, .external_lex_state = 5}, + [3474] = {.lex_state = 13, .external_lex_state = 5}, + [3475] = {.lex_state = 15, .external_lex_state = 6}, + [3476] = {.lex_state = 150, .external_lex_state = 5}, + [3477] = {.lex_state = 150, .external_lex_state = 5}, + [3478] = {.lex_state = 15, .external_lex_state = 6}, + [3479] = {.lex_state = 1, .external_lex_state = 2}, + [3480] = {.lex_state = 15, .external_lex_state = 5}, + [3481] = {.lex_state = 15, .external_lex_state = 5}, + [3482] = {.lex_state = 150, .external_lex_state = 5}, + [3483] = {.lex_state = 15, .external_lex_state = 6}, + [3484] = {.lex_state = 150, .external_lex_state = 2}, + [3485] = {.lex_state = 15, .external_lex_state = 6}, + [3486] = {.lex_state = 15, .external_lex_state = 6}, + [3487] = {.lex_state = 15, .external_lex_state = 6}, + [3488] = {.lex_state = 15, .external_lex_state = 6}, + [3489] = {.lex_state = 25, .external_lex_state = 2}, + [3490] = {.lex_state = 14, .external_lex_state = 5}, + [3491] = {.lex_state = 15, .external_lex_state = 6}, + [3492] = {.lex_state = 15, .external_lex_state = 6}, + [3493] = {.lex_state = 150, .external_lex_state = 2}, + [3494] = {.lex_state = 15, .external_lex_state = 5}, + [3495] = {.lex_state = 15, .external_lex_state = 6}, + [3496] = {.lex_state = 150, .external_lex_state = 2}, + [3497] = {.lex_state = 15, .external_lex_state = 6}, + [3498] = {.lex_state = 13, .external_lex_state = 5}, + [3499] = {.lex_state = 15, .external_lex_state = 5}, + [3500] = {.lex_state = 15, .external_lex_state = 6}, + [3501] = {.lex_state = 15, .external_lex_state = 6}, + [3502] = {.lex_state = 15, .external_lex_state = 6}, + [3503] = {.lex_state = 15, .external_lex_state = 6}, + [3504] = {.lex_state = 150, .external_lex_state = 2}, + [3505] = {.lex_state = 13, .external_lex_state = 5}, + [3506] = {.lex_state = 15, .external_lex_state = 6}, + [3507] = {.lex_state = 15, .external_lex_state = 6}, + [3508] = {.lex_state = 15, .external_lex_state = 6}, + [3509] = {.lex_state = 15, .external_lex_state = 6}, + [3510] = {.lex_state = 15, .external_lex_state = 5}, + [3511] = {.lex_state = 15, .external_lex_state = 6}, + [3512] = {.lex_state = 15, .external_lex_state = 6}, + [3513] = {.lex_state = 1, .external_lex_state = 2}, + [3514] = {.lex_state = 1, .external_lex_state = 2}, + [3515] = {.lex_state = 15, .external_lex_state = 6}, + [3516] = {.lex_state = 15, .external_lex_state = 6}, + [3517] = {.lex_state = 15, .external_lex_state = 5}, + [3518] = {.lex_state = 15, .external_lex_state = 6}, + [3519] = {.lex_state = 150, .external_lex_state = 2}, + [3520] = {.lex_state = 15, .external_lex_state = 6}, + [3521] = {.lex_state = 15, .external_lex_state = 6}, + [3522] = {.lex_state = 15, .external_lex_state = 6}, + [3523] = {.lex_state = 1, .external_lex_state = 2}, + [3524] = {.lex_state = 150, .external_lex_state = 2}, + [3525] = {.lex_state = 13, .external_lex_state = 5}, + [3526] = {.lex_state = 150, .external_lex_state = 5}, + [3527] = {.lex_state = 15, .external_lex_state = 6}, + [3528] = {.lex_state = 150, .external_lex_state = 2}, + [3529] = {.lex_state = 150, .external_lex_state = 5}, + [3530] = {.lex_state = 1, .external_lex_state = 2}, + [3531] = {.lex_state = 14, .external_lex_state = 5}, + [3532] = {.lex_state = 15, .external_lex_state = 6}, + [3533] = {.lex_state = 15, .external_lex_state = 6}, + [3534] = {.lex_state = 13, .external_lex_state = 5}, + [3535] = {.lex_state = 150, .external_lex_state = 2}, + [3536] = {.lex_state = 14, .external_lex_state = 5}, + [3537] = {.lex_state = 25, .external_lex_state = 2}, + [3538] = {.lex_state = 150, .external_lex_state = 5}, + [3539] = {.lex_state = 13, .external_lex_state = 2}, + [3540] = {.lex_state = 13, .external_lex_state = 5}, + [3541] = {.lex_state = 13, .external_lex_state = 5}, + [3542] = {.lex_state = 25, .external_lex_state = 2}, + [3543] = {.lex_state = 13, .external_lex_state = 2}, + [3544] = {.lex_state = 150, .external_lex_state = 6}, + [3545] = {.lex_state = 13, .external_lex_state = 5}, + [3546] = {.lex_state = 13, .external_lex_state = 5}, + [3547] = {.lex_state = 150, .external_lex_state = 5}, + [3548] = {.lex_state = 150, .external_lex_state = 5}, + [3549] = {.lex_state = 13, .external_lex_state = 5}, + [3550] = {.lex_state = 13, .external_lex_state = 5}, + [3551] = {.lex_state = 13, .external_lex_state = 5}, + [3552] = {.lex_state = 13, .external_lex_state = 5}, + [3553] = {.lex_state = 13, .external_lex_state = 5}, + [3554] = {.lex_state = 13, .external_lex_state = 5}, + [3555] = {.lex_state = 13, .external_lex_state = 5}, + [3556] = {.lex_state = 150, .external_lex_state = 5}, + [3557] = {.lex_state = 15, .external_lex_state = 2}, + [3558] = {.lex_state = 13, .external_lex_state = 5}, + [3559] = {.lex_state = 15, .external_lex_state = 2}, + [3560] = {.lex_state = 13, .external_lex_state = 5}, + [3561] = {.lex_state = 13, .external_lex_state = 5}, + [3562] = {.lex_state = 13, .external_lex_state = 5}, + [3563] = {.lex_state = 13, .external_lex_state = 5}, + [3564] = {.lex_state = 13, .external_lex_state = 2}, + [3565] = {.lex_state = 13, .external_lex_state = 5}, + [3566] = {.lex_state = 13, .external_lex_state = 5}, + [3567] = {.lex_state = 150, .external_lex_state = 5}, + [3568] = {.lex_state = 1, .external_lex_state = 2}, + [3569] = {.lex_state = 13, .external_lex_state = 5}, + [3570] = {.lex_state = 13, .external_lex_state = 5}, + [3571] = {.lex_state = 13, .external_lex_state = 5}, + [3572] = {.lex_state = 13, .external_lex_state = 5}, + [3573] = {.lex_state = 13, .external_lex_state = 5}, + [3574] = {.lex_state = 13, .external_lex_state = 5}, + [3575] = {.lex_state = 13, .external_lex_state = 5}, + [3576] = {.lex_state = 13, .external_lex_state = 5}, + [3577] = {.lex_state = 25, .external_lex_state = 2}, + [3578] = {.lex_state = 13, .external_lex_state = 5}, + [3579] = {.lex_state = 13, .external_lex_state = 5}, + [3580] = {.lex_state = 13, .external_lex_state = 5}, + [3581] = {.lex_state = 13, .external_lex_state = 5}, + [3582] = {.lex_state = 13, .external_lex_state = 5}, + [3583] = {.lex_state = 150, .external_lex_state = 5}, + [3584] = {.lex_state = 25, .external_lex_state = 2}, + [3585] = {.lex_state = 150, .external_lex_state = 5}, + [3586] = {.lex_state = 15, .external_lex_state = 2}, + [3587] = {.lex_state = 13, .external_lex_state = 5}, + [3588] = {.lex_state = 13, .external_lex_state = 5}, + [3589] = {.lex_state = 13, .external_lex_state = 5}, + [3590] = {.lex_state = 13, .external_lex_state = 5}, + [3591] = {.lex_state = 13, .external_lex_state = 5}, + [3592] = {.lex_state = 14, .external_lex_state = 6}, + [3593] = {.lex_state = 13, .external_lex_state = 5}, + [3594] = {.lex_state = 150, .external_lex_state = 2}, + [3595] = {.lex_state = 13, .external_lex_state = 5}, + [3596] = {.lex_state = 13, .external_lex_state = 5}, + [3597] = {.lex_state = 150, .external_lex_state = 5}, + [3598] = {.lex_state = 150, .external_lex_state = 6}, + [3599] = {.lex_state = 150, .external_lex_state = 5}, + [3600] = {.lex_state = 150, .external_lex_state = 5}, + [3601] = {.lex_state = 15, .external_lex_state = 6}, + [3602] = {.lex_state = 150, .external_lex_state = 5}, + [3603] = {.lex_state = 15, .external_lex_state = 6}, + [3604] = {.lex_state = 150, .external_lex_state = 6}, + [3605] = {.lex_state = 150, .external_lex_state = 6}, + [3606] = {.lex_state = 15, .external_lex_state = 6}, + [3607] = {.lex_state = 150, .external_lex_state = 5}, + [3608] = {.lex_state = 14, .external_lex_state = 6}, + [3609] = {.lex_state = 15, .external_lex_state = 6}, + [3610] = {.lex_state = 150, .external_lex_state = 5}, + [3611] = {.lex_state = 150, .external_lex_state = 2}, + [3612] = {.lex_state = 150, .external_lex_state = 5}, + [3613] = {.lex_state = 150, .external_lex_state = 5}, + [3614] = {.lex_state = 14, .external_lex_state = 6}, + [3615] = {.lex_state = 150, .external_lex_state = 5}, + [3616] = {.lex_state = 150, .external_lex_state = 5}, + [3617] = {.lex_state = 150, .external_lex_state = 5}, + [3618] = {.lex_state = 13, .external_lex_state = 2}, + [3619] = {.lex_state = 150, .external_lex_state = 5}, + [3620] = {.lex_state = 150, .external_lex_state = 5}, + [3621] = {.lex_state = 150, .external_lex_state = 5}, + [3622] = {.lex_state = 150, .external_lex_state = 6}, + [3623] = {.lex_state = 150, .external_lex_state = 5}, + [3624] = {.lex_state = 150, .external_lex_state = 5}, + [3625] = {.lex_state = 15, .external_lex_state = 6}, + [3626] = {.lex_state = 150, .external_lex_state = 5}, + [3627] = {.lex_state = 150, .external_lex_state = 6}, + [3628] = {.lex_state = 150, .external_lex_state = 5}, + [3629] = {.lex_state = 150, .external_lex_state = 5}, + [3630] = {.lex_state = 15, .external_lex_state = 6}, + [3631] = {.lex_state = 13, .external_lex_state = 5}, + [3632] = {.lex_state = 150, .external_lex_state = 5}, + [3633] = {.lex_state = 150, .external_lex_state = 5}, + [3634] = {.lex_state = 150, .external_lex_state = 5}, + [3635] = {.lex_state = 150, .external_lex_state = 5}, + [3636] = {.lex_state = 150, .external_lex_state = 5}, + [3637] = {.lex_state = 15, .external_lex_state = 6}, + [3638] = {.lex_state = 150, .external_lex_state = 5}, + [3639] = {.lex_state = 150, .external_lex_state = 5}, + [3640] = {.lex_state = 150, .external_lex_state = 5}, + [3641] = {.lex_state = 150, .external_lex_state = 5}, + [3642] = {.lex_state = 150, .external_lex_state = 5}, + [3643] = {.lex_state = 150, .external_lex_state = 6}, + [3644] = {.lex_state = 15, .external_lex_state = 6}, + [3645] = {.lex_state = 150, .external_lex_state = 5}, + [3646] = {.lex_state = 150, .external_lex_state = 5}, + [3647] = {.lex_state = 150, .external_lex_state = 5}, + [3648] = {.lex_state = 150, .external_lex_state = 5}, + [3649] = {.lex_state = 150, .external_lex_state = 5}, + [3650] = {.lex_state = 13, .external_lex_state = 5}, + [3651] = {.lex_state = 14, .external_lex_state = 6}, + [3652] = {.lex_state = 150, .external_lex_state = 5}, + [3653] = {.lex_state = 150, .external_lex_state = 5}, + [3654] = {.lex_state = 150, .external_lex_state = 5}, + [3655] = {.lex_state = 150, .external_lex_state = 5}, + [3656] = {.lex_state = 13, .external_lex_state = 5}, + [3657] = {.lex_state = 150, .external_lex_state = 5}, + [3658] = {.lex_state = 150, .external_lex_state = 5}, + [3659] = {.lex_state = 150, .external_lex_state = 5}, + [3660] = {.lex_state = 150, .external_lex_state = 5}, + [3661] = {.lex_state = 150, .external_lex_state = 5}, + [3662] = {.lex_state = 150, .external_lex_state = 5}, + [3663] = {.lex_state = 150, .external_lex_state = 5}, + [3664] = {.lex_state = 150, .external_lex_state = 5}, + [3665] = {.lex_state = 150, .external_lex_state = 5}, + [3666] = {.lex_state = 150, .external_lex_state = 5}, + [3667] = {.lex_state = 150, .external_lex_state = 5}, + [3668] = {.lex_state = 150, .external_lex_state = 5}, + [3669] = {.lex_state = 14, .external_lex_state = 2}, + [3670] = {.lex_state = 14, .external_lex_state = 2}, + [3671] = {.lex_state = 150, .external_lex_state = 5}, + [3672] = {.lex_state = 25, .external_lex_state = 2}, + [3673] = {.lex_state = 25, .external_lex_state = 2}, + [3674] = {.lex_state = 150, .external_lex_state = 2}, + [3675] = {.lex_state = 14, .external_lex_state = 2}, + [3676] = {.lex_state = 14, .external_lex_state = 2}, + [3677] = {.lex_state = 150, .external_lex_state = 2}, + [3678] = {.lex_state = 14, .external_lex_state = 2}, + [3679] = {.lex_state = 13, .external_lex_state = 5}, + [3680] = {.lex_state = 14, .external_lex_state = 2}, + [3681] = {.lex_state = 150, .external_lex_state = 2}, + [3682] = {.lex_state = 14, .external_lex_state = 2}, + [3683] = {.lex_state = 150, .external_lex_state = 2}, + [3684] = {.lex_state = 150, .external_lex_state = 6}, + [3685] = {.lex_state = 150, .external_lex_state = 5}, + [3686] = {.lex_state = 14, .external_lex_state = 2}, + [3687] = {.lex_state = 14, .external_lex_state = 2}, + [3688] = {.lex_state = 150, .external_lex_state = 2}, + [3689] = {.lex_state = 150, .external_lex_state = 5}, + [3690] = {.lex_state = 150, .external_lex_state = 5}, + [3691] = {.lex_state = 150, .external_lex_state = 2}, + [3692] = {.lex_state = 25, .external_lex_state = 2}, + [3693] = {.lex_state = 150, .external_lex_state = 6}, + [3694] = {.lex_state = 14, .external_lex_state = 2}, + [3695] = {.lex_state = 150, .external_lex_state = 6}, + [3696] = {.lex_state = 150, .external_lex_state = 6}, + [3697] = {.lex_state = 150, .external_lex_state = 6}, + [3698] = {.lex_state = 14, .external_lex_state = 2}, [3699] = {.lex_state = 13, .external_lex_state = 2}, - [3700] = {.lex_state = 151, .external_lex_state = 2}, - [3701] = {.lex_state = 151, .external_lex_state = 5}, - [3702] = {.lex_state = 151, .external_lex_state = 5}, - [3703] = {.lex_state = 151, .external_lex_state = 2}, - [3704] = {.lex_state = 151, .external_lex_state = 2}, - [3705] = {.lex_state = 151, .external_lex_state = 5}, - [3706] = {.lex_state = 151, .external_lex_state = 5}, - [3707] = {.lex_state = 151, .external_lex_state = 5}, - [3708] = {.lex_state = 151, .external_lex_state = 5}, - [3709] = {.lex_state = 151, .external_lex_state = 2}, - [3710] = {.lex_state = 151, .external_lex_state = 2}, - [3711] = {.lex_state = 151, .external_lex_state = 5}, - [3712] = {.lex_state = 151, .external_lex_state = 5}, - [3713] = {.lex_state = 151, .external_lex_state = 5}, - [3714] = {.lex_state = 151, .external_lex_state = 5}, - [3715] = {.lex_state = 151, .external_lex_state = 5}, - [3716] = {.lex_state = 151, .external_lex_state = 5}, - [3717] = {.lex_state = 151, .external_lex_state = 2}, - [3718] = {.lex_state = 151, .external_lex_state = 5}, - [3719] = {.lex_state = 151, .external_lex_state = 5}, - [3720] = {.lex_state = 151, .external_lex_state = 2}, - [3721] = {.lex_state = 151, .external_lex_state = 5}, - [3722] = {.lex_state = 151, .external_lex_state = 5}, - [3723] = {.lex_state = 151, .external_lex_state = 2}, - [3724] = {.lex_state = 1, .external_lex_state = 2}, - [3725] = {.lex_state = 13, .external_lex_state = 2}, - [3726] = {.lex_state = 1, .external_lex_state = 2}, - [3727] = {.lex_state = 1, .external_lex_state = 2}, - [3728] = {.lex_state = 13, .external_lex_state = 2}, - [3729] = {.lex_state = 151, .external_lex_state = 5}, - [3730] = {.lex_state = 151, .external_lex_state = 5}, - [3731] = {.lex_state = 13, .external_lex_state = 2}, - [3732] = {.lex_state = 151, .external_lex_state = 6}, - [3733] = {.lex_state = 13, .external_lex_state = 2}, - [3734] = {.lex_state = 13, .external_lex_state = 2}, - [3735] = {.lex_state = 151, .external_lex_state = 5}, - [3736] = {.lex_state = 151, .external_lex_state = 5}, - [3737] = {.lex_state = 151, .external_lex_state = 2}, - [3738] = {.lex_state = 151, .external_lex_state = 2}, - [3739] = {.lex_state = 151, .external_lex_state = 2}, - [3740] = {.lex_state = 1, .external_lex_state = 2}, - [3741] = {.lex_state = 1, .external_lex_state = 2}, - [3742] = {.lex_state = 151, .external_lex_state = 2}, - [3743] = {.lex_state = 151, .external_lex_state = 6}, - [3744] = {.lex_state = 1, .external_lex_state = 2}, - [3745] = {.lex_state = 151, .external_lex_state = 5}, - [3746] = {.lex_state = 1, .external_lex_state = 2}, - [3747] = {.lex_state = 13, .external_lex_state = 2}, - [3748] = {.lex_state = 151, .external_lex_state = 2}, - [3749] = {.lex_state = 13, .external_lex_state = 2}, - [3750] = {.lex_state = 151, .external_lex_state = 2}, - [3751] = {.lex_state = 1, .external_lex_state = 2}, - [3752] = {.lex_state = 151, .external_lex_state = 6}, - [3753] = {.lex_state = 151, .external_lex_state = 5}, - [3754] = {.lex_state = 1, .external_lex_state = 2}, - [3755] = {.lex_state = 1, .external_lex_state = 2}, - [3756] = {.lex_state = 151, .external_lex_state = 2}, - [3757] = {.lex_state = 13, .external_lex_state = 2}, - [3758] = {.lex_state = 13, .external_lex_state = 2}, - [3759] = {.lex_state = 151, .external_lex_state = 6}, - [3760] = {.lex_state = 13, .external_lex_state = 2}, - [3761] = {.lex_state = 1, .external_lex_state = 2}, - [3762] = {.lex_state = 151, .external_lex_state = 6}, - [3763] = {.lex_state = 1, .external_lex_state = 2}, - [3764] = {.lex_state = 1, .external_lex_state = 2}, - [3765] = {.lex_state = 1, .external_lex_state = 2}, - [3766] = {.lex_state = 151, .external_lex_state = 5}, - [3767] = {.lex_state = 13, .external_lex_state = 2}, - [3768] = {.lex_state = 1, .external_lex_state = 2}, - [3769] = {.lex_state = 151, .external_lex_state = 2}, - [3770] = {.lex_state = 13, .external_lex_state = 2}, - [3771] = {.lex_state = 151, .external_lex_state = 5}, - [3772] = {.lex_state = 13, .external_lex_state = 2}, - [3773] = {.lex_state = 13, .external_lex_state = 2}, - [3774] = {.lex_state = 151, .external_lex_state = 2}, - [3775] = {.lex_state = 13, .external_lex_state = 2}, - [3776] = {.lex_state = 151, .external_lex_state = 5}, - [3777] = {.lex_state = 151, .external_lex_state = 6}, - [3778] = {.lex_state = 1, .external_lex_state = 2}, - [3779] = {.lex_state = 24, .external_lex_state = 7}, - [3780] = {.lex_state = 1, .external_lex_state = 2}, - [3781] = {.lex_state = 24, .external_lex_state = 7}, - [3782] = {.lex_state = 151, .external_lex_state = 2}, - [3783] = {.lex_state = 24, .external_lex_state = 7}, - [3784] = {.lex_state = 151, .external_lex_state = 2}, - [3785] = {.lex_state = 151, .external_lex_state = 2}, - [3786] = {.lex_state = 151, .external_lex_state = 5}, - [3787] = {.lex_state = 151, .external_lex_state = 5}, - [3788] = {.lex_state = 13, .external_lex_state = 2}, - [3789] = {.lex_state = 151, .external_lex_state = 2}, - [3790] = {.lex_state = 151, .external_lex_state = 6}, - [3791] = {.lex_state = 151, .external_lex_state = 6}, - [3792] = {.lex_state = 1, .external_lex_state = 2}, - [3793] = {.lex_state = 1, .external_lex_state = 2}, - [3794] = {.lex_state = 1, .external_lex_state = 2}, - [3795] = {.lex_state = 151, .external_lex_state = 6}, - [3796] = {.lex_state = 17, .external_lex_state = 2}, - [3797] = {.lex_state = 13, .external_lex_state = 2}, - [3798] = {.lex_state = 13, .external_lex_state = 2}, - [3799] = {.lex_state = 151, .external_lex_state = 6}, + [3700] = {.lex_state = 150, .external_lex_state = 6}, + [3701] = {.lex_state = 150, .external_lex_state = 6}, + [3702] = {.lex_state = 150, .external_lex_state = 5}, + [3703] = {.lex_state = 25, .external_lex_state = 2}, + [3704] = {.lex_state = 150, .external_lex_state = 6}, + [3705] = {.lex_state = 150, .external_lex_state = 2}, + [3706] = {.lex_state = 150, .external_lex_state = 6}, + [3707] = {.lex_state = 150, .external_lex_state = 6}, + [3708] = {.lex_state = 150, .external_lex_state = 6}, + [3709] = {.lex_state = 150, .external_lex_state = 5}, + [3710] = {.lex_state = 150, .external_lex_state = 6}, + [3711] = {.lex_state = 150, .external_lex_state = 6}, + [3712] = {.lex_state = 25, .external_lex_state = 2}, + [3713] = {.lex_state = 150, .external_lex_state = 5}, + [3714] = {.lex_state = 13, .external_lex_state = 2}, + [3715] = {.lex_state = 150, .external_lex_state = 5}, + [3716] = {.lex_state = 14, .external_lex_state = 2}, + [3717] = {.lex_state = 150, .external_lex_state = 6}, + [3718] = {.lex_state = 25, .external_lex_state = 2}, + [3719] = {.lex_state = 150, .external_lex_state = 6}, + [3720] = {.lex_state = 150, .external_lex_state = 2}, + [3721] = {.lex_state = 15, .external_lex_state = 2}, + [3722] = {.lex_state = 13, .external_lex_state = 2}, + [3723] = {.lex_state = 150, .external_lex_state = 2}, + [3724] = {.lex_state = 150, .external_lex_state = 2}, + [3725] = {.lex_state = 150, .external_lex_state = 6}, + [3726] = {.lex_state = 15, .external_lex_state = 2}, + [3727] = {.lex_state = 150, .external_lex_state = 5}, + [3728] = {.lex_state = 150, .external_lex_state = 5}, + [3729] = {.lex_state = 150, .external_lex_state = 5}, + [3730] = {.lex_state = 150, .external_lex_state = 5}, + [3731] = {.lex_state = 14, .external_lex_state = 2}, + [3732] = {.lex_state = 150, .external_lex_state = 5}, + [3733] = {.lex_state = 150, .external_lex_state = 5}, + [3734] = {.lex_state = 150, .external_lex_state = 6}, + [3735] = {.lex_state = 14, .external_lex_state = 2}, + [3736] = {.lex_state = 150, .external_lex_state = 5}, + [3737] = {.lex_state = 150, .external_lex_state = 5}, + [3738] = {.lex_state = 150, .external_lex_state = 5}, + [3739] = {.lex_state = 15, .external_lex_state = 2}, + [3740] = {.lex_state = 13, .external_lex_state = 2}, + [3741] = {.lex_state = 150, .external_lex_state = 5}, + [3742] = {.lex_state = 14, .external_lex_state = 2}, + [3743] = {.lex_state = 150, .external_lex_state = 5}, + [3744] = {.lex_state = 150, .external_lex_state = 5}, + [3745] = {.lex_state = 14, .external_lex_state = 2}, + [3746] = {.lex_state = 150, .external_lex_state = 5}, + [3747] = {.lex_state = 150, .external_lex_state = 5}, + [3748] = {.lex_state = 150, .external_lex_state = 6}, + [3749] = {.lex_state = 150, .external_lex_state = 6}, + [3750] = {.lex_state = 150, .external_lex_state = 6}, + [3751] = {.lex_state = 150, .external_lex_state = 5}, + [3752] = {.lex_state = 150, .external_lex_state = 6}, + [3753] = {.lex_state = 150, .external_lex_state = 6}, + [3754] = {.lex_state = 14, .external_lex_state = 2}, + [3755] = {.lex_state = 150, .external_lex_state = 6}, + [3756] = {.lex_state = 150, .external_lex_state = 6}, + [3757] = {.lex_state = 150, .external_lex_state = 6}, + [3758] = {.lex_state = 25, .external_lex_state = 2}, + [3759] = {.lex_state = 150, .external_lex_state = 6}, + [3760] = {.lex_state = 25, .external_lex_state = 2}, + [3761] = {.lex_state = 150, .external_lex_state = 5}, + [3762] = {.lex_state = 150, .external_lex_state = 6}, + [3763] = {.lex_state = 150, .external_lex_state = 5}, + [3764] = {.lex_state = 150, .external_lex_state = 5}, + [3765] = {.lex_state = 150, .external_lex_state = 6}, + [3766] = {.lex_state = 150, .external_lex_state = 5}, + [3767] = {.lex_state = 150, .external_lex_state = 6}, + [3768] = {.lex_state = 150, .external_lex_state = 5}, + [3769] = {.lex_state = 150, .external_lex_state = 5}, + [3770] = {.lex_state = 150, .external_lex_state = 6}, + [3771] = {.lex_state = 150, .external_lex_state = 5}, + [3772] = {.lex_state = 150, .external_lex_state = 5}, + [3773] = {.lex_state = 150, .external_lex_state = 5}, + [3774] = {.lex_state = 150, .external_lex_state = 5}, + [3775] = {.lex_state = 25, .external_lex_state = 2}, + [3776] = {.lex_state = 25, .external_lex_state = 2}, + [3777] = {.lex_state = 14, .external_lex_state = 2}, + [3778] = {.lex_state = 14, .external_lex_state = 2}, + [3779] = {.lex_state = 150, .external_lex_state = 6}, + [3780] = {.lex_state = 150, .external_lex_state = 5}, + [3781] = {.lex_state = 25, .external_lex_state = 2}, + [3782] = {.lex_state = 13, .external_lex_state = 2}, + [3783] = {.lex_state = 150, .external_lex_state = 6}, + [3784] = {.lex_state = 150, .external_lex_state = 5}, + [3785] = {.lex_state = 150, .external_lex_state = 5}, + [3786] = {.lex_state = 150, .external_lex_state = 5}, + [3787] = {.lex_state = 150, .external_lex_state = 6}, + [3788] = {.lex_state = 25, .external_lex_state = 2}, + [3789] = {.lex_state = 150, .external_lex_state = 6}, + [3790] = {.lex_state = 25, .external_lex_state = 2}, + [3791] = {.lex_state = 150, .external_lex_state = 5}, + [3792] = {.lex_state = 25, .external_lex_state = 2}, + [3793] = {.lex_state = 150, .external_lex_state = 6}, + [3794] = {.lex_state = 150, .external_lex_state = 5}, + [3795] = {.lex_state = 25, .external_lex_state = 2}, + [3796] = {.lex_state = 25, .external_lex_state = 2}, + [3797] = {.lex_state = 150, .external_lex_state = 6}, + [3798] = {.lex_state = 150, .external_lex_state = 6}, + [3799] = {.lex_state = 25, .external_lex_state = 2}, [3800] = {.lex_state = 13, .external_lex_state = 2}, - [3801] = {.lex_state = 13, .external_lex_state = 2}, - [3802] = {.lex_state = 151, .external_lex_state = 5}, - [3803] = {.lex_state = 151, .external_lex_state = 2}, - [3804] = {.lex_state = 151, .external_lex_state = 5}, - [3805] = {.lex_state = 151, .external_lex_state = 6}, - [3806] = {.lex_state = 17, .external_lex_state = 2}, - [3807] = {.lex_state = 151, .external_lex_state = 6}, - [3808] = {.lex_state = 13, .external_lex_state = 2}, - [3809] = {.lex_state = 151, .external_lex_state = 5}, - [3810] = {.lex_state = 151, .external_lex_state = 5}, - [3811] = {.lex_state = 1, .external_lex_state = 2}, - [3812] = {.lex_state = 151, .external_lex_state = 2}, - [3813] = {.lex_state = 151, .external_lex_state = 2}, - [3814] = {.lex_state = 151, .external_lex_state = 2}, - [3815] = {.lex_state = 1, .external_lex_state = 2}, - [3816] = {.lex_state = 1, .external_lex_state = 2}, - [3817] = {.lex_state = 13, .external_lex_state = 2}, - [3818] = {.lex_state = 151, .external_lex_state = 2}, - [3819] = {.lex_state = 151, .external_lex_state = 2}, - [3820] = {.lex_state = 151, .external_lex_state = 2}, - [3821] = {.lex_state = 151, .external_lex_state = 5}, - [3822] = {.lex_state = 13, .external_lex_state = 2}, - [3823] = {.lex_state = 13, .external_lex_state = 2}, - [3824] = {.lex_state = 13, .external_lex_state = 2}, - [3825] = {.lex_state = 151, .external_lex_state = 5}, - [3826] = {.lex_state = 26, .external_lex_state = 2}, - [3827] = {.lex_state = 151, .external_lex_state = 2}, - [3828] = {.lex_state = 151, .external_lex_state = 2}, - [3829] = {.lex_state = 151, .external_lex_state = 2}, - [3830] = {.lex_state = 151, .external_lex_state = 5}, - [3831] = {.lex_state = 151, .external_lex_state = 5}, - [3832] = {.lex_state = 13, .external_lex_state = 2}, - [3833] = {.lex_state = 151, .external_lex_state = 2}, - [3834] = {.lex_state = 13, .external_lex_state = 2}, - [3835] = {.lex_state = 151, .external_lex_state = 6}, - [3836] = {.lex_state = 13, .external_lex_state = 2}, - [3837] = {.lex_state = 151, .external_lex_state = 2}, - [3838] = {.lex_state = 1, .external_lex_state = 2}, - [3839] = {.lex_state = 151, .external_lex_state = 2}, - [3840] = {.lex_state = 13, .external_lex_state = 2}, - [3841] = {.lex_state = 13, .external_lex_state = 2}, - [3842] = {.lex_state = 13, .external_lex_state = 2}, - [3843] = {.lex_state = 13, .external_lex_state = 2}, - [3844] = {.lex_state = 13, .external_lex_state = 2}, - [3845] = {.lex_state = 1, .external_lex_state = 2}, - [3846] = {.lex_state = 151, .external_lex_state = 2}, - [3847] = {.lex_state = 151, .external_lex_state = 6}, - [3848] = {.lex_state = 151, .external_lex_state = 2}, - [3849] = {.lex_state = 151, .external_lex_state = 5}, - [3850] = {.lex_state = 13, .external_lex_state = 2}, - [3851] = {.lex_state = 1, .external_lex_state = 2}, - [3852] = {.lex_state = 13, .external_lex_state = 2}, - [3853] = {.lex_state = 151, .external_lex_state = 2}, - [3854] = {.lex_state = 13, .external_lex_state = 2}, - [3855] = {.lex_state = 1, .external_lex_state = 2}, - [3856] = {.lex_state = 151, .external_lex_state = 2}, - [3857] = {.lex_state = 151, .external_lex_state = 2}, - [3858] = {.lex_state = 24, .external_lex_state = 7}, - [3859] = {.lex_state = 151, .external_lex_state = 2}, - [3860] = {.lex_state = 151, .external_lex_state = 2}, - [3861] = {.lex_state = 151, .external_lex_state = 6}, - [3862] = {.lex_state = 13, .external_lex_state = 2}, - [3863] = {.lex_state = 151, .external_lex_state = 2}, - [3864] = {.lex_state = 151, .external_lex_state = 6}, - [3865] = {.lex_state = 151, .external_lex_state = 2}, - [3866] = {.lex_state = 151, .external_lex_state = 2}, - [3867] = {.lex_state = 151, .external_lex_state = 5}, - [3868] = {.lex_state = 24, .external_lex_state = 7}, - [3869] = {.lex_state = 16, .external_lex_state = 2}, - [3870] = {.lex_state = 151, .external_lex_state = 5}, - [3871] = {.lex_state = 151, .external_lex_state = 6}, - [3872] = {.lex_state = 151, .external_lex_state = 5}, - [3873] = {.lex_state = 151, .external_lex_state = 6}, - [3874] = {.lex_state = 151, .external_lex_state = 5}, - [3875] = {.lex_state = 151, .external_lex_state = 6}, - [3876] = {.lex_state = 13, .external_lex_state = 2}, - [3877] = {.lex_state = 13, .external_lex_state = 2}, - [3878] = {.lex_state = 13, .external_lex_state = 2}, - [3879] = {.lex_state = 151, .external_lex_state = 2}, - [3880] = {.lex_state = 13, .external_lex_state = 2}, - [3881] = {.lex_state = 151, .external_lex_state = 2}, - [3882] = {.lex_state = 151, .external_lex_state = 6}, - [3883] = {.lex_state = 1, .external_lex_state = 2}, - [3884] = {.lex_state = 13, .external_lex_state = 2}, - [3885] = {.lex_state = 151, .external_lex_state = 6}, - [3886] = {.lex_state = 151, .external_lex_state = 6}, - [3887] = {.lex_state = 1, .external_lex_state = 2}, - [3888] = {.lex_state = 151, .external_lex_state = 6}, - [3889] = {.lex_state = 151, .external_lex_state = 2}, - [3890] = {.lex_state = 13, .external_lex_state = 2}, - [3891] = {.lex_state = 151, .external_lex_state = 2}, - [3892] = {.lex_state = 151, .external_lex_state = 2}, - [3893] = {.lex_state = 151, .external_lex_state = 6}, - [3894] = {.lex_state = 26, .external_lex_state = 2}, - [3895] = {.lex_state = 13, .external_lex_state = 2}, - [3896] = {.lex_state = 151, .external_lex_state = 5}, - [3897] = {.lex_state = 13, .external_lex_state = 2}, - [3898] = {.lex_state = 13, .external_lex_state = 2}, - [3899] = {.lex_state = 16, .external_lex_state = 2}, - [3900] = {.lex_state = 151, .external_lex_state = 5}, - [3901] = {.lex_state = 151, .external_lex_state = 6}, - [3902] = {.lex_state = 151, .external_lex_state = 2}, - [3903] = {.lex_state = 1, .external_lex_state = 2}, - [3904] = {.lex_state = 13, .external_lex_state = 2}, - [3905] = {.lex_state = 13, .external_lex_state = 2}, - [3906] = {.lex_state = 151, .external_lex_state = 2}, - [3907] = {.lex_state = 151, .external_lex_state = 5}, - [3908] = {.lex_state = 151, .external_lex_state = 2}, - [3909] = {.lex_state = 151, .external_lex_state = 5}, - [3910] = {.lex_state = 151, .external_lex_state = 2}, - [3911] = {.lex_state = 151, .external_lex_state = 5}, - [3912] = {.lex_state = 151, .external_lex_state = 6}, - [3913] = {.lex_state = 151, .external_lex_state = 2}, - [3914] = {.lex_state = 13, .external_lex_state = 2}, - [3915] = {.lex_state = 151, .external_lex_state = 2}, - [3916] = {.lex_state = 151, .external_lex_state = 5}, - [3917] = {.lex_state = 151, .external_lex_state = 5}, - [3918] = {.lex_state = 13, .external_lex_state = 2}, - [3919] = {.lex_state = 151, .external_lex_state = 5}, - [3920] = {.lex_state = 151, .external_lex_state = 5}, - [3921] = {.lex_state = 151, .external_lex_state = 5}, - [3922] = {.lex_state = 151, .external_lex_state = 5}, - [3923] = {.lex_state = 151, .external_lex_state = 5}, - [3924] = {.lex_state = 151, .external_lex_state = 5}, - [3925] = {.lex_state = 151, .external_lex_state = 5}, - [3926] = {.lex_state = 151, .external_lex_state = 5}, - [3927] = {.lex_state = 151, .external_lex_state = 5}, - [3928] = {.lex_state = 151, .external_lex_state = 5}, - [3929] = {.lex_state = 151, .external_lex_state = 5}, - [3930] = {.lex_state = 151, .external_lex_state = 5}, - [3931] = {.lex_state = 26, .external_lex_state = 2}, - [3932] = {.lex_state = 151, .external_lex_state = 5}, - [3933] = {.lex_state = 151, .external_lex_state = 6}, - [3934] = {.lex_state = 151, .external_lex_state = 5}, - [3935] = {.lex_state = 151, .external_lex_state = 6}, - [3936] = {.lex_state = 151, .external_lex_state = 6}, - [3937] = {.lex_state = 151, .external_lex_state = 5}, - [3938] = {.lex_state = 151, .external_lex_state = 5}, - [3939] = {.lex_state = 151, .external_lex_state = 5}, - [3940] = {.lex_state = 151, .external_lex_state = 5}, - [3941] = {.lex_state = 151, .external_lex_state = 5}, - [3942] = {.lex_state = 151, .external_lex_state = 5}, - [3943] = {.lex_state = 151, .external_lex_state = 5}, - [3944] = {.lex_state = 151, .external_lex_state = 5}, - [3945] = {.lex_state = 151, .external_lex_state = 5}, - [3946] = {.lex_state = 151, .external_lex_state = 5}, - [3947] = {.lex_state = 151, .external_lex_state = 5}, - [3948] = {.lex_state = 151, .external_lex_state = 5}, - [3949] = {.lex_state = 151, .external_lex_state = 5}, - [3950] = {.lex_state = 13, .external_lex_state = 2}, - [3951] = {.lex_state = 151, .external_lex_state = 5}, - [3952] = {.lex_state = 151, .external_lex_state = 2}, - [3953] = {.lex_state = 151, .external_lex_state = 2}, - [3954] = {.lex_state = 151, .external_lex_state = 5}, - [3955] = {.lex_state = 151, .external_lex_state = 5}, - [3956] = {.lex_state = 151, .external_lex_state = 5}, - [3957] = {.lex_state = 151, .external_lex_state = 2}, - [3958] = {.lex_state = 151, .external_lex_state = 5}, - [3959] = {.lex_state = 151, .external_lex_state = 5}, - [3960] = {.lex_state = 151, .external_lex_state = 5}, - [3961] = {.lex_state = 151, .external_lex_state = 2}, - [3962] = {.lex_state = 151, .external_lex_state = 5}, - [3963] = {.lex_state = 151, .external_lex_state = 5}, - [3964] = {.lex_state = 151, .external_lex_state = 5}, - [3965] = {.lex_state = 151, .external_lex_state = 5}, - [3966] = {.lex_state = 151, .external_lex_state = 5}, - [3967] = {.lex_state = 151, .external_lex_state = 5}, - [3968] = {.lex_state = 151, .external_lex_state = 2}, - [3969] = {.lex_state = 151, .external_lex_state = 5}, - [3970] = {.lex_state = 151, .external_lex_state = 5}, - [3971] = {.lex_state = 151, .external_lex_state = 5}, - [3972] = {.lex_state = 151, .external_lex_state = 5}, - [3973] = {.lex_state = 151, .external_lex_state = 5}, - [3974] = {.lex_state = 151, .external_lex_state = 5}, - [3975] = {.lex_state = 151, .external_lex_state = 5}, - [3976] = {.lex_state = 17, .external_lex_state = 2}, - [3977] = {.lex_state = 151, .external_lex_state = 5}, - [3978] = {.lex_state = 151, .external_lex_state = 5}, - [3979] = {.lex_state = 151, .external_lex_state = 5}, - [3980] = {.lex_state = 151, .external_lex_state = 2}, - [3981] = {.lex_state = 151, .external_lex_state = 5}, + [3801] = {.lex_state = 150, .external_lex_state = 6}, + [3802] = {.lex_state = 150, .external_lex_state = 5}, + [3803] = {.lex_state = 25, .external_lex_state = 2}, + [3804] = {.lex_state = 150, .external_lex_state = 6}, + [3805] = {.lex_state = 150, .external_lex_state = 6}, + [3806] = {.lex_state = 150, .external_lex_state = 2}, + [3807] = {.lex_state = 14, .external_lex_state = 2}, + [3808] = {.lex_state = 15, .external_lex_state = 2}, + [3809] = {.lex_state = 15, .external_lex_state = 2}, + [3810] = {.lex_state = 25, .external_lex_state = 2}, + [3811] = {.lex_state = 150, .external_lex_state = 6}, + [3812] = {.lex_state = 25, .external_lex_state = 2}, + [3813] = {.lex_state = 150, .external_lex_state = 6}, + [3814] = {.lex_state = 15, .external_lex_state = 2}, + [3815] = {.lex_state = 150, .external_lex_state = 6}, + [3816] = {.lex_state = 15, .external_lex_state = 2}, + [3817] = {.lex_state = 150, .external_lex_state = 6}, + [3818] = {.lex_state = 15, .external_lex_state = 2}, + [3819] = {.lex_state = 15, .external_lex_state = 2}, + [3820] = {.lex_state = 14, .external_lex_state = 2}, + [3821] = {.lex_state = 150, .external_lex_state = 6}, + [3822] = {.lex_state = 150, .external_lex_state = 5}, + [3823] = {.lex_state = 14, .external_lex_state = 2}, + [3824] = {.lex_state = 25, .external_lex_state = 2}, + [3825] = {.lex_state = 150, .external_lex_state = 6}, + [3826] = {.lex_state = 25, .external_lex_state = 2}, + [3827] = {.lex_state = 150, .external_lex_state = 6}, + [3828] = {.lex_state = 150, .external_lex_state = 5}, + [3829] = {.lex_state = 25, .external_lex_state = 2}, + [3830] = {.lex_state = 150, .external_lex_state = 6}, + [3831] = {.lex_state = 15, .external_lex_state = 2}, + [3832] = {.lex_state = 25, .external_lex_state = 2}, + [3833] = {.lex_state = 150, .external_lex_state = 6}, + [3834] = {.lex_state = 150, .external_lex_state = 5}, + [3835] = {.lex_state = 150, .external_lex_state = 2}, + [3836] = {.lex_state = 150, .external_lex_state = 5}, + [3837] = {.lex_state = 150, .external_lex_state = 5}, + [3838] = {.lex_state = 14, .external_lex_state = 2}, + [3839] = {.lex_state = 150, .external_lex_state = 5}, + [3840] = {.lex_state = 150, .external_lex_state = 2}, + [3841] = {.lex_state = 14, .external_lex_state = 2}, + [3842] = {.lex_state = 150, .external_lex_state = 2}, + [3843] = {.lex_state = 25, .external_lex_state = 2}, + [3844] = {.lex_state = 150, .external_lex_state = 5}, + [3845] = {.lex_state = 150, .external_lex_state = 2}, + [3846] = {.lex_state = 150, .external_lex_state = 5}, + [3847] = {.lex_state = 14, .external_lex_state = 2}, + [3848] = {.lex_state = 150, .external_lex_state = 5}, + [3849] = {.lex_state = 150, .external_lex_state = 6}, + [3850] = {.lex_state = 150, .external_lex_state = 5}, + [3851] = {.lex_state = 25, .external_lex_state = 2}, + [3852] = {.lex_state = 150, .external_lex_state = 5}, + [3853] = {.lex_state = 150, .external_lex_state = 6}, + [3854] = {.lex_state = 14, .external_lex_state = 2}, + [3855] = {.lex_state = 13, .external_lex_state = 2}, + [3856] = {.lex_state = 150, .external_lex_state = 5}, + [3857] = {.lex_state = 14, .external_lex_state = 2}, + [3858] = {.lex_state = 25, .external_lex_state = 2}, + [3859] = {.lex_state = 150, .external_lex_state = 5}, + [3860] = {.lex_state = 25, .external_lex_state = 2}, + [3861] = {.lex_state = 25, .external_lex_state = 2}, + [3862] = {.lex_state = 25, .external_lex_state = 2}, + [3863] = {.lex_state = 25, .external_lex_state = 2}, + [3864] = {.lex_state = 25, .external_lex_state = 2}, + [3865] = {.lex_state = 150, .external_lex_state = 5}, + [3866] = {.lex_state = 15, .external_lex_state = 2}, + [3867] = {.lex_state = 150, .external_lex_state = 5}, + [3868] = {.lex_state = 150, .external_lex_state = 2}, + [3869] = {.lex_state = 15, .external_lex_state = 2}, + [3870] = {.lex_state = 15, .external_lex_state = 2}, + [3871] = {.lex_state = 14, .external_lex_state = 2}, + [3872] = {.lex_state = 25, .external_lex_state = 2}, + [3873] = {.lex_state = 25, .external_lex_state = 2}, + [3874] = {.lex_state = 14, .external_lex_state = 2}, + [3875] = {.lex_state = 150, .external_lex_state = 6}, + [3876] = {.lex_state = 150, .external_lex_state = 6}, + [3877] = {.lex_state = 25, .external_lex_state = 2}, + [3878] = {.lex_state = 150, .external_lex_state = 6}, + [3879] = {.lex_state = 150, .external_lex_state = 6}, + [3880] = {.lex_state = 150, .external_lex_state = 6}, + [3881] = {.lex_state = 150, .external_lex_state = 6}, + [3882] = {.lex_state = 150, .external_lex_state = 6}, + [3883] = {.lex_state = 150, .external_lex_state = 6}, + [3884] = {.lex_state = 25, .external_lex_state = 2}, + [3885] = {.lex_state = 150, .external_lex_state = 6}, + [3886] = {.lex_state = 150, .external_lex_state = 6}, + [3887] = {.lex_state = 150, .external_lex_state = 5}, + [3888] = {.lex_state = 25, .external_lex_state = 2}, + [3889] = {.lex_state = 150, .external_lex_state = 6}, + [3890] = {.lex_state = 25, .external_lex_state = 2}, + [3891] = {.lex_state = 25, .external_lex_state = 2}, + [3892] = {.lex_state = 15, .external_lex_state = 2}, + [3893] = {.lex_state = 150, .external_lex_state = 6}, + [3894] = {.lex_state = 15, .external_lex_state = 2}, + [3895] = {.lex_state = 25, .external_lex_state = 2}, + [3896] = {.lex_state = 14, .external_lex_state = 2}, + [3897] = {.lex_state = 25, .external_lex_state = 2}, + [3898] = {.lex_state = 15, .external_lex_state = 2}, + [3899] = {.lex_state = 14, .external_lex_state = 2}, + [3900] = {.lex_state = 150, .external_lex_state = 6}, + [3901] = {.lex_state = 13, .external_lex_state = 2}, + [3902] = {.lex_state = 14, .external_lex_state = 2}, + [3903] = {.lex_state = 23, .external_lex_state = 7}, + [3904] = {.lex_state = 150, .external_lex_state = 2}, + [3905] = {.lex_state = 150, .external_lex_state = 2}, + [3906] = {.lex_state = 150, .external_lex_state = 2}, + [3907] = {.lex_state = 150, .external_lex_state = 2}, + [3908] = {.lex_state = 25, .external_lex_state = 2}, + [3909] = {.lex_state = 25, .external_lex_state = 2}, + [3910] = {.lex_state = 150, .external_lex_state = 5}, + [3911] = {.lex_state = 150, .external_lex_state = 5}, + [3912] = {.lex_state = 25, .external_lex_state = 2}, + [3913] = {.lex_state = 150, .external_lex_state = 5}, + [3914] = {.lex_state = 16, .external_lex_state = 2}, + [3915] = {.lex_state = 150, .external_lex_state = 2}, + [3916] = {.lex_state = 150, .external_lex_state = 2}, + [3917] = {.lex_state = 150, .external_lex_state = 2}, + [3918] = {.lex_state = 150, .external_lex_state = 2}, + [3919] = {.lex_state = 150, .external_lex_state = 2}, + [3920] = {.lex_state = 25, .external_lex_state = 2}, + [3921] = {.lex_state = 23, .external_lex_state = 7}, + [3922] = {.lex_state = 25, .external_lex_state = 2}, + [3923] = {.lex_state = 16, .external_lex_state = 2}, + [3924] = {.lex_state = 23, .external_lex_state = 7}, + [3925] = {.lex_state = 23, .external_lex_state = 7}, + [3926] = {.lex_state = 15, .external_lex_state = 2}, + [3927] = {.lex_state = 150, .external_lex_state = 5}, + [3928] = {.lex_state = 15, .external_lex_state = 2}, + [3929] = {.lex_state = 150, .external_lex_state = 5}, + [3930] = {.lex_state = 15, .external_lex_state = 2}, + [3931] = {.lex_state = 25, .external_lex_state = 2}, + [3932] = {.lex_state = 25, .external_lex_state = 2}, + [3933] = {.lex_state = 150, .external_lex_state = 6}, + [3934] = {.lex_state = 23, .external_lex_state = 7}, + [3935] = {.lex_state = 150, .external_lex_state = 2}, + [3936] = {.lex_state = 150, .external_lex_state = 5}, + [3937] = {.lex_state = 150, .external_lex_state = 2}, + [3938] = {.lex_state = 23, .external_lex_state = 7}, + [3939] = {.lex_state = 150, .external_lex_state = 2}, + [3940] = {.lex_state = 25, .external_lex_state = 2}, + [3941] = {.lex_state = 23, .external_lex_state = 7}, + [3942] = {.lex_state = 25, .external_lex_state = 2}, + [3943] = {.lex_state = 25, .external_lex_state = 2}, + [3944] = {.lex_state = 23, .external_lex_state = 7}, + [3945] = {.lex_state = 25, .external_lex_state = 2}, + [3946] = {.lex_state = 150, .external_lex_state = 5}, + [3947] = {.lex_state = 150, .external_lex_state = 2}, + [3948] = {.lex_state = 13, .external_lex_state = 2}, + [3949] = {.lex_state = 150, .external_lex_state = 2}, + [3950] = {.lex_state = 150, .external_lex_state = 5}, + [3951] = {.lex_state = 150, .external_lex_state = 2}, + [3952] = {.lex_state = 150, .external_lex_state = 5}, + [3953] = {.lex_state = 150, .external_lex_state = 5}, + [3954] = {.lex_state = 150, .external_lex_state = 5}, + [3955] = {.lex_state = 150, .external_lex_state = 5}, + [3956] = {.lex_state = 25, .external_lex_state = 2}, + [3957] = {.lex_state = 150, .external_lex_state = 5}, + [3958] = {.lex_state = 150, .external_lex_state = 5}, + [3959] = {.lex_state = 150, .external_lex_state = 2}, + [3960] = {.lex_state = 150, .external_lex_state = 5}, + [3961] = {.lex_state = 150, .external_lex_state = 5}, + [3962] = {.lex_state = 150, .external_lex_state = 2}, + [3963] = {.lex_state = 150, .external_lex_state = 2}, + [3964] = {.lex_state = 150, .external_lex_state = 2}, + [3965] = {.lex_state = 150, .external_lex_state = 2}, + [3966] = {.lex_state = 150, .external_lex_state = 5}, + [3967] = {.lex_state = 150, .external_lex_state = 5}, + [3968] = {.lex_state = 150, .external_lex_state = 5}, + [3969] = {.lex_state = 150, .external_lex_state = 2}, + [3970] = {.lex_state = 150, .external_lex_state = 5}, + [3971] = {.lex_state = 150, .external_lex_state = 5}, + [3972] = {.lex_state = 150, .external_lex_state = 2}, + [3973] = {.lex_state = 150, .external_lex_state = 2}, + [3974] = {.lex_state = 150, .external_lex_state = 2}, + [3975] = {.lex_state = 150, .external_lex_state = 5}, + [3976] = {.lex_state = 150, .external_lex_state = 5}, + [3977] = {.lex_state = 13, .external_lex_state = 2}, + [3978] = {.lex_state = 150, .external_lex_state = 5}, + [3979] = {.lex_state = 150, .external_lex_state = 5}, + [3980] = {.lex_state = 150, .external_lex_state = 5}, + [3981] = {.lex_state = 25, .external_lex_state = 2}, [3982] = {.lex_state = 13, .external_lex_state = 2}, - [3983] = {.lex_state = 151, .external_lex_state = 2}, - [3984] = {.lex_state = 151, .external_lex_state = 5}, - [3985] = {.lex_state = 151, .external_lex_state = 5}, - [3986] = {.lex_state = 151, .external_lex_state = 5}, - [3987] = {.lex_state = 151, .external_lex_state = 5}, - [3988] = {.lex_state = 151, .external_lex_state = 5}, - [3989] = {.lex_state = 151, .external_lex_state = 5}, - [3990] = {.lex_state = 24, .external_lex_state = 8}, - [3991] = {.lex_state = 151, .external_lex_state = 6}, - [3992] = {.lex_state = 151, .external_lex_state = 5}, - [3993] = {.lex_state = 151, .external_lex_state = 5}, - [3994] = {.lex_state = 151, .external_lex_state = 5}, - [3995] = {.lex_state = 5, .external_lex_state = 2}, - [3996] = {.lex_state = 26, .external_lex_state = 2}, - [3997] = {.lex_state = 151, .external_lex_state = 2}, - [3998] = {.lex_state = 151, .external_lex_state = 5}, - [3999] = {.lex_state = 151, .external_lex_state = 5}, - [4000] = {.lex_state = 151, .external_lex_state = 5}, - [4001] = {.lex_state = 151, .external_lex_state = 2}, - [4002] = {.lex_state = 151, .external_lex_state = 5}, - [4003] = {.lex_state = 151, .external_lex_state = 5}, - [4004] = {.lex_state = 151, .external_lex_state = 5}, - [4005] = {.lex_state = 151, .external_lex_state = 5}, - [4006] = {.lex_state = 151, .external_lex_state = 5}, - [4007] = {.lex_state = 151, .external_lex_state = 5}, - [4008] = {.lex_state = 151, .external_lex_state = 5}, - [4009] = {.lex_state = 151, .external_lex_state = 6}, - [4010] = {.lex_state = 151, .external_lex_state = 5}, - [4011] = {.lex_state = 151, .external_lex_state = 5}, - [4012] = {.lex_state = 13, .external_lex_state = 2}, - [4013] = {.lex_state = 13, .external_lex_state = 2}, - [4014] = {.lex_state = 151, .external_lex_state = 6}, - [4015] = {.lex_state = 151, .external_lex_state = 5}, - [4016] = {.lex_state = 151, .external_lex_state = 5}, - [4017] = {.lex_state = 24, .external_lex_state = 8}, - [4018] = {.lex_state = 151, .external_lex_state = 5}, - [4019] = {.lex_state = 151, .external_lex_state = 5}, - [4020] = {.lex_state = 151, .external_lex_state = 6}, - [4021] = {.lex_state = 151, .external_lex_state = 5}, - [4022] = {.lex_state = 151, .external_lex_state = 5}, - [4023] = {.lex_state = 151, .external_lex_state = 2}, - [4024] = {.lex_state = 151, .external_lex_state = 2}, - [4025] = {.lex_state = 151, .external_lex_state = 2}, - [4026] = {.lex_state = 151, .external_lex_state = 5}, - [4027] = {.lex_state = 151, .external_lex_state = 5}, - [4028] = {.lex_state = 13, .external_lex_state = 2}, - [4029] = {.lex_state = 151, .external_lex_state = 5}, - [4030] = {.lex_state = 151, .external_lex_state = 6}, - [4031] = {.lex_state = 151, .external_lex_state = 5}, - [4032] = {.lex_state = 151, .external_lex_state = 5}, - [4033] = {.lex_state = 151, .external_lex_state = 5}, - [4034] = {.lex_state = 151, .external_lex_state = 5}, - [4035] = {.lex_state = 151, .external_lex_state = 5}, - [4036] = {.lex_state = 13, .external_lex_state = 2}, - [4037] = {.lex_state = 151, .external_lex_state = 5}, - [4038] = {.lex_state = 151, .external_lex_state = 5}, - [4039] = {.lex_state = 151, .external_lex_state = 2}, - [4040] = {.lex_state = 151, .external_lex_state = 5}, - [4041] = {.lex_state = 151, .external_lex_state = 5}, - [4042] = {.lex_state = 151, .external_lex_state = 5}, - [4043] = {.lex_state = 151, .external_lex_state = 5}, - [4044] = {.lex_state = 151, .external_lex_state = 5}, - [4045] = {.lex_state = 151, .external_lex_state = 5}, - [4046] = {.lex_state = 151, .external_lex_state = 2}, - [4047] = {.lex_state = 151, .external_lex_state = 5}, - [4048] = {.lex_state = 16, .external_lex_state = 2}, - [4049] = {.lex_state = 151, .external_lex_state = 5}, - [4050] = {.lex_state = 151, .external_lex_state = 5}, - [4051] = {.lex_state = 151, .external_lex_state = 5}, - [4052] = {.lex_state = 151, .external_lex_state = 5}, - [4053] = {.lex_state = 13, .external_lex_state = 2}, - [4054] = {.lex_state = 151, .external_lex_state = 5}, - [4055] = {.lex_state = 151, .external_lex_state = 5}, - [4056] = {.lex_state = 151, .external_lex_state = 2}, - [4057] = {.lex_state = 151, .external_lex_state = 5}, - [4058] = {.lex_state = 151, .external_lex_state = 5}, - [4059] = {.lex_state = 151, .external_lex_state = 5}, - [4060] = {.lex_state = 151, .external_lex_state = 5}, - [4061] = {.lex_state = 13, .external_lex_state = 2}, - [4062] = {.lex_state = 151, .external_lex_state = 5}, - [4063] = {.lex_state = 151, .external_lex_state = 5}, - [4064] = {.lex_state = 13, .external_lex_state = 2}, - [4065] = {.lex_state = 151, .external_lex_state = 5}, - [4066] = {.lex_state = 151, .external_lex_state = 5}, + [3983] = {.lex_state = 150, .external_lex_state = 5}, + [3984] = {.lex_state = 150, .external_lex_state = 5}, + [3985] = {.lex_state = 25, .external_lex_state = 2}, + [3986] = {.lex_state = 150, .external_lex_state = 5}, + [3987] = {.lex_state = 150, .external_lex_state = 5}, + [3988] = {.lex_state = 13, .external_lex_state = 2}, + [3989] = {.lex_state = 150, .external_lex_state = 5}, + [3990] = {.lex_state = 150, .external_lex_state = 5}, + [3991] = {.lex_state = 150, .external_lex_state = 5}, + [3992] = {.lex_state = 150, .external_lex_state = 5}, + [3993] = {.lex_state = 150, .external_lex_state = 2}, + [3994] = {.lex_state = 150, .external_lex_state = 5}, + [3995] = {.lex_state = 150, .external_lex_state = 2}, + [3996] = {.lex_state = 150, .external_lex_state = 5}, + [3997] = {.lex_state = 150, .external_lex_state = 5}, + [3998] = {.lex_state = 150, .external_lex_state = 2}, + [3999] = {.lex_state = 13, .external_lex_state = 2}, + [4000] = {.lex_state = 150, .external_lex_state = 2}, + [4001] = {.lex_state = 150, .external_lex_state = 5}, + [4002] = {.lex_state = 150, .external_lex_state = 5}, + [4003] = {.lex_state = 150, .external_lex_state = 2}, + [4004] = {.lex_state = 150, .external_lex_state = 2}, + [4005] = {.lex_state = 150, .external_lex_state = 2}, + [4006] = {.lex_state = 150, .external_lex_state = 5}, + [4007] = {.lex_state = 150, .external_lex_state = 2}, + [4008] = {.lex_state = 150, .external_lex_state = 5}, + [4009] = {.lex_state = 150, .external_lex_state = 5}, + [4010] = {.lex_state = 13, .external_lex_state = 2}, + [4011] = {.lex_state = 150, .external_lex_state = 5}, + [4012] = {.lex_state = 150, .external_lex_state = 5}, + [4013] = {.lex_state = 150, .external_lex_state = 2}, + [4014] = {.lex_state = 150, .external_lex_state = 5}, + [4015] = {.lex_state = 150, .external_lex_state = 5}, + [4016] = {.lex_state = 150, .external_lex_state = 5}, + [4017] = {.lex_state = 13, .external_lex_state = 2}, + [4018] = {.lex_state = 150, .external_lex_state = 5}, + [4019] = {.lex_state = 150, .external_lex_state = 5}, + [4020] = {.lex_state = 150, .external_lex_state = 5}, + [4021] = {.lex_state = 150, .external_lex_state = 5}, + [4022] = {.lex_state = 150, .external_lex_state = 2}, + [4023] = {.lex_state = 13, .external_lex_state = 2}, + [4024] = {.lex_state = 150, .external_lex_state = 5}, + [4025] = {.lex_state = 150, .external_lex_state = 5}, + [4026] = {.lex_state = 150, .external_lex_state = 5}, + [4027] = {.lex_state = 150, .external_lex_state = 5}, + [4028] = {.lex_state = 150, .external_lex_state = 5}, + [4029] = {.lex_state = 150, .external_lex_state = 5}, + [4030] = {.lex_state = 150, .external_lex_state = 5}, + [4031] = {.lex_state = 150, .external_lex_state = 5}, + [4032] = {.lex_state = 13, .external_lex_state = 2}, + [4033] = {.lex_state = 150, .external_lex_state = 5}, + [4034] = {.lex_state = 150, .external_lex_state = 5}, + [4035] = {.lex_state = 150, .external_lex_state = 5}, + [4036] = {.lex_state = 150, .external_lex_state = 5}, + [4037] = {.lex_state = 150, .external_lex_state = 5}, + [4038] = {.lex_state = 150, .external_lex_state = 2}, + [4039] = {.lex_state = 150, .external_lex_state = 2}, + [4040] = {.lex_state = 13, .external_lex_state = 2}, + [4041] = {.lex_state = 150, .external_lex_state = 5}, + [4042] = {.lex_state = 150, .external_lex_state = 5}, + [4043] = {.lex_state = 150, .external_lex_state = 5}, + [4044] = {.lex_state = 150, .external_lex_state = 2}, + [4045] = {.lex_state = 150, .external_lex_state = 5}, + [4046] = {.lex_state = 150, .external_lex_state = 2}, + [4047] = {.lex_state = 150, .external_lex_state = 2}, + [4048] = {.lex_state = 13, .external_lex_state = 2}, + [4049] = {.lex_state = 150, .external_lex_state = 5}, + [4050] = {.lex_state = 150, .external_lex_state = 5}, + [4051] = {.lex_state = 150, .external_lex_state = 2}, + [4052] = {.lex_state = 150, .external_lex_state = 5}, + [4053] = {.lex_state = 150, .external_lex_state = 5}, + [4054] = {.lex_state = 13, .external_lex_state = 2}, + [4055] = {.lex_state = 150, .external_lex_state = 5}, + [4056] = {.lex_state = 150, .external_lex_state = 2}, + [4057] = {.lex_state = 150, .external_lex_state = 5}, + [4058] = {.lex_state = 150, .external_lex_state = 5}, + [4059] = {.lex_state = 150, .external_lex_state = 5}, + [4060] = {.lex_state = 150, .external_lex_state = 5}, + [4061] = {.lex_state = 150, .external_lex_state = 2}, + [4062] = {.lex_state = 150, .external_lex_state = 5}, + [4063] = {.lex_state = 150, .external_lex_state = 5}, + [4064] = {.lex_state = 150, .external_lex_state = 2}, + [4065] = {.lex_state = 13, .external_lex_state = 2}, + [4066] = {.lex_state = 13, .external_lex_state = 2}, [4067] = {.lex_state = 13, .external_lex_state = 2}, - [4068] = {.lex_state = 13, .external_lex_state = 2}, - [4069] = {.lex_state = 13, .external_lex_state = 2}, - [4070] = {.lex_state = 151, .external_lex_state = 5}, - [4071] = {.lex_state = 151, .external_lex_state = 5}, - [4072] = {.lex_state = 151, .external_lex_state = 5}, - [4073] = {.lex_state = 151, .external_lex_state = 5}, - [4074] = {.lex_state = 151, .external_lex_state = 5}, - [4075] = {.lex_state = 151, .external_lex_state = 5}, - [4076] = {.lex_state = 151, .external_lex_state = 5}, - [4077] = {.lex_state = 151, .external_lex_state = 5}, - [4078] = {.lex_state = 13, .external_lex_state = 2}, - [4079] = {.lex_state = 13, .external_lex_state = 2}, - [4080] = {.lex_state = 151, .external_lex_state = 5}, - [4081] = {.lex_state = 151, .external_lex_state = 5}, - [4082] = {.lex_state = 151, .external_lex_state = 5}, - [4083] = {.lex_state = 151, .external_lex_state = 5}, - [4084] = {.lex_state = 151, .external_lex_state = 5}, - [4085] = {.lex_state = 151, .external_lex_state = 2}, - [4086] = {.lex_state = 151, .external_lex_state = 2}, - [4087] = {.lex_state = 151, .external_lex_state = 5}, - [4088] = {.lex_state = 151, .external_lex_state = 2}, - [4089] = {.lex_state = 13, .external_lex_state = 2}, - [4090] = {.lex_state = 151, .external_lex_state = 6}, - [4091] = {.lex_state = 151, .external_lex_state = 5}, - [4092] = {.lex_state = 151, .external_lex_state = 5}, - [4093] = {.lex_state = 17, .external_lex_state = 2}, - [4094] = {.lex_state = 151, .external_lex_state = 5}, - [4095] = {.lex_state = 151, .external_lex_state = 5}, - [4096] = {.lex_state = 151, .external_lex_state = 5}, - [4097] = {.lex_state = 151, .external_lex_state = 5}, - [4098] = {.lex_state = 151, .external_lex_state = 5}, - [4099] = {.lex_state = 24, .external_lex_state = 8}, - [4100] = {.lex_state = 151, .external_lex_state = 6}, - [4101] = {.lex_state = 151, .external_lex_state = 5}, - [4102] = {.lex_state = 151, .external_lex_state = 5}, - [4103] = {.lex_state = 151, .external_lex_state = 5}, - [4104] = {.lex_state = 151, .external_lex_state = 5}, - [4105] = {.lex_state = 151, .external_lex_state = 5}, - [4106] = {.lex_state = 151, .external_lex_state = 5}, - [4107] = {.lex_state = 151, .external_lex_state = 5}, - [4108] = {.lex_state = 151, .external_lex_state = 5}, - [4109] = {.lex_state = 13, .external_lex_state = 2}, - [4110] = {.lex_state = 24, .external_lex_state = 8}, - [4111] = {.lex_state = 151, .external_lex_state = 6}, - [4112] = {.lex_state = 151, .external_lex_state = 5}, - [4113] = {.lex_state = 151, .external_lex_state = 5}, - [4114] = {.lex_state = 151, .external_lex_state = 5}, - [4115] = {.lex_state = 151, .external_lex_state = 5}, - [4116] = {.lex_state = 151, .external_lex_state = 5}, - [4117] = {.lex_state = 13, .external_lex_state = 2}, - [4118] = {.lex_state = 151, .external_lex_state = 5}, - [4119] = {.lex_state = 151, .external_lex_state = 5}, - [4120] = {.lex_state = 151, .external_lex_state = 5}, - [4121] = {.lex_state = 151, .external_lex_state = 5}, - [4122] = {.lex_state = 151, .external_lex_state = 5}, - [4123] = {.lex_state = 151, .external_lex_state = 5}, - [4124] = {.lex_state = 151, .external_lex_state = 5}, - [4125] = {.lex_state = 17, .external_lex_state = 2}, - [4126] = {.lex_state = 24, .external_lex_state = 8}, - [4127] = {.lex_state = 151, .external_lex_state = 5}, - [4128] = {.lex_state = 151, .external_lex_state = 5}, - [4129] = {.lex_state = 151, .external_lex_state = 5}, - [4130] = {.lex_state = 151, .external_lex_state = 5}, - [4131] = {.lex_state = 24, .external_lex_state = 8}, - [4132] = {.lex_state = 26, .external_lex_state = 2}, - [4133] = {.lex_state = 151, .external_lex_state = 5}, - [4134] = {.lex_state = 151, .external_lex_state = 5}, - [4135] = {.lex_state = 151, .external_lex_state = 5}, - [4136] = {.lex_state = 151, .external_lex_state = 5}, - [4137] = {.lex_state = 151, .external_lex_state = 5}, - [4138] = {.lex_state = 24, .external_lex_state = 8}, - [4139] = {.lex_state = 151, .external_lex_state = 5}, - [4140] = {.lex_state = 13, .external_lex_state = 2}, - [4141] = {.lex_state = 151, .external_lex_state = 5}, - [4142] = {.lex_state = 151, .external_lex_state = 5}, - [4143] = {.lex_state = 24, .external_lex_state = 8}, - [4144] = {.lex_state = 151, .external_lex_state = 5}, - [4145] = {.lex_state = 151, .external_lex_state = 5}, - [4146] = {.lex_state = 151, .external_lex_state = 5}, - [4147] = {.lex_state = 151, .external_lex_state = 2}, - [4148] = {.lex_state = 151, .external_lex_state = 5}, - [4149] = {.lex_state = 151, .external_lex_state = 5}, - [4150] = {.lex_state = 151, .external_lex_state = 5}, - [4151] = {.lex_state = 151, .external_lex_state = 2}, - [4152] = {.lex_state = 151, .external_lex_state = 5}, - [4153] = {.lex_state = 151, .external_lex_state = 2}, - [4154] = {.lex_state = 151, .external_lex_state = 2}, - [4155] = {.lex_state = 13, .external_lex_state = 2}, - [4156] = {.lex_state = 151, .external_lex_state = 5}, - [4157] = {.lex_state = 151, .external_lex_state = 5}, - [4158] = {.lex_state = 13, .external_lex_state = 2}, - [4159] = {.lex_state = 13, .external_lex_state = 2}, - [4160] = {.lex_state = 151, .external_lex_state = 5}, - [4161] = {.lex_state = 151, .external_lex_state = 5}, - [4162] = {.lex_state = 151, .external_lex_state = 5}, - [4163] = {.lex_state = 151, .external_lex_state = 5}, - [4164] = {.lex_state = 151, .external_lex_state = 5}, - [4165] = {.lex_state = 151, .external_lex_state = 5}, - [4166] = {.lex_state = 151, .external_lex_state = 5}, - [4167] = {.lex_state = 151, .external_lex_state = 5}, - [4168] = {.lex_state = 151, .external_lex_state = 5}, - [4169] = {.lex_state = 151, .external_lex_state = 5}, - [4170] = {.lex_state = 13, .external_lex_state = 2}, - [4171] = {.lex_state = 151, .external_lex_state = 5}, - [4172] = {.lex_state = 151, .external_lex_state = 5}, - [4173] = {.lex_state = 151, .external_lex_state = 5}, - [4174] = {.lex_state = 151, .external_lex_state = 2}, - [4175] = {.lex_state = 13, .external_lex_state = 2}, - [4176] = {.lex_state = 151, .external_lex_state = 5}, - [4177] = {.lex_state = 13, .external_lex_state = 2}, - [4178] = {.lex_state = 13, .external_lex_state = 2}, - [4179] = {.lex_state = 151, .external_lex_state = 5}, + [4068] = {.lex_state = 150, .external_lex_state = 5}, + [4069] = {.lex_state = 150, .external_lex_state = 5}, + [4070] = {.lex_state = 150, .external_lex_state = 2}, + [4071] = {.lex_state = 150, .external_lex_state = 5}, + [4072] = {.lex_state = 150, .external_lex_state = 5}, + [4073] = {.lex_state = 150, .external_lex_state = 5}, + [4074] = {.lex_state = 150, .external_lex_state = 5}, + [4075] = {.lex_state = 150, .external_lex_state = 5}, + [4076] = {.lex_state = 150, .external_lex_state = 5}, + [4077] = {.lex_state = 150, .external_lex_state = 5}, + [4078] = {.lex_state = 150, .external_lex_state = 2}, + [4079] = {.lex_state = 150, .external_lex_state = 2}, + [4080] = {.lex_state = 150, .external_lex_state = 5}, + [4081] = {.lex_state = 150, .external_lex_state = 2}, + [4082] = {.lex_state = 150, .external_lex_state = 2}, + [4083] = {.lex_state = 150, .external_lex_state = 5}, + [4084] = {.lex_state = 150, .external_lex_state = 2}, + [4085] = {.lex_state = 150, .external_lex_state = 2}, + [4086] = {.lex_state = 150, .external_lex_state = 5}, + [4087] = {.lex_state = 150, .external_lex_state = 5}, + [4088] = {.lex_state = 150, .external_lex_state = 5}, + [4089] = {.lex_state = 150, .external_lex_state = 5}, + [4090] = {.lex_state = 150, .external_lex_state = 2}, + [4091] = {.lex_state = 150, .external_lex_state = 5}, + [4092] = {.lex_state = 150, .external_lex_state = 5}, + [4093] = {.lex_state = 150, .external_lex_state = 5}, + [4094] = {.lex_state = 150, .external_lex_state = 5}, + [4095] = {.lex_state = 150, .external_lex_state = 5}, + [4096] = {.lex_state = 150, .external_lex_state = 5}, + [4097] = {.lex_state = 13, .external_lex_state = 2}, + [4098] = {.lex_state = 150, .external_lex_state = 2}, + [4099] = {.lex_state = 150, .external_lex_state = 2}, + [4100] = {.lex_state = 13, .external_lex_state = 2}, + [4101] = {.lex_state = 150, .external_lex_state = 2}, + [4102] = {.lex_state = 150, .external_lex_state = 5}, + [4103] = {.lex_state = 150, .external_lex_state = 5}, + [4104] = {.lex_state = 150, .external_lex_state = 5}, + [4105] = {.lex_state = 150, .external_lex_state = 2}, + [4106] = {.lex_state = 150, .external_lex_state = 5}, + [4107] = {.lex_state = 13, .external_lex_state = 2}, + [4108] = {.lex_state = 150, .external_lex_state = 5}, + [4109] = {.lex_state = 150, .external_lex_state = 5}, + [4110] = {.lex_state = 150, .external_lex_state = 5}, + [4111] = {.lex_state = 150, .external_lex_state = 5}, + [4112] = {.lex_state = 150, .external_lex_state = 5}, + [4113] = {.lex_state = 150, .external_lex_state = 5}, + [4114] = {.lex_state = 150, .external_lex_state = 5}, + [4115] = {.lex_state = 13, .external_lex_state = 2}, + [4116] = {.lex_state = 150, .external_lex_state = 5}, + [4117] = {.lex_state = 150, .external_lex_state = 5}, + [4118] = {.lex_state = 150, .external_lex_state = 5}, + [4119] = {.lex_state = 150, .external_lex_state = 5}, + [4120] = {.lex_state = 150, .external_lex_state = 5}, + [4121] = {.lex_state = 150, .external_lex_state = 5}, + [4122] = {.lex_state = 150, .external_lex_state = 5}, + [4123] = {.lex_state = 150, .external_lex_state = 5}, + [4124] = {.lex_state = 150, .external_lex_state = 5}, + [4125] = {.lex_state = 150, .external_lex_state = 2}, + [4126] = {.lex_state = 150, .external_lex_state = 5}, + [4127] = {.lex_state = 150, .external_lex_state = 2}, + [4128] = {.lex_state = 150, .external_lex_state = 5}, + [4129] = {.lex_state = 150, .external_lex_state = 5}, + [4130] = {.lex_state = 150, .external_lex_state = 5}, + [4131] = {.lex_state = 150, .external_lex_state = 5}, + [4132] = {.lex_state = 150, .external_lex_state = 5}, + [4133] = {.lex_state = 25, .external_lex_state = 2}, + [4134] = {.lex_state = 150, .external_lex_state = 2}, + [4135] = {.lex_state = 150, .external_lex_state = 2}, + [4136] = {.lex_state = 150, .external_lex_state = 5}, + [4137] = {.lex_state = 150, .external_lex_state = 5}, + [4138] = {.lex_state = 150, .external_lex_state = 5}, + [4139] = {.lex_state = 150, .external_lex_state = 5}, + [4140] = {.lex_state = 150, .external_lex_state = 5}, + [4141] = {.lex_state = 150, .external_lex_state = 5}, + [4142] = {.lex_state = 150, .external_lex_state = 5}, + [4143] = {.lex_state = 150, .external_lex_state = 5}, + [4144] = {.lex_state = 150, .external_lex_state = 5}, + [4145] = {.lex_state = 150, .external_lex_state = 5}, + [4146] = {.lex_state = 150, .external_lex_state = 5}, + [4147] = {.lex_state = 150, .external_lex_state = 5}, + [4148] = {.lex_state = 150, .external_lex_state = 2}, + [4149] = {.lex_state = 150, .external_lex_state = 5}, + [4150] = {.lex_state = 150, .external_lex_state = 5}, + [4151] = {.lex_state = 150, .external_lex_state = 5}, + [4152] = {.lex_state = 150, .external_lex_state = 2}, + [4153] = {.lex_state = 150, .external_lex_state = 5}, + [4154] = {.lex_state = 150, .external_lex_state = 5}, + [4155] = {.lex_state = 150, .external_lex_state = 5}, + [4156] = {.lex_state = 150, .external_lex_state = 5}, + [4157] = {.lex_state = 150, .external_lex_state = 5}, + [4158] = {.lex_state = 150, .external_lex_state = 5}, + [4159] = {.lex_state = 150, .external_lex_state = 2}, + [4160] = {.lex_state = 150, .external_lex_state = 5}, + [4161] = {.lex_state = 150, .external_lex_state = 5}, + [4162] = {.lex_state = 150, .external_lex_state = 5}, + [4163] = {.lex_state = 150, .external_lex_state = 2}, + [4164] = {.lex_state = 150, .external_lex_state = 2}, + [4165] = {.lex_state = 150, .external_lex_state = 5}, + [4166] = {.lex_state = 150, .external_lex_state = 5}, + [4167] = {.lex_state = 150, .external_lex_state = 5}, + [4168] = {.lex_state = 150, .external_lex_state = 5}, + [4169] = {.lex_state = 150, .external_lex_state = 2}, + [4170] = {.lex_state = 150, .external_lex_state = 5}, + [4171] = {.lex_state = 150, .external_lex_state = 5}, + [4172] = {.lex_state = 150, .external_lex_state = 2}, + [4173] = {.lex_state = 13, .external_lex_state = 2}, + [4174] = {.lex_state = 150, .external_lex_state = 5}, + [4175] = {.lex_state = 150, .external_lex_state = 5}, + [4176] = {.lex_state = 150, .external_lex_state = 2}, + [4177] = {.lex_state = 1, .external_lex_state = 2}, + [4178] = {.lex_state = 150, .external_lex_state = 2}, + [4179] = {.lex_state = 150, .external_lex_state = 6}, [4180] = {.lex_state = 13, .external_lex_state = 2}, - [4181] = {.lex_state = 151, .external_lex_state = 5}, + [4181] = {.lex_state = 150, .external_lex_state = 2}, [4182] = {.lex_state = 13, .external_lex_state = 2}, - [4183] = {.lex_state = 151, .external_lex_state = 5}, - [4184] = {.lex_state = 151, .external_lex_state = 5}, - [4185] = {.lex_state = 151, .external_lex_state = 5}, - [4186] = {.lex_state = 151, .external_lex_state = 5}, - [4187] = {.lex_state = 151, .external_lex_state = 5}, - [4188] = {.lex_state = 151, .external_lex_state = 5}, - [4189] = {.lex_state = 151, .external_lex_state = 5}, - [4190] = {.lex_state = 151, .external_lex_state = 5}, - [4191] = {.lex_state = 151, .external_lex_state = 5}, + [4183] = {.lex_state = 13, .external_lex_state = 2}, + [4184] = {.lex_state = 13, .external_lex_state = 2}, + [4185] = {.lex_state = 13, .external_lex_state = 2}, + [4186] = {.lex_state = 13, .external_lex_state = 2}, + [4187] = {.lex_state = 13, .external_lex_state = 2}, + [4188] = {.lex_state = 13, .external_lex_state = 2}, + [4189] = {.lex_state = 13, .external_lex_state = 2}, + [4190] = {.lex_state = 150, .external_lex_state = 2}, + [4191] = {.lex_state = 150, .external_lex_state = 2}, [4192] = {.lex_state = 13, .external_lex_state = 2}, [4193] = {.lex_state = 13, .external_lex_state = 2}, - [4194] = {.lex_state = 151, .external_lex_state = 5}, - [4195] = {.lex_state = 13, .external_lex_state = 2}, + [4194] = {.lex_state = 150, .external_lex_state = 6}, + [4195] = {.lex_state = 150, .external_lex_state = 2}, [4196] = {.lex_state = 13, .external_lex_state = 2}, - [4197] = {.lex_state = 151, .external_lex_state = 5}, - [4198] = {.lex_state = 151, .external_lex_state = 5}, - [4199] = {.lex_state = 151, .external_lex_state = 5}, - [4200] = {.lex_state = 151, .external_lex_state = 5}, - [4201] = {.lex_state = 151, .external_lex_state = 5}, + [4197] = {.lex_state = 13, .external_lex_state = 2}, + [4198] = {.lex_state = 150, .external_lex_state = 6}, + [4199] = {.lex_state = 13, .external_lex_state = 2}, + [4200] = {.lex_state = 13, .external_lex_state = 2}, + [4201] = {.lex_state = 150, .external_lex_state = 2}, [4202] = {.lex_state = 13, .external_lex_state = 2}, [4203] = {.lex_state = 13, .external_lex_state = 2}, - [4204] = {.lex_state = 151, .external_lex_state = 5}, - [4205] = {.lex_state = 151, .external_lex_state = 5}, + [4204] = {.lex_state = 13, .external_lex_state = 2}, + [4205] = {.lex_state = 13, .external_lex_state = 2}, [4206] = {.lex_state = 13, .external_lex_state = 2}, [4207] = {.lex_state = 13, .external_lex_state = 2}, - [4208] = {.lex_state = 151, .external_lex_state = 5}, - [4209] = {.lex_state = 151, .external_lex_state = 5}, - [4210] = {.lex_state = 13, .external_lex_state = 2}, - [4211] = {.lex_state = 151, .external_lex_state = 5}, + [4208] = {.lex_state = 13, .external_lex_state = 2}, + [4209] = {.lex_state = 13, .external_lex_state = 2}, + [4210] = {.lex_state = 150, .external_lex_state = 6}, + [4211] = {.lex_state = 15, .external_lex_state = 2}, [4212] = {.lex_state = 13, .external_lex_state = 2}, - [4213] = {.lex_state = 151, .external_lex_state = 5}, - [4214] = {.lex_state = 151, .external_lex_state = 5}, - [4215] = {.lex_state = 151, .external_lex_state = 5}, - [4216] = {.lex_state = 151, .external_lex_state = 5}, - [4217] = {.lex_state = 151, .external_lex_state = 5}, - [4218] = {.lex_state = 151, .external_lex_state = 5}, + [4213] = {.lex_state = 13, .external_lex_state = 2}, + [4214] = {.lex_state = 150, .external_lex_state = 2}, + [4215] = {.lex_state = 13, .external_lex_state = 2}, + [4216] = {.lex_state = 150, .external_lex_state = 5}, + [4217] = {.lex_state = 13, .external_lex_state = 2}, + [4218] = {.lex_state = 13, .external_lex_state = 2}, [4219] = {.lex_state = 13, .external_lex_state = 2}, - [4220] = {.lex_state = 151, .external_lex_state = 5}, - [4221] = {.lex_state = 151, .external_lex_state = 5}, + [4220] = {.lex_state = 150, .external_lex_state = 2}, + [4221] = {.lex_state = 150, .external_lex_state = 6}, [4222] = {.lex_state = 13, .external_lex_state = 2}, - [4223] = {.lex_state = 151, .external_lex_state = 5}, + [4223] = {.lex_state = 1, .external_lex_state = 2}, [4224] = {.lex_state = 13, .external_lex_state = 2}, - [4225] = {.lex_state = 17, .external_lex_state = 2}, - [4226] = {.lex_state = 151, .external_lex_state = 5}, - [4227] = {.lex_state = 151, .external_lex_state = 2}, - [4228] = {.lex_state = 151, .external_lex_state = 5}, - [4229] = {.lex_state = 151, .external_lex_state = 5}, - [4230] = {.lex_state = 151, .external_lex_state = 5}, - [4231] = {.lex_state = 151, .external_lex_state = 5}, - [4232] = {.lex_state = 151, .external_lex_state = 2}, - [4233] = {.lex_state = 24, .external_lex_state = 8}, - [4234] = {.lex_state = 13, .external_lex_state = 2}, - [4235] = {.lex_state = 13, .external_lex_state = 2}, - [4236] = {.lex_state = 151, .external_lex_state = 5}, - [4237] = {.lex_state = 151, .external_lex_state = 5}, - [4238] = {.lex_state = 26, .external_lex_state = 2}, - [4239] = {.lex_state = 26, .external_lex_state = 2}, - [4240] = {.lex_state = 151, .external_lex_state = 5}, - [4241] = {.lex_state = 151, .external_lex_state = 5}, - [4242] = {.lex_state = 151, .external_lex_state = 5}, - [4243] = {.lex_state = 151, .external_lex_state = 5}, - [4244] = {.lex_state = 151, .external_lex_state = 5}, - [4245] = {.lex_state = 151, .external_lex_state = 5}, - [4246] = {.lex_state = 151, .external_lex_state = 5}, - [4247] = {.lex_state = 151, .external_lex_state = 5}, - [4248] = {.lex_state = 151, .external_lex_state = 5}, - [4249] = {.lex_state = 151, .external_lex_state = 5}, - [4250] = {.lex_state = 151, .external_lex_state = 2}, - [4251] = {.lex_state = 151, .external_lex_state = 5}, + [4225] = {.lex_state = 13, .external_lex_state = 2}, + [4226] = {.lex_state = 23, .external_lex_state = 7}, + [4227] = {.lex_state = 13, .external_lex_state = 2}, + [4228] = {.lex_state = 13, .external_lex_state = 2}, + [4229] = {.lex_state = 13, .external_lex_state = 2}, + [4230] = {.lex_state = 13, .external_lex_state = 2}, + [4231] = {.lex_state = 13, .external_lex_state = 2}, + [4232] = {.lex_state = 13, .external_lex_state = 2}, + [4233] = {.lex_state = 150, .external_lex_state = 6}, + [4234] = {.lex_state = 150, .external_lex_state = 2}, + [4235] = {.lex_state = 25, .external_lex_state = 2}, + [4236] = {.lex_state = 13, .external_lex_state = 2}, + [4237] = {.lex_state = 13, .external_lex_state = 2}, + [4238] = {.lex_state = 13, .external_lex_state = 2}, + [4239] = {.lex_state = 13, .external_lex_state = 2}, + [4240] = {.lex_state = 13, .external_lex_state = 2}, + [4241] = {.lex_state = 13, .external_lex_state = 2}, + [4242] = {.lex_state = 13, .external_lex_state = 2}, + [4243] = {.lex_state = 150, .external_lex_state = 5}, + [4244] = {.lex_state = 1, .external_lex_state = 2}, + [4245] = {.lex_state = 13, .external_lex_state = 2}, + [4246] = {.lex_state = 13, .external_lex_state = 2}, + [4247] = {.lex_state = 13, .external_lex_state = 2}, + [4248] = {.lex_state = 150, .external_lex_state = 2}, + [4249] = {.lex_state = 13, .external_lex_state = 2}, + [4250] = {.lex_state = 16, .external_lex_state = 2}, + [4251] = {.lex_state = 13, .external_lex_state = 2}, [4252] = {.lex_state = 13, .external_lex_state = 2}, - [4253] = {.lex_state = 151, .external_lex_state = 5}, - [4254] = {.lex_state = 151, .external_lex_state = 5}, - [4255] = {.lex_state = 151, .external_lex_state = 2}, - [4256] = {.lex_state = 151, .external_lex_state = 2}, - [4257] = {.lex_state = 151, .external_lex_state = 5}, + [4253] = {.lex_state = 13, .external_lex_state = 2}, + [4254] = {.lex_state = 13, .external_lex_state = 2}, + [4255] = {.lex_state = 150, .external_lex_state = 6}, + [4256] = {.lex_state = 13, .external_lex_state = 2}, + [4257] = {.lex_state = 13, .external_lex_state = 2}, [4258] = {.lex_state = 13, .external_lex_state = 2}, - [4259] = {.lex_state = 26, .external_lex_state = 2}, - [4260] = {.lex_state = 26, .external_lex_state = 2}, + [4259] = {.lex_state = 13, .external_lex_state = 2}, + [4260] = {.lex_state = 13, .external_lex_state = 2}, [4261] = {.lex_state = 13, .external_lex_state = 2}, - [4262] = {.lex_state = 151, .external_lex_state = 2}, + [4262] = {.lex_state = 150, .external_lex_state = 5}, [4263] = {.lex_state = 13, .external_lex_state = 2}, - [4264] = {.lex_state = 151, .external_lex_state = 5}, - [4265] = {.lex_state = 151, .external_lex_state = 5}, - [4266] = {.lex_state = 151, .external_lex_state = 2}, - [4267] = {.lex_state = 151, .external_lex_state = 5}, - [4268] = {.lex_state = 151, .external_lex_state = 2}, - [4269] = {.lex_state = 151, .external_lex_state = 5}, - [4270] = {.lex_state = 151, .external_lex_state = 2}, + [4264] = {.lex_state = 150, .external_lex_state = 2}, + [4265] = {.lex_state = 13, .external_lex_state = 2}, + [4266] = {.lex_state = 150, .external_lex_state = 2}, + [4267] = {.lex_state = 13, .external_lex_state = 2}, + [4268] = {.lex_state = 13, .external_lex_state = 2}, + [4269] = {.lex_state = 13, .external_lex_state = 2}, + [4270] = {.lex_state = 150, .external_lex_state = 6}, [4271] = {.lex_state = 13, .external_lex_state = 2}, - [4272] = {.lex_state = 151, .external_lex_state = 5}, - [4273] = {.lex_state = 151, .external_lex_state = 2}, - [4274] = {.lex_state = 151, .external_lex_state = 2}, - [4275] = {.lex_state = 26, .external_lex_state = 2}, - [4276] = {.lex_state = 26, .external_lex_state = 2}, - [4277] = {.lex_state = 151, .external_lex_state = 5}, - [4278] = {.lex_state = 151, .external_lex_state = 5}, - [4279] = {.lex_state = 26, .external_lex_state = 2}, - [4280] = {.lex_state = 26, .external_lex_state = 2}, - [4281] = {.lex_state = 151, .external_lex_state = 5}, - [4282] = {.lex_state = 151, .external_lex_state = 5}, - [4283] = {.lex_state = 151, .external_lex_state = 2}, - [4284] = {.lex_state = 151, .external_lex_state = 2}, - [4285] = {.lex_state = 151, .external_lex_state = 5}, - [4286] = {.lex_state = 151, .external_lex_state = 5}, - [4287] = {.lex_state = 151, .external_lex_state = 5}, - [4288] = {.lex_state = 151, .external_lex_state = 5}, - [4289] = {.lex_state = 151, .external_lex_state = 5}, - [4290] = {.lex_state = 151, .external_lex_state = 5}, - [4291] = {.lex_state = 151, .external_lex_state = 5}, - [4292] = {.lex_state = 26, .external_lex_state = 2}, - [4293] = {.lex_state = 26, .external_lex_state = 2}, - [4294] = {.lex_state = 26, .external_lex_state = 2}, - [4295] = {.lex_state = 26, .external_lex_state = 2}, - [4296] = {.lex_state = 151, .external_lex_state = 2}, - [4297] = {.lex_state = 26, .external_lex_state = 2}, - [4298] = {.lex_state = 151, .external_lex_state = 2}, - [4299] = {.lex_state = 26, .external_lex_state = 2}, - [4300] = {.lex_state = 151, .external_lex_state = 2}, - [4301] = {.lex_state = 151, .external_lex_state = 5}, + [4272] = {.lex_state = 13, .external_lex_state = 2}, + [4273] = {.lex_state = 150, .external_lex_state = 6}, + [4274] = {.lex_state = 13, .external_lex_state = 2}, + [4275] = {.lex_state = 13, .external_lex_state = 2}, + [4276] = {.lex_state = 150, .external_lex_state = 2}, + [4277] = {.lex_state = 150, .external_lex_state = 5}, + [4278] = {.lex_state = 13, .external_lex_state = 2}, + [4279] = {.lex_state = 23, .external_lex_state = 7}, + [4280] = {.lex_state = 13, .external_lex_state = 2}, + [4281] = {.lex_state = 13, .external_lex_state = 2}, + [4282] = {.lex_state = 13, .external_lex_state = 2}, + [4283] = {.lex_state = 13, .external_lex_state = 2}, + [4284] = {.lex_state = 150, .external_lex_state = 5}, + [4285] = {.lex_state = 13, .external_lex_state = 2}, + [4286] = {.lex_state = 1, .external_lex_state = 2}, + [4287] = {.lex_state = 13, .external_lex_state = 2}, + [4288] = {.lex_state = 13, .external_lex_state = 2}, + [4289] = {.lex_state = 13, .external_lex_state = 2}, + [4290] = {.lex_state = 13, .external_lex_state = 2}, + [4291] = {.lex_state = 13, .external_lex_state = 2}, + [4292] = {.lex_state = 13, .external_lex_state = 2}, + [4293] = {.lex_state = 13, .external_lex_state = 2}, + [4294] = {.lex_state = 13, .external_lex_state = 2}, + [4295] = {.lex_state = 13, .external_lex_state = 2}, + [4296] = {.lex_state = 13, .external_lex_state = 2}, + [4297] = {.lex_state = 13, .external_lex_state = 2}, + [4298] = {.lex_state = 13, .external_lex_state = 2}, + [4299] = {.lex_state = 13, .external_lex_state = 2}, + [4300] = {.lex_state = 150, .external_lex_state = 2}, + [4301] = {.lex_state = 13, .external_lex_state = 2}, [4302] = {.lex_state = 13, .external_lex_state = 2}, - [4303] = {.lex_state = 151, .external_lex_state = 5}, - [4304] = {.lex_state = 13, .external_lex_state = 2}, - [4305] = {.lex_state = 151, .external_lex_state = 5}, - [4306] = {.lex_state = 151, .external_lex_state = 5}, - [4307] = {.lex_state = 151, .external_lex_state = 5}, - [4308] = {.lex_state = 26, .external_lex_state = 2}, - [4309] = {.lex_state = 26, .external_lex_state = 2}, - [4310] = {.lex_state = 151, .external_lex_state = 5}, - [4311] = {.lex_state = 151, .external_lex_state = 5}, - [4312] = {.lex_state = 151, .external_lex_state = 5}, - [4313] = {.lex_state = 13, .external_lex_state = 2}, - [4314] = {.lex_state = 151, .external_lex_state = 5}, - [4315] = {.lex_state = 151, .external_lex_state = 5}, - [4316] = {.lex_state = 151, .external_lex_state = 5}, - [4317] = {.lex_state = 151, .external_lex_state = 2}, - [4318] = {.lex_state = 151, .external_lex_state = 5}, - [4319] = {.lex_state = 26, .external_lex_state = 2}, - [4320] = {.lex_state = 26, .external_lex_state = 2}, - [4321] = {.lex_state = 151, .external_lex_state = 5}, - [4322] = {.lex_state = 151, .external_lex_state = 5}, - [4323] = {.lex_state = 151, .external_lex_state = 5}, - [4324] = {.lex_state = 151, .external_lex_state = 2}, - [4325] = {.lex_state = 151, .external_lex_state = 5}, - [4326] = {.lex_state = 151, .external_lex_state = 5}, - [4327] = {.lex_state = 151, .external_lex_state = 5}, - [4328] = {.lex_state = 151, .external_lex_state = 5}, - [4329] = {.lex_state = 151, .external_lex_state = 5}, - [4330] = {.lex_state = 151, .external_lex_state = 5}, + [4303] = {.lex_state = 13, .external_lex_state = 2}, + [4304] = {.lex_state = 150, .external_lex_state = 5}, + [4305] = {.lex_state = 13, .external_lex_state = 2}, + [4306] = {.lex_state = 13, .external_lex_state = 2}, + [4307] = {.lex_state = 13, .external_lex_state = 2}, + [4308] = {.lex_state = 150, .external_lex_state = 5}, + [4309] = {.lex_state = 13, .external_lex_state = 2}, + [4310] = {.lex_state = 13, .external_lex_state = 2}, + [4311] = {.lex_state = 13, .external_lex_state = 2}, + [4312] = {.lex_state = 13, .external_lex_state = 2}, + [4313] = {.lex_state = 25, .external_lex_state = 2}, + [4314] = {.lex_state = 13, .external_lex_state = 2}, + [4315] = {.lex_state = 16, .external_lex_state = 2}, + [4316] = {.lex_state = 13, .external_lex_state = 2}, + [4317] = {.lex_state = 150, .external_lex_state = 5}, + [4318] = {.lex_state = 23, .external_lex_state = 7}, + [4319] = {.lex_state = 23, .external_lex_state = 7}, + [4320] = {.lex_state = 150, .external_lex_state = 5}, + [4321] = {.lex_state = 13, .external_lex_state = 2}, + [4322] = {.lex_state = 13, .external_lex_state = 2}, + [4323] = {.lex_state = 13, .external_lex_state = 2}, + [4324] = {.lex_state = 13, .external_lex_state = 2}, + [4325] = {.lex_state = 13, .external_lex_state = 2}, + [4326] = {.lex_state = 13, .external_lex_state = 2}, + [4327] = {.lex_state = 1, .external_lex_state = 2}, + [4328] = {.lex_state = 13, .external_lex_state = 2}, + [4329] = {.lex_state = 150, .external_lex_state = 6}, + [4330] = {.lex_state = 13, .external_lex_state = 2}, [4331] = {.lex_state = 13, .external_lex_state = 2}, - [4332] = {.lex_state = 151, .external_lex_state = 5}, - [4333] = {.lex_state = 151, .external_lex_state = 2}, - [4334] = {.lex_state = 151, .external_lex_state = 5}, - [4335] = {.lex_state = 151, .external_lex_state = 5}, - [4336] = {.lex_state = 151, .external_lex_state = 5}, + [4332] = {.lex_state = 13, .external_lex_state = 2}, + [4333] = {.lex_state = 13, .external_lex_state = 2}, + [4334] = {.lex_state = 13, .external_lex_state = 2}, + [4335] = {.lex_state = 13, .external_lex_state = 2}, + [4336] = {.lex_state = 13, .external_lex_state = 2}, [4337] = {.lex_state = 13, .external_lex_state = 2}, - [4338] = {.lex_state = 151, .external_lex_state = 5}, - [4339] = {.lex_state = 151, .external_lex_state = 5}, - [4340] = {.lex_state = 151, .external_lex_state = 5}, - [4341] = {.lex_state = 151, .external_lex_state = 5}, - [4342] = {.lex_state = 151, .external_lex_state = 5}, - [4343] = {.lex_state = 151, .external_lex_state = 5}, - [4344] = {.lex_state = 151, .external_lex_state = 2}, - [4345] = {.lex_state = 151, .external_lex_state = 5}, - [4346] = {.lex_state = 151, .external_lex_state = 5}, - [4347] = {.lex_state = 24, .external_lex_state = 8}, - [4348] = {.lex_state = 13, .external_lex_state = 2}, - [4349] = {.lex_state = 151, .external_lex_state = 5}, - [4350] = {.lex_state = 13, .external_lex_state = 2}, - [4351] = {.lex_state = 151, .external_lex_state = 2}, - [4352] = {.lex_state = 151, .external_lex_state = 2}, + [4338] = {.lex_state = 150, .external_lex_state = 2}, + [4339] = {.lex_state = 13, .external_lex_state = 2}, + [4340] = {.lex_state = 13, .external_lex_state = 2}, + [4341] = {.lex_state = 13, .external_lex_state = 2}, + [4342] = {.lex_state = 150, .external_lex_state = 2}, + [4343] = {.lex_state = 13, .external_lex_state = 2}, + [4344] = {.lex_state = 13, .external_lex_state = 2}, + [4345] = {.lex_state = 13, .external_lex_state = 2}, + [4346] = {.lex_state = 13, .external_lex_state = 2}, + [4347] = {.lex_state = 13, .external_lex_state = 2}, + [4348] = {.lex_state = 150, .external_lex_state = 2}, + [4349] = {.lex_state = 1, .external_lex_state = 2}, + [4350] = {.lex_state = 1, .external_lex_state = 2}, + [4351] = {.lex_state = 13, .external_lex_state = 2}, + [4352] = {.lex_state = 150, .external_lex_state = 2}, [4353] = {.lex_state = 13, .external_lex_state = 2}, [4354] = {.lex_state = 13, .external_lex_state = 2}, - [4355] = {.lex_state = 151, .external_lex_state = 2}, - [4356] = {.lex_state = 151, .external_lex_state = 5}, - [4357] = {.lex_state = 151, .external_lex_state = 5}, - [4358] = {.lex_state = 151, .external_lex_state = 5}, - [4359] = {.lex_state = 151, .external_lex_state = 5}, - [4360] = {.lex_state = 151, .external_lex_state = 5}, - [4361] = {.lex_state = 151, .external_lex_state = 5}, - [4362] = {.lex_state = 151, .external_lex_state = 5}, - [4363] = {.lex_state = 151, .external_lex_state = 5}, - [4364] = {.lex_state = 151, .external_lex_state = 5}, - [4365] = {.lex_state = 151, .external_lex_state = 5}, - [4366] = {.lex_state = 24, .external_lex_state = 8}, - [4367] = {.lex_state = 151, .external_lex_state = 5}, - [4368] = {.lex_state = 151, .external_lex_state = 5}, - [4369] = {.lex_state = 151, .external_lex_state = 5}, - [4370] = {.lex_state = 151, .external_lex_state = 5}, - [4371] = {.lex_state = 151, .external_lex_state = 5}, - [4372] = {.lex_state = 151, .external_lex_state = 5}, - [4373] = {.lex_state = 151, .external_lex_state = 5}, - [4374] = {.lex_state = 151, .external_lex_state = 5}, + [4355] = {.lex_state = 13, .external_lex_state = 2}, + [4356] = {.lex_state = 13, .external_lex_state = 2}, + [4357] = {.lex_state = 13, .external_lex_state = 2}, + [4358] = {.lex_state = 13, .external_lex_state = 2}, + [4359] = {.lex_state = 13, .external_lex_state = 2}, + [4360] = {.lex_state = 13, .external_lex_state = 2}, + [4361] = {.lex_state = 13, .external_lex_state = 2}, + [4362] = {.lex_state = 13, .external_lex_state = 2}, + [4363] = {.lex_state = 1, .external_lex_state = 2}, + [4364] = {.lex_state = 1, .external_lex_state = 2}, + [4365] = {.lex_state = 13, .external_lex_state = 2}, + [4366] = {.lex_state = 150, .external_lex_state = 2}, + [4367] = {.lex_state = 13, .external_lex_state = 2}, + [4368] = {.lex_state = 1, .external_lex_state = 2}, + [4369] = {.lex_state = 1, .external_lex_state = 2}, + [4370] = {.lex_state = 13, .external_lex_state = 2}, + [4371] = {.lex_state = 150, .external_lex_state = 2}, + [4372] = {.lex_state = 13, .external_lex_state = 2}, + [4373] = {.lex_state = 13, .external_lex_state = 2}, + [4374] = {.lex_state = 13, .external_lex_state = 2}, [4375] = {.lex_state = 13, .external_lex_state = 2}, [4376] = {.lex_state = 13, .external_lex_state = 2}, [4377] = {.lex_state = 13, .external_lex_state = 2}, - [4378] = {.lex_state = 151, .external_lex_state = 6}, - [4379] = {.lex_state = 151, .external_lex_state = 6}, - [4380] = {.lex_state = 151, .external_lex_state = 5}, - [4381] = {.lex_state = 151, .external_lex_state = 5}, - [4382] = {.lex_state = 151, .external_lex_state = 5}, - [4383] = {.lex_state = 151, .external_lex_state = 5}, - [4384] = {.lex_state = 151, .external_lex_state = 5}, - [4385] = {.lex_state = 151, .external_lex_state = 5}, + [4378] = {.lex_state = 13, .external_lex_state = 2}, + [4379] = {.lex_state = 13, .external_lex_state = 2}, + [4380] = {.lex_state = 150, .external_lex_state = 6}, + [4381] = {.lex_state = 13, .external_lex_state = 2}, + [4382] = {.lex_state = 13, .external_lex_state = 2}, + [4383] = {.lex_state = 13, .external_lex_state = 2}, + [4384] = {.lex_state = 13, .external_lex_state = 2}, + [4385] = {.lex_state = 13, .external_lex_state = 2}, [4386] = {.lex_state = 13, .external_lex_state = 2}, [4387] = {.lex_state = 13, .external_lex_state = 2}, - [4388] = {.lex_state = 151, .external_lex_state = 5}, - [4389] = {.lex_state = 151, .external_lex_state = 5}, - [4390] = {.lex_state = 151, .external_lex_state = 5}, - [4391] = {.lex_state = 26, .external_lex_state = 2}, - [4392] = {.lex_state = 26, .external_lex_state = 2}, - [4393] = {.lex_state = 151, .external_lex_state = 5}, - [4394] = {.lex_state = 151, .external_lex_state = 2}, - [4395] = {.lex_state = 151, .external_lex_state = 5}, - [4396] = {.lex_state = 13, .external_lex_state = 2}, - [4397] = {.lex_state = 151, .external_lex_state = 5}, - [4398] = {.lex_state = 13, .external_lex_state = 2}, - [4399] = {.lex_state = 151, .external_lex_state = 2}, - [4400] = {.lex_state = 151, .external_lex_state = 5}, - [4401] = {.lex_state = 151, .external_lex_state = 5}, - [4402] = {.lex_state = 151, .external_lex_state = 2}, - [4403] = {.lex_state = 151, .external_lex_state = 2}, - [4404] = {.lex_state = 151, .external_lex_state = 5}, - [4405] = {.lex_state = 151, .external_lex_state = 5}, - [4406] = {.lex_state = 151, .external_lex_state = 5}, - [4407] = {.lex_state = 151, .external_lex_state = 5}, - [4408] = {.lex_state = 151, .external_lex_state = 6}, - [4409] = {.lex_state = 151, .external_lex_state = 5}, - [4410] = {.lex_state = 13, .external_lex_state = 2}, + [4388] = {.lex_state = 13, .external_lex_state = 2}, + [4389] = {.lex_state = 13, .external_lex_state = 2}, + [4390] = {.lex_state = 13, .external_lex_state = 2}, + [4391] = {.lex_state = 150, .external_lex_state = 6}, + [4392] = {.lex_state = 13, .external_lex_state = 2}, + [4393] = {.lex_state = 13, .external_lex_state = 2}, + [4394] = {.lex_state = 13, .external_lex_state = 2}, + [4395] = {.lex_state = 13, .external_lex_state = 2}, + [4396] = {.lex_state = 150, .external_lex_state = 6}, + [4397] = {.lex_state = 13, .external_lex_state = 2}, + [4398] = {.lex_state = 150, .external_lex_state = 6}, + [4399] = {.lex_state = 13, .external_lex_state = 2}, + [4400] = {.lex_state = 13, .external_lex_state = 2}, + [4401] = {.lex_state = 150, .external_lex_state = 5}, + [4402] = {.lex_state = 13, .external_lex_state = 2}, + [4403] = {.lex_state = 150, .external_lex_state = 2}, + [4404] = {.lex_state = 150, .external_lex_state = 6}, + [4405] = {.lex_state = 13, .external_lex_state = 2}, + [4406] = {.lex_state = 13, .external_lex_state = 2}, + [4407] = {.lex_state = 13, .external_lex_state = 2}, + [4408] = {.lex_state = 150, .external_lex_state = 5}, + [4409] = {.lex_state = 13, .external_lex_state = 2}, + [4410] = {.lex_state = 1, .external_lex_state = 2}, [4411] = {.lex_state = 13, .external_lex_state = 2}, - [4412] = {.lex_state = 151, .external_lex_state = 2}, - [4413] = {.lex_state = 151, .external_lex_state = 5}, - [4414] = {.lex_state = 151, .external_lex_state = 5}, - [4415] = {.lex_state = 151, .external_lex_state = 5}, - [4416] = {.lex_state = 151, .external_lex_state = 5}, - [4417] = {.lex_state = 151, .external_lex_state = 5}, - [4418] = {.lex_state = 151, .external_lex_state = 5}, - [4419] = {.lex_state = 5, .external_lex_state = 2}, - [4420] = {.lex_state = 151, .external_lex_state = 5}, - [4421] = {.lex_state = 20, .external_lex_state = 9}, - [4422] = {.lex_state = 151, .external_lex_state = 5}, + [4412] = {.lex_state = 150, .external_lex_state = 5}, + [4413] = {.lex_state = 150, .external_lex_state = 2}, + [4414] = {.lex_state = 1, .external_lex_state = 2}, + [4415] = {.lex_state = 13, .external_lex_state = 2}, + [4416] = {.lex_state = 13, .external_lex_state = 2}, + [4417] = {.lex_state = 13, .external_lex_state = 2}, + [4418] = {.lex_state = 13, .external_lex_state = 2}, + [4419] = {.lex_state = 13, .external_lex_state = 2}, + [4420] = {.lex_state = 150, .external_lex_state = 5}, + [4421] = {.lex_state = 13, .external_lex_state = 2}, + [4422] = {.lex_state = 13, .external_lex_state = 2}, [4423] = {.lex_state = 13, .external_lex_state = 2}, [4424] = {.lex_state = 13, .external_lex_state = 2}, [4425] = {.lex_state = 13, .external_lex_state = 2}, - [4426] = {.lex_state = 20, .external_lex_state = 9}, - [4427] = {.lex_state = 30, .external_lex_state = 9}, - [4428] = {.lex_state = 151, .external_lex_state = 2}, - [4429] = {.lex_state = 151, .external_lex_state = 2}, - [4430] = {.lex_state = 20, .external_lex_state = 9}, - [4431] = {.lex_state = 30, .external_lex_state = 9}, - [4432] = {.lex_state = 151, .external_lex_state = 2}, - [4433] = {.lex_state = 151, .external_lex_state = 5}, - [4434] = {.lex_state = 151, .external_lex_state = 2}, - [4435] = {.lex_state = 151, .external_lex_state = 5}, - [4436] = {.lex_state = 151, .external_lex_state = 2}, - [4437] = {.lex_state = 151, .external_lex_state = 2}, - [4438] = {.lex_state = 20, .external_lex_state = 9}, - [4439] = {.lex_state = 151, .external_lex_state = 2}, - [4440] = {.lex_state = 30, .external_lex_state = 9}, - [4441] = {.lex_state = 151, .external_lex_state = 2}, - [4442] = {.lex_state = 151, .external_lex_state = 5}, - [4443] = {.lex_state = 20, .external_lex_state = 9}, - [4444] = {.lex_state = 151, .external_lex_state = 2}, - [4445] = {.lex_state = 151, .external_lex_state = 2}, - [4446] = {.lex_state = 151, .external_lex_state = 2}, - [4447] = {.lex_state = 18, .external_lex_state = 2}, - [4448] = {.lex_state = 151, .external_lex_state = 2}, - [4449] = {.lex_state = 28, .external_lex_state = 2}, + [4426] = {.lex_state = 13, .external_lex_state = 2}, + [4427] = {.lex_state = 13, .external_lex_state = 2}, + [4428] = {.lex_state = 13, .external_lex_state = 2}, + [4429] = {.lex_state = 150, .external_lex_state = 2}, + [4430] = {.lex_state = 13, .external_lex_state = 2}, + [4431] = {.lex_state = 13, .external_lex_state = 2}, + [4432] = {.lex_state = 13, .external_lex_state = 2}, + [4433] = {.lex_state = 13, .external_lex_state = 2}, + [4434] = {.lex_state = 13, .external_lex_state = 2}, + [4435] = {.lex_state = 13, .external_lex_state = 2}, + [4436] = {.lex_state = 13, .external_lex_state = 2}, + [4437] = {.lex_state = 13, .external_lex_state = 2}, + [4438] = {.lex_state = 150, .external_lex_state = 5}, + [4439] = {.lex_state = 13, .external_lex_state = 2}, + [4440] = {.lex_state = 150, .external_lex_state = 2}, + [4441] = {.lex_state = 13, .external_lex_state = 2}, + [4442] = {.lex_state = 13, .external_lex_state = 2}, + [4443] = {.lex_state = 13, .external_lex_state = 2}, + [4444] = {.lex_state = 13, .external_lex_state = 2}, + [4445] = {.lex_state = 150, .external_lex_state = 6}, + [4446] = {.lex_state = 13, .external_lex_state = 2}, + [4447] = {.lex_state = 150, .external_lex_state = 2}, + [4448] = {.lex_state = 150, .external_lex_state = 6}, + [4449] = {.lex_state = 150, .external_lex_state = 2}, [4450] = {.lex_state = 13, .external_lex_state = 2}, - [4451] = {.lex_state = 30, .external_lex_state = 9}, - [4452] = {.lex_state = 151, .external_lex_state = 5}, - [4453] = {.lex_state = 5, .external_lex_state = 2}, - [4454] = {.lex_state = 20, .external_lex_state = 9}, - [4455] = {.lex_state = 151, .external_lex_state = 2}, - [4456] = {.lex_state = 151, .external_lex_state = 2}, - [4457] = {.lex_state = 20, .external_lex_state = 9}, - [4458] = {.lex_state = 151, .external_lex_state = 2}, - [4459] = {.lex_state = 30, .external_lex_state = 9}, - [4460] = {.lex_state = 13, .external_lex_state = 2}, - [4461] = {.lex_state = 151, .external_lex_state = 2}, - [4462] = {.lex_state = 151, .external_lex_state = 5}, - [4463] = {.lex_state = 20, .external_lex_state = 9}, - [4464] = {.lex_state = 151, .external_lex_state = 6}, - [4465] = {.lex_state = 30, .external_lex_state = 9}, - [4466] = {.lex_state = 151, .external_lex_state = 2}, - [4467] = {.lex_state = 151, .external_lex_state = 2}, - [4468] = {.lex_state = 151, .external_lex_state = 2}, - [4469] = {.lex_state = 151, .external_lex_state = 2}, - [4470] = {.lex_state = 151, .external_lex_state = 2}, - [4471] = {.lex_state = 5, .external_lex_state = 2}, - [4472] = {.lex_state = 13, .external_lex_state = 2}, - [4473] = {.lex_state = 5, .external_lex_state = 2}, - [4474] = {.lex_state = 5, .external_lex_state = 2}, - [4475] = {.lex_state = 151, .external_lex_state = 2}, - [4476] = {.lex_state = 151, .external_lex_state = 2}, - [4477] = {.lex_state = 151, .external_lex_state = 2}, + [4451] = {.lex_state = 150, .external_lex_state = 2}, + [4452] = {.lex_state = 13, .external_lex_state = 2}, + [4453] = {.lex_state = 13, .external_lex_state = 2}, + [4454] = {.lex_state = 150, .external_lex_state = 5}, + [4455] = {.lex_state = 13, .external_lex_state = 2}, + [4456] = {.lex_state = 150, .external_lex_state = 6}, + [4457] = {.lex_state = 150, .external_lex_state = 6}, + [4458] = {.lex_state = 13, .external_lex_state = 2}, + [4459] = {.lex_state = 13, .external_lex_state = 2}, + [4460] = {.lex_state = 150, .external_lex_state = 2}, + [4461] = {.lex_state = 13, .external_lex_state = 2}, + [4462] = {.lex_state = 150, .external_lex_state = 6}, + [4463] = {.lex_state = 13, .external_lex_state = 2}, + [4464] = {.lex_state = 13, .external_lex_state = 2}, + [4465] = {.lex_state = 150, .external_lex_state = 5}, + [4466] = {.lex_state = 13, .external_lex_state = 2}, + [4467] = {.lex_state = 150, .external_lex_state = 5}, + [4468] = {.lex_state = 13, .external_lex_state = 2}, + [4469] = {.lex_state = 13, .external_lex_state = 2}, + [4470] = {.lex_state = 150, .external_lex_state = 2}, + [4471] = {.lex_state = 1, .external_lex_state = 2}, + [4472] = {.lex_state = 1, .external_lex_state = 2}, + [4473] = {.lex_state = 150, .external_lex_state = 5}, + [4474] = {.lex_state = 150, .external_lex_state = 6}, + [4475] = {.lex_state = 150, .external_lex_state = 2}, + [4476] = {.lex_state = 13, .external_lex_state = 2}, + [4477] = {.lex_state = 150, .external_lex_state = 5}, [4478] = {.lex_state = 13, .external_lex_state = 2}, [4479] = {.lex_state = 13, .external_lex_state = 2}, - [4480] = {.lex_state = 20, .external_lex_state = 9}, - [4481] = {.lex_state = 151, .external_lex_state = 2}, - [4482] = {.lex_state = 151, .external_lex_state = 2}, - [4483] = {.lex_state = 151, .external_lex_state = 2}, + [4480] = {.lex_state = 150, .external_lex_state = 6}, + [4481] = {.lex_state = 13, .external_lex_state = 2}, + [4482] = {.lex_state = 13, .external_lex_state = 2}, + [4483] = {.lex_state = 150, .external_lex_state = 6}, [4484] = {.lex_state = 13, .external_lex_state = 2}, - [4485] = {.lex_state = 151, .external_lex_state = 2}, - [4486] = {.lex_state = 20, .external_lex_state = 9}, + [4485] = {.lex_state = 13, .external_lex_state = 2}, + [4486] = {.lex_state = 150, .external_lex_state = 2}, [4487] = {.lex_state = 13, .external_lex_state = 2}, - [4488] = {.lex_state = 18, .external_lex_state = 2}, + [4488] = {.lex_state = 13, .external_lex_state = 2}, [4489] = {.lex_state = 13, .external_lex_state = 2}, - [4490] = {.lex_state = 28, .external_lex_state = 2}, + [4490] = {.lex_state = 13, .external_lex_state = 2}, [4491] = {.lex_state = 13, .external_lex_state = 2}, - [4492] = {.lex_state = 13, .external_lex_state = 2}, - [4493] = {.lex_state = 30, .external_lex_state = 9}, - [4494] = {.lex_state = 151, .external_lex_state = 2}, - [4495] = {.lex_state = 13, .external_lex_state = 2}, - [4496] = {.lex_state = 151, .external_lex_state = 2}, - [4497] = {.lex_state = 151, .external_lex_state = 2}, - [4498] = {.lex_state = 151, .external_lex_state = 2}, - [4499] = {.lex_state = 151, .external_lex_state = 2}, - [4500] = {.lex_state = 151, .external_lex_state = 5}, - [4501] = {.lex_state = 151, .external_lex_state = 5}, - [4502] = {.lex_state = 151, .external_lex_state = 2}, - [4503] = {.lex_state = 30, .external_lex_state = 9}, - [4504] = {.lex_state = 20, .external_lex_state = 9}, - [4505] = {.lex_state = 30, .external_lex_state = 9}, - [4506] = {.lex_state = 151, .external_lex_state = 5}, - [4507] = {.lex_state = 30, .external_lex_state = 9}, - [4508] = {.lex_state = 20, .external_lex_state = 9}, - [4509] = {.lex_state = 30, .external_lex_state = 9}, - [4510] = {.lex_state = 151, .external_lex_state = 2}, - [4511] = {.lex_state = 151, .external_lex_state = 2}, - [4512] = {.lex_state = 30, .external_lex_state = 9}, - [4513] = {.lex_state = 151, .external_lex_state = 5}, - [4514] = {.lex_state = 151, .external_lex_state = 2}, - [4515] = {.lex_state = 13, .external_lex_state = 2}, - [4516] = {.lex_state = 151, .external_lex_state = 5}, + [4492] = {.lex_state = 1, .external_lex_state = 2}, + [4493] = {.lex_state = 1, .external_lex_state = 2}, + [4494] = {.lex_state = 150, .external_lex_state = 6}, + [4495] = {.lex_state = 1, .external_lex_state = 2}, + [4496] = {.lex_state = 13, .external_lex_state = 2}, + [4497] = {.lex_state = 13, .external_lex_state = 2}, + [4498] = {.lex_state = 13, .external_lex_state = 2}, + [4499] = {.lex_state = 13, .external_lex_state = 2}, + [4500] = {.lex_state = 15, .external_lex_state = 2}, + [4501] = {.lex_state = 150, .external_lex_state = 2}, + [4502] = {.lex_state = 13, .external_lex_state = 2}, + [4503] = {.lex_state = 150, .external_lex_state = 2}, + [4504] = {.lex_state = 13, .external_lex_state = 2}, + [4505] = {.lex_state = 150, .external_lex_state = 2}, + [4506] = {.lex_state = 13, .external_lex_state = 2}, + [4507] = {.lex_state = 150, .external_lex_state = 2}, + [4508] = {.lex_state = 150, .external_lex_state = 2}, + [4509] = {.lex_state = 150, .external_lex_state = 2}, + [4510] = {.lex_state = 13, .external_lex_state = 2}, + [4511] = {.lex_state = 13, .external_lex_state = 2}, + [4512] = {.lex_state = 1, .external_lex_state = 2}, + [4513] = {.lex_state = 1, .external_lex_state = 2}, + [4514] = {.lex_state = 13, .external_lex_state = 2}, + [4515] = {.lex_state = 150, .external_lex_state = 5}, + [4516] = {.lex_state = 13, .external_lex_state = 2}, [4517] = {.lex_state = 13, .external_lex_state = 2}, - [4518] = {.lex_state = 20, .external_lex_state = 9}, + [4518] = {.lex_state = 150, .external_lex_state = 2}, [4519] = {.lex_state = 13, .external_lex_state = 2}, - [4520] = {.lex_state = 24, .external_lex_state = 7}, - [4521] = {.lex_state = 151, .external_lex_state = 5}, - [4522] = {.lex_state = 18, .external_lex_state = 2}, - [4523] = {.lex_state = 28, .external_lex_state = 2}, - [4524] = {.lex_state = 13, .external_lex_state = 2}, - [4525] = {.lex_state = 151, .external_lex_state = 2}, - [4526] = {.lex_state = 151, .external_lex_state = 2}, - [4527] = {.lex_state = 151, .external_lex_state = 2}, - [4528] = {.lex_state = 5, .external_lex_state = 2}, - [4529] = {.lex_state = 13, .external_lex_state = 2}, + [4520] = {.lex_state = 150, .external_lex_state = 5}, + [4521] = {.lex_state = 1, .external_lex_state = 2}, + [4522] = {.lex_state = 1, .external_lex_state = 2}, + [4523] = {.lex_state = 13, .external_lex_state = 2}, + [4524] = {.lex_state = 150, .external_lex_state = 5}, + [4525] = {.lex_state = 150, .external_lex_state = 5}, + [4526] = {.lex_state = 13, .external_lex_state = 2}, + [4527] = {.lex_state = 150, .external_lex_state = 5}, + [4528] = {.lex_state = 13, .external_lex_state = 2}, + [4529] = {.lex_state = 150, .external_lex_state = 5}, [4530] = {.lex_state = 13, .external_lex_state = 2}, - [4531] = {.lex_state = 151, .external_lex_state = 5}, - [4532] = {.lex_state = 151, .external_lex_state = 2}, - [4533] = {.lex_state = 151, .external_lex_state = 5}, - [4534] = {.lex_state = 151, .external_lex_state = 2}, - [4535] = {.lex_state = 151, .external_lex_state = 2}, - [4536] = {.lex_state = 151, .external_lex_state = 2}, - [4537] = {.lex_state = 151, .external_lex_state = 2}, - [4538] = {.lex_state = 20, .external_lex_state = 9}, - [4539] = {.lex_state = 30, .external_lex_state = 9}, - [4540] = {.lex_state = 151, .external_lex_state = 2}, - [4541] = {.lex_state = 151, .external_lex_state = 2}, - [4542] = {.lex_state = 151, .external_lex_state = 2}, + [4531] = {.lex_state = 13, .external_lex_state = 2}, + [4532] = {.lex_state = 13, .external_lex_state = 2}, + [4533] = {.lex_state = 13, .external_lex_state = 2}, + [4534] = {.lex_state = 13, .external_lex_state = 2}, + [4535] = {.lex_state = 150, .external_lex_state = 5}, + [4536] = {.lex_state = 13, .external_lex_state = 2}, + [4537] = {.lex_state = 13, .external_lex_state = 2}, + [4538] = {.lex_state = 13, .external_lex_state = 2}, + [4539] = {.lex_state = 13, .external_lex_state = 2}, + [4540] = {.lex_state = 13, .external_lex_state = 2}, + [4541] = {.lex_state = 150, .external_lex_state = 5}, + [4542] = {.lex_state = 13, .external_lex_state = 2}, [4543] = {.lex_state = 13, .external_lex_state = 2}, - [4544] = {.lex_state = 151, .external_lex_state = 2}, - [4545] = {.lex_state = 151, .external_lex_state = 2}, - [4546] = {.lex_state = 151, .external_lex_state = 2}, - [4547] = {.lex_state = 20, .external_lex_state = 9}, - [4548] = {.lex_state = 151, .external_lex_state = 2}, - [4549] = {.lex_state = 151, .external_lex_state = 2}, - [4550] = {.lex_state = 151, .external_lex_state = 2}, - [4551] = {.lex_state = 151, .external_lex_state = 5}, - [4552] = {.lex_state = 30, .external_lex_state = 9}, - [4553] = {.lex_state = 151, .external_lex_state = 2}, + [4544] = {.lex_state = 13, .external_lex_state = 2}, + [4545] = {.lex_state = 13, .external_lex_state = 2}, + [4546] = {.lex_state = 13, .external_lex_state = 2}, + [4547] = {.lex_state = 23, .external_lex_state = 7}, + [4548] = {.lex_state = 13, .external_lex_state = 2}, + [4549] = {.lex_state = 13, .external_lex_state = 2}, + [4550] = {.lex_state = 13, .external_lex_state = 2}, + [4551] = {.lex_state = 150, .external_lex_state = 2}, + [4552] = {.lex_state = 13, .external_lex_state = 2}, + [4553] = {.lex_state = 13, .external_lex_state = 2}, [4554] = {.lex_state = 13, .external_lex_state = 2}, [4555] = {.lex_state = 13, .external_lex_state = 2}, - [4556] = {.lex_state = 151, .external_lex_state = 2}, - [4557] = {.lex_state = 151, .external_lex_state = 2}, - [4558] = {.lex_state = 30, .external_lex_state = 9}, - [4559] = {.lex_state = 24, .external_lex_state = 7}, - [4560] = {.lex_state = 151, .external_lex_state = 5}, - [4561] = {.lex_state = 151, .external_lex_state = 2}, - [4562] = {.lex_state = 151, .external_lex_state = 2}, - [4563] = {.lex_state = 151, .external_lex_state = 2}, - [4564] = {.lex_state = 151, .external_lex_state = 5}, - [4565] = {.lex_state = 151, .external_lex_state = 2}, - [4566] = {.lex_state = 151, .external_lex_state = 2}, - [4567] = {.lex_state = 151, .external_lex_state = 2}, - [4568] = {.lex_state = 151, .external_lex_state = 5}, - [4569] = {.lex_state = 151, .external_lex_state = 2}, - [4570] = {.lex_state = 151, .external_lex_state = 5}, - [4571] = {.lex_state = 151, .external_lex_state = 2}, - [4572] = {.lex_state = 151, .external_lex_state = 2}, - [4573] = {.lex_state = 151, .external_lex_state = 5}, - [4574] = {.lex_state = 151, .external_lex_state = 5}, - [4575] = {.lex_state = 151, .external_lex_state = 5}, - [4576] = {.lex_state = 151, .external_lex_state = 5}, - [4577] = {.lex_state = 151, .external_lex_state = 2}, - [4578] = {.lex_state = 151, .external_lex_state = 2}, - [4579] = {.lex_state = 151, .external_lex_state = 2}, - [4580] = {.lex_state = 151, .external_lex_state = 2}, - [4581] = {.lex_state = 151, .external_lex_state = 2}, - [4582] = {.lex_state = 151, .external_lex_state = 2}, - [4583] = {.lex_state = 151, .external_lex_state = 2}, - [4584] = {.lex_state = 151, .external_lex_state = 5}, - [4585] = {.lex_state = 151, .external_lex_state = 5}, - [4586] = {.lex_state = 151, .external_lex_state = 5}, - [4587] = {.lex_state = 151, .external_lex_state = 5}, - [4588] = {.lex_state = 151, .external_lex_state = 5}, - [4589] = {.lex_state = 151, .external_lex_state = 5}, - [4590] = {.lex_state = 5, .external_lex_state = 2}, - [4591] = {.lex_state = 151, .external_lex_state = 2}, - [4592] = {.lex_state = 151, .external_lex_state = 5}, - [4593] = {.lex_state = 151, .external_lex_state = 2}, - [4594] = {.lex_state = 151, .external_lex_state = 2}, - [4595] = {.lex_state = 151, .external_lex_state = 2}, - [4596] = {.lex_state = 151, .external_lex_state = 5}, - [4597] = {.lex_state = 151, .external_lex_state = 2}, - [4598] = {.lex_state = 151, .external_lex_state = 5}, - [4599] = {.lex_state = 151, .external_lex_state = 5}, - [4600] = {.lex_state = 151, .external_lex_state = 5}, - [4601] = {.lex_state = 151, .external_lex_state = 5}, - [4602] = {.lex_state = 151, .external_lex_state = 2}, - [4603] = {.lex_state = 151, .external_lex_state = 2}, - [4604] = {.lex_state = 151, .external_lex_state = 5}, - [4605] = {.lex_state = 151, .external_lex_state = 5}, - [4606] = {.lex_state = 151, .external_lex_state = 2}, - [4607] = {.lex_state = 151, .external_lex_state = 5}, - [4608] = {.lex_state = 151, .external_lex_state = 5}, - [4609] = {.lex_state = 151, .external_lex_state = 5}, - [4610] = {.lex_state = 151, .external_lex_state = 2}, - [4611] = {.lex_state = 151, .external_lex_state = 2}, - [4612] = {.lex_state = 151, .external_lex_state = 5}, - [4613] = {.lex_state = 151, .external_lex_state = 5}, - [4614] = {.lex_state = 151, .external_lex_state = 2}, - [4615] = {.lex_state = 151, .external_lex_state = 5}, - [4616] = {.lex_state = 151, .external_lex_state = 2}, - [4617] = {.lex_state = 151, .external_lex_state = 5}, - [4618] = {.lex_state = 151, .external_lex_state = 2}, - [4619] = {.lex_state = 151, .external_lex_state = 2}, - [4620] = {.lex_state = 151, .external_lex_state = 2}, - [4621] = {.lex_state = 151, .external_lex_state = 2}, - [4622] = {.lex_state = 151, .external_lex_state = 2}, - [4623] = {.lex_state = 151, .external_lex_state = 2}, - [4624] = {.lex_state = 151, .external_lex_state = 2}, - [4625] = {.lex_state = 151, .external_lex_state = 2}, - [4626] = {.lex_state = 151, .external_lex_state = 5}, - [4627] = {.lex_state = 151, .external_lex_state = 5}, - [4628] = {.lex_state = 151, .external_lex_state = 2}, - [4629] = {.lex_state = 151, .external_lex_state = 5}, - [4630] = {.lex_state = 151, .external_lex_state = 5}, - [4631] = {.lex_state = 151, .external_lex_state = 5}, - [4632] = {.lex_state = 151, .external_lex_state = 5}, - [4633] = {.lex_state = 151, .external_lex_state = 5}, - [4634] = {.lex_state = 151, .external_lex_state = 5}, - [4635] = {.lex_state = 151, .external_lex_state = 5}, - [4636] = {.lex_state = 151, .external_lex_state = 2}, - [4637] = {.lex_state = 151, .external_lex_state = 2}, - [4638] = {.lex_state = 151, .external_lex_state = 5}, - [4639] = {.lex_state = 151, .external_lex_state = 5}, - [4640] = {.lex_state = 151, .external_lex_state = 5}, - [4641] = {.lex_state = 151, .external_lex_state = 5}, - [4642] = {.lex_state = 151, .external_lex_state = 2}, - [4643] = {.lex_state = 151, .external_lex_state = 5}, - [4644] = {.lex_state = 151, .external_lex_state = 2}, - [4645] = {.lex_state = 151, .external_lex_state = 2}, - [4646] = {.lex_state = 151, .external_lex_state = 5}, - [4647] = {.lex_state = 5, .external_lex_state = 2}, - [4648] = {.lex_state = 151, .external_lex_state = 5}, - [4649] = {.lex_state = 151, .external_lex_state = 5}, - [4650] = {.lex_state = 151, .external_lex_state = 2}, - [4651] = {.lex_state = 151, .external_lex_state = 2}, - [4652] = {.lex_state = 151, .external_lex_state = 2}, - [4653] = {.lex_state = 151, .external_lex_state = 2}, - [4654] = {.lex_state = 151, .external_lex_state = 5}, - [4655] = {.lex_state = 151, .external_lex_state = 2}, - [4656] = {.lex_state = 151, .external_lex_state = 2}, - [4657] = {.lex_state = 151, .external_lex_state = 5}, - [4658] = {.lex_state = 151, .external_lex_state = 2}, - [4659] = {.lex_state = 151, .external_lex_state = 2}, - [4660] = {.lex_state = 151, .external_lex_state = 2}, - [4661] = {.lex_state = 151, .external_lex_state = 2}, - [4662] = {.lex_state = 151, .external_lex_state = 2}, - [4663] = {.lex_state = 151, .external_lex_state = 2}, - [4664] = {.lex_state = 151, .external_lex_state = 5}, - [4665] = {.lex_state = 151, .external_lex_state = 5}, - [4666] = {.lex_state = 151, .external_lex_state = 5}, - [4667] = {.lex_state = 151, .external_lex_state = 5}, - [4668] = {.lex_state = 151, .external_lex_state = 2}, - [4669] = {.lex_state = 151, .external_lex_state = 2}, - [4670] = {.lex_state = 151, .external_lex_state = 5}, - [4671] = {.lex_state = 151, .external_lex_state = 2}, - [4672] = {.lex_state = 151, .external_lex_state = 2}, - [4673] = {.lex_state = 151, .external_lex_state = 5}, - [4674] = {.lex_state = 151, .external_lex_state = 2}, - [4675] = {.lex_state = 151, .external_lex_state = 2}, - [4676] = {.lex_state = 151, .external_lex_state = 2}, - [4677] = {.lex_state = 151, .external_lex_state = 2}, - [4678] = {.lex_state = 151, .external_lex_state = 5}, - [4679] = {.lex_state = 2, .external_lex_state = 2}, - [4680] = {.lex_state = 151, .external_lex_state = 5}, - [4681] = {.lex_state = 151, .external_lex_state = 2}, - [4682] = {.lex_state = 151, .external_lex_state = 2}, - [4683] = {.lex_state = 151, .external_lex_state = 2}, - [4684] = {.lex_state = 151, .external_lex_state = 5}, - [4685] = {.lex_state = 151, .external_lex_state = 5}, - [4686] = {.lex_state = 151, .external_lex_state = 5}, - [4687] = {.lex_state = 151, .external_lex_state = 5}, - [4688] = {.lex_state = 151, .external_lex_state = 5}, - [4689] = {.lex_state = 151, .external_lex_state = 5}, - [4690] = {.lex_state = 151, .external_lex_state = 2}, - [4691] = {.lex_state = 151, .external_lex_state = 2}, - [4692] = {.lex_state = 151, .external_lex_state = 2}, - [4693] = {.lex_state = 151, .external_lex_state = 5}, - [4694] = {.lex_state = 151, .external_lex_state = 2}, - [4695] = {.lex_state = 151, .external_lex_state = 2}, - [4696] = {.lex_state = 151, .external_lex_state = 5}, - [4697] = {.lex_state = 151, .external_lex_state = 5}, - [4698] = {.lex_state = 151, .external_lex_state = 2}, - [4699] = {.lex_state = 151, .external_lex_state = 5}, - [4700] = {.lex_state = 151, .external_lex_state = 5}, - [4701] = {.lex_state = 151, .external_lex_state = 2}, - [4702] = {.lex_state = 151, .external_lex_state = 5}, - [4703] = {.lex_state = 151, .external_lex_state = 2}, - [4704] = {.lex_state = 151, .external_lex_state = 5}, - [4705] = {.lex_state = 151, .external_lex_state = 2}, - [4706] = {.lex_state = 151, .external_lex_state = 5}, - [4707] = {.lex_state = 151, .external_lex_state = 5}, - [4708] = {.lex_state = 151, .external_lex_state = 5}, - [4709] = {.lex_state = 151, .external_lex_state = 5}, - [4710] = {.lex_state = 151, .external_lex_state = 5}, - [4711] = {.lex_state = 151, .external_lex_state = 5}, - [4712] = {.lex_state = 151, .external_lex_state = 2}, - [4713] = {.lex_state = 151, .external_lex_state = 5}, - [4714] = {.lex_state = 151, .external_lex_state = 5}, - [4715] = {.lex_state = 151, .external_lex_state = 5}, - [4716] = {.lex_state = 151, .external_lex_state = 5}, - [4717] = {.lex_state = 151, .external_lex_state = 5}, - [4718] = {.lex_state = 151, .external_lex_state = 5}, - [4719] = {.lex_state = 151, .external_lex_state = 5}, - [4720] = {.lex_state = 151, .external_lex_state = 2}, - [4721] = {.lex_state = 151, .external_lex_state = 2}, - [4722] = {.lex_state = 151, .external_lex_state = 5}, - [4723] = {.lex_state = 2, .external_lex_state = 2}, - [4724] = {.lex_state = 151, .external_lex_state = 5}, - [4725] = {.lex_state = 151, .external_lex_state = 5}, - [4726] = {.lex_state = 151, .external_lex_state = 5}, - [4727] = {.lex_state = 151, .external_lex_state = 5}, - [4728] = {.lex_state = 151, .external_lex_state = 2}, - [4729] = {.lex_state = 151, .external_lex_state = 5}, - [4730] = {.lex_state = 151, .external_lex_state = 2}, - [4731] = {.lex_state = 151, .external_lex_state = 5}, - [4732] = {.lex_state = 151, .external_lex_state = 5}, - [4733] = {.lex_state = 151, .external_lex_state = 5}, - [4734] = {.lex_state = 151, .external_lex_state = 2}, - [4735] = {.lex_state = 151, .external_lex_state = 2}, - [4736] = {.lex_state = 151, .external_lex_state = 5}, - [4737] = {.lex_state = 151, .external_lex_state = 5}, - [4738] = {.lex_state = 151, .external_lex_state = 5}, - [4739] = {.lex_state = 151, .external_lex_state = 5}, - [4740] = {.lex_state = 151, .external_lex_state = 5}, - [4741] = {.lex_state = 151, .external_lex_state = 5}, - [4742] = {.lex_state = 151, .external_lex_state = 2}, - [4743] = {.lex_state = 151, .external_lex_state = 5}, - [4744] = {.lex_state = 151, .external_lex_state = 2}, - [4745] = {.lex_state = 151, .external_lex_state = 5}, - [4746] = {.lex_state = 151, .external_lex_state = 2}, - [4747] = {.lex_state = 151, .external_lex_state = 5}, - [4748] = {.lex_state = 151, .external_lex_state = 5}, - [4749] = {.lex_state = 151, .external_lex_state = 5}, - [4750] = {.lex_state = 151, .external_lex_state = 5}, - [4751] = {.lex_state = 151, .external_lex_state = 2}, - [4752] = {.lex_state = 151, .external_lex_state = 5}, - [4753] = {.lex_state = 151, .external_lex_state = 2}, - [4754] = {.lex_state = 151, .external_lex_state = 5}, - [4755] = {.lex_state = 151, .external_lex_state = 5}, - [4756] = {.lex_state = 151, .external_lex_state = 5}, - [4757] = {.lex_state = 151, .external_lex_state = 5}, - [4758] = {.lex_state = 151, .external_lex_state = 5}, - [4759] = {.lex_state = 151, .external_lex_state = 2}, - [4760] = {.lex_state = 151, .external_lex_state = 5}, - [4761] = {.lex_state = 5, .external_lex_state = 2}, - [4762] = {.lex_state = 151, .external_lex_state = 5}, - [4763] = {.lex_state = 151, .external_lex_state = 5}, - [4764] = {.lex_state = 151, .external_lex_state = 5}, - [4765] = {.lex_state = 151, .external_lex_state = 5}, - [4766] = {.lex_state = 5, .external_lex_state = 2}, - [4767] = {.lex_state = 151, .external_lex_state = 5}, - [4768] = {.lex_state = 151, .external_lex_state = 5}, - [4769] = {.lex_state = 151, .external_lex_state = 5}, - [4770] = {.lex_state = 151, .external_lex_state = 2}, - [4771] = {.lex_state = 151, .external_lex_state = 2}, - [4772] = {.lex_state = 151, .external_lex_state = 2}, - [4773] = {.lex_state = 151, .external_lex_state = 5}, - [4774] = {.lex_state = 151, .external_lex_state = 5}, - [4775] = {.lex_state = 151, .external_lex_state = 5}, - [4776] = {.lex_state = 151, .external_lex_state = 5}, - [4777] = {.lex_state = 151, .external_lex_state = 5}, - [4778] = {.lex_state = 151, .external_lex_state = 5}, - [4779] = {.lex_state = 151, .external_lex_state = 2}, - [4780] = {.lex_state = 151, .external_lex_state = 5}, - [4781] = {.lex_state = 151, .external_lex_state = 2}, - [4782] = {.lex_state = 151, .external_lex_state = 5}, - [4783] = {.lex_state = 151, .external_lex_state = 5}, - [4784] = {.lex_state = 151, .external_lex_state = 5}, - [4785] = {.lex_state = 151, .external_lex_state = 5}, - [4786] = {.lex_state = 151, .external_lex_state = 5}, - [4787] = {.lex_state = 151, .external_lex_state = 5}, - [4788] = {.lex_state = 151, .external_lex_state = 5}, - [4789] = {.lex_state = 151, .external_lex_state = 5}, - [4790] = {.lex_state = 151, .external_lex_state = 5}, - [4791] = {.lex_state = 151, .external_lex_state = 2}, - [4792] = {.lex_state = 151, .external_lex_state = 5}, - [4793] = {.lex_state = 151, .external_lex_state = 5}, - [4794] = {.lex_state = 151, .external_lex_state = 5}, - [4795] = {.lex_state = 151, .external_lex_state = 5}, - [4796] = {.lex_state = 151, .external_lex_state = 5}, - [4797] = {.lex_state = 151, .external_lex_state = 5}, - [4798] = {.lex_state = 151, .external_lex_state = 5}, - [4799] = {.lex_state = 151, .external_lex_state = 2}, - [4800] = {.lex_state = 151, .external_lex_state = 5}, - [4801] = {.lex_state = 151, .external_lex_state = 5}, - [4802] = {.lex_state = 151, .external_lex_state = 5}, - [4803] = {.lex_state = 151, .external_lex_state = 2}, - [4804] = {.lex_state = 151, .external_lex_state = 5}, - [4805] = {.lex_state = 151, .external_lex_state = 5}, - [4806] = {.lex_state = 151, .external_lex_state = 5}, - [4807] = {.lex_state = 151, .external_lex_state = 5}, - [4808] = {.lex_state = 151, .external_lex_state = 5}, - [4809] = {.lex_state = 151, .external_lex_state = 5}, - [4810] = {.lex_state = 151, .external_lex_state = 5}, - [4811] = {.lex_state = 151, .external_lex_state = 5}, - [4812] = {.lex_state = 151, .external_lex_state = 2}, - [4813] = {.lex_state = 151, .external_lex_state = 5}, - [4814] = {.lex_state = 151, .external_lex_state = 5}, - [4815] = {.lex_state = 151, .external_lex_state = 5}, - [4816] = {.lex_state = 151, .external_lex_state = 5}, - [4817] = {.lex_state = 151, .external_lex_state = 5}, - [4818] = {.lex_state = 5, .external_lex_state = 2}, - [4819] = {.lex_state = 151, .external_lex_state = 5}, - [4820] = {.lex_state = 151, .external_lex_state = 2}, - [4821] = {.lex_state = 151, .external_lex_state = 2}, - [4822] = {.lex_state = 151, .external_lex_state = 5}, - [4823] = {.lex_state = 151, .external_lex_state = 2}, - [4824] = {.lex_state = 151, .external_lex_state = 2}, - [4825] = {.lex_state = 151, .external_lex_state = 5}, - [4826] = {.lex_state = 151, .external_lex_state = 5}, - [4827] = {.lex_state = 151, .external_lex_state = 5}, - [4828] = {.lex_state = 151, .external_lex_state = 2}, - [4829] = {.lex_state = 2, .external_lex_state = 2}, - [4830] = {.lex_state = 151, .external_lex_state = 2}, - [4831] = {.lex_state = 151, .external_lex_state = 2}, - [4832] = {.lex_state = 151, .external_lex_state = 2}, - [4833] = {.lex_state = 151, .external_lex_state = 5}, - [4834] = {.lex_state = 151, .external_lex_state = 2}, - [4835] = {.lex_state = 151, .external_lex_state = 2}, - [4836] = {.lex_state = 151, .external_lex_state = 5}, - [4837] = {.lex_state = 151, .external_lex_state = 5}, - [4838] = {.lex_state = 151, .external_lex_state = 2}, - [4839] = {.lex_state = 151, .external_lex_state = 2}, - [4840] = {.lex_state = 151, .external_lex_state = 5}, - [4841] = {.lex_state = 151, .external_lex_state = 5}, - [4842] = {.lex_state = 151, .external_lex_state = 5}, - [4843] = {.lex_state = 151, .external_lex_state = 5}, - [4844] = {.lex_state = 151, .external_lex_state = 5}, - [4845] = {.lex_state = 151, .external_lex_state = 5}, - [4846] = {.lex_state = 151, .external_lex_state = 5}, - [4847] = {.lex_state = 151, .external_lex_state = 5}, - [4848] = {.lex_state = 151, .external_lex_state = 2}, - [4849] = {.lex_state = 151, .external_lex_state = 5}, - [4850] = {.lex_state = 151, .external_lex_state = 5}, - [4851] = {.lex_state = 151, .external_lex_state = 5}, - [4852] = {.lex_state = 151, .external_lex_state = 5}, - [4853] = {.lex_state = 151, .external_lex_state = 5}, - [4854] = {.lex_state = 151, .external_lex_state = 5}, - [4855] = {.lex_state = 151, .external_lex_state = 5}, - [4856] = {.lex_state = 151, .external_lex_state = 5}, - [4857] = {.lex_state = 151, .external_lex_state = 2}, - [4858] = {.lex_state = 151, .external_lex_state = 2}, - [4859] = {.lex_state = 151, .external_lex_state = 5}, - [4860] = {.lex_state = 151, .external_lex_state = 5}, - [4861] = {.lex_state = 151, .external_lex_state = 2}, - [4862] = {.lex_state = 151, .external_lex_state = 5}, - [4863] = {.lex_state = 151, .external_lex_state = 5}, - [4864] = {.lex_state = 151, .external_lex_state = 5}, - [4865] = {.lex_state = 151, .external_lex_state = 5}, - [4866] = {.lex_state = 151, .external_lex_state = 5}, - [4867] = {.lex_state = 151, .external_lex_state = 5}, - [4868] = {.lex_state = 151, .external_lex_state = 5}, - [4869] = {.lex_state = 151, .external_lex_state = 5}, - [4870] = {.lex_state = 151, .external_lex_state = 5}, - [4871] = {.lex_state = 151, .external_lex_state = 5}, - [4872] = {.lex_state = 151, .external_lex_state = 2}, - [4873] = {.lex_state = 151, .external_lex_state = 5}, - [4874] = {.lex_state = 151, .external_lex_state = 5}, - [4875] = {.lex_state = 151, .external_lex_state = 5}, - [4876] = {.lex_state = 151, .external_lex_state = 5}, - [4877] = {.lex_state = 151, .external_lex_state = 5}, - [4878] = {.lex_state = 151, .external_lex_state = 5}, - [4879] = {.lex_state = 151, .external_lex_state = 5}, - [4880] = {.lex_state = 151, .external_lex_state = 5}, - [4881] = {.lex_state = 151, .external_lex_state = 5}, - [4882] = {.lex_state = 151, .external_lex_state = 5}, - [4883] = {.lex_state = 151, .external_lex_state = 5}, - [4884] = {.lex_state = 151, .external_lex_state = 5}, - [4885] = {.lex_state = 151, .external_lex_state = 5}, - [4886] = {.lex_state = 151, .external_lex_state = 5}, - [4887] = {.lex_state = 151, .external_lex_state = 2}, - [4888] = {.lex_state = 151, .external_lex_state = 2}, - [4889] = {.lex_state = 151, .external_lex_state = 2}, - [4890] = {.lex_state = 151, .external_lex_state = 2}, - [4891] = {.lex_state = 151, .external_lex_state = 5}, - [4892] = {.lex_state = 151, .external_lex_state = 2}, - [4893] = {.lex_state = 151, .external_lex_state = 2}, - [4894] = {.lex_state = 151, .external_lex_state = 5}, - [4895] = {.lex_state = 151, .external_lex_state = 2}, - [4896] = {.lex_state = 151, .external_lex_state = 5}, - [4897] = {.lex_state = 151, .external_lex_state = 2}, - [4898] = {.lex_state = 151, .external_lex_state = 2}, - [4899] = {.lex_state = 151, .external_lex_state = 5}, - [4900] = {.lex_state = 151, .external_lex_state = 5}, - [4901] = {.lex_state = 151, .external_lex_state = 5}, - [4902] = {.lex_state = 151, .external_lex_state = 5}, - [4903] = {.lex_state = 151, .external_lex_state = 2}, - [4904] = {.lex_state = 151, .external_lex_state = 5}, - [4905] = {.lex_state = 151, .external_lex_state = 5}, - [4906] = {.lex_state = 151, .external_lex_state = 2}, - [4907] = {.lex_state = 151, .external_lex_state = 2}, - [4908] = {.lex_state = 151, .external_lex_state = 5}, - [4909] = {.lex_state = 151, .external_lex_state = 5}, - [4910] = {.lex_state = 151, .external_lex_state = 5}, - [4911] = {.lex_state = 151, .external_lex_state = 5}, - [4912] = {.lex_state = 151, .external_lex_state = 2}, - [4913] = {.lex_state = 151, .external_lex_state = 5}, - [4914] = {.lex_state = 151, .external_lex_state = 5}, - [4915] = {.lex_state = 151, .external_lex_state = 5}, - [4916] = {.lex_state = 151, .external_lex_state = 5}, - [4917] = {.lex_state = 151, .external_lex_state = 5}, - [4918] = {.lex_state = 151, .external_lex_state = 5}, - [4919] = {.lex_state = 151, .external_lex_state = 2}, - [4920] = {.lex_state = 151, .external_lex_state = 5}, - [4921] = {.lex_state = 151, .external_lex_state = 2}, - [4922] = {.lex_state = 151, .external_lex_state = 5}, - [4923] = {.lex_state = 151, .external_lex_state = 2}, - [4924] = {.lex_state = 151, .external_lex_state = 5}, - [4925] = {.lex_state = 2, .external_lex_state = 2}, - [4926] = {.lex_state = 151, .external_lex_state = 5}, - [4927] = {.lex_state = 151, .external_lex_state = 5}, - [4928] = {.lex_state = 151, .external_lex_state = 5}, - [4929] = {.lex_state = 151, .external_lex_state = 5}, - [4930] = {.lex_state = 151, .external_lex_state = 5}, - [4931] = {.lex_state = 151, .external_lex_state = 5}, - [4932] = {.lex_state = 151, .external_lex_state = 5}, - [4933] = {.lex_state = 151, .external_lex_state = 5}, - [4934] = {.lex_state = 151, .external_lex_state = 5}, - [4935] = {.lex_state = 151, .external_lex_state = 5}, - [4936] = {.lex_state = 151, .external_lex_state = 5}, - [4937] = {.lex_state = 151, .external_lex_state = 5}, - [4938] = {.lex_state = 151, .external_lex_state = 2}, - [4939] = {.lex_state = 151, .external_lex_state = 5}, - [4940] = {.lex_state = 5, .external_lex_state = 2}, - [4941] = {.lex_state = 151, .external_lex_state = 2}, - [4942] = {.lex_state = 151, .external_lex_state = 5}, - [4943] = {.lex_state = 151, .external_lex_state = 5}, - [4944] = {.lex_state = 151, .external_lex_state = 5}, - [4945] = {.lex_state = 5, .external_lex_state = 2}, - [4946] = {.lex_state = 151, .external_lex_state = 5}, - [4947] = {.lex_state = 151, .external_lex_state = 5}, - [4948] = {.lex_state = 151, .external_lex_state = 5}, - [4949] = {.lex_state = 151, .external_lex_state = 5}, - [4950] = {.lex_state = 151, .external_lex_state = 5}, - [4951] = {.lex_state = 151, .external_lex_state = 2}, - [4952] = {.lex_state = 151, .external_lex_state = 5}, - [4953] = {.lex_state = 151, .external_lex_state = 5}, + [4556] = {.lex_state = 13, .external_lex_state = 2}, + [4557] = {.lex_state = 13, .external_lex_state = 2}, + [4558] = {.lex_state = 13, .external_lex_state = 2}, + [4559] = {.lex_state = 13, .external_lex_state = 2}, + [4560] = {.lex_state = 13, .external_lex_state = 2}, + [4561] = {.lex_state = 13, .external_lex_state = 2}, + [4562] = {.lex_state = 13, .external_lex_state = 2}, + [4563] = {.lex_state = 13, .external_lex_state = 2}, + [4564] = {.lex_state = 13, .external_lex_state = 2}, + [4565] = {.lex_state = 13, .external_lex_state = 2}, + [4566] = {.lex_state = 13, .external_lex_state = 2}, + [4567] = {.lex_state = 13, .external_lex_state = 2}, + [4568] = {.lex_state = 13, .external_lex_state = 2}, + [4569] = {.lex_state = 1, .external_lex_state = 2}, + [4570] = {.lex_state = 1, .external_lex_state = 2}, + [4571] = {.lex_state = 1, .external_lex_state = 2}, + [4572] = {.lex_state = 1, .external_lex_state = 2}, + [4573] = {.lex_state = 1, .external_lex_state = 2}, + [4574] = {.lex_state = 1, .external_lex_state = 2}, + [4575] = {.lex_state = 13, .external_lex_state = 2}, + [4576] = {.lex_state = 13, .external_lex_state = 2}, + [4577] = {.lex_state = 150, .external_lex_state = 2}, + [4578] = {.lex_state = 150, .external_lex_state = 2}, + [4579] = {.lex_state = 13, .external_lex_state = 2}, + [4580] = {.lex_state = 13, .external_lex_state = 2}, + [4581] = {.lex_state = 13, .external_lex_state = 2}, + [4582] = {.lex_state = 150, .external_lex_state = 2}, + [4583] = {.lex_state = 150, .external_lex_state = 2}, + [4584] = {.lex_state = 150, .external_lex_state = 2}, + [4585] = {.lex_state = 150, .external_lex_state = 2}, + [4586] = {.lex_state = 150, .external_lex_state = 6}, + [4587] = {.lex_state = 13, .external_lex_state = 2}, + [4588] = {.lex_state = 13, .external_lex_state = 2}, + [4589] = {.lex_state = 150, .external_lex_state = 2}, + [4590] = {.lex_state = 1, .external_lex_state = 2}, + [4591] = {.lex_state = 1, .external_lex_state = 2}, + [4592] = {.lex_state = 13, .external_lex_state = 2}, + [4593] = {.lex_state = 13, .external_lex_state = 2}, + [4594] = {.lex_state = 13, .external_lex_state = 2}, + [4595] = {.lex_state = 13, .external_lex_state = 2}, + [4596] = {.lex_state = 13, .external_lex_state = 2}, + [4597] = {.lex_state = 13, .external_lex_state = 2}, + [4598] = {.lex_state = 150, .external_lex_state = 5}, + [4599] = {.lex_state = 150, .external_lex_state = 5}, + [4600] = {.lex_state = 13, .external_lex_state = 2}, + [4601] = {.lex_state = 150, .external_lex_state = 6}, + [4602] = {.lex_state = 150, .external_lex_state = 5}, + [4603] = {.lex_state = 150, .external_lex_state = 6}, + [4604] = {.lex_state = 13, .external_lex_state = 2}, + [4605] = {.lex_state = 13, .external_lex_state = 2}, + [4606] = {.lex_state = 13, .external_lex_state = 2}, + [4607] = {.lex_state = 13, .external_lex_state = 2}, + [4608] = {.lex_state = 13, .external_lex_state = 2}, + [4609] = {.lex_state = 150, .external_lex_state = 5}, + [4610] = {.lex_state = 13, .external_lex_state = 2}, + [4611] = {.lex_state = 13, .external_lex_state = 2}, + [4612] = {.lex_state = 13, .external_lex_state = 2}, + [4613] = {.lex_state = 13, .external_lex_state = 2}, + [4614] = {.lex_state = 150, .external_lex_state = 5}, + [4615] = {.lex_state = 150, .external_lex_state = 2}, + [4616] = {.lex_state = 150, .external_lex_state = 5}, + [4617] = {.lex_state = 150, .external_lex_state = 5}, + [4618] = {.lex_state = 13, .external_lex_state = 2}, + [4619] = {.lex_state = 13, .external_lex_state = 2}, + [4620] = {.lex_state = 150, .external_lex_state = 2}, + [4621] = {.lex_state = 150, .external_lex_state = 2}, + [4622] = {.lex_state = 13, .external_lex_state = 2}, + [4623] = {.lex_state = 150, .external_lex_state = 2}, + [4624] = {.lex_state = 13, .external_lex_state = 2}, + [4625] = {.lex_state = 13, .external_lex_state = 2}, + [4626] = {.lex_state = 13, .external_lex_state = 2}, + [4627] = {.lex_state = 13, .external_lex_state = 2}, + [4628] = {.lex_state = 150, .external_lex_state = 5}, + [4629] = {.lex_state = 13, .external_lex_state = 2}, + [4630] = {.lex_state = 13, .external_lex_state = 2}, + [4631] = {.lex_state = 13, .external_lex_state = 2}, + [4632] = {.lex_state = 13, .external_lex_state = 2}, + [4633] = {.lex_state = 150, .external_lex_state = 5}, + [4634] = {.lex_state = 150, .external_lex_state = 5}, + [4635] = {.lex_state = 150, .external_lex_state = 5}, + [4636] = {.lex_state = 150, .external_lex_state = 5}, + [4637] = {.lex_state = 150, .external_lex_state = 5}, + [4638] = {.lex_state = 150, .external_lex_state = 5}, + [4639] = {.lex_state = 13, .external_lex_state = 2}, + [4640] = {.lex_state = 13, .external_lex_state = 2}, + [4641] = {.lex_state = 13, .external_lex_state = 2}, + [4642] = {.lex_state = 13, .external_lex_state = 2}, + [4643] = {.lex_state = 13, .external_lex_state = 2}, + [4644] = {.lex_state = 13, .external_lex_state = 2}, + [4645] = {.lex_state = 13, .external_lex_state = 2}, + [4646] = {.lex_state = 13, .external_lex_state = 2}, + [4647] = {.lex_state = 150, .external_lex_state = 5}, + [4648] = {.lex_state = 13, .external_lex_state = 2}, + [4649] = {.lex_state = 150, .external_lex_state = 5}, + [4650] = {.lex_state = 13, .external_lex_state = 2}, + [4651] = {.lex_state = 13, .external_lex_state = 2}, + [4652] = {.lex_state = 13, .external_lex_state = 2}, + [4653] = {.lex_state = 13, .external_lex_state = 2}, + [4654] = {.lex_state = 13, .external_lex_state = 2}, + [4655] = {.lex_state = 13, .external_lex_state = 2}, + [4656] = {.lex_state = 150, .external_lex_state = 5}, + [4657] = {.lex_state = 150, .external_lex_state = 5}, + [4658] = {.lex_state = 13, .external_lex_state = 2}, + [4659] = {.lex_state = 13, .external_lex_state = 2}, + [4660] = {.lex_state = 13, .external_lex_state = 2}, + [4661] = {.lex_state = 13, .external_lex_state = 2}, + [4662] = {.lex_state = 13, .external_lex_state = 2}, + [4663] = {.lex_state = 13, .external_lex_state = 2}, + [4664] = {.lex_state = 13, .external_lex_state = 2}, + [4665] = {.lex_state = 13, .external_lex_state = 2}, + [4666] = {.lex_state = 13, .external_lex_state = 2}, + [4667] = {.lex_state = 13, .external_lex_state = 2}, + [4668] = {.lex_state = 13, .external_lex_state = 2}, + [4669] = {.lex_state = 13, .external_lex_state = 2}, + [4670] = {.lex_state = 13, .external_lex_state = 2}, + [4671] = {.lex_state = 13, .external_lex_state = 2}, + [4672] = {.lex_state = 13, .external_lex_state = 2}, + [4673] = {.lex_state = 13, .external_lex_state = 2}, + [4674] = {.lex_state = 13, .external_lex_state = 2}, + [4675] = {.lex_state = 13, .external_lex_state = 2}, + [4676] = {.lex_state = 13, .external_lex_state = 2}, + [4677] = {.lex_state = 13, .external_lex_state = 2}, + [4678] = {.lex_state = 13, .external_lex_state = 2}, + [4679] = {.lex_state = 13, .external_lex_state = 2}, + [4680] = {.lex_state = 13, .external_lex_state = 2}, + [4681] = {.lex_state = 13, .external_lex_state = 2}, + [4682] = {.lex_state = 13, .external_lex_state = 2}, + [4683] = {.lex_state = 150, .external_lex_state = 5}, + [4684] = {.lex_state = 13, .external_lex_state = 2}, + [4685] = {.lex_state = 150, .external_lex_state = 5}, + [4686] = {.lex_state = 150, .external_lex_state = 5}, + [4687] = {.lex_state = 150, .external_lex_state = 5}, + [4688] = {.lex_state = 150, .external_lex_state = 5}, + [4689] = {.lex_state = 13, .external_lex_state = 2}, + [4690] = {.lex_state = 13, .external_lex_state = 2}, + [4691] = {.lex_state = 13, .external_lex_state = 2}, + [4692] = {.lex_state = 150, .external_lex_state = 5}, + [4693] = {.lex_state = 13, .external_lex_state = 2}, + [4694] = {.lex_state = 150, .external_lex_state = 5}, + [4695] = {.lex_state = 13, .external_lex_state = 2}, + [4696] = {.lex_state = 13, .external_lex_state = 2}, + [4697] = {.lex_state = 13, .external_lex_state = 2}, + [4698] = {.lex_state = 150, .external_lex_state = 5}, + [4699] = {.lex_state = 150, .external_lex_state = 5}, + [4700] = {.lex_state = 13, .external_lex_state = 2}, + [4701] = {.lex_state = 13, .external_lex_state = 2}, + [4702] = {.lex_state = 25, .external_lex_state = 2}, + [4703] = {.lex_state = 25, .external_lex_state = 2}, + [4704] = {.lex_state = 13, .external_lex_state = 2}, + [4705] = {.lex_state = 13, .external_lex_state = 2}, + [4706] = {.lex_state = 13, .external_lex_state = 2}, + [4707] = {.lex_state = 13, .external_lex_state = 2}, + [4708] = {.lex_state = 150, .external_lex_state = 5}, + [4709] = {.lex_state = 13, .external_lex_state = 2}, + [4710] = {.lex_state = 150, .external_lex_state = 5}, + [4711] = {.lex_state = 150, .external_lex_state = 5}, + [4712] = {.lex_state = 150, .external_lex_state = 5}, + [4713] = {.lex_state = 13, .external_lex_state = 2}, + [4714] = {.lex_state = 150, .external_lex_state = 5}, + [4715] = {.lex_state = 13, .external_lex_state = 2}, + [4716] = {.lex_state = 13, .external_lex_state = 2}, + [4717] = {.lex_state = 150, .external_lex_state = 5}, + [4718] = {.lex_state = 13, .external_lex_state = 2}, + [4719] = {.lex_state = 13, .external_lex_state = 2}, + [4720] = {.lex_state = 13, .external_lex_state = 2}, + [4721] = {.lex_state = 13, .external_lex_state = 2}, + [4722] = {.lex_state = 150, .external_lex_state = 5}, + [4723] = {.lex_state = 13, .external_lex_state = 2}, + [4724] = {.lex_state = 13, .external_lex_state = 2}, + [4725] = {.lex_state = 150, .external_lex_state = 5}, + [4726] = {.lex_state = 150, .external_lex_state = 5}, + [4727] = {.lex_state = 13, .external_lex_state = 2}, + [4728] = {.lex_state = 150, .external_lex_state = 5}, + [4729] = {.lex_state = 150, .external_lex_state = 5}, + [4730] = {.lex_state = 13, .external_lex_state = 2}, + [4731] = {.lex_state = 150, .external_lex_state = 5}, + [4732] = {.lex_state = 150, .external_lex_state = 5}, + [4733] = {.lex_state = 150, .external_lex_state = 5}, + [4734] = {.lex_state = 13, .external_lex_state = 2}, + [4735] = {.lex_state = 13, .external_lex_state = 2}, + [4736] = {.lex_state = 13, .external_lex_state = 2}, + [4737] = {.lex_state = 150, .external_lex_state = 5}, + [4738] = {.lex_state = 25, .external_lex_state = 2}, + [4739] = {.lex_state = 25, .external_lex_state = 2}, + [4740] = {.lex_state = 150, .external_lex_state = 5}, + [4741] = {.lex_state = 13, .external_lex_state = 2}, + [4742] = {.lex_state = 150, .external_lex_state = 5}, + [4743] = {.lex_state = 13, .external_lex_state = 2}, + [4744] = {.lex_state = 13, .external_lex_state = 2}, + [4745] = {.lex_state = 150, .external_lex_state = 5}, + [4746] = {.lex_state = 25, .external_lex_state = 2}, + [4747] = {.lex_state = 25, .external_lex_state = 2}, + [4748] = {.lex_state = 13, .external_lex_state = 2}, + [4749] = {.lex_state = 13, .external_lex_state = 2}, + [4750] = {.lex_state = 150, .external_lex_state = 5}, + [4751] = {.lex_state = 13, .external_lex_state = 2}, + [4752] = {.lex_state = 150, .external_lex_state = 5}, + [4753] = {.lex_state = 13, .external_lex_state = 2}, + [4754] = {.lex_state = 13, .external_lex_state = 2}, + [4755] = {.lex_state = 150, .external_lex_state = 5}, + [4756] = {.lex_state = 13, .external_lex_state = 2}, + [4757] = {.lex_state = 150, .external_lex_state = 5}, + [4758] = {.lex_state = 150, .external_lex_state = 5}, + [4759] = {.lex_state = 13, .external_lex_state = 2}, + [4760] = {.lex_state = 150, .external_lex_state = 6}, + [4761] = {.lex_state = 13, .external_lex_state = 2}, + [4762] = {.lex_state = 13, .external_lex_state = 2}, + [4763] = {.lex_state = 150, .external_lex_state = 5}, + [4764] = {.lex_state = 150, .external_lex_state = 2}, + [4765] = {.lex_state = 150, .external_lex_state = 5}, + [4766] = {.lex_state = 13, .external_lex_state = 2}, + [4767] = {.lex_state = 150, .external_lex_state = 5}, + [4768] = {.lex_state = 150, .external_lex_state = 5}, + [4769] = {.lex_state = 13, .external_lex_state = 2}, + [4770] = {.lex_state = 150, .external_lex_state = 5}, + [4771] = {.lex_state = 13, .external_lex_state = 2}, + [4772] = {.lex_state = 150, .external_lex_state = 5}, + [4773] = {.lex_state = 13, .external_lex_state = 2}, + [4774] = {.lex_state = 150, .external_lex_state = 5}, + [4775] = {.lex_state = 13, .external_lex_state = 2}, + [4776] = {.lex_state = 150, .external_lex_state = 5}, + [4777] = {.lex_state = 150, .external_lex_state = 5}, + [4778] = {.lex_state = 150, .external_lex_state = 5}, + [4779] = {.lex_state = 13, .external_lex_state = 2}, + [4780] = {.lex_state = 13, .external_lex_state = 2}, + [4781] = {.lex_state = 13, .external_lex_state = 2}, + [4782] = {.lex_state = 13, .external_lex_state = 2}, + [4783] = {.lex_state = 25, .external_lex_state = 2}, + [4784] = {.lex_state = 25, .external_lex_state = 2}, + [4785] = {.lex_state = 25, .external_lex_state = 2}, + [4786] = {.lex_state = 25, .external_lex_state = 2}, + [4787] = {.lex_state = 25, .external_lex_state = 2}, + [4788] = {.lex_state = 25, .external_lex_state = 2}, + [4789] = {.lex_state = 150, .external_lex_state = 5}, + [4790] = {.lex_state = 13, .external_lex_state = 2}, + [4791] = {.lex_state = 13, .external_lex_state = 2}, + [4792] = {.lex_state = 150, .external_lex_state = 2}, + [4793] = {.lex_state = 150, .external_lex_state = 5}, + [4794] = {.lex_state = 13, .external_lex_state = 2}, + [4795] = {.lex_state = 150, .external_lex_state = 5}, + [4796] = {.lex_state = 150, .external_lex_state = 5}, + [4797] = {.lex_state = 13, .external_lex_state = 2}, + [4798] = {.lex_state = 25, .external_lex_state = 2}, + [4799] = {.lex_state = 25, .external_lex_state = 2}, + [4800] = {.lex_state = 13, .external_lex_state = 2}, + [4801] = {.lex_state = 150, .external_lex_state = 5}, + [4802] = {.lex_state = 13, .external_lex_state = 2}, + [4803] = {.lex_state = 13, .external_lex_state = 2}, + [4804] = {.lex_state = 5, .external_lex_state = 2}, + [4805] = {.lex_state = 150, .external_lex_state = 2}, + [4806] = {.lex_state = 150, .external_lex_state = 5}, + [4807] = {.lex_state = 25, .external_lex_state = 2}, + [4808] = {.lex_state = 150, .external_lex_state = 5}, + [4809] = {.lex_state = 150, .external_lex_state = 5}, + [4810] = {.lex_state = 13, .external_lex_state = 2}, + [4811] = {.lex_state = 150, .external_lex_state = 5}, + [4812] = {.lex_state = 150, .external_lex_state = 2}, + [4813] = {.lex_state = 150, .external_lex_state = 5}, + [4814] = {.lex_state = 13, .external_lex_state = 2}, + [4815] = {.lex_state = 150, .external_lex_state = 5}, + [4816] = {.lex_state = 13, .external_lex_state = 2}, + [4817] = {.lex_state = 150, .external_lex_state = 5}, + [4818] = {.lex_state = 13, .external_lex_state = 2}, + [4819] = {.lex_state = 13, .external_lex_state = 2}, + [4820] = {.lex_state = 150, .external_lex_state = 5}, + [4821] = {.lex_state = 150, .external_lex_state = 5}, + [4822] = {.lex_state = 150, .external_lex_state = 5}, + [4823] = {.lex_state = 150, .external_lex_state = 5}, + [4824] = {.lex_state = 25, .external_lex_state = 2}, + [4825] = {.lex_state = 150, .external_lex_state = 5}, + [4826] = {.lex_state = 13, .external_lex_state = 2}, + [4827] = {.lex_state = 150, .external_lex_state = 5}, + [4828] = {.lex_state = 25, .external_lex_state = 2}, + [4829] = {.lex_state = 25, .external_lex_state = 2}, + [4830] = {.lex_state = 150, .external_lex_state = 5}, + [4831] = {.lex_state = 150, .external_lex_state = 5}, + [4832] = {.lex_state = 150, .external_lex_state = 5}, + [4833] = {.lex_state = 13, .external_lex_state = 2}, + [4834] = {.lex_state = 150, .external_lex_state = 5}, + [4835] = {.lex_state = 13, .external_lex_state = 2}, + [4836] = {.lex_state = 150, .external_lex_state = 5}, + [4837] = {.lex_state = 150, .external_lex_state = 5}, + [4838] = {.lex_state = 150, .external_lex_state = 5}, + [4839] = {.lex_state = 150, .external_lex_state = 5}, + [4840] = {.lex_state = 150, .external_lex_state = 6}, + [4841] = {.lex_state = 13, .external_lex_state = 2}, + [4842] = {.lex_state = 13, .external_lex_state = 2}, + [4843] = {.lex_state = 150, .external_lex_state = 5}, + [4844] = {.lex_state = 13, .external_lex_state = 2}, + [4845] = {.lex_state = 150, .external_lex_state = 5}, + [4846] = {.lex_state = 150, .external_lex_state = 5}, + [4847] = {.lex_state = 150, .external_lex_state = 5}, + [4848] = {.lex_state = 150, .external_lex_state = 5}, + [4849] = {.lex_state = 13, .external_lex_state = 2}, + [4850] = {.lex_state = 13, .external_lex_state = 2}, + [4851] = {.lex_state = 150, .external_lex_state = 5}, + [4852] = {.lex_state = 150, .external_lex_state = 5}, + [4853] = {.lex_state = 150, .external_lex_state = 5}, + [4854] = {.lex_state = 13, .external_lex_state = 2}, + [4855] = {.lex_state = 150, .external_lex_state = 5}, + [4856] = {.lex_state = 150, .external_lex_state = 5}, + [4857] = {.lex_state = 23, .external_lex_state = 8}, + [4858] = {.lex_state = 150, .external_lex_state = 5}, + [4859] = {.lex_state = 150, .external_lex_state = 5}, + [4860] = {.lex_state = 150, .external_lex_state = 5}, + [4861] = {.lex_state = 13, .external_lex_state = 2}, + [4862] = {.lex_state = 13, .external_lex_state = 2}, + [4863] = {.lex_state = 23, .external_lex_state = 8}, + [4864] = {.lex_state = 150, .external_lex_state = 6}, + [4865] = {.lex_state = 13, .external_lex_state = 2}, + [4866] = {.lex_state = 13, .external_lex_state = 2}, + [4867] = {.lex_state = 150, .external_lex_state = 5}, + [4868] = {.lex_state = 150, .external_lex_state = 5}, + [4869] = {.lex_state = 13, .external_lex_state = 2}, + [4870] = {.lex_state = 13, .external_lex_state = 2}, + [4871] = {.lex_state = 150, .external_lex_state = 5}, + [4872] = {.lex_state = 13, .external_lex_state = 2}, + [4873] = {.lex_state = 150, .external_lex_state = 5}, + [4874] = {.lex_state = 150, .external_lex_state = 5}, + [4875] = {.lex_state = 13, .external_lex_state = 2}, + [4876] = {.lex_state = 25, .external_lex_state = 2}, + [4877] = {.lex_state = 13, .external_lex_state = 2}, + [4878] = {.lex_state = 150, .external_lex_state = 5}, + [4879] = {.lex_state = 13, .external_lex_state = 2}, + [4880] = {.lex_state = 150, .external_lex_state = 2}, + [4881] = {.lex_state = 13, .external_lex_state = 2}, + [4882] = {.lex_state = 150, .external_lex_state = 5}, + [4883] = {.lex_state = 150, .external_lex_state = 5}, + [4884] = {.lex_state = 150, .external_lex_state = 5}, + [4885] = {.lex_state = 150, .external_lex_state = 5}, + [4886] = {.lex_state = 150, .external_lex_state = 2}, + [4887] = {.lex_state = 150, .external_lex_state = 5}, + [4888] = {.lex_state = 13, .external_lex_state = 2}, + [4889] = {.lex_state = 150, .external_lex_state = 2}, + [4890] = {.lex_state = 13, .external_lex_state = 2}, + [4891] = {.lex_state = 150, .external_lex_state = 5}, + [4892] = {.lex_state = 13, .external_lex_state = 2}, + [4893] = {.lex_state = 150, .external_lex_state = 5}, + [4894] = {.lex_state = 150, .external_lex_state = 5}, + [4895] = {.lex_state = 150, .external_lex_state = 5}, + [4896] = {.lex_state = 150, .external_lex_state = 5}, + [4897] = {.lex_state = 150, .external_lex_state = 5}, + [4898] = {.lex_state = 13, .external_lex_state = 2}, + [4899] = {.lex_state = 150, .external_lex_state = 5}, + [4900] = {.lex_state = 150, .external_lex_state = 5}, + [4901] = {.lex_state = 150, .external_lex_state = 5}, + [4902] = {.lex_state = 150, .external_lex_state = 5}, + [4903] = {.lex_state = 150, .external_lex_state = 5}, + [4904] = {.lex_state = 150, .external_lex_state = 5}, + [4905] = {.lex_state = 150, .external_lex_state = 5}, + [4906] = {.lex_state = 150, .external_lex_state = 5}, + [4907] = {.lex_state = 150, .external_lex_state = 2}, + [4908] = {.lex_state = 150, .external_lex_state = 5}, + [4909] = {.lex_state = 150, .external_lex_state = 2}, + [4910] = {.lex_state = 13, .external_lex_state = 2}, + [4911] = {.lex_state = 13, .external_lex_state = 2}, + [4912] = {.lex_state = 13, .external_lex_state = 2}, + [4913] = {.lex_state = 150, .external_lex_state = 5}, + [4914] = {.lex_state = 13, .external_lex_state = 2}, + [4915] = {.lex_state = 13, .external_lex_state = 2}, + [4916] = {.lex_state = 150, .external_lex_state = 5}, + [4917] = {.lex_state = 150, .external_lex_state = 5}, + [4918] = {.lex_state = 150, .external_lex_state = 5}, + [4919] = {.lex_state = 13, .external_lex_state = 2}, + [4920] = {.lex_state = 150, .external_lex_state = 5}, + [4921] = {.lex_state = 150, .external_lex_state = 5}, + [4922] = {.lex_state = 150, .external_lex_state = 5}, + [4923] = {.lex_state = 150, .external_lex_state = 5}, + [4924] = {.lex_state = 150, .external_lex_state = 5}, + [4925] = {.lex_state = 150, .external_lex_state = 5}, + [4926] = {.lex_state = 150, .external_lex_state = 5}, + [4927] = {.lex_state = 150, .external_lex_state = 2}, + [4928] = {.lex_state = 13, .external_lex_state = 2}, + [4929] = {.lex_state = 150, .external_lex_state = 5}, + [4930] = {.lex_state = 13, .external_lex_state = 2}, + [4931] = {.lex_state = 23, .external_lex_state = 8}, + [4932] = {.lex_state = 13, .external_lex_state = 2}, + [4933] = {.lex_state = 13, .external_lex_state = 2}, + [4934] = {.lex_state = 13, .external_lex_state = 2}, + [4935] = {.lex_state = 150, .external_lex_state = 5}, + [4936] = {.lex_state = 13, .external_lex_state = 2}, + [4937] = {.lex_state = 13, .external_lex_state = 2}, + [4938] = {.lex_state = 150, .external_lex_state = 5}, + [4939] = {.lex_state = 13, .external_lex_state = 2}, + [4940] = {.lex_state = 13, .external_lex_state = 2}, + [4941] = {.lex_state = 13, .external_lex_state = 2}, + [4942] = {.lex_state = 150, .external_lex_state = 6}, + [4943] = {.lex_state = 150, .external_lex_state = 6}, + [4944] = {.lex_state = 13, .external_lex_state = 2}, + [4945] = {.lex_state = 13, .external_lex_state = 2}, + [4946] = {.lex_state = 13, .external_lex_state = 2}, + [4947] = {.lex_state = 13, .external_lex_state = 2}, + [4948] = {.lex_state = 150, .external_lex_state = 5}, + [4949] = {.lex_state = 13, .external_lex_state = 2}, + [4950] = {.lex_state = 13, .external_lex_state = 2}, + [4951] = {.lex_state = 13, .external_lex_state = 2}, + [4952] = {.lex_state = 13, .external_lex_state = 2}, + [4953] = {.lex_state = 16, .external_lex_state = 2}, [4954] = {.lex_state = 13, .external_lex_state = 2}, - [4955] = {.lex_state = 151, .external_lex_state = 5}, - [4956] = {.lex_state = 151, .external_lex_state = 5}, - [4957] = {.lex_state = 151, .external_lex_state = 5}, - [4958] = {.lex_state = 151, .external_lex_state = 5}, - [4959] = {.lex_state = 151, .external_lex_state = 5}, - [4960] = {.lex_state = 151, .external_lex_state = 5}, - [4961] = {.lex_state = 151, .external_lex_state = 5}, - [4962] = {.lex_state = 151, .external_lex_state = 5}, - [4963] = {.lex_state = 151, .external_lex_state = 2}, - [4964] = {.lex_state = 151, .external_lex_state = 5}, - [4965] = {.lex_state = 151, .external_lex_state = 5}, - [4966] = {.lex_state = 151, .external_lex_state = 5}, - [4967] = {.lex_state = 151, .external_lex_state = 5}, - [4968] = {.lex_state = 151, .external_lex_state = 5}, - [4969] = {.lex_state = 151, .external_lex_state = 5}, - [4970] = {.lex_state = 151, .external_lex_state = 5}, - [4971] = {.lex_state = 151, .external_lex_state = 5}, - [4972] = {.lex_state = 151, .external_lex_state = 5}, - [4973] = {.lex_state = 151, .external_lex_state = 5}, - [4974] = {.lex_state = 151, .external_lex_state = 5}, - [4975] = {.lex_state = 151, .external_lex_state = 5}, - [4976] = {.lex_state = 151, .external_lex_state = 5}, - [4977] = {.lex_state = 151, .external_lex_state = 5}, - [4978] = {.lex_state = 151, .external_lex_state = 5}, - [4979] = {.lex_state = 151, .external_lex_state = 2}, - [4980] = {.lex_state = 151, .external_lex_state = 5}, - [4981] = {.lex_state = 151, .external_lex_state = 5}, - [4982] = {.lex_state = 151, .external_lex_state = 5}, - [4983] = {.lex_state = 151, .external_lex_state = 5}, - [4984] = {.lex_state = 151, .external_lex_state = 5}, - [4985] = {.lex_state = 151, .external_lex_state = 5}, - [4986] = {.lex_state = 151, .external_lex_state = 5}, - [4987] = {.lex_state = 151, .external_lex_state = 5}, - [4988] = {.lex_state = 151, .external_lex_state = 5}, - [4989] = {.lex_state = 151, .external_lex_state = 5}, - [4990] = {.lex_state = 151, .external_lex_state = 5}, - [4991] = {.lex_state = 151, .external_lex_state = 5}, - [4992] = {.lex_state = 151, .external_lex_state = 5}, - [4993] = {.lex_state = 151, .external_lex_state = 5}, - [4994] = {.lex_state = 151, .external_lex_state = 5}, - [4995] = {.lex_state = 151, .external_lex_state = 5}, - [4996] = {.lex_state = 151, .external_lex_state = 5}, - [4997] = {.lex_state = 151, .external_lex_state = 5}, - [4998] = {.lex_state = 151, .external_lex_state = 5}, - [4999] = {.lex_state = 151, .external_lex_state = 5}, - [5000] = {.lex_state = 151, .external_lex_state = 5}, - [5001] = {.lex_state = 151, .external_lex_state = 5}, - [5002] = {.lex_state = 151, .external_lex_state = 5}, - [5003] = {.lex_state = 151, .external_lex_state = 5}, - [5004] = {.lex_state = 151, .external_lex_state = 5}, - [5005] = {.lex_state = 151, .external_lex_state = 5}, - [5006] = {.lex_state = 151, .external_lex_state = 5}, - [5007] = {.lex_state = 151, .external_lex_state = 5}, - [5008] = {.lex_state = 151, .external_lex_state = 5}, - [5009] = {.lex_state = 151, .external_lex_state = 5}, - [5010] = {.lex_state = 151, .external_lex_state = 5}, - [5011] = {.lex_state = 151, .external_lex_state = 5}, - [5012] = {.lex_state = 151, .external_lex_state = 5}, - [5013] = {.lex_state = 151, .external_lex_state = 5}, - [5014] = {.lex_state = 151, .external_lex_state = 5}, - [5015] = {.lex_state = 151, .external_lex_state = 5}, - [5016] = {.lex_state = 151, .external_lex_state = 5}, - [5017] = {.lex_state = 151, .external_lex_state = 5}, - [5018] = {.lex_state = 151, .external_lex_state = 5}, - [5019] = {.lex_state = 151, .external_lex_state = 5}, - [5020] = {.lex_state = 151, .external_lex_state = 2}, - [5021] = {.lex_state = 151, .external_lex_state = 5}, - [5022] = {.lex_state = 151, .external_lex_state = 2}, - [5023] = {.lex_state = 151, .external_lex_state = 5}, - [5024] = {.lex_state = 151, .external_lex_state = 5}, - [5025] = {.lex_state = 5, .external_lex_state = 2}, - [5026] = {.lex_state = 151, .external_lex_state = 5}, - [5027] = {.lex_state = 151, .external_lex_state = 5}, - [5028] = {.lex_state = 151, .external_lex_state = 5}, - [5029] = {.lex_state = 151, .external_lex_state = 5}, - [5030] = {.lex_state = 151, .external_lex_state = 2}, - [5031] = {.lex_state = 151, .external_lex_state = 5}, - [5032] = {.lex_state = 151, .external_lex_state = 2}, - [5033] = {.lex_state = 151, .external_lex_state = 5}, - [5034] = {.lex_state = 151, .external_lex_state = 5}, - [5035] = {.lex_state = 151, .external_lex_state = 5}, - [5036] = {.lex_state = 151, .external_lex_state = 5}, - [5037] = {.lex_state = 151, .external_lex_state = 2}, - [5038] = {.lex_state = 151, .external_lex_state = 5}, + [4955] = {.lex_state = 150, .external_lex_state = 5}, + [4956] = {.lex_state = 150, .external_lex_state = 5}, + [4957] = {.lex_state = 150, .external_lex_state = 5}, + [4958] = {.lex_state = 150, .external_lex_state = 5}, + [4959] = {.lex_state = 150, .external_lex_state = 5}, + [4960] = {.lex_state = 150, .external_lex_state = 2}, + [4961] = {.lex_state = 150, .external_lex_state = 5}, + [4962] = {.lex_state = 150, .external_lex_state = 5}, + [4963] = {.lex_state = 13, .external_lex_state = 2}, + [4964] = {.lex_state = 13, .external_lex_state = 2}, + [4965] = {.lex_state = 13, .external_lex_state = 2}, + [4966] = {.lex_state = 13, .external_lex_state = 2}, + [4967] = {.lex_state = 150, .external_lex_state = 5}, + [4968] = {.lex_state = 150, .external_lex_state = 5}, + [4969] = {.lex_state = 150, .external_lex_state = 5}, + [4970] = {.lex_state = 150, .external_lex_state = 5}, + [4971] = {.lex_state = 13, .external_lex_state = 2}, + [4972] = {.lex_state = 150, .external_lex_state = 5}, + [4973] = {.lex_state = 150, .external_lex_state = 5}, + [4974] = {.lex_state = 150, .external_lex_state = 5}, + [4975] = {.lex_state = 150, .external_lex_state = 5}, + [4976] = {.lex_state = 13, .external_lex_state = 2}, + [4977] = {.lex_state = 150, .external_lex_state = 5}, + [4978] = {.lex_state = 150, .external_lex_state = 5}, + [4979] = {.lex_state = 150, .external_lex_state = 5}, + [4980] = {.lex_state = 150, .external_lex_state = 2}, + [4981] = {.lex_state = 13, .external_lex_state = 2}, + [4982] = {.lex_state = 13, .external_lex_state = 2}, + [4983] = {.lex_state = 13, .external_lex_state = 2}, + [4984] = {.lex_state = 13, .external_lex_state = 2}, + [4985] = {.lex_state = 13, .external_lex_state = 2}, + [4986] = {.lex_state = 150, .external_lex_state = 2}, + [4987] = {.lex_state = 13, .external_lex_state = 2}, + [4988] = {.lex_state = 150, .external_lex_state = 2}, + [4989] = {.lex_state = 13, .external_lex_state = 2}, + [4990] = {.lex_state = 150, .external_lex_state = 5}, + [4991] = {.lex_state = 13, .external_lex_state = 2}, + [4992] = {.lex_state = 13, .external_lex_state = 2}, + [4993] = {.lex_state = 13, .external_lex_state = 2}, + [4994] = {.lex_state = 13, .external_lex_state = 2}, + [4995] = {.lex_state = 13, .external_lex_state = 2}, + [4996] = {.lex_state = 13, .external_lex_state = 2}, + [4997] = {.lex_state = 150, .external_lex_state = 5}, + [4998] = {.lex_state = 13, .external_lex_state = 2}, + [4999] = {.lex_state = 150, .external_lex_state = 2}, + [5000] = {.lex_state = 13, .external_lex_state = 2}, + [5001] = {.lex_state = 13, .external_lex_state = 2}, + [5002] = {.lex_state = 13, .external_lex_state = 2}, + [5003] = {.lex_state = 13, .external_lex_state = 2}, + [5004] = {.lex_state = 150, .external_lex_state = 5}, + [5005] = {.lex_state = 13, .external_lex_state = 2}, + [5006] = {.lex_state = 150, .external_lex_state = 5}, + [5007] = {.lex_state = 150, .external_lex_state = 5}, + [5008] = {.lex_state = 13, .external_lex_state = 2}, + [5009] = {.lex_state = 13, .external_lex_state = 2}, + [5010] = {.lex_state = 13, .external_lex_state = 2}, + [5011] = {.lex_state = 13, .external_lex_state = 2}, + [5012] = {.lex_state = 150, .external_lex_state = 5}, + [5013] = {.lex_state = 150, .external_lex_state = 5}, + [5014] = {.lex_state = 150, .external_lex_state = 5}, + [5015] = {.lex_state = 150, .external_lex_state = 5}, + [5016] = {.lex_state = 150, .external_lex_state = 5}, + [5017] = {.lex_state = 150, .external_lex_state = 5}, + [5018] = {.lex_state = 150, .external_lex_state = 5}, + [5019] = {.lex_state = 150, .external_lex_state = 2}, + [5020] = {.lex_state = 150, .external_lex_state = 5}, + [5021] = {.lex_state = 150, .external_lex_state = 5}, + [5022] = {.lex_state = 25, .external_lex_state = 2}, + [5023] = {.lex_state = 13, .external_lex_state = 2}, + [5024] = {.lex_state = 150, .external_lex_state = 2}, + [5025] = {.lex_state = 150, .external_lex_state = 2}, + [5026] = {.lex_state = 150, .external_lex_state = 2}, + [5027] = {.lex_state = 13, .external_lex_state = 2}, + [5028] = {.lex_state = 150, .external_lex_state = 5}, + [5029] = {.lex_state = 150, .external_lex_state = 5}, + [5030] = {.lex_state = 150, .external_lex_state = 5}, + [5031] = {.lex_state = 150, .external_lex_state = 5}, + [5032] = {.lex_state = 150, .external_lex_state = 2}, + [5033] = {.lex_state = 13, .external_lex_state = 2}, + [5034] = {.lex_state = 13, .external_lex_state = 2}, + [5035] = {.lex_state = 150, .external_lex_state = 2}, + [5036] = {.lex_state = 13, .external_lex_state = 2}, + [5037] = {.lex_state = 13, .external_lex_state = 2}, + [5038] = {.lex_state = 13, .external_lex_state = 2}, [5039] = {.lex_state = 13, .external_lex_state = 2}, - [5040] = {.lex_state = 151, .external_lex_state = 5}, - [5041] = {.lex_state = 151, .external_lex_state = 5}, - [5042] = {.lex_state = 151, .external_lex_state = 5}, - [5043] = {.lex_state = 151, .external_lex_state = 5}, - [5044] = {.lex_state = 151, .external_lex_state = 5}, - [5045] = {.lex_state = 151, .external_lex_state = 5}, - [5046] = {.lex_state = 151, .external_lex_state = 5}, - [5047] = {.lex_state = 151, .external_lex_state = 5}, - [5048] = {.lex_state = 151, .external_lex_state = 5}, - [5049] = {.lex_state = 151, .external_lex_state = 2}, - [5050] = {.lex_state = 151, .external_lex_state = 5}, - [5051] = {.lex_state = 151, .external_lex_state = 5}, - [5052] = {.lex_state = 151, .external_lex_state = 5}, - [5053] = {.lex_state = 151, .external_lex_state = 5}, - [5054] = {.lex_state = 151, .external_lex_state = 5}, - [5055] = {.lex_state = 151, .external_lex_state = 5}, - [5056] = {.lex_state = 151, .external_lex_state = 5}, - [5057] = {.lex_state = 151, .external_lex_state = 5}, - [5058] = {.lex_state = 151, .external_lex_state = 5}, - [5059] = {.lex_state = 151, .external_lex_state = 5}, - [5060] = {.lex_state = 151, .external_lex_state = 2}, - [5061] = {.lex_state = 151, .external_lex_state = 5}, - [5062] = {.lex_state = 151, .external_lex_state = 5}, - [5063] = {.lex_state = 151, .external_lex_state = 5}, - [5064] = {.lex_state = 151, .external_lex_state = 5}, - [5065] = {.lex_state = 151, .external_lex_state = 5}, - [5066] = {.lex_state = 151, .external_lex_state = 5}, - [5067] = {.lex_state = 151, .external_lex_state = 5}, - [5068] = {.lex_state = 151, .external_lex_state = 5}, - [5069] = {.lex_state = 151, .external_lex_state = 2}, - [5070] = {.lex_state = 151, .external_lex_state = 2}, - [5071] = {.lex_state = 151, .external_lex_state = 2}, - [5072] = {.lex_state = 151, .external_lex_state = 5}, - [5073] = {.lex_state = 151, .external_lex_state = 2}, - [5074] = {.lex_state = 151, .external_lex_state = 5}, - [5075] = {.lex_state = 151, .external_lex_state = 5}, - [5076] = {.lex_state = 151, .external_lex_state = 2}, - [5077] = {.lex_state = 151, .external_lex_state = 5}, - [5078] = {.lex_state = 151, .external_lex_state = 5}, - [5079] = {.lex_state = 151, .external_lex_state = 5}, - [5080] = {.lex_state = 151, .external_lex_state = 2}, - [5081] = {.lex_state = 151, .external_lex_state = 2}, - [5082] = {.lex_state = 5, .external_lex_state = 2}, - [5083] = {.lex_state = 151, .external_lex_state = 5}, - [5084] = {.lex_state = 151, .external_lex_state = 5}, - [5085] = {.lex_state = 151, .external_lex_state = 5}, - [5086] = {.lex_state = 151, .external_lex_state = 2}, - [5087] = {.lex_state = 151, .external_lex_state = 2}, - [5088] = {.lex_state = 151, .external_lex_state = 5}, - [5089] = {.lex_state = 151, .external_lex_state = 2}, - [5090] = {.lex_state = 151, .external_lex_state = 5}, - [5091] = {.lex_state = 151, .external_lex_state = 5}, - [5092] = {.lex_state = 151, .external_lex_state = 2}, - [5093] = {.lex_state = 151, .external_lex_state = 5}, - [5094] = {.lex_state = 5, .external_lex_state = 2}, - [5095] = {.lex_state = 151, .external_lex_state = 5}, - [5096] = {.lex_state = 151, .external_lex_state = 5}, - [5097] = {.lex_state = 151, .external_lex_state = 5}, - [5098] = {.lex_state = 5, .external_lex_state = 2}, - [5099] = {.lex_state = 151, .external_lex_state = 5}, - [5100] = {.lex_state = 151, .external_lex_state = 5}, - [5101] = {.lex_state = 151, .external_lex_state = 2}, - [5102] = {.lex_state = 24, .external_lex_state = 8}, - [5103] = {.lex_state = 151, .external_lex_state = 5}, - [5104] = {.lex_state = 151, .external_lex_state = 5}, - [5105] = {.lex_state = 151, .external_lex_state = 5}, - [5106] = {.lex_state = 151, .external_lex_state = 5}, - [5107] = {.lex_state = 151, .external_lex_state = 5}, - [5108] = {.lex_state = 151, .external_lex_state = 5}, - [5109] = {.lex_state = 151, .external_lex_state = 5}, - [5110] = {.lex_state = 5, .external_lex_state = 2}, - [5111] = {.lex_state = 151, .external_lex_state = 5}, - [5112] = {.lex_state = 151, .external_lex_state = 5}, - [5113] = {.lex_state = 151, .external_lex_state = 5}, - [5114] = {.lex_state = 151, .external_lex_state = 5}, - [5115] = {.lex_state = 151, .external_lex_state = 5}, - [5116] = {.lex_state = 151, .external_lex_state = 2}, - [5117] = {.lex_state = 151, .external_lex_state = 5}, - [5118] = {.lex_state = 151, .external_lex_state = 5}, - [5119] = {.lex_state = 151, .external_lex_state = 5}, - [5120] = {.lex_state = 151, .external_lex_state = 5}, - [5121] = {.lex_state = 151, .external_lex_state = 5}, - [5122] = {.lex_state = 151, .external_lex_state = 5}, - [5123] = {.lex_state = 151, .external_lex_state = 5}, - [5124] = {.lex_state = 151, .external_lex_state = 2}, - [5125] = {.lex_state = 151, .external_lex_state = 5}, - [5126] = {.lex_state = 151, .external_lex_state = 2}, - [5127] = {.lex_state = 151, .external_lex_state = 5}, - [5128] = {.lex_state = 151, .external_lex_state = 2}, - [5129] = {.lex_state = 151, .external_lex_state = 2}, - [5130] = {.lex_state = 151, .external_lex_state = 2}, - [5131] = {.lex_state = 151, .external_lex_state = 5}, - [5132] = {.lex_state = 151, .external_lex_state = 5}, - [5133] = {.lex_state = 5, .external_lex_state = 2}, - [5134] = {.lex_state = 151, .external_lex_state = 2}, - [5135] = {.lex_state = 151, .external_lex_state = 5}, - [5136] = {.lex_state = 151, .external_lex_state = 2}, - [5137] = {.lex_state = 151, .external_lex_state = 5}, - [5138] = {.lex_state = 151, .external_lex_state = 5}, - [5139] = {.lex_state = 151, .external_lex_state = 2}, - [5140] = {.lex_state = 151, .external_lex_state = 5}, - [5141] = {.lex_state = 151, .external_lex_state = 2}, - [5142] = {.lex_state = 151, .external_lex_state = 5}, - [5143] = {.lex_state = 151, .external_lex_state = 5}, - [5144] = {.lex_state = 151, .external_lex_state = 2}, - [5145] = {.lex_state = 151, .external_lex_state = 5}, - [5146] = {.lex_state = 151, .external_lex_state = 5}, - [5147] = {.lex_state = 151, .external_lex_state = 5}, - [5148] = {.lex_state = 151, .external_lex_state = 2}, - [5149] = {.lex_state = 151, .external_lex_state = 5}, - [5150] = {.lex_state = 151, .external_lex_state = 2}, - [5151] = {.lex_state = 151, .external_lex_state = 2}, - [5152] = {.lex_state = 151, .external_lex_state = 2}, - [5153] = {.lex_state = 151, .external_lex_state = 2}, - [5154] = {.lex_state = 151, .external_lex_state = 2}, - [5155] = {.lex_state = 151, .external_lex_state = 2}, - [5156] = {.lex_state = 151, .external_lex_state = 2}, - [5157] = {.lex_state = 151, .external_lex_state = 2}, - [5158] = {.lex_state = 151, .external_lex_state = 2}, - [5159] = {.lex_state = 151, .external_lex_state = 5}, - [5160] = {.lex_state = 151, .external_lex_state = 5}, - [5161] = {.lex_state = 151, .external_lex_state = 5}, - [5162] = {.lex_state = 151, .external_lex_state = 5}, - [5163] = {.lex_state = 151, .external_lex_state = 5}, - [5164] = {.lex_state = 151, .external_lex_state = 5}, - [5165] = {.lex_state = 151, .external_lex_state = 2}, - [5166] = {.lex_state = 151, .external_lex_state = 2}, - [5167] = {.lex_state = 151, .external_lex_state = 5}, - [5168] = {.lex_state = 151, .external_lex_state = 5}, - [5169] = {.lex_state = 151, .external_lex_state = 5}, - [5170] = {.lex_state = 151, .external_lex_state = 2}, - [5171] = {.lex_state = 151, .external_lex_state = 2}, - [5172] = {.lex_state = 151, .external_lex_state = 5}, - [5173] = {.lex_state = 151, .external_lex_state = 5}, - [5174] = {.lex_state = 151, .external_lex_state = 5}, - [5175] = {.lex_state = 151, .external_lex_state = 5}, - [5176] = {.lex_state = 2, .external_lex_state = 2}, - [5177] = {.lex_state = 151, .external_lex_state = 5}, - [5178] = {.lex_state = 151, .external_lex_state = 5}, - [5179] = {.lex_state = 151, .external_lex_state = 5}, - [5180] = {.lex_state = 151, .external_lex_state = 5}, - [5181] = {.lex_state = 151, .external_lex_state = 5}, - [5182] = {.lex_state = 151, .external_lex_state = 5}, - [5183] = {.lex_state = 151, .external_lex_state = 2}, - [5184] = {.lex_state = 151, .external_lex_state = 2}, - [5185] = {.lex_state = 151, .external_lex_state = 2}, - [5186] = {.lex_state = 151, .external_lex_state = 2}, - [5187] = {.lex_state = 151, .external_lex_state = 2}, - [5188] = {.lex_state = 151, .external_lex_state = 2}, - [5189] = {.lex_state = 151, .external_lex_state = 2}, - [5190] = {.lex_state = 151, .external_lex_state = 2}, - [5191] = {.lex_state = 151, .external_lex_state = 2}, - [5192] = {.lex_state = 151, .external_lex_state = 2}, - [5193] = {.lex_state = 151, .external_lex_state = 2}, - [5194] = {.lex_state = 151, .external_lex_state = 2}, - [5195] = {.lex_state = 151, .external_lex_state = 2}, - [5196] = {.lex_state = 151, .external_lex_state = 2}, - [5197] = {.lex_state = 151, .external_lex_state = 2}, - [5198] = {.lex_state = 151, .external_lex_state = 2}, - [5199] = {.lex_state = 151, .external_lex_state = 2}, - [5200] = {.lex_state = 151, .external_lex_state = 2}, - [5201] = {.lex_state = 151, .external_lex_state = 2}, - [5202] = {.lex_state = 151, .external_lex_state = 2}, - [5203] = {.lex_state = 151, .external_lex_state = 2}, - [5204] = {.lex_state = 151, .external_lex_state = 2}, - [5205] = {.lex_state = 151, .external_lex_state = 2}, - [5206] = {.lex_state = 151, .external_lex_state = 2}, - [5207] = {.lex_state = 151, .external_lex_state = 2}, - [5208] = {.lex_state = 151, .external_lex_state = 2}, - [5209] = {.lex_state = 151, .external_lex_state = 2}, - [5210] = {.lex_state = 151, .external_lex_state = 2}, - [5211] = {.lex_state = 151, .external_lex_state = 5}, - [5212] = {.lex_state = 151, .external_lex_state = 2}, - [5213] = {.lex_state = 151, .external_lex_state = 2}, - [5214] = {.lex_state = 151, .external_lex_state = 2}, - [5215] = {.lex_state = 151, .external_lex_state = 2}, - [5216] = {.lex_state = 151, .external_lex_state = 2}, - [5217] = {.lex_state = 151, .external_lex_state = 2}, - [5218] = {.lex_state = 151, .external_lex_state = 5}, - [5219] = {.lex_state = 151, .external_lex_state = 2}, - [5220] = {.lex_state = 151, .external_lex_state = 2}, - [5221] = {.lex_state = 151, .external_lex_state = 2}, - [5222] = {.lex_state = 151, .external_lex_state = 5}, - [5223] = {.lex_state = 151, .external_lex_state = 2}, - [5224] = {.lex_state = 151, .external_lex_state = 2}, - [5225] = {.lex_state = 151, .external_lex_state = 2}, - [5226] = {.lex_state = 151, .external_lex_state = 2}, - [5227] = {.lex_state = 151, .external_lex_state = 2}, - [5228] = {.lex_state = 151, .external_lex_state = 2}, - [5229] = {.lex_state = 151, .external_lex_state = 2}, - [5230] = {.lex_state = 151, .external_lex_state = 2}, - [5231] = {.lex_state = 151, .external_lex_state = 2}, - [5232] = {.lex_state = 151, .external_lex_state = 2}, - [5233] = {.lex_state = 151, .external_lex_state = 2}, - [5234] = {.lex_state = 151, .external_lex_state = 2}, - [5235] = {.lex_state = 151, .external_lex_state = 2}, - [5236] = {.lex_state = 151, .external_lex_state = 2}, - [5237] = {.lex_state = 151, .external_lex_state = 2}, - [5238] = {.lex_state = 151, .external_lex_state = 2}, - [5239] = {.lex_state = 151, .external_lex_state = 2}, - [5240] = {.lex_state = 151, .external_lex_state = 2}, - [5241] = {.lex_state = 151, .external_lex_state = 2}, - [5242] = {.lex_state = 151, .external_lex_state = 2}, - [5243] = {.lex_state = 151, .external_lex_state = 2}, - [5244] = {.lex_state = 151, .external_lex_state = 2}, - [5245] = {.lex_state = 151, .external_lex_state = 2}, - [5246] = {.lex_state = 151, .external_lex_state = 2}, - [5247] = {.lex_state = 151, .external_lex_state = 2}, - [5248] = {.lex_state = 151, .external_lex_state = 2}, - [5249] = {.lex_state = 151, .external_lex_state = 2}, - [5250] = {.lex_state = 151, .external_lex_state = 2}, - [5251] = {.lex_state = 151, .external_lex_state = 2}, - [5252] = {.lex_state = 151, .external_lex_state = 2}, - [5253] = {.lex_state = 151, .external_lex_state = 2}, - [5254] = {.lex_state = 151, .external_lex_state = 2}, - [5255] = {.lex_state = 151, .external_lex_state = 2}, - [5256] = {.lex_state = 151, .external_lex_state = 2}, - [5257] = {.lex_state = 151, .external_lex_state = 2}, - [5258] = {.lex_state = 151, .external_lex_state = 2}, - [5259] = {.lex_state = 151, .external_lex_state = 2}, - [5260] = {.lex_state = 151, .external_lex_state = 2}, - [5261] = {.lex_state = 151, .external_lex_state = 2}, - [5262] = {.lex_state = 151, .external_lex_state = 2}, - [5263] = {.lex_state = 151, .external_lex_state = 2}, - [5264] = {.lex_state = 151, .external_lex_state = 2}, - [5265] = {.lex_state = 151, .external_lex_state = 2}, - [5266] = {.lex_state = 151, .external_lex_state = 2}, - [5267] = {.lex_state = 151, .external_lex_state = 2}, - [5268] = {.lex_state = 151, .external_lex_state = 2}, - [5269] = {.lex_state = 151, .external_lex_state = 2}, - [5270] = {.lex_state = 151, .external_lex_state = 2}, - [5271] = {.lex_state = 151, .external_lex_state = 2}, - [5272] = {.lex_state = 151, .external_lex_state = 2}, - [5273] = {.lex_state = 151, .external_lex_state = 2}, - [5274] = {.lex_state = 151, .external_lex_state = 2}, - [5275] = {.lex_state = 151, .external_lex_state = 2}, - [5276] = {.lex_state = 151, .external_lex_state = 2}, - [5277] = {.lex_state = 151, .external_lex_state = 2}, - [5278] = {.lex_state = 151, .external_lex_state = 2}, - [5279] = {.lex_state = 151, .external_lex_state = 2}, - [5280] = {.lex_state = 151, .external_lex_state = 2}, - [5281] = {.lex_state = 151, .external_lex_state = 2}, - [5282] = {.lex_state = 151, .external_lex_state = 2}, - [5283] = {.lex_state = 151, .external_lex_state = 5}, - [5284] = {.lex_state = 151, .external_lex_state = 2}, - [5285] = {.lex_state = 151, .external_lex_state = 2}, - [5286] = {.lex_state = 151, .external_lex_state = 2}, - [5287] = {.lex_state = 151, .external_lex_state = 2}, - [5288] = {.lex_state = 151, .external_lex_state = 2}, - [5289] = {.lex_state = 151, .external_lex_state = 2}, - [5290] = {.lex_state = 151, .external_lex_state = 2}, - [5291] = {.lex_state = 151, .external_lex_state = 5}, - [5292] = {.lex_state = 151, .external_lex_state = 2}, - [5293] = {.lex_state = 151, .external_lex_state = 2}, - [5294] = {.lex_state = 151, .external_lex_state = 2}, - [5295] = {.lex_state = 151, .external_lex_state = 2}, - [5296] = {.lex_state = 151, .external_lex_state = 2}, - [5297] = {.lex_state = 151, .external_lex_state = 2}, - [5298] = {.lex_state = 151, .external_lex_state = 2}, - [5299] = {.lex_state = 151, .external_lex_state = 2}, - [5300] = {.lex_state = 151, .external_lex_state = 2}, - [5301] = {.lex_state = 151, .external_lex_state = 5}, - [5302] = {.lex_state = 151, .external_lex_state = 2}, - [5303] = {.lex_state = 151, .external_lex_state = 5}, - [5304] = {.lex_state = 151, .external_lex_state = 2}, - [5305] = {.lex_state = 151, .external_lex_state = 5}, - [5306] = {.lex_state = 151, .external_lex_state = 5}, - [5307] = {.lex_state = 151, .external_lex_state = 5}, - [5308] = {.lex_state = 151, .external_lex_state = 2}, - [5309] = {.lex_state = 151, .external_lex_state = 2}, - [5310] = {.lex_state = 151, .external_lex_state = 2}, - [5311] = {.lex_state = 151, .external_lex_state = 2}, - [5312] = {.lex_state = 151, .external_lex_state = 5}, - [5313] = {.lex_state = 151, .external_lex_state = 2}, - [5314] = {.lex_state = 151, .external_lex_state = 2}, - [5315] = {.lex_state = 151, .external_lex_state = 5}, - [5316] = {.lex_state = 151, .external_lex_state = 2}, - [5317] = {.lex_state = 151, .external_lex_state = 2}, - [5318] = {.lex_state = 151, .external_lex_state = 2}, - [5319] = {.lex_state = 151, .external_lex_state = 2}, - [5320] = {.lex_state = 151, .external_lex_state = 2}, - [5321] = {.lex_state = 151, .external_lex_state = 2}, - [5322] = {.lex_state = 151, .external_lex_state = 2}, - [5323] = {.lex_state = 151, .external_lex_state = 2}, - [5324] = {.lex_state = 151, .external_lex_state = 2}, - [5325] = {.lex_state = 151, .external_lex_state = 2}, - [5326] = {.lex_state = 151, .external_lex_state = 2}, - [5327] = {.lex_state = 151, .external_lex_state = 2}, - [5328] = {.lex_state = 151, .external_lex_state = 2}, - [5329] = {.lex_state = 151, .external_lex_state = 2}, - [5330] = {.lex_state = 151, .external_lex_state = 2}, - [5331] = {.lex_state = 151, .external_lex_state = 5}, - [5332] = {.lex_state = 151, .external_lex_state = 5}, - [5333] = {.lex_state = 151, .external_lex_state = 2}, - [5334] = {.lex_state = 151, .external_lex_state = 2}, - [5335] = {.lex_state = 151, .external_lex_state = 2}, - [5336] = {.lex_state = 151, .external_lex_state = 2}, - [5337] = {.lex_state = 151, .external_lex_state = 2}, - [5338] = {.lex_state = 151, .external_lex_state = 2}, - [5339] = {.lex_state = 151, .external_lex_state = 2}, - [5340] = {.lex_state = 151, .external_lex_state = 2}, - [5341] = {.lex_state = 151, .external_lex_state = 2}, - [5342] = {.lex_state = 151, .external_lex_state = 2}, - [5343] = {.lex_state = 151, .external_lex_state = 2}, - [5344] = {.lex_state = 151, .external_lex_state = 2}, - [5345] = {.lex_state = 151, .external_lex_state = 2}, - [5346] = {.lex_state = 151, .external_lex_state = 2}, - [5347] = {.lex_state = 151, .external_lex_state = 2}, - [5348] = {.lex_state = 151, .external_lex_state = 2}, - [5349] = {.lex_state = 151, .external_lex_state = 2}, - [5350] = {.lex_state = 151, .external_lex_state = 2}, - [5351] = {.lex_state = 151, .external_lex_state = 2}, - [5352] = {.lex_state = 151, .external_lex_state = 2}, - [5353] = {.lex_state = 151, .external_lex_state = 2}, - [5354] = {.lex_state = 151, .external_lex_state = 2}, - [5355] = {.lex_state = 151, .external_lex_state = 2}, - [5356] = {.lex_state = 151, .external_lex_state = 2}, - [5357] = {.lex_state = 151, .external_lex_state = 2}, - [5358] = {.lex_state = 151, .external_lex_state = 2}, - [5359] = {.lex_state = 151, .external_lex_state = 2}, - [5360] = {.lex_state = 151, .external_lex_state = 2}, - [5361] = {.lex_state = 151, .external_lex_state = 2}, - [5362] = {.lex_state = 151, .external_lex_state = 2}, - [5363] = {.lex_state = 151, .external_lex_state = 2}, - [5364] = {.lex_state = 151, .external_lex_state = 2}, - [5365] = {.lex_state = 151, .external_lex_state = 2}, - [5366] = {.lex_state = 151, .external_lex_state = 2}, - [5367] = {.lex_state = 151, .external_lex_state = 2}, - [5368] = {.lex_state = 151, .external_lex_state = 2}, - [5369] = {.lex_state = 151, .external_lex_state = 2}, - [5370] = {.lex_state = 151, .external_lex_state = 2}, - [5371] = {.lex_state = 151, .external_lex_state = 2}, - [5372] = {.lex_state = 151, .external_lex_state = 2}, - [5373] = {.lex_state = 151, .external_lex_state = 2}, - [5374] = {.lex_state = 151, .external_lex_state = 2}, - [5375] = {.lex_state = 151, .external_lex_state = 2}, - [5376] = {.lex_state = 151, .external_lex_state = 2}, - [5377] = {.lex_state = 151, .external_lex_state = 2}, - [5378] = {.lex_state = 151, .external_lex_state = 2}, - [5379] = {.lex_state = 151, .external_lex_state = 2}, - [5380] = {.lex_state = 151, .external_lex_state = 5}, - [5381] = {.lex_state = 151, .external_lex_state = 5}, - [5382] = {.lex_state = 151, .external_lex_state = 2}, - [5383] = {.lex_state = 151, .external_lex_state = 2}, - [5384] = {.lex_state = 151, .external_lex_state = 2}, - [5385] = {.lex_state = 151, .external_lex_state = 5}, - [5386] = {.lex_state = 151, .external_lex_state = 2}, - [5387] = {.lex_state = 151, .external_lex_state = 2}, - [5388] = {.lex_state = 151, .external_lex_state = 2}, - [5389] = {.lex_state = 151, .external_lex_state = 2}, - [5390] = {.lex_state = 151, .external_lex_state = 2}, - [5391] = {.lex_state = 151, .external_lex_state = 2}, - [5392] = {.lex_state = 151, .external_lex_state = 2}, - [5393] = {.lex_state = 151, .external_lex_state = 2}, - [5394] = {.lex_state = 151, .external_lex_state = 2}, - [5395] = {.lex_state = 151, .external_lex_state = 2}, - [5396] = {.lex_state = 151, .external_lex_state = 2}, - [5397] = {.lex_state = 151, .external_lex_state = 2}, - [5398] = {.lex_state = 151, .external_lex_state = 2}, - [5399] = {.lex_state = 151, .external_lex_state = 2}, - [5400] = {.lex_state = 151, .external_lex_state = 2}, - [5401] = {.lex_state = 151, .external_lex_state = 2}, - [5402] = {.lex_state = 151, .external_lex_state = 2}, - [5403] = {.lex_state = 151, .external_lex_state = 2}, - [5404] = {.lex_state = 151, .external_lex_state = 2}, - [5405] = {.lex_state = 151, .external_lex_state = 2}, - [5406] = {.lex_state = 151, .external_lex_state = 2}, - [5407] = {.lex_state = 151, .external_lex_state = 2}, - [5408] = {.lex_state = 151, .external_lex_state = 2}, - [5409] = {.lex_state = 151, .external_lex_state = 2}, - [5410] = {.lex_state = 151, .external_lex_state = 2}, - [5411] = {.lex_state = 151, .external_lex_state = 2}, - [5412] = {.lex_state = 151, .external_lex_state = 5}, - [5413] = {.lex_state = 151, .external_lex_state = 2}, - [5414] = {.lex_state = 151, .external_lex_state = 2}, - [5415] = {.lex_state = 151, .external_lex_state = 2}, - [5416] = {.lex_state = 151, .external_lex_state = 2}, - [5417] = {.lex_state = 151, .external_lex_state = 5}, - [5418] = {.lex_state = 151, .external_lex_state = 2}, - [5419] = {.lex_state = 151, .external_lex_state = 2}, - [5420] = {.lex_state = 151, .external_lex_state = 2}, - [5421] = {.lex_state = 151, .external_lex_state = 2}, - [5422] = {.lex_state = 151, .external_lex_state = 2}, - [5423] = {.lex_state = 151, .external_lex_state = 2}, - [5424] = {.lex_state = 151, .external_lex_state = 2}, - [5425] = {.lex_state = 151, .external_lex_state = 2}, - [5426] = {.lex_state = 151, .external_lex_state = 5}, - [5427] = {.lex_state = 151, .external_lex_state = 2}, - [5428] = {.lex_state = 151, .external_lex_state = 2}, - [5429] = {.lex_state = 151, .external_lex_state = 2}, - [5430] = {.lex_state = 151, .external_lex_state = 2}, - [5431] = {.lex_state = 151, .external_lex_state = 2}, - [5432] = {.lex_state = 151, .external_lex_state = 2}, - [5433] = {.lex_state = 151, .external_lex_state = 2}, - [5434] = {.lex_state = 151, .external_lex_state = 2}, - [5435] = {.lex_state = 151, .external_lex_state = 2}, - [5436] = {.lex_state = 151, .external_lex_state = 2}, - [5437] = {.lex_state = 151, .external_lex_state = 2}, - [5438] = {.lex_state = 151, .external_lex_state = 2}, - [5439] = {.lex_state = 151, .external_lex_state = 2}, - [5440] = {.lex_state = 151, .external_lex_state = 2}, - [5441] = {.lex_state = 151, .external_lex_state = 2}, - [5442] = {.lex_state = 151, .external_lex_state = 2}, - [5443] = {.lex_state = 151, .external_lex_state = 2}, - [5444] = {.lex_state = 151, .external_lex_state = 2}, - [5445] = {.lex_state = 151, .external_lex_state = 5}, - [5446] = {.lex_state = 151, .external_lex_state = 2}, - [5447] = {.lex_state = 151, .external_lex_state = 2}, - [5448] = {.lex_state = 151, .external_lex_state = 2}, - [5449] = {.lex_state = 151, .external_lex_state = 2}, - [5450] = {.lex_state = 151, .external_lex_state = 5}, - [5451] = {.lex_state = 151, .external_lex_state = 2}, - [5452] = {.lex_state = 151, .external_lex_state = 2}, - [5453] = {.lex_state = 151, .external_lex_state = 2}, - [5454] = {.lex_state = 151, .external_lex_state = 2}, - [5455] = {.lex_state = 151, .external_lex_state = 2}, - [5456] = {.lex_state = 151, .external_lex_state = 5}, - [5457] = {.lex_state = 151, .external_lex_state = 2}, - [5458] = {.lex_state = 151, .external_lex_state = 2}, - [5459] = {.lex_state = 151, .external_lex_state = 2}, - [5460] = {.lex_state = 151, .external_lex_state = 5}, - [5461] = {.lex_state = 151, .external_lex_state = 2}, - [5462] = {.lex_state = 151, .external_lex_state = 2}, + [5040] = {.lex_state = 150, .external_lex_state = 5}, + [5041] = {.lex_state = 150, .external_lex_state = 5}, + [5042] = {.lex_state = 150, .external_lex_state = 5}, + [5043] = {.lex_state = 13, .external_lex_state = 2}, + [5044] = {.lex_state = 150, .external_lex_state = 5}, + [5045] = {.lex_state = 13, .external_lex_state = 2}, + [5046] = {.lex_state = 13, .external_lex_state = 2}, + [5047] = {.lex_state = 13, .external_lex_state = 2}, + [5048] = {.lex_state = 13, .external_lex_state = 2}, + [5049] = {.lex_state = 13, .external_lex_state = 2}, + [5050] = {.lex_state = 13, .external_lex_state = 2}, + [5051] = {.lex_state = 150, .external_lex_state = 5}, + [5052] = {.lex_state = 150, .external_lex_state = 5}, + [5053] = {.lex_state = 13, .external_lex_state = 2}, + [5054] = {.lex_state = 13, .external_lex_state = 2}, + [5055] = {.lex_state = 150, .external_lex_state = 2}, + [5056] = {.lex_state = 150, .external_lex_state = 5}, + [5057] = {.lex_state = 150, .external_lex_state = 5}, + [5058] = {.lex_state = 13, .external_lex_state = 2}, + [5059] = {.lex_state = 150, .external_lex_state = 5}, + [5060] = {.lex_state = 150, .external_lex_state = 5}, + [5061] = {.lex_state = 150, .external_lex_state = 5}, + [5062] = {.lex_state = 150, .external_lex_state = 5}, + [5063] = {.lex_state = 150, .external_lex_state = 2}, + [5064] = {.lex_state = 150, .external_lex_state = 5}, + [5065] = {.lex_state = 13, .external_lex_state = 2}, + [5066] = {.lex_state = 150, .external_lex_state = 5}, + [5067] = {.lex_state = 13, .external_lex_state = 2}, + [5068] = {.lex_state = 150, .external_lex_state = 5}, + [5069] = {.lex_state = 150, .external_lex_state = 5}, + [5070] = {.lex_state = 13, .external_lex_state = 2}, + [5071] = {.lex_state = 150, .external_lex_state = 6}, + [5072] = {.lex_state = 150, .external_lex_state = 5}, + [5073] = {.lex_state = 150, .external_lex_state = 5}, + [5074] = {.lex_state = 150, .external_lex_state = 5}, + [5075] = {.lex_state = 150, .external_lex_state = 5}, + [5076] = {.lex_state = 150, .external_lex_state = 5}, + [5077] = {.lex_state = 150, .external_lex_state = 5}, + [5078] = {.lex_state = 150, .external_lex_state = 5}, + [5079] = {.lex_state = 150, .external_lex_state = 5}, + [5080] = {.lex_state = 13, .external_lex_state = 2}, + [5081] = {.lex_state = 150, .external_lex_state = 5}, + [5082] = {.lex_state = 150, .external_lex_state = 5}, + [5083] = {.lex_state = 150, .external_lex_state = 5}, + [5084] = {.lex_state = 150, .external_lex_state = 5}, + [5085] = {.lex_state = 13, .external_lex_state = 2}, + [5086] = {.lex_state = 150, .external_lex_state = 5}, + [5087] = {.lex_state = 150, .external_lex_state = 6}, + [5088] = {.lex_state = 150, .external_lex_state = 5}, + [5089] = {.lex_state = 150, .external_lex_state = 6}, + [5090] = {.lex_state = 150, .external_lex_state = 6}, + [5091] = {.lex_state = 13, .external_lex_state = 2}, + [5092] = {.lex_state = 13, .external_lex_state = 2}, + [5093] = {.lex_state = 150, .external_lex_state = 5}, + [5094] = {.lex_state = 150, .external_lex_state = 5}, + [5095] = {.lex_state = 150, .external_lex_state = 5}, + [5096] = {.lex_state = 25, .external_lex_state = 2}, + [5097] = {.lex_state = 13, .external_lex_state = 2}, + [5098] = {.lex_state = 150, .external_lex_state = 5}, + [5099] = {.lex_state = 13, .external_lex_state = 2}, + [5100] = {.lex_state = 13, .external_lex_state = 2}, + [5101] = {.lex_state = 150, .external_lex_state = 5}, + [5102] = {.lex_state = 150, .external_lex_state = 5}, + [5103] = {.lex_state = 150, .external_lex_state = 5}, + [5104] = {.lex_state = 150, .external_lex_state = 5}, + [5105] = {.lex_state = 150, .external_lex_state = 5}, + [5106] = {.lex_state = 13, .external_lex_state = 2}, + [5107] = {.lex_state = 150, .external_lex_state = 5}, + [5108] = {.lex_state = 13, .external_lex_state = 2}, + [5109] = {.lex_state = 13, .external_lex_state = 2}, + [5110] = {.lex_state = 150, .external_lex_state = 2}, + [5111] = {.lex_state = 13, .external_lex_state = 2}, + [5112] = {.lex_state = 150, .external_lex_state = 5}, + [5113] = {.lex_state = 150, .external_lex_state = 5}, + [5114] = {.lex_state = 150, .external_lex_state = 5}, + [5115] = {.lex_state = 150, .external_lex_state = 5}, + [5116] = {.lex_state = 150, .external_lex_state = 5}, + [5117] = {.lex_state = 150, .external_lex_state = 5}, + [5118] = {.lex_state = 13, .external_lex_state = 2}, + [5119] = {.lex_state = 150, .external_lex_state = 5}, + [5120] = {.lex_state = 13, .external_lex_state = 2}, + [5121] = {.lex_state = 150, .external_lex_state = 5}, + [5122] = {.lex_state = 150, .external_lex_state = 5}, + [5123] = {.lex_state = 150, .external_lex_state = 5}, + [5124] = {.lex_state = 13, .external_lex_state = 2}, + [5125] = {.lex_state = 13, .external_lex_state = 2}, + [5126] = {.lex_state = 150, .external_lex_state = 2}, + [5127] = {.lex_state = 150, .external_lex_state = 5}, + [5128] = {.lex_state = 150, .external_lex_state = 2}, + [5129] = {.lex_state = 13, .external_lex_state = 2}, + [5130] = {.lex_state = 13, .external_lex_state = 2}, + [5131] = {.lex_state = 150, .external_lex_state = 5}, + [5132] = {.lex_state = 150, .external_lex_state = 5}, + [5133] = {.lex_state = 13, .external_lex_state = 2}, + [5134] = {.lex_state = 150, .external_lex_state = 5}, + [5135] = {.lex_state = 150, .external_lex_state = 5}, + [5136] = {.lex_state = 13, .external_lex_state = 2}, + [5137] = {.lex_state = 150, .external_lex_state = 5}, + [5138] = {.lex_state = 150, .external_lex_state = 5}, + [5139] = {.lex_state = 150, .external_lex_state = 5}, + [5140] = {.lex_state = 13, .external_lex_state = 2}, + [5141] = {.lex_state = 150, .external_lex_state = 5}, + [5142] = {.lex_state = 150, .external_lex_state = 5}, + [5143] = {.lex_state = 150, .external_lex_state = 5}, + [5144] = {.lex_state = 150, .external_lex_state = 5}, + [5145] = {.lex_state = 150, .external_lex_state = 2}, + [5146] = {.lex_state = 13, .external_lex_state = 2}, + [5147] = {.lex_state = 150, .external_lex_state = 5}, + [5148] = {.lex_state = 150, .external_lex_state = 5}, + [5149] = {.lex_state = 150, .external_lex_state = 5}, + [5150] = {.lex_state = 150, .external_lex_state = 5}, + [5151] = {.lex_state = 13, .external_lex_state = 2}, + [5152] = {.lex_state = 150, .external_lex_state = 5}, + [5153] = {.lex_state = 150, .external_lex_state = 2}, + [5154] = {.lex_state = 13, .external_lex_state = 2}, + [5155] = {.lex_state = 150, .external_lex_state = 5}, + [5156] = {.lex_state = 150, .external_lex_state = 2}, + [5157] = {.lex_state = 150, .external_lex_state = 5}, + [5158] = {.lex_state = 150, .external_lex_state = 5}, + [5159] = {.lex_state = 13, .external_lex_state = 2}, + [5160] = {.lex_state = 150, .external_lex_state = 5}, + [5161] = {.lex_state = 150, .external_lex_state = 2}, + [5162] = {.lex_state = 150, .external_lex_state = 5}, + [5163] = {.lex_state = 13, .external_lex_state = 2}, + [5164] = {.lex_state = 150, .external_lex_state = 5}, + [5165] = {.lex_state = 13, .external_lex_state = 2}, + [5166] = {.lex_state = 150, .external_lex_state = 5}, + [5167] = {.lex_state = 13, .external_lex_state = 2}, + [5168] = {.lex_state = 150, .external_lex_state = 2}, + [5169] = {.lex_state = 13, .external_lex_state = 2}, + [5170] = {.lex_state = 13, .external_lex_state = 2}, + [5171] = {.lex_state = 150, .external_lex_state = 5}, + [5172] = {.lex_state = 13, .external_lex_state = 2}, + [5173] = {.lex_state = 150, .external_lex_state = 2}, + [5174] = {.lex_state = 150, .external_lex_state = 5}, + [5175] = {.lex_state = 150, .external_lex_state = 2}, + [5176] = {.lex_state = 150, .external_lex_state = 2}, + [5177] = {.lex_state = 13, .external_lex_state = 2}, + [5178] = {.lex_state = 150, .external_lex_state = 5}, + [5179] = {.lex_state = 150, .external_lex_state = 5}, + [5180] = {.lex_state = 150, .external_lex_state = 5}, + [5181] = {.lex_state = 23, .external_lex_state = 8}, + [5182] = {.lex_state = 13, .external_lex_state = 2}, + [5183] = {.lex_state = 150, .external_lex_state = 5}, + [5184] = {.lex_state = 13, .external_lex_state = 2}, + [5185] = {.lex_state = 150, .external_lex_state = 5}, + [5186] = {.lex_state = 13, .external_lex_state = 2}, + [5187] = {.lex_state = 150, .external_lex_state = 5}, + [5188] = {.lex_state = 150, .external_lex_state = 5}, + [5189] = {.lex_state = 150, .external_lex_state = 5}, + [5190] = {.lex_state = 150, .external_lex_state = 5}, + [5191] = {.lex_state = 13, .external_lex_state = 2}, + [5192] = {.lex_state = 13, .external_lex_state = 2}, + [5193] = {.lex_state = 150, .external_lex_state = 5}, + [5194] = {.lex_state = 150, .external_lex_state = 6}, + [5195] = {.lex_state = 13, .external_lex_state = 2}, + [5196] = {.lex_state = 13, .external_lex_state = 2}, + [5197] = {.lex_state = 150, .external_lex_state = 5}, + [5198] = {.lex_state = 13, .external_lex_state = 2}, + [5199] = {.lex_state = 150, .external_lex_state = 5}, + [5200] = {.lex_state = 150, .external_lex_state = 5}, + [5201] = {.lex_state = 150, .external_lex_state = 2}, + [5202] = {.lex_state = 150, .external_lex_state = 5}, + [5203] = {.lex_state = 150, .external_lex_state = 2}, + [5204] = {.lex_state = 150, .external_lex_state = 5}, + [5205] = {.lex_state = 23, .external_lex_state = 8}, + [5206] = {.lex_state = 150, .external_lex_state = 5}, + [5207] = {.lex_state = 13, .external_lex_state = 2}, + [5208] = {.lex_state = 13, .external_lex_state = 2}, + [5209] = {.lex_state = 150, .external_lex_state = 5}, + [5210] = {.lex_state = 150, .external_lex_state = 5}, + [5211] = {.lex_state = 150, .external_lex_state = 5}, + [5212] = {.lex_state = 13, .external_lex_state = 2}, + [5213] = {.lex_state = 150, .external_lex_state = 5}, + [5214] = {.lex_state = 150, .external_lex_state = 5}, + [5215] = {.lex_state = 150, .external_lex_state = 5}, + [5216] = {.lex_state = 150, .external_lex_state = 2}, + [5217] = {.lex_state = 150, .external_lex_state = 5}, + [5218] = {.lex_state = 150, .external_lex_state = 5}, + [5219] = {.lex_state = 150, .external_lex_state = 2}, + [5220] = {.lex_state = 13, .external_lex_state = 2}, + [5221] = {.lex_state = 13, .external_lex_state = 2}, + [5222] = {.lex_state = 13, .external_lex_state = 2}, + [5223] = {.lex_state = 150, .external_lex_state = 5}, + [5224] = {.lex_state = 13, .external_lex_state = 2}, + [5225] = {.lex_state = 150, .external_lex_state = 5}, + [5226] = {.lex_state = 150, .external_lex_state = 2}, + [5227] = {.lex_state = 13, .external_lex_state = 2}, + [5228] = {.lex_state = 150, .external_lex_state = 6}, + [5229] = {.lex_state = 13, .external_lex_state = 2}, + [5230] = {.lex_state = 150, .external_lex_state = 2}, + [5231] = {.lex_state = 150, .external_lex_state = 5}, + [5232] = {.lex_state = 150, .external_lex_state = 5}, + [5233] = {.lex_state = 150, .external_lex_state = 5}, + [5234] = {.lex_state = 150, .external_lex_state = 5}, + [5235] = {.lex_state = 150, .external_lex_state = 5}, + [5236] = {.lex_state = 150, .external_lex_state = 5}, + [5237] = {.lex_state = 16, .external_lex_state = 2}, + [5238] = {.lex_state = 150, .external_lex_state = 5}, + [5239] = {.lex_state = 150, .external_lex_state = 5}, + [5240] = {.lex_state = 150, .external_lex_state = 5}, + [5241] = {.lex_state = 150, .external_lex_state = 6}, + [5242] = {.lex_state = 13, .external_lex_state = 2}, + [5243] = {.lex_state = 150, .external_lex_state = 5}, + [5244] = {.lex_state = 150, .external_lex_state = 5}, + [5245] = {.lex_state = 150, .external_lex_state = 5}, + [5246] = {.lex_state = 150, .external_lex_state = 5}, + [5247] = {.lex_state = 150, .external_lex_state = 5}, + [5248] = {.lex_state = 150, .external_lex_state = 5}, + [5249] = {.lex_state = 150, .external_lex_state = 5}, + [5250] = {.lex_state = 13, .external_lex_state = 2}, + [5251] = {.lex_state = 150, .external_lex_state = 5}, + [5252] = {.lex_state = 13, .external_lex_state = 2}, + [5253] = {.lex_state = 150, .external_lex_state = 5}, + [5254] = {.lex_state = 150, .external_lex_state = 5}, + [5255] = {.lex_state = 150, .external_lex_state = 5}, + [5256] = {.lex_state = 23, .external_lex_state = 8}, + [5257] = {.lex_state = 150, .external_lex_state = 5}, + [5258] = {.lex_state = 150, .external_lex_state = 5}, + [5259] = {.lex_state = 150, .external_lex_state = 5}, + [5260] = {.lex_state = 150, .external_lex_state = 5}, + [5261] = {.lex_state = 150, .external_lex_state = 2}, + [5262] = {.lex_state = 150, .external_lex_state = 5}, + [5263] = {.lex_state = 150, .external_lex_state = 2}, + [5264] = {.lex_state = 150, .external_lex_state = 5}, + [5265] = {.lex_state = 16, .external_lex_state = 2}, + [5266] = {.lex_state = 150, .external_lex_state = 5}, + [5267] = {.lex_state = 150, .external_lex_state = 2}, + [5268] = {.lex_state = 150, .external_lex_state = 5}, + [5269] = {.lex_state = 13, .external_lex_state = 2}, + [5270] = {.lex_state = 150, .external_lex_state = 5}, + [5271] = {.lex_state = 13, .external_lex_state = 2}, + [5272] = {.lex_state = 23, .external_lex_state = 8}, + [5273] = {.lex_state = 150, .external_lex_state = 5}, + [5274] = {.lex_state = 150, .external_lex_state = 5}, + [5275] = {.lex_state = 13, .external_lex_state = 2}, + [5276] = {.lex_state = 150, .external_lex_state = 5}, + [5277] = {.lex_state = 13, .external_lex_state = 2}, + [5278] = {.lex_state = 13, .external_lex_state = 2}, + [5279] = {.lex_state = 13, .external_lex_state = 2}, + [5280] = {.lex_state = 13, .external_lex_state = 2}, + [5281] = {.lex_state = 150, .external_lex_state = 5}, + [5282] = {.lex_state = 150, .external_lex_state = 2}, + [5283] = {.lex_state = 13, .external_lex_state = 2}, + [5284] = {.lex_state = 150, .external_lex_state = 5}, + [5285] = {.lex_state = 13, .external_lex_state = 2}, + [5286] = {.lex_state = 15, .external_lex_state = 2}, + [5287] = {.lex_state = 13, .external_lex_state = 2}, + [5288] = {.lex_state = 16, .external_lex_state = 2}, + [5289] = {.lex_state = 150, .external_lex_state = 5}, + [5290] = {.lex_state = 150, .external_lex_state = 5}, + [5291] = {.lex_state = 150, .external_lex_state = 2}, + [5292] = {.lex_state = 150, .external_lex_state = 5}, + [5293] = {.lex_state = 13, .external_lex_state = 2}, + [5294] = {.lex_state = 150, .external_lex_state = 2}, + [5295] = {.lex_state = 150, .external_lex_state = 5}, + [5296] = {.lex_state = 150, .external_lex_state = 5}, + [5297] = {.lex_state = 23, .external_lex_state = 8}, + [5298] = {.lex_state = 150, .external_lex_state = 5}, + [5299] = {.lex_state = 150, .external_lex_state = 5}, + [5300] = {.lex_state = 150, .external_lex_state = 5}, + [5301] = {.lex_state = 23, .external_lex_state = 8}, + [5302] = {.lex_state = 13, .external_lex_state = 2}, + [5303] = {.lex_state = 13, .external_lex_state = 2}, + [5304] = {.lex_state = 150, .external_lex_state = 5}, + [5305] = {.lex_state = 150, .external_lex_state = 5}, + [5306] = {.lex_state = 150, .external_lex_state = 5}, + [5307] = {.lex_state = 150, .external_lex_state = 5}, + [5308] = {.lex_state = 150, .external_lex_state = 5}, + [5309] = {.lex_state = 13, .external_lex_state = 2}, + [5310] = {.lex_state = 13, .external_lex_state = 2}, + [5311] = {.lex_state = 13, .external_lex_state = 2}, + [5312] = {.lex_state = 13, .external_lex_state = 2}, + [5313] = {.lex_state = 23, .external_lex_state = 8}, + [5314] = {.lex_state = 150, .external_lex_state = 5}, + [5315] = {.lex_state = 13, .external_lex_state = 2}, + [5316] = {.lex_state = 150, .external_lex_state = 5}, + [5317] = {.lex_state = 13, .external_lex_state = 2}, + [5318] = {.lex_state = 150, .external_lex_state = 5}, + [5319] = {.lex_state = 150, .external_lex_state = 5}, + [5320] = {.lex_state = 150, .external_lex_state = 5}, + [5321] = {.lex_state = 13, .external_lex_state = 2}, + [5322] = {.lex_state = 13, .external_lex_state = 2}, + [5323] = {.lex_state = 13, .external_lex_state = 2}, + [5324] = {.lex_state = 150, .external_lex_state = 6}, + [5325] = {.lex_state = 150, .external_lex_state = 5}, + [5326] = {.lex_state = 13, .external_lex_state = 2}, + [5327] = {.lex_state = 5, .external_lex_state = 2}, + [5328] = {.lex_state = 150, .external_lex_state = 5}, + [5329] = {.lex_state = 23, .external_lex_state = 8}, + [5330] = {.lex_state = 150, .external_lex_state = 5}, + [5331] = {.lex_state = 13, .external_lex_state = 2}, + [5332] = {.lex_state = 13, .external_lex_state = 2}, + [5333] = {.lex_state = 150, .external_lex_state = 2}, + [5334] = {.lex_state = 25, .external_lex_state = 2}, + [5335] = {.lex_state = 25, .external_lex_state = 2}, + [5336] = {.lex_state = 150, .external_lex_state = 5}, + [5337] = {.lex_state = 13, .external_lex_state = 2}, + [5338] = {.lex_state = 13, .external_lex_state = 2}, + [5339] = {.lex_state = 13, .external_lex_state = 2}, + [5340] = {.lex_state = 150, .external_lex_state = 2}, + [5341] = {.lex_state = 150, .external_lex_state = 2}, + [5342] = {.lex_state = 150, .external_lex_state = 2}, + [5343] = {.lex_state = 13, .external_lex_state = 2}, + [5344] = {.lex_state = 150, .external_lex_state = 5}, + [5345] = {.lex_state = 27, .external_lex_state = 2}, + [5346] = {.lex_state = 17, .external_lex_state = 2}, + [5347] = {.lex_state = 150, .external_lex_state = 2}, + [5348] = {.lex_state = 150, .external_lex_state = 2}, + [5349] = {.lex_state = 150, .external_lex_state = 2}, + [5350] = {.lex_state = 150, .external_lex_state = 5}, + [5351] = {.lex_state = 19, .external_lex_state = 9}, + [5352] = {.lex_state = 150, .external_lex_state = 5}, + [5353] = {.lex_state = 29, .external_lex_state = 9}, + [5354] = {.lex_state = 13, .external_lex_state = 2}, + [5355] = {.lex_state = 150, .external_lex_state = 2}, + [5356] = {.lex_state = 13, .external_lex_state = 2}, + [5357] = {.lex_state = 150, .external_lex_state = 2}, + [5358] = {.lex_state = 150, .external_lex_state = 2}, + [5359] = {.lex_state = 5, .external_lex_state = 2}, + [5360] = {.lex_state = 5, .external_lex_state = 2}, + [5361] = {.lex_state = 150, .external_lex_state = 2}, + [5362] = {.lex_state = 5, .external_lex_state = 2}, + [5363] = {.lex_state = 19, .external_lex_state = 9}, + [5364] = {.lex_state = 150, .external_lex_state = 5}, + [5365] = {.lex_state = 150, .external_lex_state = 5}, + [5366] = {.lex_state = 29, .external_lex_state = 9}, + [5367] = {.lex_state = 150, .external_lex_state = 2}, + [5368] = {.lex_state = 150, .external_lex_state = 2}, + [5369] = {.lex_state = 29, .external_lex_state = 9}, + [5370] = {.lex_state = 19, .external_lex_state = 9}, + [5371] = {.lex_state = 29, .external_lex_state = 9}, + [5372] = {.lex_state = 19, .external_lex_state = 9}, + [5373] = {.lex_state = 19, .external_lex_state = 9}, + [5374] = {.lex_state = 150, .external_lex_state = 5}, + [5375] = {.lex_state = 29, .external_lex_state = 9}, + [5376] = {.lex_state = 150, .external_lex_state = 2}, + [5377] = {.lex_state = 150, .external_lex_state = 2}, + [5378] = {.lex_state = 150, .external_lex_state = 2}, + [5379] = {.lex_state = 150, .external_lex_state = 2}, + [5380] = {.lex_state = 150, .external_lex_state = 2}, + [5381] = {.lex_state = 150, .external_lex_state = 2}, + [5382] = {.lex_state = 19, .external_lex_state = 9}, + [5383] = {.lex_state = 13, .external_lex_state = 2}, + [5384] = {.lex_state = 29, .external_lex_state = 9}, + [5385] = {.lex_state = 150, .external_lex_state = 2}, + [5386] = {.lex_state = 13, .external_lex_state = 2}, + [5387] = {.lex_state = 150, .external_lex_state = 5}, + [5388] = {.lex_state = 150, .external_lex_state = 2}, + [5389] = {.lex_state = 29, .external_lex_state = 9}, + [5390] = {.lex_state = 19, .external_lex_state = 9}, + [5391] = {.lex_state = 150, .external_lex_state = 2}, + [5392] = {.lex_state = 150, .external_lex_state = 5}, + [5393] = {.lex_state = 13, .external_lex_state = 2}, + [5394] = {.lex_state = 150, .external_lex_state = 5}, + [5395] = {.lex_state = 150, .external_lex_state = 2}, + [5396] = {.lex_state = 150, .external_lex_state = 5}, + [5397] = {.lex_state = 13, .external_lex_state = 2}, + [5398] = {.lex_state = 13, .external_lex_state = 2}, + [5399] = {.lex_state = 150, .external_lex_state = 2}, + [5400] = {.lex_state = 150, .external_lex_state = 2}, + [5401] = {.lex_state = 13, .external_lex_state = 2}, + [5402] = {.lex_state = 13, .external_lex_state = 2}, + [5403] = {.lex_state = 150, .external_lex_state = 2}, + [5404] = {.lex_state = 150, .external_lex_state = 2}, + [5405] = {.lex_state = 13, .external_lex_state = 2}, + [5406] = {.lex_state = 150, .external_lex_state = 5}, + [5407] = {.lex_state = 150, .external_lex_state = 5}, + [5408] = {.lex_state = 19, .external_lex_state = 9}, + [5409] = {.lex_state = 29, .external_lex_state = 9}, + [5410] = {.lex_state = 150, .external_lex_state = 2}, + [5411] = {.lex_state = 29, .external_lex_state = 9}, + [5412] = {.lex_state = 19, .external_lex_state = 9}, + [5413] = {.lex_state = 150, .external_lex_state = 2}, + [5414] = {.lex_state = 150, .external_lex_state = 2}, + [5415] = {.lex_state = 13, .external_lex_state = 2}, + [5416] = {.lex_state = 19, .external_lex_state = 9}, + [5417] = {.lex_state = 29, .external_lex_state = 9}, + [5418] = {.lex_state = 13, .external_lex_state = 2}, + [5419] = {.lex_state = 13, .external_lex_state = 2}, + [5420] = {.lex_state = 13, .external_lex_state = 2}, + [5421] = {.lex_state = 23, .external_lex_state = 7}, + [5422] = {.lex_state = 13, .external_lex_state = 2}, + [5423] = {.lex_state = 13, .external_lex_state = 2}, + [5424] = {.lex_state = 150, .external_lex_state = 2}, + [5425] = {.lex_state = 150, .external_lex_state = 2}, + [5426] = {.lex_state = 19, .external_lex_state = 9}, + [5427] = {.lex_state = 29, .external_lex_state = 9}, + [5428] = {.lex_state = 150, .external_lex_state = 2}, + [5429] = {.lex_state = 150, .external_lex_state = 2}, + [5430] = {.lex_state = 150, .external_lex_state = 2}, + [5431] = {.lex_state = 5, .external_lex_state = 2}, + [5432] = {.lex_state = 23, .external_lex_state = 7}, + [5433] = {.lex_state = 150, .external_lex_state = 2}, + [5434] = {.lex_state = 150, .external_lex_state = 2}, + [5435] = {.lex_state = 150, .external_lex_state = 2}, + [5436] = {.lex_state = 150, .external_lex_state = 2}, + [5437] = {.lex_state = 150, .external_lex_state = 5}, + [5438] = {.lex_state = 13, .external_lex_state = 2}, + [5439] = {.lex_state = 150, .external_lex_state = 5}, + [5440] = {.lex_state = 13, .external_lex_state = 2}, + [5441] = {.lex_state = 5, .external_lex_state = 2}, + [5442] = {.lex_state = 150, .external_lex_state = 2}, + [5443] = {.lex_state = 150, .external_lex_state = 2}, + [5444] = {.lex_state = 27, .external_lex_state = 2}, + [5445] = {.lex_state = 19, .external_lex_state = 9}, + [5446] = {.lex_state = 29, .external_lex_state = 9}, + [5447] = {.lex_state = 19, .external_lex_state = 9}, + [5448] = {.lex_state = 17, .external_lex_state = 2}, + [5449] = {.lex_state = 29, .external_lex_state = 9}, + [5450] = {.lex_state = 150, .external_lex_state = 2}, + [5451] = {.lex_state = 19, .external_lex_state = 9}, + [5452] = {.lex_state = 29, .external_lex_state = 9}, + [5453] = {.lex_state = 150, .external_lex_state = 6}, + [5454] = {.lex_state = 150, .external_lex_state = 2}, + [5455] = {.lex_state = 150, .external_lex_state = 2}, + [5456] = {.lex_state = 13, .external_lex_state = 2}, + [5457] = {.lex_state = 150, .external_lex_state = 2}, + [5458] = {.lex_state = 13, .external_lex_state = 2}, + [5459] = {.lex_state = 150, .external_lex_state = 2}, + [5460] = {.lex_state = 150, .external_lex_state = 2}, + [5461] = {.lex_state = 150, .external_lex_state = 2}, + [5462] = {.lex_state = 150, .external_lex_state = 2}, [5463] = {.lex_state = 17, .external_lex_state = 2}, - [5464] = {.lex_state = 151, .external_lex_state = 2}, - [5465] = {.lex_state = 151, .external_lex_state = 2}, - [5466] = {.lex_state = 151, .external_lex_state = 2}, - [5467] = {.lex_state = 151, .external_lex_state = 2}, - [5468] = {.lex_state = 151, .external_lex_state = 2}, - [5469] = {.lex_state = 151, .external_lex_state = 2}, - [5470] = {.lex_state = 151, .external_lex_state = 2}, - [5471] = {.lex_state = 151, .external_lex_state = 2}, - [5472] = {.lex_state = 151, .external_lex_state = 2}, - [5473] = {.lex_state = 151, .external_lex_state = 2}, - [5474] = {.lex_state = 151, .external_lex_state = 2}, - [5475] = {.lex_state = 151, .external_lex_state = 2}, - [5476] = {.lex_state = 151, .external_lex_state = 2}, - [5477] = {.lex_state = 151, .external_lex_state = 2}, - [5478] = {.lex_state = 151, .external_lex_state = 2}, - [5479] = {.lex_state = 151, .external_lex_state = 2}, - [5480] = {.lex_state = 151, .external_lex_state = 2}, - [5481] = {.lex_state = 151, .external_lex_state = 2}, - [5482] = {.lex_state = 151, .external_lex_state = 5}, - [5483] = {.lex_state = 151, .external_lex_state = 2}, - [5484] = {.lex_state = 151, .external_lex_state = 2}, - [5485] = {.lex_state = 151, .external_lex_state = 5}, - [5486] = {.lex_state = 151, .external_lex_state = 2}, - [5487] = {.lex_state = 151, .external_lex_state = 2}, - [5488] = {.lex_state = 151, .external_lex_state = 2}, - [5489] = {.lex_state = 151, .external_lex_state = 2}, - [5490] = {.lex_state = 151, .external_lex_state = 5}, - [5491] = {.lex_state = 151, .external_lex_state = 5}, - [5492] = {.lex_state = 151, .external_lex_state = 2}, - [5493] = {.lex_state = 151, .external_lex_state = 2}, - [5494] = {.lex_state = 151, .external_lex_state = 2}, - [5495] = {.lex_state = 151, .external_lex_state = 2}, - [5496] = {.lex_state = 151, .external_lex_state = 2}, - [5497] = {.lex_state = 151, .external_lex_state = 2}, - [5498] = {.lex_state = 151, .external_lex_state = 2}, - [5499] = {.lex_state = 151, .external_lex_state = 2}, - [5500] = {.lex_state = 151, .external_lex_state = 2}, - [5501] = {.lex_state = 151, .external_lex_state = 2}, - [5502] = {.lex_state = 151, .external_lex_state = 2}, - [5503] = {.lex_state = 151, .external_lex_state = 2}, - [5504] = {.lex_state = 151, .external_lex_state = 2}, - [5505] = {.lex_state = 151, .external_lex_state = 2}, - [5506] = {.lex_state = 151, .external_lex_state = 2}, - [5507] = {.lex_state = 151, .external_lex_state = 2}, - [5508] = {.lex_state = 151, .external_lex_state = 2}, - [5509] = {.lex_state = 151, .external_lex_state = 2}, - [5510] = {.lex_state = 151, .external_lex_state = 2}, - [5511] = {.lex_state = 151, .external_lex_state = 2}, - [5512] = {.lex_state = 151, .external_lex_state = 2}, - [5513] = {.lex_state = 151, .external_lex_state = 2}, - [5514] = {.lex_state = 151, .external_lex_state = 2}, - [5515] = {.lex_state = 151, .external_lex_state = 2}, - [5516] = {.lex_state = 151, .external_lex_state = 2}, - [5517] = {.lex_state = 151, .external_lex_state = 2}, - [5518] = {.lex_state = 151, .external_lex_state = 2}, - [5519] = {.lex_state = 151, .external_lex_state = 2}, - [5520] = {.lex_state = 151, .external_lex_state = 2}, - [5521] = {.lex_state = 151, .external_lex_state = 2}, - [5522] = {.lex_state = 151, .external_lex_state = 2}, - [5523] = {.lex_state = 151, .external_lex_state = 2}, - [5524] = {.lex_state = 151, .external_lex_state = 2}, - [5525] = {.lex_state = 151, .external_lex_state = 2}, - [5526] = {.lex_state = 151, .external_lex_state = 2}, - [5527] = {.lex_state = 151, .external_lex_state = 2}, - [5528] = {.lex_state = 151, .external_lex_state = 2}, - [5529] = {.lex_state = 151, .external_lex_state = 2}, - [5530] = {.lex_state = 151, .external_lex_state = 2}, - [5531] = {.lex_state = 151, .external_lex_state = 2}, - [5532] = {.lex_state = 151, .external_lex_state = 2}, - [5533] = {.lex_state = 151, .external_lex_state = 2}, - [5534] = {.lex_state = 151, .external_lex_state = 2}, - [5535] = {.lex_state = 151, .external_lex_state = 2}, - [5536] = {.lex_state = 151, .external_lex_state = 2}, - [5537] = {.lex_state = 151, .external_lex_state = 2}, - [5538] = {.lex_state = 151, .external_lex_state = 2}, - [5539] = {.lex_state = 151, .external_lex_state = 2}, - [5540] = {.lex_state = 151, .external_lex_state = 2}, - [5541] = {.lex_state = 151, .external_lex_state = 2}, - [5542] = {.lex_state = 151, .external_lex_state = 2}, - [5543] = {.lex_state = 151, .external_lex_state = 2}, - [5544] = {.lex_state = 151, .external_lex_state = 2}, - [5545] = {.lex_state = 151, .external_lex_state = 2}, - [5546] = {.lex_state = 151, .external_lex_state = 2}, - [5547] = {.lex_state = 151, .external_lex_state = 2}, - [5548] = {.lex_state = 151, .external_lex_state = 2}, - [5549] = {.lex_state = 151, .external_lex_state = 2}, - [5550] = {.lex_state = 151, .external_lex_state = 2}, - [5551] = {.lex_state = 151, .external_lex_state = 2}, - [5552] = {.lex_state = 151, .external_lex_state = 2}, - [5553] = {.lex_state = 151, .external_lex_state = 2}, - [5554] = {.lex_state = 151, .external_lex_state = 2}, - [5555] = {.lex_state = 151, .external_lex_state = 2}, - [5556] = {.lex_state = 151, .external_lex_state = 2}, - [5557] = {.lex_state = 151, .external_lex_state = 2}, - [5558] = {.lex_state = 151, .external_lex_state = 2}, - [5559] = {.lex_state = 151, .external_lex_state = 2}, - [5560] = {.lex_state = 151, .external_lex_state = 2}, - [5561] = {.lex_state = 40, .external_lex_state = 2}, - [5562] = {.lex_state = 151, .external_lex_state = 2}, - [5563] = {.lex_state = 151, .external_lex_state = 2}, - [5564] = {.lex_state = 151, .external_lex_state = 2}, - [5565] = {.lex_state = 151, .external_lex_state = 2}, - [5566] = {.lex_state = 151, .external_lex_state = 2}, - [5567] = {.lex_state = 151, .external_lex_state = 2}, - [5568] = {.lex_state = 151, .external_lex_state = 2}, - [5569] = {.lex_state = 151, .external_lex_state = 2}, - [5570] = {.lex_state = 151, .external_lex_state = 2}, - [5571] = {.lex_state = 151, .external_lex_state = 2}, - [5572] = {.lex_state = 151, .external_lex_state = 2}, - [5573] = {.lex_state = 151, .external_lex_state = 2}, - [5574] = {.lex_state = 151, .external_lex_state = 2}, - [5575] = {.lex_state = 151, .external_lex_state = 2}, - [5576] = {.lex_state = 151, .external_lex_state = 2}, - [5577] = {.lex_state = 151, .external_lex_state = 2}, - [5578] = {.lex_state = 151, .external_lex_state = 2}, - [5579] = {.lex_state = 151, .external_lex_state = 2}, - [5580] = {.lex_state = 151, .external_lex_state = 2}, - [5581] = {.lex_state = 151, .external_lex_state = 2}, - [5582] = {.lex_state = 151, .external_lex_state = 2}, - [5583] = {.lex_state = 151, .external_lex_state = 2}, - [5584] = {.lex_state = 151, .external_lex_state = 2}, - [5585] = {.lex_state = 151, .external_lex_state = 2}, - [5586] = {.lex_state = 151, .external_lex_state = 2}, - [5587] = {.lex_state = 151, .external_lex_state = 2}, - [5588] = {.lex_state = 151, .external_lex_state = 2}, - [5589] = {.lex_state = 151, .external_lex_state = 2}, - [5590] = {.lex_state = 151, .external_lex_state = 2}, - [5591] = {.lex_state = 151, .external_lex_state = 2}, - [5592] = {.lex_state = 151, .external_lex_state = 2}, - [5593] = {.lex_state = 151, .external_lex_state = 2}, - [5594] = {.lex_state = 151, .external_lex_state = 2}, - [5595] = {.lex_state = 151, .external_lex_state = 2}, - [5596] = {.lex_state = 151, .external_lex_state = 2}, - [5597] = {.lex_state = 151, .external_lex_state = 2}, - [5598] = {.lex_state = 151, .external_lex_state = 2}, - [5599] = {.lex_state = 151, .external_lex_state = 2}, - [5600] = {.lex_state = 151, .external_lex_state = 2}, - [5601] = {.lex_state = 151, .external_lex_state = 2}, - [5602] = {.lex_state = 151, .external_lex_state = 2}, - [5603] = {.lex_state = 151, .external_lex_state = 2}, - [5604] = {.lex_state = 3, .external_lex_state = 10}, - [5605] = {.lex_state = 151, .external_lex_state = 2}, - [5606] = {.lex_state = 151, .external_lex_state = 2}, - [5607] = {.lex_state = 151, .external_lex_state = 2}, - [5608] = {.lex_state = 151, .external_lex_state = 2}, - [5609] = {.lex_state = 151, .external_lex_state = 2}, - [5610] = {.lex_state = 151, .external_lex_state = 2}, - [5611] = {.lex_state = 151, .external_lex_state = 2}, - [5612] = {.lex_state = 151, .external_lex_state = 2}, - [5613] = {.lex_state = 151, .external_lex_state = 2}, - [5614] = {.lex_state = 151, .external_lex_state = 2}, - [5615] = {.lex_state = 151, .external_lex_state = 2}, - [5616] = {.lex_state = 151, .external_lex_state = 2}, - [5617] = {.lex_state = 151, .external_lex_state = 2}, - [5618] = {.lex_state = 151, .external_lex_state = 2}, - [5619] = {.lex_state = 151, .external_lex_state = 2}, - [5620] = {.lex_state = 151, .external_lex_state = 2}, - [5621] = {.lex_state = 151, .external_lex_state = 2}, - [5622] = {.lex_state = 151, .external_lex_state = 2}, - [5623] = {.lex_state = 151, .external_lex_state = 2}, - [5624] = {.lex_state = 151, .external_lex_state = 2}, - [5625] = {.lex_state = 151, .external_lex_state = 2}, - [5626] = {.lex_state = 151, .external_lex_state = 2}, - [5627] = {.lex_state = 151, .external_lex_state = 2}, - [5628] = {.lex_state = 151, .external_lex_state = 2}, - [5629] = {.lex_state = 151, .external_lex_state = 2}, - [5630] = {.lex_state = 151, .external_lex_state = 2}, - [5631] = {.lex_state = 151, .external_lex_state = 2}, - [5632] = {.lex_state = 151, .external_lex_state = 2}, - [5633] = {.lex_state = 151, .external_lex_state = 2}, - [5634] = {.lex_state = 151, .external_lex_state = 2}, - [5635] = {.lex_state = 151, .external_lex_state = 2}, - [5636] = {.lex_state = 151, .external_lex_state = 2}, - [5637] = {.lex_state = 151, .external_lex_state = 2}, - [5638] = {.lex_state = 151, .external_lex_state = 2}, - [5639] = {.lex_state = 151, .external_lex_state = 2}, - [5640] = {.lex_state = 151, .external_lex_state = 2}, - [5641] = {.lex_state = 151, .external_lex_state = 2}, - [5642] = {.lex_state = 151, .external_lex_state = 2}, - [5643] = {.lex_state = 151, .external_lex_state = 2}, - [5644] = {.lex_state = 3, .external_lex_state = 10}, - [5645] = {.lex_state = 151, .external_lex_state = 2}, - [5646] = {.lex_state = 151, .external_lex_state = 2}, - [5647] = {.lex_state = 151, .external_lex_state = 2}, - [5648] = {.lex_state = 151, .external_lex_state = 2}, - [5649] = {.lex_state = 151, .external_lex_state = 2}, - [5650] = {.lex_state = 151, .external_lex_state = 2}, - [5651] = {.lex_state = 151, .external_lex_state = 2}, - [5652] = {.lex_state = 151, .external_lex_state = 2}, - [5653] = {.lex_state = 151, .external_lex_state = 2}, - [5654] = {.lex_state = 151, .external_lex_state = 2}, - [5655] = {.lex_state = 151, .external_lex_state = 2}, - [5656] = {.lex_state = 151, .external_lex_state = 2}, - [5657] = {.lex_state = 151, .external_lex_state = 2}, - [5658] = {.lex_state = 151, .external_lex_state = 2}, - [5659] = {.lex_state = 151, .external_lex_state = 2}, - [5660] = {.lex_state = 151, .external_lex_state = 2}, - [5661] = {.lex_state = 151, .external_lex_state = 2}, - [5662] = {.lex_state = 151, .external_lex_state = 2}, - [5663] = {.lex_state = 151, .external_lex_state = 2}, - [5664] = {.lex_state = 151, .external_lex_state = 2}, - [5665] = {.lex_state = 151, .external_lex_state = 2}, - [5666] = {.lex_state = 151, .external_lex_state = 2}, - [5667] = {.lex_state = 151, .external_lex_state = 2}, - [5668] = {.lex_state = 151, .external_lex_state = 2}, - [5669] = {.lex_state = 151, .external_lex_state = 2}, - [5670] = {.lex_state = 151, .external_lex_state = 2}, - [5671] = {.lex_state = 151, .external_lex_state = 2}, - [5672] = {.lex_state = 151, .external_lex_state = 2}, - [5673] = {.lex_state = 151, .external_lex_state = 2}, - [5674] = {.lex_state = 151, .external_lex_state = 2}, - [5675] = {.lex_state = 151, .external_lex_state = 2}, - [5676] = {.lex_state = 151, .external_lex_state = 2}, - [5677] = {.lex_state = 151, .external_lex_state = 2}, - [5678] = {.lex_state = 151, .external_lex_state = 2}, - [5679] = {.lex_state = 151, .external_lex_state = 2}, - [5680] = {.lex_state = 151, .external_lex_state = 2}, - [5681] = {.lex_state = 151, .external_lex_state = 2}, - [5682] = {.lex_state = 151, .external_lex_state = 2}, - [5683] = {.lex_state = 151, .external_lex_state = 2}, - [5684] = {.lex_state = 151, .external_lex_state = 2}, - [5685] = {.lex_state = 151, .external_lex_state = 2}, - [5686] = {.lex_state = 151, .external_lex_state = 2}, - [5687] = {.lex_state = 151, .external_lex_state = 2}, - [5688] = {.lex_state = 151, .external_lex_state = 2}, - [5689] = {.lex_state = 151, .external_lex_state = 2}, - [5690] = {.lex_state = 151, .external_lex_state = 2}, - [5691] = {.lex_state = 151, .external_lex_state = 2}, - [5692] = {.lex_state = 151, .external_lex_state = 2}, - [5693] = {.lex_state = 151, .external_lex_state = 2}, - [5694] = {.lex_state = 151, .external_lex_state = 2}, - [5695] = {.lex_state = 151, .external_lex_state = 2}, - [5696] = {.lex_state = 151, .external_lex_state = 2}, - [5697] = {.lex_state = 151, .external_lex_state = 2}, - [5698] = {.lex_state = 151, .external_lex_state = 2}, - [5699] = {.lex_state = 151, .external_lex_state = 2}, - [5700] = {.lex_state = 151, .external_lex_state = 2}, - [5701] = {.lex_state = 151, .external_lex_state = 2}, - [5702] = {.lex_state = 151, .external_lex_state = 2}, - [5703] = {.lex_state = 151, .external_lex_state = 2}, - [5704] = {.lex_state = 151, .external_lex_state = 2}, - [5705] = {.lex_state = 151, .external_lex_state = 2}, - [5706] = {.lex_state = 3, .external_lex_state = 10}, - [5707] = {.lex_state = 151, .external_lex_state = 2}, - [5708] = {.lex_state = 151, .external_lex_state = 2}, - [5709] = {.lex_state = 151, .external_lex_state = 2}, - [5710] = {.lex_state = 151, .external_lex_state = 2}, - [5711] = {.lex_state = 151, .external_lex_state = 2}, - [5712] = {.lex_state = 151, .external_lex_state = 2}, - [5713] = {.lex_state = 151, .external_lex_state = 2}, - [5714] = {.lex_state = 151, .external_lex_state = 2}, - [5715] = {.lex_state = 151, .external_lex_state = 2}, - [5716] = {.lex_state = 151, .external_lex_state = 2}, - [5717] = {.lex_state = 151, .external_lex_state = 2}, - [5718] = {.lex_state = 151, .external_lex_state = 2}, - [5719] = {.lex_state = 151, .external_lex_state = 2}, - [5720] = {.lex_state = 151, .external_lex_state = 2}, - [5721] = {.lex_state = 151, .external_lex_state = 2}, - [5722] = {.lex_state = 151, .external_lex_state = 2}, - [5723] = {.lex_state = 151, .external_lex_state = 2}, - [5724] = {.lex_state = 151, .external_lex_state = 2}, - [5725] = {.lex_state = 151, .external_lex_state = 2}, - [5726] = {.lex_state = 151, .external_lex_state = 2}, - [5727] = {.lex_state = 151, .external_lex_state = 2}, - [5728] = {.lex_state = 151, .external_lex_state = 2}, - [5729] = {.lex_state = 151, .external_lex_state = 2}, - [5730] = {.lex_state = 151, .external_lex_state = 2}, - [5731] = {.lex_state = 151, .external_lex_state = 2}, - [5732] = {.lex_state = 151, .external_lex_state = 2}, - [5733] = {.lex_state = 151, .external_lex_state = 2}, - [5734] = {.lex_state = 151, .external_lex_state = 2}, - [5735] = {.lex_state = 151, .external_lex_state = 2}, - [5736] = {.lex_state = 151, .external_lex_state = 2}, - [5737] = {.lex_state = 151, .external_lex_state = 2}, - [5738] = {.lex_state = 151, .external_lex_state = 2}, - [5739] = {.lex_state = 151, .external_lex_state = 2}, - [5740] = {.lex_state = 151, .external_lex_state = 2}, - [5741] = {.lex_state = 151, .external_lex_state = 2}, - [5742] = {.lex_state = 151, .external_lex_state = 2}, - [5743] = {.lex_state = 151, .external_lex_state = 2}, - [5744] = {.lex_state = 151, .external_lex_state = 2}, - [5745] = {.lex_state = 151, .external_lex_state = 2}, - [5746] = {.lex_state = 151, .external_lex_state = 2}, - [5747] = {.lex_state = 151, .external_lex_state = 2}, - [5748] = {.lex_state = 151, .external_lex_state = 2}, - [5749] = {.lex_state = 151, .external_lex_state = 2}, - [5750] = {.lex_state = 151, .external_lex_state = 2}, - [5751] = {.lex_state = 151, .external_lex_state = 2}, - [5752] = {.lex_state = 151, .external_lex_state = 2}, - [5753] = {.lex_state = 151, .external_lex_state = 2}, - [5754] = {.lex_state = 151, .external_lex_state = 2}, - [5755] = {.lex_state = 151, .external_lex_state = 2}, - [5756] = {.lex_state = 151, .external_lex_state = 2}, - [5757] = {.lex_state = 151, .external_lex_state = 2}, - [5758] = {.lex_state = 151, .external_lex_state = 2}, - [5759] = {.lex_state = 40, .external_lex_state = 2}, - [5760] = {.lex_state = 151, .external_lex_state = 2}, - [5761] = {.lex_state = 151, .external_lex_state = 2}, - [5762] = {.lex_state = 40, .external_lex_state = 2}, - [5763] = {.lex_state = 151, .external_lex_state = 2}, - [5764] = {.lex_state = 151, .external_lex_state = 2}, - [5765] = {.lex_state = 151, .external_lex_state = 2}, - [5766] = {.lex_state = 151, .external_lex_state = 2}, - [5767] = {.lex_state = 151, .external_lex_state = 2}, - [5768] = {.lex_state = 151, .external_lex_state = 2}, - [5769] = {.lex_state = 151, .external_lex_state = 2}, - [5770] = {.lex_state = 151, .external_lex_state = 2}, - [5771] = {.lex_state = 151, .external_lex_state = 2}, - [5772] = {.lex_state = 151, .external_lex_state = 2}, - [5773] = {.lex_state = 151, .external_lex_state = 2}, - [5774] = {.lex_state = 151, .external_lex_state = 2}, - [5775] = {.lex_state = 151, .external_lex_state = 2}, - [5776] = {.lex_state = 151, .external_lex_state = 2}, - [5777] = {.lex_state = 151, .external_lex_state = 2}, - [5778] = {.lex_state = 151, .external_lex_state = 2}, - [5779] = {.lex_state = 151, .external_lex_state = 2}, - [5780] = {.lex_state = 151, .external_lex_state = 2}, - [5781] = {.lex_state = 151, .external_lex_state = 2}, - [5782] = {.lex_state = 151, .external_lex_state = 2}, - [5783] = {.lex_state = 151, .external_lex_state = 2}, - [5784] = {.lex_state = 151, .external_lex_state = 2}, - [5785] = {.lex_state = 151, .external_lex_state = 2}, - [5786] = {.lex_state = 151, .external_lex_state = 2}, - [5787] = {.lex_state = 151, .external_lex_state = 2}, - [5788] = {.lex_state = 151, .external_lex_state = 2}, - [5789] = {.lex_state = 151, .external_lex_state = 2}, - [5790] = {.lex_state = 151, .external_lex_state = 2}, - [5791] = {.lex_state = 151, .external_lex_state = 2}, - [5792] = {.lex_state = 151, .external_lex_state = 2}, - [5793] = {.lex_state = 151, .external_lex_state = 2}, - [5794] = {.lex_state = 151, .external_lex_state = 2}, - [5795] = {.lex_state = 151, .external_lex_state = 2}, - [5796] = {.lex_state = 3, .external_lex_state = 10}, - [5797] = {.lex_state = 151, .external_lex_state = 2}, - [5798] = {.lex_state = 151, .external_lex_state = 2}, - [5799] = {.lex_state = 151, .external_lex_state = 2}, - [5800] = {.lex_state = 151, .external_lex_state = 2}, - [5801] = {.lex_state = 151, .external_lex_state = 2}, - [5802] = {.lex_state = 151, .external_lex_state = 2}, - [5803] = {.lex_state = 151, .external_lex_state = 2}, - [5804] = {.lex_state = 151, .external_lex_state = 2}, - [5805] = {.lex_state = 151, .external_lex_state = 2}, - [5806] = {.lex_state = 151, .external_lex_state = 2}, - [5807] = {.lex_state = 151, .external_lex_state = 2}, - [5808] = {.lex_state = 151, .external_lex_state = 2}, - [5809] = {.lex_state = 151, .external_lex_state = 2}, - [5810] = {.lex_state = 151, .external_lex_state = 2}, - [5811] = {.lex_state = 151, .external_lex_state = 2}, - [5812] = {.lex_state = 151, .external_lex_state = 2}, - [5813] = {.lex_state = 151, .external_lex_state = 2}, - [5814] = {.lex_state = 151, .external_lex_state = 2}, - [5815] = {.lex_state = 151, .external_lex_state = 2}, - [5816] = {.lex_state = 151, .external_lex_state = 2}, - [5817] = {.lex_state = 151, .external_lex_state = 2}, - [5818] = {.lex_state = 151, .external_lex_state = 2}, - [5819] = {.lex_state = 151, .external_lex_state = 2}, - [5820] = {.lex_state = 151, .external_lex_state = 2}, - [5821] = {.lex_state = 151, .external_lex_state = 2}, - [5822] = {.lex_state = 151, .external_lex_state = 2}, - [5823] = {.lex_state = 151, .external_lex_state = 2}, - [5824] = {.lex_state = 151, .external_lex_state = 2}, - [5825] = {.lex_state = 151, .external_lex_state = 2}, - [5826] = {.lex_state = 151, .external_lex_state = 2}, - [5827] = {.lex_state = 151, .external_lex_state = 2}, - [5828] = {.lex_state = 151, .external_lex_state = 2}, - [5829] = {.lex_state = 151, .external_lex_state = 2}, - [5830] = {.lex_state = 151, .external_lex_state = 2}, - [5831] = {.lex_state = 151, .external_lex_state = 2}, - [5832] = {.lex_state = 151, .external_lex_state = 2}, - [5833] = {.lex_state = 151, .external_lex_state = 2}, - [5834] = {.lex_state = 151, .external_lex_state = 2}, - [5835] = {.lex_state = 151, .external_lex_state = 2}, - [5836] = {.lex_state = 151, .external_lex_state = 2}, - [5837] = {.lex_state = 151, .external_lex_state = 2}, - [5838] = {.lex_state = 151, .external_lex_state = 2}, - [5839] = {.lex_state = 151, .external_lex_state = 2}, - [5840] = {.lex_state = 151, .external_lex_state = 2}, - [5841] = {.lex_state = 151, .external_lex_state = 2}, - [5842] = {.lex_state = 151, .external_lex_state = 2}, - [5843] = {.lex_state = 151, .external_lex_state = 2}, - [5844] = {.lex_state = 151, .external_lex_state = 2}, - [5845] = {.lex_state = 151, .external_lex_state = 2}, - [5846] = {.lex_state = 151, .external_lex_state = 2}, - [5847] = {.lex_state = 151, .external_lex_state = 2}, - [5848] = {.lex_state = 151, .external_lex_state = 2}, - [5849] = {.lex_state = 151, .external_lex_state = 2}, - [5850] = {.lex_state = 151, .external_lex_state = 2}, - [5851] = {.lex_state = 151, .external_lex_state = 2}, - [5852] = {.lex_state = 151, .external_lex_state = 2}, - [5853] = {.lex_state = 151, .external_lex_state = 2}, - [5854] = {.lex_state = 151, .external_lex_state = 2}, - [5855] = {.lex_state = 151, .external_lex_state = 2}, - [5856] = {.lex_state = 151, .external_lex_state = 2}, - [5857] = {.lex_state = 151, .external_lex_state = 2}, - [5858] = {.lex_state = 151, .external_lex_state = 2}, - [5859] = {.lex_state = 151, .external_lex_state = 2}, - [5860] = {.lex_state = 151, .external_lex_state = 2}, - [5861] = {.lex_state = 151, .external_lex_state = 2}, - [5862] = {.lex_state = 151, .external_lex_state = 2}, - [5863] = {.lex_state = 151, .external_lex_state = 2}, - [5864] = {.lex_state = 151, .external_lex_state = 2}, - [5865] = {.lex_state = 151, .external_lex_state = 2}, - [5866] = {.lex_state = 151, .external_lex_state = 2}, - [5867] = {.lex_state = 3, .external_lex_state = 10}, - [5868] = {.lex_state = 151, .external_lex_state = 2}, - [5869] = {.lex_state = 151, .external_lex_state = 2}, - [5870] = {.lex_state = 151, .external_lex_state = 2}, - [5871] = {.lex_state = 151, .external_lex_state = 2}, - [5872] = {.lex_state = 151, .external_lex_state = 2}, - [5873] = {.lex_state = 151, .external_lex_state = 2}, - [5874] = {.lex_state = 40, .external_lex_state = 2}, - [5875] = {.lex_state = 151, .external_lex_state = 2}, - [5876] = {.lex_state = 151, .external_lex_state = 2}, - [5877] = {.lex_state = 151, .external_lex_state = 2}, - [5878] = {.lex_state = 151, .external_lex_state = 2}, - [5879] = {.lex_state = 151, .external_lex_state = 2}, - [5880] = {.lex_state = 151, .external_lex_state = 2}, - [5881] = {.lex_state = 151, .external_lex_state = 2}, - [5882] = {.lex_state = 151, .external_lex_state = 2}, - [5883] = {.lex_state = 151, .external_lex_state = 2}, - [5884] = {.lex_state = 151, .external_lex_state = 2}, - [5885] = {.lex_state = 151, .external_lex_state = 2}, - [5886] = {.lex_state = 151, .external_lex_state = 2}, - [5887] = {.lex_state = 151, .external_lex_state = 2}, - [5888] = {.lex_state = 151, .external_lex_state = 2}, - [5889] = {.lex_state = 151, .external_lex_state = 2}, - [5890] = {.lex_state = 151, .external_lex_state = 2}, - [5891] = {.lex_state = 151, .external_lex_state = 2}, - [5892] = {.lex_state = 151, .external_lex_state = 2}, - [5893] = {.lex_state = 151, .external_lex_state = 2}, - [5894] = {.lex_state = 151, .external_lex_state = 2}, - [5895] = {.lex_state = 151, .external_lex_state = 2}, - [5896] = {.lex_state = 151, .external_lex_state = 2}, - [5897] = {.lex_state = 151, .external_lex_state = 2}, - [5898] = {.lex_state = 151, .external_lex_state = 2}, - [5899] = {.lex_state = 151, .external_lex_state = 2}, - [5900] = {.lex_state = 151, .external_lex_state = 2}, - [5901] = {.lex_state = 151, .external_lex_state = 2}, - [5902] = {.lex_state = 151, .external_lex_state = 2}, - [5903] = {.lex_state = 151, .external_lex_state = 2}, - [5904] = {.lex_state = 151, .external_lex_state = 2}, - [5905] = {.lex_state = 151, .external_lex_state = 2}, - [5906] = {.lex_state = 151, .external_lex_state = 2}, - [5907] = {.lex_state = 151, .external_lex_state = 2}, - [5908] = {.lex_state = 151, .external_lex_state = 2}, - [5909] = {.lex_state = 151, .external_lex_state = 2}, - [5910] = {.lex_state = 151, .external_lex_state = 2}, - [5911] = {.lex_state = 151, .external_lex_state = 2}, - [5912] = {.lex_state = 151, .external_lex_state = 2}, - [5913] = {.lex_state = 151, .external_lex_state = 2}, - [5914] = {.lex_state = 40, .external_lex_state = 2}, - [5915] = {.lex_state = 151, .external_lex_state = 2}, - [5916] = {.lex_state = 151, .external_lex_state = 2}, - [5917] = {.lex_state = 151, .external_lex_state = 2}, - [5918] = {.lex_state = 151, .external_lex_state = 2}, - [5919] = {.lex_state = 151, .external_lex_state = 2}, - [5920] = {.lex_state = 151, .external_lex_state = 2}, - [5921] = {.lex_state = 151, .external_lex_state = 2}, - [5922] = {.lex_state = 151, .external_lex_state = 2}, - [5923] = {.lex_state = 151, .external_lex_state = 2}, - [5924] = {.lex_state = 151, .external_lex_state = 2}, + [5464] = {.lex_state = 27, .external_lex_state = 2}, + [5465] = {.lex_state = 150, .external_lex_state = 2}, + [5466] = {.lex_state = 150, .external_lex_state = 5}, + [5467] = {.lex_state = 150, .external_lex_state = 2}, + [5468] = {.lex_state = 29, .external_lex_state = 9}, + [5469] = {.lex_state = 150, .external_lex_state = 5}, + [5470] = {.lex_state = 150, .external_lex_state = 2}, + [5471] = {.lex_state = 150, .external_lex_state = 2}, + [5472] = {.lex_state = 150, .external_lex_state = 2}, + [5473] = {.lex_state = 150, .external_lex_state = 2}, + [5474] = {.lex_state = 19, .external_lex_state = 9}, + [5475] = {.lex_state = 150, .external_lex_state = 2}, + [5476] = {.lex_state = 13, .external_lex_state = 2}, + [5477] = {.lex_state = 150, .external_lex_state = 2}, + [5478] = {.lex_state = 150, .external_lex_state = 2}, + [5479] = {.lex_state = 150, .external_lex_state = 2}, + [5480] = {.lex_state = 13, .external_lex_state = 2}, + [5481] = {.lex_state = 150, .external_lex_state = 2}, + [5482] = {.lex_state = 150, .external_lex_state = 2}, + [5483] = {.lex_state = 150, .external_lex_state = 5}, + [5484] = {.lex_state = 150, .external_lex_state = 5}, + [5485] = {.lex_state = 150, .external_lex_state = 2}, + [5486] = {.lex_state = 150, .external_lex_state = 2}, + [5487] = {.lex_state = 13, .external_lex_state = 2}, + [5488] = {.lex_state = 150, .external_lex_state = 2}, + [5489] = {.lex_state = 150, .external_lex_state = 2}, + [5490] = {.lex_state = 150, .external_lex_state = 5}, + [5491] = {.lex_state = 150, .external_lex_state = 2}, + [5492] = {.lex_state = 150, .external_lex_state = 5}, + [5493] = {.lex_state = 150, .external_lex_state = 2}, + [5494] = {.lex_state = 150, .external_lex_state = 2}, + [5495] = {.lex_state = 150, .external_lex_state = 2}, + [5496] = {.lex_state = 150, .external_lex_state = 2}, + [5497] = {.lex_state = 150, .external_lex_state = 2}, + [5498] = {.lex_state = 150, .external_lex_state = 5}, + [5499] = {.lex_state = 150, .external_lex_state = 5}, + [5500] = {.lex_state = 150, .external_lex_state = 5}, + [5501] = {.lex_state = 150, .external_lex_state = 5}, + [5502] = {.lex_state = 150, .external_lex_state = 2}, + [5503] = {.lex_state = 150, .external_lex_state = 5}, + [5504] = {.lex_state = 150, .external_lex_state = 5}, + [5505] = {.lex_state = 150, .external_lex_state = 5}, + [5506] = {.lex_state = 150, .external_lex_state = 5}, + [5507] = {.lex_state = 150, .external_lex_state = 2}, + [5508] = {.lex_state = 150, .external_lex_state = 2}, + [5509] = {.lex_state = 150, .external_lex_state = 5}, + [5510] = {.lex_state = 150, .external_lex_state = 5}, + [5511] = {.lex_state = 150, .external_lex_state = 5}, + [5512] = {.lex_state = 150, .external_lex_state = 5}, + [5513] = {.lex_state = 150, .external_lex_state = 5}, + [5514] = {.lex_state = 150, .external_lex_state = 5}, + [5515] = {.lex_state = 150, .external_lex_state = 5}, + [5516] = {.lex_state = 150, .external_lex_state = 5}, + [5517] = {.lex_state = 150, .external_lex_state = 5}, + [5518] = {.lex_state = 150, .external_lex_state = 5}, + [5519] = {.lex_state = 150, .external_lex_state = 5}, + [5520] = {.lex_state = 150, .external_lex_state = 5}, + [5521] = {.lex_state = 150, .external_lex_state = 5}, + [5522] = {.lex_state = 150, .external_lex_state = 5}, + [5523] = {.lex_state = 150, .external_lex_state = 5}, + [5524] = {.lex_state = 150, .external_lex_state = 5}, + [5525] = {.lex_state = 150, .external_lex_state = 5}, + [5526] = {.lex_state = 150, .external_lex_state = 5}, + [5527] = {.lex_state = 150, .external_lex_state = 5}, + [5528] = {.lex_state = 150, .external_lex_state = 2}, + [5529] = {.lex_state = 150, .external_lex_state = 2}, + [5530] = {.lex_state = 150, .external_lex_state = 2}, + [5531] = {.lex_state = 150, .external_lex_state = 2}, + [5532] = {.lex_state = 150, .external_lex_state = 2}, + [5533] = {.lex_state = 150, .external_lex_state = 2}, + [5534] = {.lex_state = 23, .external_lex_state = 8}, + [5535] = {.lex_state = 5, .external_lex_state = 2}, + [5536] = {.lex_state = 150, .external_lex_state = 2}, + [5537] = {.lex_state = 150, .external_lex_state = 2}, + [5538] = {.lex_state = 150, .external_lex_state = 2}, + [5539] = {.lex_state = 150, .external_lex_state = 5}, + [5540] = {.lex_state = 150, .external_lex_state = 5}, + [5541] = {.lex_state = 150, .external_lex_state = 5}, + [5542] = {.lex_state = 150, .external_lex_state = 5}, + [5543] = {.lex_state = 150, .external_lex_state = 5}, + [5544] = {.lex_state = 150, .external_lex_state = 5}, + [5545] = {.lex_state = 150, .external_lex_state = 5}, + [5546] = {.lex_state = 150, .external_lex_state = 5}, + [5547] = {.lex_state = 150, .external_lex_state = 5}, + [5548] = {.lex_state = 150, .external_lex_state = 5}, + [5549] = {.lex_state = 150, .external_lex_state = 5}, + [5550] = {.lex_state = 150, .external_lex_state = 5}, + [5551] = {.lex_state = 150, .external_lex_state = 5}, + [5552] = {.lex_state = 150, .external_lex_state = 2}, + [5553] = {.lex_state = 150, .external_lex_state = 5}, + [5554] = {.lex_state = 150, .external_lex_state = 5}, + [5555] = {.lex_state = 150, .external_lex_state = 5}, + [5556] = {.lex_state = 150, .external_lex_state = 5}, + [5557] = {.lex_state = 150, .external_lex_state = 5}, + [5558] = {.lex_state = 2, .external_lex_state = 2}, + [5559] = {.lex_state = 150, .external_lex_state = 5}, + [5560] = {.lex_state = 150, .external_lex_state = 5}, + [5561] = {.lex_state = 150, .external_lex_state = 5}, + [5562] = {.lex_state = 150, .external_lex_state = 2}, + [5563] = {.lex_state = 150, .external_lex_state = 5}, + [5564] = {.lex_state = 150, .external_lex_state = 5}, + [5565] = {.lex_state = 150, .external_lex_state = 5}, + [5566] = {.lex_state = 150, .external_lex_state = 2}, + [5567] = {.lex_state = 150, .external_lex_state = 2}, + [5568] = {.lex_state = 150, .external_lex_state = 2}, + [5569] = {.lex_state = 5, .external_lex_state = 2}, + [5570] = {.lex_state = 150, .external_lex_state = 5}, + [5571] = {.lex_state = 150, .external_lex_state = 5}, + [5572] = {.lex_state = 150, .external_lex_state = 5}, + [5573] = {.lex_state = 150, .external_lex_state = 5}, + [5574] = {.lex_state = 150, .external_lex_state = 5}, + [5575] = {.lex_state = 150, .external_lex_state = 5}, + [5576] = {.lex_state = 150, .external_lex_state = 5}, + [5577] = {.lex_state = 150, .external_lex_state = 5}, + [5578] = {.lex_state = 150, .external_lex_state = 5}, + [5579] = {.lex_state = 150, .external_lex_state = 5}, + [5580] = {.lex_state = 150, .external_lex_state = 5}, + [5581] = {.lex_state = 150, .external_lex_state = 5}, + [5582] = {.lex_state = 150, .external_lex_state = 5}, + [5583] = {.lex_state = 150, .external_lex_state = 5}, + [5584] = {.lex_state = 150, .external_lex_state = 5}, + [5585] = {.lex_state = 150, .external_lex_state = 5}, + [5586] = {.lex_state = 150, .external_lex_state = 5}, + [5587] = {.lex_state = 150, .external_lex_state = 5}, + [5588] = {.lex_state = 150, .external_lex_state = 5}, + [5589] = {.lex_state = 150, .external_lex_state = 5}, + [5590] = {.lex_state = 150, .external_lex_state = 2}, + [5591] = {.lex_state = 150, .external_lex_state = 5}, + [5592] = {.lex_state = 150, .external_lex_state = 5}, + [5593] = {.lex_state = 150, .external_lex_state = 5}, + [5594] = {.lex_state = 150, .external_lex_state = 5}, + [5595] = {.lex_state = 150, .external_lex_state = 5}, + [5596] = {.lex_state = 150, .external_lex_state = 5}, + [5597] = {.lex_state = 150, .external_lex_state = 5}, + [5598] = {.lex_state = 150, .external_lex_state = 5}, + [5599] = {.lex_state = 150, .external_lex_state = 2}, + [5600] = {.lex_state = 150, .external_lex_state = 5}, + [5601] = {.lex_state = 150, .external_lex_state = 5}, + [5602] = {.lex_state = 150, .external_lex_state = 5}, + [5603] = {.lex_state = 150, .external_lex_state = 5}, + [5604] = {.lex_state = 150, .external_lex_state = 5}, + [5605] = {.lex_state = 150, .external_lex_state = 5}, + [5606] = {.lex_state = 150, .external_lex_state = 5}, + [5607] = {.lex_state = 150, .external_lex_state = 5}, + [5608] = {.lex_state = 150, .external_lex_state = 5}, + [5609] = {.lex_state = 150, .external_lex_state = 5}, + [5610] = {.lex_state = 150, .external_lex_state = 5}, + [5611] = {.lex_state = 150, .external_lex_state = 5}, + [5612] = {.lex_state = 150, .external_lex_state = 5}, + [5613] = {.lex_state = 150, .external_lex_state = 5}, + [5614] = {.lex_state = 150, .external_lex_state = 5}, + [5615] = {.lex_state = 150, .external_lex_state = 5}, + [5616] = {.lex_state = 150, .external_lex_state = 5}, + [5617] = {.lex_state = 150, .external_lex_state = 5}, + [5618] = {.lex_state = 150, .external_lex_state = 5}, + [5619] = {.lex_state = 150, .external_lex_state = 5}, + [5620] = {.lex_state = 150, .external_lex_state = 5}, + [5621] = {.lex_state = 150, .external_lex_state = 5}, + [5622] = {.lex_state = 150, .external_lex_state = 5}, + [5623] = {.lex_state = 150, .external_lex_state = 5}, + [5624] = {.lex_state = 150, .external_lex_state = 5}, + [5625] = {.lex_state = 150, .external_lex_state = 5}, + [5626] = {.lex_state = 150, .external_lex_state = 5}, + [5627] = {.lex_state = 150, .external_lex_state = 5}, + [5628] = {.lex_state = 150, .external_lex_state = 5}, + [5629] = {.lex_state = 150, .external_lex_state = 5}, + [5630] = {.lex_state = 150, .external_lex_state = 5}, + [5631] = {.lex_state = 150, .external_lex_state = 5}, + [5632] = {.lex_state = 150, .external_lex_state = 5}, + [5633] = {.lex_state = 150, .external_lex_state = 5}, + [5634] = {.lex_state = 150, .external_lex_state = 5}, + [5635] = {.lex_state = 150, .external_lex_state = 5}, + [5636] = {.lex_state = 150, .external_lex_state = 5}, + [5637] = {.lex_state = 150, .external_lex_state = 5}, + [5638] = {.lex_state = 150, .external_lex_state = 5}, + [5639] = {.lex_state = 150, .external_lex_state = 2}, + [5640] = {.lex_state = 150, .external_lex_state = 5}, + [5641] = {.lex_state = 150, .external_lex_state = 5}, + [5642] = {.lex_state = 150, .external_lex_state = 5}, + [5643] = {.lex_state = 150, .external_lex_state = 5}, + [5644] = {.lex_state = 150, .external_lex_state = 5}, + [5645] = {.lex_state = 150, .external_lex_state = 5}, + [5646] = {.lex_state = 13, .external_lex_state = 2}, + [5647] = {.lex_state = 150, .external_lex_state = 2}, + [5648] = {.lex_state = 150, .external_lex_state = 2}, + [5649] = {.lex_state = 150, .external_lex_state = 2}, + [5650] = {.lex_state = 150, .external_lex_state = 2}, + [5651] = {.lex_state = 150, .external_lex_state = 5}, + [5652] = {.lex_state = 150, .external_lex_state = 2}, + [5653] = {.lex_state = 150, .external_lex_state = 5}, + [5654] = {.lex_state = 150, .external_lex_state = 5}, + [5655] = {.lex_state = 150, .external_lex_state = 5}, + [5656] = {.lex_state = 150, .external_lex_state = 5}, + [5657] = {.lex_state = 150, .external_lex_state = 5}, + [5658] = {.lex_state = 150, .external_lex_state = 5}, + [5659] = {.lex_state = 150, .external_lex_state = 5}, + [5660] = {.lex_state = 150, .external_lex_state = 5}, + [5661] = {.lex_state = 150, .external_lex_state = 5}, + [5662] = {.lex_state = 150, .external_lex_state = 5}, + [5663] = {.lex_state = 150, .external_lex_state = 5}, + [5664] = {.lex_state = 150, .external_lex_state = 5}, + [5665] = {.lex_state = 150, .external_lex_state = 5}, + [5666] = {.lex_state = 150, .external_lex_state = 5}, + [5667] = {.lex_state = 150, .external_lex_state = 5}, + [5668] = {.lex_state = 150, .external_lex_state = 5}, + [5669] = {.lex_state = 150, .external_lex_state = 5}, + [5670] = {.lex_state = 150, .external_lex_state = 5}, + [5671] = {.lex_state = 150, .external_lex_state = 5}, + [5672] = {.lex_state = 150, .external_lex_state = 5}, + [5673] = {.lex_state = 150, .external_lex_state = 5}, + [5674] = {.lex_state = 150, .external_lex_state = 5}, + [5675] = {.lex_state = 150, .external_lex_state = 5}, + [5676] = {.lex_state = 150, .external_lex_state = 5}, + [5677] = {.lex_state = 150, .external_lex_state = 5}, + [5678] = {.lex_state = 150, .external_lex_state = 5}, + [5679] = {.lex_state = 150, .external_lex_state = 5}, + [5680] = {.lex_state = 150, .external_lex_state = 5}, + [5681] = {.lex_state = 150, .external_lex_state = 5}, + [5682] = {.lex_state = 150, .external_lex_state = 5}, + [5683] = {.lex_state = 150, .external_lex_state = 5}, + [5684] = {.lex_state = 150, .external_lex_state = 5}, + [5685] = {.lex_state = 150, .external_lex_state = 5}, + [5686] = {.lex_state = 150, .external_lex_state = 5}, + [5687] = {.lex_state = 150, .external_lex_state = 5}, + [5688] = {.lex_state = 150, .external_lex_state = 5}, + [5689] = {.lex_state = 150, .external_lex_state = 5}, + [5690] = {.lex_state = 150, .external_lex_state = 5}, + [5691] = {.lex_state = 150, .external_lex_state = 5}, + [5692] = {.lex_state = 150, .external_lex_state = 5}, + [5693] = {.lex_state = 150, .external_lex_state = 5}, + [5694] = {.lex_state = 150, .external_lex_state = 5}, + [5695] = {.lex_state = 150, .external_lex_state = 5}, + [5696] = {.lex_state = 150, .external_lex_state = 5}, + [5697] = {.lex_state = 150, .external_lex_state = 5}, + [5698] = {.lex_state = 150, .external_lex_state = 5}, + [5699] = {.lex_state = 150, .external_lex_state = 5}, + [5700] = {.lex_state = 150, .external_lex_state = 5}, + [5701] = {.lex_state = 150, .external_lex_state = 5}, + [5702] = {.lex_state = 150, .external_lex_state = 2}, + [5703] = {.lex_state = 150, .external_lex_state = 2}, + [5704] = {.lex_state = 150, .external_lex_state = 2}, + [5705] = {.lex_state = 5, .external_lex_state = 2}, + [5706] = {.lex_state = 150, .external_lex_state = 5}, + [5707] = {.lex_state = 150, .external_lex_state = 5}, + [5708] = {.lex_state = 150, .external_lex_state = 5}, + [5709] = {.lex_state = 150, .external_lex_state = 5}, + [5710] = {.lex_state = 150, .external_lex_state = 2}, + [5711] = {.lex_state = 150, .external_lex_state = 5}, + [5712] = {.lex_state = 150, .external_lex_state = 5}, + [5713] = {.lex_state = 150, .external_lex_state = 5}, + [5714] = {.lex_state = 150, .external_lex_state = 5}, + [5715] = {.lex_state = 150, .external_lex_state = 5}, + [5716] = {.lex_state = 150, .external_lex_state = 2}, + [5717] = {.lex_state = 150, .external_lex_state = 5}, + [5718] = {.lex_state = 150, .external_lex_state = 5}, + [5719] = {.lex_state = 150, .external_lex_state = 5}, + [5720] = {.lex_state = 150, .external_lex_state = 5}, + [5721] = {.lex_state = 150, .external_lex_state = 5}, + [5722] = {.lex_state = 150, .external_lex_state = 5}, + [5723] = {.lex_state = 150, .external_lex_state = 5}, + [5724] = {.lex_state = 150, .external_lex_state = 5}, + [5725] = {.lex_state = 150, .external_lex_state = 5}, + [5726] = {.lex_state = 150, .external_lex_state = 5}, + [5727] = {.lex_state = 150, .external_lex_state = 5}, + [5728] = {.lex_state = 150, .external_lex_state = 5}, + [5729] = {.lex_state = 150, .external_lex_state = 2}, + [5730] = {.lex_state = 150, .external_lex_state = 5}, + [5731] = {.lex_state = 150, .external_lex_state = 5}, + [5732] = {.lex_state = 150, .external_lex_state = 5}, + [5733] = {.lex_state = 150, .external_lex_state = 5}, + [5734] = {.lex_state = 150, .external_lex_state = 5}, + [5735] = {.lex_state = 150, .external_lex_state = 5}, + [5736] = {.lex_state = 150, .external_lex_state = 5}, + [5737] = {.lex_state = 150, .external_lex_state = 5}, + [5738] = {.lex_state = 150, .external_lex_state = 5}, + [5739] = {.lex_state = 150, .external_lex_state = 5}, + [5740] = {.lex_state = 150, .external_lex_state = 5}, + [5741] = {.lex_state = 150, .external_lex_state = 5}, + [5742] = {.lex_state = 150, .external_lex_state = 5}, + [5743] = {.lex_state = 150, .external_lex_state = 5}, + [5744] = {.lex_state = 150, .external_lex_state = 5}, + [5745] = {.lex_state = 150, .external_lex_state = 5}, + [5746] = {.lex_state = 150, .external_lex_state = 5}, + [5747] = {.lex_state = 150, .external_lex_state = 5}, + [5748] = {.lex_state = 150, .external_lex_state = 5}, + [5749] = {.lex_state = 150, .external_lex_state = 5}, + [5750] = {.lex_state = 150, .external_lex_state = 5}, + [5751] = {.lex_state = 150, .external_lex_state = 5}, + [5752] = {.lex_state = 150, .external_lex_state = 5}, + [5753] = {.lex_state = 150, .external_lex_state = 5}, + [5754] = {.lex_state = 150, .external_lex_state = 5}, + [5755] = {.lex_state = 150, .external_lex_state = 5}, + [5756] = {.lex_state = 150, .external_lex_state = 5}, + [5757] = {.lex_state = 150, .external_lex_state = 5}, + [5758] = {.lex_state = 150, .external_lex_state = 5}, + [5759] = {.lex_state = 150, .external_lex_state = 5}, + [5760] = {.lex_state = 150, .external_lex_state = 5}, + [5761] = {.lex_state = 150, .external_lex_state = 5}, + [5762] = {.lex_state = 150, .external_lex_state = 5}, + [5763] = {.lex_state = 150, .external_lex_state = 5}, + [5764] = {.lex_state = 150, .external_lex_state = 5}, + [5765] = {.lex_state = 150, .external_lex_state = 5}, + [5766] = {.lex_state = 150, .external_lex_state = 5}, + [5767] = {.lex_state = 150, .external_lex_state = 5}, + [5768] = {.lex_state = 150, .external_lex_state = 5}, + [5769] = {.lex_state = 150, .external_lex_state = 5}, + [5770] = {.lex_state = 150, .external_lex_state = 5}, + [5771] = {.lex_state = 150, .external_lex_state = 5}, + [5772] = {.lex_state = 150, .external_lex_state = 5}, + [5773] = {.lex_state = 150, .external_lex_state = 5}, + [5774] = {.lex_state = 150, .external_lex_state = 5}, + [5775] = {.lex_state = 150, .external_lex_state = 2}, + [5776] = {.lex_state = 150, .external_lex_state = 5}, + [5777] = {.lex_state = 150, .external_lex_state = 5}, + [5778] = {.lex_state = 150, .external_lex_state = 5}, + [5779] = {.lex_state = 150, .external_lex_state = 5}, + [5780] = {.lex_state = 150, .external_lex_state = 2}, + [5781] = {.lex_state = 150, .external_lex_state = 5}, + [5782] = {.lex_state = 150, .external_lex_state = 5}, + [5783] = {.lex_state = 150, .external_lex_state = 2}, + [5784] = {.lex_state = 150, .external_lex_state = 5}, + [5785] = {.lex_state = 150, .external_lex_state = 5}, + [5786] = {.lex_state = 150, .external_lex_state = 5}, + [5787] = {.lex_state = 150, .external_lex_state = 5}, + [5788] = {.lex_state = 150, .external_lex_state = 5}, + [5789] = {.lex_state = 150, .external_lex_state = 5}, + [5790] = {.lex_state = 150, .external_lex_state = 5}, + [5791] = {.lex_state = 150, .external_lex_state = 2}, + [5792] = {.lex_state = 150, .external_lex_state = 5}, + [5793] = {.lex_state = 150, .external_lex_state = 5}, + [5794] = {.lex_state = 150, .external_lex_state = 5}, + [5795] = {.lex_state = 150, .external_lex_state = 5}, + [5796] = {.lex_state = 150, .external_lex_state = 5}, + [5797] = {.lex_state = 150, .external_lex_state = 5}, + [5798] = {.lex_state = 150, .external_lex_state = 5}, + [5799] = {.lex_state = 150, .external_lex_state = 5}, + [5800] = {.lex_state = 150, .external_lex_state = 5}, + [5801] = {.lex_state = 150, .external_lex_state = 5}, + [5802] = {.lex_state = 150, .external_lex_state = 5}, + [5803] = {.lex_state = 150, .external_lex_state = 5}, + [5804] = {.lex_state = 150, .external_lex_state = 5}, + [5805] = {.lex_state = 150, .external_lex_state = 5}, + [5806] = {.lex_state = 150, .external_lex_state = 5}, + [5807] = {.lex_state = 150, .external_lex_state = 5}, + [5808] = {.lex_state = 150, .external_lex_state = 5}, + [5809] = {.lex_state = 150, .external_lex_state = 5}, + [5810] = {.lex_state = 150, .external_lex_state = 5}, + [5811] = {.lex_state = 150, .external_lex_state = 5}, + [5812] = {.lex_state = 150, .external_lex_state = 5}, + [5813] = {.lex_state = 150, .external_lex_state = 2}, + [5814] = {.lex_state = 150, .external_lex_state = 5}, + [5815] = {.lex_state = 150, .external_lex_state = 5}, + [5816] = {.lex_state = 150, .external_lex_state = 5}, + [5817] = {.lex_state = 150, .external_lex_state = 5}, + [5818] = {.lex_state = 150, .external_lex_state = 5}, + [5819] = {.lex_state = 150, .external_lex_state = 2}, + [5820] = {.lex_state = 150, .external_lex_state = 2}, + [5821] = {.lex_state = 150, .external_lex_state = 5}, + [5822] = {.lex_state = 150, .external_lex_state = 5}, + [5823] = {.lex_state = 150, .external_lex_state = 2}, + [5824] = {.lex_state = 150, .external_lex_state = 2}, + [5825] = {.lex_state = 150, .external_lex_state = 2}, + [5826] = {.lex_state = 5, .external_lex_state = 2}, + [5827] = {.lex_state = 150, .external_lex_state = 5}, + [5828] = {.lex_state = 150, .external_lex_state = 2}, + [5829] = {.lex_state = 150, .external_lex_state = 5}, + [5830] = {.lex_state = 150, .external_lex_state = 2}, + [5831] = {.lex_state = 150, .external_lex_state = 5}, + [5832] = {.lex_state = 150, .external_lex_state = 5}, + [5833] = {.lex_state = 150, .external_lex_state = 5}, + [5834] = {.lex_state = 150, .external_lex_state = 5}, + [5835] = {.lex_state = 150, .external_lex_state = 2}, + [5836] = {.lex_state = 150, .external_lex_state = 5}, + [5837] = {.lex_state = 150, .external_lex_state = 5}, + [5838] = {.lex_state = 150, .external_lex_state = 2}, + [5839] = {.lex_state = 150, .external_lex_state = 5}, + [5840] = {.lex_state = 150, .external_lex_state = 2}, + [5841] = {.lex_state = 150, .external_lex_state = 2}, + [5842] = {.lex_state = 150, .external_lex_state = 2}, + [5843] = {.lex_state = 150, .external_lex_state = 2}, + [5844] = {.lex_state = 150, .external_lex_state = 2}, + [5845] = {.lex_state = 150, .external_lex_state = 2}, + [5846] = {.lex_state = 150, .external_lex_state = 2}, + [5847] = {.lex_state = 150, .external_lex_state = 2}, + [5848] = {.lex_state = 150, .external_lex_state = 2}, + [5849] = {.lex_state = 150, .external_lex_state = 2}, + [5850] = {.lex_state = 150, .external_lex_state = 2}, + [5851] = {.lex_state = 150, .external_lex_state = 2}, + [5852] = {.lex_state = 150, .external_lex_state = 2}, + [5853] = {.lex_state = 150, .external_lex_state = 2}, + [5854] = {.lex_state = 150, .external_lex_state = 2}, + [5855] = {.lex_state = 5, .external_lex_state = 2}, + [5856] = {.lex_state = 150, .external_lex_state = 2}, + [5857] = {.lex_state = 150, .external_lex_state = 5}, + [5858] = {.lex_state = 150, .external_lex_state = 2}, + [5859] = {.lex_state = 150, .external_lex_state = 2}, + [5860] = {.lex_state = 150, .external_lex_state = 2}, + [5861] = {.lex_state = 2, .external_lex_state = 2}, + [5862] = {.lex_state = 150, .external_lex_state = 2}, + [5863] = {.lex_state = 150, .external_lex_state = 2}, + [5864] = {.lex_state = 150, .external_lex_state = 2}, + [5865] = {.lex_state = 150, .external_lex_state = 2}, + [5866] = {.lex_state = 150, .external_lex_state = 2}, + [5867] = {.lex_state = 150, .external_lex_state = 2}, + [5868] = {.lex_state = 150, .external_lex_state = 2}, + [5869] = {.lex_state = 2, .external_lex_state = 2}, + [5870] = {.lex_state = 150, .external_lex_state = 2}, + [5871] = {.lex_state = 150, .external_lex_state = 2}, + [5872] = {.lex_state = 150, .external_lex_state = 2}, + [5873] = {.lex_state = 150, .external_lex_state = 2}, + [5874] = {.lex_state = 150, .external_lex_state = 2}, + [5875] = {.lex_state = 150, .external_lex_state = 2}, + [5876] = {.lex_state = 150, .external_lex_state = 2}, + [5877] = {.lex_state = 150, .external_lex_state = 2}, + [5878] = {.lex_state = 150, .external_lex_state = 2}, + [5879] = {.lex_state = 150, .external_lex_state = 2}, + [5880] = {.lex_state = 150, .external_lex_state = 2}, + [5881] = {.lex_state = 150, .external_lex_state = 2}, + [5882] = {.lex_state = 150, .external_lex_state = 2}, + [5883] = {.lex_state = 150, .external_lex_state = 2}, + [5884] = {.lex_state = 150, .external_lex_state = 2}, + [5885] = {.lex_state = 150, .external_lex_state = 2}, + [5886] = {.lex_state = 150, .external_lex_state = 2}, + [5887] = {.lex_state = 150, .external_lex_state = 5}, + [5888] = {.lex_state = 150, .external_lex_state = 2}, + [5889] = {.lex_state = 2, .external_lex_state = 2}, + [5890] = {.lex_state = 5, .external_lex_state = 2}, + [5891] = {.lex_state = 5, .external_lex_state = 2}, + [5892] = {.lex_state = 5, .external_lex_state = 2}, + [5893] = {.lex_state = 5, .external_lex_state = 2}, + [5894] = {.lex_state = 150, .external_lex_state = 5}, + [5895] = {.lex_state = 150, .external_lex_state = 5}, + [5896] = {.lex_state = 150, .external_lex_state = 5}, + [5897] = {.lex_state = 150, .external_lex_state = 2}, + [5898] = {.lex_state = 150, .external_lex_state = 2}, + [5899] = {.lex_state = 150, .external_lex_state = 2}, + [5900] = {.lex_state = 150, .external_lex_state = 2}, + [5901] = {.lex_state = 150, .external_lex_state = 5}, + [5902] = {.lex_state = 150, .external_lex_state = 5}, + [5903] = {.lex_state = 150, .external_lex_state = 2}, + [5904] = {.lex_state = 150, .external_lex_state = 5}, + [5905] = {.lex_state = 150, .external_lex_state = 5}, + [5906] = {.lex_state = 150, .external_lex_state = 5}, + [5907] = {.lex_state = 150, .external_lex_state = 5}, + [5908] = {.lex_state = 150, .external_lex_state = 5}, + [5909] = {.lex_state = 150, .external_lex_state = 2}, + [5910] = {.lex_state = 150, .external_lex_state = 2}, + [5911] = {.lex_state = 150, .external_lex_state = 2}, + [5912] = {.lex_state = 150, .external_lex_state = 2}, + [5913] = {.lex_state = 150, .external_lex_state = 5}, + [5914] = {.lex_state = 150, .external_lex_state = 2}, + [5915] = {.lex_state = 150, .external_lex_state = 2}, + [5916] = {.lex_state = 5, .external_lex_state = 2}, + [5917] = {.lex_state = 150, .external_lex_state = 2}, + [5918] = {.lex_state = 5, .external_lex_state = 2}, + [5919] = {.lex_state = 5, .external_lex_state = 2}, + [5920] = {.lex_state = 150, .external_lex_state = 2}, + [5921] = {.lex_state = 150, .external_lex_state = 5}, + [5922] = {.lex_state = 150, .external_lex_state = 5}, + [5923] = {.lex_state = 150, .external_lex_state = 5}, + [5924] = {.lex_state = 150, .external_lex_state = 2}, + [5925] = {.lex_state = 150, .external_lex_state = 2}, + [5926] = {.lex_state = 150, .external_lex_state = 5}, + [5927] = {.lex_state = 150, .external_lex_state = 5}, + [5928] = {.lex_state = 150, .external_lex_state = 5}, + [5929] = {.lex_state = 150, .external_lex_state = 5}, + [5930] = {.lex_state = 150, .external_lex_state = 5}, + [5931] = {.lex_state = 150, .external_lex_state = 5}, + [5932] = {.lex_state = 150, .external_lex_state = 2}, + [5933] = {.lex_state = 150, .external_lex_state = 2}, + [5934] = {.lex_state = 150, .external_lex_state = 5}, + [5935] = {.lex_state = 150, .external_lex_state = 2}, + [5936] = {.lex_state = 150, .external_lex_state = 5}, + [5937] = {.lex_state = 150, .external_lex_state = 5}, + [5938] = {.lex_state = 150, .external_lex_state = 5}, + [5939] = {.lex_state = 150, .external_lex_state = 2}, + [5940] = {.lex_state = 150, .external_lex_state = 5}, + [5941] = {.lex_state = 150, .external_lex_state = 5}, + [5942] = {.lex_state = 150, .external_lex_state = 5}, + [5943] = {.lex_state = 150, .external_lex_state = 2}, + [5944] = {.lex_state = 150, .external_lex_state = 2}, + [5945] = {.lex_state = 150, .external_lex_state = 2}, + [5946] = {.lex_state = 150, .external_lex_state = 5}, + [5947] = {.lex_state = 150, .external_lex_state = 2}, + [5948] = {.lex_state = 150, .external_lex_state = 2}, + [5949] = {.lex_state = 150, .external_lex_state = 2}, + [5950] = {.lex_state = 150, .external_lex_state = 5}, + [5951] = {.lex_state = 150, .external_lex_state = 5}, + [5952] = {.lex_state = 150, .external_lex_state = 5}, + [5953] = {.lex_state = 150, .external_lex_state = 5}, + [5954] = {.lex_state = 150, .external_lex_state = 5}, + [5955] = {.lex_state = 150, .external_lex_state = 5}, + [5956] = {.lex_state = 150, .external_lex_state = 2}, + [5957] = {.lex_state = 150, .external_lex_state = 5}, + [5958] = {.lex_state = 150, .external_lex_state = 5}, + [5959] = {.lex_state = 150, .external_lex_state = 2}, + [5960] = {.lex_state = 150, .external_lex_state = 5}, + [5961] = {.lex_state = 150, .external_lex_state = 2}, + [5962] = {.lex_state = 150, .external_lex_state = 5}, + [5963] = {.lex_state = 150, .external_lex_state = 5}, + [5964] = {.lex_state = 150, .external_lex_state = 2}, + [5965] = {.lex_state = 150, .external_lex_state = 5}, + [5966] = {.lex_state = 150, .external_lex_state = 5}, + [5967] = {.lex_state = 150, .external_lex_state = 5}, + [5968] = {.lex_state = 150, .external_lex_state = 5}, + [5969] = {.lex_state = 150, .external_lex_state = 5}, + [5970] = {.lex_state = 150, .external_lex_state = 2}, + [5971] = {.lex_state = 150, .external_lex_state = 2}, + [5972] = {.lex_state = 150, .external_lex_state = 2}, + [5973] = {.lex_state = 150, .external_lex_state = 2}, + [5974] = {.lex_state = 150, .external_lex_state = 5}, + [5975] = {.lex_state = 150, .external_lex_state = 2}, + [5976] = {.lex_state = 150, .external_lex_state = 2}, + [5977] = {.lex_state = 150, .external_lex_state = 2}, + [5978] = {.lex_state = 150, .external_lex_state = 5}, + [5979] = {.lex_state = 150, .external_lex_state = 2}, + [5980] = {.lex_state = 150, .external_lex_state = 2}, + [5981] = {.lex_state = 150, .external_lex_state = 5}, + [5982] = {.lex_state = 150, .external_lex_state = 5}, + [5983] = {.lex_state = 150, .external_lex_state = 5}, + [5984] = {.lex_state = 150, .external_lex_state = 5}, + [5985] = {.lex_state = 150, .external_lex_state = 5}, + [5986] = {.lex_state = 150, .external_lex_state = 5}, + [5987] = {.lex_state = 150, .external_lex_state = 5}, + [5988] = {.lex_state = 150, .external_lex_state = 2}, + [5989] = {.lex_state = 150, .external_lex_state = 2}, + [5990] = {.lex_state = 150, .external_lex_state = 5}, + [5991] = {.lex_state = 150, .external_lex_state = 5}, + [5992] = {.lex_state = 150, .external_lex_state = 2}, + [5993] = {.lex_state = 150, .external_lex_state = 5}, + [5994] = {.lex_state = 150, .external_lex_state = 2}, + [5995] = {.lex_state = 150, .external_lex_state = 2}, + [5996] = {.lex_state = 150, .external_lex_state = 2}, + [5997] = {.lex_state = 150, .external_lex_state = 2}, + [5998] = {.lex_state = 150, .external_lex_state = 5}, + [5999] = {.lex_state = 150, .external_lex_state = 5}, + [6000] = {.lex_state = 150, .external_lex_state = 5}, + [6001] = {.lex_state = 150, .external_lex_state = 2}, + [6002] = {.lex_state = 150, .external_lex_state = 2}, + [6003] = {.lex_state = 150, .external_lex_state = 5}, + [6004] = {.lex_state = 150, .external_lex_state = 2}, + [6005] = {.lex_state = 150, .external_lex_state = 5}, + [6006] = {.lex_state = 150, .external_lex_state = 2}, + [6007] = {.lex_state = 150, .external_lex_state = 2}, + [6008] = {.lex_state = 150, .external_lex_state = 2}, + [6009] = {.lex_state = 150, .external_lex_state = 2}, + [6010] = {.lex_state = 150, .external_lex_state = 5}, + [6011] = {.lex_state = 150, .external_lex_state = 5}, + [6012] = {.lex_state = 150, .external_lex_state = 5}, + [6013] = {.lex_state = 150, .external_lex_state = 5}, + [6014] = {.lex_state = 150, .external_lex_state = 5}, + [6015] = {.lex_state = 150, .external_lex_state = 5}, + [6016] = {.lex_state = 150, .external_lex_state = 5}, + [6017] = {.lex_state = 150, .external_lex_state = 5}, + [6018] = {.lex_state = 150, .external_lex_state = 5}, + [6019] = {.lex_state = 150, .external_lex_state = 2}, + [6020] = {.lex_state = 150, .external_lex_state = 5}, + [6021] = {.lex_state = 150, .external_lex_state = 5}, + [6022] = {.lex_state = 150, .external_lex_state = 5}, + [6023] = {.lex_state = 150, .external_lex_state = 5}, + [6024] = {.lex_state = 150, .external_lex_state = 5}, + [6025] = {.lex_state = 150, .external_lex_state = 5}, + [6026] = {.lex_state = 150, .external_lex_state = 5}, + [6027] = {.lex_state = 150, .external_lex_state = 5}, + [6028] = {.lex_state = 150, .external_lex_state = 5}, + [6029] = {.lex_state = 150, .external_lex_state = 5}, + [6030] = {.lex_state = 150, .external_lex_state = 5}, + [6031] = {.lex_state = 150, .external_lex_state = 5}, + [6032] = {.lex_state = 150, .external_lex_state = 5}, + [6033] = {.lex_state = 150, .external_lex_state = 5}, + [6034] = {.lex_state = 150, .external_lex_state = 5}, + [6035] = {.lex_state = 150, .external_lex_state = 5}, + [6036] = {.lex_state = 150, .external_lex_state = 5}, + [6037] = {.lex_state = 150, .external_lex_state = 5}, + [6038] = {.lex_state = 150, .external_lex_state = 5}, + [6039] = {.lex_state = 150, .external_lex_state = 5}, + [6040] = {.lex_state = 150, .external_lex_state = 2}, + [6041] = {.lex_state = 150, .external_lex_state = 2}, + [6042] = {.lex_state = 150, .external_lex_state = 2}, + [6043] = {.lex_state = 150, .external_lex_state = 2}, + [6044] = {.lex_state = 150, .external_lex_state = 2}, + [6045] = {.lex_state = 150, .external_lex_state = 5}, + [6046] = {.lex_state = 150, .external_lex_state = 5}, + [6047] = {.lex_state = 150, .external_lex_state = 5}, + [6048] = {.lex_state = 150, .external_lex_state = 5}, + [6049] = {.lex_state = 150, .external_lex_state = 5}, + [6050] = {.lex_state = 150, .external_lex_state = 5}, + [6051] = {.lex_state = 150, .external_lex_state = 2}, + [6052] = {.lex_state = 150, .external_lex_state = 2}, + [6053] = {.lex_state = 150, .external_lex_state = 2}, + [6054] = {.lex_state = 150, .external_lex_state = 5}, + [6055] = {.lex_state = 150, .external_lex_state = 5}, + [6056] = {.lex_state = 150, .external_lex_state = 5}, + [6057] = {.lex_state = 150, .external_lex_state = 5}, + [6058] = {.lex_state = 150, .external_lex_state = 5}, + [6059] = {.lex_state = 150, .external_lex_state = 5}, + [6060] = {.lex_state = 150, .external_lex_state = 5}, + [6061] = {.lex_state = 150, .external_lex_state = 5}, + [6062] = {.lex_state = 150, .external_lex_state = 2}, + [6063] = {.lex_state = 150, .external_lex_state = 2}, + [6064] = {.lex_state = 150, .external_lex_state = 5}, + [6065] = {.lex_state = 150, .external_lex_state = 5}, + [6066] = {.lex_state = 150, .external_lex_state = 5}, + [6067] = {.lex_state = 150, .external_lex_state = 5}, + [6068] = {.lex_state = 150, .external_lex_state = 5}, + [6069] = {.lex_state = 150, .external_lex_state = 5}, + [6070] = {.lex_state = 150, .external_lex_state = 2}, + [6071] = {.lex_state = 150, .external_lex_state = 5}, + [6072] = {.lex_state = 150, .external_lex_state = 2}, + [6073] = {.lex_state = 150, .external_lex_state = 5}, + [6074] = {.lex_state = 150, .external_lex_state = 5}, + [6075] = {.lex_state = 150, .external_lex_state = 5}, + [6076] = {.lex_state = 150, .external_lex_state = 5}, + [6077] = {.lex_state = 150, .external_lex_state = 2}, + [6078] = {.lex_state = 150, .external_lex_state = 2}, + [6079] = {.lex_state = 150, .external_lex_state = 2}, + [6080] = {.lex_state = 150, .external_lex_state = 5}, + [6081] = {.lex_state = 150, .external_lex_state = 2}, + [6082] = {.lex_state = 150, .external_lex_state = 2}, + [6083] = {.lex_state = 150, .external_lex_state = 5}, + [6084] = {.lex_state = 150, .external_lex_state = 2}, + [6085] = {.lex_state = 150, .external_lex_state = 5}, + [6086] = {.lex_state = 150, .external_lex_state = 5}, + [6087] = {.lex_state = 150, .external_lex_state = 5}, + [6088] = {.lex_state = 150, .external_lex_state = 2}, + [6089] = {.lex_state = 150, .external_lex_state = 5}, + [6090] = {.lex_state = 150, .external_lex_state = 5}, + [6091] = {.lex_state = 150, .external_lex_state = 2}, + [6092] = {.lex_state = 150, .external_lex_state = 5}, + [6093] = {.lex_state = 150, .external_lex_state = 2}, + [6094] = {.lex_state = 150, .external_lex_state = 5}, + [6095] = {.lex_state = 150, .external_lex_state = 2}, + [6096] = {.lex_state = 2, .external_lex_state = 2}, + [6097] = {.lex_state = 150, .external_lex_state = 5}, + [6098] = {.lex_state = 150, .external_lex_state = 5}, + [6099] = {.lex_state = 150, .external_lex_state = 5}, + [6100] = {.lex_state = 5, .external_lex_state = 2}, + [6101] = {.lex_state = 150, .external_lex_state = 2}, + [6102] = {.lex_state = 150, .external_lex_state = 5}, + [6103] = {.lex_state = 150, .external_lex_state = 2}, + [6104] = {.lex_state = 150, .external_lex_state = 2}, + [6105] = {.lex_state = 150, .external_lex_state = 2}, + [6106] = {.lex_state = 150, .external_lex_state = 2}, + [6107] = {.lex_state = 150, .external_lex_state = 2}, + [6108] = {.lex_state = 150, .external_lex_state = 2}, + [6109] = {.lex_state = 150, .external_lex_state = 2}, + [6110] = {.lex_state = 150, .external_lex_state = 2}, + [6111] = {.lex_state = 150, .external_lex_state = 2}, + [6112] = {.lex_state = 150, .external_lex_state = 2}, + [6113] = {.lex_state = 150, .external_lex_state = 2}, + [6114] = {.lex_state = 150, .external_lex_state = 2}, + [6115] = {.lex_state = 150, .external_lex_state = 2}, + [6116] = {.lex_state = 150, .external_lex_state = 2}, + [6117] = {.lex_state = 150, .external_lex_state = 2}, + [6118] = {.lex_state = 150, .external_lex_state = 2}, + [6119] = {.lex_state = 150, .external_lex_state = 2}, + [6120] = {.lex_state = 150, .external_lex_state = 2}, + [6121] = {.lex_state = 150, .external_lex_state = 2}, + [6122] = {.lex_state = 16, .external_lex_state = 2}, + [6123] = {.lex_state = 150, .external_lex_state = 2}, + [6124] = {.lex_state = 150, .external_lex_state = 2}, + [6125] = {.lex_state = 150, .external_lex_state = 2}, + [6126] = {.lex_state = 150, .external_lex_state = 2}, + [6127] = {.lex_state = 150, .external_lex_state = 2}, + [6128] = {.lex_state = 150, .external_lex_state = 2}, + [6129] = {.lex_state = 150, .external_lex_state = 2}, + [6130] = {.lex_state = 150, .external_lex_state = 2}, + [6131] = {.lex_state = 150, .external_lex_state = 2}, + [6132] = {.lex_state = 150, .external_lex_state = 2}, + [6133] = {.lex_state = 150, .external_lex_state = 2}, + [6134] = {.lex_state = 150, .external_lex_state = 2}, + [6135] = {.lex_state = 150, .external_lex_state = 2}, + [6136] = {.lex_state = 150, .external_lex_state = 2}, + [6137] = {.lex_state = 150, .external_lex_state = 2}, + [6138] = {.lex_state = 150, .external_lex_state = 2}, + [6139] = {.lex_state = 150, .external_lex_state = 2}, + [6140] = {.lex_state = 150, .external_lex_state = 2}, + [6141] = {.lex_state = 150, .external_lex_state = 2}, + [6142] = {.lex_state = 150, .external_lex_state = 2}, + [6143] = {.lex_state = 150, .external_lex_state = 2}, + [6144] = {.lex_state = 150, .external_lex_state = 2}, + [6145] = {.lex_state = 150, .external_lex_state = 2}, + [6146] = {.lex_state = 150, .external_lex_state = 2}, + [6147] = {.lex_state = 150, .external_lex_state = 2}, + [6148] = {.lex_state = 150, .external_lex_state = 2}, + [6149] = {.lex_state = 150, .external_lex_state = 2}, + [6150] = {.lex_state = 150, .external_lex_state = 5}, + [6151] = {.lex_state = 150, .external_lex_state = 5}, + [6152] = {.lex_state = 150, .external_lex_state = 2}, + [6153] = {.lex_state = 150, .external_lex_state = 2}, + [6154] = {.lex_state = 150, .external_lex_state = 2}, + [6155] = {.lex_state = 150, .external_lex_state = 2}, + [6156] = {.lex_state = 150, .external_lex_state = 2}, + [6157] = {.lex_state = 150, .external_lex_state = 2}, + [6158] = {.lex_state = 150, .external_lex_state = 2}, + [6159] = {.lex_state = 150, .external_lex_state = 2}, + [6160] = {.lex_state = 150, .external_lex_state = 2}, + [6161] = {.lex_state = 150, .external_lex_state = 2}, + [6162] = {.lex_state = 150, .external_lex_state = 2}, + [6163] = {.lex_state = 150, .external_lex_state = 5}, + [6164] = {.lex_state = 150, .external_lex_state = 5}, + [6165] = {.lex_state = 150, .external_lex_state = 2}, + [6166] = {.lex_state = 150, .external_lex_state = 2}, + [6167] = {.lex_state = 150, .external_lex_state = 2}, + [6168] = {.lex_state = 150, .external_lex_state = 2}, + [6169] = {.lex_state = 150, .external_lex_state = 2}, + [6170] = {.lex_state = 150, .external_lex_state = 2}, + [6171] = {.lex_state = 150, .external_lex_state = 2}, + [6172] = {.lex_state = 150, .external_lex_state = 2}, + [6173] = {.lex_state = 150, .external_lex_state = 2}, + [6174] = {.lex_state = 150, .external_lex_state = 2}, + [6175] = {.lex_state = 150, .external_lex_state = 2}, + [6176] = {.lex_state = 150, .external_lex_state = 2}, + [6177] = {.lex_state = 150, .external_lex_state = 2}, + [6178] = {.lex_state = 150, .external_lex_state = 2}, + [6179] = {.lex_state = 150, .external_lex_state = 2}, + [6180] = {.lex_state = 150, .external_lex_state = 2}, + [6181] = {.lex_state = 150, .external_lex_state = 2}, + [6182] = {.lex_state = 150, .external_lex_state = 2}, + [6183] = {.lex_state = 150, .external_lex_state = 2}, + [6184] = {.lex_state = 150, .external_lex_state = 2}, + [6185] = {.lex_state = 150, .external_lex_state = 2}, + [6186] = {.lex_state = 150, .external_lex_state = 2}, + [6187] = {.lex_state = 150, .external_lex_state = 2}, + [6188] = {.lex_state = 150, .external_lex_state = 2}, + [6189] = {.lex_state = 150, .external_lex_state = 2}, + [6190] = {.lex_state = 150, .external_lex_state = 2}, + [6191] = {.lex_state = 150, .external_lex_state = 2}, + [6192] = {.lex_state = 150, .external_lex_state = 5}, + [6193] = {.lex_state = 150, .external_lex_state = 2}, + [6194] = {.lex_state = 150, .external_lex_state = 2}, + [6195] = {.lex_state = 150, .external_lex_state = 2}, + [6196] = {.lex_state = 150, .external_lex_state = 5}, + [6197] = {.lex_state = 150, .external_lex_state = 2}, + [6198] = {.lex_state = 150, .external_lex_state = 2}, + [6199] = {.lex_state = 150, .external_lex_state = 2}, + [6200] = {.lex_state = 150, .external_lex_state = 2}, + [6201] = {.lex_state = 150, .external_lex_state = 2}, + [6202] = {.lex_state = 150, .external_lex_state = 2}, + [6203] = {.lex_state = 150, .external_lex_state = 2}, + [6204] = {.lex_state = 150, .external_lex_state = 2}, + [6205] = {.lex_state = 150, .external_lex_state = 2}, + [6206] = {.lex_state = 150, .external_lex_state = 2}, + [6207] = {.lex_state = 150, .external_lex_state = 2}, + [6208] = {.lex_state = 150, .external_lex_state = 2}, + [6209] = {.lex_state = 150, .external_lex_state = 2}, + [6210] = {.lex_state = 150, .external_lex_state = 2}, + [6211] = {.lex_state = 150, .external_lex_state = 5}, + [6212] = {.lex_state = 150, .external_lex_state = 5}, + [6213] = {.lex_state = 150, .external_lex_state = 2}, + [6214] = {.lex_state = 150, .external_lex_state = 2}, + [6215] = {.lex_state = 150, .external_lex_state = 2}, + [6216] = {.lex_state = 150, .external_lex_state = 5}, + [6217] = {.lex_state = 150, .external_lex_state = 2}, + [6218] = {.lex_state = 150, .external_lex_state = 2}, + [6219] = {.lex_state = 150, .external_lex_state = 2}, + [6220] = {.lex_state = 150, .external_lex_state = 5}, + [6221] = {.lex_state = 150, .external_lex_state = 2}, + [6222] = {.lex_state = 150, .external_lex_state = 5}, + [6223] = {.lex_state = 150, .external_lex_state = 2}, + [6224] = {.lex_state = 150, .external_lex_state = 2}, + [6225] = {.lex_state = 150, .external_lex_state = 2}, + [6226] = {.lex_state = 150, .external_lex_state = 5}, + [6227] = {.lex_state = 150, .external_lex_state = 2}, + [6228] = {.lex_state = 150, .external_lex_state = 2}, + [6229] = {.lex_state = 150, .external_lex_state = 2}, + [6230] = {.lex_state = 150, .external_lex_state = 2}, + [6231] = {.lex_state = 150, .external_lex_state = 2}, + [6232] = {.lex_state = 150, .external_lex_state = 2}, + [6233] = {.lex_state = 150, .external_lex_state = 2}, + [6234] = {.lex_state = 150, .external_lex_state = 2}, + [6235] = {.lex_state = 150, .external_lex_state = 2}, + [6236] = {.lex_state = 150, .external_lex_state = 5}, + [6237] = {.lex_state = 150, .external_lex_state = 2}, + [6238] = {.lex_state = 150, .external_lex_state = 2}, + [6239] = {.lex_state = 150, .external_lex_state = 2}, + [6240] = {.lex_state = 150, .external_lex_state = 2}, + [6241] = {.lex_state = 150, .external_lex_state = 2}, + [6242] = {.lex_state = 150, .external_lex_state = 2}, + [6243] = {.lex_state = 150, .external_lex_state = 2}, + [6244] = {.lex_state = 150, .external_lex_state = 2}, + [6245] = {.lex_state = 150, .external_lex_state = 2}, + [6246] = {.lex_state = 150, .external_lex_state = 5}, + [6247] = {.lex_state = 150, .external_lex_state = 2}, + [6248] = {.lex_state = 150, .external_lex_state = 2}, + [6249] = {.lex_state = 150, .external_lex_state = 2}, + [6250] = {.lex_state = 150, .external_lex_state = 2}, + [6251] = {.lex_state = 150, .external_lex_state = 2}, + [6252] = {.lex_state = 150, .external_lex_state = 2}, + [6253] = {.lex_state = 150, .external_lex_state = 2}, + [6254] = {.lex_state = 150, .external_lex_state = 2}, + [6255] = {.lex_state = 150, .external_lex_state = 2}, + [6256] = {.lex_state = 150, .external_lex_state = 2}, + [6257] = {.lex_state = 150, .external_lex_state = 2}, + [6258] = {.lex_state = 150, .external_lex_state = 2}, + [6259] = {.lex_state = 150, .external_lex_state = 2}, + [6260] = {.lex_state = 150, .external_lex_state = 2}, + [6261] = {.lex_state = 150, .external_lex_state = 2}, + [6262] = {.lex_state = 150, .external_lex_state = 2}, + [6263] = {.lex_state = 150, .external_lex_state = 2}, + [6264] = {.lex_state = 150, .external_lex_state = 2}, + [6265] = {.lex_state = 150, .external_lex_state = 2}, + [6266] = {.lex_state = 150, .external_lex_state = 2}, + [6267] = {.lex_state = 150, .external_lex_state = 2}, + [6268] = {.lex_state = 150, .external_lex_state = 2}, + [6269] = {.lex_state = 150, .external_lex_state = 2}, + [6270] = {.lex_state = 150, .external_lex_state = 2}, + [6271] = {.lex_state = 150, .external_lex_state = 2}, + [6272] = {.lex_state = 150, .external_lex_state = 2}, + [6273] = {.lex_state = 150, .external_lex_state = 2}, + [6274] = {.lex_state = 150, .external_lex_state = 2}, + [6275] = {.lex_state = 150, .external_lex_state = 2}, + [6276] = {.lex_state = 150, .external_lex_state = 2}, + [6277] = {.lex_state = 150, .external_lex_state = 2}, + [6278] = {.lex_state = 150, .external_lex_state = 2}, + [6279] = {.lex_state = 150, .external_lex_state = 2}, + [6280] = {.lex_state = 150, .external_lex_state = 2}, + [6281] = {.lex_state = 150, .external_lex_state = 2}, + [6282] = {.lex_state = 150, .external_lex_state = 2}, + [6283] = {.lex_state = 150, .external_lex_state = 2}, + [6284] = {.lex_state = 150, .external_lex_state = 2}, + [6285] = {.lex_state = 150, .external_lex_state = 2}, + [6286] = {.lex_state = 150, .external_lex_state = 2}, + [6287] = {.lex_state = 150, .external_lex_state = 2}, + [6288] = {.lex_state = 150, .external_lex_state = 2}, + [6289] = {.lex_state = 150, .external_lex_state = 2}, + [6290] = {.lex_state = 150, .external_lex_state = 2}, + [6291] = {.lex_state = 150, .external_lex_state = 2}, + [6292] = {.lex_state = 150, .external_lex_state = 2}, + [6293] = {.lex_state = 150, .external_lex_state = 2}, + [6294] = {.lex_state = 150, .external_lex_state = 2}, + [6295] = {.lex_state = 150, .external_lex_state = 2}, + [6296] = {.lex_state = 150, .external_lex_state = 2}, + [6297] = {.lex_state = 150, .external_lex_state = 2}, + [6298] = {.lex_state = 150, .external_lex_state = 2}, + [6299] = {.lex_state = 150, .external_lex_state = 2}, + [6300] = {.lex_state = 150, .external_lex_state = 2}, + [6301] = {.lex_state = 150, .external_lex_state = 2}, + [6302] = {.lex_state = 150, .external_lex_state = 2}, + [6303] = {.lex_state = 150, .external_lex_state = 2}, + [6304] = {.lex_state = 150, .external_lex_state = 2}, + [6305] = {.lex_state = 150, .external_lex_state = 2}, + [6306] = {.lex_state = 150, .external_lex_state = 2}, + [6307] = {.lex_state = 150, .external_lex_state = 2}, + [6308] = {.lex_state = 150, .external_lex_state = 2}, + [6309] = {.lex_state = 150, .external_lex_state = 2}, + [6310] = {.lex_state = 150, .external_lex_state = 2}, + [6311] = {.lex_state = 150, .external_lex_state = 2}, + [6312] = {.lex_state = 150, .external_lex_state = 2}, + [6313] = {.lex_state = 150, .external_lex_state = 2}, + [6314] = {.lex_state = 150, .external_lex_state = 2}, + [6315] = {.lex_state = 150, .external_lex_state = 2}, + [6316] = {.lex_state = 150, .external_lex_state = 2}, + [6317] = {.lex_state = 150, .external_lex_state = 2}, + [6318] = {.lex_state = 150, .external_lex_state = 2}, + [6319] = {.lex_state = 150, .external_lex_state = 2}, + [6320] = {.lex_state = 150, .external_lex_state = 2}, + [6321] = {.lex_state = 150, .external_lex_state = 2}, + [6322] = {.lex_state = 150, .external_lex_state = 2}, + [6323] = {.lex_state = 150, .external_lex_state = 2}, + [6324] = {.lex_state = 150, .external_lex_state = 2}, + [6325] = {.lex_state = 150, .external_lex_state = 5}, + [6326] = {.lex_state = 150, .external_lex_state = 2}, + [6327] = {.lex_state = 150, .external_lex_state = 5}, + [6328] = {.lex_state = 150, .external_lex_state = 5}, + [6329] = {.lex_state = 150, .external_lex_state = 2}, + [6330] = {.lex_state = 150, .external_lex_state = 2}, + [6331] = {.lex_state = 150, .external_lex_state = 2}, + [6332] = {.lex_state = 150, .external_lex_state = 2}, + [6333] = {.lex_state = 150, .external_lex_state = 2}, + [6334] = {.lex_state = 150, .external_lex_state = 2}, + [6335] = {.lex_state = 150, .external_lex_state = 2}, + [6336] = {.lex_state = 150, .external_lex_state = 2}, + [6337] = {.lex_state = 150, .external_lex_state = 5}, + [6338] = {.lex_state = 150, .external_lex_state = 5}, + [6339] = {.lex_state = 150, .external_lex_state = 5}, + [6340] = {.lex_state = 150, .external_lex_state = 2}, + [6341] = {.lex_state = 150, .external_lex_state = 2}, + [6342] = {.lex_state = 150, .external_lex_state = 2}, + [6343] = {.lex_state = 150, .external_lex_state = 2}, + [6344] = {.lex_state = 150, .external_lex_state = 2}, + [6345] = {.lex_state = 150, .external_lex_state = 5}, + [6346] = {.lex_state = 150, .external_lex_state = 2}, + [6347] = {.lex_state = 150, .external_lex_state = 2}, + [6348] = {.lex_state = 150, .external_lex_state = 2}, + [6349] = {.lex_state = 150, .external_lex_state = 2}, + [6350] = {.lex_state = 150, .external_lex_state = 2}, + [6351] = {.lex_state = 150, .external_lex_state = 2}, + [6352] = {.lex_state = 150, .external_lex_state = 2}, + [6353] = {.lex_state = 150, .external_lex_state = 5}, + [6354] = {.lex_state = 150, .external_lex_state = 5}, + [6355] = {.lex_state = 150, .external_lex_state = 2}, + [6356] = {.lex_state = 150, .external_lex_state = 2}, + [6357] = {.lex_state = 150, .external_lex_state = 2}, + [6358] = {.lex_state = 150, .external_lex_state = 2}, + [6359] = {.lex_state = 150, .external_lex_state = 2}, + [6360] = {.lex_state = 150, .external_lex_state = 2}, + [6361] = {.lex_state = 150, .external_lex_state = 2}, + [6362] = {.lex_state = 150, .external_lex_state = 2}, + [6363] = {.lex_state = 150, .external_lex_state = 2}, + [6364] = {.lex_state = 150, .external_lex_state = 2}, + [6365] = {.lex_state = 150, .external_lex_state = 2}, + [6366] = {.lex_state = 150, .external_lex_state = 2}, + [6367] = {.lex_state = 150, .external_lex_state = 2}, + [6368] = {.lex_state = 150, .external_lex_state = 2}, + [6369] = {.lex_state = 150, .external_lex_state = 2}, + [6370] = {.lex_state = 150, .external_lex_state = 2}, + [6371] = {.lex_state = 150, .external_lex_state = 2}, + [6372] = {.lex_state = 150, .external_lex_state = 2}, + [6373] = {.lex_state = 150, .external_lex_state = 2}, + [6374] = {.lex_state = 150, .external_lex_state = 2}, + [6375] = {.lex_state = 150, .external_lex_state = 2}, + [6376] = {.lex_state = 150, .external_lex_state = 2}, + [6377] = {.lex_state = 150, .external_lex_state = 2}, + [6378] = {.lex_state = 150, .external_lex_state = 2}, + [6379] = {.lex_state = 150, .external_lex_state = 2}, + [6380] = {.lex_state = 150, .external_lex_state = 2}, + [6381] = {.lex_state = 150, .external_lex_state = 2}, + [6382] = {.lex_state = 150, .external_lex_state = 2}, + [6383] = {.lex_state = 150, .external_lex_state = 2}, + [6384] = {.lex_state = 150, .external_lex_state = 2}, + [6385] = {.lex_state = 150, .external_lex_state = 2}, + [6386] = {.lex_state = 150, .external_lex_state = 2}, + [6387] = {.lex_state = 150, .external_lex_state = 2}, + [6388] = {.lex_state = 150, .external_lex_state = 2}, + [6389] = {.lex_state = 150, .external_lex_state = 2}, + [6390] = {.lex_state = 150, .external_lex_state = 2}, + [6391] = {.lex_state = 150, .external_lex_state = 2}, + [6392] = {.lex_state = 150, .external_lex_state = 2}, + [6393] = {.lex_state = 150, .external_lex_state = 2}, + [6394] = {.lex_state = 150, .external_lex_state = 2}, + [6395] = {.lex_state = 150, .external_lex_state = 2}, + [6396] = {.lex_state = 150, .external_lex_state = 2}, + [6397] = {.lex_state = 150, .external_lex_state = 2}, + [6398] = {.lex_state = 150, .external_lex_state = 2}, + [6399] = {.lex_state = 150, .external_lex_state = 2}, + [6400] = {.lex_state = 150, .external_lex_state = 2}, + [6401] = {.lex_state = 150, .external_lex_state = 2}, + [6402] = {.lex_state = 150, .external_lex_state = 2}, + [6403] = {.lex_state = 150, .external_lex_state = 2}, + [6404] = {.lex_state = 150, .external_lex_state = 2}, + [6405] = {.lex_state = 150, .external_lex_state = 2}, + [6406] = {.lex_state = 150, .external_lex_state = 2}, + [6407] = {.lex_state = 150, .external_lex_state = 2}, + [6408] = {.lex_state = 150, .external_lex_state = 2}, + [6409] = {.lex_state = 150, .external_lex_state = 2}, + [6410] = {.lex_state = 150, .external_lex_state = 2}, + [6411] = {.lex_state = 150, .external_lex_state = 2}, + [6412] = {.lex_state = 150, .external_lex_state = 2}, + [6413] = {.lex_state = 150, .external_lex_state = 2}, + [6414] = {.lex_state = 150, .external_lex_state = 2}, + [6415] = {.lex_state = 150, .external_lex_state = 2}, + [6416] = {.lex_state = 150, .external_lex_state = 2}, + [6417] = {.lex_state = 150, .external_lex_state = 2}, + [6418] = {.lex_state = 150, .external_lex_state = 2}, + [6419] = {.lex_state = 150, .external_lex_state = 2}, + [6420] = {.lex_state = 150, .external_lex_state = 2}, + [6421] = {.lex_state = 150, .external_lex_state = 2}, + [6422] = {.lex_state = 150, .external_lex_state = 2}, + [6423] = {.lex_state = 150, .external_lex_state = 2}, + [6424] = {.lex_state = 150, .external_lex_state = 2}, + [6425] = {.lex_state = 150, .external_lex_state = 2}, + [6426] = {.lex_state = 150, .external_lex_state = 2}, + [6427] = {.lex_state = 150, .external_lex_state = 2}, + [6428] = {.lex_state = 150, .external_lex_state = 2}, + [6429] = {.lex_state = 150, .external_lex_state = 2}, + [6430] = {.lex_state = 150, .external_lex_state = 2}, + [6431] = {.lex_state = 150, .external_lex_state = 2}, + [6432] = {.lex_state = 150, .external_lex_state = 2}, + [6433] = {.lex_state = 150, .external_lex_state = 2}, + [6434] = {.lex_state = 150, .external_lex_state = 2}, + [6435] = {.lex_state = 150, .external_lex_state = 2}, + [6436] = {.lex_state = 150, .external_lex_state = 2}, + [6437] = {.lex_state = 150, .external_lex_state = 2}, + [6438] = {.lex_state = 150, .external_lex_state = 2}, + [6439] = {.lex_state = 150, .external_lex_state = 2}, + [6440] = {.lex_state = 150, .external_lex_state = 2}, + [6441] = {.lex_state = 150, .external_lex_state = 2}, + [6442] = {.lex_state = 150, .external_lex_state = 2}, + [6443] = {.lex_state = 150, .external_lex_state = 2}, + [6444] = {.lex_state = 150, .external_lex_state = 2}, + [6445] = {.lex_state = 150, .external_lex_state = 2}, + [6446] = {.lex_state = 150, .external_lex_state = 2}, + [6447] = {.lex_state = 150, .external_lex_state = 2}, + [6448] = {.lex_state = 150, .external_lex_state = 2}, + [6449] = {.lex_state = 150, .external_lex_state = 2}, + [6450] = {.lex_state = 150, .external_lex_state = 2}, + [6451] = {.lex_state = 150, .external_lex_state = 2}, + [6452] = {.lex_state = 150, .external_lex_state = 2}, + [6453] = {.lex_state = 150, .external_lex_state = 2}, + [6454] = {.lex_state = 150, .external_lex_state = 2}, + [6455] = {.lex_state = 150, .external_lex_state = 2}, + [6456] = {.lex_state = 150, .external_lex_state = 2}, + [6457] = {.lex_state = 150, .external_lex_state = 2}, + [6458] = {.lex_state = 150, .external_lex_state = 2}, + [6459] = {.lex_state = 150, .external_lex_state = 2}, + [6460] = {.lex_state = 150, .external_lex_state = 2}, + [6461] = {.lex_state = 150, .external_lex_state = 2}, + [6462] = {.lex_state = 150, .external_lex_state = 2}, + [6463] = {.lex_state = 150, .external_lex_state = 2}, + [6464] = {.lex_state = 150, .external_lex_state = 2}, + [6465] = {.lex_state = 150, .external_lex_state = 2}, + [6466] = {.lex_state = 150, .external_lex_state = 2}, + [6467] = {.lex_state = 150, .external_lex_state = 2}, + [6468] = {.lex_state = 150, .external_lex_state = 2}, + [6469] = {.lex_state = 150, .external_lex_state = 2}, + [6470] = {.lex_state = 150, .external_lex_state = 2}, + [6471] = {.lex_state = 150, .external_lex_state = 2}, + [6472] = {.lex_state = 150, .external_lex_state = 2}, + [6473] = {.lex_state = 150, .external_lex_state = 2}, + [6474] = {.lex_state = 150, .external_lex_state = 2}, + [6475] = {.lex_state = 150, .external_lex_state = 2}, + [6476] = {.lex_state = 150, .external_lex_state = 2}, + [6477] = {.lex_state = 150, .external_lex_state = 2}, + [6478] = {.lex_state = 150, .external_lex_state = 2}, + [6479] = {.lex_state = 150, .external_lex_state = 2}, + [6480] = {.lex_state = 150, .external_lex_state = 2}, + [6481] = {.lex_state = 150, .external_lex_state = 2}, + [6482] = {.lex_state = 150, .external_lex_state = 2}, + [6483] = {.lex_state = 150, .external_lex_state = 2}, + [6484] = {.lex_state = 150, .external_lex_state = 2}, + [6485] = {.lex_state = 150, .external_lex_state = 2}, + [6486] = {.lex_state = 150, .external_lex_state = 2}, + [6487] = {.lex_state = 150, .external_lex_state = 2}, + [6488] = {.lex_state = 150, .external_lex_state = 2}, + [6489] = {.lex_state = 150, .external_lex_state = 2}, + [6490] = {.lex_state = 150, .external_lex_state = 2}, + [6491] = {.lex_state = 150, .external_lex_state = 2}, + [6492] = {.lex_state = 150, .external_lex_state = 2}, + [6493] = {.lex_state = 150, .external_lex_state = 2}, + [6494] = {.lex_state = 150, .external_lex_state = 2}, + [6495] = {.lex_state = 150, .external_lex_state = 2}, + [6496] = {.lex_state = 150, .external_lex_state = 2}, + [6497] = {.lex_state = 150, .external_lex_state = 2}, + [6498] = {.lex_state = 150, .external_lex_state = 2}, + [6499] = {.lex_state = 150, .external_lex_state = 2}, + [6500] = {.lex_state = 150, .external_lex_state = 2}, + [6501] = {.lex_state = 150, .external_lex_state = 2}, + [6502] = {.lex_state = 150, .external_lex_state = 2}, + [6503] = {.lex_state = 150, .external_lex_state = 2}, + [6504] = {.lex_state = 150, .external_lex_state = 2}, + [6505] = {.lex_state = 150, .external_lex_state = 2}, + [6506] = {.lex_state = 150, .external_lex_state = 2}, + [6507] = {.lex_state = 150, .external_lex_state = 2}, + [6508] = {.lex_state = 150, .external_lex_state = 2}, + [6509] = {.lex_state = 150, .external_lex_state = 2}, + [6510] = {.lex_state = 150, .external_lex_state = 2}, + [6511] = {.lex_state = 150, .external_lex_state = 2}, + [6512] = {.lex_state = 150, .external_lex_state = 2}, + [6513] = {.lex_state = 150, .external_lex_state = 2}, + [6514] = {.lex_state = 150, .external_lex_state = 2}, + [6515] = {.lex_state = 150, .external_lex_state = 2}, + [6516] = {.lex_state = 150, .external_lex_state = 2}, + [6517] = {.lex_state = 150, .external_lex_state = 2}, + [6518] = {.lex_state = 150, .external_lex_state = 2}, + [6519] = {.lex_state = 150, .external_lex_state = 2}, + [6520] = {.lex_state = 150, .external_lex_state = 2}, + [6521] = {.lex_state = 150, .external_lex_state = 2}, + [6522] = {.lex_state = 150, .external_lex_state = 2}, + [6523] = {.lex_state = 150, .external_lex_state = 2}, + [6524] = {.lex_state = 150, .external_lex_state = 2}, + [6525] = {.lex_state = 150, .external_lex_state = 2}, + [6526] = {.lex_state = 150, .external_lex_state = 2}, + [6527] = {.lex_state = 150, .external_lex_state = 2}, + [6528] = {.lex_state = 150, .external_lex_state = 2}, + [6529] = {.lex_state = 150, .external_lex_state = 2}, + [6530] = {.lex_state = 150, .external_lex_state = 2}, + [6531] = {.lex_state = 150, .external_lex_state = 2}, + [6532] = {.lex_state = 150, .external_lex_state = 2}, + [6533] = {.lex_state = 150, .external_lex_state = 2}, + [6534] = {.lex_state = 150, .external_lex_state = 2}, + [6535] = {.lex_state = 150, .external_lex_state = 2}, + [6536] = {.lex_state = 150, .external_lex_state = 2}, + [6537] = {.lex_state = 150, .external_lex_state = 2}, + [6538] = {.lex_state = 150, .external_lex_state = 2}, + [6539] = {.lex_state = 150, .external_lex_state = 2}, + [6540] = {.lex_state = 150, .external_lex_state = 2}, + [6541] = {.lex_state = 150, .external_lex_state = 2}, + [6542] = {.lex_state = 150, .external_lex_state = 2}, + [6543] = {.lex_state = 150, .external_lex_state = 2}, + [6544] = {.lex_state = 150, .external_lex_state = 2}, + [6545] = {.lex_state = 150, .external_lex_state = 2}, + [6546] = {.lex_state = 150, .external_lex_state = 2}, + [6547] = {.lex_state = 150, .external_lex_state = 2}, + [6548] = {.lex_state = 150, .external_lex_state = 2}, + [6549] = {.lex_state = 150, .external_lex_state = 2}, + [6550] = {.lex_state = 150, .external_lex_state = 2}, + [6551] = {.lex_state = 150, .external_lex_state = 2}, + [6552] = {.lex_state = 150, .external_lex_state = 2}, + [6553] = {.lex_state = 150, .external_lex_state = 2}, + [6554] = {.lex_state = 150, .external_lex_state = 2}, + [6555] = {.lex_state = 150, .external_lex_state = 2}, + [6556] = {.lex_state = 150, .external_lex_state = 2}, + [6557] = {.lex_state = 150, .external_lex_state = 2}, + [6558] = {.lex_state = 150, .external_lex_state = 2}, + [6559] = {.lex_state = 150, .external_lex_state = 2}, + [6560] = {.lex_state = 150, .external_lex_state = 2}, + [6561] = {.lex_state = 150, .external_lex_state = 2}, + [6562] = {.lex_state = 150, .external_lex_state = 2}, + [6563] = {.lex_state = 150, .external_lex_state = 2}, + [6564] = {.lex_state = 150, .external_lex_state = 2}, + [6565] = {.lex_state = 150, .external_lex_state = 2}, + [6566] = {.lex_state = 150, .external_lex_state = 2}, + [6567] = {.lex_state = 150, .external_lex_state = 2}, + [6568] = {.lex_state = 150, .external_lex_state = 2}, + [6569] = {.lex_state = 150, .external_lex_state = 2}, + [6570] = {.lex_state = 150, .external_lex_state = 2}, + [6571] = {.lex_state = 150, .external_lex_state = 2}, + [6572] = {.lex_state = 150, .external_lex_state = 2}, + [6573] = {.lex_state = 150, .external_lex_state = 2}, + [6574] = {.lex_state = 150, .external_lex_state = 2}, + [6575] = {.lex_state = 150, .external_lex_state = 2}, + [6576] = {.lex_state = 150, .external_lex_state = 2}, + [6577] = {.lex_state = 150, .external_lex_state = 2}, + [6578] = {.lex_state = 150, .external_lex_state = 2}, + [6579] = {.lex_state = 150, .external_lex_state = 2}, + [6580] = {.lex_state = 150, .external_lex_state = 2}, + [6581] = {.lex_state = 150, .external_lex_state = 2}, + [6582] = {.lex_state = 150, .external_lex_state = 2}, + [6583] = {.lex_state = 150, .external_lex_state = 2}, + [6584] = {.lex_state = 150, .external_lex_state = 2}, + [6585] = {.lex_state = 150, .external_lex_state = 2}, + [6586] = {.lex_state = 150, .external_lex_state = 2}, + [6587] = {.lex_state = 150, .external_lex_state = 2}, + [6588] = {.lex_state = 150, .external_lex_state = 2}, + [6589] = {.lex_state = 150, .external_lex_state = 2}, + [6590] = {.lex_state = 150, .external_lex_state = 2}, + [6591] = {.lex_state = 150, .external_lex_state = 2}, + [6592] = {.lex_state = 150, .external_lex_state = 2}, + [6593] = {.lex_state = 150, .external_lex_state = 2}, + [6594] = {.lex_state = 150, .external_lex_state = 2}, + [6595] = {.lex_state = 150, .external_lex_state = 2}, + [6596] = {.lex_state = 150, .external_lex_state = 2}, + [6597] = {.lex_state = 150, .external_lex_state = 2}, + [6598] = {.lex_state = 150, .external_lex_state = 2}, + [6599] = {.lex_state = 150, .external_lex_state = 2}, + [6600] = {.lex_state = 150, .external_lex_state = 2}, + [6601] = {.lex_state = 150, .external_lex_state = 2}, + [6602] = {.lex_state = 150, .external_lex_state = 2}, + [6603] = {.lex_state = 150, .external_lex_state = 2}, + [6604] = {.lex_state = 150, .external_lex_state = 2}, + [6605] = {.lex_state = 150, .external_lex_state = 2}, + [6606] = {.lex_state = 150, .external_lex_state = 2}, + [6607] = {.lex_state = 150, .external_lex_state = 2}, + [6608] = {.lex_state = 150, .external_lex_state = 2}, + [6609] = {.lex_state = 150, .external_lex_state = 2}, + [6610] = {.lex_state = 150, .external_lex_state = 2}, + [6611] = {.lex_state = 150, .external_lex_state = 2}, + [6612] = {.lex_state = 150, .external_lex_state = 2}, + [6613] = {.lex_state = 150, .external_lex_state = 2}, + [6614] = {.lex_state = 150, .external_lex_state = 2}, + [6615] = {.lex_state = 150, .external_lex_state = 2}, + [6616] = {.lex_state = 150, .external_lex_state = 2}, + [6617] = {.lex_state = 150, .external_lex_state = 2}, + [6618] = {.lex_state = 150, .external_lex_state = 2}, + [6619] = {.lex_state = 150, .external_lex_state = 2}, + [6620] = {.lex_state = 150, .external_lex_state = 2}, + [6621] = {.lex_state = 150, .external_lex_state = 2}, + [6622] = {.lex_state = 150, .external_lex_state = 2}, + [6623] = {.lex_state = 150, .external_lex_state = 2}, + [6624] = {.lex_state = 150, .external_lex_state = 2}, + [6625] = {.lex_state = 150, .external_lex_state = 2}, + [6626] = {.lex_state = 150, .external_lex_state = 2}, + [6627] = {.lex_state = 150, .external_lex_state = 2}, + [6628] = {.lex_state = 150, .external_lex_state = 2}, + [6629] = {.lex_state = 150, .external_lex_state = 2}, + [6630] = {.lex_state = 150, .external_lex_state = 2}, + [6631] = {.lex_state = 150, .external_lex_state = 2}, + [6632] = {.lex_state = 150, .external_lex_state = 2}, + [6633] = {.lex_state = 150, .external_lex_state = 2}, + [6634] = {.lex_state = 150, .external_lex_state = 2}, + [6635] = {.lex_state = 150, .external_lex_state = 2}, + [6636] = {.lex_state = 150, .external_lex_state = 2}, + [6637] = {.lex_state = 150, .external_lex_state = 2}, + [6638] = {.lex_state = 150, .external_lex_state = 2}, + [6639] = {.lex_state = 150, .external_lex_state = 2}, + [6640] = {.lex_state = 150, .external_lex_state = 2}, + [6641] = {.lex_state = 150, .external_lex_state = 2}, + [6642] = {.lex_state = 150, .external_lex_state = 2}, + [6643] = {.lex_state = 150, .external_lex_state = 2}, + [6644] = {.lex_state = 150, .external_lex_state = 2}, + [6645] = {.lex_state = 150, .external_lex_state = 2}, + [6646] = {.lex_state = 150, .external_lex_state = 2}, + [6647] = {.lex_state = 150, .external_lex_state = 2}, + [6648] = {.lex_state = 150, .external_lex_state = 2}, + [6649] = {.lex_state = 150, .external_lex_state = 2}, + [6650] = {.lex_state = 150, .external_lex_state = 2}, + [6651] = {.lex_state = 150, .external_lex_state = 2}, + [6652] = {.lex_state = 150, .external_lex_state = 2}, + [6653] = {.lex_state = 150, .external_lex_state = 2}, + [6654] = {.lex_state = 150, .external_lex_state = 2}, + [6655] = {.lex_state = 150, .external_lex_state = 2}, + [6656] = {.lex_state = 150, .external_lex_state = 2}, + [6657] = {.lex_state = 150, .external_lex_state = 2}, + [6658] = {.lex_state = 150, .external_lex_state = 2}, + [6659] = {.lex_state = 150, .external_lex_state = 2}, + [6660] = {.lex_state = 150, .external_lex_state = 2}, + [6661] = {.lex_state = 150, .external_lex_state = 2}, + [6662] = {.lex_state = 150, .external_lex_state = 2}, + [6663] = {.lex_state = 150, .external_lex_state = 2}, + [6664] = {.lex_state = 150, .external_lex_state = 2}, + [6665] = {.lex_state = 150, .external_lex_state = 2}, + [6666] = {.lex_state = 150, .external_lex_state = 2}, + [6667] = {.lex_state = 150, .external_lex_state = 2}, + [6668] = {.lex_state = 150, .external_lex_state = 2}, + [6669] = {.lex_state = 150, .external_lex_state = 2}, + [6670] = {.lex_state = 150, .external_lex_state = 2}, + [6671] = {.lex_state = 150, .external_lex_state = 2}, + [6672] = {.lex_state = 150, .external_lex_state = 2}, + [6673] = {.lex_state = 150, .external_lex_state = 2}, + [6674] = {.lex_state = 150, .external_lex_state = 2}, + [6675] = {.lex_state = 150, .external_lex_state = 2}, + [6676] = {.lex_state = 150, .external_lex_state = 2}, + [6677] = {.lex_state = 150, .external_lex_state = 2}, + [6678] = {.lex_state = 150, .external_lex_state = 2}, + [6679] = {.lex_state = 150, .external_lex_state = 2}, + [6680] = {.lex_state = 150, .external_lex_state = 2}, + [6681] = {.lex_state = 150, .external_lex_state = 2}, + [6682] = {.lex_state = 150, .external_lex_state = 2}, + [6683] = {.lex_state = 150, .external_lex_state = 2}, + [6684] = {.lex_state = 150, .external_lex_state = 2}, + [6685] = {.lex_state = 150, .external_lex_state = 2}, + [6686] = {.lex_state = 150, .external_lex_state = 2}, + [6687] = {.lex_state = 150, .external_lex_state = 2}, + [6688] = {.lex_state = 150, .external_lex_state = 2}, + [6689] = {.lex_state = 150, .external_lex_state = 2}, + [6690] = {.lex_state = 150, .external_lex_state = 2}, + [6691] = {.lex_state = 150, .external_lex_state = 2}, + [6692] = {.lex_state = 150, .external_lex_state = 2}, + [6693] = {.lex_state = 150, .external_lex_state = 2}, + [6694] = {.lex_state = 150, .external_lex_state = 2}, + [6695] = {.lex_state = 150, .external_lex_state = 2}, + [6696] = {.lex_state = 150, .external_lex_state = 2}, + [6697] = {.lex_state = 150, .external_lex_state = 2}, + [6698] = {.lex_state = 150, .external_lex_state = 2}, + [6699] = {.lex_state = 150, .external_lex_state = 2}, + [6700] = {.lex_state = 150, .external_lex_state = 2}, + [6701] = {.lex_state = 150, .external_lex_state = 2}, + [6702] = {.lex_state = 150, .external_lex_state = 2}, + [6703] = {.lex_state = 150, .external_lex_state = 2}, + [6704] = {.lex_state = 150, .external_lex_state = 2}, + [6705] = {.lex_state = 150, .external_lex_state = 2}, + [6706] = {.lex_state = 150, .external_lex_state = 2}, + [6707] = {.lex_state = 150, .external_lex_state = 2}, + [6708] = {.lex_state = 150, .external_lex_state = 2}, + [6709] = {.lex_state = 150, .external_lex_state = 2}, + [6710] = {.lex_state = 150, .external_lex_state = 2}, + [6711] = {.lex_state = 150, .external_lex_state = 2}, + [6712] = {.lex_state = 150, .external_lex_state = 2}, + [6713] = {.lex_state = 150, .external_lex_state = 2}, + [6714] = {.lex_state = 150, .external_lex_state = 2}, + [6715] = {.lex_state = 150, .external_lex_state = 2}, + [6716] = {.lex_state = 150, .external_lex_state = 2}, + [6717] = {.lex_state = 150, .external_lex_state = 2}, + [6718] = {.lex_state = 150, .external_lex_state = 2}, + [6719] = {.lex_state = 150, .external_lex_state = 2}, + [6720] = {.lex_state = 150, .external_lex_state = 2}, + [6721] = {.lex_state = 150, .external_lex_state = 2}, + [6722] = {.lex_state = 150, .external_lex_state = 2}, + [6723] = {.lex_state = 150, .external_lex_state = 2}, + [6724] = {.lex_state = 150, .external_lex_state = 2}, + [6725] = {.lex_state = 150, .external_lex_state = 2}, + [6726] = {.lex_state = 150, .external_lex_state = 2}, + [6727] = {.lex_state = 150, .external_lex_state = 2}, + [6728] = {.lex_state = 150, .external_lex_state = 2}, + [6729] = {.lex_state = 150, .external_lex_state = 2}, + [6730] = {.lex_state = 150, .external_lex_state = 2}, + [6731] = {.lex_state = 150, .external_lex_state = 2}, + [6732] = {.lex_state = 150, .external_lex_state = 2}, + [6733] = {.lex_state = 150, .external_lex_state = 2}, + [6734] = {.lex_state = 150, .external_lex_state = 2}, + [6735] = {.lex_state = 150, .external_lex_state = 2}, + [6736] = {.lex_state = 150, .external_lex_state = 2}, + [6737] = {.lex_state = 150, .external_lex_state = 2}, + [6738] = {.lex_state = 150, .external_lex_state = 2}, + [6739] = {.lex_state = 150, .external_lex_state = 2}, + [6740] = {.lex_state = 150, .external_lex_state = 2}, + [6741] = {.lex_state = 150, .external_lex_state = 2}, + [6742] = {.lex_state = 150, .external_lex_state = 2}, + [6743] = {.lex_state = 150, .external_lex_state = 2}, + [6744] = {.lex_state = 150, .external_lex_state = 2}, + [6745] = {.lex_state = 150, .external_lex_state = 2}, + [6746] = {.lex_state = 150, .external_lex_state = 2}, + [6747] = {.lex_state = 150, .external_lex_state = 2}, + [6748] = {.lex_state = 150, .external_lex_state = 2}, + [6749] = {.lex_state = 150, .external_lex_state = 2}, + [6750] = {.lex_state = 150, .external_lex_state = 2}, + [6751] = {.lex_state = 150, .external_lex_state = 2}, + [6752] = {.lex_state = 150, .external_lex_state = 2}, + [6753] = {.lex_state = 150, .external_lex_state = 2}, + [6754] = {.lex_state = 150, .external_lex_state = 2}, + [6755] = {.lex_state = 150, .external_lex_state = 2}, + [6756] = {.lex_state = 150, .external_lex_state = 2}, + [6757] = {.lex_state = 150, .external_lex_state = 2}, + [6758] = {.lex_state = 150, .external_lex_state = 2}, + [6759] = {.lex_state = 150, .external_lex_state = 2}, + [6760] = {.lex_state = 150, .external_lex_state = 2}, + [6761] = {.lex_state = 150, .external_lex_state = 2}, + [6762] = {.lex_state = 150, .external_lex_state = 2}, + [6763] = {.lex_state = 150, .external_lex_state = 2}, + [6764] = {.lex_state = 150, .external_lex_state = 2}, + [6765] = {.lex_state = 150, .external_lex_state = 2}, + [6766] = {.lex_state = 150, .external_lex_state = 2}, + [6767] = {.lex_state = 150, .external_lex_state = 2}, + [6768] = {.lex_state = 150, .external_lex_state = 2}, + [6769] = {.lex_state = 150, .external_lex_state = 2}, + [6770] = {.lex_state = 150, .external_lex_state = 2}, + [6771] = {.lex_state = 150, .external_lex_state = 2}, + [6772] = {.lex_state = 150, .external_lex_state = 2}, + [6773] = {.lex_state = 150, .external_lex_state = 2}, + [6774] = {.lex_state = 150, .external_lex_state = 2}, + [6775] = {.lex_state = 150, .external_lex_state = 2}, + [6776] = {.lex_state = 150, .external_lex_state = 2}, + [6777] = {.lex_state = 150, .external_lex_state = 2}, + [6778] = {.lex_state = 150, .external_lex_state = 2}, + [6779] = {.lex_state = 150, .external_lex_state = 2}, + [6780] = {.lex_state = 150, .external_lex_state = 2}, + [6781] = {.lex_state = 150, .external_lex_state = 2}, + [6782] = {.lex_state = 150, .external_lex_state = 2}, + [6783] = {.lex_state = 150, .external_lex_state = 2}, + [6784] = {.lex_state = 150, .external_lex_state = 2}, + [6785] = {.lex_state = 150, .external_lex_state = 2}, + [6786] = {.lex_state = 150, .external_lex_state = 2}, + [6787] = {.lex_state = 150, .external_lex_state = 2}, + [6788] = {.lex_state = 150, .external_lex_state = 2}, + [6789] = {.lex_state = 150, .external_lex_state = 2}, + [6790] = {.lex_state = 150, .external_lex_state = 2}, + [6791] = {.lex_state = 150, .external_lex_state = 2}, + [6792] = {.lex_state = 150, .external_lex_state = 2}, + [6793] = {.lex_state = 150, .external_lex_state = 2}, + [6794] = {.lex_state = 150, .external_lex_state = 2}, + [6795] = {.lex_state = 150, .external_lex_state = 2}, + [6796] = {.lex_state = 150, .external_lex_state = 2}, + [6797] = {.lex_state = 150, .external_lex_state = 2}, + [6798] = {.lex_state = 150, .external_lex_state = 2}, + [6799] = {.lex_state = 150, .external_lex_state = 2}, + [6800] = {.lex_state = 150, .external_lex_state = 2}, + [6801] = {.lex_state = 150, .external_lex_state = 2}, + [6802] = {.lex_state = 150, .external_lex_state = 2}, + [6803] = {.lex_state = 150, .external_lex_state = 2}, + [6804] = {.lex_state = 150, .external_lex_state = 2}, + [6805] = {.lex_state = 150, .external_lex_state = 2}, + [6806] = {.lex_state = 150, .external_lex_state = 2}, + [6807] = {.lex_state = 150, .external_lex_state = 2}, + [6808] = {.lex_state = 150, .external_lex_state = 2}, + [6809] = {.lex_state = 150, .external_lex_state = 2}, + [6810] = {.lex_state = 150, .external_lex_state = 2}, + [6811] = {.lex_state = 150, .external_lex_state = 2}, + [6812] = {.lex_state = 150, .external_lex_state = 2}, + [6813] = {.lex_state = 150, .external_lex_state = 2}, + [6814] = {.lex_state = 150, .external_lex_state = 2}, + [6815] = {.lex_state = 150, .external_lex_state = 2}, + [6816] = {.lex_state = 150, .external_lex_state = 2}, + [6817] = {.lex_state = 150, .external_lex_state = 2}, + [6818] = {.lex_state = 150, .external_lex_state = 2}, + [6819] = {.lex_state = 150, .external_lex_state = 2}, + [6820] = {.lex_state = 150, .external_lex_state = 2}, + [6821] = {.lex_state = 150, .external_lex_state = 2}, + [6822] = {.lex_state = 150, .external_lex_state = 2}, + [6823] = {.lex_state = 150, .external_lex_state = 2}, + [6824] = {.lex_state = 150, .external_lex_state = 2}, + [6825] = {.lex_state = 150, .external_lex_state = 2}, + [6826] = {.lex_state = 150, .external_lex_state = 2}, + [6827] = {.lex_state = 150, .external_lex_state = 2}, + [6828] = {.lex_state = 150, .external_lex_state = 2}, + [6829] = {.lex_state = 150, .external_lex_state = 2}, + [6830] = {.lex_state = 150, .external_lex_state = 2}, + [6831] = {.lex_state = 150, .external_lex_state = 2}, + [6832] = {.lex_state = 150, .external_lex_state = 2}, + [6833] = {.lex_state = 150, .external_lex_state = 2}, + [6834] = {.lex_state = 150, .external_lex_state = 2}, + [6835] = {.lex_state = 150, .external_lex_state = 2}, + [6836] = {.lex_state = 150, .external_lex_state = 2}, + [6837] = {.lex_state = 150, .external_lex_state = 2}, + [6838] = {.lex_state = 150, .external_lex_state = 2}, + [6839] = {.lex_state = 150, .external_lex_state = 2}, + [6840] = {.lex_state = 150, .external_lex_state = 2}, + [6841] = {.lex_state = 150, .external_lex_state = 2}, + [6842] = {.lex_state = 150, .external_lex_state = 2}, + [6843] = {.lex_state = 150, .external_lex_state = 2}, + [6844] = {.lex_state = 150, .external_lex_state = 2}, + [6845] = {.lex_state = 150, .external_lex_state = 2}, + [6846] = {.lex_state = 150, .external_lex_state = 2}, + [6847] = {.lex_state = 150, .external_lex_state = 2}, + [6848] = {.lex_state = 150, .external_lex_state = 2}, + [6849] = {.lex_state = 150, .external_lex_state = 2}, + [6850] = {.lex_state = 150, .external_lex_state = 2}, + [6851] = {.lex_state = 150, .external_lex_state = 2}, + [6852] = {.lex_state = 150, .external_lex_state = 2}, + [6853] = {.lex_state = 150, .external_lex_state = 2}, + [6854] = {.lex_state = 150, .external_lex_state = 2}, + [6855] = {.lex_state = 150, .external_lex_state = 2}, + [6856] = {.lex_state = 150, .external_lex_state = 2}, + [6857] = {.lex_state = 150, .external_lex_state = 2}, + [6858] = {.lex_state = 150, .external_lex_state = 2}, + [6859] = {.lex_state = 150, .external_lex_state = 2}, + [6860] = {.lex_state = 150, .external_lex_state = 2}, + [6861] = {.lex_state = 150, .external_lex_state = 2}, + [6862] = {.lex_state = 150, .external_lex_state = 2}, + [6863] = {.lex_state = 150, .external_lex_state = 2}, + [6864] = {.lex_state = 150, .external_lex_state = 2}, + [6865] = {.lex_state = 150, .external_lex_state = 2}, + [6866] = {.lex_state = 150, .external_lex_state = 2}, + [6867] = {.lex_state = 150, .external_lex_state = 2}, + [6868] = {.lex_state = 150, .external_lex_state = 2}, + [6869] = {.lex_state = 150, .external_lex_state = 2}, + [6870] = {.lex_state = 150, .external_lex_state = 2}, + [6871] = {.lex_state = 150, .external_lex_state = 2}, + [6872] = {.lex_state = 150, .external_lex_state = 2}, + [6873] = {.lex_state = 150, .external_lex_state = 2}, + [6874] = {.lex_state = 150, .external_lex_state = 2}, + [6875] = {.lex_state = 150, .external_lex_state = 2}, + [6876] = {.lex_state = 150, .external_lex_state = 2}, + [6877] = {.lex_state = 150, .external_lex_state = 2}, + [6878] = {.lex_state = 150, .external_lex_state = 2}, + [6879] = {.lex_state = 150, .external_lex_state = 2}, + [6880] = {.lex_state = 150, .external_lex_state = 2}, + [6881] = {.lex_state = 150, .external_lex_state = 2}, + [6882] = {.lex_state = 150, .external_lex_state = 2}, + [6883] = {.lex_state = 150, .external_lex_state = 2}, + [6884] = {.lex_state = 150, .external_lex_state = 2}, + [6885] = {.lex_state = 150, .external_lex_state = 2}, + [6886] = {.lex_state = 150, .external_lex_state = 2}, + [6887] = {.lex_state = 150, .external_lex_state = 2}, + [6888] = {.lex_state = 150, .external_lex_state = 2}, + [6889] = {.lex_state = 150, .external_lex_state = 2}, + [6890] = {.lex_state = 150, .external_lex_state = 2}, + [6891] = {.lex_state = 150, .external_lex_state = 2}, + [6892] = {.lex_state = 150, .external_lex_state = 2}, + [6893] = {.lex_state = 150, .external_lex_state = 2}, + [6894] = {.lex_state = 150, .external_lex_state = 2}, + [6895] = {.lex_state = 150, .external_lex_state = 2}, + [6896] = {.lex_state = 150, .external_lex_state = 2}, + [6897] = {.lex_state = 150, .external_lex_state = 2}, + [6898] = {.lex_state = 150, .external_lex_state = 2}, + [6899] = {.lex_state = 150, .external_lex_state = 2}, + [6900] = {.lex_state = 150, .external_lex_state = 2}, + [6901] = {.lex_state = 150, .external_lex_state = 2}, + [6902] = {.lex_state = 150, .external_lex_state = 5}, + [6903] = {.lex_state = 150, .external_lex_state = 2}, + [6904] = {.lex_state = 150, .external_lex_state = 5}, + [6905] = {.lex_state = 150, .external_lex_state = 2}, + [6906] = {.lex_state = 150, .external_lex_state = 2}, + [6907] = {.lex_state = 150, .external_lex_state = 2}, + [6908] = {.lex_state = 150, .external_lex_state = 2}, + [6909] = {.lex_state = 150, .external_lex_state = 2}, + [6910] = {.lex_state = 150, .external_lex_state = 2}, + [6911] = {.lex_state = 150, .external_lex_state = 2}, + [6912] = {.lex_state = 150, .external_lex_state = 2}, + [6913] = {.lex_state = 150, .external_lex_state = 2}, + [6914] = {.lex_state = 150, .external_lex_state = 2}, + [6915] = {.lex_state = 150, .external_lex_state = 2}, + [6916] = {.lex_state = 150, .external_lex_state = 2}, + [6917] = {.lex_state = 150, .external_lex_state = 2}, + [6918] = {.lex_state = 150, .external_lex_state = 2}, + [6919] = {.lex_state = 150, .external_lex_state = 2}, + [6920] = {.lex_state = 150, .external_lex_state = 2}, + [6921] = {.lex_state = 150, .external_lex_state = 2}, + [6922] = {.lex_state = 150, .external_lex_state = 2}, + [6923] = {.lex_state = 150, .external_lex_state = 2}, + [6924] = {.lex_state = 150, .external_lex_state = 2}, + [6925] = {.lex_state = 150, .external_lex_state = 2}, + [6926] = {.lex_state = 150, .external_lex_state = 2}, + [6927] = {.lex_state = 150, .external_lex_state = 2}, + [6928] = {.lex_state = 150, .external_lex_state = 2}, + [6929] = {.lex_state = 150, .external_lex_state = 2}, + [6930] = {.lex_state = 150, .external_lex_state = 2}, + [6931] = {.lex_state = 150, .external_lex_state = 2}, + [6932] = {.lex_state = 150, .external_lex_state = 2}, + [6933] = {.lex_state = 150, .external_lex_state = 2}, + [6934] = {.lex_state = 150, .external_lex_state = 2}, + [6935] = {.lex_state = 150, .external_lex_state = 2}, + [6936] = {.lex_state = 150, .external_lex_state = 2}, + [6937] = {.lex_state = 150, .external_lex_state = 2}, + [6938] = {.lex_state = 150, .external_lex_state = 2}, + [6939] = {.lex_state = 150, .external_lex_state = 2}, + [6940] = {.lex_state = 150, .external_lex_state = 2}, + [6941] = {.lex_state = 150, .external_lex_state = 2}, + [6942] = {.lex_state = 150, .external_lex_state = 2}, + [6943] = {.lex_state = 150, .external_lex_state = 2}, + [6944] = {.lex_state = 150, .external_lex_state = 2}, + [6945] = {.lex_state = 150, .external_lex_state = 2}, + [6946] = {.lex_state = 150, .external_lex_state = 2}, + [6947] = {.lex_state = 150, .external_lex_state = 2}, + [6948] = {.lex_state = 150, .external_lex_state = 2}, + [6949] = {.lex_state = 150, .external_lex_state = 2}, + [6950] = {.lex_state = 150, .external_lex_state = 2}, + [6951] = {.lex_state = 150, .external_lex_state = 2}, + [6952] = {.lex_state = 150, .external_lex_state = 2}, + [6953] = {.lex_state = 150, .external_lex_state = 2}, + [6954] = {.lex_state = 150, .external_lex_state = 2}, + [6955] = {.lex_state = 150, .external_lex_state = 2}, + [6956] = {.lex_state = 150, .external_lex_state = 2}, + [6957] = {.lex_state = 150, .external_lex_state = 2}, + [6958] = {.lex_state = 150, .external_lex_state = 2}, + [6959] = {.lex_state = 150, .external_lex_state = 2}, + [6960] = {.lex_state = 150, .external_lex_state = 2}, + [6961] = {.lex_state = 150, .external_lex_state = 2}, + [6962] = {.lex_state = 150, .external_lex_state = 2}, + [6963] = {.lex_state = 150, .external_lex_state = 2}, + [6964] = {.lex_state = 150, .external_lex_state = 2}, + [6965] = {.lex_state = 150, .external_lex_state = 2}, + [6966] = {.lex_state = 150, .external_lex_state = 2}, + [6967] = {.lex_state = 150, .external_lex_state = 2}, + [6968] = {.lex_state = 150, .external_lex_state = 2}, + [6969] = {.lex_state = 150, .external_lex_state = 2}, + [6970] = {.lex_state = 150, .external_lex_state = 2}, + [6971] = {.lex_state = 150, .external_lex_state = 2}, + [6972] = {.lex_state = 150, .external_lex_state = 2}, + [6973] = {.lex_state = 150, .external_lex_state = 2}, + [6974] = {.lex_state = 150, .external_lex_state = 2}, + [6975] = {.lex_state = 150, .external_lex_state = 2}, + [6976] = {.lex_state = 150, .external_lex_state = 2}, + [6977] = {.lex_state = 150, .external_lex_state = 2}, + [6978] = {.lex_state = 150, .external_lex_state = 2}, + [6979] = {.lex_state = 150, .external_lex_state = 2}, + [6980] = {.lex_state = 150, .external_lex_state = 2}, + [6981] = {.lex_state = 150, .external_lex_state = 2}, + [6982] = {.lex_state = 150, .external_lex_state = 2}, + [6983] = {.lex_state = 150, .external_lex_state = 2}, + [6984] = {.lex_state = 150, .external_lex_state = 2}, + [6985] = {.lex_state = 150, .external_lex_state = 2}, + [6986] = {.lex_state = 150, .external_lex_state = 2}, + [6987] = {.lex_state = 150, .external_lex_state = 2}, + [6988] = {.lex_state = 150, .external_lex_state = 2}, + [6989] = {.lex_state = 150, .external_lex_state = 2}, + [6990] = {.lex_state = 150, .external_lex_state = 2}, + [6991] = {.lex_state = 150, .external_lex_state = 2}, + [6992] = {.lex_state = 150, .external_lex_state = 2}, + [6993] = {.lex_state = 150, .external_lex_state = 2}, + [6994] = {.lex_state = 150, .external_lex_state = 5}, + [6995] = {.lex_state = 150, .external_lex_state = 2}, + [6996] = {.lex_state = 150, .external_lex_state = 2}, + [6997] = {.lex_state = 150, .external_lex_state = 2}, + [6998] = {.lex_state = 150, .external_lex_state = 2}, + [6999] = {.lex_state = 150, .external_lex_state = 2}, + [7000] = {.lex_state = 150, .external_lex_state = 2}, + [7001] = {.lex_state = 150, .external_lex_state = 2}, + [7002] = {.lex_state = 150, .external_lex_state = 2}, + [7003] = {.lex_state = 150, .external_lex_state = 2}, + [7004] = {.lex_state = 150, .external_lex_state = 2}, + [7005] = {.lex_state = 150, .external_lex_state = 2}, + [7006] = {.lex_state = 150, .external_lex_state = 2}, + [7007] = {.lex_state = 150, .external_lex_state = 2}, + [7008] = {.lex_state = 150, .external_lex_state = 2}, + [7009] = {.lex_state = 150, .external_lex_state = 2}, + [7010] = {.lex_state = 150, .external_lex_state = 2}, + [7011] = {.lex_state = 150, .external_lex_state = 2}, + [7012] = {.lex_state = 150, .external_lex_state = 2}, + [7013] = {.lex_state = 150, .external_lex_state = 2}, + [7014] = {.lex_state = 150, .external_lex_state = 2}, + [7015] = {.lex_state = 150, .external_lex_state = 2}, + [7016] = {.lex_state = 150, .external_lex_state = 2}, + [7017] = {.lex_state = 150, .external_lex_state = 2}, + [7018] = {.lex_state = 150, .external_lex_state = 2}, + [7019] = {.lex_state = 150, .external_lex_state = 2}, + [7020] = {.lex_state = 150, .external_lex_state = 2}, + [7021] = {.lex_state = 150, .external_lex_state = 2}, + [7022] = {.lex_state = 150, .external_lex_state = 2}, + [7023] = {.lex_state = 150, .external_lex_state = 2}, + [7024] = {.lex_state = 150, .external_lex_state = 2}, + [7025] = {.lex_state = 150, .external_lex_state = 2}, + [7026] = {.lex_state = 150, .external_lex_state = 2}, + [7027] = {.lex_state = 150, .external_lex_state = 2}, + [7028] = {.lex_state = 150, .external_lex_state = 2}, + [7029] = {.lex_state = 150, .external_lex_state = 2}, + [7030] = {.lex_state = 150, .external_lex_state = 2}, + [7031] = {.lex_state = 150, .external_lex_state = 2}, + [7032] = {.lex_state = 150, .external_lex_state = 2}, + [7033] = {.lex_state = 150, .external_lex_state = 2}, + [7034] = {.lex_state = 150, .external_lex_state = 2}, + [7035] = {.lex_state = 150, .external_lex_state = 2}, + [7036] = {.lex_state = 150, .external_lex_state = 2}, + [7037] = {.lex_state = 150, .external_lex_state = 2}, + [7038] = {.lex_state = 150, .external_lex_state = 2}, + [7039] = {.lex_state = 150, .external_lex_state = 2}, + [7040] = {.lex_state = 150, .external_lex_state = 2}, + [7041] = {.lex_state = 150, .external_lex_state = 2}, + [7042] = {.lex_state = 150, .external_lex_state = 2}, + [7043] = {.lex_state = 150, .external_lex_state = 2}, + [7044] = {.lex_state = 150, .external_lex_state = 2}, + [7045] = {.lex_state = 150, .external_lex_state = 2}, + [7046] = {.lex_state = 150, .external_lex_state = 2}, + [7047] = {.lex_state = 150, .external_lex_state = 2}, + [7048] = {.lex_state = 150, .external_lex_state = 2}, + [7049] = {.lex_state = 150, .external_lex_state = 2}, + [7050] = {.lex_state = 150, .external_lex_state = 2}, + [7051] = {.lex_state = 150, .external_lex_state = 2}, + [7052] = {.lex_state = 150, .external_lex_state = 5}, + [7053] = {.lex_state = 150, .external_lex_state = 2}, + [7054] = {.lex_state = 150, .external_lex_state = 2}, + [7055] = {.lex_state = 150, .external_lex_state = 2}, + [7056] = {.lex_state = 150, .external_lex_state = 2}, + [7057] = {.lex_state = 150, .external_lex_state = 2}, + [7058] = {.lex_state = 150, .external_lex_state = 2}, + [7059] = {.lex_state = 150, .external_lex_state = 2}, + [7060] = {.lex_state = 150, .external_lex_state = 2}, + [7061] = {.lex_state = 150, .external_lex_state = 2}, + [7062] = {.lex_state = 150, .external_lex_state = 2}, + [7063] = {.lex_state = 150, .external_lex_state = 2}, + [7064] = {.lex_state = 150, .external_lex_state = 2}, + [7065] = {.lex_state = 150, .external_lex_state = 2}, + [7066] = {.lex_state = 150, .external_lex_state = 2}, + [7067] = {.lex_state = 150, .external_lex_state = 2}, + [7068] = {.lex_state = 150, .external_lex_state = 2}, + [7069] = {.lex_state = 150, .external_lex_state = 2}, + [7070] = {.lex_state = 150, .external_lex_state = 2}, + [7071] = {.lex_state = 150, .external_lex_state = 2}, + [7072] = {.lex_state = 150, .external_lex_state = 2}, + [7073] = {.lex_state = 150, .external_lex_state = 2}, + [7074] = {.lex_state = 150, .external_lex_state = 2}, + [7075] = {.lex_state = 150, .external_lex_state = 2}, + [7076] = {.lex_state = 150, .external_lex_state = 2}, + [7077] = {.lex_state = 150, .external_lex_state = 2}, + [7078] = {.lex_state = 150, .external_lex_state = 2}, + [7079] = {.lex_state = 150, .external_lex_state = 2}, + [7080] = {.lex_state = 150, .external_lex_state = 2}, + [7081] = {.lex_state = 150, .external_lex_state = 2}, + [7082] = {.lex_state = 150, .external_lex_state = 2}, + [7083] = {.lex_state = 150, .external_lex_state = 2}, + [7084] = {.lex_state = 150, .external_lex_state = 2}, + [7085] = {.lex_state = 150, .external_lex_state = 2}, + [7086] = {.lex_state = 150, .external_lex_state = 2}, + [7087] = {.lex_state = 150, .external_lex_state = 2}, + [7088] = {.lex_state = 150, .external_lex_state = 2}, + [7089] = {.lex_state = 150, .external_lex_state = 2}, + [7090] = {.lex_state = 150, .external_lex_state = 2}, + [7091] = {.lex_state = 150, .external_lex_state = 2}, + [7092] = {.lex_state = 150, .external_lex_state = 2}, + [7093] = {.lex_state = 150, .external_lex_state = 2}, + [7094] = {.lex_state = 150, .external_lex_state = 2}, + [7095] = {.lex_state = 150, .external_lex_state = 2}, + [7096] = {.lex_state = 150, .external_lex_state = 5}, + [7097] = {.lex_state = 150, .external_lex_state = 2}, + [7098] = {.lex_state = 150, .external_lex_state = 2}, + [7099] = {.lex_state = 150, .external_lex_state = 2}, + [7100] = {.lex_state = 150, .external_lex_state = 2}, + [7101] = {.lex_state = 150, .external_lex_state = 2}, + [7102] = {.lex_state = 150, .external_lex_state = 2}, + [7103] = {.lex_state = 150, .external_lex_state = 2}, + [7104] = {.lex_state = 150, .external_lex_state = 2}, + [7105] = {.lex_state = 150, .external_lex_state = 2}, + [7106] = {.lex_state = 150, .external_lex_state = 2}, + [7107] = {.lex_state = 150, .external_lex_state = 2}, + [7108] = {.lex_state = 150, .external_lex_state = 2}, + [7109] = {.lex_state = 150, .external_lex_state = 2}, + [7110] = {.lex_state = 150, .external_lex_state = 2}, + [7111] = {.lex_state = 150, .external_lex_state = 2}, + [7112] = {.lex_state = 150, .external_lex_state = 2}, + [7113] = {.lex_state = 150, .external_lex_state = 2}, + [7114] = {.lex_state = 150, .external_lex_state = 2}, + [7115] = {.lex_state = 150, .external_lex_state = 2}, + [7116] = {.lex_state = 150, .external_lex_state = 2}, + [7117] = {.lex_state = 150, .external_lex_state = 2}, + [7118] = {.lex_state = 150, .external_lex_state = 2}, + [7119] = {.lex_state = 150, .external_lex_state = 2}, + [7120] = {.lex_state = 150, .external_lex_state = 2}, + [7121] = {.lex_state = 150, .external_lex_state = 2}, + [7122] = {.lex_state = 150, .external_lex_state = 2}, + [7123] = {.lex_state = 150, .external_lex_state = 2}, + [7124] = {.lex_state = 150, .external_lex_state = 2}, + [7125] = {.lex_state = 150, .external_lex_state = 2}, + [7126] = {.lex_state = 150, .external_lex_state = 2}, + [7127] = {.lex_state = 150, .external_lex_state = 2}, + [7128] = {.lex_state = 150, .external_lex_state = 2}, + [7129] = {.lex_state = 150, .external_lex_state = 2}, + [7130] = {.lex_state = 150, .external_lex_state = 2}, + [7131] = {.lex_state = 150, .external_lex_state = 2}, + [7132] = {.lex_state = 150, .external_lex_state = 2}, + [7133] = {.lex_state = 150, .external_lex_state = 2}, + [7134] = {.lex_state = 150, .external_lex_state = 2}, + [7135] = {.lex_state = 150, .external_lex_state = 2}, + [7136] = {.lex_state = 150, .external_lex_state = 2}, + [7137] = {.lex_state = 150, .external_lex_state = 2}, + [7138] = {.lex_state = 150, .external_lex_state = 2}, + [7139] = {.lex_state = 150, .external_lex_state = 2}, + [7140] = {.lex_state = 150, .external_lex_state = 2}, + [7141] = {.lex_state = 150, .external_lex_state = 2}, + [7142] = {.lex_state = 150, .external_lex_state = 2}, + [7143] = {.lex_state = 150, .external_lex_state = 2}, + [7144] = {.lex_state = 150, .external_lex_state = 2}, + [7145] = {.lex_state = 150, .external_lex_state = 2}, + [7146] = {.lex_state = 150, .external_lex_state = 2}, + [7147] = {.lex_state = 150, .external_lex_state = 2}, + [7148] = {.lex_state = 150, .external_lex_state = 2}, + [7149] = {.lex_state = 150, .external_lex_state = 2}, + [7150] = {.lex_state = 150, .external_lex_state = 2}, + [7151] = {.lex_state = 150, .external_lex_state = 2}, + [7152] = {.lex_state = 150, .external_lex_state = 2}, + [7153] = {.lex_state = 150, .external_lex_state = 2}, + [7154] = {.lex_state = 150, .external_lex_state = 2}, + [7155] = {.lex_state = 150, .external_lex_state = 2}, + [7156] = {.lex_state = 150, .external_lex_state = 2}, + [7157] = {.lex_state = 150, .external_lex_state = 2}, + [7158] = {.lex_state = 150, .external_lex_state = 2}, + [7159] = {.lex_state = 150, .external_lex_state = 2}, + [7160] = {.lex_state = 150, .external_lex_state = 2}, + [7161] = {.lex_state = 150, .external_lex_state = 2}, + [7162] = {.lex_state = 150, .external_lex_state = 2}, + [7163] = {.lex_state = 150, .external_lex_state = 2}, + [7164] = {.lex_state = 150, .external_lex_state = 2}, + [7165] = {.lex_state = 150, .external_lex_state = 2}, + [7166] = {.lex_state = 150, .external_lex_state = 2}, + [7167] = {.lex_state = 150, .external_lex_state = 2}, + [7168] = {.lex_state = 150, .external_lex_state = 2}, + [7169] = {.lex_state = 150, .external_lex_state = 2}, + [7170] = {.lex_state = 150, .external_lex_state = 2}, + [7171] = {.lex_state = 150, .external_lex_state = 2}, + [7172] = {.lex_state = 150, .external_lex_state = 2}, + [7173] = {.lex_state = 150, .external_lex_state = 2}, + [7174] = {.lex_state = 150, .external_lex_state = 2}, + [7175] = {.lex_state = 150, .external_lex_state = 2}, + [7176] = {.lex_state = 150, .external_lex_state = 2}, + [7177] = {.lex_state = 150, .external_lex_state = 2}, + [7178] = {.lex_state = 150, .external_lex_state = 2}, + [7179] = {.lex_state = 150, .external_lex_state = 2}, + [7180] = {.lex_state = 150, .external_lex_state = 2}, + [7181] = {.lex_state = 150, .external_lex_state = 2}, + [7182] = {.lex_state = 150, .external_lex_state = 2}, + [7183] = {.lex_state = 150, .external_lex_state = 2}, + [7184] = {.lex_state = 150, .external_lex_state = 2}, + [7185] = {.lex_state = 150, .external_lex_state = 2}, + [7186] = {.lex_state = 150, .external_lex_state = 2}, + [7187] = {.lex_state = 150, .external_lex_state = 2}, + [7188] = {.lex_state = 150, .external_lex_state = 2}, + [7189] = {.lex_state = 150, .external_lex_state = 2}, + [7190] = {.lex_state = 150, .external_lex_state = 2}, + [7191] = {.lex_state = 150, .external_lex_state = 2}, + [7192] = {.lex_state = 150, .external_lex_state = 2}, + [7193] = {.lex_state = 150, .external_lex_state = 2}, + [7194] = {.lex_state = 150, .external_lex_state = 2}, + [7195] = {.lex_state = 150, .external_lex_state = 2}, + [7196] = {.lex_state = 150, .external_lex_state = 2}, + [7197] = {.lex_state = 150, .external_lex_state = 2}, + [7198] = {.lex_state = 150, .external_lex_state = 2}, + [7199] = {.lex_state = 150, .external_lex_state = 2}, + [7200] = {.lex_state = 150, .external_lex_state = 2}, + [7201] = {.lex_state = 150, .external_lex_state = 2}, + [7202] = {.lex_state = 150, .external_lex_state = 2}, + [7203] = {.lex_state = 150, .external_lex_state = 2}, + [7204] = {.lex_state = 150, .external_lex_state = 2}, + [7205] = {.lex_state = 150, .external_lex_state = 2}, + [7206] = {.lex_state = 150, .external_lex_state = 2}, + [7207] = {.lex_state = 150, .external_lex_state = 2}, + [7208] = {.lex_state = 150, .external_lex_state = 2}, + [7209] = {.lex_state = 150, .external_lex_state = 2}, + [7210] = {.lex_state = 3, .external_lex_state = 10}, + [7211] = {.lex_state = 150, .external_lex_state = 2}, + [7212] = {.lex_state = 150, .external_lex_state = 2}, + [7213] = {.lex_state = 150, .external_lex_state = 2}, + [7214] = {.lex_state = 150, .external_lex_state = 2}, + [7215] = {.lex_state = 150, .external_lex_state = 2}, + [7216] = {.lex_state = 150, .external_lex_state = 2}, + [7217] = {.lex_state = 150, .external_lex_state = 2}, + [7218] = {.lex_state = 150, .external_lex_state = 2}, + [7219] = {.lex_state = 150, .external_lex_state = 2}, + [7220] = {.lex_state = 150, .external_lex_state = 2}, + [7221] = {.lex_state = 150, .external_lex_state = 2}, + [7222] = {.lex_state = 150, .external_lex_state = 2}, + [7223] = {.lex_state = 150, .external_lex_state = 2}, + [7224] = {.lex_state = 150, .external_lex_state = 2}, + [7225] = {.lex_state = 150, .external_lex_state = 2}, + [7226] = {.lex_state = 150, .external_lex_state = 2}, + [7227] = {.lex_state = 150, .external_lex_state = 2}, + [7228] = {.lex_state = 150, .external_lex_state = 2}, + [7229] = {.lex_state = 150, .external_lex_state = 2}, + [7230] = {.lex_state = 150, .external_lex_state = 2}, + [7231] = {.lex_state = 150, .external_lex_state = 2}, + [7232] = {.lex_state = 150, .external_lex_state = 2}, + [7233] = {.lex_state = 150, .external_lex_state = 2}, + [7234] = {.lex_state = 150, .external_lex_state = 2}, + [7235] = {.lex_state = 150, .external_lex_state = 2}, + [7236] = {.lex_state = 150, .external_lex_state = 2}, + [7237] = {.lex_state = 150, .external_lex_state = 2}, + [7238] = {.lex_state = 3, .external_lex_state = 10}, + [7239] = {.lex_state = 150, .external_lex_state = 2}, + [7240] = {.lex_state = 150, .external_lex_state = 2}, + [7241] = {.lex_state = 150, .external_lex_state = 2}, + [7242] = {.lex_state = 150, .external_lex_state = 2}, + [7243] = {.lex_state = 150, .external_lex_state = 2}, + [7244] = {.lex_state = 150, .external_lex_state = 2}, + [7245] = {.lex_state = 150, .external_lex_state = 2}, + [7246] = {.lex_state = 150, .external_lex_state = 2}, + [7247] = {.lex_state = 150, .external_lex_state = 2}, + [7248] = {.lex_state = 150, .external_lex_state = 2}, + [7249] = {.lex_state = 150, .external_lex_state = 2}, + [7250] = {.lex_state = 150, .external_lex_state = 2}, + [7251] = {.lex_state = 150, .external_lex_state = 2}, + [7252] = {.lex_state = 150, .external_lex_state = 2}, + [7253] = {.lex_state = 150, .external_lex_state = 2}, + [7254] = {.lex_state = 150, .external_lex_state = 2}, + [7255] = {.lex_state = 150, .external_lex_state = 2}, + [7256] = {.lex_state = 150, .external_lex_state = 2}, + [7257] = {.lex_state = 150, .external_lex_state = 2}, + [7258] = {.lex_state = 150, .external_lex_state = 2}, + [7259] = {.lex_state = 150, .external_lex_state = 2}, + [7260] = {.lex_state = 150, .external_lex_state = 2}, + [7261] = {.lex_state = 150, .external_lex_state = 2}, + [7262] = {.lex_state = 3, .external_lex_state = 10}, + [7263] = {.lex_state = 150, .external_lex_state = 2}, + [7264] = {.lex_state = 150, .external_lex_state = 2}, + [7265] = {.lex_state = 150, .external_lex_state = 2}, + [7266] = {.lex_state = 150, .external_lex_state = 2}, + [7267] = {.lex_state = 150, .external_lex_state = 2}, + [7268] = {.lex_state = 150, .external_lex_state = 2}, + [7269] = {.lex_state = 150, .external_lex_state = 2}, + [7270] = {.lex_state = 150, .external_lex_state = 2}, + [7271] = {.lex_state = 150, .external_lex_state = 2}, + [7272] = {.lex_state = 150, .external_lex_state = 2}, + [7273] = {.lex_state = 150, .external_lex_state = 2}, + [7274] = {.lex_state = 150, .external_lex_state = 2}, + [7275] = {.lex_state = 150, .external_lex_state = 2}, + [7276] = {.lex_state = 150, .external_lex_state = 2}, + [7277] = {.lex_state = 150, .external_lex_state = 2}, + [7278] = {.lex_state = 150, .external_lex_state = 2}, + [7279] = {.lex_state = 150, .external_lex_state = 2}, + [7280] = {.lex_state = 150, .external_lex_state = 2}, + [7281] = {.lex_state = 150, .external_lex_state = 2}, + [7282] = {.lex_state = 150, .external_lex_state = 2}, + [7283] = {.lex_state = 150, .external_lex_state = 2}, + [7284] = {.lex_state = 3, .external_lex_state = 10}, + [7285] = {.lex_state = 150, .external_lex_state = 2}, + [7286] = {.lex_state = 150, .external_lex_state = 2}, + [7287] = {.lex_state = 150, .external_lex_state = 2}, + [7288] = {.lex_state = 150, .external_lex_state = 2}, + [7289] = {.lex_state = 150, .external_lex_state = 2}, + [7290] = {.lex_state = 150, .external_lex_state = 2}, + [7291] = {.lex_state = 150, .external_lex_state = 2}, + [7292] = {.lex_state = 150, .external_lex_state = 2}, + [7293] = {.lex_state = 150, .external_lex_state = 2}, + [7294] = {.lex_state = 150, .external_lex_state = 2}, + [7295] = {.lex_state = 150, .external_lex_state = 2}, + [7296] = {.lex_state = 150, .external_lex_state = 2}, + [7297] = {.lex_state = 150, .external_lex_state = 2}, + [7298] = {.lex_state = 150, .external_lex_state = 2}, + [7299] = {.lex_state = 150, .external_lex_state = 2}, + [7300] = {.lex_state = 150, .external_lex_state = 2}, + [7301] = {.lex_state = 150, .external_lex_state = 2}, + [7302] = {.lex_state = 150, .external_lex_state = 2}, + [7303] = {.lex_state = 150, .external_lex_state = 2}, + [7304] = {.lex_state = 150, .external_lex_state = 2}, + [7305] = {.lex_state = 150, .external_lex_state = 2}, + [7306] = {.lex_state = 150, .external_lex_state = 2}, + [7307] = {.lex_state = 150, .external_lex_state = 2}, + [7308] = {.lex_state = 150, .external_lex_state = 2}, + [7309] = {.lex_state = 150, .external_lex_state = 2}, + [7310] = {.lex_state = 150, .external_lex_state = 2}, + [7311] = {.lex_state = 150, .external_lex_state = 2}, + [7312] = {.lex_state = 150, .external_lex_state = 2}, + [7313] = {.lex_state = 39, .external_lex_state = 2}, + [7314] = {.lex_state = 150, .external_lex_state = 2}, + [7315] = {.lex_state = 150, .external_lex_state = 2}, + [7316] = {.lex_state = 150, .external_lex_state = 2}, + [7317] = {.lex_state = 150, .external_lex_state = 2}, + [7318] = {.lex_state = 150, .external_lex_state = 2}, + [7319] = {.lex_state = 150, .external_lex_state = 2}, + [7320] = {.lex_state = 150, .external_lex_state = 2}, + [7321] = {.lex_state = 150, .external_lex_state = 2}, + [7322] = {.lex_state = 150, .external_lex_state = 2}, + [7323] = {.lex_state = 150, .external_lex_state = 2}, + [7324] = {.lex_state = 150, .external_lex_state = 2}, + [7325] = {.lex_state = 150, .external_lex_state = 2}, + [7326] = {.lex_state = 150, .external_lex_state = 2}, + [7327] = {.lex_state = 150, .external_lex_state = 2}, + [7328] = {.lex_state = 150, .external_lex_state = 2}, + [7329] = {.lex_state = 150, .external_lex_state = 2}, + [7330] = {.lex_state = 150, .external_lex_state = 2}, + [7331] = {.lex_state = 150, .external_lex_state = 2}, + [7332] = {.lex_state = 150, .external_lex_state = 2}, + [7333] = {.lex_state = 150, .external_lex_state = 2}, + [7334] = {.lex_state = 150, .external_lex_state = 2}, + [7335] = {.lex_state = 150, .external_lex_state = 2}, + [7336] = {.lex_state = 150, .external_lex_state = 2}, + [7337] = {.lex_state = 150, .external_lex_state = 2}, + [7338] = {.lex_state = 150, .external_lex_state = 2}, + [7339] = {.lex_state = 150, .external_lex_state = 2}, + [7340] = {.lex_state = 150, .external_lex_state = 2}, + [7341] = {.lex_state = 150, .external_lex_state = 2}, + [7342] = {.lex_state = 150, .external_lex_state = 2}, + [7343] = {.lex_state = 150, .external_lex_state = 2}, + [7344] = {.lex_state = 150, .external_lex_state = 2}, + [7345] = {.lex_state = 150, .external_lex_state = 2}, + [7346] = {.lex_state = 150, .external_lex_state = 2}, + [7347] = {.lex_state = 150, .external_lex_state = 2}, + [7348] = {.lex_state = 150, .external_lex_state = 2}, + [7349] = {.lex_state = 150, .external_lex_state = 2}, + [7350] = {.lex_state = 150, .external_lex_state = 2}, + [7351] = {.lex_state = 150, .external_lex_state = 2}, + [7352] = {.lex_state = 150, .external_lex_state = 2}, + [7353] = {.lex_state = 150, .external_lex_state = 2}, + [7354] = {.lex_state = 150, .external_lex_state = 2}, + [7355] = {.lex_state = 150, .external_lex_state = 2}, + [7356] = {.lex_state = 150, .external_lex_state = 2}, + [7357] = {.lex_state = 150, .external_lex_state = 2}, + [7358] = {.lex_state = 150, .external_lex_state = 2}, + [7359] = {.lex_state = 150, .external_lex_state = 2}, + [7360] = {.lex_state = 150, .external_lex_state = 2}, + [7361] = {.lex_state = 150, .external_lex_state = 2}, + [7362] = {.lex_state = 150, .external_lex_state = 2}, + [7363] = {.lex_state = 150, .external_lex_state = 2}, + [7364] = {.lex_state = 150, .external_lex_state = 2}, + [7365] = {.lex_state = 150, .external_lex_state = 2}, + [7366] = {.lex_state = 150, .external_lex_state = 2}, + [7367] = {.lex_state = 150, .external_lex_state = 2}, + [7368] = {.lex_state = 150, .external_lex_state = 2}, + [7369] = {.lex_state = 150, .external_lex_state = 2}, + [7370] = {.lex_state = 150, .external_lex_state = 2}, + [7371] = {.lex_state = 150, .external_lex_state = 2}, + [7372] = {.lex_state = 150, .external_lex_state = 2}, + [7373] = {.lex_state = 150, .external_lex_state = 2}, + [7374] = {.lex_state = 150, .external_lex_state = 2}, + [7375] = {.lex_state = 150, .external_lex_state = 2}, + [7376] = {.lex_state = 150, .external_lex_state = 2}, + [7377] = {.lex_state = 150, .external_lex_state = 2}, + [7378] = {.lex_state = 150, .external_lex_state = 2}, + [7379] = {.lex_state = 150, .external_lex_state = 2}, + [7380] = {.lex_state = 150, .external_lex_state = 2}, + [7381] = {.lex_state = 150, .external_lex_state = 2}, + [7382] = {.lex_state = 150, .external_lex_state = 2}, + [7383] = {.lex_state = 150, .external_lex_state = 2}, + [7384] = {.lex_state = 150, .external_lex_state = 2}, + [7385] = {.lex_state = 150, .external_lex_state = 2}, + [7386] = {.lex_state = 150, .external_lex_state = 2}, + [7387] = {.lex_state = 150, .external_lex_state = 2}, + [7388] = {.lex_state = 150, .external_lex_state = 2}, + [7389] = {.lex_state = 150, .external_lex_state = 2}, + [7390] = {.lex_state = 150, .external_lex_state = 2}, + [7391] = {.lex_state = 150, .external_lex_state = 2}, + [7392] = {.lex_state = 150, .external_lex_state = 2}, + [7393] = {.lex_state = 150, .external_lex_state = 2}, + [7394] = {.lex_state = 150, .external_lex_state = 2}, + [7395] = {.lex_state = 150, .external_lex_state = 2}, + [7396] = {.lex_state = 150, .external_lex_state = 2}, + [7397] = {.lex_state = 150, .external_lex_state = 2}, + [7398] = {.lex_state = 150, .external_lex_state = 2}, + [7399] = {.lex_state = 150, .external_lex_state = 2}, + [7400] = {.lex_state = 150, .external_lex_state = 2}, + [7401] = {.lex_state = 150, .external_lex_state = 2}, + [7402] = {.lex_state = 150, .external_lex_state = 2}, + [7403] = {.lex_state = 150, .external_lex_state = 2}, + [7404] = {.lex_state = 150, .external_lex_state = 2}, + [7405] = {.lex_state = 150, .external_lex_state = 2}, + [7406] = {.lex_state = 150, .external_lex_state = 2}, + [7407] = {.lex_state = 150, .external_lex_state = 2}, + [7408] = {.lex_state = 150, .external_lex_state = 2}, + [7409] = {.lex_state = 150, .external_lex_state = 2}, + [7410] = {.lex_state = 150, .external_lex_state = 2}, + [7411] = {.lex_state = 150, .external_lex_state = 2}, + [7412] = {.lex_state = 150, .external_lex_state = 2}, + [7413] = {.lex_state = 39, .external_lex_state = 2}, + [7414] = {.lex_state = 150, .external_lex_state = 2}, + [7415] = {.lex_state = 150, .external_lex_state = 2}, + [7416] = {.lex_state = 150, .external_lex_state = 2}, + [7417] = {.lex_state = 150, .external_lex_state = 2}, + [7418] = {.lex_state = 150, .external_lex_state = 2}, + [7419] = {.lex_state = 150, .external_lex_state = 2}, + [7420] = {.lex_state = 150, .external_lex_state = 2}, + [7421] = {.lex_state = 150, .external_lex_state = 2}, + [7422] = {.lex_state = 150, .external_lex_state = 2}, + [7423] = {.lex_state = 150, .external_lex_state = 2}, + [7424] = {.lex_state = 150, .external_lex_state = 2}, + [7425] = {.lex_state = 150, .external_lex_state = 2}, + [7426] = {.lex_state = 150, .external_lex_state = 2}, + [7427] = {.lex_state = 150, .external_lex_state = 2}, + [7428] = {.lex_state = 150, .external_lex_state = 2}, + [7429] = {.lex_state = 150, .external_lex_state = 2}, + [7430] = {.lex_state = 150, .external_lex_state = 2}, + [7431] = {.lex_state = 150, .external_lex_state = 2}, + [7432] = {.lex_state = 150, .external_lex_state = 2}, + [7433] = {.lex_state = 150, .external_lex_state = 2}, + [7434] = {.lex_state = 150, .external_lex_state = 2}, + [7435] = {.lex_state = 150, .external_lex_state = 2}, + [7436] = {.lex_state = 150, .external_lex_state = 2}, + [7437] = {.lex_state = 150, .external_lex_state = 2}, + [7438] = {.lex_state = 150, .external_lex_state = 2}, + [7439] = {.lex_state = 150, .external_lex_state = 2}, + [7440] = {.lex_state = 150, .external_lex_state = 2}, + [7441] = {.lex_state = 150, .external_lex_state = 2}, + [7442] = {.lex_state = 150, .external_lex_state = 2}, + [7443] = {.lex_state = 150, .external_lex_state = 2}, + [7444] = {.lex_state = 150, .external_lex_state = 2}, + [7445] = {.lex_state = 150, .external_lex_state = 2}, + [7446] = {.lex_state = 150, .external_lex_state = 2}, + [7447] = {.lex_state = 150, .external_lex_state = 2}, + [7448] = {.lex_state = 150, .external_lex_state = 2}, + [7449] = {.lex_state = 150, .external_lex_state = 2}, + [7450] = {.lex_state = 150, .external_lex_state = 2}, + [7451] = {.lex_state = 150, .external_lex_state = 2}, + [7452] = {.lex_state = 150, .external_lex_state = 2}, + [7453] = {.lex_state = 150, .external_lex_state = 2}, + [7454] = {.lex_state = 150, .external_lex_state = 2}, + [7455] = {.lex_state = 150, .external_lex_state = 2}, + [7456] = {.lex_state = 150, .external_lex_state = 2}, + [7457] = {.lex_state = 150, .external_lex_state = 2}, + [7458] = {.lex_state = 150, .external_lex_state = 2}, + [7459] = {.lex_state = 150, .external_lex_state = 2}, + [7460] = {.lex_state = 150, .external_lex_state = 2}, + [7461] = {.lex_state = 150, .external_lex_state = 2}, + [7462] = {.lex_state = 150, .external_lex_state = 2}, + [7463] = {.lex_state = 150, .external_lex_state = 2}, + [7464] = {.lex_state = 150, .external_lex_state = 2}, + [7465] = {.lex_state = 150, .external_lex_state = 2}, + [7466] = {.lex_state = 150, .external_lex_state = 2}, + [7467] = {.lex_state = 150, .external_lex_state = 2}, + [7468] = {.lex_state = 150, .external_lex_state = 2}, + [7469] = {.lex_state = 39, .external_lex_state = 2}, + [7470] = {.lex_state = 150, .external_lex_state = 2}, + [7471] = {.lex_state = 150, .external_lex_state = 2}, + [7472] = {.lex_state = 150, .external_lex_state = 2}, + [7473] = {.lex_state = 150, .external_lex_state = 2}, + [7474] = {.lex_state = 150, .external_lex_state = 2}, + [7475] = {.lex_state = 150, .external_lex_state = 2}, + [7476] = {.lex_state = 150, .external_lex_state = 2}, + [7477] = {.lex_state = 150, .external_lex_state = 2}, + [7478] = {.lex_state = 150, .external_lex_state = 2}, + [7479] = {.lex_state = 150, .external_lex_state = 2}, + [7480] = {.lex_state = 150, .external_lex_state = 2}, + [7481] = {.lex_state = 150, .external_lex_state = 2}, + [7482] = {.lex_state = 150, .external_lex_state = 2}, + [7483] = {.lex_state = 150, .external_lex_state = 2}, + [7484] = {.lex_state = 39, .external_lex_state = 2}, + [7485] = {.lex_state = 150, .external_lex_state = 2}, + [7486] = {.lex_state = 150, .external_lex_state = 2}, + [7487] = {.lex_state = 150, .external_lex_state = 2}, + [7488] = {.lex_state = 150, .external_lex_state = 2}, + [7489] = {.lex_state = 150, .external_lex_state = 2}, + [7490] = {.lex_state = 150, .external_lex_state = 2}, + [7491] = {.lex_state = 150, .external_lex_state = 2}, + [7492] = {.lex_state = 150, .external_lex_state = 2}, + [7493] = {.lex_state = 150, .external_lex_state = 2}, + [7494] = {.lex_state = 150, .external_lex_state = 2}, + [7495] = {.lex_state = 150, .external_lex_state = 2}, + [7496] = {.lex_state = 150, .external_lex_state = 2}, + [7497] = {.lex_state = 150, .external_lex_state = 2}, + [7498] = {.lex_state = 39, .external_lex_state = 2}, + [7499] = {.lex_state = 150, .external_lex_state = 2}, + [7500] = {.lex_state = 150, .external_lex_state = 2}, + [7501] = {.lex_state = 150, .external_lex_state = 2}, + [7502] = {.lex_state = 150, .external_lex_state = 2}, + [7503] = {.lex_state = 150, .external_lex_state = 2}, + [7504] = {.lex_state = 150, .external_lex_state = 2}, + [7505] = {.lex_state = 150, .external_lex_state = 2}, + [7506] = {.lex_state = 150, .external_lex_state = 2}, + [7507] = {.lex_state = 150, .external_lex_state = 2}, + [7508] = {.lex_state = 150, .external_lex_state = 2}, + [7509] = {.lex_state = 150, .external_lex_state = 2}, + [7510] = {.lex_state = 150, .external_lex_state = 2}, + [7511] = {.lex_state = 150, .external_lex_state = 2}, + [7512] = {.lex_state = 150, .external_lex_state = 2}, + [7513] = {.lex_state = 150, .external_lex_state = 2}, + [7514] = {.lex_state = 150, .external_lex_state = 2}, + [7515] = {.lex_state = 150, .external_lex_state = 2}, + [7516] = {.lex_state = 150, .external_lex_state = 2}, + [7517] = {.lex_state = 150, .external_lex_state = 2}, + [7518] = {.lex_state = 150, .external_lex_state = 2}, + [7519] = {.lex_state = 150, .external_lex_state = 2}, + [7520] = {.lex_state = 150, .external_lex_state = 2}, + [7521] = {.lex_state = 150, .external_lex_state = 2}, + [7522] = {.lex_state = 150, .external_lex_state = 2}, + [7523] = {.lex_state = 150, .external_lex_state = 2}, + [7524] = {.lex_state = 150, .external_lex_state = 2}, + [7525] = {.lex_state = 150, .external_lex_state = 2}, + [7526] = {.lex_state = 150, .external_lex_state = 2}, + [7527] = {.lex_state = 150, .external_lex_state = 2}, + [7528] = {.lex_state = 150, .external_lex_state = 2}, + [7529] = {.lex_state = 150, .external_lex_state = 2}, + [7530] = {.lex_state = 150, .external_lex_state = 2}, + [7531] = {.lex_state = 150, .external_lex_state = 2}, + [7532] = {.lex_state = 150, .external_lex_state = 2}, + [7533] = {.lex_state = 150, .external_lex_state = 2}, + [7534] = {.lex_state = 150, .external_lex_state = 2}, + [7535] = {.lex_state = 150, .external_lex_state = 2}, + [7536] = {.lex_state = 150, .external_lex_state = 2}, + [7537] = {.lex_state = 150, .external_lex_state = 2}, + [7538] = {.lex_state = 150, .external_lex_state = 2}, + [7539] = {.lex_state = 150, .external_lex_state = 2}, + [7540] = {.lex_state = 150, .external_lex_state = 2}, + [7541] = {.lex_state = 150, .external_lex_state = 2}, + [7542] = {.lex_state = 150, .external_lex_state = 2}, + [7543] = {.lex_state = 150, .external_lex_state = 2}, + [7544] = {.lex_state = 150, .external_lex_state = 2}, + [7545] = {.lex_state = 150, .external_lex_state = 2}, + [7546] = {.lex_state = 150, .external_lex_state = 2}, + [7547] = {.lex_state = 150, .external_lex_state = 2}, + [7548] = {.lex_state = 150, .external_lex_state = 2}, + [7549] = {.lex_state = 150, .external_lex_state = 2}, + [7550] = {.lex_state = 150, .external_lex_state = 2}, + [7551] = {.lex_state = 150, .external_lex_state = 2}, + [7552] = {.lex_state = 150, .external_lex_state = 2}, + [7553] = {.lex_state = 150, .external_lex_state = 2}, + [7554] = {.lex_state = 150, .external_lex_state = 2}, + [7555] = {.lex_state = 150, .external_lex_state = 2}, + [7556] = {.lex_state = 150, .external_lex_state = 2}, + [7557] = {.lex_state = 3, .external_lex_state = 10}, + [7558] = {.lex_state = 150, .external_lex_state = 2}, + [7559] = {.lex_state = 150, .external_lex_state = 2}, + [7560] = {.lex_state = 150, .external_lex_state = 2}, + [7561] = {.lex_state = 150, .external_lex_state = 2}, + [7562] = {.lex_state = 150, .external_lex_state = 2}, + [7563] = {.lex_state = 150, .external_lex_state = 2}, + [7564] = {.lex_state = 150, .external_lex_state = 2}, + [7565] = {.lex_state = 150, .external_lex_state = 2}, + [7566] = {.lex_state = 150, .external_lex_state = 2}, + [7567] = {.lex_state = 150, .external_lex_state = 2}, + [7568] = {.lex_state = 150, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -20127,87 +23488,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5689), - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_program] = STATE(7552), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(4503), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -20288,79 +23649,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(3290), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_pattern] = STATE(4300), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3819), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_pattern] = STATE(4909), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(117), @@ -20477,79 +23838,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(3290), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_pattern] = STATE(4300), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3819), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_pattern] = STATE(4909), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(117), @@ -20666,98 +24027,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5603), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5603), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5603), - [sym_spread_element] = STATE(4603), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2195), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3665), - [sym_computed_property_name] = STATE(3665), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_accessibility_modifier] = STATE(2682), - [sym_override_modifier] = STATE(2711), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3848), - [aux_sym_object_repeat1] = STATE(4682), - [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(21), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7525), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7525), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7525), + [sym_spread_element] = STATE(5648), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2158), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5648), + [sym_pair] = STATE(5648), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(3977), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_accessibility_modifier] = STATE(3070), + [sym_override_modifier] = STATE(3113), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(2547), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5650), [sym_identifier] = ACTIONS(231), [anon_sym_export] = ACTIONS(233), [anon_sym_STAR] = ACTIONS(235), @@ -20840,98 +24201,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5603), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5603), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5603), - [sym_spread_element] = STATE(4603), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2195), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3665), - [sym_computed_property_name] = STATE(3665), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_accessibility_modifier] = STATE(2682), - [sym_override_modifier] = STATE(2711), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3848), - [aux_sym_object_repeat1] = STATE(4682), - [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7525), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7525), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7525), + [sym_spread_element] = STATE(5648), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2158), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5648), + [sym_pair] = STATE(5648), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(3977), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_accessibility_modifier] = STATE(3070), + [sym_override_modifier] = STATE(3113), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(2547), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5650), [sym_identifier] = ACTIONS(231), [anon_sym_export] = ACTIONS(233), [anon_sym_STAR] = ACTIONS(235), @@ -21014,98 +24375,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(19), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5603), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5603), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5603), - [sym_spread_element] = STATE(4603), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2195), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3665), - [sym_computed_property_name] = STATE(3665), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_accessibility_modifier] = STATE(2682), - [sym_override_modifier] = STATE(2711), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(3848), - [aux_sym_object_repeat1] = STATE(4682), - [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7525), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7525), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7525), + [sym_spread_element] = STATE(5648), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2158), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5648), + [sym_pair] = STATE(5648), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(3977), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_accessibility_modifier] = STATE(3070), + [sym_override_modifier] = STATE(3113), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(2547), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5650), [sym_identifier] = ACTIONS(231), [anon_sym_export] = ACTIONS(233), [anon_sym_STAR] = ACTIONS(235), @@ -21188,98 +24549,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5603), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5603), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5603), - [sym_spread_element] = STATE(4835), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2195), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4835), - [sym_pair] = STATE(4835), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3665), - [sym_computed_property_name] = STATE(3665), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_accessibility_modifier] = STATE(2682), - [sym_override_modifier] = STATE(2711), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(3848), - [aux_sym_object_repeat1] = STATE(4839), - [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7525), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7525), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7525), + [sym_spread_element] = STATE(5880), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2158), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5880), + [sym_pair] = STATE(5880), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(3977), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_accessibility_modifier] = STATE(3070), + [sym_override_modifier] = STATE(3113), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(2547), + [aux_sym_object_repeat1] = STATE(5879), + [aux_sym_object_pattern_repeat1] = STATE(5650), [sym_identifier] = ACTIONS(279), [anon_sym_export] = ACTIONS(281), [anon_sym_STAR] = ACTIONS(235), @@ -21362,98 +24723,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5603), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5603), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5603), - [sym_spread_element] = STATE(4835), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2195), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4835), - [sym_pair] = STATE(4835), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3665), - [sym_computed_property_name] = STATE(3665), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_accessibility_modifier] = STATE(2682), - [sym_override_modifier] = STATE(2711), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(3848), - [aux_sym_object_repeat1] = STATE(4839), - [aux_sym_object_pattern_repeat1] = STATE(4759), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7525), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7525), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7525), + [sym_spread_element] = STATE(5880), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2158), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5880), + [sym_pair] = STATE(5880), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(3977), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_accessibility_modifier] = STATE(3070), + [sym_override_modifier] = STATE(3113), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(2547), + [aux_sym_object_repeat1] = STATE(5879), + [aux_sym_object_pattern_repeat1] = STATE(5650), [sym_identifier] = ACTIONS(311), [anon_sym_export] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(235), @@ -21536,86 +24897,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_export_statement_repeat1] = STATE(4503), [ts_builtin_sym_end] = ACTIONS(341), [sym_identifier] = ACTIONS(343), [anon_sym_export] = ACTIONS(346), @@ -21698,86 +25059,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(11), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(498), @@ -21859,86 +25220,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(502), @@ -22020,86 +25381,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(11), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(506), @@ -22181,86 +25542,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(10), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(510), @@ -22342,86 +25703,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22501,86 +25862,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(27), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(4503), [ts_builtin_sym_end] = ACTIONS(516), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -22660,92 +26021,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3848), - [ts_builtin_sym_end] = ACTIONS(518), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(518), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22819,86 +26180,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22978,92 +26339,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(3848), - [ts_builtin_sym_end] = ACTIONS(518), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(522), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23137,92 +26498,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_export_statement_repeat1] = STATE(4503), + [ts_builtin_sym_end] = ACTIONS(516), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(522), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23296,86 +26657,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(19), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23455,86 +26816,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23614,86 +26975,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23773,86 +27134,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23932,86 +27293,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24091,86 +27452,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24250,86 +27611,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(25), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24409,92 +27770,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3848), + [aux_sym_export_statement_repeat1] = STATE(4503), + [ts_builtin_sym_end] = ACTIONS(538), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(538), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24568,86 +27929,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(30), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24727,86 +28088,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(27), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24886,86 +28247,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(29), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25045,399 +28406,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(809), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3860), + [sym_import] = STATE(3866), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5145), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(5024), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5884), + [sym_optional_tuple_parameter] = STATE(5884), + [sym_optional_type] = STATE(5884), + [sym_rest_type] = STATE(5884), + [sym__tuple_type_member] = STATE(5884), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6661), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), [sym_identifier] = ACTIONS(546), [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), [anon_sym_namespace] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(564), - [anon_sym_do] = ACTIONS(47), - [anon_sym_try] = ACTIONS(49), - [anon_sym_break] = ACTIONS(51), - [anon_sym_continue] = ACTIONS(53), - [anon_sym_debugger] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_throw] = ACTIONS(59), - [anon_sym_SEMI] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_typeof] = ACTIONS(558), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_RBRACK] = ACTIONS(568), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(596), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), + [anon_sym_object] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(787), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3848), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), - [anon_sym_do] = ACTIONS(47), - [anon_sym_try] = ACTIONS(49), - [anon_sym_break] = ACTIONS(51), - [anon_sym_continue] = ACTIONS(53), - [anon_sym_debugger] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_throw] = ACTIONS(59), - [anon_sym_SEMI] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_import] = STATE(3866), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5145), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(5024), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5884), + [sym_optional_tuple_parameter] = STATE(5884), + [sym_optional_type] = STATE(5884), + [sym_rest_type] = STATE(5884), + [sym__tuple_type_member] = STATE(5884), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6661), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_typeof] = ACTIONS(558), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_RBRACK] = ACTIONS(610), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(572), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(596), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), + [anon_sym_object] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(833), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(803), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25516,103 +28877,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(734), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3848), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(823), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4201), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(614), + [anon_sym_type] = ACTIONS(616), + [anon_sym_namespace] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(622), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(624), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(626), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(628), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(630), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -25626,10 +28987,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(634), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(638), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -25651,125 +29012,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), + [anon_sym_static] = ACTIONS(640), + [anon_sym_readonly] = ACTIONS(640), + [anon_sym_get] = ACTIONS(640), + [anon_sym_set] = ACTIONS(640), + [anon_sym_declare] = ACTIONS(642), + [anon_sym_public] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_override] = ACTIONS(640), + [anon_sym_module] = ACTIONS(644), + [anon_sym_any] = ACTIONS(640), + [anon_sym_number] = ACTIONS(640), + [anon_sym_boolean] = ACTIONS(640), + [anon_sym_string] = ACTIONS(640), + [anon_sym_symbol] = ACTIONS(640), + [anon_sym_object] = ACTIONS(640), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(809), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3848), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(823), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4589), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_type] = ACTIONS(650), + [anon_sym_namespace] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(654), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(656), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(658), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(660), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(662), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -25783,10 +29144,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(664), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(666), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -25808,125 +29169,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), + [anon_sym_static] = ACTIONS(668), + [anon_sym_readonly] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [anon_sym_declare] = ACTIONS(670), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_protected] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_module] = ACTIONS(672), + [anon_sym_any] = ACTIONS(668), + [anon_sym_number] = ACTIONS(668), + [anon_sym_boolean] = ACTIONS(668), + [anon_sym_string] = ACTIONS(668), + [anon_sym_symbol] = ACTIONS(668), + [anon_sym_object] = ACTIONS(668), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(846), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3848), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(771), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4201), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(614), + [anon_sym_type] = ACTIONS(616), + [anon_sym_namespace] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(622), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(624), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(626), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(628), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(630), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -25940,10 +29301,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(634), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(638), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -25965,125 +29326,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), + [anon_sym_static] = ACTIONS(640), + [anon_sym_readonly] = ACTIONS(640), + [anon_sym_get] = ACTIONS(640), + [anon_sym_set] = ACTIONS(640), + [anon_sym_declare] = ACTIONS(642), + [anon_sym_public] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_override] = ACTIONS(640), + [anon_sym_module] = ACTIONS(644), + [anon_sym_any] = ACTIONS(640), + [anon_sym_number] = ACTIONS(640), + [anon_sym_boolean] = ACTIONS(640), + [anon_sym_string] = ACTIONS(640), + [anon_sym_symbol] = ACTIONS(640), + [anon_sym_object] = ACTIONS(640), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(823), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3848), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_import] = STATE(3866), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5145), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(5024), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5884), + [sym_optional_tuple_parameter] = STATE(5884), + [sym_optional_type] = STATE(5884), + [sym_rest_type] = STATE(5884), + [sym__tuple_type_member] = STATE(5884), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6661), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_typeof] = ACTIONS(558), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_RBRACK] = ACTIONS(674), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(572), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), + [anon_sym_object] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [38] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(835), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4201), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(614), + [anon_sym_type] = ACTIONS(616), + [anon_sym_namespace] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(622), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(624), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(626), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(628), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(630), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26097,10 +29615,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(634), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(638), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26122,125 +29640,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), + [anon_sym_static] = ACTIONS(640), + [anon_sym_readonly] = ACTIONS(640), + [anon_sym_get] = ACTIONS(640), + [anon_sym_set] = ACTIONS(640), + [anon_sym_declare] = ACTIONS(642), + [anon_sym_public] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_override] = ACTIONS(640), + [anon_sym_module] = ACTIONS(644), + [anon_sym_any] = ACTIONS(640), + [anon_sym_number] = ACTIONS(640), + [anon_sym_boolean] = ACTIONS(640), + [anon_sym_string] = ACTIONS(640), + [anon_sym_symbol] = ACTIONS(640), + [anon_sym_object] = ACTIONS(640), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [38] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(767), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3848), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [39] = { + [sym_import] = STATE(3866), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5145), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(5024), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5884), + [sym_optional_tuple_parameter] = STATE(5884), + [sym_optional_type] = STATE(5884), + [sym_rest_type] = STATE(5884), + [sym__tuple_type_member] = STATE(5884), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6661), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_typeof] = ACTIONS(558), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_RBRACK] = ACTIONS(676), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(572), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), + [anon_sym_object] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [40] = { + [sym_import] = STATE(3866), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5145), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(5024), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5944), + [sym_optional_tuple_parameter] = STATE(5944), + [sym_optional_type] = STATE(5944), + [sym_rest_type] = STATE(5944), + [sym__tuple_type_member] = STATE(5944), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6661), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(678), + [anon_sym_typeof] = ACTIONS(558), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_RBRACK] = ACTIONS(680), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(572), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), + [anon_sym_object] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [41] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(803), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4589), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_type] = ACTIONS(650), + [anon_sym_namespace] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(654), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(656), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(658), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(660), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(662), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26254,10 +30086,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(664), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(666), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26279,125 +30111,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), + [anon_sym_static] = ACTIONS(668), + [anon_sym_readonly] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [anon_sym_declare] = ACTIONS(670), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_protected] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_module] = ACTIONS(672), + [anon_sym_any] = ACTIONS(668), + [anon_sym_number] = ACTIONS(668), + [anon_sym_boolean] = ACTIONS(668), + [anon_sym_string] = ACTIONS(668), + [anon_sym_symbol] = ACTIONS(668), + [anon_sym_object] = ACTIONS(668), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [39] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(767), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [42] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(771), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4503), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26411,10 +30243,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(75), + [anon_sym_function] = ACTIONS(77), + [anon_sym_new] = ACTIONS(79), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26436,125 +30268,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), + [anon_sym_static] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_get] = ACTIONS(101), + [anon_sym_set] = ACTIONS(101), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_public] = ACTIONS(101), + [anon_sym_private] = ACTIONS(101), + [anon_sym_protected] = ACTIONS(101), + [anon_sym_override] = ACTIONS(101), + [anon_sym_module] = ACTIONS(105), + [anon_sym_any] = ACTIONS(101), + [anon_sym_number] = ACTIONS(101), + [anon_sym_boolean] = ACTIONS(101), + [anon_sym_string] = ACTIONS(101), + [anon_sym_symbol] = ACTIONS(101), + [anon_sym_object] = ACTIONS(101), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [40] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(787), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [43] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(793), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4503), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26568,10 +30400,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(75), + [anon_sym_function] = ACTIONS(77), + [anon_sym_new] = ACTIONS(79), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26593,125 +30425,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), + [anon_sym_static] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_get] = ACTIONS(101), + [anon_sym_set] = ACTIONS(101), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_public] = ACTIONS(101), + [anon_sym_private] = ACTIONS(101), + [anon_sym_protected] = ACTIONS(101), + [anon_sym_override] = ACTIONS(101), + [anon_sym_module] = ACTIONS(105), + [anon_sym_any] = ACTIONS(101), + [anon_sym_number] = ACTIONS(101), + [anon_sym_boolean] = ACTIONS(101), + [anon_sym_string] = ACTIONS(101), + [anon_sym_symbol] = ACTIONS(101), + [anon_sym_object] = ACTIONS(101), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [41] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(4751), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3863), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [44] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(793), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4201), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(614), + [anon_sym_type] = ACTIONS(616), + [anon_sym_namespace] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(622), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(624), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(626), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(628), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(630), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26725,10 +30557,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(634), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(638), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26750,125 +30582,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), + [anon_sym_static] = ACTIONS(640), + [anon_sym_readonly] = ACTIONS(640), + [anon_sym_get] = ACTIONS(640), + [anon_sym_set] = ACTIONS(640), + [anon_sym_declare] = ACTIONS(642), + [anon_sym_public] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_override] = ACTIONS(640), + [anon_sym_module] = ACTIONS(644), + [anon_sym_any] = ACTIONS(640), + [anon_sym_number] = ACTIONS(640), + [anon_sym_boolean] = ACTIONS(640), + [anon_sym_string] = ACTIONS(640), + [anon_sym_symbol] = ACTIONS(640), + [anon_sym_object] = ACTIONS(640), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [42] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(823), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [45] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(803), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4201), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(614), + [anon_sym_type] = ACTIONS(616), + [anon_sym_namespace] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(622), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(624), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(626), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(628), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(630), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26882,10 +30714,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(634), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(638), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26907,125 +30739,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), + [anon_sym_static] = ACTIONS(640), + [anon_sym_readonly] = ACTIONS(640), + [anon_sym_get] = ACTIONS(640), + [anon_sym_set] = ACTIONS(640), + [anon_sym_declare] = ACTIONS(642), + [anon_sym_public] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_override] = ACTIONS(640), + [anon_sym_module] = ACTIONS(644), + [anon_sym_any] = ACTIONS(640), + [anon_sym_number] = ACTIONS(640), + [anon_sym_boolean] = ACTIONS(640), + [anon_sym_string] = ACTIONS(640), + [anon_sym_symbol] = ACTIONS(640), + [anon_sym_object] = ACTIONS(640), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(768), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [46] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(5943), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4201), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(614), + [anon_sym_type] = ACTIONS(616), + [anon_sym_namespace] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(622), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(624), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(626), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(628), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(630), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -27039,10 +30871,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(634), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(638), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27064,282 +30896,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), + [anon_sym_static] = ACTIONS(640), + [anon_sym_readonly] = ACTIONS(640), + [anon_sym_get] = ACTIONS(640), + [anon_sym_set] = ACTIONS(640), + [anon_sym_declare] = ACTIONS(642), + [anon_sym_public] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_override] = ACTIONS(640), + [anon_sym_module] = ACTIONS(644), + [anon_sym_any] = ACTIONS(640), + [anon_sym_number] = ACTIONS(640), + [anon_sym_boolean] = ACTIONS(640), + [anon_sym_string] = ACTIONS(640), + [anon_sym_symbol] = ACTIONS(640), + [anon_sym_object] = ACTIONS(640), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_import] = STATE(3318), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4344), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(4039), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5049), - [sym_optional_tuple_parameter] = STATE(5049), - [sym_optional_type] = STATE(5049), - [sym_rest_type] = STATE(5049), - [sym__tuple_type_member] = STATE(5049), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(630), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [45] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(804), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [47] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(828), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4201), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(614), + [anon_sym_type] = ACTIONS(616), + [anon_sym_namespace] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(622), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(624), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(626), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(628), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(630), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -27353,10 +31028,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(634), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(638), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27378,125 +31053,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), + [anon_sym_static] = ACTIONS(640), + [anon_sym_readonly] = ACTIONS(640), + [anon_sym_get] = ACTIONS(640), + [anon_sym_set] = ACTIONS(640), + [anon_sym_declare] = ACTIONS(642), + [anon_sym_public] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_override] = ACTIONS(640), + [anon_sym_module] = ACTIONS(644), + [anon_sym_any] = ACTIONS(640), + [anon_sym_number] = ACTIONS(640), + [anon_sym_boolean] = ACTIONS(640), + [anon_sym_string] = ACTIONS(640), + [anon_sym_symbol] = ACTIONS(640), + [anon_sym_object] = ACTIONS(640), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [46] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(833), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [48] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(846), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4201), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(614), + [anon_sym_type] = ACTIONS(616), + [anon_sym_namespace] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(622), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(624), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(626), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(628), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(630), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -27510,10 +31185,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(634), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(638), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27535,125 +31210,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), + [anon_sym_static] = ACTIONS(640), + [anon_sym_readonly] = ACTIONS(640), + [anon_sym_get] = ACTIONS(640), + [anon_sym_set] = ACTIONS(640), + [anon_sym_declare] = ACTIONS(642), + [anon_sym_public] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_override] = ACTIONS(640), + [anon_sym_module] = ACTIONS(644), + [anon_sym_any] = ACTIONS(640), + [anon_sym_number] = ACTIONS(640), + [anon_sym_boolean] = ACTIONS(640), + [anon_sym_string] = ACTIONS(640), + [anon_sym_symbol] = ACTIONS(640), + [anon_sym_object] = ACTIONS(640), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [47] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(846), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [49] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(774), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4201), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(614), + [anon_sym_type] = ACTIONS(616), + [anon_sym_namespace] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(622), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(624), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(626), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(628), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(630), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -27667,10 +31342,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(634), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(638), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27692,107 +31367,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), + [anon_sym_static] = ACTIONS(640), + [anon_sym_readonly] = ACTIONS(640), + [anon_sym_get] = ACTIONS(640), + [anon_sym_set] = ACTIONS(640), + [anon_sym_declare] = ACTIONS(642), + [anon_sym_public] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_override] = ACTIONS(640), + [anon_sym_module] = ACTIONS(644), + [anon_sym_any] = ACTIONS(640), + [anon_sym_number] = ACTIONS(640), + [anon_sym_boolean] = ACTIONS(640), + [anon_sym_string] = ACTIONS(640), + [anon_sym_symbol] = ACTIONS(640), + [anon_sym_object] = ACTIONS(640), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(768), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3848), + [50] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(828), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27870,557 +31545,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_import] = STATE(3318), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4344), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(4039), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5049), - [sym_optional_tuple_parameter] = STATE(5049), - [sym_optional_type] = STATE(5049), - [sym_rest_type] = STATE(5049), - [sym__tuple_type_member] = STATE(5049), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(672), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [50] = { - [sym_import] = STATE(3318), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4344), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(4039), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5049), - [sym_optional_tuple_parameter] = STATE(5049), - [sym_optional_type] = STATE(5049), - [sym_rest_type] = STATE(5049), - [sym__tuple_type_member] = STATE(5049), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(674), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, [51] = { - [sym_import] = STATE(3318), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1883), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(5152), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4344), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(4039), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5049), - [sym_optional_tuple_parameter] = STATE(5049), - [sym_optional_type] = STATE(5049), - [sym_rest_type] = STATE(5049), - [sym__tuple_type_member] = STATE(5049), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(5155), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(676), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [52] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(804), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3848), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(718), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4503), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28498,1046 +31702,575 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [53] = { - [sym_import] = STATE(3318), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4344), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(4039), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5049), - [sym_optional_tuple_parameter] = STATE(5049), - [sym_optional_type] = STATE(5049), - [sym_rest_type] = STATE(5049), - [sym__tuple_type_member] = STATE(5049), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(678), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [54] = { - [sym_import] = STATE(3318), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4344), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(4039), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5049), - [sym_optional_tuple_parameter] = STATE(5049), - [sym_optional_type] = STATE(5049), - [sym_rest_type] = STATE(5049), - [sym__tuple_type_member] = STATE(5049), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(680), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [55] = { - [sym_import] = STATE(3318), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1883), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(5152), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4344), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(4039), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5049), - [sym_optional_tuple_parameter] = STATE(5049), - [sym_optional_type] = STATE(5049), - [sym_rest_type] = STATE(5049), - [sym__tuple_type_member] = STATE(5049), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(5155), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), + [52] = { + [sym_import] = STATE(3866), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5843), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5145), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(5024), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5884), + [sym_optional_tuple_parameter] = STATE(5884), + [sym_optional_type] = STATE(5884), + [sym_rest_type] = STATE(5884), + [sym__tuple_type_member] = STATE(5884), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6661), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5849), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_typeof] = ACTIONS(558), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), + [anon_sym_let] = ACTIONS(548), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(566), [anon_sym_RBRACK] = ACTIONS(682), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [56] = { - [sym_import] = STATE(3318), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4344), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(4039), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5049), - [sym_optional_tuple_parameter] = STATE(5049), - [sym_optional_type] = STATE(5049), - [sym_rest_type] = STATE(5049), - [sym__tuple_type_member] = STATE(5049), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(684), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(572), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(192), [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(202), [sym_false] = ACTIONS(202), [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(658), + [sym_undefined] = ACTIONS(596), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), + [anon_sym_object] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [57] = { - [sym_import] = STATE(3318), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4344), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(4039), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5049), - [sym_optional_tuple_parameter] = STATE(5049), - [sym_optional_type] = STATE(5049), - [sym_rest_type] = STATE(5049), - [sym__tuple_type_member] = STATE(5049), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(686), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [53] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(846), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4503), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_while] = ACTIONS(45), + [anon_sym_do] = ACTIONS(47), + [anon_sym_try] = ACTIONS(49), + [anon_sym_break] = ACTIONS(51), + [anon_sym_continue] = ACTIONS(53), + [anon_sym_debugger] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_SEMI] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(75), + [anon_sym_function] = ACTIONS(77), + [anon_sym_new] = ACTIONS(79), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(658), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_static] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_get] = ACTIONS(101), + [anon_sym_set] = ACTIONS(101), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_public] = ACTIONS(101), + [anon_sym_private] = ACTIONS(101), + [anon_sym_protected] = ACTIONS(101), + [anon_sym_override] = ACTIONS(101), + [anon_sym_module] = ACTIONS(105), + [anon_sym_any] = ACTIONS(101), + [anon_sym_number] = ACTIONS(101), + [anon_sym_boolean] = ACTIONS(101), + [anon_sym_string] = ACTIONS(101), + [anon_sym_symbol] = ACTIONS(101), + [anon_sym_object] = ACTIONS(101), + [anon_sym_abstract] = ACTIONS(107), + [anon_sym_interface] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [58] = { - [sym_import] = STATE(3318), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4344), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(4039), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(4889), - [sym_optional_tuple_parameter] = STATE(4889), - [sym_optional_type] = STATE(4889), - [sym_rest_type] = STATE(4889), - [sym__tuple_type_member] = STATE(4889), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(688), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(690), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [54] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(774), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4589), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_type] = ACTIONS(650), + [anon_sym_namespace] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(654), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(656), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(658), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(47), + [anon_sym_try] = ACTIONS(49), + [anon_sym_break] = ACTIONS(51), + [anon_sym_continue] = ACTIONS(53), + [anon_sym_debugger] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_SEMI] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(664), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(666), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(658), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_static] = ACTIONS(668), + [anon_sym_readonly] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [anon_sym_declare] = ACTIONS(670), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_protected] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_module] = ACTIONS(672), + [anon_sym_any] = ACTIONS(668), + [anon_sym_number] = ACTIONS(668), + [anon_sym_boolean] = ACTIONS(668), + [anon_sym_string] = ACTIONS(668), + [anon_sym_symbol] = ACTIONS(668), + [anon_sym_object] = ACTIONS(668), + [anon_sym_abstract] = ACTIONS(107), + [anon_sym_interface] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [59] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(767), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3863), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [55] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(828), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4589), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_type] = ACTIONS(650), + [anon_sym_namespace] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(654), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(656), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(658), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(660), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(662), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -29551,10 +32284,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(664), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(666), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29576,125 +32309,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), + [anon_sym_static] = ACTIONS(668), + [anon_sym_readonly] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [anon_sym_declare] = ACTIONS(670), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_protected] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_module] = ACTIONS(672), + [anon_sym_any] = ACTIONS(668), + [anon_sym_number] = ACTIONS(668), + [anon_sym_boolean] = ACTIONS(668), + [anon_sym_string] = ACTIONS(668), + [anon_sym_symbol] = ACTIONS(668), + [anon_sym_object] = ACTIONS(668), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [60] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(787), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3863), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [56] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(7508), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4589), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_type] = ACTIONS(650), + [anon_sym_namespace] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(654), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(656), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(658), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(660), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(662), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -29708,10 +32441,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(664), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(666), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29733,125 +32466,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), + [anon_sym_static] = ACTIONS(668), + [anon_sym_readonly] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [anon_sym_declare] = ACTIONS(670), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_protected] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_module] = ACTIONS(672), + [anon_sym_any] = ACTIONS(668), + [anon_sym_number] = ACTIONS(668), + [anon_sym_boolean] = ACTIONS(668), + [anon_sym_string] = ACTIONS(668), + [anon_sym_symbol] = ACTIONS(668), + [anon_sym_object] = ACTIONS(668), + [anon_sym_abstract] = ACTIONS(107), + [anon_sym_interface] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [57] = { + [sym_import] = STATE(3866), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5145), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(5024), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5884), + [sym_optional_tuple_parameter] = STATE(5884), + [sym_optional_type] = STATE(5884), + [sym_rest_type] = STATE(5884), + [sym__tuple_type_member] = STATE(5884), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6661), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_typeof] = ACTIONS(558), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_RBRACK] = ACTIONS(684), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(572), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), [anon_sym_any] = ACTIONS(602), [anon_sym_number] = ACTIONS(602), [anon_sym_boolean] = ACTIONS(602), [anon_sym_string] = ACTIONS(602), [anon_sym_symbol] = ACTIONS(602), [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [61] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(809), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3863), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), + [58] = { + [sym_import] = STATE(3866), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5145), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(5024), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5884), + [sym_optional_tuple_parameter] = STATE(5884), + [sym_optional_type] = STATE(5884), + [sym_rest_type] = STATE(5884), + [sym__tuple_type_member] = STATE(5884), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6661), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_typeof] = ACTIONS(558), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_RBRACK] = ACTIONS(686), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(572), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), + [anon_sym_object] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [59] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(835), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4503), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -29865,10 +32912,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(75), + [anon_sym_function] = ACTIONS(77), + [anon_sym_new] = ACTIONS(79), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29890,125 +32937,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), + [anon_sym_static] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_get] = ACTIONS(101), + [anon_sym_set] = ACTIONS(101), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_public] = ACTIONS(101), + [anon_sym_private] = ACTIONS(101), + [anon_sym_protected] = ACTIONS(101), + [anon_sym_override] = ACTIONS(101), + [anon_sym_module] = ACTIONS(105), + [anon_sym_any] = ACTIONS(101), + [anon_sym_number] = ACTIONS(101), + [anon_sym_boolean] = ACTIONS(101), + [anon_sym_string] = ACTIONS(101), + [anon_sym_symbol] = ACTIONS(101), + [anon_sym_object] = ACTIONS(101), + [anon_sym_abstract] = ACTIONS(107), + [anon_sym_interface] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [60] = { + [sym_import] = STATE(3866), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5843), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5145), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(5024), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5884), + [sym_optional_tuple_parameter] = STATE(5884), + [sym_optional_type] = STATE(5884), + [sym_rest_type] = STATE(5884), + [sym__tuple_type_member] = STATE(5884), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6661), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5849), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_typeof] = ACTIONS(558), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_RBRACK] = ACTIONS(688), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(572), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), [anon_sym_any] = ACTIONS(602), [anon_sym_number] = ACTIONS(602), [anon_sym_boolean] = ACTIONS(602), [anon_sym_string] = ACTIONS(602), [anon_sym_symbol] = ACTIONS(602), [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [62] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(823), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3863), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), + [61] = { + [sym_import] = STATE(3866), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5145), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(5024), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5884), + [sym_optional_tuple_parameter] = STATE(5884), + [sym_optional_type] = STATE(5884), + [sym_rest_type] = STATE(5884), + [sym__tuple_type_member] = STATE(5884), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6661), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_typeof] = ACTIONS(558), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_RBRACK] = ACTIONS(690), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(572), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(598), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(602), + [anon_sym_number] = ACTIONS(602), + [anon_sym_boolean] = ACTIONS(602), + [anon_sym_string] = ACTIONS(602), + [anon_sym_symbol] = ACTIONS(602), + [anon_sym_object] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [62] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(846), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4589), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_type] = ACTIONS(650), + [anon_sym_namespace] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(654), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(656), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(658), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(660), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(662), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30022,10 +33383,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(664), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(666), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30047,125 +33408,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), + [anon_sym_static] = ACTIONS(668), + [anon_sym_readonly] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [anon_sym_declare] = ACTIONS(670), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_protected] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_module] = ACTIONS(672), + [anon_sym_any] = ACTIONS(668), + [anon_sym_number] = ACTIONS(668), + [anon_sym_boolean] = ACTIONS(668), + [anon_sym_string] = ACTIONS(668), + [anon_sym_symbol] = ACTIONS(668), + [anon_sym_object] = ACTIONS(668), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(768), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3863), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(5780), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4201), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(614), + [anon_sym_type] = ACTIONS(616), + [anon_sym_namespace] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(622), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(624), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(626), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(628), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(630), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30179,10 +33540,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(634), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(638), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30204,125 +33565,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), + [anon_sym_static] = ACTIONS(640), + [anon_sym_readonly] = ACTIONS(640), + [anon_sym_get] = ACTIONS(640), + [anon_sym_set] = ACTIONS(640), + [anon_sym_declare] = ACTIONS(642), + [anon_sym_public] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_override] = ACTIONS(640), + [anon_sym_module] = ACTIONS(644), + [anon_sym_any] = ACTIONS(640), + [anon_sym_number] = ACTIONS(640), + [anon_sym_boolean] = ACTIONS(640), + [anon_sym_string] = ACTIONS(640), + [anon_sym_symbol] = ACTIONS(640), + [anon_sym_object] = ACTIONS(640), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [64] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(804), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3863), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(793), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4589), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_type] = ACTIONS(650), + [anon_sym_namespace] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(654), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(656), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(658), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(660), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(662), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30336,10 +33697,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(664), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(666), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30361,125 +33722,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), + [anon_sym_static] = ACTIONS(668), + [anon_sym_readonly] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [anon_sym_declare] = ACTIONS(670), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_protected] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_module] = ACTIONS(672), + [anon_sym_any] = ACTIONS(668), + [anon_sym_number] = ACTIONS(668), + [anon_sym_boolean] = ACTIONS(668), + [anon_sym_string] = ACTIONS(668), + [anon_sym_symbol] = ACTIONS(668), + [anon_sym_object] = ACTIONS(668), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [65] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(833), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3863), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(823), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4503), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30493,10 +33854,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(75), + [anon_sym_function] = ACTIONS(77), + [anon_sym_new] = ACTIONS(79), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30518,125 +33879,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), + [anon_sym_static] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_get] = ACTIONS(101), + [anon_sym_set] = ACTIONS(101), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_public] = ACTIONS(101), + [anon_sym_private] = ACTIONS(101), + [anon_sym_protected] = ACTIONS(101), + [anon_sym_override] = ACTIONS(101), + [anon_sym_module] = ACTIONS(105), + [anon_sym_any] = ACTIONS(101), + [anon_sym_number] = ACTIONS(101), + [anon_sym_boolean] = ACTIONS(101), + [anon_sym_string] = ACTIONS(101), + [anon_sym_symbol] = ACTIONS(101), + [anon_sym_object] = ACTIONS(101), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [66] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(846), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3863), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(771), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4589), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_type] = ACTIONS(650), + [anon_sym_namespace] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(654), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(656), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(658), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(660), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(662), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30650,10 +34011,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(664), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(666), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30675,125 +34036,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), + [anon_sym_static] = ACTIONS(668), + [anon_sym_readonly] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [anon_sym_declare] = ACTIONS(670), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_protected] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_module] = ACTIONS(672), + [anon_sym_any] = ACTIONS(668), + [anon_sym_number] = ACTIONS(668), + [anon_sym_boolean] = ACTIONS(668), + [anon_sym_string] = ACTIONS(668), + [anon_sym_symbol] = ACTIONS(668), + [anon_sym_object] = ACTIONS(668), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [67] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(5134), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3863), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(774), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4503), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30807,10 +34168,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(75), + [anon_sym_function] = ACTIONS(77), + [anon_sym_new] = ACTIONS(79), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30832,125 +34193,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), + [anon_sym_static] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_get] = ACTIONS(101), + [anon_sym_set] = ACTIONS(101), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_public] = ACTIONS(101), + [anon_sym_private] = ACTIONS(101), + [anon_sym_protected] = ACTIONS(101), + [anon_sym_override] = ACTIONS(101), + [anon_sym_module] = ACTIONS(105), + [anon_sym_any] = ACTIONS(101), + [anon_sym_number] = ACTIONS(101), + [anon_sym_boolean] = ACTIONS(101), + [anon_sym_string] = ACTIONS(101), + [anon_sym_symbol] = ACTIONS(101), + [anon_sym_object] = ACTIONS(101), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [68] = { - [sym_export_statement] = STATE(854), - [sym_declaration] = STATE(854), - [sym_import] = STATE(3306), - [sym_import_statement] = STATE(854), - [sym_statement] = STATE(5574), - [sym_expression_statement] = STATE(854), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_statement_block] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_for_in_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_with_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_debugger_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_empty_statement] = STATE(854), - [sym_labeled_statement] = STATE(854), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(3739), + [sym_import_statement] = STATE(864), + [sym_statement] = STATE(835), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4589), + [sym_identifier] = ACTIONS(646), + [anon_sym_export] = ACTIONS(648), + [anon_sym_type] = ACTIONS(650), + [anon_sym_namespace] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(620), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(654), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(656), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(658), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(660), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(662), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -30964,10 +34325,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(664), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(666), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30989,74 +34350,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), + [anon_sym_static] = ACTIONS(668), + [anon_sym_readonly] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [anon_sym_declare] = ACTIONS(670), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_protected] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_module] = ACTIONS(672), + [anon_sym_any] = ACTIONS(668), + [anon_sym_number] = ACTIONS(668), + [anon_sym_boolean] = ACTIONS(668), + [anon_sym_string] = ACTIONS(668), + [anon_sym_symbol] = ACTIONS(668), + [anon_sym_object] = ACTIONS(668), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [69] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [aux_sym_object_repeat1] = STATE(5988), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(692), [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), @@ -31166,52 +34527,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(692), [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), @@ -31321,52 +34682,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [aux_sym_object_repeat1] = STATE(4671), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(692), [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), @@ -31476,126 +34837,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_import] = STATE(3395), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1532), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym__formal_parameter] = STATE(4890), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5725), - [sym_string] = STATE(2155), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(4890), - [sym_optional_parameter] = STATE(4890), - [sym__parameter_name] = STATE(3493), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4557), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3816), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1461), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym__formal_parameter] = STATE(5828), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7509), + [sym_string] = STATE(2399), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4792), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5828), + [sym_optional_parameter] = STATE(5828), + [sym__parameter_name] = STATE(3998), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5457), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), [anon_sym_LBRACE] = ACTIONS(731), [anon_sym_typeof] = ACTIONS(733), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), + [anon_sym_let] = ACTIONS(548), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(140), [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), [anon_sym_LBRACK] = ACTIONS(737), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(739), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(745), [anon_sym_DASH] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(747), [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(751), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(753), @@ -31603,17 +34964,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(753), [sym_undefined] = ACTIONS(755), [anon_sym_AT] = ACTIONS(757), - [anon_sym_static] = ACTIONS(610), + [anon_sym_static] = ACTIONS(548), [anon_sym_readonly] = ACTIONS(759), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(610), + [anon_sym_declare] = ACTIONS(548), [anon_sym_public] = ACTIONS(763), [anon_sym_private] = ACTIONS(763), [anon_sym_protected] = ACTIONS(763), [anon_sym_override] = ACTIONS(765), - [anon_sym_module] = ACTIONS(610), + [anon_sym_module] = ACTIONS(548), [anon_sym_any] = ACTIONS(767), [anon_sym_number] = ACTIONS(767), [anon_sym_boolean] = ACTIONS(767), @@ -31630,52 +34991,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [73] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4273), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(4620), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -31784,52 +35145,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3816), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1464), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym__formal_parameter] = STATE(5828), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7478), + [sym_string] = STATE(2399), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4792), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5828), + [sym_optional_parameter] = STATE(5828), + [sym__parameter_name] = STATE(3998), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5381), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(737), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(739), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(747), + [sym_number] = ACTIONS(749), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(751), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_null] = ACTIONS(753), + [sym_undefined] = ACTIONS(755), + [anon_sym_AT] = ACTIONS(757), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(759), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(763), + [anon_sym_private] = ACTIONS(763), + [anon_sym_protected] = ACTIONS(763), + [anon_sym_override] = ACTIONS(765), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(767), + [anon_sym_number] = ACTIONS(767), + [anon_sym_boolean] = ACTIONS(767), + [anon_sym_string] = ACTIONS(767), + [anon_sym_symbol] = ACTIONS(767), + [anon_sym_object] = ACTIONS(767), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [75] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(4909), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -31937,53 +35452,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4151), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [76] = { + [sym_import] = STATE(3816), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1464), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym__formal_parameter] = STATE(5828), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7478), + [sym_string] = STATE(2399), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4792), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5828), + [sym_optional_parameter] = STATE(5828), + [sym__parameter_name] = STATE(3998), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5457), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(729), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(737), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(739), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(747), + [sym_number] = ACTIONS(749), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(751), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_null] = ACTIONS(753), + [sym_undefined] = ACTIONS(755), + [anon_sym_AT] = ACTIONS(757), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(759), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(763), + [anon_sym_private] = ACTIONS(763), + [anon_sym_protected] = ACTIONS(763), + [anon_sym_override] = ACTIONS(765), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(767), + [anon_sym_number] = ACTIONS(767), + [anon_sym_boolean] = ACTIONS(767), + [anon_sym_string] = ACTIONS(767), + [anon_sym_symbol] = ACTIONS(767), + [anon_sym_object] = ACTIONS(767), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [77] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5161), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -32091,71 +35760,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4154), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [78] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(4909), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(224), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(128), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(776), [sym_glimmer_opening_tag] = ACTIONS(148), @@ -32166,7 +35835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), @@ -32217,7 +35886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(784), [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(799), + [sym_this] = ACTIONS(795), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), @@ -32245,53 +35914,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [77] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4300), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [79] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(4615), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -32371,7 +36040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(784), [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(801), + [sym_this] = ACTIONS(799), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), @@ -32399,225 +36068,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_import] = STATE(3395), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1532), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym__formal_parameter] = STATE(4890), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5725), - [sym_string] = STATE(2155), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(4890), - [sym_optional_parameter] = STATE(4890), - [sym__parameter_name] = STATE(3493), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4455), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(737), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(747), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(751), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_null] = ACTIONS(753), - [sym_undefined] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(759), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(763), - [anon_sym_private] = ACTIONS(763), - [anon_sym_protected] = ACTIONS(763), - [anon_sym_override] = ACTIONS(765), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(767), - [anon_sym_number] = ACTIONS(767), - [anon_sym_boolean] = ACTIONS(767), - [anon_sym_string] = ACTIONS(767), - [anon_sym_symbol] = ACTIONS(767), - [anon_sym_object] = ACTIONS(767), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [79] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4300), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [80] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5019), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(227), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(776), [sym_glimmer_opening_tag] = ACTIONS(148), @@ -32628,7 +36143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(779), [anon_sym_using] = ACTIONS(166), @@ -32707,207 +36222,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [80] = { - [sym_import] = STATE(3395), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1511), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym__formal_parameter] = STATE(4890), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5635), - [sym_string] = STATE(2155), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(4890), - [sym_optional_parameter] = STATE(4890), - [sym__parameter_name] = STATE(3493), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4455), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(737), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(739), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(747), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(751), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_null] = ACTIONS(753), - [sym_undefined] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(759), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(763), - [anon_sym_private] = ACTIONS(763), - [anon_sym_protected] = ACTIONS(763), - [anon_sym_override] = ACTIONS(765), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(767), - [anon_sym_number] = ACTIONS(767), - [anon_sym_boolean] = ACTIONS(767), - [anon_sym_string] = ACTIONS(767), - [anon_sym_symbol] = ACTIONS(767), - [anon_sym_object] = ACTIONS(767), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, [81] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4268), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5173), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -33016,52 +36377,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [82] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4296), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5176), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -33170,72 +36531,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [83] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(807), [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_RBRACE] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(227), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_RBRACK] = ACTIONS(227), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), @@ -33244,7 +36605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), @@ -33273,7 +36634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -33323,88 +36684,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [84] = { - [sym_import] = STATE(3290), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(4890), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(4890), - [sym_optional_parameter] = STATE(4890), - [sym__parameter_name] = STATE(3493), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4557), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3819), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5828), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4792), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5828), + [sym_optional_parameter] = STATE(5828), + [sym__parameter_name] = STATE(3998), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5342), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(550), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), @@ -33431,7 +36792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(176), [anon_sym_DASH] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(185), @@ -33476,83 +36837,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [85] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3819), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5828), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4792), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5828), + [sym_optional_parameter] = STATE(5828), + [sym__parameter_name] = STATE(3998), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5395), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(113), + [anon_sym_export] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(115), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(146), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(164), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(176), + [anon_sym_DASH] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(829), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(204), + [anon_sym_AT] = ACTIONS(757), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(831), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(115), + [anon_sym_public] = ACTIONS(833), + [anon_sym_private] = ACTIONS(833), + [anon_sym_protected] = ACTIONS(833), + [anon_sym_override] = ACTIONS(835), + [anon_sym_module] = ACTIONS(115), + [anon_sym_any] = ACTIONS(210), + [anon_sym_number] = ACTIONS(210), + [anon_sym_boolean] = ACTIONS(210), + [anon_sym_string] = ACTIONS(210), + [anon_sym_symbol] = ACTIONS(210), + [anon_sym_object] = ACTIONS(210), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [86] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(837), [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(847), + [anon_sym_COLON] = ACTIONS(128), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(128), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(847), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(849), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -33579,7 +37093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -33611,7 +37125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(839), [anon_sym_get] = ACTIONS(839), [anon_sym_set] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_declare] = ACTIONS(839), [anon_sym_public] = ACTIONS(839), [anon_sym_private] = ACTIONS(839), @@ -33628,242 +37142,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_import] = STATE(3290), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(4890), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(4890), - [sym_optional_parameter] = STATE(4890), - [sym__parameter_name] = STATE(3493), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4497), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(131), + [87] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(853), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(853), [anon_sym_await] = ACTIONS(142), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(853), [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(156), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(176), - [anon_sym_DASH] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(185), + [anon_sym_void] = ACTIONS(187), [anon_sym_delete] = ACTIONS(187), [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(829), + [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(204), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(831), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(833), - [anon_sym_private] = ACTIONS(833), - [anon_sym_protected] = ACTIONS(833), - [anon_sym_override] = ACTIONS(835), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(210), - [anon_sym_number] = ACTIONS(210), - [anon_sym_boolean] = ACTIONS(210), - [anon_sym_string] = ACTIONS(210), - [anon_sym_symbol] = ACTIONS(210), - [anon_sym_object] = ACTIONS(210), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [87] = { - [sym_import] = STATE(3290), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(4890), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(4890), - [sym_optional_parameter] = STATE(4890), - [sym__parameter_name] = STATE(3493), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4483), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(253), + [88] = { + [sym_import] = STATE(3819), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5828), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4792), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5828), + [sym_optional_parameter] = STATE(5828), + [sym__parameter_name] = STATE(3998), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5381), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(550), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), @@ -33890,7 +37404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(176), [anon_sym_DASH] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(185), @@ -33934,89 +37448,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [88] = { - [sym_import] = STATE(3290), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(4890), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(4890), - [sym_optional_parameter] = STATE(4890), - [sym__parameter_name] = STATE(3493), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4525), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(253), + [89] = { + [sym_import] = STATE(3819), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5828), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4792), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5828), + [sym_optional_parameter] = STATE(5828), + [sym__parameter_name] = STATE(3998), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5403), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(550), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), @@ -34043,7 +37557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(176), [anon_sym_DASH] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(185), @@ -34087,89 +37601,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [89] = { - [sym_import] = STATE(3290), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(4890), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(4890), - [sym_optional_parameter] = STATE(4890), - [sym__parameter_name] = STATE(3493), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4455), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(253), + [90] = { + [sym_import] = STATE(3819), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5828), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4792), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5828), + [sym_optional_parameter] = STATE(5828), + [sym__parameter_name] = STATE(3998), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5457), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(550), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), @@ -34196,7 +37710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(176), [anon_sym_DASH] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(185), @@ -34240,84 +37754,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [90] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [91] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(224), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(227), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_RPAREN] = ACTIONS(162), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -34344,7 +37858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -34372,80 +37886,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [91] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [92] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(837), [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), @@ -34458,7 +37971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(845), [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), @@ -34466,11 +37979,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(847), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(849), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -34497,7 +38010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -34545,64 +38058,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [92] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [93] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), + [anon_sym_type] = ACTIONS(839), [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(162), @@ -34610,7 +38123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(845), [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), @@ -34618,11 +38131,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(847), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(849), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -34649,7 +38162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -34677,104 +38190,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(839), + [anon_sym_readonly] = ACTIONS(839), + [anon_sym_get] = ACTIONS(839), + [anon_sym_set] = ACTIONS(839), + [anon_sym_declare] = ACTIONS(839), + [anon_sym_public] = ACTIONS(839), + [anon_sym_private] = ACTIONS(839), + [anon_sym_protected] = ACTIONS(839), + [anon_sym_override] = ACTIONS(839), + [anon_sym_module] = ACTIONS(839), + [anon_sym_any] = ACTIONS(839), + [anon_sym_number] = ACTIONS(839), + [anon_sym_boolean] = ACTIONS(839), + [anon_sym_string] = ACTIONS(839), + [anon_sym_symbol] = ACTIONS(839), + [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [93] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [94] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(692), + [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(857), + [anon_sym_type] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(162), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(821), - [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(711), + [anon_sym_function] = ACTIONS(713), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(717), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -34801,7 +38312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -34819,112 +38330,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(694), + [anon_sym_readonly] = ACTIONS(694), + [anon_sym_get] = ACTIONS(694), + [anon_sym_set] = ACTIONS(694), + [anon_sym_declare] = ACTIONS(694), + [anon_sym_public] = ACTIONS(694), + [anon_sym_private] = ACTIONS(694), + [anon_sym_protected] = ACTIONS(694), + [anon_sym_override] = ACTIONS(694), + [anon_sym_module] = ACTIONS(694), + [anon_sym_any] = ACTIONS(694), + [anon_sym_number] = ACTIONS(694), + [anon_sym_boolean] = ACTIONS(694), + [anon_sym_string] = ACTIONS(694), + [anon_sym_symbol] = ACTIONS(694), + [anon_sym_object] = ACTIONS(694), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [94] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [95] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(692), + [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(224), + [anon_sym_type] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_namespace] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(861), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), - [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_DOT] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(711), + [anon_sym_function] = ACTIONS(713), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(717), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -34951,7 +38463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -34969,82 +38481,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(694), + [anon_sym_readonly] = ACTIONS(694), + [anon_sym_get] = ACTIONS(694), + [anon_sym_set] = ACTIONS(694), + [anon_sym_declare] = ACTIONS(694), + [anon_sym_public] = ACTIONS(694), + [anon_sym_private] = ACTIONS(694), + [anon_sym_protected] = ACTIONS(694), + [anon_sym_override] = ACTIONS(694), + [anon_sym_module] = ACTIONS(694), + [anon_sym_any] = ACTIONS(694), + [anon_sym_number] = ACTIONS(694), + [anon_sym_boolean] = ACTIONS(694), + [anon_sym_string] = ACTIONS(694), + [anon_sym_symbol] = ACTIONS(694), + [anon_sym_object] = ACTIONS(694), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [95] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [96] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(692), [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), @@ -35060,9 +38572,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), - [anon_sym_in] = ACTIONS(861), - [anon_sym_of] = ACTIONS(864), + [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(863), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), @@ -35151,69 +38663,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [96] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), + [97] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(865), + [anon_sym_export] = ACTIONS(867), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_type] = ACTIONS(867), + [anon_sym_EQ] = ACTIONS(869), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), + [anon_sym_namespace] = ACTIONS(871), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(694), + [anon_sym_let] = ACTIONS(867), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(866), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), @@ -35222,11 +38734,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(711), + [anon_sym_async] = ACTIONS(873), [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_EQ_GT] = ACTIONS(875), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(717), + [anon_sym_new] = ACTIONS(877), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -35253,7 +38765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -35281,103 +38793,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), + [anon_sym_static] = ACTIONS(867), + [anon_sym_readonly] = ACTIONS(867), + [anon_sym_get] = ACTIONS(867), + [anon_sym_set] = ACTIONS(867), + [anon_sym_declare] = ACTIONS(867), + [anon_sym_public] = ACTIONS(867), + [anon_sym_private] = ACTIONS(867), + [anon_sym_protected] = ACTIONS(867), + [anon_sym_override] = ACTIONS(867), + [anon_sym_module] = ACTIONS(867), + [anon_sym_any] = ACTIONS(867), + [anon_sym_number] = ACTIONS(867), + [anon_sym_boolean] = ACTIONS(867), + [anon_sym_string] = ACTIONS(867), + [anon_sym_symbol] = ACTIONS(867), + [anon_sym_object] = ACTIONS(867), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [97] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(868), - [anon_sym_export] = ACTIONS(870), + [98] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(870), - [anon_sym_EQ] = ACTIONS(872), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(870), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(821), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(875), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(880), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -35404,7 +38916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -35422,113 +38934,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(721), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), - [anon_sym_object] = ACTIONS(870), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [98] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [99] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(692), + [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(881), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), - [anon_sym_function] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(711), + [anon_sym_function] = ACTIONS(713), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(717), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -35555,7 +39067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -35573,113 +39085,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(694), + [anon_sym_readonly] = ACTIONS(694), + [anon_sym_get] = ACTIONS(694), + [anon_sym_set] = ACTIONS(694), + [anon_sym_declare] = ACTIONS(694), + [anon_sym_public] = ACTIONS(694), + [anon_sym_private] = ACTIONS(694), + [anon_sym_protected] = ACTIONS(694), + [anon_sym_override] = ACTIONS(694), + [anon_sym_module] = ACTIONS(694), + [anon_sym_any] = ACTIONS(694), + [anon_sym_number] = ACTIONS(694), + [anon_sym_boolean] = ACTIONS(694), + [anon_sym_string] = ACTIONS(694), + [anon_sym_symbol] = ACTIONS(694), + [anon_sym_object] = ACTIONS(694), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [99] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [100] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(692), + [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), + [anon_sym_in] = ACTIONS(883), + [anon_sym_of] = ACTIONS(886), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), - [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(711), + [anon_sym_function] = ACTIONS(713), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(717), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -35706,7 +39218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -35724,113 +39236,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(694), + [anon_sym_readonly] = ACTIONS(694), + [anon_sym_get] = ACTIONS(694), + [anon_sym_set] = ACTIONS(694), + [anon_sym_declare] = ACTIONS(694), + [anon_sym_public] = ACTIONS(694), + [anon_sym_private] = ACTIONS(694), + [anon_sym_protected] = ACTIONS(694), + [anon_sym_override] = ACTIONS(694), + [anon_sym_module] = ACTIONS(694), + [anon_sym_any] = ACTIONS(694), + [anon_sym_number] = ACTIONS(694), + [anon_sym_boolean] = ACTIONS(694), + [anon_sym_string] = ACTIONS(694), + [anon_sym_symbol] = ACTIONS(694), + [anon_sym_object] = ACTIONS(694), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [100] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(868), - [anon_sym_export] = ACTIONS(870), + [101] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(870), - [anon_sym_EQ] = ACTIONS(872), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(870), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(227), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(821), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(880), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -35857,7 +39369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -35875,111 +39387,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(721), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(870), - [anon_sym_readonly] = ACTIONS(870), - [anon_sym_get] = ACTIONS(870), - [anon_sym_set] = ACTIONS(870), - [anon_sym_declare] = ACTIONS(870), - [anon_sym_public] = ACTIONS(870), - [anon_sym_private] = ACTIONS(870), - [anon_sym_protected] = ACTIONS(870), - [anon_sym_override] = ACTIONS(870), - [anon_sym_module] = ACTIONS(870), - [anon_sym_any] = ACTIONS(870), - [anon_sym_number] = ACTIONS(870), - [anon_sym_boolean] = ACTIONS(870), - [anon_sym_string] = ACTIONS(870), - [anon_sym_symbol] = ACTIONS(870), - [anon_sym_object] = ACTIONS(870), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [101] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4458), + [102] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(807), [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(707), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), @@ -36008,7 +39520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -36040,7 +39552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(809), [anon_sym_get] = ACTIONS(809), [anon_sym_set] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(793), [anon_sym_declare] = ACTIONS(809), [anon_sym_public] = ACTIONS(809), [anon_sym_private] = ACTIONS(809), @@ -36054,71 +39565,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(809), [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [102] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), + [103] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(865), + [anon_sym_export] = ACTIONS(867), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_type] = ACTIONS(867), + [anon_sym_EQ] = ACTIONS(869), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), + [anon_sym_namespace] = ACTIONS(871), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(694), + [anon_sym_let] = ACTIONS(867), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), @@ -36128,11 +39640,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(711), + [anon_sym_async] = ACTIONS(873), [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_EQ_GT] = ACTIONS(875), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(717), + [anon_sym_new] = ACTIONS(877), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -36159,7 +39671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -36187,103 +39699,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), + [anon_sym_static] = ACTIONS(867), + [anon_sym_readonly] = ACTIONS(867), + [anon_sym_get] = ACTIONS(867), + [anon_sym_set] = ACTIONS(867), + [anon_sym_declare] = ACTIONS(867), + [anon_sym_public] = ACTIONS(867), + [anon_sym_private] = ACTIONS(867), + [anon_sym_protected] = ACTIONS(867), + [anon_sym_override] = ACTIONS(867), + [anon_sym_module] = ACTIONS(867), + [anon_sym_any] = ACTIONS(867), + [anon_sym_number] = ACTIONS(867), + [anon_sym_boolean] = ACTIONS(867), + [anon_sym_string] = ACTIONS(867), + [anon_sym_symbol] = ACTIONS(867), + [anon_sym_object] = ACTIONS(867), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), + [104] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(694), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(128), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(711), - [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(847), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(717), + [anon_sym_new] = ACTIONS(849), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -36310,7 +39822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -36328,82 +39840,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(721), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), + [anon_sym_static] = ACTIONS(839), + [anon_sym_readonly] = ACTIONS(839), + [anon_sym_get] = ACTIONS(839), + [anon_sym_set] = ACTIONS(839), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_declare] = ACTIONS(839), + [anon_sym_public] = ACTIONS(839), + [anon_sym_private] = ACTIONS(839), + [anon_sym_protected] = ACTIONS(839), + [anon_sym_override] = ACTIONS(839), + [anon_sym_module] = ACTIONS(839), + [anon_sym_any] = ACTIONS(839), + [anon_sym_number] = ACTIONS(839), + [anon_sym_boolean] = ACTIONS(839), + [anon_sym_string] = ACTIONS(839), + [anon_sym_symbol] = ACTIONS(839), + [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [105] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(692), [anon_sym_export] = ACTIONS(694), [anon_sym_STAR] = ACTIONS(122), @@ -36413,6 +39925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(698), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(694), @@ -36421,7 +39934,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(886), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), @@ -36510,82 +40022,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), + [106] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_type] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(892), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(694), + [anon_sym_let] = ACTIONS(890), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(897), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(128), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(711), - [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(899), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(717), + [anon_sym_new] = ACTIONS(903), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -36612,7 +40124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -36630,113 +40142,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(721), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), + [anon_sym_static] = ACTIONS(890), + [anon_sym_readonly] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_override] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [anon_sym_object] = ACTIONS(890), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [107] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), + [anon_sym_type] = ACTIONS(839), [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(905), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(847), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(905), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(847), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(849), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -36763,7 +40274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -36791,102 +40302,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(839), + [anon_sym_readonly] = ACTIONS(839), + [anon_sym_get] = ACTIONS(839), + [anon_sym_set] = ACTIONS(839), + [anon_sym_declare] = ACTIONS(839), + [anon_sym_public] = ACTIONS(839), + [anon_sym_private] = ACTIONS(839), + [anon_sym_protected] = ACTIONS(839), + [anon_sym_override] = ACTIONS(839), + [anon_sym_module] = ACTIONS(839), + [anon_sym_any] = ACTIONS(839), + [anon_sym_number] = ACTIONS(839), + [anon_sym_boolean] = ACTIONS(839), + [anon_sym_string] = ACTIONS(839), + [anon_sym_symbol] = ACTIONS(839), + [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(891), - [anon_sym_export] = ACTIONS(893), + [108] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(895), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(893), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(900), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(905), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(902), + [anon_sym_async] = ACTIONS(847), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(906), + [anon_sym_new] = ACTIONS(849), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -36913,7 +40424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -36941,81 +40452,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(893), - [anon_sym_readonly] = ACTIONS(893), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(893), - [anon_sym_declare] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_protected] = ACTIONS(893), - [anon_sym_override] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_any] = ACTIONS(893), - [anon_sym_number] = ACTIONS(893), - [anon_sym_boolean] = ACTIONS(893), - [anon_sym_string] = ACTIONS(893), - [anon_sym_symbol] = ACTIONS(893), - [anon_sym_object] = ACTIONS(893), + [anon_sym_static] = ACTIONS(839), + [anon_sym_readonly] = ACTIONS(839), + [anon_sym_get] = ACTIONS(839), + [anon_sym_set] = ACTIONS(839), + [anon_sym_declare] = ACTIONS(839), + [anon_sym_public] = ACTIONS(839), + [anon_sym_private] = ACTIONS(839), + [anon_sym_protected] = ACTIONS(839), + [anon_sym_override] = ACTIONS(839), + [anon_sym_module] = ACTIONS(839), + [anon_sym_any] = ACTIONS(839), + [anon_sym_number] = ACTIONS(839), + [anon_sym_boolean] = ACTIONS(839), + [anon_sym_string] = ACTIONS(839), + [anon_sym_symbol] = ACTIONS(839), + [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [109] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(807), [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(888), - [anon_sym_RBRACE] = ACTIONS(888), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(809), @@ -37023,18 +40532,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(888), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(707), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), @@ -37063,7 +40572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37108,81 +40617,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(809), [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(908), - [anon_sym_export] = ACTIONS(910), + [110] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(910), + [anon_sym_export] = ACTIONS(912), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(910), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_type] = ACTIONS(912), + [anon_sym_EQ] = ACTIONS(914), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(910), + [anon_sym_let] = ACTIONS(912), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(916), - [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(713), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(920), [anon_sym_using] = ACTIONS(166), @@ -37211,7 +40721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37229,111 +40739,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(910), - [anon_sym_readonly] = ACTIONS(910), - [anon_sym_get] = ACTIONS(910), - [anon_sym_set] = ACTIONS(910), - [anon_sym_declare] = ACTIONS(910), - [anon_sym_public] = ACTIONS(910), - [anon_sym_private] = ACTIONS(910), - [anon_sym_protected] = ACTIONS(910), - [anon_sym_override] = ACTIONS(910), - [anon_sym_module] = ACTIONS(910), - [anon_sym_any] = ACTIONS(910), - [anon_sym_number] = ACTIONS(910), - [anon_sym_boolean] = ACTIONS(910), - [anon_sym_string] = ACTIONS(910), - [anon_sym_symbol] = ACTIONS(910), - [anon_sym_object] = ACTIONS(910), + [anon_sym_static] = ACTIONS(912), + [anon_sym_readonly] = ACTIONS(912), + [anon_sym_get] = ACTIONS(912), + [anon_sym_set] = ACTIONS(912), + [anon_sym_declare] = ACTIONS(912), + [anon_sym_public] = ACTIONS(912), + [anon_sym_private] = ACTIONS(912), + [anon_sym_protected] = ACTIONS(912), + [anon_sym_override] = ACTIONS(912), + [anon_sym_module] = ACTIONS(912), + [anon_sym_any] = ACTIONS(912), + [anon_sym_number] = ACTIONS(912), + [anon_sym_boolean] = ACTIONS(912), + [anon_sym_string] = ACTIONS(912), + [anon_sym_symbol] = ACTIONS(912), + [anon_sym_object] = ACTIONS(912), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [111] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(922), + [anon_sym_export] = ACTIONS(924), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(926), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(924), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(930), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(918), + [anon_sym_EQ_GT] = ACTIONS(932), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(934), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -37360,7 +40871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37388,101 +40899,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(924), + [anon_sym_readonly] = ACTIONS(924), + [anon_sym_get] = ACTIONS(924), + [anon_sym_set] = ACTIONS(924), + [anon_sym_declare] = ACTIONS(924), + [anon_sym_public] = ACTIONS(924), + [anon_sym_private] = ACTIONS(924), + [anon_sym_protected] = ACTIONS(924), + [anon_sym_override] = ACTIONS(924), + [anon_sym_module] = ACTIONS(924), + [anon_sym_any] = ACTIONS(924), + [anon_sym_number] = ACTIONS(924), + [anon_sym_boolean] = ACTIONS(924), + [anon_sym_string] = ACTIONS(924), + [anon_sym_symbol] = ACTIONS(924), + [anon_sym_object] = ACTIONS(924), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [112] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(936), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(890), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(897), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(707), + [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(899), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(903), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -37509,7 +41020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37537,102 +41048,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(890), + [anon_sym_readonly] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_override] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [anon_sym_object] = ACTIONS(890), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(891), - [anon_sym_export] = ACTIONS(893), + [113] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(938), + [anon_sym_export] = ACTIONS(940), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(895), + [anon_sym_type] = ACTIONS(940), + [anon_sym_EQ] = ACTIONS(942), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(893), + [anon_sym_let] = ACTIONS(940), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(902), + [anon_sym_async] = ACTIONS(946), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(948), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(906), + [anon_sym_new] = ACTIONS(950), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -37659,7 +41168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37687,101 +41196,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(893), - [anon_sym_readonly] = ACTIONS(893), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(893), - [anon_sym_declare] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_protected] = ACTIONS(893), - [anon_sym_override] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_any] = ACTIONS(893), - [anon_sym_number] = ACTIONS(893), - [anon_sym_boolean] = ACTIONS(893), - [anon_sym_string] = ACTIONS(893), - [anon_sym_symbol] = ACTIONS(893), - [anon_sym_object] = ACTIONS(893), + [anon_sym_static] = ACTIONS(940), + [anon_sym_readonly] = ACTIONS(940), + [anon_sym_get] = ACTIONS(940), + [anon_sym_set] = ACTIONS(940), + [anon_sym_declare] = ACTIONS(940), + [anon_sym_public] = ACTIONS(940), + [anon_sym_private] = ACTIONS(940), + [anon_sym_protected] = ACTIONS(940), + [anon_sym_override] = ACTIONS(940), + [anon_sym_module] = ACTIONS(940), + [anon_sym_any] = ACTIONS(940), + [anon_sym_number] = ACTIONS(940), + [anon_sym_boolean] = ACTIONS(940), + [anon_sym_string] = ACTIONS(940), + [anon_sym_symbol] = ACTIONS(940), + [anon_sym_object] = ACTIONS(940), [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4024), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5434), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(807), - [anon_sym_export] = ACTIONS(809), + [114] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_type] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(936), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_namespace] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(809), + [anon_sym_let] = ACTIONS(890), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(954), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(821), + [anon_sym_async] = ACTIONS(899), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(823), + [anon_sym_new] = ACTIONS(903), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -37808,7 +41318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37836,101 +41346,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(809), - [anon_sym_readonly] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_declare] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_override] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_any] = ACTIONS(809), - [anon_sym_number] = ACTIONS(809), - [anon_sym_boolean] = ACTIONS(809), - [anon_sym_string] = ACTIONS(809), - [anon_sym_symbol] = ACTIONS(809), - [anon_sym_object] = ACTIONS(809), + [anon_sym_static] = ACTIONS(890), + [anon_sym_readonly] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_override] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [anon_sym_object] = ACTIONS(890), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(891), - [anon_sym_export] = ACTIONS(893), + [115] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(926), + [anon_sym_type] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(892), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(227), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(893), + [anon_sym_let] = ACTIONS(890), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(900), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(128), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(902), + [anon_sym_async] = ACTIONS(899), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(906), + [anon_sym_new] = ACTIONS(903), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -37957,7 +41467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -37985,100 +41495,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(893), - [anon_sym_readonly] = ACTIONS(893), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(893), - [anon_sym_declare] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_protected] = ACTIONS(893), - [anon_sym_override] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_any] = ACTIONS(893), - [anon_sym_number] = ACTIONS(893), - [anon_sym_boolean] = ACTIONS(893), - [anon_sym_string] = ACTIONS(893), - [anon_sym_symbol] = ACTIONS(893), - [anon_sym_object] = ACTIONS(893), + [anon_sym_static] = ACTIONS(890), + [anon_sym_readonly] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_override] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [anon_sym_object] = ACTIONS(890), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(928), - [anon_sym_export] = ACTIONS(930), + [116] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(930), - [anon_sym_EQ] = ACTIONS(932), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(930), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(821), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(948), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(938), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38105,7 +41615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -38123,93 +41633,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(719), [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(721), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(930), - [anon_sym_readonly] = ACTIONS(930), - [anon_sym_get] = ACTIONS(930), - [anon_sym_set] = ACTIONS(930), - [anon_sym_declare] = ACTIONS(930), - [anon_sym_public] = ACTIONS(930), - [anon_sym_private] = ACTIONS(930), - [anon_sym_protected] = ACTIONS(930), - [anon_sym_override] = ACTIONS(930), - [anon_sym_module] = ACTIONS(930), - [anon_sym_any] = ACTIONS(930), - [anon_sym_number] = ACTIONS(930), - [anon_sym_boolean] = ACTIONS(930), - [anon_sym_string] = ACTIONS(930), - [anon_sym_symbol] = ACTIONS(930), - [anon_sym_object] = ACTIONS(930), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1269), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1719), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1269), - [sym_subscript_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(928), - [anon_sym_export] = ACTIONS(930), + [117] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1245), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1633), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1245), + [sym_subscript_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1245), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(910), + [anon_sym_export] = ACTIONS(912), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(930), - [anon_sym_EQ] = ACTIONS(932), + [anon_sym_type] = ACTIONS(912), + [anon_sym_EQ] = ACTIONS(914), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(934), + [anon_sym_namespace] = ACTIONS(916), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(930), + [anon_sym_let] = ACTIONS(912), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(142), @@ -38223,11 +41733,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(936), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(938), + [anon_sym_new] = ACTIONS(920), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38282,102 +41792,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(721), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(930), - [anon_sym_readonly] = ACTIONS(930), - [anon_sym_get] = ACTIONS(930), - [anon_sym_set] = ACTIONS(930), - [anon_sym_declare] = ACTIONS(930), - [anon_sym_public] = ACTIONS(930), - [anon_sym_private] = ACTIONS(930), - [anon_sym_protected] = ACTIONS(930), - [anon_sym_override] = ACTIONS(930), - [anon_sym_module] = ACTIONS(930), - [anon_sym_any] = ACTIONS(930), - [anon_sym_number] = ACTIONS(930), - [anon_sym_boolean] = ACTIONS(930), - [anon_sym_string] = ACTIONS(930), - [anon_sym_symbol] = ACTIONS(930), - [anon_sym_object] = ACTIONS(930), + [anon_sym_static] = ACTIONS(912), + [anon_sym_readonly] = ACTIONS(912), + [anon_sym_get] = ACTIONS(912), + [anon_sym_set] = ACTIONS(912), + [anon_sym_declare] = ACTIONS(912), + [anon_sym_public] = ACTIONS(912), + [anon_sym_private] = ACTIONS(912), + [anon_sym_protected] = ACTIONS(912), + [anon_sym_override] = ACTIONS(912), + [anon_sym_module] = ACTIONS(912), + [anon_sym_any] = ACTIONS(912), + [anon_sym_number] = ACTIONS(912), + [anon_sym_boolean] = ACTIONS(912), + [anon_sym_string] = ACTIONS(912), + [anon_sym_symbol] = ACTIONS(912), + [anon_sym_object] = ACTIONS(912), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(891), - [anon_sym_export] = ACTIONS(893), + [118] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(922), + [anon_sym_export] = ACTIONS(924), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(893), + [anon_sym_type] = ACTIONS(924), [anon_sym_EQ] = ACTIONS(926), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(893), + [anon_sym_let] = ACTIONS(924), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(940), + [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(902), + [anon_sym_async] = ACTIONS(930), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(932), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(906), + [anon_sym_new] = ACTIONS(934), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38404,7 +41914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -38432,101 +41942,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(893), - [anon_sym_readonly] = ACTIONS(893), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(893), - [anon_sym_declare] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_protected] = ACTIONS(893), - [anon_sym_override] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_any] = ACTIONS(893), - [anon_sym_number] = ACTIONS(893), - [anon_sym_boolean] = ACTIONS(893), - [anon_sym_string] = ACTIONS(893), - [anon_sym_symbol] = ACTIONS(893), - [anon_sym_object] = ACTIONS(893), + [anon_sym_static] = ACTIONS(924), + [anon_sym_readonly] = ACTIONS(924), + [anon_sym_get] = ACTIONS(924), + [anon_sym_set] = ACTIONS(924), + [anon_sym_declare] = ACTIONS(924), + [anon_sym_public] = ACTIONS(924), + [anon_sym_private] = ACTIONS(924), + [anon_sym_protected] = ACTIONS(924), + [anon_sym_override] = ACTIONS(924), + [anon_sym_module] = ACTIONS(924), + [anon_sym_any] = ACTIONS(924), + [anon_sym_number] = ACTIONS(924), + [anon_sym_boolean] = ACTIONS(924), + [anon_sym_string] = ACTIONS(924), + [anon_sym_symbol] = ACTIONS(924), + [anon_sym_object] = ACTIONS(924), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [118] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(942), - [anon_sym_export] = ACTIONS(944), + [119] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(938), + [anon_sym_export] = ACTIONS(940), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(946), + [anon_sym_type] = ACTIONS(940), + [anon_sym_EQ] = ACTIONS(942), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(944), + [anon_sym_let] = ACTIONS(940), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(950), + [anon_sym_async] = ACTIONS(946), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(952), + [anon_sym_EQ_GT] = ACTIONS(948), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(954), + [anon_sym_new] = ACTIONS(950), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38553,7 +42062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -38581,80 +42090,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(944), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), + [anon_sym_static] = ACTIONS(940), + [anon_sym_readonly] = ACTIONS(940), + [anon_sym_get] = ACTIONS(940), + [anon_sym_set] = ACTIONS(940), + [anon_sym_declare] = ACTIONS(940), + [anon_sym_public] = ACTIONS(940), + [anon_sym_private] = ACTIONS(940), + [anon_sym_protected] = ACTIONS(940), + [anon_sym_override] = ACTIONS(940), + [anon_sym_module] = ACTIONS(940), + [anon_sym_any] = ACTIONS(940), + [anon_sym_number] = ACTIONS(940), + [anon_sym_boolean] = ACTIONS(940), + [anon_sym_string] = ACTIONS(940), + [anon_sym_symbol] = ACTIONS(940), + [anon_sym_object] = ACTIONS(940), [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [119] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [120] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5128), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6897), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(837), [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(839), @@ -38662,20 +42172,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(128), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(847), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(952), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(849), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38702,7 +42212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -38750,81 +42260,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [120] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(942), - [anon_sym_export] = ACTIONS(944), + [121] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4927), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6474), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(837), + [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(946), + [anon_sym_type] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(944), + [anon_sym_let] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(950), + [anon_sym_async] = ACTIONS(847), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(952), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(954), + [anon_sym_new] = ACTIONS(849), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38851,7 +42361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -38879,87 +42389,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(944), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), + [anon_sym_static] = ACTIONS(839), + [anon_sym_readonly] = ACTIONS(839), + [anon_sym_get] = ACTIONS(839), + [anon_sym_set] = ACTIONS(839), + [anon_sym_declare] = ACTIONS(839), + [anon_sym_public] = ACTIONS(839), + [anon_sym_private] = ACTIONS(839), + [anon_sym_protected] = ACTIONS(839), + [anon_sym_override] = ACTIONS(839), + [anon_sym_module] = ACTIONS(839), + [anon_sym_any] = ACTIONS(839), + [anon_sym_number] = ACTIONS(839), + [anon_sym_boolean] = ACTIONS(839), + [anon_sym_string] = ACTIONS(839), + [anon_sym_symbol] = ACTIONS(839), + [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [121] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(908), - [anon_sym_export] = ACTIONS(910), + [122] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(910), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(914), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(910), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(162), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), @@ -38968,11 +42479,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(916), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(918), + [anon_sym_EQ_GT] = ACTIONS(932), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(920), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -38999,7 +42510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -39027,81 +42538,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(910), - [anon_sym_readonly] = ACTIONS(910), - [anon_sym_get] = ACTIONS(910), - [anon_sym_set] = ACTIONS(910), - [anon_sym_declare] = ACTIONS(910), - [anon_sym_public] = ACTIONS(910), - [anon_sym_private] = ACTIONS(910), - [anon_sym_protected] = ACTIONS(910), - [anon_sym_override] = ACTIONS(910), - [anon_sym_module] = ACTIONS(910), - [anon_sym_any] = ACTIONS(910), - [anon_sym_number] = ACTIONS(910), - [anon_sym_boolean] = ACTIONS(910), - [anon_sym_string] = ACTIONS(910), - [anon_sym_symbol] = ACTIONS(910), - [anon_sym_object] = ACTIONS(910), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [122] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4351), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5521), - [aux_sym_export_statement_repeat1] = STATE(4458), + [123] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(807), [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(128), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(809), @@ -39109,9 +42618,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(128), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), @@ -39120,7 +42629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(956), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), @@ -39149,7 +42658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -39197,80 +42706,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [123] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [124] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(936), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(890), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), - [anon_sym_in] = ACTIONS(861), - [anon_sym_of] = ACTIONS(864), + [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(899), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(903), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -39297,7 +42806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -39325,100 +42834,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(890), + [anon_sym_readonly] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_override] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [anon_sym_object] = ACTIONS(890), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [124] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [125] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(962), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(960), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(847), + [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(966), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(956), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(968), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -39445,7 +42954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -39473,98 +42982,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(960), + [anon_sym_readonly] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_override] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [anon_sym_object] = ACTIONS(960), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [125] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [126] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(958), + [anon_sym_export] = ACTIONS(960), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_type] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(962), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(958), + [anon_sym_let] = ACTIONS(960), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(966), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(956), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(968), [anon_sym_using] = ACTIONS(166), @@ -39621,82 +43130,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(960), + [anon_sym_readonly] = ACTIONS(960), + [anon_sym_get] = ACTIONS(960), + [anon_sym_set] = ACTIONS(960), + [anon_sym_declare] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_override] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_any] = ACTIONS(960), + [anon_sym_number] = ACTIONS(960), + [anon_sym_boolean] = ACTIONS(960), + [anon_sym_string] = ACTIONS(960), + [anon_sym_symbol] = ACTIONS(960), + [anon_sym_object] = ACTIONS(960), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [126] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(891), - [anon_sym_export] = ACTIONS(893), + [127] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(926), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(893), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), @@ -39710,11 +43219,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(902), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(906), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -39741,7 +43250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -39769,100 +43278,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(893), - [anon_sym_readonly] = ACTIONS(893), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(893), - [anon_sym_declare] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_protected] = ACTIONS(893), - [anon_sym_override] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_any] = ACTIONS(893), - [anon_sym_number] = ACTIONS(893), - [anon_sym_boolean] = ACTIONS(893), - [anon_sym_string] = ACTIONS(893), - [anon_sym_symbol] = ACTIONS(893), - [anon_sym_object] = ACTIONS(893), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [127] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(891), - [anon_sym_export] = ACTIONS(893), + [128] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(926), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(898), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(893), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(902), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(906), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -39889,7 +43398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -39917,88 +43426,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(893), - [anon_sym_readonly] = ACTIONS(893), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(893), - [anon_sym_declare] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_protected] = ACTIONS(893), - [anon_sym_override] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_any] = ACTIONS(893), - [anon_sym_number] = ACTIONS(893), - [anon_sym_boolean] = ACTIONS(893), - [anon_sym_string] = ACTIONS(893), - [anon_sym_symbol] = ACTIONS(893), - [anon_sym_object] = ACTIONS(893), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [128] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [129] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(936), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(890), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(845), [anon_sym_RBRACK] = ACTIONS(162), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), @@ -40006,11 +43515,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(899), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(903), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -40037,7 +43546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -40065,100 +43574,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(890), + [anon_sym_readonly] = ACTIONS(890), + [anon_sym_get] = ACTIONS(890), + [anon_sym_set] = ACTIONS(890), + [anon_sym_declare] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_override] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_any] = ACTIONS(890), + [anon_sym_number] = ACTIONS(890), + [anon_sym_boolean] = ACTIONS(890), + [anon_sym_string] = ACTIONS(890), + [anon_sym_symbol] = ACTIONS(890), + [anon_sym_object] = ACTIONS(890), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [129] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [130] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(958), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), + [anon_sym_in] = ACTIONS(883), + [anon_sym_of] = ACTIONS(886), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(968), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -40185,7 +43694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -40213,100 +43722,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [130] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [131] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(972), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -40333,7 +43841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -40361,99 +43869,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [131] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [132] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(972), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(974), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -40480,7 +43988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -40508,99 +44016,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [132] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [133] = { + [sym_import] = STATE(3726), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(2024), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(6176), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7252), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2017), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5294), + [sym_pattern] = STATE(5972), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3702), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6424), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(976), + [anon_sym_export] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_typeof] = ACTIONS(982), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_const] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(988), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(990), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(998), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1000), + [sym_number] = ACTIONS(1002), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(1004), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(1006), + [sym_false] = ACTIONS(1006), + [sym_null] = ACTIONS(1006), + [sym_undefined] = ACTIONS(1008), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(1010), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(1014), + [anon_sym_number] = ACTIONS(1014), + [anon_sym_boolean] = ACTIONS(1014), + [anon_sym_string] = ACTIONS(1014), + [anon_sym_symbol] = ACTIONS(1014), + [anon_sym_object] = ACTIONS(1014), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [134] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6793), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(974), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -40627,7 +44282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -40655,99 +44310,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [133] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [135] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(976), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(1028), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -40774,7 +44429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -40802,99 +44457,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [134] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [136] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(978), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(1030), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -40921,7 +44576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -40949,99 +44604,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [135] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [137] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(980), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -41068,7 +44723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -41096,99 +44751,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [136] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3915), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5206), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [138] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(1032), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -41215,7 +44870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -41243,99 +44898,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [137] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [139] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(982), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(1034), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -41362,7 +45017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -41390,99 +45045,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [138] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [140] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(984), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(1036), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -41509,7 +45164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -41537,99 +45192,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [139] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [141] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(986), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(1038), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -41656,7 +45311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -41684,393 +45339,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, - [140] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(988), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), - [anon_sym_function] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [141] = { - [sym_import] = STATE(3266), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1925), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5197), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5610), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1972), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(4001), - [sym_pattern] = STATE(4675), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3226), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5368), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(990), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_typeof] = ACTIONS(996), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1002), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1004), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(1012), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1014), - [sym_number] = ACTIONS(1016), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1018), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [sym_undefined] = ACTIONS(1022), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(1024), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(1028), - [anon_sym_number] = ACTIONS(1028), - [anon_sym_boolean] = ACTIONS(1028), - [anon_sym_string] = ACTIONS(1028), - [anon_sym_symbol] = ACTIONS(1028), - [anon_sym_object] = ACTIONS(1028), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), - [sym_html_comment] = ACTIONS(5), - }, [142] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1430), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1434), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(1040), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(819), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -42097,7 +45458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(181), @@ -42125,102 +45486,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(3395), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5910), - [sym_string] = STATE(2155), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(5076), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(4232), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(4437), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3816), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1880), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7371), + [sym_string] = STATE(2399), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5852), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(5267), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(5377), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1042), [anon_sym_export] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(550), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), [anon_sym_LBRACE] = ACTIONS(1048), @@ -42228,10 +45589,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), [anon_sym_LBRACK] = ACTIONS(1050), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), @@ -42240,22 +45601,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1054), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(745), [anon_sym_DASH] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(747), [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(1056), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(753), @@ -42290,258 +45651,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(3395), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1530), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1668), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3737), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3869), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1917), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2089), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4276), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1064), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1070), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(1076), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1078), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [sym_undefined] = ACTIONS(1082), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1060), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1084), - [anon_sym_number] = ACTIONS(1084), - [anon_sym_boolean] = ACTIONS(1084), - [anon_sym_string] = ACTIONS(1084), - [anon_sym_symbol] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [145] = { - [sym_import] = STATE(3445), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1945), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3737), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1086), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(1088), - [anon_sym_typeof] = ACTIONS(1090), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(1072), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(1066), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1080), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(166), + [anon_sym_new] = ACTIONS(1084), + [anon_sym_using] = ACTIONS(1086), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(185), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [sym_private_property_identifier] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1090), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1096), + [sym_number] = ACTIONS(1098), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(1102), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(1104), @@ -42549,17 +45767,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1104), [sym_undefined] = ACTIONS(1106), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1066), [anon_sym_readonly] = ACTIONS(1108), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), [anon_sym_any] = ACTIONS(1110), [anon_sym_number] = ACTIONS(1110), [anon_sym_boolean] = ACTIONS(1110), @@ -42575,140 +45793,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [146] = { - [sym_import] = STATE(3263), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2284), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1945), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3737), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), + [145] = { + [sym_import] = STATE(3869), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2422), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2089), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4276), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1112), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_typeof] = ACTIONS(1120), + [anon_sym_export] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_typeof] = ACTIONS(1116), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), + [anon_sym_let] = ACTIONS(809), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1080), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1130), - [anon_sym_using] = ACTIONS(1132), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_using] = ACTIONS(166), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1136), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [sym_private_property_identifier] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1096), + [sym_number] = ACTIONS(1098), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(1102), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(1104), [sym_false] = ACTIONS(1104), [sym_null] = ACTIONS(1104), - [sym_undefined] = ACTIONS(1144), + [sym_undefined] = ACTIONS(1122), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1146), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(1124), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_object] = ACTIONS(1148), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(1126), + [anon_sym_number] = ACTIONS(1126), + [anon_sym_boolean] = ACTIONS(1126), + [anon_sym_string] = ACTIONS(1126), + [anon_sym_symbol] = ACTIONS(1126), + [anon_sym_object] = ACTIONS(1126), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -42718,140 +45936,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [147] = { - [sym_import] = STATE(3259), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1990), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2425), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3906), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1150), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_typeof] = ACTIONS(1158), + [146] = { + [sym_import] = STATE(3818), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1617), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2042), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4413), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), + [anon_sym_let] = ACTIONS(1130), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1140), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1172), - [anon_sym_using] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1144), + [anon_sym_using] = ACTIONS(81), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1184), - [sym_number] = ACTIONS(1186), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(1190), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(1148), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1150), + [sym_number] = ACTIONS(1152), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(1154), [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1192), - [sym_false] = ACTIONS(1192), - [sym_null] = ACTIONS(1192), - [sym_undefined] = ACTIONS(1194), + [sym_true] = ACTIONS(1156), + [sym_false] = ACTIONS(1156), + [sym_null] = ACTIONS(1156), + [sym_undefined] = ACTIONS(1158), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1196), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1198), - [anon_sym_number] = ACTIONS(1198), - [anon_sym_boolean] = ACTIONS(1198), - [anon_sym_string] = ACTIONS(1198), - [anon_sym_symbol] = ACTIONS(1198), - [anon_sym_object] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1162), + [anon_sym_number] = ACTIONS(1162), + [anon_sym_boolean] = ACTIONS(1162), + [anon_sym_string] = ACTIONS(1162), + [anon_sym_symbol] = ACTIONS(1162), + [anon_sym_object] = ACTIONS(1162), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -42861,140 +46079,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_import] = STATE(3303), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1659), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(1951), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3906), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1200), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_typeof] = ACTIONS(1208), + [147] = { + [sym_import] = STATE(3869), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4176), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4176), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1354), + [sym_subscript_expression] = STATE(1354), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4176), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2548), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_non_null_expression] = STATE(1354), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5263), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1164), + [anon_sym_export] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(1166), + [anon_sym_namespace] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_typeof] = ACTIONS(1172), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), + [anon_sym_let] = ACTIONS(1166), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1216), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1220), - [anon_sym_using] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1174), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1176), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1178), + [anon_sym_using] = ACTIONS(166), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1226), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1232), - [sym_number] = ACTIONS(1234), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(1238), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [sym_null] = ACTIONS(1240), - [sym_undefined] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1182), + [sym_number] = ACTIONS(1184), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(1186), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(1188), + [sym_false] = ACTIONS(1188), + [sym_null] = ACTIONS(1188), + [sym_undefined] = ACTIONS(1190), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1244), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_readonly] = ACTIONS(1192), + [anon_sym_get] = ACTIONS(1166), + [anon_sym_set] = ACTIONS(1166), [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1246), - [anon_sym_number] = ACTIONS(1246), - [anon_sym_boolean] = ACTIONS(1246), - [anon_sym_string] = ACTIONS(1246), - [anon_sym_symbol] = ACTIONS(1246), - [anon_sym_object] = ACTIONS(1246), + [anon_sym_declare] = ACTIONS(1166), + [anon_sym_public] = ACTIONS(1166), + [anon_sym_private] = ACTIONS(1166), + [anon_sym_protected] = ACTIONS(1166), + [anon_sym_override] = ACTIONS(1166), + [anon_sym_module] = ACTIONS(1166), + [anon_sym_any] = ACTIONS(1194), + [anon_sym_number] = ACTIONS(1194), + [anon_sym_boolean] = ACTIONS(1194), + [anon_sym_string] = ACTIONS(1194), + [anon_sym_symbol] = ACTIONS(1194), + [anon_sym_object] = ACTIONS(1194), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -43004,140 +46222,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [149] = { - [sym_import] = STATE(3445), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1945), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3737), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_typeof] = ACTIONS(1254), + [148] = { + [sym_import] = STATE(3816), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1652), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(5110), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(5110), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1302), + [sym_subscript_expression] = STATE(1302), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(5110), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2189), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_non_null_expression] = STATE(1302), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5263), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1196), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_typeof] = ACTIONS(558), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1198), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(566), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1204), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1264), - [anon_sym_using] = ACTIONS(1266), + [anon_sym_new] = ACTIONS(1206), + [anon_sym_using] = ACTIONS(574), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1270), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(192), + [sym_number] = ACTIONS(194), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), - [sym_undefined] = ACTIONS(1278), + [sym_true] = ACTIONS(202), + [sym_false] = ACTIONS(202), + [sym_null] = ACTIONS(202), + [sym_undefined] = ACTIONS(1208), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1280), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1210), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1282), - [anon_sym_number] = ACTIONS(1282), - [anon_sym_boolean] = ACTIONS(1282), - [anon_sym_string] = ACTIONS(1282), - [anon_sym_symbol] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -43147,140 +46365,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [150] = { - [sym_import] = STATE(3395), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1862), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1668), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3737), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_typeof] = ACTIONS(1290), + [149] = { + [sym_import] = STATE(3816), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1518), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1754), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4276), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1214), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_typeof] = ACTIONS(1218), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1044), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(1220), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1300), - [anon_sym_using] = ACTIONS(1302), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_using] = ACTIONS(574), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1306), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(1076), - [sym_private_property_identifier] = ACTIONS(1312), - [sym_this] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1224), + [sym_number] = ACTIONS(1226), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(1228), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [sym_undefined] = ACTIONS(1314), + [sym_true] = ACTIONS(1230), + [sym_false] = ACTIONS(1230), + [sym_null] = ACTIONS(1230), + [sym_undefined] = ACTIONS(1232), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1060), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1318), - [anon_sym_number] = ACTIONS(1318), - [anon_sym_boolean] = ACTIONS(1318), - [anon_sym_string] = ACTIONS(1318), - [anon_sym_symbol] = ACTIONS(1318), - [anon_sym_object] = ACTIONS(1318), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -43290,140 +46508,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [151] = { - [sym_import] = STATE(3445), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3606), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3606), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3606), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2485), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_non_null_expression] = STATE(1383), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4227), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1320), - [anon_sym_export] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1322), - [anon_sym_namespace] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_typeof] = ACTIONS(1328), + [150] = { + [sym_import] = STATE(3818), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2042), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4413), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1236), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_typeof] = ACTIONS(1242), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1238), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1330), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1332), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1334), - [anon_sym_using] = ACTIONS(166), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(1140), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1252), + [anon_sym_using] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(185), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1338), - [sym_number] = ACTIONS(1340), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(1342), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [sym_null] = ACTIONS(1344), - [sym_undefined] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1258), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1150), + [sym_number] = ACTIONS(1152), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(1154), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(1156), + [sym_false] = ACTIONS(1156), + [sym_null] = ACTIONS(1156), + [sym_undefined] = ACTIONS(1266), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_readonly] = ACTIONS(1348), - [anon_sym_get] = ACTIONS(1322), - [anon_sym_set] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1268), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(1322), - [anon_sym_public] = ACTIONS(1322), - [anon_sym_private] = ACTIONS(1322), - [anon_sym_protected] = ACTIONS(1322), - [anon_sym_override] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1322), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_object] = ACTIONS(1350), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -43433,140 +46651,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(3395), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1671), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(4088), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(4088), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1301), - [sym_subscript_expression] = STATE(1301), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(4088), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(2271), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_non_null_expression] = STATE(1301), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4227), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1352), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1354), - [anon_sym_namespace] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_typeof] = ACTIONS(620), + [151] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2089), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4276), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(1274), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1080), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1360), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1362), - [anon_sym_using] = ACTIONS(636), + [anon_sym_new] = ACTIONS(1288), + [anon_sym_using] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(192), - [sym_number] = ACTIONS(194), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1294), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1096), + [sym_number] = ACTIONS(1098), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(1102), [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(202), - [sym_false] = ACTIONS(202), - [sym_null] = ACTIONS(202), - [sym_undefined] = ACTIONS(1364), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_undefined] = ACTIONS(1302), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_readonly] = ACTIONS(1366), - [anon_sym_get] = ACTIONS(1354), - [anon_sym_set] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1304), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(1354), - [anon_sym_public] = ACTIONS(1354), - [anon_sym_private] = ACTIONS(1354), - [anon_sym_protected] = ACTIONS(1354), - [anon_sym_override] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_any] = ACTIONS(1368), - [anon_sym_number] = ACTIONS(1368), - [anon_sym_boolean] = ACTIONS(1368), - [anon_sym_string] = ACTIONS(1368), - [anon_sym_symbol] = ACTIONS(1368), - [anon_sym_object] = ACTIONS(1368), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), @@ -43576,134 +46794,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_import] = STATE(3303), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1741), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(1951), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3906), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_typeof] = ACTIONS(1376), + [152] = { + [sym_import] = STATE(3894), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2080), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2419), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4413), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1308), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_typeof] = ACTIONS(1316), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1310), [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1324), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1326), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1380), - [anon_sym_using] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1328), + [anon_sym_using] = ACTIONS(1330), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(1384), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1232), - [sym_number] = ACTIONS(1234), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1334), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1340), + [sym_number] = ACTIONS(1342), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(1346), [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [sym_null] = ACTIONS(1240), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [sym_null] = ACTIONS(1348), + [sym_undefined] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1354), + [anon_sym_number] = ACTIONS(1354), + [anon_sym_boolean] = ACTIONS(1354), + [anon_sym_string] = ACTIONS(1354), + [anon_sym_symbol] = ACTIONS(1354), + [anon_sym_object] = ACTIONS(1354), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym_html_comment] = ACTIONS(5), + }, + [153] = { + [sym_import] = STATE(3816), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1754), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4276), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1356), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_typeof] = ACTIONS(1362), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1220), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1372), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1378), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1224), + [sym_number] = ACTIONS(1226), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(1228), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(1230), + [sym_false] = ACTIONS(1230), + [sym_null] = ACTIONS(1230), [sym_undefined] = ACTIONS(1386), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1358), [anon_sym_readonly] = ACTIONS(1388), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), [anon_sym_any] = ACTIONS(1390), [anon_sym_number] = ACTIONS(1390), [anon_sym_boolean] = ACTIONS(1390), @@ -43720,83 +47081,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [154] = { - [sym_import] = STATE(3445), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2351), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_nested_identifier] = STATE(5707), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1945), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3952), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3737), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5276), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3869), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2388), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_nested_identifier] = STATE(7381), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(2089), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4792), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4276), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6127), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1392), [anon_sym_export] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(550), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1114), [anon_sym_typeof] = ACTIONS(1398), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -43805,7 +47166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(140), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1080), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -43826,8 +47187,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1418), [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1096), + [sym_number] = ACTIONS(1098), [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(1102), [sym_super] = ACTIONS(200), @@ -43863,70 +47224,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [155] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1490), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1614), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_STAR] = ACTIONS(1430), [anon_sym_type] = ACTIONS(1044), [anon_sym_as] = ACTIONS(1432), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(1434), [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(588), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_await] = ACTIONS(624), + [anon_sym_await] = ACTIONS(562), [anon_sym_in] = ACTIONS(1432), [anon_sym_COLON] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [anon_sym_RBRACK] = ACTIONS(1434), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1432), @@ -43938,7 +47299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), [anon_sym_GT_GT] = ACTIONS(1432), @@ -43947,9 +47308,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1432), [anon_sym_CARET] = ACTIONS(1434), [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), [anon_sym_LT] = ACTIONS(181), @@ -43961,15 +47322,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -43998,62 +47359,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [156] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1766), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1628), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), + [anon_sym_export] = ACTIONS(1130), [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_type] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1130), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(1434), [anon_sym_RBRACE] = ACTIONS(1434), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -44067,7 +47428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1444), @@ -44110,90 +47471,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [anon_sym_satisfies] = ACTIONS(1432), [sym__automatic_semicolon] = ACTIONS(1434), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [157] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1637), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), + [anon_sym_export] = ACTIONS(1238), [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1238), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(1434), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1260), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), + [anon_sym_await] = ACTIONS(1246), [anon_sym_in] = ACTIONS(1432), [anon_sym_of] = ACTIONS(1432), [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1432), @@ -44201,11 +47562,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), + [anon_sym_using] = ACTIONS(1254), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), [anon_sym_GT_GT] = ACTIONS(1432), @@ -44214,9 +47575,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1432), [anon_sym_CARET] = ACTIONS(1434), [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), [anon_sym_LT] = ACTIONS(85), @@ -44228,15 +47589,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -44244,100 +47605,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [anon_sym_satisfies] = ACTIONS(1432), [sym__automatic_semicolon] = ACTIONS(1434), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [158] = { - [sym_import] = STATE(3306), + [sym_import] = STATE(3721), [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2042), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), + [sym_expression] = STATE(2067), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1338), [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(1066), [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_type] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1066), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), [anon_sym_in] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1434), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1432), [anon_sym_DOT] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), + [anon_sym_using] = ACTIONS(1086), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), [anon_sym_GT_GT] = ACTIONS(1432), @@ -44346,12 +47708,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1432), [anon_sym_CARET] = ACTIONS(1434), [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(181), [anon_sym_LT_EQ] = ACTIONS(1434), [anon_sym_EQ_EQ] = ACTIONS(1432), [anon_sym_EQ_EQ_EQ] = ACTIONS(1434), @@ -44360,116 +47722,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [anon_sym_satisfies] = ACTIONS(1432), - [sym__automatic_semicolon] = ACTIONS(1434), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [159] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1943), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), + [anon_sym_export] = ACTIONS(1310), [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1310), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1434), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), [anon_sym_in] = ACTIONS(1432), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1432), [anon_sym_DOT] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), + [anon_sym_using] = ACTIONS(1330), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), [anon_sym_GT_GT] = ACTIONS(1432), @@ -44478,12 +47839,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1432), [anon_sym_CARET] = ACTIONS(1434), [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), - [anon_sym_LT] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(85), [anon_sym_LT_EQ] = ACTIONS(1434), [anon_sym_EQ_EQ] = ACTIONS(1432), [anon_sym_EQ_EQ_EQ] = ACTIONS(1434), @@ -44492,117 +47853,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [anon_sym_satisfies] = ACTIONS(1432), - [anon_sym_implements] = ACTIONS(1432), + [sym__automatic_semicolon] = ACTIONS(1434), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [160] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2084), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), + [anon_sym_export] = ACTIONS(1358), [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_type] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1358), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1380), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), + [anon_sym_await] = ACTIONS(1366), [anon_sym_in] = ACTIONS(1432), - [anon_sym_COLON] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1432), [anon_sym_DOT] = ACTIONS(1432), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), + [anon_sym_using] = ACTIONS(1374), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), [anon_sym_GT_GT] = ACTIONS(1432), @@ -44611,9 +47971,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1432), [anon_sym_CARET] = ACTIONS(1434), [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), [anon_sym_LT] = ACTIONS(181), @@ -44625,15 +47985,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -44641,99 +48001,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [anon_sym_satisfies] = ACTIONS(1432), + [anon_sym_implements] = ACTIONS(1432), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2308), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2256), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), + [anon_sym_export] = ACTIONS(1394), [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_type] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1394), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_namespace] = ACTIONS(1396), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1416), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), + [anon_sym_await] = ACTIONS(1402), [anon_sym_in] = ACTIONS(1432), - [anon_sym_yield] = ACTIONS(1126), + [anon_sym_of] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(1434), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1432), [anon_sym_DOT] = ACTIONS(1432), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), + [anon_sym_using] = ACTIONS(1410), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), [anon_sym_GT_GT] = ACTIONS(1432), @@ -44742,9 +48103,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1432), [anon_sym_CARET] = ACTIONS(1434), [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), [anon_sym_LT] = ACTIONS(181), @@ -44756,15 +48117,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -44772,99 +48133,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [anon_sym_satisfies] = ACTIONS(1432), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [162] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2375), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2280), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), + [anon_sym_export] = ACTIONS(1274), [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_type] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1274), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1296), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), + [anon_sym_await] = ACTIONS(1282), [anon_sym_in] = ACTIONS(1432), - [anon_sym_of] = ACTIONS(1432), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(1434), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1432), [anon_sym_DOT] = ACTIONS(1432), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1434), [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), + [anon_sym_using] = ACTIONS(1290), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), [anon_sym_GT_GT] = ACTIONS(1432), @@ -44873,9 +48234,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1432), [anon_sym_CARET] = ACTIONS(1434), [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), [anon_sym_LT] = ACTIONS(181), @@ -44887,15 +48248,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1434), [anon_sym_QMARK_QMARK] = ACTIONS(1434), [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -44903,97 +48264,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [anon_sym_satisfies] = ACTIONS(1432), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [163] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2407), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(839), + [anon_sym_type] = ACTIONS(809), [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(1432), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1432), [anon_sym_DOT] = ACTIONS(1432), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1434), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_AMP_AMP] = ACTIONS(1434), [anon_sym_PIPE_PIPE] = ACTIONS(1434), @@ -45005,7 +48366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1432), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_PERCENT] = ACTIONS(1434), [anon_sym_STAR_STAR] = ACTIONS(1434), [anon_sym_LT] = ACTIONS(181), @@ -45033,1187 +48394,1187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(1432), [sym__ternary_qmark] = ACTIONS(1434), [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(857), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_typeof] = ACTIONS(1500), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(162), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_EQ_GT] = ACTIONS(160), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(172), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(220), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(208), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, - [165] = { - [sym_declaration] = STATE(4381), - [sym_import] = STATE(3306), - [sym_variable_declaration] = STATE(4336), - [sym_lexical_declaration] = STATE(4336), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1982), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(4336), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(4336), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(4336), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_function_signature] = STATE(4336), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(4336), - [sym_abstract_class_declaration] = STATE(4336), - [sym_module] = STATE(4336), - [sym_internal_module] = STATE(2261), - [sym_import_alias] = STATE(4336), - [sym_interface_declaration] = STATE(4336), - [sym_enum_declaration] = STATE(4336), - [sym_type_alias_declaration] = STATE(4336), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4256), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_namespace] = ACTIONS(1154), + [sym_declaration] = STATE(798), + [sym_import] = STATE(3739), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2039), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5230), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(1528), - [anon_sym_var] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(1498), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(1536), - [anon_sym_async] = ACTIONS(1538), - [anon_sym_function] = ACTIONS(1540), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1542), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1544), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), - [anon_sym_abstract] = ACTIONS(1546), - [anon_sym_interface] = ACTIONS(1548), - [anon_sym_enum] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1504), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1506), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [anon_sym_abstract] = ACTIONS(107), + [anon_sym_interface] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [166] = { - [sym_declaration] = STATE(788), - [sym_import] = STATE(3306), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4317), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1552), - [anon_sym_namespace] = ACTIONS(1554), + [165] = { + [sym_declaration] = STATE(5020), + [sym_import] = STATE(3739), + [sym_variable_declaration] = STATE(5245), + [sym_lexical_declaration] = STATE(5245), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2123), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(5245), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(5245), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(5245), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(5245), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(5245), + [sym_abstract_class_declaration] = STATE(5245), + [sym_module] = STATE(5245), + [sym_internal_module] = STATE(2181), + [sym_import_alias] = STATE(5245), + [sym_interface_declaration] = STATE(5245), + [sym_enum_declaration] = STATE(5245), + [sym_type_alias_declaration] = STATE(5245), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4907), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1508), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(1556), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1558), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_var] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1520), + [anon_sym_function] = ACTIONS(1522), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1524), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1526), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_interface] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [167] = { - [sym_declaration] = STATE(766), - [sym_import] = STATE(3306), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1949), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(223), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4317), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1552), - [anon_sym_namespace] = ACTIONS(1554), + [166] = { + [sym_declaration] = STATE(798), + [sym_import] = STATE(3739), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2039), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5230), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(1556), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(1498), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1500), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [168] = { - [sym_declaration] = STATE(788), - [sym_import] = STATE(3306), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4174), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1552), - [anon_sym_namespace] = ACTIONS(1154), + [167] = { + [sym_declaration] = STATE(847), + [sym_import] = STATE(3739), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1950), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5230), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(1556), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(1498), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1500), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1570), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1504), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1506), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [169] = { - [sym_declaration] = STATE(3999), - [sym_import] = STATE(3306), - [sym_variable_declaration] = STATE(4336), - [sym_lexical_declaration] = STATE(4336), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2017), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(4336), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(4336), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(4336), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_function_signature] = STATE(4336), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(4336), - [sym_abstract_class_declaration] = STATE(4336), - [sym_module] = STATE(4336), - [sym_internal_module] = STATE(2261), - [sym_import_alias] = STATE(4336), - [sym_interface_declaration] = STATE(4336), - [sym_enum_declaration] = STATE(4336), - [sym_type_alias_declaration] = STATE(4336), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4256), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_namespace] = ACTIONS(1154), + [168] = { + [sym_declaration] = STATE(5190), + [sym_import] = STATE(3739), + [sym_variable_declaration] = STATE(5245), + [sym_lexical_declaration] = STATE(5245), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2046), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(5245), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(5245), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(5245), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(5245), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(5245), + [sym_abstract_class_declaration] = STATE(5245), + [sym_module] = STATE(5245), + [sym_internal_module] = STATE(2181), + [sym_import_alias] = STATE(5245), + [sym_interface_declaration] = STATE(5245), + [sym_enum_declaration] = STATE(5245), + [sym_type_alias_declaration] = STATE(5245), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(4907), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1508), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(1528), - [anon_sym_var] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_var] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(1536), - [anon_sym_async] = ACTIONS(1538), - [anon_sym_function] = ACTIONS(1540), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1520), + [anon_sym_function] = ACTIONS(1522), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1542), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1544), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), - [anon_sym_abstract] = ACTIONS(1546), - [anon_sym_interface] = ACTIONS(1548), - [anon_sym_enum] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1524), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1526), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_interface] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1532), + [sym_html_comment] = ACTIONS(5), + }, + [169] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(857), + [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(1542), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(162), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(172), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_void] = ACTIONS(220), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(208), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_declaration] = STATE(766), - [sym_import] = STATE(3306), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1949), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4174), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1552), - [anon_sym_namespace] = ACTIONS(1154), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3739), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1950), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5219), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_namespace] = ACTIONS(1568), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(1556), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(1498), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1500), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(1570), + [anon_sym_function] = ACTIONS(77), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1570), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_declaration] = STATE(788), - [sym_import] = STATE(3306), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4174), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1552), - [anon_sym_namespace] = ACTIONS(1154), + [sym_declaration] = STATE(798), + [sym_import] = STATE(3739), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2039), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5219), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_namespace] = ACTIONS(1568), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(1556), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(1498), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1500), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(1570), + [anon_sym_function] = ACTIONS(77), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_declaration] = STATE(766), - [sym_import] = STATE(3306), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1949), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_class_declaration] = STATE(861), - [sym_function_expression] = STATE(2310), - [sym_function_declaration] = STATE(861), - [sym_generator_function] = STATE(2310), - [sym_generator_function_declaration] = STATE(861), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_function_signature] = STATE(861), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(2332), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4174), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1552), - [anon_sym_namespace] = ACTIONS(1154), + [sym_declaration] = STATE(847), + [sym_import] = STATE(3739), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1950), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_class_declaration] = STATE(844), + [sym_function_expression] = STATE(2134), + [sym_function_declaration] = STATE(844), + [sym_generator_function] = STATE(2134), + [sym_generator_function_declaration] = STATE(844), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_function_signature] = STATE(844), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(2150), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5230), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(1556), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(1498), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1500), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(632), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(869), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1540), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_EQ_GT] = ACTIONS(875), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1552), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46237,12 +49598,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46255,14 +49616,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -46283,59 +49644,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1540), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1552), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46359,12 +49720,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46377,14 +49738,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -46405,59 +49766,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1540), [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1552), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46481,12 +49842,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46499,14 +49860,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -46526,59 +49887,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_COMMA] = ACTIONS(888), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(905), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_COLON] = ACTIONS(853), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(905), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1552), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46602,12 +49963,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46620,14 +49981,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -46647,58 +50008,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(946), + [anon_sym_EQ] = ACTIONS(914), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_EQ_GT] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1552), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46722,12 +50082,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46740,14 +50100,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -46763,62 +50123,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3619), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(926), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_EQ_GT] = ACTIONS(932), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1572), + [anon_sym_new] = ACTIONS(1552), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46839,15 +50200,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46860,25 +50221,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), + [anon_sym_abstract] = ACTIONS(212), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -46887,57 +50248,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(932), + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3658), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1574), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), + [anon_sym_const] = ACTIONS(984), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1580), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1582), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1588), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -46958,15 +50320,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(172), + [anon_sym_AMP] = ACTIONS(1590), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_PLUS] = ACTIONS(1594), + [anon_sym_DASH] = ACTIONS(1594), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -46975,90 +50337,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(220), + [anon_sym_void] = ACTIONS(1024), [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(208), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1606), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym__automatic_semicolon] = ACTIONS(162), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3203), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1584), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4082), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1540), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1588), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1598), + [anon_sym_new] = ACTIONS(1608), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -47079,15 +50440,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1610), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -47096,88 +50457,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(1038), + [anon_sym_void] = ACTIONS(220), [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), [anon_sym_readonly] = ACTIONS(1614), [anon_sym_QMARK] = ACTIONS(1616), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(604), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, [181] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_EQ] = ACTIONS(942), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1540), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_EQ_GT] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_EQ_GT] = ACTIONS(948), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1552), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -47201,12 +50562,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -47219,14 +50580,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -47247,57 +50608,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_COLON] = ACTIONS(853), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1552), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -47321,12 +50682,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -47339,14 +50700,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -47366,57 +50727,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(926), + [anon_sym_EQ] = ACTIONS(962), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_of] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_EQ_GT] = ACTIONS(956), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1552), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -47440,12 +50801,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -47458,14 +50819,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -47485,57 +50846,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(936), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1552), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -47559,12 +50920,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -47577,14 +50938,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -47604,56 +50965,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1552), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -47677,12 +51038,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1556), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -47695,14 +51056,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(208), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -47722,95 +51083,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1532), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym__formal_parameter] = STATE(4890), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5725), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(4890), - [sym_optional_parameter] = STATE(4890), - [sym__parameter_name] = STATE(3493), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1464), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym__formal_parameter] = STATE(5828), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7478), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5828), + [sym_optional_parameter] = STATE(5828), + [sym__parameter_name] = STATE(3998), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(1622), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -47818,114 +51179,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(757), - [anon_sym_static] = ACTIONS(610), + [anon_sym_static] = ACTIONS(548), [anon_sym_readonly] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), [anon_sym_public] = ACTIONS(763), [anon_sym_private] = ACTIONS(763), [anon_sym_protected] = ACTIONS(763), [anon_sym_override] = ACTIONS(765), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1511), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym__formal_parameter] = STATE(4890), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5635), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(4890), - [sym_optional_parameter] = STATE(4890), - [sym__parameter_name] = STATE(3493), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1461), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym__formal_parameter] = STATE(5828), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7509), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5828), + [sym_optional_parameter] = STATE(5828), + [sym__parameter_name] = STATE(3998), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(1622), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -47933,77 +51294,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(757), - [anon_sym_static] = ACTIONS(610), + [anon_sym_static] = ACTIONS(548), [anon_sym_readonly] = ACTIONS(1626), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), [anon_sym_public] = ACTIONS(763), [anon_sym_private] = ACTIONS(763), [anon_sym_protected] = ACTIONS(763), [anon_sym_override] = ACTIONS(765), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(5251), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(5251), - [sym_optional_parameter] = STATE(5251), - [sym__parameter_name] = STATE(3493), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5881), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5881), + [sym_optional_parameter] = STATE(5881), + [sym__parameter_name] = STATE(3998), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -48029,7 +51390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48066,58 +51427,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(5251), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(5251), - [sym_optional_parameter] = STATE(5251), - [sym__parameter_name] = STATE(3493), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(6228), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(6228), + [sym_optional_parameter] = STATE(6228), + [sym__parameter_name] = STATE(3998), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -48143,7 +51504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48180,58 +51541,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(5251), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(5251), - [sym_optional_parameter] = STATE(5251), - [sym__parameter_name] = STATE(3493), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(6228), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(6228), + [sym_optional_parameter] = STATE(6228), + [sym__parameter_name] = STATE(3998), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -48257,7 +51618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48294,58 +51655,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(5092), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(5092), - [sym_optional_parameter] = STATE(5092), - [sym__parameter_name] = STATE(3493), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(6228), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(6228), + [sym_optional_parameter] = STATE(6228), + [sym__parameter_name] = STATE(3998), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -48371,7 +51732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48408,58 +51769,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(5251), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(5251), - [sym_optional_parameter] = STATE(5251), - [sym__parameter_name] = STATE(3493), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5875), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5875), + [sym_optional_parameter] = STATE(5875), + [sym__parameter_name] = STATE(3998), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -48485,7 +51846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48522,58 +51883,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(4890), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(4890), - [sym_optional_parameter] = STATE(4890), - [sym__parameter_name] = STATE(3493), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(6228), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(6228), + [sym_optional_parameter] = STATE(6228), + [sym__parameter_name] = STATE(3998), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -48584,7 +51945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_RPAREN] = ACTIONS(1644), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -48599,7 +51960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48636,58 +51997,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(5251), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(5251), - [sym_optional_parameter] = STATE(5251), - [sym__parameter_name] = STATE(3493), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(6228), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(6228), + [sym_optional_parameter] = STATE(6228), + [sym__parameter_name] = STATE(3998), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -48698,7 +52059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1646), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -48713,7 +52074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48750,58 +52111,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(4892), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(4892), - [sym_optional_parameter] = STATE(4892), - [sym__parameter_name] = STATE(3493), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5828), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(5828), + [sym_optional_parameter] = STATE(5828), + [sym__parameter_name] = STATE(3998), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -48812,7 +52173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1646), + [anon_sym_RPAREN] = ACTIONS(735), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1630), @@ -48827,7 +52188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48864,58 +52225,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(5251), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(5251), - [sym_optional_parameter] = STATE(5251), - [sym__parameter_name] = STATE(3493), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(6228), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(6228), + [sym_optional_parameter] = STATE(6228), + [sym__parameter_name] = STATE(3998), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -48941,7 +52302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -48978,171 +52339,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_RBRACK] = ACTIONS(1650), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [anon_sym_extends] = ACTIONS(1652), - [sym_html_comment] = ACTIONS(5), - }, - [198] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym__formal_parameter] = STATE(5251), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4262), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(268), - [sym_override_modifier] = STATE(296), - [sym_required_parameter] = STATE(5251), - [sym_optional_parameter] = STATE(5251), - [sym__parameter_name] = STATE(3493), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(253), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(6228), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5333), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(294), + [sym_required_parameter] = STATE(6228), + [sym_optional_parameter] = STATE(6228), + [sym__parameter_name] = STATE(3998), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(250), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -49167,7 +52415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -49203,94 +52451,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, + [198] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5843), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5849), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(1652), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1624), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), + [sym_html_comment] = ACTIONS(5), + }, [199] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1883), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(5152), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(5155), - [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(1656), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(1654), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -49298,112 +52659,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [200] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(1658), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(1656), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -49411,112 +52772,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(1660), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(1658), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -49524,112 +52885,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5843), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5849), + [aux_sym_array_pattern_repeat1] = STATE(5850), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(1662), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(1652), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -49637,112 +52998,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [203] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1883), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(5152), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(5155), - [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(1664), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(1660), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -49750,225 +53111,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [204] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_RBRACK] = ACTIONS(1662), [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1662), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_QMARK] = ACTIONS(1662), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [anon_sym_extends] = ACTIONS(1664), [sym_html_comment] = ACTIONS(5), }, [205] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(5152), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(5155), - [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5872), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5871), + [aux_sym_array_pattern_repeat1] = STATE(5850), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(1656), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(1666), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -49976,112 +53337,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4907), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4912), - [aux_sym_array_pattern_repeat1] = STATE(5165), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(5843), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5849), + [aux_sym_array_pattern_repeat1] = STATE(5850), [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), [anon_sym_RBRACK] = ACTIONS(1668), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -50089,118 +53450,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [207] = { - [sym_import] = STATE(3306), - [sym_expression_statement] = STATE(288), - [sym_variable_declaration] = STATE(288), - [sym_lexical_declaration] = STATE(288), - [sym_empty_statement] = STATE(288), - [sym_parenthesized_expression] = STATE(1290), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1290), - [sym_subscript_expression] = STATE(1290), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1290), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_typeof] = ACTIONS(21), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_var] = ACTIONS(1678), - [anon_sym_let] = ACTIONS(1680), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1684), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(1662), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1690), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [anon_sym_extends] = ACTIONS(1664), + [anon_sym_PIPE_RBRACE] = ACTIONS(1662), + [sym__automatic_semicolon] = ACTIONS(1662), + [sym_html_comment] = ACTIONS(5), + }, + [208] = { + [ts_builtin_sym_end] = ACTIONS(1670), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1676), + [anon_sym_as] = ACTIONS(1674), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_COMMA] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym_import] = ACTIONS(1672), + [anon_sym_with] = ACTIONS(1672), + [anon_sym_var] = ACTIONS(1672), + [anon_sym_let] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_else] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_debugger] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_glimmer_opening_tag] = ACTIONS(1670), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1670), + [anon_sym_SQUOTE] = ACTIONS(1670), + [anon_sym_class] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_function] = ACTIONS(1672), + [anon_sym_QMARK_DOT] = ACTIONS(1678), + [anon_sym_new] = ACTIONS(1672), + [anon_sym_using] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1678), + [anon_sym_PIPE_PIPE] = ACTIONS(1678), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_GT_GT_GT] = ACTIONS(1678), + [anon_sym_LT_LT] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_PERCENT] = ACTIONS(1678), + [anon_sym_STAR_STAR] = ACTIONS(1678), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_LT_EQ] = ACTIONS(1678), + [anon_sym_EQ_EQ] = ACTIONS(1674), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1678), + [anon_sym_BANG_EQ] = ACTIONS(1674), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1678), + [anon_sym_QMARK_QMARK] = ACTIONS(1678), + [anon_sym_instanceof] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1672), + [anon_sym_delete] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1670), + [anon_sym_DASH_DASH] = ACTIONS(1670), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1670), + [sym_number] = ACTIONS(1670), + [sym_private_property_identifier] = ACTIONS(1670), + [sym_this] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_undefined] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1670), [anon_sym_static] = ACTIONS(1672), [anon_sym_readonly] = ACTIONS(1672), [anon_sym_get] = ACTIONS(1672), @@ -50217,193 +53684,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1672), [anon_sym_symbol] = ACTIONS(1672), [anon_sym_object] = ACTIONS(1672), + [anon_sym_abstract] = ACTIONS(1672), + [anon_sym_satisfies] = ACTIONS(1674), + [anon_sym_interface] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1680), + [sym__ternary_qmark] = ACTIONS(1678), [sym_html_comment] = ACTIONS(5), }, - [208] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2212), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5144), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5144), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5144), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_mapped_type_clause] = STATE(5639), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(1692), - [anon_sym_export] = ACTIONS(1694), - [anon_sym_type] = ACTIONS(1694), - [anon_sym_namespace] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_typeof] = ACTIONS(1138), + [209] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2163), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(5874), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(5874), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(5874), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_mapped_type_clause] = STATE(7306), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(1682), + [anon_sym_export] = ACTIONS(1684), + [anon_sym_type] = ACTIONS(1684), + [anon_sym_namespace] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_RBRACK] = ACTIONS(1704), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_RBRACK] = ACTIONS(1694), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1706), + [anon_sym_async] = ACTIONS(1696), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1708), - [anon_sym_using] = ACTIONS(1132), + [anon_sym_new] = ACTIONS(1698), + [anon_sym_using] = ACTIONS(1290), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1710), + [sym_undefined] = ACTIONS(1700), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1694), - [anon_sym_readonly] = ACTIONS(1694), - [anon_sym_get] = ACTIONS(1694), - [anon_sym_set] = ACTIONS(1694), - [anon_sym_declare] = ACTIONS(1694), - [anon_sym_public] = ACTIONS(1694), - [anon_sym_private] = ACTIONS(1694), - [anon_sym_protected] = ACTIONS(1694), - [anon_sym_override] = ACTIONS(1694), - [anon_sym_module] = ACTIONS(1694), - [anon_sym_any] = ACTIONS(1694), - [anon_sym_number] = ACTIONS(1694), - [anon_sym_boolean] = ACTIONS(1694), - [anon_sym_string] = ACTIONS(1694), - [anon_sym_symbol] = ACTIONS(1694), - [anon_sym_object] = ACTIONS(1694), + [anon_sym_static] = ACTIONS(1684), + [anon_sym_readonly] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1684), + [anon_sym_set] = ACTIONS(1684), + [anon_sym_declare] = ACTIONS(1684), + [anon_sym_public] = ACTIONS(1684), + [anon_sym_private] = ACTIONS(1684), + [anon_sym_protected] = ACTIONS(1684), + [anon_sym_override] = ACTIONS(1684), + [anon_sym_module] = ACTIONS(1684), + [anon_sym_any] = ACTIONS(1684), + [anon_sym_number] = ACTIONS(1684), + [anon_sym_boolean] = ACTIONS(1684), + [anon_sym_string] = ACTIONS(1684), + [anon_sym_symbol] = ACTIONS(1684), + [anon_sym_object] = ACTIONS(1684), [sym_html_comment] = ACTIONS(5), }, - [209] = { - [sym_import] = STATE(3306), - [sym_expression_statement] = STATE(277), - [sym_variable_declaration] = STATE(277), - [sym_lexical_declaration] = STATE(277), - [sym_empty_statement] = STATE(277), - [sym_parenthesized_expression] = STATE(1290), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1290), - [sym_subscript_expression] = STATE(1290), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1290), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1676), + [210] = { + [sym_statement_block] = STATE(224), + [ts_builtin_sym_end] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_type] = ACTIONS(1704), + [anon_sym_as] = ACTIONS(1704), + [anon_sym_namespace] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(1704), + [anon_sym_with] = ACTIONS(1704), + [anon_sym_var] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_await] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1704), + [anon_sym_try] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_debugger] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_yield] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1702), + [sym_glimmer_opening_tag] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_class] = ACTIONS(1704), + [anon_sym_async] = ACTIONS(1704), + [anon_sym_function] = ACTIONS(1704), + [anon_sym_QMARK_DOT] = ACTIONS(1702), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_using] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1704), + [anon_sym_GT_GT_GT] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1704), + [anon_sym_PERCENT] = ACTIONS(1702), + [anon_sym_STAR_STAR] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1702), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_QMARK_QMARK] = ACTIONS(1702), + [anon_sym_instanceof] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [sym_private_property_identifier] = ACTIONS(1702), + [sym_this] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_true] = ACTIONS(1704), + [sym_false] = ACTIONS(1704), + [sym_null] = ACTIONS(1704), + [sym_undefined] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_readonly] = ACTIONS(1704), + [anon_sym_get] = ACTIONS(1704), + [anon_sym_set] = ACTIONS(1704), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_public] = ACTIONS(1704), + [anon_sym_private] = ACTIONS(1704), + [anon_sym_protected] = ACTIONS(1704), + [anon_sym_override] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1704), + [anon_sym_any] = ACTIONS(1704), + [anon_sym_number] = ACTIONS(1704), + [anon_sym_boolean] = ACTIONS(1704), + [anon_sym_string] = ACTIONS(1704), + [anon_sym_symbol] = ACTIONS(1704), + [anon_sym_object] = ACTIONS(1704), + [anon_sym_abstract] = ACTIONS(1704), + [anon_sym_satisfies] = ACTIONS(1704), + [anon_sym_interface] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [sym__automatic_semicolon] = ACTIONS(1702), + [sym__ternary_qmark] = ACTIONS(1702), + [sym_html_comment] = ACTIONS(5), + }, + [211] = { + [sym_import] = STATE(3739), + [sym_expression_statement] = STATE(279), + [sym_variable_declaration] = STATE(279), + [sym_lexical_declaration] = STATE(279), + [sym_empty_statement] = STATE(279), + [sym_parenthesized_expression] = STATE(1286), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(6042), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(6042), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(6042), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1286), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1708), + [anon_sym_export] = ACTIONS(1710), + [anon_sym_type] = ACTIONS(1710), + [anon_sym_namespace] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1714), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_var] = ACTIONS(1678), - [anon_sym_let] = ACTIONS(1680), - [anon_sym_const] = ACTIONS(1682), + [anon_sym_var] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1722), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1686), + [anon_sym_async] = ACTIONS(1724), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1726), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -50423,659 +54008,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1690), + [sym_undefined] = ACTIONS(1728), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_readonly] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_declare] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_protected] = ACTIONS(1672), - [anon_sym_override] = ACTIONS(1672), - [anon_sym_module] = ACTIONS(1672), - [anon_sym_any] = ACTIONS(1672), - [anon_sym_number] = ACTIONS(1672), - [anon_sym_boolean] = ACTIONS(1672), - [anon_sym_string] = ACTIONS(1672), - [anon_sym_symbol] = ACTIONS(1672), - [anon_sym_object] = ACTIONS(1672), - [sym_html_comment] = ACTIONS(5), - }, - [210] = { - [sym_statement_block] = STATE(222), - [ts_builtin_sym_end] = ACTIONS(1712), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1714), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1714), - [anon_sym_as] = ACTIONS(1714), - [anon_sym_namespace] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_COMMA] = ACTIONS(1712), - [anon_sym_RBRACE] = ACTIONS(1712), - [anon_sym_typeof] = ACTIONS(1714), - [anon_sym_import] = ACTIONS(1714), - [anon_sym_with] = ACTIONS(1714), - [anon_sym_var] = ACTIONS(1714), - [anon_sym_let] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1714), - [anon_sym_else] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_switch] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_await] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_debugger] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_throw] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_case] = ACTIONS(1714), - [anon_sym_yield] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1712), - [sym_glimmer_opening_tag] = ACTIONS(1712), - [anon_sym_GT] = ACTIONS(1714), - [anon_sym_DOT] = ACTIONS(1718), - [anon_sym_DQUOTE] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_class] = ACTIONS(1714), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_function] = ACTIONS(1714), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_new] = ACTIONS(1714), - [anon_sym_using] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1712), - [anon_sym_GT_GT] = ACTIONS(1714), - [anon_sym_GT_GT_GT] = ACTIONS(1712), - [anon_sym_LT_LT] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1712), - [anon_sym_STAR_STAR] = ACTIONS(1712), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_LT_EQ] = ACTIONS(1712), - [anon_sym_EQ_EQ] = ACTIONS(1714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1712), - [anon_sym_BANG_EQ] = ACTIONS(1714), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1712), - [anon_sym_GT_EQ] = ACTIONS(1712), - [anon_sym_QMARK_QMARK] = ACTIONS(1712), - [anon_sym_instanceof] = ACTIONS(1714), - [anon_sym_TILDE] = ACTIONS(1712), - [anon_sym_void] = ACTIONS(1714), - [anon_sym_delete] = ACTIONS(1714), - [anon_sym_PLUS_PLUS] = ACTIONS(1712), - [anon_sym_DASH_DASH] = ACTIONS(1712), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1712), - [sym_number] = ACTIONS(1712), - [sym_private_property_identifier] = ACTIONS(1712), - [sym_this] = ACTIONS(1714), - [sym_super] = ACTIONS(1714), - [sym_true] = ACTIONS(1714), - [sym_false] = ACTIONS(1714), - [sym_null] = ACTIONS(1714), - [sym_undefined] = ACTIONS(1714), - [anon_sym_AT] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_readonly] = ACTIONS(1714), - [anon_sym_get] = ACTIONS(1714), - [anon_sym_set] = ACTIONS(1714), - [anon_sym_declare] = ACTIONS(1714), - [anon_sym_public] = ACTIONS(1714), - [anon_sym_private] = ACTIONS(1714), - [anon_sym_protected] = ACTIONS(1714), - [anon_sym_override] = ACTIONS(1714), - [anon_sym_module] = ACTIONS(1714), - [anon_sym_any] = ACTIONS(1714), - [anon_sym_number] = ACTIONS(1714), - [anon_sym_boolean] = ACTIONS(1714), - [anon_sym_string] = ACTIONS(1714), - [anon_sym_symbol] = ACTIONS(1714), - [anon_sym_object] = ACTIONS(1714), - [anon_sym_abstract] = ACTIONS(1714), - [anon_sym_satisfies] = ACTIONS(1714), - [anon_sym_interface] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(1712), - [sym__ternary_qmark] = ACTIONS(1712), - [sym_html_comment] = ACTIONS(5), - }, - [211] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1650), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [anon_sym_extends] = ACTIONS(1652), - [anon_sym_PIPE_RBRACE] = ACTIONS(1650), - [sym__automatic_semicolon] = ACTIONS(1650), + [anon_sym_static] = ACTIONS(1710), + [anon_sym_readonly] = ACTIONS(1710), + [anon_sym_get] = ACTIONS(1710), + [anon_sym_set] = ACTIONS(1710), + [anon_sym_declare] = ACTIONS(1710), + [anon_sym_public] = ACTIONS(1710), + [anon_sym_private] = ACTIONS(1710), + [anon_sym_protected] = ACTIONS(1710), + [anon_sym_override] = ACTIONS(1710), + [anon_sym_module] = ACTIONS(1710), + [anon_sym_any] = ACTIONS(1710), + [anon_sym_number] = ACTIONS(1710), + [anon_sym_boolean] = ACTIONS(1710), + [anon_sym_string] = ACTIONS(1710), + [anon_sym_symbol] = ACTIONS(1710), + [anon_sym_object] = ACTIONS(1710), [sym_html_comment] = ACTIONS(5), }, [212] = { - [ts_builtin_sym_end] = ACTIONS(1720), - [sym_identifier] = ACTIONS(1722), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_as] = ACTIONS(1724), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym_import] = ACTIONS(1722), - [anon_sym_with] = ACTIONS(1722), - [anon_sym_var] = ACTIONS(1722), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_else] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_await] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1724), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_try] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_debugger] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_throw] = ACTIONS(1722), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_yield] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [sym_glimmer_opening_tag] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_DOT] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_class] = ACTIONS(1722), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_function] = ACTIONS(1722), - [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_using] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_GT_GT_GT] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), - [anon_sym_GT_EQ] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1728), - [anon_sym_instanceof] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1720), - [anon_sym_void] = ACTIONS(1722), - [anon_sym_delete] = ACTIONS(1722), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1720), - [sym_number] = ACTIONS(1720), - [sym_private_property_identifier] = ACTIONS(1720), - [sym_this] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_undefined] = ACTIONS(1722), - [anon_sym_AT] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_protected] = ACTIONS(1722), - [anon_sym_override] = ACTIONS(1722), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1722), - [anon_sym_number] = ACTIONS(1722), - [anon_sym_boolean] = ACTIONS(1722), - [anon_sym_string] = ACTIONS(1722), - [anon_sym_symbol] = ACTIONS(1722), - [anon_sym_object] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_satisfies] = ACTIONS(1724), - [anon_sym_interface] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [sym__automatic_semicolon] = ACTIONS(1730), - [sym__ternary_qmark] = ACTIONS(1728), + [sym_statement_block] = STATE(224), + [ts_builtin_sym_end] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_type] = ACTIONS(1704), + [anon_sym_as] = ACTIONS(1704), + [anon_sym_namespace] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(1704), + [anon_sym_with] = ACTIONS(1704), + [anon_sym_var] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_await] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1704), + [anon_sym_try] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_debugger] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_yield] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1702), + [sym_glimmer_opening_tag] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_class] = ACTIONS(1704), + [anon_sym_async] = ACTIONS(1704), + [anon_sym_function] = ACTIONS(1704), + [anon_sym_QMARK_DOT] = ACTIONS(1702), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_using] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1704), + [anon_sym_GT_GT_GT] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1704), + [anon_sym_PERCENT] = ACTIONS(1702), + [anon_sym_STAR_STAR] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1702), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_QMARK_QMARK] = ACTIONS(1702), + [anon_sym_instanceof] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [sym_private_property_identifier] = ACTIONS(1702), + [sym_this] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_true] = ACTIONS(1704), + [sym_false] = ACTIONS(1704), + [sym_null] = ACTIONS(1704), + [sym_undefined] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_readonly] = ACTIONS(1704), + [anon_sym_get] = ACTIONS(1704), + [anon_sym_set] = ACTIONS(1704), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_public] = ACTIONS(1704), + [anon_sym_private] = ACTIONS(1704), + [anon_sym_protected] = ACTIONS(1704), + [anon_sym_override] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1704), + [anon_sym_any] = ACTIONS(1704), + [anon_sym_number] = ACTIONS(1704), + [anon_sym_boolean] = ACTIONS(1704), + [anon_sym_string] = ACTIONS(1704), + [anon_sym_symbol] = ACTIONS(1704), + [anon_sym_object] = ACTIONS(1704), + [anon_sym_abstract] = ACTIONS(1704), + [anon_sym_satisfies] = ACTIONS(1704), + [anon_sym_interface] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [sym__automatic_semicolon] = ACTIONS(1702), + [sym__ternary_qmark] = ACTIONS(1702), [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_statement_block] = STATE(222), - [ts_builtin_sym_end] = ACTIONS(1712), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1714), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1714), - [anon_sym_as] = ACTIONS(1714), - [anon_sym_namespace] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_COMMA] = ACTIONS(1712), - [anon_sym_RBRACE] = ACTIONS(1712), - [anon_sym_typeof] = ACTIONS(1714), - [anon_sym_import] = ACTIONS(1714), - [anon_sym_with] = ACTIONS(1714), - [anon_sym_var] = ACTIONS(1714), - [anon_sym_let] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1714), - [anon_sym_else] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_switch] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_await] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_debugger] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_throw] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_case] = ACTIONS(1714), - [anon_sym_yield] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1712), - [sym_glimmer_opening_tag] = ACTIONS(1712), - [anon_sym_GT] = ACTIONS(1714), - [anon_sym_DOT] = ACTIONS(1714), - [anon_sym_DQUOTE] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_class] = ACTIONS(1714), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_function] = ACTIONS(1714), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_new] = ACTIONS(1714), - [anon_sym_using] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1712), - [anon_sym_GT_GT] = ACTIONS(1714), - [anon_sym_GT_GT_GT] = ACTIONS(1712), - [anon_sym_LT_LT] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1712), - [anon_sym_STAR_STAR] = ACTIONS(1712), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_LT_EQ] = ACTIONS(1712), - [anon_sym_EQ_EQ] = ACTIONS(1714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1712), - [anon_sym_BANG_EQ] = ACTIONS(1714), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1712), - [anon_sym_GT_EQ] = ACTIONS(1712), - [anon_sym_QMARK_QMARK] = ACTIONS(1712), - [anon_sym_instanceof] = ACTIONS(1714), - [anon_sym_TILDE] = ACTIONS(1712), - [anon_sym_void] = ACTIONS(1714), - [anon_sym_delete] = ACTIONS(1714), - [anon_sym_PLUS_PLUS] = ACTIONS(1712), - [anon_sym_DASH_DASH] = ACTIONS(1712), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1712), - [sym_number] = ACTIONS(1712), - [sym_private_property_identifier] = ACTIONS(1712), - [sym_this] = ACTIONS(1714), - [sym_super] = ACTIONS(1714), - [sym_true] = ACTIONS(1714), - [sym_false] = ACTIONS(1714), - [sym_null] = ACTIONS(1714), - [sym_undefined] = ACTIONS(1714), - [anon_sym_AT] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_readonly] = ACTIONS(1714), - [anon_sym_get] = ACTIONS(1714), - [anon_sym_set] = ACTIONS(1714), - [anon_sym_declare] = ACTIONS(1714), - [anon_sym_public] = ACTIONS(1714), - [anon_sym_private] = ACTIONS(1714), - [anon_sym_protected] = ACTIONS(1714), - [anon_sym_override] = ACTIONS(1714), - [anon_sym_module] = ACTIONS(1714), - [anon_sym_any] = ACTIONS(1714), - [anon_sym_number] = ACTIONS(1714), - [anon_sym_boolean] = ACTIONS(1714), - [anon_sym_string] = ACTIONS(1714), - [anon_sym_symbol] = ACTIONS(1714), - [anon_sym_object] = ACTIONS(1714), - [anon_sym_abstract] = ACTIONS(1714), - [anon_sym_satisfies] = ACTIONS(1714), - [anon_sym_interface] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(1712), - [sym__ternary_qmark] = ACTIONS(1712), + [sym_statement_block] = STATE(224), + [ts_builtin_sym_end] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_type] = ACTIONS(1704), + [anon_sym_as] = ACTIONS(1704), + [anon_sym_namespace] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(1704), + [anon_sym_with] = ACTIONS(1704), + [anon_sym_var] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_await] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1704), + [anon_sym_try] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_debugger] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_yield] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1702), + [sym_glimmer_opening_tag] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_class] = ACTIONS(1704), + [anon_sym_async] = ACTIONS(1704), + [anon_sym_function] = ACTIONS(1704), + [anon_sym_QMARK_DOT] = ACTIONS(1702), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_using] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1704), + [anon_sym_GT_GT_GT] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1704), + [anon_sym_PERCENT] = ACTIONS(1702), + [anon_sym_STAR_STAR] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1702), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_QMARK_QMARK] = ACTIONS(1702), + [anon_sym_instanceof] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [sym_private_property_identifier] = ACTIONS(1702), + [sym_this] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_true] = ACTIONS(1704), + [sym_false] = ACTIONS(1704), + [sym_null] = ACTIONS(1704), + [sym_undefined] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_readonly] = ACTIONS(1704), + [anon_sym_get] = ACTIONS(1704), + [anon_sym_set] = ACTIONS(1704), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_public] = ACTIONS(1704), + [anon_sym_private] = ACTIONS(1704), + [anon_sym_protected] = ACTIONS(1704), + [anon_sym_override] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1704), + [anon_sym_any] = ACTIONS(1704), + [anon_sym_number] = ACTIONS(1704), + [anon_sym_boolean] = ACTIONS(1704), + [anon_sym_string] = ACTIONS(1704), + [anon_sym_symbol] = ACTIONS(1704), + [anon_sym_object] = ACTIONS(1704), + [anon_sym_abstract] = ACTIONS(1704), + [anon_sym_satisfies] = ACTIONS(1704), + [anon_sym_interface] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [sym__automatic_semicolon] = ACTIONS(1702), + [sym__ternary_qmark] = ACTIONS(1702), [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_statement_block] = STATE(222), - [ts_builtin_sym_end] = ACTIONS(1712), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1714), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1714), - [anon_sym_as] = ACTIONS(1714), - [anon_sym_namespace] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_COMMA] = ACTIONS(1712), - [anon_sym_RBRACE] = ACTIONS(1712), - [anon_sym_typeof] = ACTIONS(1714), - [anon_sym_import] = ACTIONS(1714), - [anon_sym_with] = ACTIONS(1714), - [anon_sym_var] = ACTIONS(1714), - [anon_sym_let] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1714), - [anon_sym_else] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_switch] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_await] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_debugger] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_throw] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_case] = ACTIONS(1714), - [anon_sym_yield] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1712), - [sym_glimmer_opening_tag] = ACTIONS(1712), - [anon_sym_GT] = ACTIONS(1714), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_class] = ACTIONS(1714), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_function] = ACTIONS(1714), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_new] = ACTIONS(1714), - [anon_sym_using] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1712), - [anon_sym_GT_GT] = ACTIONS(1714), - [anon_sym_GT_GT_GT] = ACTIONS(1712), - [anon_sym_LT_LT] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1712), - [anon_sym_STAR_STAR] = ACTIONS(1712), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_LT_EQ] = ACTIONS(1712), - [anon_sym_EQ_EQ] = ACTIONS(1714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1712), - [anon_sym_BANG_EQ] = ACTIONS(1714), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1712), - [anon_sym_GT_EQ] = ACTIONS(1712), - [anon_sym_QMARK_QMARK] = ACTIONS(1712), - [anon_sym_instanceof] = ACTIONS(1714), - [anon_sym_TILDE] = ACTIONS(1712), - [anon_sym_void] = ACTIONS(1714), - [anon_sym_delete] = ACTIONS(1714), - [anon_sym_PLUS_PLUS] = ACTIONS(1712), - [anon_sym_DASH_DASH] = ACTIONS(1712), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1712), - [sym_number] = ACTIONS(1712), - [sym_private_property_identifier] = ACTIONS(1712), - [sym_this] = ACTIONS(1714), - [sym_super] = ACTIONS(1714), - [sym_true] = ACTIONS(1714), - [sym_false] = ACTIONS(1714), - [sym_null] = ACTIONS(1714), - [sym_undefined] = ACTIONS(1714), - [anon_sym_AT] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_readonly] = ACTIONS(1714), - [anon_sym_get] = ACTIONS(1714), - [anon_sym_set] = ACTIONS(1714), - [anon_sym_declare] = ACTIONS(1714), - [anon_sym_public] = ACTIONS(1714), - [anon_sym_private] = ACTIONS(1714), - [anon_sym_protected] = ACTIONS(1714), - [anon_sym_override] = ACTIONS(1714), - [anon_sym_module] = ACTIONS(1714), - [anon_sym_any] = ACTIONS(1714), - [anon_sym_number] = ACTIONS(1714), - [anon_sym_boolean] = ACTIONS(1714), - [anon_sym_string] = ACTIONS(1714), - [anon_sym_symbol] = ACTIONS(1714), - [anon_sym_object] = ACTIONS(1714), - [anon_sym_abstract] = ACTIONS(1714), - [anon_sym_satisfies] = ACTIONS(1714), - [anon_sym_interface] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(1712), - [sym__ternary_qmark] = ACTIONS(1712), + [sym_import] = STATE(3739), + [sym_expression_statement] = STATE(269), + [sym_variable_declaration] = STATE(269), + [sym_lexical_declaration] = STATE(269), + [sym_empty_statement] = STATE(269), + [sym_parenthesized_expression] = STATE(1286), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(6042), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(6042), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(6042), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1286), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1708), + [anon_sym_export] = ACTIONS(1710), + [anon_sym_type] = ACTIONS(1710), + [anon_sym_namespace] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_var] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1722), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1726), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1728), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1710), + [anon_sym_readonly] = ACTIONS(1710), + [anon_sym_get] = ACTIONS(1710), + [anon_sym_set] = ACTIONS(1710), + [anon_sym_declare] = ACTIONS(1710), + [anon_sym_public] = ACTIONS(1710), + [anon_sym_private] = ACTIONS(1710), + [anon_sym_protected] = ACTIONS(1710), + [anon_sym_override] = ACTIONS(1710), + [anon_sym_module] = ACTIONS(1710), + [anon_sym_any] = ACTIONS(1710), + [anon_sym_number] = ACTIONS(1710), + [anon_sym_boolean] = ACTIONS(1710), + [anon_sym_string] = ACTIONS(1710), + [anon_sym_symbol] = ACTIONS(1710), + [anon_sym_object] = ACTIONS(1710), [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(3306), - [sym_expression_statement] = STATE(289), - [sym_variable_declaration] = STATE(289), - [sym_lexical_declaration] = STATE(289), - [sym_empty_statement] = STATE(289), - [sym_parenthesized_expression] = STATE(1290), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1290), - [sym_subscript_expression] = STATE(1290), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1290), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1676), + [sym_import] = STATE(3739), + [sym_expression_statement] = STATE(274), + [sym_variable_declaration] = STATE(274), + [sym_lexical_declaration] = STATE(274), + [sym_empty_statement] = STATE(274), + [sym_parenthesized_expression] = STATE(1286), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(6042), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(6042), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(6042), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1286), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1708), + [anon_sym_export] = ACTIONS(1710), + [anon_sym_type] = ACTIONS(1710), + [anon_sym_namespace] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1714), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_var] = ACTIONS(1678), - [anon_sym_let] = ACTIONS(1680), - [anon_sym_const] = ACTIONS(1682), + [anon_sym_var] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1722), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1686), + [anon_sym_async] = ACTIONS(1724), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1726), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -51095,24 +54456,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1690), + [sym_undefined] = ACTIONS(1728), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_readonly] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_declare] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_protected] = ACTIONS(1672), - [anon_sym_override] = ACTIONS(1672), - [anon_sym_module] = ACTIONS(1672), - [anon_sym_any] = ACTIONS(1672), - [anon_sym_number] = ACTIONS(1672), - [anon_sym_boolean] = ACTIONS(1672), - [anon_sym_string] = ACTIONS(1672), - [anon_sym_symbol] = ACTIONS(1672), - [anon_sym_object] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(1710), + [anon_sym_readonly] = ACTIONS(1710), + [anon_sym_get] = ACTIONS(1710), + [anon_sym_set] = ACTIONS(1710), + [anon_sym_declare] = ACTIONS(1710), + [anon_sym_public] = ACTIONS(1710), + [anon_sym_private] = ACTIONS(1710), + [anon_sym_protected] = ACTIONS(1710), + [anon_sym_override] = ACTIONS(1710), + [anon_sym_module] = ACTIONS(1710), + [anon_sym_any] = ACTIONS(1710), + [anon_sym_number] = ACTIONS(1710), + [anon_sym_boolean] = ACTIONS(1710), + [anon_sym_string] = ACTIONS(1710), + [anon_sym_symbol] = ACTIONS(1710), + [anon_sym_object] = ACTIONS(1710), [sym_html_comment] = ACTIONS(5), }, [216] = { @@ -51227,557 +54588,557 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5512), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4979), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(5128), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(650), + [ts_builtin_sym_end] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1746), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1746), + [anon_sym_type] = ACTIONS(1746), + [anon_sym_as] = ACTIONS(1748), + [anon_sym_namespace] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1746), + [anon_sym_import] = ACTIONS(1746), + [anon_sym_with] = ACTIONS(1746), + [anon_sym_var] = ACTIONS(1746), + [anon_sym_let] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1746), + [anon_sym_if] = ACTIONS(1746), + [anon_sym_switch] = ACTIONS(1746), + [anon_sym_for] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1744), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_while] = ACTIONS(1746), + [anon_sym_do] = ACTIONS(1746), + [anon_sym_try] = ACTIONS(1746), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1746), + [anon_sym_debugger] = ACTIONS(1746), + [anon_sym_return] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1746), + [anon_sym_yield] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1744), + [sym_glimmer_opening_tag] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1748), + [anon_sym_DOT] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1744), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_function] = ACTIONS(1746), + [anon_sym_QMARK_DOT] = ACTIONS(1750), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(1748), + [anon_sym_GT_GT_GT] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1748), + [anon_sym_CARET] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1746), + [anon_sym_DASH] = ACTIONS(1746), + [anon_sym_SLASH] = ACTIONS(1746), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_STAR_STAR] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ] = ACTIONS(1748), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1748), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_QMARK_QMARK] = ACTIONS(1750), + [anon_sym_instanceof] = ACTIONS(1748), + [anon_sym_TILDE] = ACTIONS(1744), + [anon_sym_void] = ACTIONS(1746), + [anon_sym_delete] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1744), + [sym_number] = ACTIONS(1744), + [sym_private_property_identifier] = ACTIONS(1744), + [sym_this] = ACTIONS(1746), + [sym_super] = ACTIONS(1746), + [sym_true] = ACTIONS(1746), + [sym_false] = ACTIONS(1746), + [sym_null] = ACTIONS(1746), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1746), + [anon_sym_readonly] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1746), + [anon_sym_declare] = ACTIONS(1746), + [anon_sym_public] = ACTIONS(1746), + [anon_sym_private] = ACTIONS(1746), + [anon_sym_protected] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(1746), + [anon_sym_module] = ACTIONS(1746), + [anon_sym_any] = ACTIONS(1746), + [anon_sym_number] = ACTIONS(1746), + [anon_sym_boolean] = ACTIONS(1746), + [anon_sym_string] = ACTIONS(1746), + [anon_sym_symbol] = ACTIONS(1746), + [anon_sym_object] = ACTIONS(1746), + [anon_sym_abstract] = ACTIONS(1746), + [anon_sym_satisfies] = ACTIONS(1748), + [anon_sym_interface] = ACTIONS(1746), + [anon_sym_enum] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym__ternary_qmark] = ACTIONS(1750), + [sym_html_comment] = ACTIONS(5), + }, + [218] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2265), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(5874), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(5874), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(5874), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1756), + [anon_sym_type] = ACTIONS(1756), + [anon_sym_namespace] = ACTIONS(1758), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(1747), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_RBRACK] = ACTIONS(1694), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), + [anon_sym_async] = ACTIONS(1760), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), + [sym_undefined] = ACTIONS(1700), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), - [sym_html_comment] = ACTIONS(5), - }, - [218] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_export] = ACTIONS(1753), - [anon_sym_STAR] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_as] = ACTIONS(1753), - [anon_sym_namespace] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_COMMA] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_typeof] = ACTIONS(1753), - [anon_sym_import] = ACTIONS(1753), - [anon_sym_with] = ACTIONS(1753), - [anon_sym_var] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_await] = ACTIONS(1753), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_debugger] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [sym_glimmer_opening_tag] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1753), - [anon_sym_DOT] = ACTIONS(1753), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_function] = ACTIONS(1753), - [anon_sym_QMARK_DOT] = ACTIONS(1751), - [anon_sym_new] = ACTIONS(1753), - [anon_sym_using] = ACTIONS(1753), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1753), - [anon_sym_GT_GT_GT] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1753), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1753), - [anon_sym_PERCENT] = ACTIONS(1751), - [anon_sym_STAR_STAR] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_LT_EQ] = ACTIONS(1751), - [anon_sym_EQ_EQ] = ACTIONS(1753), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1751), - [anon_sym_BANG_EQ] = ACTIONS(1753), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1751), - [anon_sym_GT_EQ] = ACTIONS(1751), - [anon_sym_QMARK_QMARK] = ACTIONS(1751), - [anon_sym_instanceof] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_void] = ACTIONS(1753), - [anon_sym_delete] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1751), - [sym_number] = ACTIONS(1751), - [sym_private_property_identifier] = ACTIONS(1751), - [sym_this] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_null] = ACTIONS(1753), - [sym_undefined] = ACTIONS(1753), - [anon_sym_AT] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_readonly] = ACTIONS(1753), - [anon_sym_get] = ACTIONS(1753), - [anon_sym_set] = ACTIONS(1753), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_public] = ACTIONS(1753), - [anon_sym_private] = ACTIONS(1753), - [anon_sym_protected] = ACTIONS(1753), - [anon_sym_override] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1753), - [anon_sym_any] = ACTIONS(1753), - [anon_sym_number] = ACTIONS(1753), - [anon_sym_boolean] = ACTIONS(1753), - [anon_sym_string] = ACTIONS(1753), - [anon_sym_symbol] = ACTIONS(1753), - [anon_sym_object] = ACTIONS(1753), - [anon_sym_abstract] = ACTIONS(1753), - [anon_sym_satisfies] = ACTIONS(1753), - [anon_sym_interface] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [sym__automatic_semicolon] = ACTIONS(1751), - [sym__ternary_qmark] = ACTIONS(1751), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_readonly] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(1756), + [anon_sym_set] = ACTIONS(1756), + [anon_sym_declare] = ACTIONS(1756), + [anon_sym_public] = ACTIONS(1756), + [anon_sym_private] = ACTIONS(1756), + [anon_sym_protected] = ACTIONS(1756), + [anon_sym_override] = ACTIONS(1756), + [anon_sym_module] = ACTIONS(1756), + [anon_sym_any] = ACTIONS(1756), + [anon_sym_number] = ACTIONS(1756), + [anon_sym_boolean] = ACTIONS(1756), + [anon_sym_string] = ACTIONS(1756), + [anon_sym_symbol] = ACTIONS(1756), + [anon_sym_object] = ACTIONS(1756), [sym_html_comment] = ACTIONS(5), }, [219] = { - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1759), - [anon_sym_namespace] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_COMMA] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_typeof] = ACTIONS(1757), - [anon_sym_import] = ACTIONS(1757), - [anon_sym_with] = ACTIONS(1757), - [anon_sym_var] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_await] = ACTIONS(1757), - [anon_sym_in] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_debugger] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_throw] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_case] = ACTIONS(1757), - [anon_sym_yield] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1755), - [sym_glimmer_opening_tag] = ACTIONS(1755), - [anon_sym_GT] = ACTIONS(1759), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1755), - [anon_sym_class] = ACTIONS(1757), - [anon_sym_async] = ACTIONS(1757), - [anon_sym_function] = ACTIONS(1757), - [anon_sym_QMARK_DOT] = ACTIONS(1761), - [anon_sym_new] = ACTIONS(1757), - [anon_sym_using] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_PIPE_PIPE] = ACTIONS(1761), - [anon_sym_GT_GT] = ACTIONS(1759), - [anon_sym_GT_GT_GT] = ACTIONS(1761), - [anon_sym_LT_LT] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1757), - [anon_sym_PERCENT] = ACTIONS(1761), - [anon_sym_STAR_STAR] = ACTIONS(1761), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_EQ] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1759), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1761), - [anon_sym_BANG_EQ] = ACTIONS(1759), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1761), - [anon_sym_QMARK_QMARK] = ACTIONS(1761), - [anon_sym_instanceof] = ACTIONS(1759), - [anon_sym_TILDE] = ACTIONS(1755), - [anon_sym_void] = ACTIONS(1757), - [anon_sym_delete] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1755), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1755), - [sym_number] = ACTIONS(1755), - [sym_private_property_identifier] = ACTIONS(1755), - [sym_this] = ACTIONS(1757), - [sym_super] = ACTIONS(1757), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [sym_null] = ACTIONS(1757), - [sym_undefined] = ACTIONS(1757), - [anon_sym_AT] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_readonly] = ACTIONS(1757), - [anon_sym_get] = ACTIONS(1757), - [anon_sym_set] = ACTIONS(1757), - [anon_sym_declare] = ACTIONS(1757), - [anon_sym_public] = ACTIONS(1757), - [anon_sym_private] = ACTIONS(1757), - [anon_sym_protected] = ACTIONS(1757), - [anon_sym_override] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_any] = ACTIONS(1757), - [anon_sym_number] = ACTIONS(1757), - [anon_sym_boolean] = ACTIONS(1757), - [anon_sym_string] = ACTIONS(1757), - [anon_sym_symbol] = ACTIONS(1757), - [anon_sym_object] = ACTIONS(1757), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(1759), - [anon_sym_interface] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [sym__automatic_semicolon] = ACTIONS(1763), - [sym__ternary_qmark] = ACTIONS(1761), + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_namespace] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_with] = ACTIONS(1766), + [anon_sym_var] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_await] = ACTIONS(1766), + [anon_sym_in] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_debugger] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_case] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1764), + [sym_glimmer_opening_tag] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_class] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_function] = ACTIONS(1766), + [anon_sym_QMARK_DOT] = ACTIONS(1764), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_using] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_GT_GT_GT] = ACTIONS(1764), + [anon_sym_LT_LT] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_STAR_STAR] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_QMARK_QMARK] = ACTIONS(1764), + [anon_sym_instanceof] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1764), + [anon_sym_void] = ACTIONS(1766), + [anon_sym_delete] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1764), + [sym_number] = ACTIONS(1764), + [sym_private_property_identifier] = ACTIONS(1764), + [sym_this] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_true] = ACTIONS(1766), + [sym_false] = ACTIONS(1766), + [sym_null] = ACTIONS(1766), + [sym_undefined] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_readonly] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(1766), + [anon_sym_set] = ACTIONS(1766), + [anon_sym_declare] = ACTIONS(1766), + [anon_sym_public] = ACTIONS(1766), + [anon_sym_private] = ACTIONS(1766), + [anon_sym_protected] = ACTIONS(1766), + [anon_sym_override] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_any] = ACTIONS(1766), + [anon_sym_number] = ACTIONS(1766), + [anon_sym_boolean] = ACTIONS(1766), + [anon_sym_string] = ACTIONS(1766), + [anon_sym_symbol] = ACTIONS(1766), + [anon_sym_object] = ACTIONS(1766), + [anon_sym_abstract] = ACTIONS(1766), + [anon_sym_satisfies] = ACTIONS(1766), + [anon_sym_interface] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym__ternary_qmark] = ACTIONS(1764), [sym_html_comment] = ACTIONS(5), }, [220] = { - [ts_builtin_sym_end] = ACTIONS(1765), - [sym_identifier] = ACTIONS(1767), - [anon_sym_export] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1767), - [anon_sym_type] = ACTIONS(1767), - [anon_sym_as] = ACTIONS(1767), - [anon_sym_namespace] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(1767), - [anon_sym_import] = ACTIONS(1767), - [anon_sym_with] = ACTIONS(1767), - [anon_sym_var] = ACTIONS(1767), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_else] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_switch] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_await] = ACTIONS(1767), - [anon_sym_in] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_debugger] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_throw] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_yield] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_DOT] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1765), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_class] = ACTIONS(1767), - [anon_sym_async] = ACTIONS(1767), - [anon_sym_function] = ACTIONS(1767), - [anon_sym_QMARK_DOT] = ACTIONS(1765), - [anon_sym_new] = ACTIONS(1767), - [anon_sym_using] = ACTIONS(1767), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1767), - [anon_sym_GT_GT_GT] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_PERCENT] = ACTIONS(1765), - [anon_sym_STAR_STAR] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1767), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_QMARK_QMARK] = ACTIONS(1765), - [anon_sym_instanceof] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_void] = ACTIONS(1767), - [anon_sym_delete] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1765), - [sym_number] = ACTIONS(1765), - [sym_private_property_identifier] = ACTIONS(1765), - [sym_this] = ACTIONS(1767), - [sym_super] = ACTIONS(1767), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [sym_null] = ACTIONS(1767), - [sym_undefined] = ACTIONS(1767), - [anon_sym_AT] = ACTIONS(1765), - [anon_sym_static] = ACTIONS(1767), - [anon_sym_readonly] = ACTIONS(1767), - [anon_sym_get] = ACTIONS(1767), - [anon_sym_set] = ACTIONS(1767), - [anon_sym_declare] = ACTIONS(1767), - [anon_sym_public] = ACTIONS(1767), - [anon_sym_private] = ACTIONS(1767), - [anon_sym_protected] = ACTIONS(1767), - [anon_sym_override] = ACTIONS(1767), - [anon_sym_module] = ACTIONS(1767), - [anon_sym_any] = ACTIONS(1767), - [anon_sym_number] = ACTIONS(1767), - [anon_sym_boolean] = ACTIONS(1767), - [anon_sym_string] = ACTIONS(1767), - [anon_sym_symbol] = ACTIONS(1767), - [anon_sym_object] = ACTIONS(1767), - [anon_sym_abstract] = ACTIONS(1767), - [anon_sym_satisfies] = ACTIONS(1767), - [anon_sym_interface] = ACTIONS(1767), - [anon_sym_enum] = ACTIONS(1767), - [sym__automatic_semicolon] = ACTIONS(1765), - [sym__ternary_qmark] = ACTIONS(1765), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(6124), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(6077), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(6079), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(1771), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1624), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [221] = { - [ts_builtin_sym_end] = ACTIONS(1769), - [sym_identifier] = ACTIONS(1771), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_default] = ACTIONS(1771), - [anon_sym_type] = ACTIONS(1771), - [anon_sym_as] = ACTIONS(1773), - [anon_sym_namespace] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1769), + [ts_builtin_sym_end] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [anon_sym_export] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1777), + [anon_sym_type] = ACTIONS(1777), + [anon_sym_as] = ACTIONS(1777), + [anon_sym_namespace] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1775), [anon_sym_COMMA] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(1771), - [anon_sym_import] = ACTIONS(1771), - [anon_sym_with] = ACTIONS(1771), - [anon_sym_var] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_BANG] = ACTIONS(1771), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_switch] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_in] = ACTIONS(1773), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_debugger] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_case] = ACTIONS(1771), - [anon_sym_yield] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1769), - [sym_glimmer_opening_tag] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_async] = ACTIONS(1771), - [anon_sym_function] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(1777), + [anon_sym_import] = ACTIONS(1777), + [anon_sym_with] = ACTIONS(1777), + [anon_sym_var] = ACTIONS(1777), + [anon_sym_let] = ACTIONS(1777), + [anon_sym_const] = ACTIONS(1777), + [anon_sym_BANG] = ACTIONS(1777), + [anon_sym_else] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(1777), + [anon_sym_switch] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1777), + [anon_sym_in] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(1777), + [anon_sym_do] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_debugger] = ACTIONS(1777), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_throw] = ACTIONS(1777), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_case] = ACTIONS(1777), + [anon_sym_yield] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1775), + [sym_glimmer_opening_tag] = ACTIONS(1775), + [anon_sym_GT] = ACTIONS(1777), + [anon_sym_DOT] = ACTIONS(1777), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_SQUOTE] = ACTIONS(1775), + [anon_sym_class] = ACTIONS(1777), + [anon_sym_async] = ACTIONS(1777), + [anon_sym_function] = ACTIONS(1777), [anon_sym_QMARK_DOT] = ACTIONS(1775), - [anon_sym_new] = ACTIONS(1771), - [anon_sym_using] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1777), [anon_sym_AMP_AMP] = ACTIONS(1775), [anon_sym_PIPE_PIPE] = ACTIONS(1775), - [anon_sym_GT_GT] = ACTIONS(1773), + [anon_sym_GT_GT] = ACTIONS(1777), [anon_sym_GT_GT_GT] = ACTIONS(1775), [anon_sym_LT_LT] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1777), [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_SLASH] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_SLASH] = ACTIONS(1777), [anon_sym_PERCENT] = ACTIONS(1775), [anon_sym_STAR_STAR] = ACTIONS(1775), - [anon_sym_LT] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1777), [anon_sym_LT_EQ] = ACTIONS(1775), - [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_EQ_EQ] = ACTIONS(1777), [anon_sym_EQ_EQ_EQ] = ACTIONS(1775), - [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1777), [anon_sym_BANG_EQ_EQ] = ACTIONS(1775), [anon_sym_GT_EQ] = ACTIONS(1775), [anon_sym_QMARK_QMARK] = ACTIONS(1775), - [anon_sym_instanceof] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_void] = ACTIONS(1771), - [anon_sym_delete] = ACTIONS(1771), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1769), - [sym_number] = ACTIONS(1769), - [sym_private_property_identifier] = ACTIONS(1769), - [sym_this] = ACTIONS(1771), - [sym_super] = ACTIONS(1771), - [sym_true] = ACTIONS(1771), - [sym_false] = ACTIONS(1771), - [sym_null] = ACTIONS(1771), - [sym_undefined] = ACTIONS(1771), - [anon_sym_AT] = ACTIONS(1769), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_readonly] = ACTIONS(1771), - [anon_sym_get] = ACTIONS(1771), - [anon_sym_set] = ACTIONS(1771), - [anon_sym_declare] = ACTIONS(1771), - [anon_sym_public] = ACTIONS(1771), - [anon_sym_private] = ACTIONS(1771), - [anon_sym_protected] = ACTIONS(1771), - [anon_sym_override] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_any] = ACTIONS(1771), - [anon_sym_number] = ACTIONS(1771), - [anon_sym_boolean] = ACTIONS(1771), - [anon_sym_string] = ACTIONS(1771), - [anon_sym_symbol] = ACTIONS(1771), - [anon_sym_object] = ACTIONS(1771), - [anon_sym_abstract] = ACTIONS(1771), - [anon_sym_satisfies] = ACTIONS(1773), - [anon_sym_interface] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [sym__automatic_semicolon] = ACTIONS(1777), + [anon_sym_instanceof] = ACTIONS(1777), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1777), + [anon_sym_delete] = ACTIONS(1777), + [anon_sym_PLUS_PLUS] = ACTIONS(1775), + [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1775), + [sym_number] = ACTIONS(1775), + [sym_private_property_identifier] = ACTIONS(1775), + [sym_this] = ACTIONS(1777), + [sym_super] = ACTIONS(1777), + [sym_true] = ACTIONS(1777), + [sym_false] = ACTIONS(1777), + [sym_null] = ACTIONS(1777), + [sym_undefined] = ACTIONS(1777), + [anon_sym_AT] = ACTIONS(1775), + [anon_sym_static] = ACTIONS(1777), + [anon_sym_readonly] = ACTIONS(1777), + [anon_sym_get] = ACTIONS(1777), + [anon_sym_set] = ACTIONS(1777), + [anon_sym_declare] = ACTIONS(1777), + [anon_sym_public] = ACTIONS(1777), + [anon_sym_private] = ACTIONS(1777), + [anon_sym_protected] = ACTIONS(1777), + [anon_sym_override] = ACTIONS(1777), + [anon_sym_module] = ACTIONS(1777), + [anon_sym_any] = ACTIONS(1777), + [anon_sym_number] = ACTIONS(1777), + [anon_sym_boolean] = ACTIONS(1777), + [anon_sym_string] = ACTIONS(1777), + [anon_sym_symbol] = ACTIONS(1777), + [anon_sym_object] = ACTIONS(1777), + [anon_sym_abstract] = ACTIONS(1777), + [anon_sym_satisfies] = ACTIONS(1777), + [anon_sym_interface] = ACTIONS(1777), + [anon_sym_enum] = ACTIONS(1777), + [sym__automatic_semicolon] = ACTIONS(1775), [sym__ternary_qmark] = ACTIONS(1775), [sym_html_comment] = ACTIONS(5), }, @@ -51893,16 +55254,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [223] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_assignment_pattern] = STATE(5838), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5347), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_pattern_repeat1] = STATE(5850), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_RBRACK] = ACTIONS(1694), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(779), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(115), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_declare] = ACTIONS(115), + [anon_sym_public] = ACTIONS(115), + [anon_sym_private] = ACTIONS(115), + [anon_sym_protected] = ACTIONS(115), + [anon_sym_override] = ACTIONS(115), + [anon_sym_module] = ACTIONS(115), + [anon_sym_any] = ACTIONS(115), + [anon_sym_number] = ACTIONS(115), + [anon_sym_boolean] = ACTIONS(115), + [anon_sym_string] = ACTIONS(115), + [anon_sym_symbol] = ACTIONS(115), + [anon_sym_object] = ACTIONS(115), + [sym_html_comment] = ACTIONS(5), + }, + [224] = { [ts_builtin_sym_end] = ACTIONS(1783), [sym_identifier] = ACTIONS(1785), [anon_sym_export] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), [anon_sym_default] = ACTIONS(1785), [anon_sym_type] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1787), + [anon_sym_as] = ACTIONS(1785), [anon_sym_namespace] = ACTIONS(1785), [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1783), [anon_sym_RBRACE] = ACTIONS(1783), [anon_sym_typeof] = ACTIONS(1785), [anon_sym_import] = ACTIONS(1785), @@ -51917,7 +55389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1785), [anon_sym_LPAREN] = ACTIONS(1783), [anon_sym_await] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1787), + [anon_sym_in] = ACTIONS(1785), [anon_sym_while] = ACTIONS(1785), [anon_sym_do] = ACTIONS(1785), [anon_sym_try] = ACTIONS(1785), @@ -51931,38 +55403,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1785), [anon_sym_LBRACK] = ACTIONS(1783), [sym_glimmer_opening_tag] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(1787), + [anon_sym_GT] = ACTIONS(1785), + [anon_sym_DOT] = ACTIONS(1785), [anon_sym_DQUOTE] = ACTIONS(1783), [anon_sym_SQUOTE] = ACTIONS(1783), [anon_sym_class] = ACTIONS(1785), [anon_sym_async] = ACTIONS(1785), [anon_sym_function] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(1789), + [anon_sym_QMARK_DOT] = ACTIONS(1783), [anon_sym_new] = ACTIONS(1785), [anon_sym_using] = ACTIONS(1785), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_GT_GT] = ACTIONS(1787), - [anon_sym_GT_GT_GT] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_AMP_AMP] = ACTIONS(1783), + [anon_sym_PIPE_PIPE] = ACTIONS(1783), + [anon_sym_GT_GT] = ACTIONS(1785), + [anon_sym_GT_GT_GT] = ACTIONS(1783), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1785), [anon_sym_PLUS] = ACTIONS(1785), [anon_sym_DASH] = ACTIONS(1785), [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_PERCENT] = ACTIONS(1789), - [anon_sym_STAR_STAR] = ACTIONS(1789), + [anon_sym_PERCENT] = ACTIONS(1783), + [anon_sym_STAR_STAR] = ACTIONS(1783), [anon_sym_LT] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_EQ_EQ] = ACTIONS(1787), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1787), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1789), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_QMARK_QMARK] = ACTIONS(1789), - [anon_sym_instanceof] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1783), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1783), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1783), + [anon_sym_QMARK_QMARK] = ACTIONS(1783), + [anon_sym_instanceof] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1783), [anon_sym_void] = ACTIONS(1785), [anon_sym_delete] = ACTIONS(1785), @@ -51996,569 +55468,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1785), [anon_sym_object] = ACTIONS(1785), [anon_sym_abstract] = ACTIONS(1785), - [anon_sym_satisfies] = ACTIONS(1787), + [anon_sym_satisfies] = ACTIONS(1785), [anon_sym_interface] = ACTIONS(1785), [anon_sym_enum] = ACTIONS(1785), - [sym__automatic_semicolon] = ACTIONS(1789), - [sym__ternary_qmark] = ACTIONS(1789), - [sym_html_comment] = ACTIONS(5), - }, - [224] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(187), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_RBRACK] = ACTIONS(1650), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_extends] = ACTIONS(1652), + [sym__automatic_semicolon] = ACTIONS(1783), + [sym__ternary_qmark] = ACTIONS(1783), [sym_html_comment] = ACTIONS(5), }, [225] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5512), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4979), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(5128), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(1791), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [ts_builtin_sym_end] = ACTIONS(1787), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_default] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_as] = ACTIONS(1789), + [anon_sym_namespace] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(1789), + [anon_sym_with] = ACTIONS(1789), + [anon_sym_var] = ACTIONS(1789), + [anon_sym_let] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_else] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_switch] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(1789), + [anon_sym_while] = ACTIONS(1789), + [anon_sym_do] = ACTIONS(1789), + [anon_sym_try] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_debugger] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_throw] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1789), + [anon_sym_yield] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1787), + [sym_glimmer_opening_tag] = ACTIONS(1787), + [anon_sym_GT] = ACTIONS(1789), + [anon_sym_DOT] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1789), + [anon_sym_async] = ACTIONS(1789), + [anon_sym_function] = ACTIONS(1789), + [anon_sym_QMARK_DOT] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1789), + [anon_sym_using] = ACTIONS(1789), + [anon_sym_AMP_AMP] = ACTIONS(1787), + [anon_sym_PIPE_PIPE] = ACTIONS(1787), + [anon_sym_GT_GT] = ACTIONS(1789), + [anon_sym_GT_GT_GT] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(1789), + [anon_sym_PERCENT] = ACTIONS(1787), + [anon_sym_STAR_STAR] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_LT_EQ] = ACTIONS(1787), + [anon_sym_EQ_EQ] = ACTIONS(1789), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1787), + [anon_sym_BANG_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1787), + [anon_sym_QMARK_QMARK] = ACTIONS(1787), + [anon_sym_instanceof] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1787), + [sym_number] = ACTIONS(1787), + [sym_private_property_identifier] = ACTIONS(1787), + [sym_this] = ACTIONS(1789), + [sym_super] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_null] = ACTIONS(1789), + [sym_undefined] = ACTIONS(1789), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1789), + [anon_sym_readonly] = ACTIONS(1789), + [anon_sym_get] = ACTIONS(1789), + [anon_sym_set] = ACTIONS(1789), + [anon_sym_declare] = ACTIONS(1789), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_override] = ACTIONS(1789), + [anon_sym_module] = ACTIONS(1789), + [anon_sym_any] = ACTIONS(1789), + [anon_sym_number] = ACTIONS(1789), + [anon_sym_boolean] = ACTIONS(1789), + [anon_sym_string] = ACTIONS(1789), + [anon_sym_symbol] = ACTIONS(1789), + [anon_sym_object] = ACTIONS(1789), + [anon_sym_abstract] = ACTIONS(1789), + [anon_sym_satisfies] = ACTIONS(1789), + [anon_sym_interface] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [sym__automatic_semicolon] = ACTIONS(1787), + [sym__ternary_qmark] = ACTIONS(1787), [sym_html_comment] = ACTIONS(5), }, [226] = { - [ts_builtin_sym_end] = ACTIONS(1720), - [sym_identifier] = ACTIONS(1722), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_as] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym_import] = ACTIONS(1722), - [anon_sym_with] = ACTIONS(1722), - [anon_sym_var] = ACTIONS(1722), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_else] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_await] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_try] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_debugger] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_throw] = ACTIONS(1722), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_yield] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [sym_glimmer_opening_tag] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(1722), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_class] = ACTIONS(1722), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_function] = ACTIONS(1722), - [anon_sym_QMARK_DOT] = ACTIONS(1720), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_using] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1720), - [anon_sym_void] = ACTIONS(1722), - [anon_sym_delete] = ACTIONS(1722), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1720), - [sym_number] = ACTIONS(1720), - [sym_private_property_identifier] = ACTIONS(1720), - [sym_this] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_undefined] = ACTIONS(1722), - [anon_sym_AT] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_protected] = ACTIONS(1722), - [anon_sym_override] = ACTIONS(1722), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1722), - [anon_sym_number] = ACTIONS(1722), - [anon_sym_boolean] = ACTIONS(1722), - [anon_sym_string] = ACTIONS(1722), - [anon_sym_symbol] = ACTIONS(1722), - [anon_sym_object] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_satisfies] = ACTIONS(1722), - [anon_sym_interface] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [sym__automatic_semicolon] = ACTIONS(1795), - [sym__ternary_qmark] = ACTIONS(1720), - [sym_html_comment] = ACTIONS(5), - }, - [227] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5512), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_spread_element] = STATE(4979), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(5128), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(1744), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), - [sym_html_comment] = ACTIONS(5), - }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(1797), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1799), - [anon_sym_type] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_namespace] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1797), + [ts_builtin_sym_end] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1793), + [anon_sym_export] = ACTIONS(1793), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1793), + [anon_sym_as] = ACTIONS(1795), + [anon_sym_namespace] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1791), [anon_sym_COMMA] = ACTIONS(1797), - [anon_sym_RBRACE] = ACTIONS(1797), - [anon_sym_typeof] = ACTIONS(1799), - [anon_sym_import] = ACTIONS(1799), - [anon_sym_with] = ACTIONS(1799), - [anon_sym_var] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_switch] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1797), - [anon_sym_await] = ACTIONS(1799), - [anon_sym_in] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_debugger] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_throw] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_case] = ACTIONS(1799), - [anon_sym_yield] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1797), - [sym_glimmer_opening_tag] = ACTIONS(1797), - [anon_sym_GT] = ACTIONS(1799), - [anon_sym_DOT] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(1797), - [anon_sym_class] = ACTIONS(1799), - [anon_sym_async] = ACTIONS(1799), - [anon_sym_function] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_typeof] = ACTIONS(1793), + [anon_sym_import] = ACTIONS(1793), + [anon_sym_with] = ACTIONS(1793), + [anon_sym_var] = ACTIONS(1793), + [anon_sym_let] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_switch] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1793), + [anon_sym_in] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_do] = ACTIONS(1793), + [anon_sym_try] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_debugger] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_throw] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1793), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(1791), + [sym_glimmer_opening_tag] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1795), + [anon_sym_DOT] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_class] = ACTIONS(1793), + [anon_sym_async] = ACTIONS(1793), + [anon_sym_function] = ACTIONS(1793), [anon_sym_QMARK_DOT] = ACTIONS(1797), - [anon_sym_new] = ACTIONS(1799), - [anon_sym_using] = ACTIONS(1799), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1793), [anon_sym_AMP_AMP] = ACTIONS(1797), [anon_sym_PIPE_PIPE] = ACTIONS(1797), - [anon_sym_GT_GT] = ACTIONS(1799), + [anon_sym_GT_GT] = ACTIONS(1795), [anon_sym_GT_GT_GT] = ACTIONS(1797), [anon_sym_LT_LT] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1795), [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_SLASH] = ACTIONS(1793), [anon_sym_PERCENT] = ACTIONS(1797), [anon_sym_STAR_STAR] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1793), [anon_sym_LT_EQ] = ACTIONS(1797), - [anon_sym_EQ_EQ] = ACTIONS(1799), + [anon_sym_EQ_EQ] = ACTIONS(1795), [anon_sym_EQ_EQ_EQ] = ACTIONS(1797), - [anon_sym_BANG_EQ] = ACTIONS(1799), + [anon_sym_BANG_EQ] = ACTIONS(1795), [anon_sym_BANG_EQ_EQ] = ACTIONS(1797), [anon_sym_GT_EQ] = ACTIONS(1797), [anon_sym_QMARK_QMARK] = ACTIONS(1797), - [anon_sym_instanceof] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_void] = ACTIONS(1799), - [anon_sym_delete] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1797), - [anon_sym_DASH_DASH] = ACTIONS(1797), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1797), - [sym_number] = ACTIONS(1797), - [sym_private_property_identifier] = ACTIONS(1797), - [sym_this] = ACTIONS(1799), - [sym_super] = ACTIONS(1799), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_null] = ACTIONS(1799), - [sym_undefined] = ACTIONS(1799), - [anon_sym_AT] = ACTIONS(1797), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_readonly] = ACTIONS(1799), - [anon_sym_get] = ACTIONS(1799), - [anon_sym_set] = ACTIONS(1799), - [anon_sym_declare] = ACTIONS(1799), - [anon_sym_public] = ACTIONS(1799), - [anon_sym_private] = ACTIONS(1799), - [anon_sym_protected] = ACTIONS(1799), - [anon_sym_override] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_any] = ACTIONS(1799), - [anon_sym_number] = ACTIONS(1799), - [anon_sym_boolean] = ACTIONS(1799), - [anon_sym_string] = ACTIONS(1799), - [anon_sym_symbol] = ACTIONS(1799), - [anon_sym_object] = ACTIONS(1799), - [anon_sym_abstract] = ACTIONS(1799), - [anon_sym_satisfies] = ACTIONS(1799), - [anon_sym_interface] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [sym__automatic_semicolon] = ACTIONS(1797), + [anon_sym_instanceof] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_void] = ACTIONS(1793), + [anon_sym_delete] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1791), + [sym_number] = ACTIONS(1791), + [sym_private_property_identifier] = ACTIONS(1791), + [sym_this] = ACTIONS(1793), + [sym_super] = ACTIONS(1793), + [sym_true] = ACTIONS(1793), + [sym_false] = ACTIONS(1793), + [sym_null] = ACTIONS(1793), + [sym_undefined] = ACTIONS(1793), + [anon_sym_AT] = ACTIONS(1791), + [anon_sym_static] = ACTIONS(1793), + [anon_sym_readonly] = ACTIONS(1793), + [anon_sym_get] = ACTIONS(1793), + [anon_sym_set] = ACTIONS(1793), + [anon_sym_declare] = ACTIONS(1793), + [anon_sym_public] = ACTIONS(1793), + [anon_sym_private] = ACTIONS(1793), + [anon_sym_protected] = ACTIONS(1793), + [anon_sym_override] = ACTIONS(1793), + [anon_sym_module] = ACTIONS(1793), + [anon_sym_any] = ACTIONS(1793), + [anon_sym_number] = ACTIONS(1793), + [anon_sym_boolean] = ACTIONS(1793), + [anon_sym_string] = ACTIONS(1793), + [anon_sym_symbol] = ACTIONS(1793), + [anon_sym_object] = ACTIONS(1793), + [anon_sym_abstract] = ACTIONS(1793), + [anon_sym_satisfies] = ACTIONS(1795), + [anon_sym_interface] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [sym__automatic_semicolon] = ACTIONS(1799), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, - [229] = { + [227] = { [ts_builtin_sym_end] = ACTIONS(1801), [sym_identifier] = ACTIONS(1803), [anon_sym_export] = ACTIONS(1803), @@ -52669,7 +55808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1807), [sym_html_comment] = ACTIONS(5), }, - [230] = { + [228] = { [ts_builtin_sym_end] = ACTIONS(1811), [sym_identifier] = ACTIONS(1813), [anon_sym_export] = ACTIONS(1813), @@ -52780,17 +55919,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [231] = { + [229] = { [ts_builtin_sym_end] = ACTIONS(1821), [sym_identifier] = ACTIONS(1823), [anon_sym_export] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1825), [anon_sym_default] = ACTIONS(1823), [anon_sym_type] = ACTIONS(1823), - [anon_sym_as] = ACTIONS(1823), + [anon_sym_as] = ACTIONS(1825), [anon_sym_namespace] = ACTIONS(1823), [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1821), + [anon_sym_COMMA] = ACTIONS(1827), [anon_sym_RBRACE] = ACTIONS(1821), [anon_sym_typeof] = ACTIONS(1823), [anon_sym_import] = ACTIONS(1823), @@ -52805,7 +55944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1823), [anon_sym_LPAREN] = ACTIONS(1821), [anon_sym_await] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), + [anon_sym_in] = ACTIONS(1825), [anon_sym_while] = ACTIONS(1823), [anon_sym_do] = ACTIONS(1823), [anon_sym_try] = ACTIONS(1823), @@ -52819,38 +55958,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1823), [anon_sym_LBRACK] = ACTIONS(1821), [sym_glimmer_opening_tag] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_GT] = ACTIONS(1825), + [anon_sym_DOT] = ACTIONS(1825), [anon_sym_DQUOTE] = ACTIONS(1821), [anon_sym_SQUOTE] = ACTIONS(1821), [anon_sym_class] = ACTIONS(1823), [anon_sym_async] = ACTIONS(1823), [anon_sym_function] = ACTIONS(1823), - [anon_sym_QMARK_DOT] = ACTIONS(1821), + [anon_sym_QMARK_DOT] = ACTIONS(1827), [anon_sym_new] = ACTIONS(1823), [anon_sym_using] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1821), - [anon_sym_LT_LT] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1825), + [anon_sym_GT_GT_GT] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_CARET] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1825), [anon_sym_PLUS] = ACTIONS(1823), [anon_sym_DASH] = ACTIONS(1823), [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1821), - [anon_sym_STAR_STAR] = ACTIONS(1821), + [anon_sym_PERCENT] = ACTIONS(1827), + [anon_sym_STAR_STAR] = ACTIONS(1827), [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1821), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1821), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1821), - [anon_sym_GT_EQ] = ACTIONS(1821), - [anon_sym_QMARK_QMARK] = ACTIONS(1821), - [anon_sym_instanceof] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1827), + [anon_sym_EQ_EQ] = ACTIONS(1825), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), + [anon_sym_BANG_EQ] = ACTIONS(1825), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), + [anon_sym_GT_EQ] = ACTIONS(1827), + [anon_sym_QMARK_QMARK] = ACTIONS(1827), + [anon_sym_instanceof] = ACTIONS(1825), [anon_sym_TILDE] = ACTIONS(1821), [anon_sym_void] = ACTIONS(1823), [anon_sym_delete] = ACTIONS(1823), @@ -52884,246 +56023,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1823), [anon_sym_object] = ACTIONS(1823), [anon_sym_abstract] = ACTIONS(1823), - [anon_sym_satisfies] = ACTIONS(1823), + [anon_sym_satisfies] = ACTIONS(1825), [anon_sym_interface] = ACTIONS(1823), [anon_sym_enum] = ACTIONS(1823), - [sym__automatic_semicolon] = ACTIONS(1821), - [sym__ternary_qmark] = ACTIONS(1821), + [sym__automatic_semicolon] = ACTIONS(1829), + [sym__ternary_qmark] = ACTIONS(1827), [sym_html_comment] = ACTIONS(5), }, - [232] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(769), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_typeof] = ACTIONS(187), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_RBRACK] = ACTIONS(1704), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(779), - [anon_sym_using] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [sym_html_comment] = ACTIONS(5), - }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [sym_identifier] = ACTIONS(1827), - [anon_sym_export] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_as] = ACTIONS(1829), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1825), + [230] = { + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_as] = ACTIONS(1833), + [anon_sym_namespace] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1831), [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_typeof] = ACTIONS(1827), - [anon_sym_import] = ACTIONS(1827), - [anon_sym_with] = ACTIONS(1827), - [anon_sym_var] = ACTIONS(1827), - [anon_sym_let] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_else] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_await] = ACTIONS(1827), - [anon_sym_in] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_debugger] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_yield] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1825), - [sym_glimmer_opening_tag] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_async] = ACTIONS(1827), - [anon_sym_function] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_typeof] = ACTIONS(1833), + [anon_sym_import] = ACTIONS(1833), + [anon_sym_with] = ACTIONS(1833), + [anon_sym_var] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_switch] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_in] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_debugger] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_throw] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_case] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1831), + [sym_glimmer_opening_tag] = ACTIONS(1831), + [anon_sym_GT] = ACTIONS(1833), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [anon_sym_class] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1833), [anon_sym_QMARK_DOT] = ACTIONS(1831), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1833), [anon_sym_AMP_AMP] = ACTIONS(1831), [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_GT_GT] = ACTIONS(1829), + [anon_sym_GT_GT] = ACTIONS(1833), [anon_sym_GT_GT_GT] = ACTIONS(1831), [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1833), [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1833), [anon_sym_PERCENT] = ACTIONS(1831), [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1833), [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1829), + [anon_sym_EQ_EQ] = ACTIONS(1833), [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1829), + [anon_sym_BANG_EQ] = ACTIONS(1833), [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), [anon_sym_GT_EQ] = ACTIONS(1831), [anon_sym_QMARK_QMARK] = ACTIONS(1831), - [anon_sym_instanceof] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_void] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1825), - [sym_number] = ACTIONS(1825), - [sym_private_property_identifier] = ACTIONS(1825), - [sym_this] = ACTIONS(1827), - [sym_super] = ACTIONS(1827), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_readonly] = ACTIONS(1827), - [anon_sym_get] = ACTIONS(1827), - [anon_sym_set] = ACTIONS(1827), - [anon_sym_declare] = ACTIONS(1827), - [anon_sym_public] = ACTIONS(1827), - [anon_sym_private] = ACTIONS(1827), - [anon_sym_protected] = ACTIONS(1827), - [anon_sym_override] = ACTIONS(1827), - [anon_sym_module] = ACTIONS(1827), - [anon_sym_any] = ACTIONS(1827), - [anon_sym_number] = ACTIONS(1827), - [anon_sym_boolean] = ACTIONS(1827), - [anon_sym_string] = ACTIONS(1827), - [anon_sym_symbol] = ACTIONS(1827), - [anon_sym_object] = ACTIONS(1827), - [anon_sym_abstract] = ACTIONS(1827), - [anon_sym_satisfies] = ACTIONS(1829), - [anon_sym_interface] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [sym__automatic_semicolon] = ACTIONS(1833), + [anon_sym_instanceof] = ACTIONS(1833), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1833), + [anon_sym_delete] = ACTIONS(1833), + [anon_sym_PLUS_PLUS] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1831), + [sym_number] = ACTIONS(1831), + [sym_private_property_identifier] = ACTIONS(1831), + [sym_this] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_true] = ACTIONS(1833), + [sym_false] = ACTIONS(1833), + [sym_null] = ACTIONS(1833), + [sym_undefined] = ACTIONS(1833), + [anon_sym_AT] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_readonly] = ACTIONS(1833), + [anon_sym_get] = ACTIONS(1833), + [anon_sym_set] = ACTIONS(1833), + [anon_sym_declare] = ACTIONS(1833), + [anon_sym_public] = ACTIONS(1833), + [anon_sym_private] = ACTIONS(1833), + [anon_sym_protected] = ACTIONS(1833), + [anon_sym_override] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_any] = ACTIONS(1833), + [anon_sym_number] = ACTIONS(1833), + [anon_sym_boolean] = ACTIONS(1833), + [anon_sym_string] = ACTIONS(1833), + [anon_sym_symbol] = ACTIONS(1833), + [anon_sym_object] = ACTIONS(1833), + [anon_sym_abstract] = ACTIONS(1833), + [anon_sym_satisfies] = ACTIONS(1833), + [anon_sym_interface] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), + [sym__automatic_semicolon] = ACTIONS(1831), [sym__ternary_qmark] = ACTIONS(1831), [sym_html_comment] = ACTIONS(5), }, - [234] = { + [231] = { [ts_builtin_sym_end] = ACTIONS(1835), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_STAR] = ACTIONS(1837), [anon_sym_default] = ACTIONS(1837), [anon_sym_type] = ACTIONS(1837), - [anon_sym_as] = ACTIONS(1839), + [anon_sym_as] = ACTIONS(1837), [anon_sym_namespace] = ACTIONS(1837), [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1841), + [anon_sym_COMMA] = ACTIONS(1835), [anon_sym_RBRACE] = ACTIONS(1835), [anon_sym_typeof] = ACTIONS(1837), [anon_sym_import] = ACTIONS(1837), @@ -53138,7 +56166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1837), [anon_sym_LPAREN] = ACTIONS(1835), [anon_sym_await] = ACTIONS(1837), - [anon_sym_in] = ACTIONS(1839), + [anon_sym_in] = ACTIONS(1837), [anon_sym_while] = ACTIONS(1837), [anon_sym_do] = ACTIONS(1837), [anon_sym_try] = ACTIONS(1837), @@ -53152,38 +56180,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1837), [anon_sym_LBRACK] = ACTIONS(1835), [sym_glimmer_opening_tag] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), [anon_sym_DQUOTE] = ACTIONS(1835), [anon_sym_SQUOTE] = ACTIONS(1835), [anon_sym_class] = ACTIONS(1837), [anon_sym_async] = ACTIONS(1837), [anon_sym_function] = ACTIONS(1837), - [anon_sym_QMARK_DOT] = ACTIONS(1841), + [anon_sym_QMARK_DOT] = ACTIONS(1835), [anon_sym_new] = ACTIONS(1837), [anon_sym_using] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1841), - [anon_sym_PIPE_PIPE] = ACTIONS(1841), - [anon_sym_GT_GT] = ACTIONS(1839), - [anon_sym_GT_GT_GT] = ACTIONS(1841), - [anon_sym_LT_LT] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1839), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE_PIPE] = ACTIONS(1835), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1835), + [anon_sym_LT_LT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1837), [anon_sym_PLUS] = ACTIONS(1837), [anon_sym_DASH] = ACTIONS(1837), [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_STAR_STAR] = ACTIONS(1841), + [anon_sym_PERCENT] = ACTIONS(1835), + [anon_sym_STAR_STAR] = ACTIONS(1835), [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1841), - [anon_sym_EQ_EQ] = ACTIONS(1839), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1841), - [anon_sym_BANG_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1841), - [anon_sym_GT_EQ] = ACTIONS(1841), - [anon_sym_QMARK_QMARK] = ACTIONS(1841), - [anon_sym_instanceof] = ACTIONS(1839), + [anon_sym_LT_EQ] = ACTIONS(1835), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1835), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(1835), + [anon_sym_QMARK_QMARK] = ACTIONS(1835), + [anon_sym_instanceof] = ACTIONS(1837), [anon_sym_TILDE] = ACTIONS(1835), [anon_sym_void] = ACTIONS(1837), [anon_sym_delete] = ACTIONS(1837), @@ -53217,422 +56245,643 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1837), [anon_sym_object] = ACTIONS(1837), [anon_sym_abstract] = ACTIONS(1837), - [anon_sym_satisfies] = ACTIONS(1839), + [anon_sym_satisfies] = ACTIONS(1837), [anon_sym_interface] = ACTIONS(1837), [anon_sym_enum] = ACTIONS(1837), - [sym__automatic_semicolon] = ACTIONS(1843), - [sym__ternary_qmark] = ACTIONS(1841), + [sym__automatic_semicolon] = ACTIONS(1835), + [sym__ternary_qmark] = ACTIONS(1835), + [sym_html_comment] = ACTIONS(5), + }, + [232] = { + [ts_builtin_sym_end] = ACTIONS(1787), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_default] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_as] = ACTIONS(1789), + [anon_sym_namespace] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(1789), + [anon_sym_with] = ACTIONS(1789), + [anon_sym_var] = ACTIONS(1789), + [anon_sym_let] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_else] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_switch] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(1789), + [anon_sym_while] = ACTIONS(1789), + [anon_sym_do] = ACTIONS(1789), + [anon_sym_try] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_debugger] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_throw] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1789), + [anon_sym_yield] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1787), + [sym_glimmer_opening_tag] = ACTIONS(1787), + [anon_sym_GT] = ACTIONS(1789), + [anon_sym_DOT] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1789), + [anon_sym_async] = ACTIONS(1789), + [anon_sym_function] = ACTIONS(1789), + [anon_sym_QMARK_DOT] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1789), + [anon_sym_using] = ACTIONS(1789), + [anon_sym_AMP_AMP] = ACTIONS(1787), + [anon_sym_PIPE_PIPE] = ACTIONS(1787), + [anon_sym_GT_GT] = ACTIONS(1789), + [anon_sym_GT_GT_GT] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(1789), + [anon_sym_PERCENT] = ACTIONS(1787), + [anon_sym_STAR_STAR] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_LT_EQ] = ACTIONS(1787), + [anon_sym_EQ_EQ] = ACTIONS(1789), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1787), + [anon_sym_BANG_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1787), + [anon_sym_QMARK_QMARK] = ACTIONS(1787), + [anon_sym_instanceof] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1787), + [sym_number] = ACTIONS(1787), + [sym_private_property_identifier] = ACTIONS(1787), + [sym_this] = ACTIONS(1789), + [sym_super] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_null] = ACTIONS(1789), + [sym_undefined] = ACTIONS(1789), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1789), + [anon_sym_readonly] = ACTIONS(1789), + [anon_sym_get] = ACTIONS(1789), + [anon_sym_set] = ACTIONS(1789), + [anon_sym_declare] = ACTIONS(1789), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_override] = ACTIONS(1789), + [anon_sym_module] = ACTIONS(1789), + [anon_sym_any] = ACTIONS(1789), + [anon_sym_number] = ACTIONS(1789), + [anon_sym_boolean] = ACTIONS(1789), + [anon_sym_string] = ACTIONS(1789), + [anon_sym_symbol] = ACTIONS(1789), + [anon_sym_object] = ACTIONS(1789), + [anon_sym_abstract] = ACTIONS(1789), + [anon_sym_satisfies] = ACTIONS(1789), + [anon_sym_interface] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [sym__automatic_semicolon] = ACTIONS(1839), + [sym__ternary_qmark] = ACTIONS(1787), + [sym_html_comment] = ACTIONS(5), + }, + [233] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(6124), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(6077), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(6079), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(1768), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1624), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), + [sym_html_comment] = ACTIONS(5), + }, + [234] = { + [ts_builtin_sym_end] = ACTIONS(1841), + [sym_identifier] = ACTIONS(1843), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1845), + [anon_sym_namespace] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_typeof] = ACTIONS(1843), + [anon_sym_import] = ACTIONS(1843), + [anon_sym_with] = ACTIONS(1843), + [anon_sym_var] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_switch] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_await] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_throw] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_case] = ACTIONS(1843), + [anon_sym_yield] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1841), + [sym_glimmer_opening_tag] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1845), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_class] = ACTIONS(1843), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_QMARK_DOT] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_using] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1845), + [anon_sym_GT_GT_GT] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1847), + [anon_sym_STAR_STAR] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1847), + [anon_sym_EQ_EQ] = ACTIONS(1845), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ] = ACTIONS(1845), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1847), + [anon_sym_QMARK_QMARK] = ACTIONS(1847), + [anon_sym_instanceof] = ACTIONS(1845), + [anon_sym_TILDE] = ACTIONS(1841), + [anon_sym_void] = ACTIONS(1843), + [anon_sym_delete] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1841), + [sym_number] = ACTIONS(1841), + [sym_private_property_identifier] = ACTIONS(1841), + [sym_this] = ACTIONS(1843), + [sym_super] = ACTIONS(1843), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [sym_null] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_readonly] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_declare] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_protected] = ACTIONS(1843), + [anon_sym_override] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_any] = ACTIONS(1843), + [anon_sym_number] = ACTIONS(1843), + [anon_sym_boolean] = ACTIONS(1843), + [anon_sym_string] = ACTIONS(1843), + [anon_sym_symbol] = ACTIONS(1843), + [anon_sym_object] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_satisfies] = ACTIONS(1845), + [anon_sym_interface] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [sym__automatic_semicolon] = ACTIONS(1849), + [sym__ternary_qmark] = ACTIONS(1847), [sym_html_comment] = ACTIONS(5), }, [235] = { - [ts_builtin_sym_end] = ACTIONS(1845), - [sym_identifier] = ACTIONS(1847), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_as] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1845), + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_namespace] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1851), [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_typeof] = ACTIONS(1847), - [anon_sym_import] = ACTIONS(1847), - [anon_sym_with] = ACTIONS(1847), - [anon_sym_var] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_await] = ACTIONS(1847), - [anon_sym_in] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_throw] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_case] = ACTIONS(1847), - [anon_sym_yield] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1845), - [sym_glimmer_opening_tag] = ACTIONS(1845), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1845), - [anon_sym_SQUOTE] = ACTIONS(1845), - [anon_sym_class] = ACTIONS(1847), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_typeof] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1853), + [anon_sym_with] = ACTIONS(1853), + [anon_sym_var] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_debugger] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_throw] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_case] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1851), + [sym_glimmer_opening_tag] = ACTIONS(1851), + [anon_sym_GT] = ACTIONS(1853), + [anon_sym_DOT] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_function] = ACTIONS(1853), [anon_sym_QMARK_DOT] = ACTIONS(1851), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_using] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1853), [anon_sym_AMP_AMP] = ACTIONS(1851), [anon_sym_PIPE_PIPE] = ACTIONS(1851), - [anon_sym_GT_GT] = ACTIONS(1849), + [anon_sym_GT_GT] = ACTIONS(1853), [anon_sym_GT_GT_GT] = ACTIONS(1851), [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1853), [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1853), [anon_sym_PERCENT] = ACTIONS(1851), [anon_sym_STAR_STAR] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1853), [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1853), [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1853), [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), [anon_sym_GT_EQ] = ACTIONS(1851), [anon_sym_QMARK_QMARK] = ACTIONS(1851), - [anon_sym_instanceof] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_void] = ACTIONS(1847), - [anon_sym_delete] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1845), - [sym_number] = ACTIONS(1845), - [sym_private_property_identifier] = ACTIONS(1845), - [sym_this] = ACTIONS(1847), - [sym_super] = ACTIONS(1847), - [sym_true] = ACTIONS(1847), - [sym_false] = ACTIONS(1847), - [sym_null] = ACTIONS(1847), - [sym_undefined] = ACTIONS(1847), - [anon_sym_AT] = ACTIONS(1845), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_readonly] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_protected] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(1847), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_any] = ACTIONS(1847), - [anon_sym_number] = ACTIONS(1847), - [anon_sym_boolean] = ACTIONS(1847), - [anon_sym_string] = ACTIONS(1847), - [anon_sym_symbol] = ACTIONS(1847), - [anon_sym_object] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_satisfies] = ACTIONS(1849), - [anon_sym_interface] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [sym__automatic_semicolon] = ACTIONS(1853), + [anon_sym_instanceof] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_void] = ACTIONS(1853), + [anon_sym_delete] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1851), + [sym_number] = ACTIONS(1851), + [sym_private_property_identifier] = ACTIONS(1851), + [sym_this] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_null] = ACTIONS(1853), + [sym_undefined] = ACTIONS(1853), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_get] = ACTIONS(1853), + [anon_sym_set] = ACTIONS(1853), + [anon_sym_declare] = ACTIONS(1853), + [anon_sym_public] = ACTIONS(1853), + [anon_sym_private] = ACTIONS(1853), + [anon_sym_protected] = ACTIONS(1853), + [anon_sym_override] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_any] = ACTIONS(1853), + [anon_sym_number] = ACTIONS(1853), + [anon_sym_boolean] = ACTIONS(1853), + [anon_sym_string] = ACTIONS(1853), + [anon_sym_symbol] = ACTIONS(1853), + [anon_sym_object] = ACTIONS(1853), + [anon_sym_abstract] = ACTIONS(1853), + [anon_sym_satisfies] = ACTIONS(1853), + [anon_sym_interface] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [sym__automatic_semicolon] = ACTIONS(1851), [sym__ternary_qmark] = ACTIONS(1851), [sym_html_comment] = ACTIONS(5), }, [236] = { - [ts_builtin_sym_end] = ACTIONS(1855), - [sym_identifier] = ACTIONS(1857), - [anon_sym_export] = ACTIONS(1857), - [anon_sym_STAR] = ACTIONS(1857), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_type] = ACTIONS(1857), - [anon_sym_as] = ACTIONS(1857), - [anon_sym_namespace] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_typeof] = ACTIONS(1857), - [anon_sym_import] = ACTIONS(1857), - [anon_sym_with] = ACTIONS(1857), - [anon_sym_var] = ACTIONS(1857), - [anon_sym_let] = ACTIONS(1857), - [anon_sym_const] = ACTIONS(1857), - [anon_sym_BANG] = ACTIONS(1857), - [anon_sym_else] = ACTIONS(1857), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_switch] = ACTIONS(1857), - [anon_sym_for] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_await] = ACTIONS(1857), - [anon_sym_in] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(1857), - [anon_sym_try] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1857), - [anon_sym_continue] = ACTIONS(1857), - [anon_sym_debugger] = ACTIONS(1857), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_throw] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1857), - [anon_sym_yield] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1855), - [sym_glimmer_opening_tag] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1857), - [anon_sym_DOT] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_class] = ACTIONS(1857), - [anon_sym_async] = ACTIONS(1857), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_QMARK_DOT] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1857), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_GT_GT] = ACTIONS(1857), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1857), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_PLUS] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1857), - [anon_sym_SLASH] = ACTIONS(1857), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1857), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1857), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_QMARK_QMARK] = ACTIONS(1855), - [anon_sym_instanceof] = ACTIONS(1857), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_void] = ACTIONS(1857), - [anon_sym_delete] = ACTIONS(1857), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1855), - [sym_number] = ACTIONS(1855), - [sym_private_property_identifier] = ACTIONS(1855), - [sym_this] = ACTIONS(1857), - [sym_super] = ACTIONS(1857), - [sym_true] = ACTIONS(1857), - [sym_false] = ACTIONS(1857), - [sym_null] = ACTIONS(1857), - [sym_undefined] = ACTIONS(1857), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_static] = ACTIONS(1857), - [anon_sym_readonly] = ACTIONS(1857), - [anon_sym_get] = ACTIONS(1857), - [anon_sym_set] = ACTIONS(1857), - [anon_sym_declare] = ACTIONS(1857), - [anon_sym_public] = ACTIONS(1857), - [anon_sym_private] = ACTIONS(1857), - [anon_sym_protected] = ACTIONS(1857), - [anon_sym_override] = ACTIONS(1857), - [anon_sym_module] = ACTIONS(1857), - [anon_sym_any] = ACTIONS(1857), - [anon_sym_number] = ACTIONS(1857), - [anon_sym_boolean] = ACTIONS(1857), - [anon_sym_string] = ACTIONS(1857), - [anon_sym_symbol] = ACTIONS(1857), - [anon_sym_object] = ACTIONS(1857), - [anon_sym_abstract] = ACTIONS(1857), - [anon_sym_satisfies] = ACTIONS(1857), - [anon_sym_interface] = ACTIONS(1857), - [anon_sym_enum] = ACTIONS(1857), + [ts_builtin_sym_end] = ACTIONS(1670), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_as] = ACTIONS(1672), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_COMMA] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym_import] = ACTIONS(1672), + [anon_sym_with] = ACTIONS(1672), + [anon_sym_var] = ACTIONS(1672), + [anon_sym_let] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_else] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_debugger] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_glimmer_opening_tag] = ACTIONS(1670), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1670), + [anon_sym_SQUOTE] = ACTIONS(1670), + [anon_sym_class] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_function] = ACTIONS(1672), + [anon_sym_QMARK_DOT] = ACTIONS(1670), + [anon_sym_new] = ACTIONS(1672), + [anon_sym_using] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1670), + [anon_sym_PIPE_PIPE] = ACTIONS(1670), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_GT_GT_GT] = ACTIONS(1670), + [anon_sym_LT_LT] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_CARET] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_PERCENT] = ACTIONS(1670), + [anon_sym_STAR_STAR] = ACTIONS(1670), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_LT_EQ] = ACTIONS(1670), + [anon_sym_EQ_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), + [anon_sym_BANG_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), + [anon_sym_GT_EQ] = ACTIONS(1670), + [anon_sym_QMARK_QMARK] = ACTIONS(1670), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1672), + [anon_sym_delete] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1670), + [anon_sym_DASH_DASH] = ACTIONS(1670), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1670), + [sym_number] = ACTIONS(1670), + [sym_private_property_identifier] = ACTIONS(1670), + [sym_this] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_undefined] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_readonly] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1672), + [anon_sym_set] = ACTIONS(1672), + [anon_sym_declare] = ACTIONS(1672), + [anon_sym_public] = ACTIONS(1672), + [anon_sym_private] = ACTIONS(1672), + [anon_sym_protected] = ACTIONS(1672), + [anon_sym_override] = ACTIONS(1672), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_any] = ACTIONS(1672), + [anon_sym_number] = ACTIONS(1672), + [anon_sym_boolean] = ACTIONS(1672), + [anon_sym_string] = ACTIONS(1672), + [anon_sym_symbol] = ACTIONS(1672), + [anon_sym_object] = ACTIONS(1672), + [anon_sym_abstract] = ACTIONS(1672), + [anon_sym_satisfies] = ACTIONS(1672), + [anon_sym_interface] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), [sym__automatic_semicolon] = ACTIONS(1855), - [sym__ternary_qmark] = ACTIONS(1855), + [sym__ternary_qmark] = ACTIONS(1670), [sym_html_comment] = ACTIONS(5), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_typeof] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(1861), - [anon_sym_var] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_switch] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_await] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_debugger] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_throw] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_case] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [sym_glimmer_opening_tag] = ACTIONS(1859), - [anon_sym_GT] = ACTIONS(1863), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1859), - [anon_sym_SQUOTE] = ACTIONS(1859), - [anon_sym_class] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_function] = ACTIONS(1861), - [anon_sym_QMARK_DOT] = ACTIONS(1865), - [anon_sym_new] = ACTIONS(1861), - [anon_sym_using] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_PIPE_PIPE] = ACTIONS(1865), - [anon_sym_GT_GT] = ACTIONS(1863), - [anon_sym_GT_GT_GT] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1865), - [anon_sym_STAR_STAR] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1863), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1865), - [anon_sym_BANG_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1865), - [anon_sym_GT_EQ] = ACTIONS(1865), - [anon_sym_QMARK_QMARK] = ACTIONS(1865), - [anon_sym_instanceof] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(1861), - [anon_sym_delete] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1859), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1859), - [sym_number] = ACTIONS(1859), - [sym_private_property_identifier] = ACTIONS(1859), - [sym_this] = ACTIONS(1861), - [sym_super] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_null] = ACTIONS(1861), - [sym_undefined] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_readonly] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1861), - [anon_sym_private] = ACTIONS(1861), - [anon_sym_protected] = ACTIONS(1861), - [anon_sym_override] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_any] = ACTIONS(1861), - [anon_sym_number] = ACTIONS(1861), - [anon_sym_boolean] = ACTIONS(1861), - [anon_sym_string] = ACTIONS(1861), - [anon_sym_symbol] = ACTIONS(1861), - [anon_sym_object] = ACTIONS(1861), - [anon_sym_abstract] = ACTIONS(1861), - [anon_sym_satisfies] = ACTIONS(1863), - [anon_sym_interface] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [sym__automatic_semicolon] = ACTIONS(1867), - [sym__ternary_qmark] = ACTIONS(1865), - [sym_html_comment] = ACTIONS(5), - }, - [238] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_assignment_pattern] = STATE(4906), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4468), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_pattern_repeat1] = STATE(4923), - [sym_identifier] = ACTIONS(769), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_COMMA] = ACTIONS(1700), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1662), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(115), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(1662), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_RBRACK] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_RBRACK] = ACTIONS(1662), [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1662), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(156), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(779), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -53648,37 +56897,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(791), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [anon_sym_extends] = ACTIONS(1664), + [sym_html_comment] = ACTIONS(5), + }, + [238] = { + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1859), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_default] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_typeof] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_with] = ACTIONS(1859), + [anon_sym_var] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_debugger] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1857), + [sym_glimmer_opening_tag] = ACTIONS(1857), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1857), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(1859), + [anon_sym_QMARK_DOT] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1859), + [anon_sym_AMP_AMP] = ACTIONS(1857), + [anon_sym_PIPE_PIPE] = ACTIONS(1857), + [anon_sym_GT_GT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1857), + [anon_sym_LT_LT] = ACTIONS(1857), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_PERCENT] = ACTIONS(1857), + [anon_sym_STAR_STAR] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1857), + [anon_sym_EQ_EQ] = ACTIONS(1859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1857), + [anon_sym_BANG_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1857), + [anon_sym_QMARK_QMARK] = ACTIONS(1857), + [anon_sym_instanceof] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_delete] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1857), + [sym_number] = ACTIONS(1857), + [sym_private_property_identifier] = ACTIONS(1857), + [sym_this] = ACTIONS(1859), + [sym_super] = ACTIONS(1859), + [sym_true] = ACTIONS(1859), + [sym_false] = ACTIONS(1859), + [sym_null] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_abstract] = ACTIONS(1859), + [anon_sym_satisfies] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), + [sym__automatic_semicolon] = ACTIONS(1857), + [sym__ternary_qmark] = ACTIONS(1857), [sym_html_comment] = ACTIONS(5), }, [239] = { + [ts_builtin_sym_end] = ACTIONS(1861), + [sym_identifier] = ACTIONS(1863), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_default] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_typeof] = ACTIONS(1863), + [anon_sym_import] = ACTIONS(1863), + [anon_sym_with] = ACTIONS(1863), + [anon_sym_var] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_switch] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_debugger] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_throw] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_case] = ACTIONS(1863), + [anon_sym_yield] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1861), + [sym_glimmer_opening_tag] = ACTIONS(1861), + [anon_sym_GT] = ACTIONS(1865), + [anon_sym_DOT] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1861), + [anon_sym_SQUOTE] = ACTIONS(1861), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1863), + [anon_sym_function] = ACTIONS(1863), + [anon_sym_QMARK_DOT] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_using] = ACTIONS(1863), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_GT_GT] = ACTIONS(1865), + [anon_sym_GT_GT_GT] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_PERCENT] = ACTIONS(1867), + [anon_sym_STAR_STAR] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1867), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1867), + [anon_sym_QMARK_QMARK] = ACTIONS(1867), + [anon_sym_instanceof] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_void] = ACTIONS(1863), + [anon_sym_delete] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1861), + [sym_number] = ACTIONS(1861), + [sym_private_property_identifier] = ACTIONS(1861), + [sym_this] = ACTIONS(1863), + [sym_super] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [sym_false] = ACTIONS(1863), + [sym_null] = ACTIONS(1863), + [sym_undefined] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(1863), + [anon_sym_get] = ACTIONS(1863), + [anon_sym_set] = ACTIONS(1863), + [anon_sym_declare] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_private] = ACTIONS(1863), + [anon_sym_protected] = ACTIONS(1863), + [anon_sym_override] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_any] = ACTIONS(1863), + [anon_sym_number] = ACTIONS(1863), + [anon_sym_boolean] = ACTIONS(1863), + [anon_sym_string] = ACTIONS(1863), + [anon_sym_symbol] = ACTIONS(1863), + [anon_sym_object] = ACTIONS(1863), + [anon_sym_abstract] = ACTIONS(1863), + [anon_sym_satisfies] = ACTIONS(1865), + [anon_sym_interface] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [sym__automatic_semicolon] = ACTIONS(1869), + [sym__ternary_qmark] = ACTIONS(1867), + [sym_html_comment] = ACTIONS(5), + }, + [240] = { [ts_builtin_sym_end] = ACTIONS(1871), [sym_identifier] = ACTIONS(1873), [anon_sym_export] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1875), [anon_sym_default] = ACTIONS(1873), [anon_sym_type] = ACTIONS(1873), - [anon_sym_as] = ACTIONS(1873), + [anon_sym_as] = ACTIONS(1875), [anon_sym_namespace] = ACTIONS(1873), [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1877), [anon_sym_RBRACE] = ACTIONS(1871), [anon_sym_typeof] = ACTIONS(1873), [anon_sym_import] = ACTIONS(1873), @@ -53693,7 +57165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1873), [anon_sym_LPAREN] = ACTIONS(1871), [anon_sym_await] = ACTIONS(1873), - [anon_sym_in] = ACTIONS(1873), + [anon_sym_in] = ACTIONS(1875), [anon_sym_while] = ACTIONS(1873), [anon_sym_do] = ACTIONS(1873), [anon_sym_try] = ACTIONS(1873), @@ -53707,38 +57179,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1873), [anon_sym_LBRACK] = ACTIONS(1871), [sym_glimmer_opening_tag] = ACTIONS(1871), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_DOT] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(1875), [anon_sym_DQUOTE] = ACTIONS(1871), [anon_sym_SQUOTE] = ACTIONS(1871), [anon_sym_class] = ACTIONS(1873), [anon_sym_async] = ACTIONS(1873), [anon_sym_function] = ACTIONS(1873), - [anon_sym_QMARK_DOT] = ACTIONS(1871), + [anon_sym_QMARK_DOT] = ACTIONS(1877), [anon_sym_new] = ACTIONS(1873), [anon_sym_using] = ACTIONS(1873), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_GT_GT] = ACTIONS(1873), - [anon_sym_GT_GT_GT] = ACTIONS(1871), - [anon_sym_LT_LT] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_GT_GT] = ACTIONS(1875), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1875), [anon_sym_PLUS] = ACTIONS(1873), [anon_sym_DASH] = ACTIONS(1873), [anon_sym_SLASH] = ACTIONS(1873), - [anon_sym_PERCENT] = ACTIONS(1871), - [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), [anon_sym_LT] = ACTIONS(1873), - [anon_sym_LT_EQ] = ACTIONS(1871), - [anon_sym_EQ_EQ] = ACTIONS(1873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), - [anon_sym_BANG_EQ] = ACTIONS(1873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(1871), - [anon_sym_QMARK_QMARK] = ACTIONS(1871), - [anon_sym_instanceof] = ACTIONS(1873), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1875), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1875), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_QMARK_QMARK] = ACTIONS(1877), + [anon_sym_instanceof] = ACTIONS(1875), [anon_sym_TILDE] = ACTIONS(1871), [anon_sym_void] = ACTIONS(1873), [anon_sym_delete] = ACTIONS(1873), @@ -53772,787 +57244,676 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1873), [anon_sym_object] = ACTIONS(1873), [anon_sym_abstract] = ACTIONS(1873), - [anon_sym_satisfies] = ACTIONS(1873), + [anon_sym_satisfies] = ACTIONS(1875), [anon_sym_interface] = ACTIONS(1873), [anon_sym_enum] = ACTIONS(1873), - [sym__automatic_semicolon] = ACTIONS(1871), - [sym__ternary_qmark] = ACTIONS(1871), - [sym_html_comment] = ACTIONS(5), - }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1875), - [sym_identifier] = ACTIONS(1877), - [anon_sym_export] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_default] = ACTIONS(1877), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_namespace] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1875), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_typeof] = ACTIONS(1877), - [anon_sym_import] = ACTIONS(1877), - [anon_sym_with] = ACTIONS(1877), - [anon_sym_var] = ACTIONS(1877), - [anon_sym_let] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_else] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_switch] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1877), - [anon_sym_do] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_debugger] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_throw] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1875), - [anon_sym_case] = ACTIONS(1877), - [anon_sym_yield] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1875), - [sym_glimmer_opening_tag] = ACTIONS(1875), - [anon_sym_GT] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1875), - [anon_sym_SQUOTE] = ACTIONS(1875), - [anon_sym_class] = ACTIONS(1877), - [anon_sym_async] = ACTIONS(1877), - [anon_sym_function] = ACTIONS(1877), - [anon_sym_QMARK_DOT] = ACTIONS(1881), - [anon_sym_new] = ACTIONS(1877), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1879), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_SLASH] = ACTIONS(1877), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_STAR_STAR] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1877), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1879), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1879), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_QMARK_QMARK] = ACTIONS(1881), - [anon_sym_instanceof] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1875), - [anon_sym_void] = ACTIONS(1877), - [anon_sym_delete] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1875), - [sym_number] = ACTIONS(1875), - [sym_private_property_identifier] = ACTIONS(1875), - [sym_this] = ACTIONS(1877), - [sym_super] = ACTIONS(1877), - [sym_true] = ACTIONS(1877), - [sym_false] = ACTIONS(1877), - [sym_null] = ACTIONS(1877), - [sym_undefined] = ACTIONS(1877), - [anon_sym_AT] = ACTIONS(1875), - [anon_sym_static] = ACTIONS(1877), - [anon_sym_readonly] = ACTIONS(1877), - [anon_sym_get] = ACTIONS(1877), - [anon_sym_set] = ACTIONS(1877), - [anon_sym_declare] = ACTIONS(1877), - [anon_sym_public] = ACTIONS(1877), - [anon_sym_private] = ACTIONS(1877), - [anon_sym_protected] = ACTIONS(1877), - [anon_sym_override] = ACTIONS(1877), - [anon_sym_module] = ACTIONS(1877), - [anon_sym_any] = ACTIONS(1877), - [anon_sym_number] = ACTIONS(1877), - [anon_sym_boolean] = ACTIONS(1877), - [anon_sym_string] = ACTIONS(1877), - [anon_sym_symbol] = ACTIONS(1877), - [anon_sym_object] = ACTIONS(1877), - [anon_sym_abstract] = ACTIONS(1877), - [anon_sym_satisfies] = ACTIONS(1879), - [anon_sym_interface] = ACTIONS(1877), - [anon_sym_enum] = ACTIONS(1877), - [sym__automatic_semicolon] = ACTIONS(1883), - [sym__ternary_qmark] = ACTIONS(1881), + [sym__automatic_semicolon] = ACTIONS(1877), + [sym__ternary_qmark] = ACTIONS(1877), [sym_html_comment] = ACTIONS(5), }, [241] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_typeof] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_switch] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_debugger] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_throw] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [sym_glimmer_opening_tag] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_function] = ACTIONS(1887), - [anon_sym_QMARK_DOT] = ACTIONS(1891), - [anon_sym_new] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_AMP_AMP] = ACTIONS(1891), - [anon_sym_PIPE_PIPE] = ACTIONS(1891), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1891), - [anon_sym_LT_LT] = ACTIONS(1891), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1887), - [anon_sym_PERCENT] = ACTIONS(1891), - [anon_sym_STAR_STAR] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1891), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1891), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1891), - [anon_sym_GT_EQ] = ACTIONS(1891), - [anon_sym_QMARK_QMARK] = ACTIONS(1891), - [anon_sym_instanceof] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_void] = ACTIONS(1887), - [anon_sym_delete] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1885), - [sym_number] = ACTIONS(1885), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(1887), - [sym_super] = ACTIONS(1887), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_null] = ACTIONS(1887), - [sym_undefined] = ACTIONS(1887), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_readonly] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1887), - [anon_sym_set] = ACTIONS(1887), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_satisfies] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [sym__automatic_semicolon] = ACTIONS(1893), - [sym__ternary_qmark] = ACTIONS(1891), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_assignment_pattern] = STATE(5873), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5391), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_pattern_repeat1] = STATE(5870), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_RBRACK] = ACTIONS(1879), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(779), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(115), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_declare] = ACTIONS(115), + [anon_sym_public] = ACTIONS(115), + [anon_sym_private] = ACTIONS(115), + [anon_sym_protected] = ACTIONS(115), + [anon_sym_override] = ACTIONS(115), + [anon_sym_module] = ACTIONS(115), + [anon_sym_any] = ACTIONS(115), + [anon_sym_number] = ACTIONS(115), + [anon_sym_boolean] = ACTIONS(115), + [anon_sym_string] = ACTIONS(115), + [anon_sym_symbol] = ACTIONS(115), + [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, [242] = { - [ts_builtin_sym_end] = ACTIONS(1895), - [sym_identifier] = ACTIONS(1897), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1897), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_typeof] = ACTIONS(1897), - [anon_sym_import] = ACTIONS(1897), - [anon_sym_with] = ACTIONS(1897), - [anon_sym_var] = ACTIONS(1897), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_else] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_switch] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_await] = ACTIONS(1897), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_do] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_debugger] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_throw] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1897), - [anon_sym_yield] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1895), - [sym_glimmer_opening_tag] = ACTIONS(1895), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1895), - [anon_sym_SQUOTE] = ACTIONS(1895), - [anon_sym_class] = ACTIONS(1897), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1897), - [anon_sym_QMARK_DOT] = ACTIONS(1901), - [anon_sym_new] = ACTIONS(1897), - [anon_sym_using] = ACTIONS(1897), - [anon_sym_AMP_AMP] = ACTIONS(1901), - [anon_sym_PIPE_PIPE] = ACTIONS(1901), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1901), - [anon_sym_LT_LT] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_SLASH] = ACTIONS(1897), - [anon_sym_PERCENT] = ACTIONS(1901), - [anon_sym_STAR_STAR] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1897), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_QMARK_QMARK] = ACTIONS(1901), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_void] = ACTIONS(1897), - [anon_sym_delete] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1895), - [sym_number] = ACTIONS(1895), - [sym_private_property_identifier] = ACTIONS(1895), - [sym_this] = ACTIONS(1897), - [sym_super] = ACTIONS(1897), - [sym_true] = ACTIONS(1897), - [sym_false] = ACTIONS(1897), - [sym_null] = ACTIONS(1897), - [sym_undefined] = ACTIONS(1897), - [anon_sym_AT] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_readonly] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1897), - [anon_sym_set] = ACTIONS(1897), - [anon_sym_declare] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_protected] = ACTIONS(1897), - [anon_sym_override] = ACTIONS(1897), - [anon_sym_module] = ACTIONS(1897), - [anon_sym_any] = ACTIONS(1897), - [anon_sym_number] = ACTIONS(1897), - [anon_sym_boolean] = ACTIONS(1897), - [anon_sym_string] = ACTIONS(1897), - [anon_sym_symbol] = ACTIONS(1897), - [anon_sym_object] = ACTIONS(1897), - [anon_sym_abstract] = ACTIONS(1897), - [anon_sym_satisfies] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1897), - [anon_sym_enum] = ACTIONS(1897), - [sym__automatic_semicolon] = ACTIONS(1903), - [sym__ternary_qmark] = ACTIONS(1901), + [ts_builtin_sym_end] = ACTIONS(1881), + [sym_identifier] = ACTIONS(1883), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_default] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_as] = ACTIONS(1885), + [anon_sym_namespace] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_typeof] = ACTIONS(1883), + [anon_sym_import] = ACTIONS(1883), + [anon_sym_with] = ACTIONS(1883), + [anon_sym_var] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_switch] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_await] = ACTIONS(1883), + [anon_sym_in] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_debugger] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_throw] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_case] = ACTIONS(1883), + [anon_sym_yield] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1881), + [sym_glimmer_opening_tag] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1885), + [anon_sym_DOT] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1881), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_class] = ACTIONS(1883), + [anon_sym_async] = ACTIONS(1883), + [anon_sym_function] = ACTIONS(1883), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1883), + [anon_sym_using] = ACTIONS(1883), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1885), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_PLUS] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_SLASH] = ACTIONS(1883), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_STAR_STAR] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1885), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1885), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_QMARK_QMARK] = ACTIONS(1887), + [anon_sym_instanceof] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_void] = ACTIONS(1883), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1881), + [sym_number] = ACTIONS(1881), + [sym_private_property_identifier] = ACTIONS(1881), + [sym_this] = ACTIONS(1883), + [sym_super] = ACTIONS(1883), + [sym_true] = ACTIONS(1883), + [sym_false] = ACTIONS(1883), + [sym_null] = ACTIONS(1883), + [sym_undefined] = ACTIONS(1883), + [anon_sym_AT] = ACTIONS(1881), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_readonly] = ACTIONS(1883), + [anon_sym_get] = ACTIONS(1883), + [anon_sym_set] = ACTIONS(1883), + [anon_sym_declare] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_private] = ACTIONS(1883), + [anon_sym_protected] = ACTIONS(1883), + [anon_sym_override] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_any] = ACTIONS(1883), + [anon_sym_number] = ACTIONS(1883), + [anon_sym_boolean] = ACTIONS(1883), + [anon_sym_string] = ACTIONS(1883), + [anon_sym_symbol] = ACTIONS(1883), + [anon_sym_object] = ACTIONS(1883), + [anon_sym_abstract] = ACTIONS(1883), + [anon_sym_satisfies] = ACTIONS(1885), + [anon_sym_interface] = ACTIONS(1883), + [anon_sym_enum] = ACTIONS(1883), + [sym__automatic_semicolon] = ACTIONS(1889), + [sym__ternary_qmark] = ACTIONS(1887), [sym_html_comment] = ACTIONS(5), }, [243] = { - [ts_builtin_sym_end] = ACTIONS(1871), - [sym_identifier] = ACTIONS(1873), - [anon_sym_export] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_type] = ACTIONS(1873), - [anon_sym_as] = ACTIONS(1873), - [anon_sym_namespace] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_typeof] = ACTIONS(1873), - [anon_sym_import] = ACTIONS(1873), - [anon_sym_with] = ACTIONS(1873), - [anon_sym_var] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1873), - [anon_sym_else] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_switch] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_in] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_do] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_debugger] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_throw] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1873), - [anon_sym_yield] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1871), - [sym_glimmer_opening_tag] = ACTIONS(1871), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_DOT] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_SQUOTE] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1873), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1873), - [anon_sym_QMARK_DOT] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1873), - [anon_sym_using] = ACTIONS(1873), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_GT_GT] = ACTIONS(1873), - [anon_sym_GT_GT_GT] = ACTIONS(1871), - [anon_sym_LT_LT] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_SLASH] = ACTIONS(1873), - [anon_sym_PERCENT] = ACTIONS(1871), - [anon_sym_STAR_STAR] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_LT_EQ] = ACTIONS(1871), - [anon_sym_EQ_EQ] = ACTIONS(1873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), - [anon_sym_BANG_EQ] = ACTIONS(1873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(1871), - [anon_sym_QMARK_QMARK] = ACTIONS(1871), - [anon_sym_instanceof] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_void] = ACTIONS(1873), - [anon_sym_delete] = ACTIONS(1873), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1871), - [sym_number] = ACTIONS(1871), - [sym_private_property_identifier] = ACTIONS(1871), - [sym_this] = ACTIONS(1873), - [sym_super] = ACTIONS(1873), - [sym_true] = ACTIONS(1873), - [sym_false] = ACTIONS(1873), - [sym_null] = ACTIONS(1873), - [sym_undefined] = ACTIONS(1873), - [anon_sym_AT] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_readonly] = ACTIONS(1873), - [anon_sym_get] = ACTIONS(1873), - [anon_sym_set] = ACTIONS(1873), - [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_override] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1873), - [anon_sym_any] = ACTIONS(1873), - [anon_sym_number] = ACTIONS(1873), - [anon_sym_boolean] = ACTIONS(1873), - [anon_sym_string] = ACTIONS(1873), - [anon_sym_symbol] = ACTIONS(1873), - [anon_sym_object] = ACTIONS(1873), - [anon_sym_abstract] = ACTIONS(1873), - [anon_sym_satisfies] = ACTIONS(1873), - [anon_sym_interface] = ACTIONS(1873), - [anon_sym_enum] = ACTIONS(1873), - [sym__automatic_semicolon] = ACTIONS(1905), - [sym__ternary_qmark] = ACTIONS(1871), + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_identifier] = ACTIONS(1893), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_default] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1895), + [anon_sym_namespace] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_typeof] = ACTIONS(1893), + [anon_sym_import] = ACTIONS(1893), + [anon_sym_with] = ACTIONS(1893), + [anon_sym_var] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_switch] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_await] = ACTIONS(1893), + [anon_sym_in] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_debugger] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_case] = ACTIONS(1893), + [anon_sym_yield] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1891), + [sym_glimmer_opening_tag] = ACTIONS(1891), + [anon_sym_GT] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1891), + [anon_sym_SQUOTE] = ACTIONS(1891), + [anon_sym_class] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_function] = ACTIONS(1893), + [anon_sym_QMARK_DOT] = ACTIONS(1897), + [anon_sym_new] = ACTIONS(1893), + [anon_sym_using] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_GT_GT] = ACTIONS(1895), + [anon_sym_GT_GT_GT] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_STAR_STAR] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_LT_EQ] = ACTIONS(1897), + [anon_sym_EQ_EQ] = ACTIONS(1895), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ] = ACTIONS(1895), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), + [anon_sym_GT_EQ] = ACTIONS(1897), + [anon_sym_QMARK_QMARK] = ACTIONS(1897), + [anon_sym_instanceof] = ACTIONS(1895), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_void] = ACTIONS(1893), + [anon_sym_delete] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1891), + [sym_number] = ACTIONS(1891), + [sym_private_property_identifier] = ACTIONS(1891), + [sym_this] = ACTIONS(1893), + [sym_super] = ACTIONS(1893), + [sym_true] = ACTIONS(1893), + [sym_false] = ACTIONS(1893), + [sym_null] = ACTIONS(1893), + [sym_undefined] = ACTIONS(1893), + [anon_sym_AT] = ACTIONS(1891), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_readonly] = ACTIONS(1893), + [anon_sym_get] = ACTIONS(1893), + [anon_sym_set] = ACTIONS(1893), + [anon_sym_declare] = ACTIONS(1893), + [anon_sym_public] = ACTIONS(1893), + [anon_sym_private] = ACTIONS(1893), + [anon_sym_protected] = ACTIONS(1893), + [anon_sym_override] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_any] = ACTIONS(1893), + [anon_sym_number] = ACTIONS(1893), + [anon_sym_boolean] = ACTIONS(1893), + [anon_sym_string] = ACTIONS(1893), + [anon_sym_symbol] = ACTIONS(1893), + [anon_sym_object] = ACTIONS(1893), + [anon_sym_abstract] = ACTIONS(1893), + [anon_sym_satisfies] = ACTIONS(1895), + [anon_sym_interface] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), + [sym__automatic_semicolon] = ACTIONS(1899), + [sym__ternary_qmark] = ACTIONS(1897), [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2199), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5144), - [sym_assignment_pattern] = STATE(5148), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5144), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5144), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4544), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_pattern_repeat1] = STATE(5165), - [sym_identifier] = ACTIONS(1907), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_type] = ACTIONS(1909), - [anon_sym_namespace] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_typeof] = ACTIONS(1138), + [ts_builtin_sym_end] = ACTIONS(1901), + [sym_identifier] = ACTIONS(1903), + [anon_sym_export] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_default] = ACTIONS(1903), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_as] = ACTIONS(1905), + [anon_sym_namespace] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_typeof] = ACTIONS(1903), + [anon_sym_import] = ACTIONS(1903), + [anon_sym_with] = ACTIONS(1903), + [anon_sym_var] = ACTIONS(1903), + [anon_sym_let] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_else] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_switch] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_await] = ACTIONS(1903), + [anon_sym_in] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_do] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_debugger] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_case] = ACTIONS(1903), + [anon_sym_yield] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1901), + [sym_glimmer_opening_tag] = ACTIONS(1901), + [anon_sym_GT] = ACTIONS(1905), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1901), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(1903), + [anon_sym_function] = ACTIONS(1903), + [anon_sym_QMARK_DOT] = ACTIONS(1907), + [anon_sym_new] = ACTIONS(1903), + [anon_sym_using] = ACTIONS(1903), + [anon_sym_AMP_AMP] = ACTIONS(1907), + [anon_sym_PIPE_PIPE] = ACTIONS(1907), + [anon_sym_GT_GT] = ACTIONS(1905), + [anon_sym_GT_GT_GT] = ACTIONS(1907), + [anon_sym_LT_LT] = ACTIONS(1907), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1905), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_PERCENT] = ACTIONS(1907), + [anon_sym_STAR_STAR] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_LT_EQ] = ACTIONS(1907), + [anon_sym_EQ_EQ] = ACTIONS(1905), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1907), + [anon_sym_BANG_EQ] = ACTIONS(1905), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1907), + [anon_sym_GT_EQ] = ACTIONS(1907), + [anon_sym_QMARK_QMARK] = ACTIONS(1907), + [anon_sym_instanceof] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1901), + [anon_sym_void] = ACTIONS(1903), + [anon_sym_delete] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1901), + [anon_sym_DASH_DASH] = ACTIONS(1901), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1901), + [sym_number] = ACTIONS(1901), + [sym_private_property_identifier] = ACTIONS(1901), + [sym_this] = ACTIONS(1903), + [sym_super] = ACTIONS(1903), + [sym_true] = ACTIONS(1903), + [sym_false] = ACTIONS(1903), + [sym_null] = ACTIONS(1903), + [sym_undefined] = ACTIONS(1903), + [anon_sym_AT] = ACTIONS(1901), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_readonly] = ACTIONS(1903), + [anon_sym_get] = ACTIONS(1903), + [anon_sym_set] = ACTIONS(1903), + [anon_sym_declare] = ACTIONS(1903), + [anon_sym_public] = ACTIONS(1903), + [anon_sym_private] = ACTIONS(1903), + [anon_sym_protected] = ACTIONS(1903), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_module] = ACTIONS(1903), + [anon_sym_any] = ACTIONS(1903), + [anon_sym_number] = ACTIONS(1903), + [anon_sym_boolean] = ACTIONS(1903), + [anon_sym_string] = ACTIONS(1903), + [anon_sym_symbol] = ACTIONS(1903), + [anon_sym_object] = ACTIONS(1903), + [anon_sym_abstract] = ACTIONS(1903), + [anon_sym_satisfies] = ACTIONS(1905), + [anon_sym_interface] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [sym__automatic_semicolon] = ACTIONS(1909), + [sym__ternary_qmark] = ACTIONS(1907), + [sym_html_comment] = ACTIONS(5), + }, + [245] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(6124), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_spread_element] = STATE(6077), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(6079), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_RBRACK] = ACTIONS(1704), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(1911), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1913), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1915), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1710), + [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1909), - [anon_sym_readonly] = ACTIONS(1909), - [anon_sym_get] = ACTIONS(1909), - [anon_sym_set] = ACTIONS(1909), - [anon_sym_declare] = ACTIONS(1909), - [anon_sym_public] = ACTIONS(1909), - [anon_sym_private] = ACTIONS(1909), - [anon_sym_protected] = ACTIONS(1909), - [anon_sym_override] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_any] = ACTIONS(1909), - [anon_sym_number] = ACTIONS(1909), - [anon_sym_boolean] = ACTIONS(1909), - [anon_sym_string] = ACTIONS(1909), - [anon_sym_symbol] = ACTIONS(1909), - [anon_sym_object] = ACTIONS(1909), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [245] = { - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_identifier] = ACTIONS(1919), - [anon_sym_export] = ACTIONS(1919), + [246] = { + [ts_builtin_sym_end] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1917), + [anon_sym_export] = ACTIONS(1917), [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_default] = ACTIONS(1919), - [anon_sym_type] = ACTIONS(1919), + [anon_sym_default] = ACTIONS(1917), + [anon_sym_type] = ACTIONS(1917), [anon_sym_as] = ACTIONS(1919), - [anon_sym_namespace] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_typeof] = ACTIONS(1919), - [anon_sym_import] = ACTIONS(1919), - [anon_sym_with] = ACTIONS(1919), - [anon_sym_var] = ACTIONS(1919), - [anon_sym_let] = ACTIONS(1919), - [anon_sym_const] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_else] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_switch] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_await] = ACTIONS(1919), + [anon_sym_namespace] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_typeof] = ACTIONS(1917), + [anon_sym_import] = ACTIONS(1917), + [anon_sym_with] = ACTIONS(1917), + [anon_sym_var] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_BANG] = ACTIONS(1917), + [anon_sym_else] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_switch] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1917), [anon_sym_in] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_do] = ACTIONS(1919), - [anon_sym_try] = ACTIONS(1919), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_debugger] = ACTIONS(1919), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_throw] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_case] = ACTIONS(1919), - [anon_sym_yield] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1917), - [sym_glimmer_opening_tag] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_debugger] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_throw] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_case] = ACTIONS(1917), + [anon_sym_yield] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1915), + [sym_glimmer_opening_tag] = ACTIONS(1915), [anon_sym_GT] = ACTIONS(1919), [anon_sym_DOT] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1917), - [anon_sym_SQUOTE] = ACTIONS(1917), - [anon_sym_class] = ACTIONS(1919), - [anon_sym_async] = ACTIONS(1919), - [anon_sym_function] = ACTIONS(1919), - [anon_sym_QMARK_DOT] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(1919), - [anon_sym_using] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1917), - [anon_sym_PIPE_PIPE] = ACTIONS(1917), - [anon_sym_GT_GT] = ACTIONS(1919), - [anon_sym_GT_GT_GT] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_PERCENT] = ACTIONS(1917), - [anon_sym_STAR_STAR] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1919), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1919), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1917), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_QMARK_QMARK] = ACTIONS(1917), - [anon_sym_instanceof] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_void] = ACTIONS(1919), - [anon_sym_delete] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1917), - [sym_number] = ACTIONS(1917), - [sym_private_property_identifier] = ACTIONS(1917), - [sym_this] = ACTIONS(1919), - [sym_super] = ACTIONS(1919), - [sym_true] = ACTIONS(1919), - [sym_false] = ACTIONS(1919), - [sym_null] = ACTIONS(1919), - [sym_undefined] = ACTIONS(1919), - [anon_sym_AT] = ACTIONS(1917), - [anon_sym_static] = ACTIONS(1919), - [anon_sym_readonly] = ACTIONS(1919), - [anon_sym_get] = ACTIONS(1919), - [anon_sym_set] = ACTIONS(1919), - [anon_sym_declare] = ACTIONS(1919), - [anon_sym_public] = ACTIONS(1919), - [anon_sym_private] = ACTIONS(1919), - [anon_sym_protected] = ACTIONS(1919), - [anon_sym_override] = ACTIONS(1919), - [anon_sym_module] = ACTIONS(1919), - [anon_sym_any] = ACTIONS(1919), - [anon_sym_number] = ACTIONS(1919), - [anon_sym_boolean] = ACTIONS(1919), - [anon_sym_string] = ACTIONS(1919), - [anon_sym_symbol] = ACTIONS(1919), - [anon_sym_object] = ACTIONS(1919), - [anon_sym_abstract] = ACTIONS(1919), - [anon_sym_satisfies] = ACTIONS(1919), - [anon_sym_interface] = ACTIONS(1919), - [anon_sym_enum] = ACTIONS(1919), - [sym__automatic_semicolon] = ACTIONS(1917), - [sym__ternary_qmark] = ACTIONS(1917), - [sym_html_comment] = ACTIONS(5), - }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_default] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_as] = ACTIONS(1923), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_typeof] = ACTIONS(1923), - [anon_sym_import] = ACTIONS(1923), - [anon_sym_with] = ACTIONS(1923), - [anon_sym_var] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_switch] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_await] = ACTIONS(1923), - [anon_sym_in] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_debugger] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_throw] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_case] = ACTIONS(1923), - [anon_sym_yield] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1921), - [sym_glimmer_opening_tag] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_DOT] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1921), - [anon_sym_SQUOTE] = ACTIONS(1921), - [anon_sym_class] = ACTIONS(1923), - [anon_sym_async] = ACTIONS(1923), - [anon_sym_function] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1917), + [anon_sym_async] = ACTIONS(1917), + [anon_sym_function] = ACTIONS(1917), [anon_sym_QMARK_DOT] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1923), - [anon_sym_using] = ACTIONS(1923), + [anon_sym_new] = ACTIONS(1917), + [anon_sym_using] = ACTIONS(1917), [anon_sym_AMP_AMP] = ACTIONS(1921), [anon_sym_PIPE_PIPE] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(1919), [anon_sym_GT_GT_GT] = ACTIONS(1921), [anon_sym_LT_LT] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1919), [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1917), [anon_sym_PERCENT] = ACTIONS(1921), [anon_sym_STAR_STAR] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1917), [anon_sym_LT_EQ] = ACTIONS(1921), - [anon_sym_EQ_EQ] = ACTIONS(1923), + [anon_sym_EQ_EQ] = ACTIONS(1919), [anon_sym_EQ_EQ_EQ] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1923), + [anon_sym_BANG_EQ] = ACTIONS(1919), [anon_sym_BANG_EQ_EQ] = ACTIONS(1921), [anon_sym_GT_EQ] = ACTIONS(1921), [anon_sym_QMARK_QMARK] = ACTIONS(1921), - [anon_sym_instanceof] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(1923), - [anon_sym_delete] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1921), - [sym_number] = ACTIONS(1921), - [sym_private_property_identifier] = ACTIONS(1921), - [sym_this] = ACTIONS(1923), - [sym_super] = ACTIONS(1923), - [sym_true] = ACTIONS(1923), - [sym_false] = ACTIONS(1923), - [sym_null] = ACTIONS(1923), - [sym_undefined] = ACTIONS(1923), - [anon_sym_AT] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_get] = ACTIONS(1923), - [anon_sym_set] = ACTIONS(1923), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), - [anon_sym_object] = ACTIONS(1923), - [anon_sym_abstract] = ACTIONS(1923), - [anon_sym_satisfies] = ACTIONS(1923), - [anon_sym_interface] = ACTIONS(1923), - [anon_sym_enum] = ACTIONS(1923), - [sym__automatic_semicolon] = ACTIONS(1921), + [anon_sym_instanceof] = ACTIONS(1919), + [anon_sym_TILDE] = ACTIONS(1915), + [anon_sym_void] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(1917), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1915), + [sym_number] = ACTIONS(1915), + [sym_private_property_identifier] = ACTIONS(1915), + [sym_this] = ACTIONS(1917), + [sym_super] = ACTIONS(1917), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_null] = ACTIONS(1917), + [sym_undefined] = ACTIONS(1917), + [anon_sym_AT] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1917), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_get] = ACTIONS(1917), + [anon_sym_set] = ACTIONS(1917), + [anon_sym_declare] = ACTIONS(1917), + [anon_sym_public] = ACTIONS(1917), + [anon_sym_private] = ACTIONS(1917), + [anon_sym_protected] = ACTIONS(1917), + [anon_sym_override] = ACTIONS(1917), + [anon_sym_module] = ACTIONS(1917), + [anon_sym_any] = ACTIONS(1917), + [anon_sym_number] = ACTIONS(1917), + [anon_sym_boolean] = ACTIONS(1917), + [anon_sym_string] = ACTIONS(1917), + [anon_sym_symbol] = ACTIONS(1917), + [anon_sym_object] = ACTIONS(1917), + [anon_sym_abstract] = ACTIONS(1917), + [anon_sym_satisfies] = ACTIONS(1919), + [anon_sym_interface] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1917), + [sym__automatic_semicolon] = ACTIONS(1923), [sym__ternary_qmark] = ACTIONS(1921), [sym_html_comment] = ACTIONS(5), }, @@ -54668,53 +58029,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [248] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_assignment_pattern] = STATE(5512), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(5128), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_assignment_pattern] = STATE(6124), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(6079), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -54741,7 +58102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -54778,383 +58139,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [249] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1832), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_spread_element] = STATE(4652), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4656), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1933), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [250] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2040), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1650), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), - [anon_sym_extends] = ACTIONS(1652), - [sym_html_comment] = ACTIONS(5), - }, - [251] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_spread_element] = STATE(5151), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(5153), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1937), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [252] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2259), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(1662), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -55162,18 +58196,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1662), [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1662), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), [anon_sym_SLASH] = ACTIONS(970), @@ -55192,7 +58226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -55210,57 +58244,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1394), [anon_sym_symbol] = ACTIONS(1394), [anon_sym_object] = ACTIONS(1394), - [anon_sym_extends] = ACTIONS(1652), + [anon_sym_extends] = ACTIONS(1664), [sym_html_comment] = ACTIONS(5), }, - [253] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4399), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_accessibility_modifier] = STATE(265), - [sym_override_modifier] = STATE(293), - [sym_type_parameters] = STATE(5349), + [250] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(1256), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(4886), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_accessibility_modifier] = STATE(283), + [sym_override_modifier] = STATE(292), + [sym_type_parameters] = STATE(6901), [aux_sym_export_statement_repeat1] = STATE(1212), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), @@ -55278,7 +58312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1931), [anon_sym_async] = ACTIONS(156), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(779), @@ -55286,7 +58320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -55297,7 +58331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(1941), + [sym_this] = ACTIONS(1933), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), @@ -55305,7 +58339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(757), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1943), + [anon_sym_readonly] = ACTIONS(1935), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), @@ -55322,68 +58356,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [254] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1850), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_spread_element] = STATE(4676), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4677), + [251] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1636), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1662), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [anon_sym_extends] = ACTIONS(1664), + [sym_html_comment] = ACTIONS(5), + }, + [252] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_spread_element] = STATE(5886), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5885), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1945), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(1939), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -55391,21 +58534,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -55431,68 +58574,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, + [253] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_typeof] = ACTIONS(1380), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1662), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), + [anon_sym_extends] = ACTIONS(1664), + [sym_html_comment] = ACTIONS(5), + }, + [254] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1945), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1662), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [anon_sym_extends] = ACTIONS(1664), + [sym_html_comment] = ACTIONS(5), + }, [255] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1851), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_spread_element] = STATE(4694), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4695), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1886), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_spread_element] = STATE(6062), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(6063), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -55500,21 +58861,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -55541,67 +58902,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [256] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1844), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_spread_element] = STATE(4610), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4611), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_spread_element] = STATE(5864), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5863), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(1949), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -55609,21 +58970,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -55650,503 +59011,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [257] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(1308), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1805), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_spread_element] = STATE(6007), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(6006), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(1650), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), - [anon_sym_extends] = ACTIONS(1652), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, [258] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1635), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(1228), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1650), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1662), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), - [anon_sym_extends] = ACTIONS(1652), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), + [anon_sym_extends] = ACTIONS(1664), [sym_html_comment] = ACTIONS(5), }, [259] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2082), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(1272), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_spread_element] = STATE(6077), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1949), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(1949), [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(1650), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [anon_sym_extends] = ACTIONS(1652), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, [260] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1727), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1650), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [anon_sym_extends] = ACTIONS(1652), - [sym_html_comment] = ACTIONS(5), - }, - [261] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_spread_element] = STATE(4979), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1862), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_spread_element] = STATE(5485), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(6041), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1951), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -56154,21 +59406,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -56194,68 +59446,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1802), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_spread_element] = STATE(4572), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4583), + [261] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1857), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_spread_element] = STATE(5924), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5925), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -56263,21 +59515,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -56303,68 +59555,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_spread_element] = STATE(4644), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [aux_sym_array_repeat1] = STATE(4645), + [262] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_spread_element] = STATE(5825), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [aux_sym_array_repeat1] = STATE(5824), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -56372,21 +59624,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -56412,512 +59664,837 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, + [263] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1727), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_typeof] = ACTIONS(1260), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(1662), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [anon_sym_extends] = ACTIONS(1664), + [sym_html_comment] = ACTIONS(5), + }, [264] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2305), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_typeof] = ACTIONS(1138), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2061), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1662), [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1662), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), - [anon_sym_extends] = ACTIONS(1652), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), + [anon_sym_extends] = ACTIONS(1664), [sym_html_comment] = ACTIONS(5), }, [265] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4274), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_override_modifier] = STATE(292), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(769), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(187), + [sym_import] = STATE(3809), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1957), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(156), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(779), - [anon_sym_using] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(1957), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(1959), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(791), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1959), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(835), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_import] = STATE(3328), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), [sym_identifier] = ACTIONS(1961), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(1961), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(1961), + [anon_sym_import] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(128), + [anon_sym_yield] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [sym_glimmer_opening_tag] = ACTIONS(1963), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1963), + [anon_sym_class] = ACTIONS(1961), + [anon_sym_async] = ACTIONS(1961), + [anon_sym_function] = ACTIONS(1961), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1961), + [anon_sym_using] = ACTIONS(1961), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1963), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1961), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_void] = ACTIONS(1961), + [anon_sym_delete] = ACTIONS(1961), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1963), + [sym_number] = ACTIONS(1963), + [sym_private_property_identifier] = ACTIONS(1963), + [sym_this] = ACTIONS(1961), + [sym_super] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [sym_null] = ACTIONS(1961), + [sym_undefined] = ACTIONS(1961), + [anon_sym_AT] = ACTIONS(1963), + [anon_sym_static] = ACTIONS(1961), + [anon_sym_readonly] = ACTIONS(1961), + [anon_sym_get] = ACTIONS(1961), + [anon_sym_set] = ACTIONS(1961), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_declare] = ACTIONS(1961), + [anon_sym_public] = ACTIONS(1961), + [anon_sym_private] = ACTIONS(1961), + [anon_sym_protected] = ACTIONS(1961), + [anon_sym_override] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_any] = ACTIONS(1961), + [anon_sym_number] = ACTIONS(1961), + [anon_sym_boolean] = ACTIONS(1961), + [anon_sym_string] = ACTIONS(1961), + [anon_sym_symbol] = ACTIONS(1961), + [anon_sym_object] = ACTIONS(1961), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [267] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(2024), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(6176), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5972), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_namespace] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(570), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(1963), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(548), + [anon_sym_readonly] = ACTIONS(548), + [anon_sym_get] = ACTIONS(548), + [anon_sym_set] = ACTIONS(548), + [anon_sym_declare] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_any] = ACTIONS(548), + [anon_sym_number] = ACTIONS(548), + [anon_sym_boolean] = ACTIONS(548), + [anon_sym_string] = ACTIONS(548), + [anon_sym_symbol] = ACTIONS(548), + [anon_sym_object] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [267] = { - [sym_import] = STATE(3328), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [268] = { + [sym_import] = STATE(3892), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1727), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(1967), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [268] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4300), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_override_modifier] = STATE(295), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(769), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(771), + [269] = { + [sym_import] = STATE(3739), + [sym_expression_statement] = STATE(297), + [sym_empty_statement] = STATE(297), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [sym_html_comment] = ACTIONS(5), + }, + [270] = { + [sym_import] = STATE(3831), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1969), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(115), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(156), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(779), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -56928,200 +60505,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1969), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(835), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [sym_html_comment] = ACTIONS(5), - }, - [269] = { - [sym_import] = STATE(3411), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1971), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), - [sym_this] = ACTIONS(1967), + [sym_this] = ACTIONS(1971), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [270] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), + [271] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), [sym_expression] = STATE(1834), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_spread_element] = STATE(5684), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5684), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_spread_element] = STATE(7360), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7360), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -57129,21 +60598,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), + [anon_sym_using] = ACTIONS(574), [anon_sym_DOT_DOT_DOT] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -57169,284 +60638,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [271] = { - [sym_import] = STATE(3328), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [272] = { + [sym_import] = STATE(3831), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2061), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1977), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), - [sym_this] = ACTIONS(1967), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(1979), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), - [sym_html_comment] = ACTIONS(5), - }, - [272] = { - [sym_import] = STATE(3410), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1635), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1979), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(1981), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, [273] = { - [sym_import] = STATE(3411), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1983), + [sym_import] = STATE(3808), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym__type_query_member_expression] = STATE(3292), + [sym__type_query_subscript_expression] = STATE(3281), + [sym__type_query_call_expression] = STATE(3510), + [sym__type_query_instantiation_expression] = STATE(3647), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1981), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -57454,21 +60815,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1963), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(1983), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), @@ -57494,186 +60855,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [274] = { - [sym_import] = STATE(3328), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1985), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [sym_import] = STATE(3739), + [sym_expression_statement] = STATE(299), + [sym_empty_statement] = STATE(299), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(1987), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_assignment_pattern] = STATE(5197), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4675), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(769), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(771), + [sym_import] = STATE(3831), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1985), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(115), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(156), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(779), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -57684,206 +61045,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), + [sym_this] = ACTIONS(1959), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(791), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [276] = { - [sym_import] = STATE(3328), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2082), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [sym_import] = STATE(3809), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1987), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(1967), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(1979), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_import] = STATE(3306), - [sym_expression_statement] = STATE(299), - [sym_empty_statement] = STATE(299), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [sym_import] = STATE(3892), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1636), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -57900,201 +61261,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), + [sym_this] = ACTIONS(1967), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_identifier] = ACTIONS(1991), - [anon_sym_export] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1991), - [anon_sym_EQ] = ACTIONS(224), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(1993), - [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_typeof] = ACTIONS(1991), - [anon_sym_import] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(227), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_yield] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [sym_glimmer_opening_tag] = ACTIONS(1993), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1993), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_class] = ACTIONS(1991), - [anon_sym_async] = ACTIONS(1991), - [anon_sym_function] = ACTIONS(1991), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1991), - [anon_sym_using] = ACTIONS(1991), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1993), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_SLASH] = ACTIONS(1991), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_void] = ACTIONS(1991), - [anon_sym_delete] = ACTIONS(1991), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1993), - [sym_number] = ACTIONS(1993), - [sym_private_property_identifier] = ACTIONS(1993), - [sym_this] = ACTIONS(1991), - [sym_super] = ACTIONS(1991), - [sym_true] = ACTIONS(1991), - [sym_false] = ACTIONS(1991), - [sym_null] = ACTIONS(1991), - [sym_undefined] = ACTIONS(1991), - [anon_sym_AT] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1991), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(4909), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_override_modifier] = STATE(293), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1630), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(779), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(795), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1991), - [anon_sym_get] = ACTIONS(1991), - [anon_sym_set] = ACTIONS(1991), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1991), - [anon_sym_public] = ACTIONS(1991), - [anon_sym_private] = ACTIONS(1991), - [anon_sym_protected] = ACTIONS(1991), - [anon_sym_override] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_any] = ACTIONS(1991), - [anon_sym_number] = ACTIONS(1991), - [anon_sym_boolean] = ACTIONS(1991), - [anon_sym_string] = ACTIONS(1991), - [anon_sym_symbol] = ACTIONS(1991), - [anon_sym_object] = ACTIONS(1991), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_declare] = ACTIONS(115), + [anon_sym_public] = ACTIONS(115), + [anon_sym_private] = ACTIONS(115), + [anon_sym_protected] = ACTIONS(115), + [anon_sym_override] = ACTIONS(835), + [anon_sym_module] = ACTIONS(115), + [anon_sym_any] = ACTIONS(115), + [anon_sym_number] = ACTIONS(115), + [anon_sym_boolean] = ACTIONS(115), + [anon_sym_string] = ACTIONS(115), + [anon_sym_symbol] = ACTIONS(115), + [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, [279] = { - [sym_import] = STATE(3264), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym__type_query_member_expression] = STATE(2832), - [sym__type_query_subscript_expression] = STATE(2839), - [sym__type_query_call_expression] = STATE(3005), - [sym__type_query_instantiation_expression] = STATE(3155), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1995), + [sym_import] = STATE(3739), + [sym_expression_statement] = STATE(300), + [sym_empty_statement] = STATE(300), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6902), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [sym_html_comment] = ACTIONS(5), + }, + [280] = { + [sym_import] = STATE(3809), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1993), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -58102,21 +61571,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1997), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(1971), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), @@ -58141,39 +61610,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [280] = { - [sym_identifier] = ACTIONS(1991), - [anon_sym_export] = ACTIONS(1991), + [281] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_assignment_pattern] = STATE(6176), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5972), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1630), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(779), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(115), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_declare] = ACTIONS(115), + [anon_sym_public] = ACTIONS(115), + [anon_sym_private] = ACTIONS(115), + [anon_sym_protected] = ACTIONS(115), + [anon_sym_override] = ACTIONS(115), + [anon_sym_module] = ACTIONS(115), + [anon_sym_any] = ACTIONS(115), + [anon_sym_number] = ACTIONS(115), + [anon_sym_boolean] = ACTIONS(115), + [anon_sym_string] = ACTIONS(115), + [anon_sym_symbol] = ACTIONS(115), + [anon_sym_object] = ACTIONS(115), + [sym_html_comment] = ACTIONS(5), + }, + [282] = { + [sym_identifier] = ACTIONS(1961), + [anon_sym_export] = ACTIONS(1961), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1991), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_type] = ACTIONS(1961), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(1993), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1991), - [anon_sym_import] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(1991), + [anon_sym_namespace] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_typeof] = ACTIONS(1961), + [anon_sym_import] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_await] = ACTIONS(1961), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [sym_glimmer_opening_tag] = ACTIONS(1993), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [sym_glimmer_opening_tag] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1993), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_class] = ACTIONS(1991), - [anon_sym_async] = ACTIONS(1991), - [anon_sym_function] = ACTIONS(1991), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_DQUOTE] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1963), + [anon_sym_class] = ACTIONS(1961), + [anon_sym_async] = ACTIONS(1961), + [anon_sym_function] = ACTIONS(1961), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1991), - [anon_sym_using] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1961), + [anon_sym_using] = ACTIONS(1961), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -58189,7 +61766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(168), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1963), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -58198,12 +61775,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1961), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(1961), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -58212,152 +61789,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_void] = ACTIONS(1991), - [anon_sym_delete] = ACTIONS(1991), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1993), - [sym_number] = ACTIONS(1993), - [sym_private_property_identifier] = ACTIONS(1993), - [sym_this] = ACTIONS(1991), - [sym_super] = ACTIONS(1991), - [sym_true] = ACTIONS(1991), - [sym_false] = ACTIONS(1991), - [sym_null] = ACTIONS(1991), - [sym_undefined] = ACTIONS(1991), - [anon_sym_AT] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1991), - [anon_sym_readonly] = ACTIONS(1991), - [anon_sym_get] = ACTIONS(1991), - [anon_sym_set] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_void] = ACTIONS(1961), + [anon_sym_delete] = ACTIONS(1961), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1963), + [sym_number] = ACTIONS(1963), + [sym_private_property_identifier] = ACTIONS(1963), + [sym_this] = ACTIONS(1961), + [sym_super] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [sym_null] = ACTIONS(1961), + [sym_undefined] = ACTIONS(1961), + [anon_sym_AT] = ACTIONS(1963), + [anon_sym_static] = ACTIONS(1961), + [anon_sym_readonly] = ACTIONS(1961), + [anon_sym_get] = ACTIONS(1961), + [anon_sym_set] = ACTIONS(1961), [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1991), - [anon_sym_public] = ACTIONS(1991), - [anon_sym_private] = ACTIONS(1991), - [anon_sym_protected] = ACTIONS(1991), - [anon_sym_override] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_any] = ACTIONS(1991), - [anon_sym_number] = ACTIONS(1991), - [anon_sym_boolean] = ACTIONS(1991), - [anon_sym_string] = ACTIONS(1991), - [anon_sym_symbol] = ACTIONS(1991), - [anon_sym_object] = ACTIONS(1991), + [anon_sym_declare] = ACTIONS(1961), + [anon_sym_public] = ACTIONS(1961), + [anon_sym_private] = ACTIONS(1961), + [anon_sym_protected] = ACTIONS(1961), + [anon_sym_override] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_any] = ACTIONS(1961), + [anon_sym_number] = ACTIONS(1961), + [anon_sym_boolean] = ACTIONS(1961), + [anon_sym_string] = ACTIONS(1961), + [anon_sym_symbol] = ACTIONS(1961), + [anon_sym_object] = ACTIONS(1961), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [281] = { - [sym_import] = STATE(3261), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2305), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [283] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(4621), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_override_modifier] = STATE(296), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(769), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1630), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(779), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(1995), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(1997), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_declare] = ACTIONS(115), + [anon_sym_public] = ACTIONS(115), + [anon_sym_private] = ACTIONS(115), + [anon_sym_protected] = ACTIONS(115), + [anon_sym_override] = ACTIONS(835), + [anon_sym_module] = ACTIONS(115), + [anon_sym_any] = ACTIONS(115), + [anon_sym_number] = ACTIONS(115), + [anon_sym_boolean] = ACTIONS(115), + [anon_sym_string] = ACTIONS(115), + [anon_sym_symbol] = ACTIONS(115), + [anon_sym_object] = ACTIONS(115), + [sym_html_comment] = ACTIONS(5), + }, + [284] = { + [sym_import] = STATE(3809), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1999), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(1967), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(1979), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [282] = { + [285] = { [sym_identifier] = ACTIONS(2001), [anon_sym_export] = ACTIONS(2001), [anon_sym_STAR] = ACTIONS(122), @@ -58465,115 +62150,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_import] = STATE(3410), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1727), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [286] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_spread_element] = STATE(7513), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7513), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [287] = { + [sym_import] = STATE(3870), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(1979), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), + [sym_html_comment] = ACTIONS(5), + }, + [288] = { + [sym_import] = STATE(3831), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2259), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2009), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(1979), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [289] = { + [sym_import] = STATE(3898), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1945), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(2011), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1326), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(1981), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(1967), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [284] = { + [290] = { [sym_identifier] = ACTIONS(2001), [anon_sym_export] = ACTIONS(2001), [anon_sym_STAR] = ACTIONS(122), @@ -58681,809 +62690,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [285] = { - [sym_import] = STATE(3411), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2007), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1967), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [286] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1925), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3610), - [sym_assignment_pattern] = STATE(5197), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3610), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1230), - [sym_subscript_expression] = STATE(1230), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3610), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4675), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1230), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), - [sym_html_comment] = ACTIONS(5), - }, - [287] = { - [sym_import] = STATE(3254), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2040), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(2009), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(1981), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), - [sym_html_comment] = ACTIONS(5), - }, - [288] = { - [sym_import] = STATE(3306), - [sym_expression_statement] = STATE(300), - [sym_empty_statement] = STATE(300), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [289] = { - [sym_import] = STATE(3306), - [sym_expression_statement] = STATE(297), - [sym_empty_statement] = STATE(297), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5482), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [290] = { - [sym_import] = STATE(3411), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym__type_query_member_expression] = STATE(2782), - [sym__type_query_subscript_expression] = STATE(2783), - [sym__type_query_call_expression] = STATE(2833), - [sym__type_query_instantiation_expression] = STATE(2905), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2011), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1987), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, [291] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1807), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_spread_element] = STATE(5785), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5785), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), + [sym_import] = STATE(3831), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym__type_query_member_expression] = STATE(3238), + [sym__type_query_subscript_expression] = STATE(3237), + [sym__type_query_call_expression] = STATE(3297), + [sym__type_query_instantiation_expression] = STATE(3352), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2013), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(1979), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [292] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4153), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(4623), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -59508,7 +62869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -59545,52 +62906,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [293] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4284), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(4615), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -59615,7 +62976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -59626,7 +62987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(2019), + [sym_this] = ACTIONS(799), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), @@ -59634,7 +62995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2021), + [anon_sym_readonly] = ACTIONS(2019), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), @@ -59652,159 +63013,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [294] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1747), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5385), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym__automatic_semicolon] = ACTIONS(2023), - [sym_html_comment] = ACTIONS(5), - }, - [295] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4268), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(4909), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -59829,7 +63083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -59840,7 +63094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(803), + [sym_this] = ACTIONS(795), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), @@ -59848,7 +63102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2025), + [anon_sym_readonly] = ACTIONS(1991), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), @@ -59865,53 +63119,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, + [295] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1626), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6338), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [sym__automatic_semicolon] = ACTIONS(2021), + [sym_html_comment] = ACTIONS(5), + }, [296] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3588), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3588), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1221), - [sym_subscript_expression] = STATE(1221), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3588), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_pattern] = STATE(4300), - [sym_rest_pattern] = STATE(3700), - [sym_non_null_expression] = STATE(1221), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4003), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4003), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4003), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_pattern] = STATE(5175), + [sym_rest_pattern] = STATE(3995), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(769), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), @@ -59936,7 +63297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -59947,7 +63308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(801), + [sym_this] = ACTIONS(2023), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), @@ -59955,7 +63316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(791), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1969), + [anon_sym_readonly] = ACTIONS(2025), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), @@ -59973,65 +63334,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [297] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1882), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5812), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1845), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7457), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -60039,20 +63400,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -60079,50 +63440,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [298] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5154), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5154), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5154), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1355), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(5920), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(5920), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1355), + [sym_subscript_expression] = STATE(1355), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(5920), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1355), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(2029), [anon_sym_export] = ACTIONS(2031), [anon_sym_type] = ACTIONS(2031), @@ -60148,7 +63509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -60185,65 +63546,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [299] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5844), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1816), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7221), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -60251,20 +63612,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -60291,65 +63652,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [300] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1853), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5757), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1819), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7279), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_RPAREN] = ACTIONS(2053), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -60357,20 +63718,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -60397,169 +63758,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [301] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2159), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1768), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1228), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), - [sym_html_comment] = ACTIONS(5), - }, - [302] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5589), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1872), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7272), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -60567,20 +63823,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -60606,275 +63862,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, + [302] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2321), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1739), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1260), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [sym_html_comment] = ACTIONS(5), + }, [303] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1848), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5778), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1661), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2293), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, [304] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5910), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1676), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2385), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, [305] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1804), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5602), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1821), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7248), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -60882,20 +64243,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -60922,379 +64283,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [306] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2212), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_mapped_type_clause] = STATE(5617), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2059), - [anon_sym_namespace] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2059), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2065), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2059), - [anon_sym_readonly] = ACTIONS(2059), - [anon_sym_get] = ACTIONS(2059), - [anon_sym_set] = ACTIONS(2059), - [anon_sym_declare] = ACTIONS(2059), - [anon_sym_public] = ACTIONS(2059), - [anon_sym_private] = ACTIONS(2059), - [anon_sym_protected] = ACTIONS(2059), - [anon_sym_override] = ACTIONS(2059), - [anon_sym_module] = ACTIONS(2059), - [anon_sym_any] = ACTIONS(2059), - [anon_sym_number] = ACTIONS(2059), - [anon_sym_boolean] = ACTIONS(2059), - [anon_sym_string] = ACTIONS(2059), - [anon_sym_symbol] = ACTIONS(2059), - [anon_sym_object] = ACTIONS(2059), - [sym_html_comment] = ACTIONS(5), - }, - [307] = { - [sym_import] = STATE(3334), + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1668), [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1793), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), + [sym_expression] = STATE(1881), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1327), [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym__extends_clause_single] = STATE(4771), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), - [sym_html_comment] = ACTIONS(5), - }, - [308] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2379), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1762), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [309] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5676), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [307] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1824), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7249), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -61302,20 +64453,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -61341,170 +64492,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1750), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_sequence_expression] = STATE(5450), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [308] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1654), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1911), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [311] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1599), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5900), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [309] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1826), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7250), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -61512,20 +64663,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -61551,275 +64702,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [312] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2149), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1720), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [313] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2149), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1983), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), - [sym_html_comment] = ACTIONS(5), - }, - [314] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5886), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [310] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1827), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7235), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -61827,20 +64768,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -61866,695 +64807,800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [315] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1885), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5899), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [311] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1669), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1889), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [316] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1562), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5688), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [312] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1690), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2391), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [317] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2215), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1989), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), + [313] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2269), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [318] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1833), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5557), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [314] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1936), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [319] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1886), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5905), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [315] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1661), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1935), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [320] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2379), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2005), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1180), + [316] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1627), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_sequence_expression] = STATE(6337), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [321] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1887), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5911), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [317] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1669), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2274), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [318] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1676), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1613), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -62562,20 +65608,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -62601,706 +65647,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [322] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2159), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2009), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), - [sym_html_comment] = ACTIONS(5), - }, - [323] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2161), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2010), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1180), + [319] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1654), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2396), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [324] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2167), + [320] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1676), [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2011), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), + [sym_expression] = STATE(1933), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1338), [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), - [sym_html_comment] = ACTIONS(5), - }, - [325] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1837), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5816), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [326] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2215), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1735), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [327] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1641), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2429), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(187), + [321] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1676), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2213), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [328] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1782), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(2067), + [322] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1654), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2410), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -63318,94 +66049,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [329] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1679), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(2067), + [323] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1690), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2420), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -63423,94 +66154,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [330] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1614), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(2067), + [324] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1676), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -63528,94 +66259,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [331] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1712), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2451), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(2067), + [325] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1661), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2480), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -63633,94 +66364,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [332] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(2067), + [326] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -63738,83 +66469,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [333] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1641), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1507), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [327] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7547), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -63822,20 +66553,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -63861,800 +66592,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [334] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2149), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1752), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1228), + [328] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1669), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2493), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), - [sym_html_comment] = ACTIONS(5), - }, - [335] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2215), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1657), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1228), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), - [sym_html_comment] = ACTIONS(5), - }, - [336] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2379), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1737), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1228), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(821), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [337] = { - [sym_import] = STATE(3334), + [329] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1661), [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1793), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), + [sym_expression] = STATE(1879), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1327), [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym__extends_clause_single] = STATE(4481), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [338] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2161), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1772), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), + [330] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2241), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1720), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [339] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), + [331] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2239), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1713), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), - [sym_html_comment] = ACTIONS(5), - }, - [340] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1641), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2051), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [341] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5736), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [332] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1661), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1481), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -64662,20 +67078,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -64701,590 +67117,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [342] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1782), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2055), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [343] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1679), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2068), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [344] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1614), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2070), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1272), + [333] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2233), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1639), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [345] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1712), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2071), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1272), + [334] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1661), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2216), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [346] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2072), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1272), + [335] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2217), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [347] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1782), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [336] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1463), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7480), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -65292,20 +67498,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -65331,687 +67537,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [348] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1641), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), - [sym_html_comment] = ACTIONS(5), - }, - [349] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1782), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2283), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), - [sym_html_comment] = ACTIONS(5), - }, - [350] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1679), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2296), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), - [sym_html_comment] = ACTIONS(5), - }, - [351] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1614), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2298), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), - [sym_html_comment] = ACTIONS(5), - }, - [352] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1712), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2299), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1138), + [337] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2263), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [353] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2300), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [338] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2291), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), - [sym_html_comment] = ACTIONS(5), - }, - [354] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1641), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2346), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -66019,14 +67700,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -66046,7 +67727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -66066,86 +67747,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [355] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1782), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2350), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [339] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1669), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2218), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -66153,419 +67834,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [356] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1679), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2363), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(1416), + [340] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1669), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1937), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [357] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1614), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2365), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(1416), + [341] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1486), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [358] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1712), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(1416), + [342] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1669), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1525), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [359] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2367), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(1416), + [343] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2163), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_mapped_type_clause] = STATE(7306), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2061), + [anon_sym_export] = ACTIONS(2063), + [anon_sym_type] = ACTIONS(2063), + [anon_sym_namespace] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(2067), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -66573,83 +68254,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(2063), + [anon_sym_readonly] = ACTIONS(2063), + [anon_sym_get] = ACTIONS(2063), + [anon_sym_set] = ACTIONS(2063), + [anon_sym_declare] = ACTIONS(2063), + [anon_sym_public] = ACTIONS(2063), + [anon_sym_private] = ACTIONS(2063), + [anon_sym_protected] = ACTIONS(2063), + [anon_sym_override] = ACTIONS(2063), + [anon_sym_module] = ACTIONS(2063), + [anon_sym_any] = ACTIONS(2063), + [anon_sym_number] = ACTIONS(2063), + [anon_sym_boolean] = ACTIONS(2063), + [anon_sym_string] = ACTIONS(2063), + [anon_sym_symbol] = ACTIONS(2063), + [anon_sym_object] = ACTIONS(2063), [sym_html_comment] = ACTIONS(5), }, - [360] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1679), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1560), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [344] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1853), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7363), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -66657,20 +68338,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -66696,695 +68377,800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [361] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1641), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1857), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [345] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2241), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2112), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(158), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [362] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1782), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [346] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2239), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2111), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(158), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [363] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1679), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1874), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [347] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2233), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2110), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(158), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [364] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1614), + [348] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1676), [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1876), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), + [sym_expression] = STATE(1869), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1327), [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1308), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [365] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1712), + [349] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1690), [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1877), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), + [sym_expression] = STATE(1802), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1327), [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1308), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), + [sym_html_comment] = ACTIONS(5), + }, + [350] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2269), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [366] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1714), + [351] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1654), [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1878), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1327), [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(1308), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [367] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1614), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1572), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [352] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1804), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7224), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -67392,20 +69178,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -67431,65 +69217,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [368] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1712), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1573), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [353] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2263), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1640), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [sym_html_comment] = ACTIONS(5), + }, + [354] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7223), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -67497,20 +69388,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -67536,65 +69427,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [369] = { - [sym_import] = STATE(3334), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1574), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [355] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1654), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1469), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -67602,20 +69493,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -67641,485 +69532,905 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [370] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2212), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_mapped_type_clause] = STATE(5639), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2071), - [anon_sym_export] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_namespace] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [356] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7222), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_readonly] = ACTIONS(2073), - [anon_sym_get] = ACTIONS(2073), - [anon_sym_set] = ACTIONS(2073), - [anon_sym_declare] = ACTIONS(2073), - [anon_sym_public] = ACTIONS(2073), - [anon_sym_private] = ACTIONS(2073), - [anon_sym_protected] = ACTIONS(2073), - [anon_sym_override] = ACTIONS(2073), - [anon_sym_module] = ACTIONS(2073), - [anon_sym_any] = ACTIONS(2073), - [anon_sym_number] = ACTIONS(2073), - [anon_sym_boolean] = ACTIONS(2073), - [anon_sym_string] = ACTIONS(2073), - [anon_sym_symbol] = ACTIONS(2073), - [anon_sym_object] = ACTIONS(2073), - [sym_html_comment] = ACTIONS(5), - }, - [371] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2159), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [357] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2269), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1771), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1260), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [372] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2161), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [358] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7512), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [359] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2321), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2077), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1326), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [373] = { - [sym_import] = STATE(3306), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1695), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [360] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2233), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1794), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [374] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1845), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_sequence_expression] = STATE(5560), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [361] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2239), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1793), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1260), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [sym_html_comment] = ACTIONS(5), + }, + [362] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2241), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1792), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1260), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [sym_html_comment] = ACTIONS(5), + }, + [363] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2163), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_mapped_type_clause] = STATE(7209), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2071), + [anon_sym_export] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_namespace] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2079), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(2073), + [anon_sym_readonly] = ACTIONS(2073), + [anon_sym_get] = ACTIONS(2073), + [anon_sym_set] = ACTIONS(2073), + [anon_sym_declare] = ACTIONS(2073), + [anon_sym_public] = ACTIONS(2073), + [anon_sym_private] = ACTIONS(2073), + [anon_sym_protected] = ACTIONS(2073), + [anon_sym_override] = ACTIONS(2073), + [anon_sym_module] = ACTIONS(2073), + [anon_sym_any] = ACTIONS(2073), + [anon_sym_number] = ACTIONS(2073), + [anon_sym_boolean] = ACTIONS(2073), + [anon_sym_string] = ACTIONS(2073), + [anon_sym_symbol] = ACTIONS(2073), + [anon_sym_object] = ACTIONS(2073), + [sym_html_comment] = ACTIONS(5), + }, + [364] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1522), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7353), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -68127,20 +70438,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -68166,64 +70477,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [375] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1525), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [365] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1823), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7204), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -68231,20 +70543,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -68270,64 +70582,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [376] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1488), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [366] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1864), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym__extends_clause_single] = STATE(5455), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), + [sym_html_comment] = ACTIONS(5), + }, + [367] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1690), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1916), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), + [sym_html_comment] = ACTIONS(5), + }, + [368] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1654), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2169), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), + [sym_html_comment] = ACTIONS(5), + }, + [369] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2263), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2047), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [370] = { + [sym_import] = STATE(3739), + [sym_statement_block] = STATE(2321), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1736), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [sym_html_comment] = ACTIONS(5), + }, + [371] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1690), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1503), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -68335,20 +71173,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -68374,64 +71212,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [377] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [372] = { + [sym_import] = STATE(3721), + [sym_statement_block] = STATE(1690), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2147), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), + [sym_html_comment] = ACTIONS(5), + }, + [373] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1880), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_sequence_expression] = STATE(7371), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -68439,20 +71383,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2081), - [sym_private_property_identifier] = ACTIONS(654), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -68478,595 +71422,596 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [378] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1790), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [374] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1864), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym__extends_clause_single] = STATE(5497), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [379] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1652), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [375] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2106), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1326), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [380] = { - [sym_import] = STATE(3306), + [376] = { + [sym_import] = STATE(3721), [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2087), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), + [sym_expression] = STATE(2262), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1338), [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [381] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2199), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [377] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1497), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [382] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1669), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [378] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2195), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [383] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [379] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -69084,77 +72029,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [384] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1751), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [380] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1636), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -69164,7 +72109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -69188,77 +72133,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [sym_html_comment] = ACTIONS(5), + }, + [381] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1942), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [382] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [383] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1945), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [384] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2196), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, [385] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1625), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -69268,7 +72629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -69292,82 +72653,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, [386] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2214), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), + [sym_html_comment] = ACTIONS(5), + }, + [387] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1396), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7491), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7491), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7491), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1396), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2083), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2091), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(2093), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(2085), + [anon_sym_readonly] = ACTIONS(2085), + [anon_sym_get] = ACTIONS(2085), + [anon_sym_set] = ACTIONS(2085), + [anon_sym_declare] = ACTIONS(2085), + [anon_sym_public] = ACTIONS(2085), + [anon_sym_private] = ACTIONS(2085), + [anon_sym_protected] = ACTIONS(2085), + [anon_sym_override] = ACTIONS(2085), + [anon_sym_module] = ACTIONS(2085), + [anon_sym_any] = ACTIONS(2085), + [anon_sym_number] = ACTIONS(2085), + [anon_sym_boolean] = ACTIONS(2085), + [anon_sym_string] = ACTIONS(2085), + [anon_sym_symbol] = ACTIONS(2085), + [anon_sym_object] = ACTIONS(2085), + [sym_html_comment] = ACTIONS(5), + }, + [388] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -69375,20 +72944,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(654), + [sym_number] = ACTIONS(2095), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -69414,163 +72983,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [387] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1788), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [389] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1609), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [388] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1618), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [390] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1650), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -69580,7 +73149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -69604,178 +73173,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [389] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1395), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5680), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5680), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1395), - [sym_subscript_expression] = STATE(1395), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5680), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1395), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2087), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [391] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1459), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2095), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2087), - [anon_sym_readonly] = ACTIONS(2087), - [anon_sym_get] = ACTIONS(2087), - [anon_sym_set] = ACTIONS(2087), - [anon_sym_declare] = ACTIONS(2087), - [anon_sym_public] = ACTIONS(2087), - [anon_sym_private] = ACTIONS(2087), - [anon_sym_protected] = ACTIONS(2087), - [anon_sym_override] = ACTIONS(2087), - [anon_sym_module] = ACTIONS(2087), - [anon_sym_any] = ACTIONS(2087), - [anon_sym_number] = ACTIONS(2087), - [anon_sym_boolean] = ACTIONS(2087), - [anon_sym_string] = ACTIONS(2087), - [anon_sym_symbol] = ACTIONS(2087), - [anon_sym_object] = ACTIONS(2087), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [390] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1388), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5913), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5913), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1388), - [sym_subscript_expression] = STATE(1388), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5913), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1388), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [392] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7485), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7485), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7485), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1394), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(2097), [anon_sym_export] = ACTIONS(2099), [anon_sym_type] = ACTIONS(2099), [anon_sym_namespace] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(2099), @@ -69783,7 +73352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -69794,7 +73363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -69830,2144 +73399,1936 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2099), [sym_html_comment] = ACTIONS(5), }, - [391] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1644), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), + [393] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1634), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [392] = { - [sym_import] = STATE(3306), + [394] = { + [sym_import] = STATE(3721), [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1984), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), + [sym_expression] = STATE(2068), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1338), [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), + [sym_html_comment] = ACTIONS(5), + }, + [395] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1786), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [393] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(2026), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [396] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2064), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [394] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1986), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), - [sym_html_comment] = ACTIONS(5), - }, - [395] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1988), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [396] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1990), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [397] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [397] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2203), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), + [398] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1390), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7497), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7497), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1390), + [sym_subscript_expression] = STATE(1390), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7497), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2113), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_namespace] = ACTIONS(2115), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(2117), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(2119), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [398] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1992), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(2121), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_readonly] = ACTIONS(2113), + [anon_sym_get] = ACTIONS(2113), + [anon_sym_set] = ACTIONS(2113), + [anon_sym_declare] = ACTIONS(2113), + [anon_sym_public] = ACTIONS(2113), + [anon_sym_private] = ACTIONS(2113), + [anon_sym_protected] = ACTIONS(2113), + [anon_sym_override] = ACTIONS(2113), + [anon_sym_module] = ACTIONS(2113), + [anon_sym_any] = ACTIONS(2113), + [anon_sym_number] = ACTIONS(2113), + [anon_sym_boolean] = ACTIONS(2113), + [anon_sym_string] = ACTIONS(2113), + [anon_sym_symbol] = ACTIONS(2113), + [anon_sym_object] = ACTIONS(2113), [sym_html_comment] = ACTIONS(5), }, [399] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1994), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, [400] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1995), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1664), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, [401] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1996), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2162), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, [402] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2164), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, [403] = { - [sym_import] = STATE(3306), + [sym_import] = STATE(3721), [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1998), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1338), [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, [404] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(1999), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1779), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, [405] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2000), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, [406] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2001), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1732), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, [407] = { - [sym_import] = STATE(3306), + [sym_import] = STATE(3721), [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2002), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), + [sym_expression] = STATE(1913), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1338), [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, [408] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2003), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2148), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, [409] = { - [sym_import] = STATE(3306), + [sym_import] = STATE(3721), [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2006), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), + [sym_expression] = STATE(2061), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1338), [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, [410] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2212), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, [411] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(2028), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1616), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -71975,20 +75336,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -72015,58 +75376,474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [412] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1741), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(2081), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [413] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [414] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), + [sym_html_comment] = ACTIONS(5), + }, + [415] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2131), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), + [sym_html_comment] = ACTIONS(5), + }, + [416] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1617), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -72076,7 +75853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -72100,389 +75877,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [413] = { - [sym_import] = STATE(3306), + [417] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1518), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [418] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1401), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7194), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7194), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1401), + [sym_subscript_expression] = STATE(1401), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7194), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1401), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2123), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(2133), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [sym_html_comment] = ACTIONS(5), + }, + [419] = { + [sym_import] = STATE(3721), [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2012), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), + [sym_expression] = STATE(1917), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1338), [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [414] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2013), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), + [420] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2048), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1326), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), - [sym_html_comment] = ACTIONS(5), - }, - [415] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2246), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [416] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [421] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1788), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -72492,7 +76373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -72516,181 +76397,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [417] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2040), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), + [422] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1727), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_number] = ACTIONS(2135), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [sym_html_comment] = ACTIONS(5), + }, + [423] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1912), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [418] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1814), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [424] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1785), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -72700,7 +76685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -72724,1133 +76709,1861 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [419] = { - [sym_import] = STATE(3306), + [425] = { + [sym_import] = STATE(3721), [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2123), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), + [sym_expression] = STATE(1940), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1338), [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), - [sym_html_comment] = ACTIONS(5), - }, - [420] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [421] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2430), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [426] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1494), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [422] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2431), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [427] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2265), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [423] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2432), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [428] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1789), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [424] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [429] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2063), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [430] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1791), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [sym_html_comment] = ACTIONS(5), + }, + [431] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2076), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [432] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2194), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [425] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2435), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [433] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2080), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [434] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2061), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [426] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [435] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2186), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [427] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [436] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2083), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [437] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2192), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [438] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2088), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [439] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1844), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [sym_html_comment] = ACTIONS(5), + }, + [440] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2090), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [441] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1939), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [429] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), + [442] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1400), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7188), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7188), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1400), + [sym_subscript_expression] = STATE(1400), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7188), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1400), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), + [anon_sym_let] = ACTIONS(2139), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(2143), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), + [anon_sym_new] = ACTIONS(2145), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -73866,833 +78579,1977 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(2147), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_get] = ACTIONS(2139), + [anon_sym_set] = ACTIONS(2139), + [anon_sym_declare] = ACTIONS(2139), + [anon_sym_public] = ACTIONS(2139), + [anon_sym_private] = ACTIONS(2139), + [anon_sym_protected] = ACTIONS(2139), + [anon_sym_override] = ACTIONS(2139), + [anon_sym_module] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(2139), + [anon_sym_number] = ACTIONS(2139), + [anon_sym_boolean] = ACTIONS(2139), + [anon_sym_string] = ACTIONS(2139), + [anon_sym_symbol] = ACTIONS(2139), + [anon_sym_object] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, - [430] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2441), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [443] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1924), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [444] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2093), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [445] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [446] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [447] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2133), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2443), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [448] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1710), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [sym_html_comment] = ACTIONS(5), + }, + [449] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2221), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2444), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [450] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1962), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [451] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2096), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [452] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [434] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [453] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2097), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [435] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [454] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [455] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1727), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [sym_html_comment] = ACTIONS(5), + }, + [456] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1796), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [436] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [457] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2100), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [458] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [sym_html_comment] = ACTIONS(5), + }, + [459] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2103), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), + [sym_html_comment] = ACTIONS(5), + }, + [460] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2200), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [437] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2226), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [461] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1850), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -74700,1122 +80557,1330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [438] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2453), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [462] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1849), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [439] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [463] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1528), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [440] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [464] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1773), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [sym_html_comment] = ACTIONS(5), + }, + [465] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1800), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(196), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [441] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2457), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [466] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2310), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [442] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [467] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [sym_html_comment] = ACTIONS(5), + }, + [468] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2144), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [443] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [469] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [444] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1502), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [470] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1808), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [445] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1786), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [471] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [446] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1393), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5823), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1393), - [sym_subscript_expression] = STATE(1393), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1393), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2113), - [anon_sym_export] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2115), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [472] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2258), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2119), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2123), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2115), - [anon_sym_readonly] = ACTIONS(2115), - [anon_sym_get] = ACTIONS(2115), - [anon_sym_set] = ACTIONS(2115), - [anon_sym_declare] = ACTIONS(2115), - [anon_sym_public] = ACTIONS(2115), - [anon_sym_private] = ACTIONS(2115), - [anon_sym_protected] = ACTIONS(2115), - [anon_sym_override] = ACTIONS(2115), - [anon_sym_module] = ACTIONS(2115), - [anon_sym_any] = ACTIONS(2115), - [anon_sym_number] = ACTIONS(2115), - [anon_sym_boolean] = ACTIONS(2115), - [anon_sym_string] = ACTIONS(2115), - [anon_sym_symbol] = ACTIONS(2115), - [anon_sym_object] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [447] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1759), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [473] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1809), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [448] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1508), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [474] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1468), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -75823,20 +81888,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -75862,397 +81927,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1783), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [475] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1918), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1651), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [476] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1811), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1659), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [477] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1812), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [452] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2258), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [478] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1815), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -76260,1143 +82325,1559 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [453] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1663), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [479] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [454] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1665), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [480] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1820), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [455] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1672), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [481] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1822), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [456] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1673), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [482] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1833), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [457] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1674), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [483] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(2024), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [458] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1675), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [484] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [459] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1680), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [485] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1866), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [460] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1681), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), + [486] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2259), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [487] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2163), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), + [sym_html_comment] = ACTIONS(5), + }, + [488] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1760), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [461] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1688), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), + [489] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1643), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [462] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1717), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), + [490] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1854), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [463] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [491] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1870), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), + [sym_html_comment] = ACTIONS(5), + }, + [492] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1597), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1052), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), + [sym_html_comment] = ACTIONS(5), + }, + [493] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -77404,285 +83885,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [464] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1625), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), + [494] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2113), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1326), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [465] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1738), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), + [495] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1388), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7406), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7406), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1388), + [sym_subscript_expression] = STATE(1388), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7406), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2149), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_namespace] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2157), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(2151), + [anon_sym_readonly] = ACTIONS(2151), + [anon_sym_get] = ACTIONS(2151), + [anon_sym_set] = ACTIONS(2151), + [anon_sym_declare] = ACTIONS(2151), + [anon_sym_public] = ACTIONS(2151), + [anon_sym_private] = ACTIONS(2151), + [anon_sym_protected] = ACTIONS(2151), + [anon_sym_override] = ACTIONS(2151), + [anon_sym_module] = ACTIONS(2151), + [anon_sym_any] = ACTIONS(2151), + [anon_sym_number] = ACTIONS(2151), + [anon_sym_boolean] = ACTIONS(2151), + [anon_sym_string] = ACTIONS(2151), + [anon_sym_symbol] = ACTIONS(2151), + [anon_sym_object] = ACTIONS(2151), + [sym_html_comment] = ACTIONS(5), + }, + [496] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2114), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1326), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [466] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1803), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [497] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2167), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), + [sym_html_comment] = ACTIONS(5), + }, + [498] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1761), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -77692,7 +84381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -77716,207 +84405,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [467] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [499] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [468] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1780), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [500] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -77924,282 +84613,386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [469] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1635), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), + [501] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1919), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), + [sym_html_comment] = ACTIONS(5), + }, + [502] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1765), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [470] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1621), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), + [503] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(1945), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1326), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), + [sym_number] = ACTIONS(2135), + [sym_private_property_identifier] = ACTIONS(1344), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2376), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [504] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2255), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -78207,14 +85000,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -78234,7 +85027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -78254,371 +85047,475 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [472] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2052), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [505] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1938), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [473] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2053), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), + [506] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1652), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(5110), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(5110), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1302), + [sym_subscript_expression] = STATE(1302), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(5110), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1302), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2161), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1204), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(2165), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [474] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2054), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), + [507] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1768), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [sym_html_comment] = ACTIONS(5), + }, + [508] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2259), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [475] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1787), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [509] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -78628,7 +85525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -78652,1429 +85549,909 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [476] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [510] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1920), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [477] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2057), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [511] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1576), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [478] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2058), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [512] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [479] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2059), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [513] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [480] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2060), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), + [514] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1711), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [sym_html_comment] = ACTIONS(5), + }, + [515] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2271), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [481] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2061), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [482] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2062), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [483] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2063), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [484] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2064), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [485] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2065), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [486] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2066), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [487] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [516] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2069), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), + [517] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [489] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [518] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -80084,7 +86461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -80108,602 +86485,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1709), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [519] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1752), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [491] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2073), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [492] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2074), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [493] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(3606), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(3606), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1234), - [sym_subscript_expression] = STATE(1234), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(3606), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1234), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(187), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(1630), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2131), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_readonly] = ACTIONS(2127), - [anon_sym_get] = ACTIONS(2127), - [anon_sym_set] = ACTIONS(2127), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_private] = ACTIONS(2127), - [anon_sym_protected] = ACTIONS(2127), - [anon_sym_override] = ACTIONS(2127), - [anon_sym_module] = ACTIONS(2127), - [anon_sym_any] = ACTIONS(2127), - [anon_sym_number] = ACTIONS(2127), - [anon_sym_boolean] = ACTIONS(2127), - [anon_sym_string] = ACTIONS(2127), - [anon_sym_symbol] = ACTIONS(2127), - [anon_sym_object] = ACTIONS(2127), - [sym_html_comment] = ACTIONS(5), - }, - [494] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2082), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [495] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1518), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [520] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1610), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -80711,20 +86672,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -80750,163 +86711,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [496] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2075), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [497] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1727), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [521] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1777), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -80916,7 +86773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -80940,285 +86797,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [498] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2082), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [499] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2083), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), + [522] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2294), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1661), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [523] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1778), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -81228,7 +86981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -81252,282 +87005,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [501] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1390), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5591), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5591), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1390), - [sym_subscript_expression] = STATE(1390), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5591), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1390), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2143), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2147), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2139), - [anon_sym_readonly] = ACTIONS(2139), - [anon_sym_get] = ACTIONS(2139), - [anon_sym_set] = ACTIONS(2139), - [anon_sym_declare] = ACTIONS(2139), - [anon_sym_public] = ACTIONS(2139), - [anon_sym_private] = ACTIONS(2139), - [anon_sym_protected] = ACTIONS(2139), - [anon_sym_override] = ACTIONS(2139), - [anon_sym_module] = ACTIONS(2139), - [anon_sym_any] = ACTIONS(2139), - [anon_sym_number] = ACTIONS(2139), - [anon_sym_boolean] = ACTIONS(2139), - [anon_sym_string] = ACTIONS(2139), - [anon_sym_symbol] = ACTIONS(2139), - [anon_sym_object] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [502] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2278), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), + [524] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2261), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2131), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [525] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2345), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -81535,14 +87184,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -81562,7 +87211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -81582,709 +87231,709 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2280), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [526] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1984), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [527] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1983), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2282), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [528] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2203), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1179), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5854), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1179), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_type] = ACTIONS(839), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [529] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2206), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(851), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(196), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(827), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2284), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [530] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1612), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2285), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [531] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2142), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2286), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [532] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -82292,311 +87941,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2287), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [533] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1594), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2288), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [534] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2211), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [513] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2289), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [535] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2372), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -82604,831 +88253,831 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [514] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2290), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [536] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1876), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2291), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [537] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1892), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1764), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [538] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1750), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [517] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2293), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [539] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(4176), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(4176), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1228), + [sym_subscript_expression] = STATE(1228), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(4176), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1228), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2169), + [anon_sym_type] = ACTIONS(2169), + [anon_sym_namespace] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1630), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(2173), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(2177), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(2169), + [anon_sym_readonly] = ACTIONS(2169), + [anon_sym_get] = ACTIONS(2169), + [anon_sym_set] = ACTIONS(2169), + [anon_sym_declare] = ACTIONS(2169), + [anon_sym_public] = ACTIONS(2169), + [anon_sym_private] = ACTIONS(2169), + [anon_sym_protected] = ACTIONS(2169), + [anon_sym_override] = ACTIONS(2169), + [anon_sym_module] = ACTIONS(2169), + [anon_sym_any] = ACTIONS(2169), + [anon_sym_number] = ACTIONS(2169), + [anon_sym_boolean] = ACTIONS(2169), + [anon_sym_string] = ACTIONS(2169), + [anon_sym_symbol] = ACTIONS(2169), + [anon_sym_object] = ACTIONS(2169), [sym_html_comment] = ACTIONS(5), }, - [518] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2294), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [540] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1795), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [519] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2295), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [541] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1615), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [542] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2373), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1482), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1420), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [521] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2297), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [543] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2374), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_namespace] = ACTIONS(1396), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1400), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(970), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1420), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -83436,2050 +89085,906 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [anon_sym_declare] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_private] = ACTIONS(1394), + [anon_sym_protected] = ACTIONS(1394), + [anon_sym_override] = ACTIONS(1394), + [anon_sym_module] = ACTIONS(1394), + [anon_sym_any] = ACTIONS(1394), + [anon_sym_number] = ACTIONS(1394), + [anon_sym_boolean] = ACTIONS(1394), + [anon_sym_string] = ACTIONS(1394), + [anon_sym_symbol] = ACTIONS(1394), + [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [522] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1617), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [544] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1749), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [523] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1624), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [545] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1300), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [524] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1627), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [546] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1748), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [525] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2301), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), - [sym_html_comment] = ACTIONS(5), - }, - [526] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2302), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), - [sym_html_comment] = ACTIONS(5), - }, - [527] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1530), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [528] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1534), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [529] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2305), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), - [sym_html_comment] = ACTIONS(5), - }, - [530] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1537), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [531] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1538), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [532] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2303), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), - [sym_html_comment] = ACTIONS(5), - }, - [533] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [534] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2305), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), - [sym_html_comment] = ACTIONS(5), - }, - [535] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2306), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [536] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1542), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [547] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2219), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [537] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1392), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5790), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5790), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1392), - [sym_subscript_expression] = STATE(1392), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5790), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1392), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2151), - [anon_sym_export] = ACTIONS(2153), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_namespace] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [548] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1747), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2157), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2161), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2153), - [anon_sym_readonly] = ACTIONS(2153), - [anon_sym_get] = ACTIONS(2153), - [anon_sym_set] = ACTIONS(2153), - [anon_sym_declare] = ACTIONS(2153), - [anon_sym_public] = ACTIONS(2153), - [anon_sym_private] = ACTIONS(2153), - [anon_sym_protected] = ACTIONS(2153), - [anon_sym_override] = ACTIONS(2153), - [anon_sym_module] = ACTIONS(2153), - [anon_sym_any] = ACTIONS(2153), - [anon_sym_number] = ACTIONS(2153), - [anon_sym_boolean] = ACTIONS(2153), - [anon_sym_string] = ACTIONS(2153), - [anon_sym_symbol] = ACTIONS(2153), - [anon_sym_object] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [538] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2313), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [549] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1340), + [sym_expression] = STATE(2099), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7186), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7186), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7187), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3404), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7186), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1336), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1344), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1468), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_object] = ACTIONS(1310), [sym_html_comment] = ACTIONS(5), }, - [539] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1543), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [550] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1745), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [540] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1660), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [551] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1743), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [541] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2347), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [552] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2375), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -85487,14 +89992,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -85514,7 +90019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -85534,85 +90039,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [542] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2348), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [553] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1742), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [sym_html_comment] = ACTIONS(5), + }, + [554] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2279), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -85620,178 +90229,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [543] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2349), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), + [555] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2208), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [544] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2351), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [556] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2377), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -85799,14 +90408,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -85826,7 +90435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -85846,56 +90455,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [545] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2352), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [557] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2379), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -85903,14 +90512,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -85930,7 +90539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -85950,56 +90559,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [546] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2353), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [558] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2382), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -86007,14 +90616,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -86034,7 +90643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -86054,56 +90663,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [547] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2354), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [559] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2384), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -86111,14 +90720,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -86138,7 +90747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -86158,56 +90767,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [548] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [560] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2366), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -86215,14 +90824,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -86242,7 +90851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -86262,56 +90871,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [549] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2356), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [561] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2388), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -86319,14 +90928,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -86346,7 +90955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -86366,787 +90975,683 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [550] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), + [562] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1592), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), - [sym_html_comment] = ACTIONS(5), - }, - [551] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2358), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [552] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2359), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), + [563] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_number] = ACTIONS(2179), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [553] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2360), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), + [564] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [554] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2361), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), + [565] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [555] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2362), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), + [566] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1590), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [556] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2364), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), + [567] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1589), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [557] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1629), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [568] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1784), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -87156,7 +91661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -87180,290 +91685,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [558] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2368), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), - [sym_html_comment] = ACTIONS(5), - }, - [559] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2369), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1420), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [560] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1544), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [569] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -87471,20 +91768,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_number] = ACTIONS(2179), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -87510,64 +91807,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [561] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1547), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [570] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [sym_html_comment] = ACTIONS(5), + }, + [571] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1578), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -87575,20 +91976,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -87614,272 +92015,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [562] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), - [anon_sym_export] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1416), + [572] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2403), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(1420), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_readonly] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_declare] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_protected] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_module] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_number] = ACTIONS(1394), - [anon_sym_boolean] = ACTIONS(1394), - [anon_sym_string] = ACTIONS(1394), - [anon_sym_symbol] = ACTIONS(1394), - [anon_sym_object] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [563] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1548), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [573] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1738), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [564] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1551), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [574] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1600), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -87887,20 +92288,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -87926,56 +92327,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [565] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2370), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [575] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -87983,14 +92384,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -88010,7 +92411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -88030,56 +92431,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [566] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [576] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1731), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(1260), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1264), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), + [sym_html_comment] = ACTIONS(5), + }, + [577] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2393), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -88087,14 +92592,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -88114,7 +92619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -88134,56 +92639,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [567] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(2374), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5872), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5872), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5904), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2898), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5872), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1345), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1486), + [578] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1356), + [sym_expression] = STATE(2395), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7517), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7517), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7200), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1356), + [sym_subscript_expression] = STATE(1356), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3313), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7517), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1356), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1478), [anon_sym_export] = ACTIONS(1394), [anon_sym_type] = ACTIONS(1394), [anon_sym_namespace] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1394), @@ -88191,14 +92696,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(1402), [anon_sym_yield] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1406), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1490), + [anon_sym_new] = ACTIONS(1482), [anon_sym_using] = ACTIONS(1410), [anon_sym_PLUS] = ACTIONS(1416), [anon_sym_DASH] = ACTIONS(1416), @@ -88218,7 +92723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1492), + [sym_undefined] = ACTIONS(1484), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1394), [anon_sym_readonly] = ACTIONS(1394), @@ -88238,64 +92743,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1394), [sym_html_comment] = ACTIONS(5), }, - [568] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1557), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [579] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1327), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1327), + [sym_subscript_expression] = STATE(1327), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1327), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1384), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), + [sym_html_comment] = ACTIONS(5), + }, + [580] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), + [sym_html_comment] = ACTIONS(5), + }, + [581] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1636), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(2135), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [sym_html_comment] = ACTIONS(5), + }, + [582] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1934), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), + [sym_html_comment] = ACTIONS(5), + }, + [583] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1580), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -88303,20 +93224,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -88342,75 +93263,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [569] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5536), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5536), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5536), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1389), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(2165), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(845), + [584] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1766), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1440), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(709), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(713), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [sym_html_comment] = ACTIONS(5), + }, + [585] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2429), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2169), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2171), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -88426,292 +93451,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2173), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_readonly] = ACTIONS(2165), - [anon_sym_get] = ACTIONS(2165), - [anon_sym_set] = ACTIONS(2165), - [anon_sym_declare] = ACTIONS(2165), - [anon_sym_public] = ACTIONS(2165), - [anon_sym_private] = ACTIONS(2165), - [anon_sym_protected] = ACTIONS(2165), - [anon_sym_override] = ACTIONS(2165), - [anon_sym_module] = ACTIONS(2165), - [anon_sym_any] = ACTIONS(2165), - [anon_sym_number] = ACTIONS(2165), - [anon_sym_boolean] = ACTIONS(2165), - [anon_sym_string] = ACTIONS(2165), - [anon_sym_symbol] = ACTIONS(2165), - [anon_sym_object] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [570] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2318), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), + [586] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1558), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [587] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1932), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [572] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1561), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), + [588] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1652), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1428), [anon_sym_export] = ACTIONS(1044), [anon_sym_type] = ACTIONS(1044), [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), @@ -88719,20 +93744,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -88758,3205 +93783,2581 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [573] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2040), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [589] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(821), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [574] = { - [sym_import] = STATE(3306), + [590] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(821), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [591] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2422), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(821), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [592] = { + [sym_import] = STATE(3721), [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2041), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), + [sym_expression] = STATE(1922), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1338), [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_function] = ACTIONS(713), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(1100), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [575] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1338), - [sym_expression] = STATE(2043), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5569), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1338), - [sym_subscript_expression] = STATE(1338), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2899), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5571), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1338), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1454), - [anon_sym_export] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_namespace] = ACTIONS(1154), + [593] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(187), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(821), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(825), + [sym_number] = ACTIONS(787), + [sym_private_property_identifier] = ACTIONS(196), + [sym_this] = ACTIONS(200), + [sym_super] = ACTIONS(200), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(827), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [594] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1299), + [sym_expression] = STATE(1723), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7476), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7476), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7474), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1299), + [sym_subscript_expression] = STATE(1299), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3363), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7476), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_namespace] = ACTIONS(1240), [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1180), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1244), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_SLASH] = ACTIONS(879), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_delete] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_void] = ACTIONS(1260), + [anon_sym_delete] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1188), + [sym_private_property_identifier] = ACTIONS(1264), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1460), + [sym_undefined] = ACTIONS(1452), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_readonly] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_declare] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_protected] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_module] = ACTIONS(1152), - [anon_sym_any] = ACTIONS(1152), - [anon_sym_number] = ACTIONS(1152), - [anon_sym_boolean] = ACTIONS(1152), - [anon_sym_string] = ACTIONS(1152), - [anon_sym_symbol] = ACTIONS(1152), - [anon_sym_object] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_readonly] = ACTIONS(1238), + [anon_sym_get] = ACTIONS(1238), + [anon_sym_set] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_protected] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_any] = ACTIONS(1238), + [anon_sym_number] = ACTIONS(1238), + [anon_sym_boolean] = ACTIONS(1238), + [anon_sym_string] = ACTIONS(1238), + [anon_sym_symbol] = ACTIONS(1238), + [anon_sym_object] = ACTIONS(1238), [sym_html_comment] = ACTIONS(5), }, - [576] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), + [595] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2438), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [577] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1890), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [596] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [578] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1858), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [597] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1393), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7215), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7215), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1393), + [sym_subscript_expression] = STATE(1393), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7215), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1393), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2181), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(2187), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(2191), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, - [579] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1859), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [598] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7263), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7263), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7263), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1395), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_namespace] = ACTIONS(2197), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(2199), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(2201), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(2203), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_readonly] = ACTIONS(2195), + [anon_sym_get] = ACTIONS(2195), + [anon_sym_set] = ACTIONS(2195), + [anon_sym_declare] = ACTIONS(2195), + [anon_sym_public] = ACTIONS(2195), + [anon_sym_private] = ACTIONS(2195), + [anon_sym_protected] = ACTIONS(2195), + [anon_sym_override] = ACTIONS(2195), + [anon_sym_module] = ACTIONS(2195), + [anon_sym_any] = ACTIONS(2195), + [anon_sym_number] = ACTIONS(2195), + [anon_sym_boolean] = ACTIONS(2195), + [anon_sym_string] = ACTIONS(2195), + [anon_sym_symbol] = ACTIONS(2195), + [anon_sym_object] = ACTIONS(2195), [sym_html_comment] = ACTIONS(5), }, - [580] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1860), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [599] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [581] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1862), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [600] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2457), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [582] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1863), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [601] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7239), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7239), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7239), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2207), + [anon_sym_namespace] = ACTIONS(2209), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(2211), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(2215), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(2207), + [anon_sym_readonly] = ACTIONS(2207), + [anon_sym_get] = ACTIONS(2207), + [anon_sym_set] = ACTIONS(2207), + [anon_sym_declare] = ACTIONS(2207), + [anon_sym_public] = ACTIONS(2207), + [anon_sym_private] = ACTIONS(2207), + [anon_sym_protected] = ACTIONS(2207), + [anon_sym_override] = ACTIONS(2207), + [anon_sym_module] = ACTIONS(2207), + [anon_sym_any] = ACTIONS(2207), + [anon_sym_number] = ACTIONS(2207), + [anon_sym_boolean] = ACTIONS(2207), + [anon_sym_string] = ACTIONS(2207), + [anon_sym_symbol] = ACTIONS(2207), + [anon_sym_object] = ACTIONS(2207), [sym_html_comment] = ACTIONS(5), }, - [583] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1864), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [602] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2459), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [603] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2266), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1866), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [604] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2461), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [586] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1867), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [605] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1925), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [587] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1868), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [606] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1615), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1438), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_readonly] = ACTIONS(1044), + [anon_sym_get] = ACTIONS(1044), + [anon_sym_set] = ACTIONS(1044), + [anon_sym_declare] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_any] = ACTIONS(1044), + [anon_sym_number] = ACTIONS(1044), + [anon_sym_boolean] = ACTIONS(1044), + [anon_sym_string] = ACTIONS(1044), + [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [588] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1869), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [607] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2465), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1870), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [608] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2466), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [590] = { - [sym_import] = STATE(3334), + [609] = { + [sym_import] = STATE(3721), [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1871), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), + [sym_expression] = STATE(1875), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7466), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7466), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7388), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), [sym_member_expression] = STATE(1327), [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3344), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7466), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1370), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(952), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_void] = ACTIONS(1380), + [anon_sym_delete] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(1384), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1476), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), [sym_html_comment] = ACTIONS(5), }, - [591] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1671), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(4088), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(4088), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1301), - [sym_subscript_expression] = STATE(1301), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(4088), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1301), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_type] = ACTIONS(1354), - [anon_sym_namespace] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), + [610] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(2215), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7506), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7506), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7232), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3370), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7506), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1280), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1360), + [anon_sym_async] = ACTIONS(1286), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2177), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1300), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2179), + [sym_undefined] = ACTIONS(1492), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_readonly] = ACTIONS(1354), - [anon_sym_get] = ACTIONS(1354), - [anon_sym_set] = ACTIONS(1354), - [anon_sym_declare] = ACTIONS(1354), - [anon_sym_public] = ACTIONS(1354), - [anon_sym_private] = ACTIONS(1354), - [anon_sym_protected] = ACTIONS(1354), - [anon_sym_override] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_any] = ACTIONS(1354), - [anon_sym_number] = ACTIONS(1354), - [anon_sym_boolean] = ACTIONS(1354), - [anon_sym_string] = ACTIONS(1354), - [anon_sym_symbol] = ACTIONS(1354), - [anon_sym_object] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_get] = ACTIONS(1274), + [anon_sym_set] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_protected] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_any] = ACTIONS(1274), + [anon_sym_number] = ACTIONS(1274), + [anon_sym_boolean] = ACTIONS(1274), + [anon_sym_string] = ACTIONS(1274), + [anon_sym_symbol] = ACTIONS(1274), + [anon_sym_object] = ACTIONS(1274), [sym_html_comment] = ACTIONS(5), }, - [592] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1872), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [611] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [593] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1873), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [612] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2470), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [594] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [613] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1263), + [sym_expression] = STATE(1577), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7270), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7270), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7473), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3340), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7270), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_namespace] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(588), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), - [sym_html_comment] = ACTIONS(5), - }, - [595] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [596] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1746), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [597] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1748), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [598] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1879), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), - [sym_html_comment] = ACTIONS(5), - }, - [599] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1880), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), - [sym_html_comment] = ACTIONS(5), - }, - [600] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [601] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(1312), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), - [sym_html_comment] = ACTIONS(5), - }, - [602] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1575), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [603] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1454), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1052), [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_using] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_void] = ACTIONS(588), + [anon_sym_delete] = ACTIONS(588), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(592), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), @@ -91982,787 +96383,579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1044), [sym_html_comment] = ACTIONS(5), }, - [604] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1881), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), + [614] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [605] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1821), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), + [615] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [606] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [616] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1926), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [607] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1327), - [sym_expression] = STATE(1889), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5821), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5821), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5743), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2919), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5821), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1327), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1308), + [617] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1929), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1308), - [anon_sym_delete] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1312), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_readonly] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_declare] = ACTIONS(1286), - [anon_sym_public] = ACTIONS(1286), - [anon_sym_private] = ACTIONS(1286), - [anon_sym_protected] = ACTIONS(1286), - [anon_sym_override] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_any] = ACTIONS(1286), - [anon_sym_number] = ACTIONS(1286), - [anon_sym_boolean] = ACTIONS(1286), - [anon_sym_string] = ACTIONS(1286), - [anon_sym_symbol] = ACTIONS(1286), - [anon_sym_object] = ACTIONS(1286), - [sym_html_comment] = ACTIONS(5), - }, - [608] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [609] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [610] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1578), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), + [618] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [611] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1739), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [619] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1735), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -92772,7 +96965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -92796,77 +96989,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [612] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1742), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), + [620] = { + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1296), + [sym_expression] = STATE(1737), + [sym_primary_expression] = STATE(2115), + [sym_yield_expression] = STATE(2139), + [sym_object] = STATE(2134), + [sym_object_pattern] = STATE(7550), + [sym_array] = STATE(2134), + [sym_array_pattern] = STATE(7550), + [sym_glimmer_template] = STATE(2139), + [sym_jsx_element] = STATE(2139), + [sym_jsx_opening_element] = STATE(3479), + [sym_jsx_self_closing_element] = STATE(2139), + [sym_class] = STATE(2134), + [sym_function_expression] = STATE(2134), + [sym_generator_function] = STATE(2134), + [sym_arrow_function] = STATE(2134), + [sym__call_signature] = STATE(7551), + [sym_call_expression] = STATE(2134), + [sym_new_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_member_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_assignment_expression] = STATE(2139), + [sym__augmented_assignment_lhs] = STATE(3367), + [sym_augmented_assignment_expression] = STATE(2139), + [sym__destructuring_pattern] = STATE(7550), + [sym_ternary_expression] = STATE(2139), + [sym_binary_expression] = STATE(2139), + [sym_unary_expression] = STATE(2139), + [sym_update_expression] = STATE(2139), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2134), + [sym_regex] = STATE(2134), + [sym_meta_property] = STATE(2134), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(2139), + [sym_satisfies_expression] = STATE(2139), + [sym_instantiation_expression] = STATE(2139), + [sym_internal_module] = STATE(2139), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5361), [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_namespace] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1130), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -92876,7 +97069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1142), [anon_sym_function] = ACTIONS(713), [anon_sym_new] = ACTIONS(1444), [anon_sym_using] = ACTIONS(81), @@ -92900,93 +97093,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(1130), + [anon_sym_set] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_module] = ACTIONS(1130), + [anon_sym_any] = ACTIONS(1130), + [anon_sym_number] = ACTIONS(1130), + [anon_sym_boolean] = ACTIONS(1130), + [anon_sym_string] = ACTIONS(1130), + [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), [sym_html_comment] = ACTIONS(5), }, - [613] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5761), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5761), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5761), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1391), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(845), + [621] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2497), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(142), [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2189), + [anon_sym_new] = ACTIONS(823), [anon_sym_using] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), [anon_sym_TILDE] = ACTIONS(183), [anon_sym_void] = ACTIONS(187), @@ -93002,1504 +97195,672 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2191), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_get] = ACTIONS(2183), - [anon_sym_set] = ACTIONS(2183), - [anon_sym_declare] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_private] = ACTIONS(2183), - [anon_sym_protected] = ACTIONS(2183), - [anon_sym_override] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_any] = ACTIONS(2183), - [anon_sym_number] = ACTIONS(2183), - [anon_sym_boolean] = ACTIONS(2183), - [anon_sym_string] = ACTIONS(2183), - [anon_sym_symbol] = ACTIONS(2183), - [anon_sym_object] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [614] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2345), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), + [622] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2499), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [615] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1671), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), + [623] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), - [sym_html_comment] = ACTIONS(5), - }, - [616] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1667), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [617] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1635), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), - [sym_html_comment] = ACTIONS(5), - }, - [618] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1300), - [sym_expression] = STATE(1636), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5831), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5831), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5829), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5831), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1228), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_void] = ACTIONS(1228), - [anon_sym_delete] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1236), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_override] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_object] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [619] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1251), - [sym_expression] = STATE(1925), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5633), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5633), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5828), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2900), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5633), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(650), + [624] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1931), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(622), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(654), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1438), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_object] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [620] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2085), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), + [625] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1174), + [sym_expression] = STATE(2504), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7477), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7477), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3334), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7477), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(187), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(817), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(821), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(823), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(183), + [anon_sym_void] = ACTIONS(187), + [anon_sym_delete] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), + [sym_private_property_identifier] = ACTIONS(196), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), + [sym_undefined] = ACTIONS(827), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [621] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2309), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), + [626] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(2172), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, - [622] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5597), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5597), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5597), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1387), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), + [627] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1338), + [sym_expression] = STATE(1930), + [sym_primary_expression] = STATE(1470), + [sym_yield_expression] = STATE(1653), + [sym_object] = STATE(1655), + [sym_object_pattern] = STATE(7390), + [sym_array] = STATE(1655), + [sym_array_pattern] = STATE(7390), + [sym_glimmer_template] = STATE(1653), + [sym_jsx_element] = STATE(1653), + [sym_jsx_opening_element] = STATE(3472), + [sym_jsx_self_closing_element] = STATE(1653), + [sym_class] = STATE(1655), + [sym_function_expression] = STATE(1655), + [sym_generator_function] = STATE(1655), + [sym_arrow_function] = STATE(1655), + [sym__call_signature] = STATE(7246), + [sym_call_expression] = STATE(1655), + [sym_new_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_member_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1653), + [sym__augmented_assignment_lhs] = STATE(3316), + [sym_augmented_assignment_expression] = STATE(1653), + [sym__destructuring_pattern] = STATE(7390), + [sym_ternary_expression] = STATE(1653), + [sym_binary_expression] = STATE(1653), + [sym_unary_expression] = STATE(1653), + [sym_update_expression] = STATE(1653), + [sym_string] = STATE(1655), + [sym_template_string] = STATE(1655), + [sym_regex] = STATE(1655), + [sym_meta_property] = STATE(1655), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(4505), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1653), + [sym_satisfies_expression] = STATE(1653), + [sym_instantiation_expression] = STATE(1653), + [sym_internal_module] = STATE(1653), + [sym_type_parameters] = STATE(6901), + [aux_sym_export_statement_repeat1] = STATE(5450), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_type] = ACTIONS(1066), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1092), [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1074), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_await] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(845), [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(1082), [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2201), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(584), [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(825), [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1100), [sym_this] = ACTIONS(200), [sym_super] = ACTIONS(200), [sym_true] = ACTIONS(200), [sym_false] = ACTIONS(200), [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2203), + [sym_undefined] = ACTIONS(1460), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_readonly] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2195), - [anon_sym_set] = ACTIONS(2195), - [anon_sym_declare] = ACTIONS(2195), - [anon_sym_public] = ACTIONS(2195), - [anon_sym_private] = ACTIONS(2195), - [anon_sym_protected] = ACTIONS(2195), - [anon_sym_override] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_any] = ACTIONS(2195), - [anon_sym_number] = ACTIONS(2195), - [anon_sym_boolean] = ACTIONS(2195), - [anon_sym_string] = ACTIONS(2195), - [anon_sym_symbol] = ACTIONS(2195), - [anon_sym_object] = ACTIONS(2195), - [sym_html_comment] = ACTIONS(5), - }, - [623] = { - [sym_import] = STATE(3306), - [sym_parenthesized_expression] = STATE(1294), - [sym_expression] = STATE(1727), - [sym_primary_expression] = STATE(1946), - [sym_yield_expression] = STATE(2234), - [sym_object] = STATE(2310), - [sym_object_pattern] = STATE(5667), - [sym_array] = STATE(2310), - [sym_array_pattern] = STATE(5667), - [sym_glimmer_template] = STATE(2234), - [sym_jsx_element] = STATE(2234), - [sym_jsx_opening_element] = STATE(3051), - [sym_jsx_self_closing_element] = STATE(2234), - [sym_class] = STATE(2310), - [sym_function_expression] = STATE(2310), - [sym_generator_function] = STATE(2310), - [sym_arrow_function] = STATE(2310), - [sym__call_signature] = STATE(5809), - [sym_call_expression] = STATE(2310), - [sym_new_expression] = STATE(2234), - [sym_await_expression] = STATE(2234), - [sym_member_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_assignment_expression] = STATE(2234), - [sym__augmented_assignment_lhs] = STATE(2875), - [sym_augmented_assignment_expression] = STATE(2234), - [sym__destructuring_pattern] = STATE(5667), - [sym_ternary_expression] = STATE(2234), - [sym_binary_expression] = STATE(2234), - [sym_unary_expression] = STATE(2234), - [sym_update_expression] = STATE(2234), - [sym_string] = STATE(2310), - [sym_template_string] = STATE(2310), - [sym_regex] = STATE(2310), - [sym_meta_property] = STATE(2310), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(2234), - [sym_satisfies_expression] = STATE(2234), - [sym_instantiation_expression] = STATE(2234), - [sym_internal_module] = STATE(2234), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_namespace] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(709), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(713), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_readonly] = ACTIONS(1372), - [anon_sym_get] = ACTIONS(1372), - [anon_sym_set] = ACTIONS(1372), - [anon_sym_declare] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_protected] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_any] = ACTIONS(1372), - [anon_sym_number] = ACTIONS(1372), - [anon_sym_boolean] = ACTIONS(1372), - [anon_sym_string] = ACTIONS(1372), - [anon_sym_symbol] = ACTIONS(1372), - [anon_sym_object] = ACTIONS(1372), - [sym_html_comment] = ACTIONS(5), - }, - [624] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2322), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [625] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1394), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5846), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5846), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5619), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1394), - [sym_subscript_expression] = STATE(1394), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2878), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5846), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1394), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2207), - [anon_sym_namespace] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(187), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(2207), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(142), - [anon_sym_yield] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(183), - [anon_sym_void] = ACTIONS(187), - [anon_sym_delete] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(196), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(2215), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2207), - [anon_sym_readonly] = ACTIONS(2207), - [anon_sym_get] = ACTIONS(2207), - [anon_sym_set] = ACTIONS(2207), - [anon_sym_declare] = ACTIONS(2207), - [anon_sym_public] = ACTIONS(2207), - [anon_sym_private] = ACTIONS(2207), - [anon_sym_protected] = ACTIONS(2207), - [anon_sym_override] = ACTIONS(2207), - [anon_sym_module] = ACTIONS(2207), - [anon_sym_any] = ACTIONS(2207), - [anon_sym_number] = ACTIONS(2207), - [anon_sym_boolean] = ACTIONS(2207), - [anon_sym_string] = ACTIONS(2207), - [anon_sym_symbol] = ACTIONS(2207), - [anon_sym_object] = ACTIONS(2207), - [sym_html_comment] = ACTIONS(5), - }, - [626] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2381), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5745), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5745), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2884), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5745), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1470), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1272), - [anon_sym_delete] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1276), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), - [sym_html_comment] = ACTIONS(5), - }, - [627] = { - [sym_import] = STATE(3334), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2292), - [sym_primary_expression] = STATE(1468), - [sym_yield_expression] = STATE(1634), - [sym_object] = STATE(1650), - [sym_object_pattern] = STATE(5861), - [sym_array] = STATE(1650), - [sym_array_pattern] = STATE(5861), - [sym_glimmer_template] = STATE(1634), - [sym_jsx_element] = STATE(1634), - [sym_jsx_opening_element] = STATE(3026), - [sym_jsx_self_closing_element] = STATE(1634), - [sym_class] = STATE(1650), - [sym_function_expression] = STATE(1650), - [sym_generator_function] = STATE(1650), - [sym_arrow_function] = STATE(1650), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(1650), - [sym_new_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1634), - [sym__augmented_assignment_lhs] = STATE(2891), - [sym_augmented_assignment_expression] = STATE(1634), - [sym__destructuring_pattern] = STATE(5861), - [sym_ternary_expression] = STATE(1634), - [sym_binary_expression] = STATE(1634), - [sym_unary_expression] = STATE(1634), - [sym_update_expression] = STATE(1634), - [sym_string] = STATE(1650), - [sym_template_string] = STATE(1650), - [sym_regex] = STATE(1650), - [sym_meta_property] = STATE(1650), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3742), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1634), - [sym_satisfies_expression] = STATE(1634), - [sym_instantiation_expression] = STATE(1634), - [sym_internal_module] = STATE(1634), - [sym_type_parameters] = STATE(5349), - [aux_sym_export_statement_repeat1] = STATE(4458), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_namespace] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(133), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_await] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_glimmer_opening_tag] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_class] = ACTIONS(154), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(825), - [sym_number] = ACTIONS(787), - [sym_private_property_identifier] = ACTIONS(1142), - [sym_this] = ACTIONS(200), - [sym_super] = ACTIONS(200), - [sym_true] = ACTIONS(200), - [sym_false] = ACTIONS(200), - [sym_null] = ACTIONS(200), - [sym_undefined] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_readonly] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_declare] = ACTIONS(1114), - [anon_sym_public] = ACTIONS(1114), - [anon_sym_private] = ACTIONS(1114), - [anon_sym_protected] = ACTIONS(1114), - [anon_sym_override] = ACTIONS(1114), - [anon_sym_module] = ACTIONS(1114), - [anon_sym_any] = ACTIONS(1114), - [anon_sym_number] = ACTIONS(1114), - [anon_sym_boolean] = ACTIONS(1114), - [anon_sym_string] = ACTIONS(1114), - [anon_sym_symbol] = ACTIONS(1114), - [anon_sym_object] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_readonly] = ACTIONS(1066), + [anon_sym_get] = ACTIONS(1066), + [anon_sym_set] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_protected] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_any] = ACTIONS(1066), + [anon_sym_number] = ACTIONS(1066), + [anon_sym_boolean] = ACTIONS(1066), + [anon_sym_string] = ACTIONS(1066), + [anon_sym_symbol] = ACTIONS(1066), + [anon_sym_object] = ACTIONS(1066), [sym_html_comment] = ACTIONS(5), }, [628] = { - [sym_namespace_export] = STATE(5254), - [sym_export_clause] = STATE(4500), - [sym_declaration] = STATE(859), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), - [aux_sym_object_repeat1] = STATE(4671), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_namespace_export] = STATE(6658), + [sym_export_clause] = STATE(5406), + [sym_declaration] = STATE(856), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), + [aux_sym_object_repeat1] = STATE(5988), + [aux_sym_object_pattern_repeat1] = STATE(5989), [anon_sym_STAR] = ACTIONS(2217), [anon_sym_default] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2221), @@ -94508,7 +97869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(2227), [anon_sym_LBRACE] = ACTIONS(2229), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_import] = ACTIONS(2231), [anon_sym_var] = ACTIONS(2233), [anon_sym_let] = ACTIONS(2235), @@ -94580,27 +97941,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [629] = { - [sym_namespace_export] = STATE(5254), - [sym_export_clause] = STATE(4500), - [sym_declaration] = STATE(859), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_namespace_export] = STATE(6658), + [sym_export_clause] = STATE(5406), + [sym_declaration] = STATE(856), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [anon_sym_STAR] = ACTIONS(2217), [anon_sym_default] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2221), @@ -94609,7 +97970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(2227), [anon_sym_LBRACE] = ACTIONS(2229), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_import] = ACTIONS(2231), [anon_sym_var] = ACTIONS(2233), [anon_sym_let] = ACTIONS(2235), @@ -94681,27 +98042,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [630] = { - [sym_namespace_export] = STATE(5254), - [sym_export_clause] = STATE(4500), - [sym_declaration] = STATE(859), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_namespace_export] = STATE(6658), + [sym_export_clause] = STATE(5406), + [sym_declaration] = STATE(856), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [anon_sym_STAR] = ACTIONS(2217), [anon_sym_default] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2221), @@ -94710,7 +98071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(2227), [anon_sym_LBRACE] = ACTIONS(2229), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_import] = ACTIONS(2231), [anon_sym_var] = ACTIONS(2233), [anon_sym_let] = ACTIONS(2235), @@ -94782,14 +98143,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [631] = { - [sym__call_signature] = STATE(5703), - [sym_string] = STATE(3788), - [sym_formal_parameters] = STATE(3742), - [sym__property_name] = STATE(3788), - [sym_computed_property_name] = STATE(3788), - [sym_type_parameters] = STATE(5349), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym__call_signature] = STATE(7488), + [sym_string] = STATE(4192), + [sym_formal_parameters] = STATE(4505), + [sym__property_name] = STATE(4192), + [sym_computed_property_name] = STATE(4192), + [sym_type_parameters] = STATE(6901), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2261), [anon_sym_export] = ACTIONS(2263), [anon_sym_STAR] = ACTIONS(2265), @@ -94798,7 +98159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2263), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_let] = ACTIONS(2263), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2268), @@ -94881,14 +98242,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [632] = { - [sym__call_signature] = STATE(5703), - [sym_string] = STATE(3788), - [sym_formal_parameters] = STATE(3742), - [sym__property_name] = STATE(3788), - [sym_computed_property_name] = STATE(3788), - [sym_type_parameters] = STATE(5349), - [aux_sym_object_repeat1] = STATE(4671), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym__call_signature] = STATE(7488), + [sym_string] = STATE(4192), + [sym_formal_parameters] = STATE(4505), + [sym__property_name] = STATE(4192), + [sym_computed_property_name] = STATE(4192), + [sym_type_parameters] = STATE(6901), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2261), [anon_sym_export] = ACTIONS(2263), [anon_sym_STAR] = ACTIONS(2265), @@ -94897,7 +98258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2263), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_let] = ACTIONS(2263), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2268), @@ -94980,14 +98341,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [633] = { - [sym__call_signature] = STATE(5703), - [sym_string] = STATE(3788), - [sym_formal_parameters] = STATE(3742), - [sym__property_name] = STATE(3788), - [sym_computed_property_name] = STATE(3788), - [sym_type_parameters] = STATE(5349), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym__call_signature] = STATE(7488), + [sym_string] = STATE(4192), + [sym_formal_parameters] = STATE(4505), + [sym__property_name] = STATE(4192), + [sym_computed_property_name] = STATE(4192), + [sym_type_parameters] = STATE(6901), + [aux_sym_object_repeat1] = STATE(5988), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2261), [anon_sym_export] = ACTIONS(2263), [anon_sym_STAR] = ACTIONS(2265), @@ -95079,25 +98440,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [634] = { - [sym_declaration] = STATE(819), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_declaration] = STATE(756), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), + [aux_sym_object_repeat1] = STATE(5988), + [aux_sym_object_pattern_repeat1] = STATE(5989), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), [anon_sym_EQ] = ACTIONS(696), @@ -95177,25 +98538,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [635] = { - [sym_declaration] = STATE(819), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_declaration] = STATE(756), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), [anon_sym_EQ] = ACTIONS(696), @@ -95275,25 +98636,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [636] = { - [sym_declaration] = STATE(819), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), - [aux_sym_object_repeat1] = STATE(4671), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_declaration] = STATE(756), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), [anon_sym_EQ] = ACTIONS(696), @@ -95373,25 +98734,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [637] = { - [sym_namespace_export] = STATE(5254), - [sym_export_clause] = STATE(4500), - [sym_declaration] = STATE(859), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), + [sym_namespace_export] = STATE(6658), + [sym_export_clause] = STATE(5406), + [sym_declaration] = STATE(856), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), [anon_sym_STAR] = ACTIONS(2217), [anon_sym_default] = ACTIONS(2295), [anon_sym_type] = ACTIONS(2221), @@ -95408,7 +98769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(886), + [anon_sym_COLON] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), @@ -95470,25 +98831,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [638] = { - [sym_namespace_export] = STATE(5254), - [sym_export_clause] = STATE(4500), - [sym_declaration] = STATE(859), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), + [sym_namespace_export] = STATE(6658), + [sym_export_clause] = STATE(5406), + [sym_declaration] = STATE(856), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), [anon_sym_STAR] = ACTIONS(2217), [anon_sym_default] = ACTIONS(2299), [anon_sym_type] = ACTIONS(2221), @@ -95505,7 +98866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(866), + [anon_sym_COLON] = ACTIONS(881), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), @@ -95567,25 +98928,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [639] = { - [sym_namespace_export] = STATE(5254), - [sym_export_clause] = STATE(4500), - [sym_declaration] = STATE(859), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), + [sym_namespace_export] = STATE(6658), + [sym_export_clause] = STATE(5406), + [sym_declaration] = STATE(856), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), [anon_sym_STAR] = ACTIONS(2217), [anon_sym_default] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2221), @@ -95602,7 +98963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(861), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), @@ -95664,12 +99025,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [640] = { - [sym_string] = STATE(3788), - [sym__property_name] = STATE(3788), - [sym_computed_property_name] = STATE(3788), - [sym_override_modifier] = STATE(2719), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_string] = STATE(4192), + [sym__property_name] = STATE(4192), + [sym_computed_property_name] = STATE(4192), + [sym_override_modifier] = STATE(3097), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), [anon_sym_STAR] = ACTIONS(2265), @@ -95760,12 +99121,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [641] = { - [sym_string] = STATE(3788), - [sym__property_name] = STATE(3788), - [sym_computed_property_name] = STATE(3788), - [sym_override_modifier] = STATE(2719), - [aux_sym_object_repeat1] = STATE(4671), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_string] = STATE(4192), + [sym__property_name] = STATE(4192), + [sym_computed_property_name] = STATE(4192), + [sym_override_modifier] = STATE(3097), + [aux_sym_object_repeat1] = STATE(5988), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(2307), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_EQ] = ACTIONS(696), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_readonly] = ACTIONS(2311), + [anon_sym_get] = ACTIONS(2313), + [anon_sym_set] = ACTIONS(2313), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_override] = ACTIONS(2315), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_any] = ACTIONS(2307), + [anon_sym_number] = ACTIONS(2307), + [anon_sym_boolean] = ACTIONS(2307), + [anon_sym_string] = ACTIONS(2307), + [anon_sym_symbol] = ACTIONS(2307), + [anon_sym_object] = ACTIONS(2307), + [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [642] = { + [sym_string] = STATE(4192), + [sym__property_name] = STATE(4192), + [sym_computed_property_name] = STATE(4192), + [sym_override_modifier] = STATE(3097), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), [anon_sym_STAR] = ACTIONS(2265), @@ -95855,13 +99312,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_string] = STATE(3788), - [sym__property_name] = STATE(3788), - [sym_computed_property_name] = STATE(3788), - [sym_override_modifier] = STATE(2719), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [643] = { + [sym_string] = STATE(4192), + [sym__property_name] = STATE(4192), + [sym_computed_property_name] = STATE(4192), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), [anon_sym_STAR] = ACTIONS(2265), @@ -95870,7 +99326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -95930,7 +99386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(2285), [sym_private_property_identifier] = ACTIONS(2285), [anon_sym_static] = ACTIONS(2307), - [anon_sym_readonly] = ACTIONS(2311), + [anon_sym_readonly] = ACTIONS(2307), [anon_sym_get] = ACTIONS(2313), [anon_sym_set] = ACTIONS(2313), [anon_sym_QMARK] = ACTIONS(723), @@ -95938,7 +99394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(2307), [anon_sym_private] = ACTIONS(2307), [anon_sym_protected] = ACTIONS(2307), - [anon_sym_override] = ACTIONS(2315), + [anon_sym_override] = ACTIONS(2307), [anon_sym_module] = ACTIONS(2307), [anon_sym_any] = ACTIONS(2307), [anon_sym_number] = ACTIONS(2307), @@ -95951,12 +99407,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [643] = { - [sym_string] = STATE(3788), - [sym__property_name] = STATE(3788), - [sym_computed_property_name] = STATE(3788), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [644] = { + [sym_string] = STATE(4192), + [sym__property_name] = STATE(4192), + [sym_computed_property_name] = STATE(4192), + [aux_sym_object_repeat1] = STATE(5988), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), [anon_sym_STAR] = ACTIONS(122), @@ -95965,7 +99421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -96046,12 +99502,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [644] = { - [sym_string] = STATE(3788), - [sym__property_name] = STATE(3788), - [sym_computed_property_name] = STATE(3788), - [aux_sym_object_repeat1] = STATE(4671), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [645] = { + [sym_string] = STATE(4192), + [sym__property_name] = STATE(4192), + [sym_computed_property_name] = STATE(4192), + [aux_sym_object_repeat1] = STATE(5988), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), [anon_sym_STAR] = ACTIONS(2265), @@ -96060,7 +99516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -96141,116 +99597,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [645] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_typeof] = ACTIONS(1823), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_from] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_var] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_debugger] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_COLON] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1821), - [anon_sym_RBRACK] = ACTIONS(1821), - [sym_glimmer_opening_tag] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_function] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1821), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_void] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_number] = ACTIONS(1821), - [sym_private_property_identifier] = ACTIONS(1821), - [sym_this] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_undefined] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_readonly] = ACTIONS(1823), - [anon_sym_get] = ACTIONS(1823), - [anon_sym_set] = ACTIONS(1823), - [anon_sym_QMARK] = ACTIONS(1821), - [anon_sym_declare] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [anon_sym_override] = ACTIONS(1823), - [anon_sym_module] = ACTIONS(1823), - [anon_sym_any] = ACTIONS(1823), - [anon_sym_number] = ACTIONS(1823), - [anon_sym_boolean] = ACTIONS(1823), - [anon_sym_string] = ACTIONS(1823), - [anon_sym_symbol] = ACTIONS(1823), - [anon_sym_object] = ACTIONS(1823), - [anon_sym_abstract] = ACTIONS(1823), - [anon_sym_extends] = ACTIONS(1823), - [anon_sym_interface] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [sym_html_comment] = ACTIONS(5), - }, [646] = { - [sym_string] = STATE(3788), - [sym__property_name] = STATE(3788), - [sym_computed_property_name] = STATE(3788), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_string] = STATE(4192), + [sym__property_name] = STATE(4192), + [sym_computed_property_name] = STATE(4192), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2307), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -96262,7 +99623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(2275), [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2307), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2307), @@ -96311,8 +99672,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2285), [anon_sym_static] = ACTIONS(2307), [anon_sym_readonly] = ACTIONS(2307), - [anon_sym_get] = ACTIONS(2313), - [anon_sym_set] = ACTIONS(2313), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), [anon_sym_QMARK] = ACTIONS(723), [anon_sym_declare] = ACTIONS(2307), [anon_sym_public] = ACTIONS(2307), @@ -96332,11 +99693,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [647] = { - [sym_string] = STATE(3788), - [sym__property_name] = STATE(3788), - [sym_computed_property_name] = STATE(3788), - [aux_sym_object_repeat1] = STATE(4671), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_string] = STATE(4192), + [sym__property_name] = STATE(4192), + [sym_computed_property_name] = STATE(4192), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), [anon_sym_STAR] = ACTIONS(122), @@ -96345,7 +99706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -96427,115 +99788,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [648] = { - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_identifier] = ACTIONS(1919), - [anon_sym_export] = ACTIONS(1919), - [anon_sym_default] = ACTIONS(1919), - [anon_sym_type] = ACTIONS(1919), - [anon_sym_EQ] = ACTIONS(1919), - [anon_sym_namespace] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_typeof] = ACTIONS(1919), - [anon_sym_import] = ACTIONS(1919), - [anon_sym_from] = ACTIONS(1919), - [anon_sym_with] = ACTIONS(1919), - [anon_sym_var] = ACTIONS(1919), - [anon_sym_let] = ACTIONS(1919), - [anon_sym_const] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_switch] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_await] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_do] = ACTIONS(1919), - [anon_sym_try] = ACTIONS(1919), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_debugger] = ACTIONS(1919), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_throw] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_COLON] = ACTIONS(1917), - [anon_sym_case] = ACTIONS(1919), - [anon_sym_yield] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [sym_glimmer_opening_tag] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [anon_sym_SQUOTE] = ACTIONS(1917), - [anon_sym_class] = ACTIONS(1919), - [anon_sym_async] = ACTIONS(1919), - [anon_sym_function] = ACTIONS(1919), - [anon_sym_EQ_GT] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(1919), - [anon_sym_using] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_void] = ACTIONS(1919), - [anon_sym_delete] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1917), - [sym_number] = ACTIONS(1917), - [sym_private_property_identifier] = ACTIONS(1917), - [sym_this] = ACTIONS(1919), - [sym_super] = ACTIONS(1919), - [sym_true] = ACTIONS(1919), - [sym_false] = ACTIONS(1919), - [sym_null] = ACTIONS(1919), - [sym_undefined] = ACTIONS(1919), - [anon_sym_AT] = ACTIONS(1917), - [anon_sym_static] = ACTIONS(1919), - [anon_sym_readonly] = ACTIONS(1919), - [anon_sym_get] = ACTIONS(1919), - [anon_sym_set] = ACTIONS(1919), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_declare] = ACTIONS(1919), - [anon_sym_public] = ACTIONS(1919), - [anon_sym_private] = ACTIONS(1919), - [anon_sym_protected] = ACTIONS(1919), - [anon_sym_override] = ACTIONS(1919), - [anon_sym_module] = ACTIONS(1919), - [anon_sym_any] = ACTIONS(1919), - [anon_sym_number] = ACTIONS(1919), - [anon_sym_boolean] = ACTIONS(1919), - [anon_sym_string] = ACTIONS(1919), - [anon_sym_symbol] = ACTIONS(1919), - [anon_sym_object] = ACTIONS(1919), - [anon_sym_abstract] = ACTIONS(1919), - [anon_sym_extends] = ACTIONS(1919), - [anon_sym_interface] = ACTIONS(1919), - [anon_sym_enum] = ACTIONS(1919), - [sym_html_comment] = ACTIONS(5), - }, - [649] = { - [sym_string] = STATE(3788), - [sym__property_name] = STATE(3788), - [sym_computed_property_name] = STATE(3788), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [sym_string] = STATE(4192), + [sym__property_name] = STATE(4192), + [sym_computed_property_name] = STATE(4192), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2307), [anon_sym_export] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(2265), [anon_sym_type] = ACTIONS(2307), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2307), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_let] = ACTIONS(2307), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -96547,7 +99813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(2275), [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2309), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2307), @@ -96596,8 +99862,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2285), [anon_sym_static] = ACTIONS(2307), [anon_sym_readonly] = ACTIONS(2307), - [anon_sym_get] = ACTIONS(2307), - [anon_sym_set] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2313), + [anon_sym_set] = ACTIONS(2313), [anon_sym_QMARK] = ACTIONS(723), [anon_sym_declare] = ACTIONS(2307), [anon_sym_public] = ACTIONS(2307), @@ -96616,36 +99882,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, + [649] = { + [ts_builtin_sym_end] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [anon_sym_export] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1777), + [anon_sym_type] = ACTIONS(1777), + [anon_sym_EQ] = ACTIONS(1777), + [anon_sym_namespace] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1775), + [anon_sym_RBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(1777), + [anon_sym_import] = ACTIONS(1777), + [anon_sym_from] = ACTIONS(1777), + [anon_sym_with] = ACTIONS(1777), + [anon_sym_var] = ACTIONS(1777), + [anon_sym_let] = ACTIONS(1777), + [anon_sym_const] = ACTIONS(1777), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_else] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(1777), + [anon_sym_switch] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_RPAREN] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(1777), + [anon_sym_do] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_debugger] = ACTIONS(1777), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_throw] = ACTIONS(1777), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_COLON] = ACTIONS(1775), + [anon_sym_case] = ACTIONS(1777), + [anon_sym_yield] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_RBRACK] = ACTIONS(1775), + [sym_glimmer_opening_tag] = ACTIONS(1775), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_SQUOTE] = ACTIONS(1775), + [anon_sym_class] = ACTIONS(1777), + [anon_sym_async] = ACTIONS(1777), + [anon_sym_function] = ACTIONS(1777), + [anon_sym_EQ_GT] = ACTIONS(1775), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_SLASH] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(1777), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1777), + [anon_sym_delete] = ACTIONS(1777), + [anon_sym_PLUS_PLUS] = ACTIONS(1775), + [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1775), + [sym_number] = ACTIONS(1775), + [sym_private_property_identifier] = ACTIONS(1775), + [sym_this] = ACTIONS(1777), + [sym_super] = ACTIONS(1777), + [sym_true] = ACTIONS(1777), + [sym_false] = ACTIONS(1777), + [sym_null] = ACTIONS(1777), + [sym_undefined] = ACTIONS(1777), + [anon_sym_AT] = ACTIONS(1775), + [anon_sym_static] = ACTIONS(1777), + [anon_sym_readonly] = ACTIONS(1777), + [anon_sym_get] = ACTIONS(1777), + [anon_sym_set] = ACTIONS(1777), + [anon_sym_QMARK] = ACTIONS(1775), + [anon_sym_declare] = ACTIONS(1777), + [anon_sym_public] = ACTIONS(1777), + [anon_sym_private] = ACTIONS(1777), + [anon_sym_protected] = ACTIONS(1777), + [anon_sym_override] = ACTIONS(1777), + [anon_sym_module] = ACTIONS(1777), + [anon_sym_any] = ACTIONS(1777), + [anon_sym_number] = ACTIONS(1777), + [anon_sym_boolean] = ACTIONS(1777), + [anon_sym_string] = ACTIONS(1777), + [anon_sym_symbol] = ACTIONS(1777), + [anon_sym_object] = ACTIONS(1777), + [anon_sym_abstract] = ACTIONS(1777), + [anon_sym_extends] = ACTIONS(1777), + [anon_sym_interface] = ACTIONS(1777), + [anon_sym_enum] = ACTIONS(1777), + [sym_html_comment] = ACTIONS(5), + }, [650] = { - [sym_string] = STATE(3788), - [sym__property_name] = STATE(3788), - [sym_computed_property_name] = STATE(3788), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(2307), - [anon_sym_export] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(696), + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_EQ] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_RPAREN] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_COLON] = ACTIONS(1779), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_RBRACK] = ACTIONS(1779), + [sym_glimmer_opening_tag] = ACTIONS(1779), + [anon_sym_GT] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_EQ_GT] = ACTIONS(1779), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_QMARK] = ACTIONS(1779), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_extends] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), + }, + [651] = { + [ts_builtin_sym_end] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2319), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_default] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2319), + [anon_sym_namespace] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_typeof] = ACTIONS(2319), + [anon_sym_import] = ACTIONS(2319), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_var] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_const] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_else] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_switch] = ACTIONS(2319), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_RPAREN] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_break] = ACTIONS(2319), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_debugger] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_throw] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_COLON] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2319), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_RBRACK] = ACTIONS(2317), + [sym_glimmer_opening_tag] = ACTIONS(2317), + [anon_sym_GT] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_EQ_GT] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_using] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_PIPE] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_SLASH] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2317), + [anon_sym_void] = ACTIONS(2319), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2317), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2317), + [sym_number] = ACTIONS(2317), + [sym_private_property_identifier] = ACTIONS(2317), + [sym_this] = ACTIONS(2319), + [sym_super] = ACTIONS(2319), + [sym_true] = ACTIONS(2319), + [sym_false] = ACTIONS(2319), + [sym_null] = ACTIONS(2319), + [sym_undefined] = ACTIONS(2319), + [anon_sym_AT] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_readonly] = ACTIONS(2319), + [anon_sym_get] = ACTIONS(2319), + [anon_sym_set] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2317), + [anon_sym_declare] = ACTIONS(2319), + [anon_sym_public] = ACTIONS(2319), + [anon_sym_private] = ACTIONS(2319), + [anon_sym_protected] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_any] = ACTIONS(2319), + [anon_sym_number] = ACTIONS(2319), + [anon_sym_boolean] = ACTIONS(2319), + [anon_sym_string] = ACTIONS(2319), + [anon_sym_symbol] = ACTIONS(2319), + [anon_sym_object] = ACTIONS(2319), + [anon_sym_abstract] = ACTIONS(2319), + [anon_sym_extends] = ACTIONS(2319), + [anon_sym_interface] = ACTIONS(2319), + [anon_sym_enum] = ACTIONS(2319), + [sym_html_comment] = ACTIONS(5), + }, + [652] = { + [sym_declaration] = STATE(756), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_namespace] = ACTIONS(2227), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(2307), + [anon_sym_import] = ACTIONS(2231), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2237), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2309), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_class] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2246), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2307), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -96674,7 +100235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2248), + [anon_sym_LT] = ACTIONS(122), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -96682,58 +100243,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ_EQ] = ACTIONS(162), [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(162), [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [sym_number] = ACTIONS(2285), - [sym_private_property_identifier] = ACTIONS(2285), - [anon_sym_static] = ACTIONS(2307), - [anon_sym_readonly] = ACTIONS(2307), - [anon_sym_get] = ACTIONS(2313), - [anon_sym_set] = ACTIONS(2313), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(2307), - [anon_sym_public] = ACTIONS(2307), - [anon_sym_private] = ACTIONS(2307), - [anon_sym_protected] = ACTIONS(2307), - [anon_sym_override] = ACTIONS(2307), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_any] = ACTIONS(2307), - [anon_sym_number] = ACTIONS(2307), - [anon_sym_boolean] = ACTIONS(2307), - [anon_sym_string] = ACTIONS(2307), - [anon_sym_symbol] = ACTIONS(2307), - [anon_sym_object] = ACTIONS(2307), - [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(2251), + [anon_sym_module] = ACTIONS(2291), + [anon_sym_abstract] = ACTIONS(2255), + [anon_sym_satisfies] = ACTIONS(162), + [anon_sym_global] = ACTIONS(2293), + [anon_sym_interface] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2259), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [651] = { - [sym_declaration] = STATE(819), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), + [653] = { + [ts_builtin_sym_end] = ACTIONS(2321), + [sym_identifier] = ACTIONS(2323), + [anon_sym_export] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2323), + [anon_sym_EQ] = ACTIONS(2323), + [anon_sym_namespace] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2321), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_typeof] = ACTIONS(2323), + [anon_sym_import] = ACTIONS(2323), + [anon_sym_with] = ACTIONS(2323), + [anon_sym_var] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(2323), + [anon_sym_const] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2321), + [anon_sym_else] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_switch] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_RPAREN] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_do] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2323), + [anon_sym_break] = ACTIONS(2323), + [anon_sym_continue] = ACTIONS(2323), + [anon_sym_debugger] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_throw] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2321), + [anon_sym_case] = ACTIONS(2323), + [anon_sym_yield] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_RBRACK] = ACTIONS(2321), + [sym_glimmer_opening_tag] = ACTIONS(2321), + [anon_sym_GT] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_function] = ACTIONS(2323), + [anon_sym_EQ_GT] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2323), + [anon_sym_using] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2323), + [anon_sym_SLASH] = ACTIONS(2323), + [anon_sym_LT] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2321), + [anon_sym_void] = ACTIONS(2323), + [anon_sym_delete] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2321), + [anon_sym_DASH_DASH] = ACTIONS(2321), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2321), + [sym_number] = ACTIONS(2321), + [sym_private_property_identifier] = ACTIONS(2321), + [sym_this] = ACTIONS(2323), + [sym_super] = ACTIONS(2323), + [sym_true] = ACTIONS(2323), + [sym_false] = ACTIONS(2323), + [sym_null] = ACTIONS(2323), + [sym_undefined] = ACTIONS(2323), + [anon_sym_AT] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2323), + [anon_sym_readonly] = ACTIONS(2323), + [anon_sym_get] = ACTIONS(2323), + [anon_sym_set] = ACTIONS(2323), + [anon_sym_QMARK] = ACTIONS(2321), + [anon_sym_declare] = ACTIONS(2323), + [anon_sym_public] = ACTIONS(2323), + [anon_sym_private] = ACTIONS(2323), + [anon_sym_protected] = ACTIONS(2323), + [anon_sym_override] = ACTIONS(2323), + [anon_sym_module] = ACTIONS(2323), + [anon_sym_any] = ACTIONS(2323), + [anon_sym_number] = ACTIONS(2323), + [anon_sym_boolean] = ACTIONS(2323), + [anon_sym_string] = ACTIONS(2323), + [anon_sym_symbol] = ACTIONS(2323), + [anon_sym_object] = ACTIONS(2323), + [anon_sym_abstract] = ACTIONS(2323), + [anon_sym_extends] = ACTIONS(2323), + [anon_sym_interface] = ACTIONS(2323), + [anon_sym_enum] = ACTIONS(2323), + [sym_html_comment] = ACTIONS(5), + }, + [654] = { + [sym_declaration] = STATE(756), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2227), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_import] = ACTIONS(2231), [anon_sym_var] = ACTIONS(2233), @@ -96743,7 +100386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(866), + [anon_sym_COLON] = ACTIONS(861), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), @@ -96794,8 +100437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2303), - [anon_sym_module] = ACTIONS(2317), + [anon_sym_declare] = ACTIONS(2251), + [anon_sym_module] = ACTIONS(2291), [anon_sym_abstract] = ACTIONS(2255), [anon_sym_satisfies] = ACTIONS(162), [anon_sym_global] = ACTIONS(2293), @@ -96805,311 +100448,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [652] = { - [ts_builtin_sym_end] = ACTIONS(2319), - [sym_identifier] = ACTIONS(2321), - [anon_sym_export] = ACTIONS(2321), - [anon_sym_default] = ACTIONS(2321), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2321), - [anon_sym_namespace] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_COMMA] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_typeof] = ACTIONS(2321), - [anon_sym_import] = ACTIONS(2321), - [anon_sym_with] = ACTIONS(2321), - [anon_sym_var] = ACTIONS(2321), - [anon_sym_let] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_BANG] = ACTIONS(2319), - [anon_sym_else] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_switch] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_RPAREN] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_do] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_debugger] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_throw] = ACTIONS(2321), - [anon_sym_SEMI] = ACTIONS(2319), - [anon_sym_COLON] = ACTIONS(2319), - [anon_sym_case] = ACTIONS(2321), - [anon_sym_yield] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2319), - [anon_sym_RBRACK] = ACTIONS(2319), - [sym_glimmer_opening_tag] = ACTIONS(2319), - [anon_sym_GT] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_class] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_function] = ACTIONS(2321), - [anon_sym_EQ_GT] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_using] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2319), - [anon_sym_PIPE] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_SLASH] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2319), - [anon_sym_void] = ACTIONS(2321), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2319), - [sym_number] = ACTIONS(2319), - [sym_private_property_identifier] = ACTIONS(2319), - [sym_this] = ACTIONS(2321), - [sym_super] = ACTIONS(2321), - [sym_true] = ACTIONS(2321), - [sym_false] = ACTIONS(2321), - [sym_null] = ACTIONS(2321), - [sym_undefined] = ACTIONS(2321), - [anon_sym_AT] = ACTIONS(2319), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_readonly] = ACTIONS(2321), - [anon_sym_get] = ACTIONS(2321), - [anon_sym_set] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2319), - [anon_sym_declare] = ACTIONS(2321), - [anon_sym_public] = ACTIONS(2321), - [anon_sym_private] = ACTIONS(2321), - [anon_sym_protected] = ACTIONS(2321), - [anon_sym_override] = ACTIONS(2321), - [anon_sym_module] = ACTIONS(2321), - [anon_sym_any] = ACTIONS(2321), - [anon_sym_number] = ACTIONS(2321), - [anon_sym_boolean] = ACTIONS(2321), - [anon_sym_string] = ACTIONS(2321), - [anon_sym_symbol] = ACTIONS(2321), - [anon_sym_object] = ACTIONS(2321), - [anon_sym_abstract] = ACTIONS(2321), - [anon_sym_extends] = ACTIONS(2321), - [anon_sym_interface] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), + [655] = { + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_identifier] = ACTIONS(2327), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2327), + [anon_sym_namespace] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2325), + [anon_sym_COMMA] = ACTIONS(2325), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_typeof] = ACTIONS(2327), + [anon_sym_import] = ACTIONS(2327), + [anon_sym_with] = ACTIONS(2327), + [anon_sym_var] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2325), + [anon_sym_else] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2325), + [anon_sym_RPAREN] = ACTIONS(2325), + [anon_sym_await] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_debugger] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_throw] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_COLON] = ACTIONS(2325), + [anon_sym_case] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_RBRACK] = ACTIONS(2325), + [sym_glimmer_opening_tag] = ACTIONS(2325), + [anon_sym_GT] = ACTIONS(2325), + [anon_sym_DQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_function] = ACTIONS(2327), + [anon_sym_EQ_GT] = ACTIONS(2325), + [anon_sym_new] = ACTIONS(2327), + [anon_sym_using] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2325), + [anon_sym_void] = ACTIONS(2327), + [anon_sym_delete] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2325), + [anon_sym_DASH_DASH] = ACTIONS(2325), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2325), + [sym_number] = ACTIONS(2325), + [sym_private_property_identifier] = ACTIONS(2325), + [sym_this] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_null] = ACTIONS(2327), + [sym_undefined] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_readonly] = ACTIONS(2327), + [anon_sym_get] = ACTIONS(2327), + [anon_sym_set] = ACTIONS(2327), + [anon_sym_QMARK] = ACTIONS(2325), + [anon_sym_declare] = ACTIONS(2327), + [anon_sym_public] = ACTIONS(2327), + [anon_sym_private] = ACTIONS(2327), + [anon_sym_protected] = ACTIONS(2327), + [anon_sym_override] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_any] = ACTIONS(2327), + [anon_sym_number] = ACTIONS(2327), + [anon_sym_boolean] = ACTIONS(2327), + [anon_sym_string] = ACTIONS(2327), + [anon_sym_symbol] = ACTIONS(2327), + [anon_sym_object] = ACTIONS(2327), + [anon_sym_abstract] = ACTIONS(2327), + [anon_sym_extends] = ACTIONS(2327), + [anon_sym_interface] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), [sym_html_comment] = ACTIONS(5), }, - [653] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_typeof] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_var] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_RPAREN] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_debugger] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_RBRACK] = ACTIONS(2323), - [sym_glimmer_opening_tag] = ACTIONS(2323), - [anon_sym_GT] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_SQUOTE] = ACTIONS(2323), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(2323), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_using] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2323), - [anon_sym_PIPE] = ACTIONS(2323), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_delete] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2323), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_number] = ACTIONS(2323), - [sym_private_property_identifier] = ACTIONS(2323), - [sym_this] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_null] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_get] = ACTIONS(2325), - [anon_sym_set] = ACTIONS(2325), - [anon_sym_QMARK] = ACTIONS(2323), - [anon_sym_declare] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_private] = ACTIONS(2325), - [anon_sym_protected] = ACTIONS(2325), - [anon_sym_override] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_any] = ACTIONS(2325), - [anon_sym_number] = ACTIONS(2325), - [anon_sym_boolean] = ACTIONS(2325), - [anon_sym_string] = ACTIONS(2325), - [anon_sym_symbol] = ACTIONS(2325), - [anon_sym_object] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_extends] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), + [656] = { + [ts_builtin_sym_end] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2331), + [anon_sym_export] = ACTIONS(2331), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2331), + [anon_sym_EQ] = ACTIONS(2331), + [anon_sym_namespace] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_COMMA] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2329), + [anon_sym_typeof] = ACTIONS(2331), + [anon_sym_import] = ACTIONS(2331), + [anon_sym_with] = ACTIONS(2331), + [anon_sym_var] = ACTIONS(2331), + [anon_sym_let] = ACTIONS(2331), + [anon_sym_const] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2329), + [anon_sym_else] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_switch] = ACTIONS(2331), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_RPAREN] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2331), + [anon_sym_do] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2331), + [anon_sym_continue] = ACTIONS(2331), + [anon_sym_debugger] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_throw] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2329), + [anon_sym_COLON] = ACTIONS(2329), + [anon_sym_case] = ACTIONS(2331), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_RBRACK] = ACTIONS(2329), + [sym_glimmer_opening_tag] = ACTIONS(2329), + [anon_sym_GT] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(2331), + [anon_sym_function] = ACTIONS(2331), + [anon_sym_EQ_GT] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2331), + [anon_sym_using] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_SLASH] = ACTIONS(2331), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_void] = ACTIONS(2331), + [anon_sym_delete] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2329), + [sym_number] = ACTIONS(2329), + [sym_private_property_identifier] = ACTIONS(2329), + [sym_this] = ACTIONS(2331), + [sym_super] = ACTIONS(2331), + [sym_true] = ACTIONS(2331), + [sym_false] = ACTIONS(2331), + [sym_null] = ACTIONS(2331), + [sym_undefined] = ACTIONS(2331), + [anon_sym_AT] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2331), + [anon_sym_readonly] = ACTIONS(2331), + [anon_sym_get] = ACTIONS(2331), + [anon_sym_set] = ACTIONS(2331), + [anon_sym_QMARK] = ACTIONS(2329), + [anon_sym_declare] = ACTIONS(2331), + [anon_sym_public] = ACTIONS(2331), + [anon_sym_private] = ACTIONS(2331), + [anon_sym_protected] = ACTIONS(2331), + [anon_sym_override] = ACTIONS(2331), + [anon_sym_module] = ACTIONS(2331), + [anon_sym_any] = ACTIONS(2331), + [anon_sym_number] = ACTIONS(2331), + [anon_sym_boolean] = ACTIONS(2331), + [anon_sym_string] = ACTIONS(2331), + [anon_sym_symbol] = ACTIONS(2331), + [anon_sym_object] = ACTIONS(2331), + [anon_sym_abstract] = ACTIONS(2331), + [anon_sym_extends] = ACTIONS(2331), + [anon_sym_interface] = ACTIONS(2331), + [anon_sym_enum] = ACTIONS(2331), [sym_html_comment] = ACTIONS(5), }, - [654] = { - [ts_builtin_sym_end] = ACTIONS(2327), - [sym_identifier] = ACTIONS(2329), - [anon_sym_export] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2329), - [anon_sym_type] = ACTIONS(2329), - [anon_sym_EQ] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_COMMA] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_typeof] = ACTIONS(2329), - [anon_sym_import] = ACTIONS(2329), - [anon_sym_with] = ACTIONS(2329), - [anon_sym_var] = ACTIONS(2329), - [anon_sym_let] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_debugger] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_COLON] = ACTIONS(2327), - [anon_sym_case] = ACTIONS(2329), - [anon_sym_yield] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_RBRACK] = ACTIONS(2327), - [sym_glimmer_opening_tag] = ACTIONS(2327), - [anon_sym_GT] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2327), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(2329), - [anon_sym_function] = ACTIONS(2329), - [anon_sym_EQ_GT] = ACTIONS(2327), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_using] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_SLASH] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(2329), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_void] = ACTIONS(2329), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_DASH_DASH] = ACTIONS(2327), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2327), - [sym_number] = ACTIONS(2327), - [sym_private_property_identifier] = ACTIONS(2327), - [sym_this] = ACTIONS(2329), - [sym_super] = ACTIONS(2329), - [sym_true] = ACTIONS(2329), - [sym_false] = ACTIONS(2329), - [sym_null] = ACTIONS(2329), - [sym_undefined] = ACTIONS(2329), - [anon_sym_AT] = ACTIONS(2327), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_readonly] = ACTIONS(2329), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(2327), - [anon_sym_declare] = ACTIONS(2329), - [anon_sym_public] = ACTIONS(2329), - [anon_sym_private] = ACTIONS(2329), - [anon_sym_protected] = ACTIONS(2329), - [anon_sym_override] = ACTIONS(2329), - [anon_sym_module] = ACTIONS(2329), - [anon_sym_any] = ACTIONS(2329), - [anon_sym_number] = ACTIONS(2329), - [anon_sym_boolean] = ACTIONS(2329), - [anon_sym_string] = ACTIONS(2329), - [anon_sym_symbol] = ACTIONS(2329), - [anon_sym_object] = ACTIONS(2329), - [anon_sym_abstract] = ACTIONS(2329), - [anon_sym_extends] = ACTIONS(2329), - [anon_sym_interface] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), + [657] = { + [ts_builtin_sym_end] = ACTIONS(2333), + [sym_identifier] = ACTIONS(2335), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_EQ] = ACTIONS(2335), + [anon_sym_namespace] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_typeof] = ACTIONS(2335), + [anon_sym_import] = ACTIONS(2335), + [anon_sym_with] = ACTIONS(2335), + [anon_sym_var] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2333), + [anon_sym_else] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_RPAREN] = ACTIONS(2333), + [anon_sym_await] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_debugger] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_throw] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_COLON] = ACTIONS(2333), + [anon_sym_case] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_RBRACK] = ACTIONS(2333), + [sym_glimmer_opening_tag] = ACTIONS(2333), + [anon_sym_GT] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(2333), + [anon_sym_SQUOTE] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_function] = ACTIONS(2335), + [anon_sym_EQ_GT] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_using] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_PIPE] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2333), + [anon_sym_void] = ACTIONS(2335), + [anon_sym_delete] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2333), + [sym_number] = ACTIONS(2333), + [sym_private_property_identifier] = ACTIONS(2333), + [sym_this] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_null] = ACTIONS(2335), + [sym_undefined] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_readonly] = ACTIONS(2335), + [anon_sym_get] = ACTIONS(2335), + [anon_sym_set] = ACTIONS(2335), + [anon_sym_QMARK] = ACTIONS(2333), + [anon_sym_declare] = ACTIONS(2335), + [anon_sym_public] = ACTIONS(2335), + [anon_sym_private] = ACTIONS(2335), + [anon_sym_protected] = ACTIONS(2335), + [anon_sym_override] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_any] = ACTIONS(2335), + [anon_sym_number] = ACTIONS(2335), + [anon_sym_boolean] = ACTIONS(2335), + [anon_sym_string] = ACTIONS(2335), + [anon_sym_symbol] = ACTIONS(2335), + [anon_sym_object] = ACTIONS(2335), + [anon_sym_abstract] = ACTIONS(2335), + [anon_sym_extends] = ACTIONS(2335), + [anon_sym_interface] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), [sym_html_comment] = ACTIONS(5), }, - [655] = { - [sym_declaration] = STATE(819), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), + [658] = { + [sym_declaration] = STATE(756), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2301), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_import] = ACTIONS(2231), [anon_sym_var] = ACTIONS(2233), @@ -97119,7 +100762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(881), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), @@ -97170,8 +100813,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2291), + [anon_sym_declare] = ACTIONS(2303), + [anon_sym_module] = ACTIONS(2337), [anon_sym_abstract] = ACTIONS(2255), [anon_sym_satisfies] = ACTIONS(162), [anon_sym_global] = ACTIONS(2293), @@ -97181,141 +100824,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [656] = { - [ts_builtin_sym_end] = ACTIONS(2331), - [sym_identifier] = ACTIONS(2333), - [anon_sym_export] = ACTIONS(2333), - [anon_sym_default] = ACTIONS(2333), - [anon_sym_type] = ACTIONS(2333), - [anon_sym_EQ] = ACTIONS(2333), - [anon_sym_namespace] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_COMMA] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_typeof] = ACTIONS(2333), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_with] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2333), - [anon_sym_let] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_else] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_switch] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_await] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_do] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_debugger] = ACTIONS(2333), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_throw] = ACTIONS(2333), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_case] = ACTIONS(2333), - [anon_sym_yield] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(2331), - [anon_sym_RBRACK] = ACTIONS(2331), - [sym_glimmer_opening_tag] = ACTIONS(2331), - [anon_sym_GT] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2331), - [anon_sym_SQUOTE] = ACTIONS(2331), - [anon_sym_class] = ACTIONS(2333), - [anon_sym_async] = ACTIONS(2333), - [anon_sym_function] = ACTIONS(2333), - [anon_sym_EQ_GT] = ACTIONS(2331), - [anon_sym_new] = ACTIONS(2333), - [anon_sym_using] = ACTIONS(2333), - [anon_sym_AMP] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_SLASH] = ACTIONS(2333), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_void] = ACTIONS(2333), - [anon_sym_delete] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2331), - [sym_number] = ACTIONS(2331), - [sym_private_property_identifier] = ACTIONS(2331), - [sym_this] = ACTIONS(2333), - [sym_super] = ACTIONS(2333), - [sym_true] = ACTIONS(2333), - [sym_false] = ACTIONS(2333), - [sym_null] = ACTIONS(2333), - [sym_undefined] = ACTIONS(2333), - [anon_sym_AT] = ACTIONS(2331), - [anon_sym_static] = ACTIONS(2333), - [anon_sym_readonly] = ACTIONS(2333), - [anon_sym_get] = ACTIONS(2333), - [anon_sym_set] = ACTIONS(2333), - [anon_sym_QMARK] = ACTIONS(2331), - [anon_sym_declare] = ACTIONS(2333), - [anon_sym_public] = ACTIONS(2333), - [anon_sym_private] = ACTIONS(2333), - [anon_sym_protected] = ACTIONS(2333), - [anon_sym_override] = ACTIONS(2333), - [anon_sym_module] = ACTIONS(2333), - [anon_sym_any] = ACTIONS(2333), - [anon_sym_number] = ACTIONS(2333), - [anon_sym_boolean] = ACTIONS(2333), - [anon_sym_string] = ACTIONS(2333), - [anon_sym_symbol] = ACTIONS(2333), - [anon_sym_object] = ACTIONS(2333), - [anon_sym_abstract] = ACTIONS(2333), - [anon_sym_extends] = ACTIONS(2333), - [anon_sym_interface] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), - [sym_html_comment] = ACTIONS(5), - }, - [657] = { - [sym_declaration] = STATE(819), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(859), + [659] = { + [aux_sym_object_repeat1] = STATE(5988), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(2001), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2001), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_import] = ACTIONS(2231), - [anon_sym_var] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_let] = ACTIONS(2001), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(2003), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_class] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2244), - [anon_sym_function] = ACTIONS(2246), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_SQUOTE] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2001), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2001), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -97344,7 +100879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2248), [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), [anon_sym_EQ_EQ_EQ] = ACTIONS(162), @@ -97352,120 +100887,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ_EQ] = ACTIONS(162), [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_instanceof] = ACTIONS(122), [anon_sym_PLUS_PLUS] = ACTIONS(162), [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2291), - [anon_sym_abstract] = ACTIONS(2255), - [anon_sym_satisfies] = ACTIONS(162), - [anon_sym_global] = ACTIONS(2293), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2259), + [sym_number] = ACTIONS(2003), + [sym_private_property_identifier] = ACTIONS(2003), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2001), + [anon_sym_get] = ACTIONS(2001), + [anon_sym_set] = ACTIONS(2001), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(2001), + [anon_sym_public] = ACTIONS(2001), + [anon_sym_private] = ACTIONS(2001), + [anon_sym_protected] = ACTIONS(2001), + [anon_sym_override] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_any] = ACTIONS(2001), + [anon_sym_number] = ACTIONS(2001), + [anon_sym_boolean] = ACTIONS(2001), + [anon_sym_string] = ACTIONS(2001), + [anon_sym_symbol] = ACTIONS(2001), + [anon_sym_object] = ACTIONS(2001), + [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [658] = { - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2337), - [anon_sym_export] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_type] = ACTIONS(2337), - [anon_sym_EQ] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_typeof] = ACTIONS(2337), - [anon_sym_import] = ACTIONS(2337), - [anon_sym_with] = ACTIONS(2337), - [anon_sym_var] = ACTIONS(2337), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_RPAREN] = ACTIONS(2335), - [anon_sym_await] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_debugger] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_COLON] = ACTIONS(2335), - [anon_sym_case] = ACTIONS(2337), - [anon_sym_yield] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_RBRACK] = ACTIONS(2335), - [sym_glimmer_opening_tag] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_async] = ACTIONS(2337), - [anon_sym_function] = ACTIONS(2337), - [anon_sym_EQ_GT] = ACTIONS(2335), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [anon_sym_AMP] = ACTIONS(2335), - [anon_sym_PIPE] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_void] = ACTIONS(2337), - [anon_sym_delete] = ACTIONS(2337), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2335), - [sym_number] = ACTIONS(2335), - [sym_private_property_identifier] = ACTIONS(2335), - [sym_this] = ACTIONS(2337), - [sym_super] = ACTIONS(2337), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_null] = ACTIONS(2337), - [sym_undefined] = ACTIONS(2337), - [anon_sym_AT] = ACTIONS(2335), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_readonly] = ACTIONS(2337), - [anon_sym_get] = ACTIONS(2337), - [anon_sym_set] = ACTIONS(2337), - [anon_sym_QMARK] = ACTIONS(2335), - [anon_sym_declare] = ACTIONS(2337), - [anon_sym_public] = ACTIONS(2337), - [anon_sym_private] = ACTIONS(2337), - [anon_sym_protected] = ACTIONS(2337), - [anon_sym_override] = ACTIONS(2337), - [anon_sym_module] = ACTIONS(2337), - [anon_sym_any] = ACTIONS(2337), - [anon_sym_number] = ACTIONS(2337), - [anon_sym_boolean] = ACTIONS(2337), - [anon_sym_string] = ACTIONS(2337), - [anon_sym_symbol] = ACTIONS(2337), - [anon_sym_object] = ACTIONS(2337), - [anon_sym_abstract] = ACTIONS(2337), - [anon_sym_extends] = ACTIONS(2337), - [anon_sym_interface] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), + [660] = { + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(1961), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_type] = ACTIONS(1961), + [anon_sym_EQ] = ACTIONS(696), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(1961), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1963), + [anon_sym_async] = ACTIONS(1961), + [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1961), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [sym_number] = ACTIONS(1963), + [sym_private_property_identifier] = ACTIONS(1963), + [anon_sym_static] = ACTIONS(1961), + [anon_sym_readonly] = ACTIONS(1961), + [anon_sym_get] = ACTIONS(1961), + [anon_sym_set] = ACTIONS(1961), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_declare] = ACTIONS(1961), + [anon_sym_public] = ACTIONS(1961), + [anon_sym_private] = ACTIONS(1961), + [anon_sym_protected] = ACTIONS(1961), + [anon_sym_override] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_any] = ACTIONS(1961), + [anon_sym_number] = ACTIONS(1961), + [anon_sym_boolean] = ACTIONS(1961), + [anon_sym_string] = ACTIONS(1961), + [anon_sym_symbol] = ACTIONS(1961), + [anon_sym_object] = ACTIONS(1961), + [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [659] = { - [aux_sym_object_repeat1] = STATE(4671), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [661] = { + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2001), [anon_sym_export] = ACTIONS(2001), [anon_sym_STAR] = ACTIONS(2001), @@ -97555,27 +101100,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [660] = { - [sym_declaration] = STATE(4369), - [sym_variable_declaration] = STATE(4336), - [sym_lexical_declaration] = STATE(4336), - [sym_class_declaration] = STATE(4336), - [sym_function_declaration] = STATE(4336), - [sym_generator_function_declaration] = STATE(4336), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(4336), - [sym_ambient_declaration] = STATE(4336), - [sym_abstract_class_declaration] = STATE(4336), - [sym_module] = STATE(4336), - [sym_internal_module] = STATE(4343), - [sym_import_alias] = STATE(4336), - [sym_interface_declaration] = STATE(4336), - [sym_enum_declaration] = STATE(4336), - [sym_type_alias_declaration] = STATE(4336), - [aux_sym_export_statement_repeat1] = STATE(4333), + [662] = { + [sym_declaration] = STATE(5213), + [sym_variable_declaration] = STATE(5245), + [sym_lexical_declaration] = STATE(5245), + [sym_class_declaration] = STATE(5245), + [sym_function_declaration] = STATE(5245), + [sym_generator_function_declaration] = STATE(5245), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(5245), + [sym_ambient_declaration] = STATE(5245), + [sym_abstract_class_declaration] = STATE(5245), + [sym_module] = STATE(5245), + [sym_internal_module] = STATE(5238), + [sym_import_alias] = STATE(5245), + [sym_interface_declaration] = STATE(5245), + [sym_enum_declaration] = STATE(5245), + [sym_type_alias_declaration] = STATE(5245), + [aux_sym_export_statement_repeat1] = STATE(5282), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2339), - [anon_sym_EQ] = ACTIONS(932), + [anon_sym_EQ] = ACTIONS(914), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2341), [anon_sym_import] = ACTIONS(2343), @@ -97592,7 +101137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(2351), [anon_sym_async] = ACTIONS(2353), [anon_sym_function] = ACTIONS(2355), - [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -97647,101 +101192,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [661] = { - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(1991), - [anon_sym_export] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1991), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1991), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1993), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(1991), - [anon_sym_EQ_GT] = ACTIONS(715), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1991), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2248), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [sym_number] = ACTIONS(1993), - [sym_private_property_identifier] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1991), - [anon_sym_readonly] = ACTIONS(1991), - [anon_sym_get] = ACTIONS(1991), - [anon_sym_set] = ACTIONS(1991), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(1991), - [anon_sym_public] = ACTIONS(1991), - [anon_sym_private] = ACTIONS(1991), - [anon_sym_protected] = ACTIONS(1991), - [anon_sym_override] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_any] = ACTIONS(1991), - [anon_sym_number] = ACTIONS(1991), - [anon_sym_boolean] = ACTIONS(1991), - [anon_sym_string] = ACTIONS(1991), - [anon_sym_symbol] = ACTIONS(1991), - [anon_sym_object] = ACTIONS(1991), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, - [662] = { - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [663] = { + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(2001), [anon_sym_export] = ACTIONS(2001), [anon_sym_STAR] = ACTIONS(2001), @@ -97750,7 +101203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2001), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_let] = ACTIONS(2001), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), @@ -97831,27 +101284,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [663] = { - [sym_declaration] = STATE(819), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), + [664] = { + [sym_declaration] = STATE(756), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(932), + [anon_sym_EQ] = ACTIONS(914), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2227), [anon_sym_import] = ACTIONS(2231), @@ -97868,7 +101321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(2242), [anon_sym_async] = ACTIONS(2244), [anon_sym_function] = ACTIONS(2246), - [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -97923,33 +101376,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [664] = { - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(1991), - [anon_sym_export] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1991), + [665] = { + [aux_sym_object_repeat1] = STATE(5988), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(1961), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_type] = ACTIONS(1961), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1991), + [anon_sym_namespace] = ACTIONS(1961), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), - [anon_sym_let] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_let] = ACTIONS(1961), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1993), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1963), + [anon_sym_async] = ACTIONS(1961), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1961), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -97991,160 +101444,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [sym_number] = ACTIONS(1993), - [sym_private_property_identifier] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1991), - [anon_sym_readonly] = ACTIONS(1991), - [anon_sym_get] = ACTIONS(1991), - [anon_sym_set] = ACTIONS(1991), + [sym_number] = ACTIONS(1963), + [sym_private_property_identifier] = ACTIONS(1963), + [anon_sym_static] = ACTIONS(1961), + [anon_sym_readonly] = ACTIONS(1961), + [anon_sym_get] = ACTIONS(1961), + [anon_sym_set] = ACTIONS(1961), [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(1991), - [anon_sym_public] = ACTIONS(1991), - [anon_sym_private] = ACTIONS(1991), - [anon_sym_protected] = ACTIONS(1991), - [anon_sym_override] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_any] = ACTIONS(1991), - [anon_sym_number] = ACTIONS(1991), - [anon_sym_boolean] = ACTIONS(1991), - [anon_sym_string] = ACTIONS(1991), - [anon_sym_symbol] = ACTIONS(1991), - [anon_sym_object] = ACTIONS(1991), + [anon_sym_declare] = ACTIONS(1961), + [anon_sym_public] = ACTIONS(1961), + [anon_sym_private] = ACTIONS(1961), + [anon_sym_protected] = ACTIONS(1961), + [anon_sym_override] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_any] = ACTIONS(1961), + [anon_sym_number] = ACTIONS(1961), + [anon_sym_boolean] = ACTIONS(1961), + [anon_sym_string] = ACTIONS(1961), + [anon_sym_symbol] = ACTIONS(1961), + [anon_sym_object] = ACTIONS(1961), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [665] = { - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(2001), - [anon_sym_export] = ACTIONS(2001), - [anon_sym_STAR] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(2001), - [anon_sym_EQ] = ACTIONS(696), + [666] = { + [sym_declaration] = STATE(756), + [sym_variable_declaration] = STATE(844), + [sym_lexical_declaration] = STATE(844), + [sym_class_declaration] = STATE(844), + [sym_function_declaration] = STATE(844), + [sym_generator_function_declaration] = STATE(844), + [sym_decorator] = STATE(3068), + [sym_function_signature] = STATE(844), + [sym_ambient_declaration] = STATE(844), + [sym_abstract_class_declaration] = STATE(844), + [sym_module] = STATE(844), + [sym_internal_module] = STATE(855), + [sym_import_alias] = STATE(844), + [sym_interface_declaration] = STATE(844), + [sym_enum_declaration] = STATE(844), + [sym_type_alias_declaration] = STATE(844), + [aux_sym_export_statement_repeat1] = STATE(5203), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_EQ] = ACTIONS(914), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2001), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), - [anon_sym_let] = ACTIONS(2001), + [anon_sym_namespace] = ACTIONS(2301), + [anon_sym_import] = ACTIONS(2231), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2237), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2003), - [anon_sym_SQUOTE] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2001), - [anon_sym_EQ_GT] = ACTIONS(715), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2248), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [sym_number] = ACTIONS(2003), - [sym_private_property_identifier] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2001), - [anon_sym_get] = ACTIONS(2001), - [anon_sym_set] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(2001), - [anon_sym_public] = ACTIONS(2001), - [anon_sym_private] = ACTIONS(2001), - [anon_sym_protected] = ACTIONS(2001), - [anon_sym_override] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_any] = ACTIONS(2001), - [anon_sym_number] = ACTIONS(2001), - [anon_sym_boolean] = ACTIONS(2001), - [anon_sym_string] = ACTIONS(2001), - [anon_sym_symbol] = ACTIONS(2001), - [anon_sym_object] = ACTIONS(2001), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, - [666] = { - [sym_declaration] = STATE(819), - [sym_variable_declaration] = STATE(861), - [sym_lexical_declaration] = STATE(861), - [sym_class_declaration] = STATE(861), - [sym_function_declaration] = STATE(861), - [sym_generator_function_declaration] = STATE(861), - [sym_decorator] = STATE(1244), - [sym_function_signature] = STATE(861), - [sym_ambient_declaration] = STATE(861), - [sym_abstract_class_declaration] = STATE(861), - [sym_module] = STATE(861), - [sym_internal_module] = STATE(860), - [sym_import_alias] = STATE(861), - [sym_interface_declaration] = STATE(861), - [sym_enum_declaration] = STATE(861), - [sym_type_alias_declaration] = STATE(861), - [aux_sym_export_statement_repeat1] = STATE(4270), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2301), - [anon_sym_import] = ACTIONS(2231), - [anon_sym_var] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_class] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2244), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_class] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2246), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -98189,7 +101550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), [anon_sym_declare] = ACTIONS(2303), - [anon_sym_module] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2337), [anon_sym_abstract] = ACTIONS(2255), [anon_sym_satisfies] = ACTIONS(162), [anon_sym_global] = ACTIONS(2293), @@ -98200,32 +101561,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [667] = { - [aux_sym_object_repeat1] = STATE(4671), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(1991), - [anon_sym_export] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1991), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(1961), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_type] = ACTIONS(1961), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1991), + [anon_sym_namespace] = ACTIONS(1961), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_let] = ACTIONS(1961), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1993), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1963), + [anon_sym_async] = ACTIONS(1961), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1961), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -98267,34 +101628,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [sym_number] = ACTIONS(1993), - [sym_private_property_identifier] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1991), - [anon_sym_readonly] = ACTIONS(1991), - [anon_sym_get] = ACTIONS(1991), - [anon_sym_set] = ACTIONS(1991), + [sym_number] = ACTIONS(1963), + [sym_private_property_identifier] = ACTIONS(1963), + [anon_sym_static] = ACTIONS(1961), + [anon_sym_readonly] = ACTIONS(1961), + [anon_sym_get] = ACTIONS(1961), + [anon_sym_set] = ACTIONS(1961), [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(1991), - [anon_sym_public] = ACTIONS(1991), - [anon_sym_private] = ACTIONS(1991), - [anon_sym_protected] = ACTIONS(1991), - [anon_sym_override] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_any] = ACTIONS(1991), - [anon_sym_number] = ACTIONS(1991), - [anon_sym_boolean] = ACTIONS(1991), - [anon_sym_string] = ACTIONS(1991), - [anon_sym_symbol] = ACTIONS(1991), - [anon_sym_object] = ACTIONS(1991), + [anon_sym_declare] = ACTIONS(1961), + [anon_sym_public] = ACTIONS(1961), + [anon_sym_private] = ACTIONS(1961), + [anon_sym_protected] = ACTIONS(1961), + [anon_sym_override] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_any] = ACTIONS(1961), + [anon_sym_number] = ACTIONS(1961), + [anon_sym_boolean] = ACTIONS(1961), + [anon_sym_string] = ACTIONS(1961), + [anon_sym_symbol] = ACTIONS(1961), + [anon_sym_object] = ACTIONS(1961), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [668] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2369), [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), @@ -98382,9 +101743,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [669] = { - [sym__call_signature] = STATE(5679), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [sym__call_signature] = STATE(7495), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2381), [anon_sym_export] = ACTIONS(2383), [anon_sym_STAR] = ACTIONS(122), @@ -98472,26 +101833,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [670] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2369), [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_COMMA] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(853), [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(853), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(847), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_RBRACK] = ACTIONS(853), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2371), @@ -98562,14 +101923,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [671] = { - [sym__call_signature] = STATE(5679), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [sym__call_signature] = STATE(7495), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2381), [anon_sym_export] = ACTIONS(2383), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2383), [anon_sym_COMMA] = ACTIONS(162), @@ -98651,14 +102012,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [672] = { - [sym__call_signature] = STATE(5679), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [sym__call_signature] = STATE(7495), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2381), [anon_sym_export] = ACTIONS(2383), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2383), [anon_sym_COMMA] = ACTIONS(162), @@ -98740,29 +102101,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [673] = { - [sym__call_signature] = STATE(5837), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [sym__call_signature] = STATE(7488), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2385), [anon_sym_export] = ACTIONS(2387), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2387), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_let] = ACTIONS(2387), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(883), + [anon_sym_of] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2387), + [anon_sym_function] = ACTIONS(2389), + [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2387), + [anon_sym_readonly] = ACTIONS(2387), + [anon_sym_get] = ACTIONS(2387), + [anon_sym_set] = ACTIONS(2387), + [anon_sym_declare] = ACTIONS(2387), + [anon_sym_public] = ACTIONS(2387), + [anon_sym_private] = ACTIONS(2387), + [anon_sym_protected] = ACTIONS(2387), + [anon_sym_override] = ACTIONS(2387), + [anon_sym_module] = ACTIONS(2387), + [anon_sym_any] = ACTIONS(2387), + [anon_sym_number] = ACTIONS(2387), + [anon_sym_boolean] = ACTIONS(2387), + [anon_sym_string] = ACTIONS(2387), + [anon_sym_symbol] = ACTIONS(2387), + [anon_sym_object] = ACTIONS(2387), + [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [674] = { + [sym__call_signature] = STATE(7482), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2391), + [anon_sym_export] = ACTIONS(2393), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_EQ] = ACTIONS(869), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2393), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2387), + [anon_sym_async] = ACTIONS(2393), [anon_sym_function] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_EQ_GT] = ACTIONS(875), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2393), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_readonly] = ACTIONS(2393), + [anon_sym_get] = ACTIONS(2393), + [anon_sym_set] = ACTIONS(2393), + [anon_sym_declare] = ACTIONS(2393), + [anon_sym_public] = ACTIONS(2393), + [anon_sym_private] = ACTIONS(2393), + [anon_sym_protected] = ACTIONS(2393), + [anon_sym_override] = ACTIONS(2393), + [anon_sym_module] = ACTIONS(2393), + [anon_sym_any] = ACTIONS(2393), + [anon_sym_number] = ACTIONS(2393), + [anon_sym_boolean] = ACTIONS(2393), + [anon_sym_string] = ACTIONS(2393), + [anon_sym_symbol] = ACTIONS(2393), + [anon_sym_object] = ACTIONS(2393), + [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [675] = { + [sym__call_signature] = STATE(7488), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2385), + [anon_sym_export] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2387), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2387), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2387), + [anon_sym_function] = ACTIONS(2279), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2387), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -98827,10 +102364,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [674] = { - [sym__call_signature] = STATE(5679), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [676] = { + [sym__call_signature] = STATE(7495), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2381), [anon_sym_export] = ACTIONS(2383), [anon_sym_STAR] = ACTIONS(122), @@ -98838,15 +102375,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_COMMA] = ACTIONS(888), - [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_COMMA] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), [anon_sym_let] = ACTIONS(2383), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(847), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_RBRACK] = ACTIONS(905), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2383), @@ -98915,32 +102452,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [675] = { - [sym__call_signature] = STATE(5703), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2391), - [anon_sym_export] = ACTIONS(2393), + [677] = { + [sym__call_signature] = STATE(7488), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2385), + [anon_sym_export] = ACTIONS(2387), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2393), + [anon_sym_type] = ACTIONS(2387), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2393), + [anon_sym_namespace] = ACTIONS(2387), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2387), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_function] = ACTIONS(2279), + [anon_sym_async] = ACTIONS(2387), + [anon_sym_function] = ACTIONS(2389), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2387), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -98982,51 +102519,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_readonly] = ACTIONS(2393), - [anon_sym_get] = ACTIONS(2393), - [anon_sym_set] = ACTIONS(2393), - [anon_sym_declare] = ACTIONS(2393), - [anon_sym_public] = ACTIONS(2393), - [anon_sym_private] = ACTIONS(2393), - [anon_sym_protected] = ACTIONS(2393), - [anon_sym_override] = ACTIONS(2393), - [anon_sym_module] = ACTIONS(2393), - [anon_sym_any] = ACTIONS(2393), - [anon_sym_number] = ACTIONS(2393), - [anon_sym_boolean] = ACTIONS(2393), - [anon_sym_string] = ACTIONS(2393), - [anon_sym_symbol] = ACTIONS(2393), - [anon_sym_object] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2387), + [anon_sym_readonly] = ACTIONS(2387), + [anon_sym_get] = ACTIONS(2387), + [anon_sym_set] = ACTIONS(2387), + [anon_sym_declare] = ACTIONS(2387), + [anon_sym_public] = ACTIONS(2387), + [anon_sym_private] = ACTIONS(2387), + [anon_sym_protected] = ACTIONS(2387), + [anon_sym_override] = ACTIONS(2387), + [anon_sym_module] = ACTIONS(2387), + [anon_sym_any] = ACTIONS(2387), + [anon_sym_number] = ACTIONS(2387), + [anon_sym_boolean] = ACTIONS(2387), + [anon_sym_string] = ACTIONS(2387), + [anon_sym_symbol] = ACTIONS(2387), + [anon_sym_object] = ACTIONS(2387), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [676] = { - [sym__call_signature] = STATE(5703), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [678] = { + [sym__call_signature] = STATE(7488), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2385), + [anon_sym_export] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2387), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2387), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2387), + [anon_sym_function] = ACTIONS(2395), + [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2387), + [anon_sym_readonly] = ACTIONS(2387), + [anon_sym_get] = ACTIONS(2387), + [anon_sym_set] = ACTIONS(2387), + [anon_sym_declare] = ACTIONS(2387), + [anon_sym_public] = ACTIONS(2387), + [anon_sym_private] = ACTIONS(2387), + [anon_sym_protected] = ACTIONS(2387), + [anon_sym_override] = ACTIONS(2387), + [anon_sym_module] = ACTIONS(2387), + [anon_sym_any] = ACTIONS(2387), + [anon_sym_number] = ACTIONS(2387), + [anon_sym_boolean] = ACTIONS(2387), + [anon_sym_string] = ACTIONS(2387), + [anon_sym_symbol] = ACTIONS(2387), + [anon_sym_object] = ACTIONS(2387), + [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [679] = { + [sym__call_signature] = STATE(7482), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2391), [anon_sym_export] = ACTIONS(2393), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2393), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2393), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_let] = ACTIONS(2393), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(861), - [anon_sym_of] = ACTIONS(864), + [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2393), [anon_sym_function] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_EQ_GT] = ACTIONS(875), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2393), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -99091,30 +102716,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [677] = { - [sym__call_signature] = STATE(5837), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [680] = { + [sym__call_signature] = STATE(7488), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2385), [anon_sym_export] = ACTIONS(2387), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2387), [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_let] = ACTIONS(2387), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2387), [anon_sym_function] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2387), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -99179,32 +102804,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [678] = { - [sym__call_signature] = STATE(5703), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2391), - [anon_sym_export] = ACTIONS(2393), + [681] = { + [sym__call_signature] = STATE(7488), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2385), + [anon_sym_export] = ACTIONS(2387), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2393), + [anon_sym_type] = ACTIONS(2387), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2393), + [anon_sym_namespace] = ACTIONS(2387), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2387), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(881), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_function] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2387), + [anon_sym_function] = ACTIONS(2395), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2387), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -99246,53 +102871,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_readonly] = ACTIONS(2393), - [anon_sym_get] = ACTIONS(2393), - [anon_sym_set] = ACTIONS(2393), - [anon_sym_declare] = ACTIONS(2393), - [anon_sym_public] = ACTIONS(2393), - [anon_sym_private] = ACTIONS(2393), - [anon_sym_protected] = ACTIONS(2393), - [anon_sym_override] = ACTIONS(2393), - [anon_sym_module] = ACTIONS(2393), - [anon_sym_any] = ACTIONS(2393), - [anon_sym_number] = ACTIONS(2393), - [anon_sym_boolean] = ACTIONS(2393), - [anon_sym_string] = ACTIONS(2393), - [anon_sym_symbol] = ACTIONS(2393), - [anon_sym_object] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2387), + [anon_sym_readonly] = ACTIONS(2387), + [anon_sym_get] = ACTIONS(2387), + [anon_sym_set] = ACTIONS(2387), + [anon_sym_declare] = ACTIONS(2387), + [anon_sym_public] = ACTIONS(2387), + [anon_sym_private] = ACTIONS(2387), + [anon_sym_protected] = ACTIONS(2387), + [anon_sym_override] = ACTIONS(2387), + [anon_sym_module] = ACTIONS(2387), + [anon_sym_any] = ACTIONS(2387), + [anon_sym_number] = ACTIONS(2387), + [anon_sym_boolean] = ACTIONS(2387), + [anon_sym_string] = ACTIONS(2387), + [anon_sym_symbol] = ACTIONS(2387), + [anon_sym_object] = ACTIONS(2387), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [679] = { - [sym__call_signature] = STATE(5703), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2391), - [anon_sym_export] = ACTIONS(2393), + [682] = { + [ts_builtin_sym_end] = ACTIONS(1670), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_COMMA] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym_import] = ACTIONS(1672), + [anon_sym_with] = ACTIONS(1672), + [anon_sym_var] = ACTIONS(1672), + [anon_sym_let] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_else] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_debugger] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_catch] = ACTIONS(1672), + [anon_sym_finally] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_glimmer_opening_tag] = ACTIONS(1670), + [anon_sym_DQUOTE] = ACTIONS(1670), + [anon_sym_SQUOTE] = ACTIONS(1670), + [anon_sym_class] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_function] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(1672), + [anon_sym_using] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1672), + [anon_sym_delete] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1670), + [anon_sym_DASH_DASH] = ACTIONS(1670), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1670), + [sym_number] = ACTIONS(1670), + [sym_private_property_identifier] = ACTIONS(1670), + [sym_this] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_undefined] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_readonly] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1672), + [anon_sym_set] = ACTIONS(1672), + [anon_sym_declare] = ACTIONS(1672), + [anon_sym_public] = ACTIONS(1672), + [anon_sym_private] = ACTIONS(1672), + [anon_sym_protected] = ACTIONS(1672), + [anon_sym_override] = ACTIONS(1672), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_any] = ACTIONS(1672), + [anon_sym_number] = ACTIONS(1672), + [anon_sym_boolean] = ACTIONS(1672), + [anon_sym_string] = ACTIONS(1672), + [anon_sym_symbol] = ACTIONS(1672), + [anon_sym_object] = ACTIONS(1672), + [anon_sym_abstract] = ACTIONS(1672), + [anon_sym_interface] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1680), + [sym_html_comment] = ACTIONS(5), + }, + [683] = { + [sym__call_signature] = STATE(7227), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2399), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(892), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2393), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_let] = ACTIONS(2399), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(866), + [anon_sym_COLON] = ACTIONS(897), [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_function] = ACTIONS(2395), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2399), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -99334,53 +103046,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_readonly] = ACTIONS(2393), - [anon_sym_get] = ACTIONS(2393), - [anon_sym_set] = ACTIONS(2393), - [anon_sym_declare] = ACTIONS(2393), - [anon_sym_public] = ACTIONS(2393), - [anon_sym_private] = ACTIONS(2393), - [anon_sym_protected] = ACTIONS(2393), - [anon_sym_override] = ACTIONS(2393), - [anon_sym_module] = ACTIONS(2393), - [anon_sym_any] = ACTIONS(2393), - [anon_sym_number] = ACTIONS(2393), - [anon_sym_boolean] = ACTIONS(2393), - [anon_sym_string] = ACTIONS(2393), - [anon_sym_symbol] = ACTIONS(2393), - [anon_sym_object] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_readonly] = ACTIONS(2399), + [anon_sym_get] = ACTIONS(2399), + [anon_sym_set] = ACTIONS(2399), + [anon_sym_declare] = ACTIONS(2399), + [anon_sym_public] = ACTIONS(2399), + [anon_sym_private] = ACTIONS(2399), + [anon_sym_protected] = ACTIONS(2399), + [anon_sym_override] = ACTIONS(2399), + [anon_sym_module] = ACTIONS(2399), + [anon_sym_any] = ACTIONS(2399), + [anon_sym_number] = ACTIONS(2399), + [anon_sym_boolean] = ACTIONS(2399), + [anon_sym_string] = ACTIONS(2399), + [anon_sym_symbol] = ACTIONS(2399), + [anon_sym_object] = ACTIONS(2399), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [680] = { - [sym__call_signature] = STATE(5703), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2391), - [anon_sym_export] = ACTIONS(2393), + [684] = { + [sym_catch_clause] = STATE(708), + [sym_finally_clause] = STATE(792), + [ts_builtin_sym_end] = ACTIONS(2401), + [sym_identifier] = ACTIONS(2403), + [anon_sym_export] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_typeof] = ACTIONS(2403), + [anon_sym_import] = ACTIONS(2403), + [anon_sym_with] = ACTIONS(2403), + [anon_sym_var] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_await] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_debugger] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_throw] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_case] = ACTIONS(2403), + [anon_sym_catch] = ACTIONS(2405), + [anon_sym_finally] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2401), + [sym_glimmer_opening_tag] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_class] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_function] = ACTIONS(2403), + [anon_sym_new] = ACTIONS(2403), + [anon_sym_using] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_SLASH] = ACTIONS(2403), + [anon_sym_LT] = ACTIONS(2403), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_void] = ACTIONS(2403), + [anon_sym_delete] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2401), + [sym_number] = ACTIONS(2401), + [sym_private_property_identifier] = ACTIONS(2401), + [sym_this] = ACTIONS(2403), + [sym_super] = ACTIONS(2403), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), + [sym_undefined] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_readonly] = ACTIONS(2403), + [anon_sym_get] = ACTIONS(2403), + [anon_sym_set] = ACTIONS(2403), + [anon_sym_declare] = ACTIONS(2403), + [anon_sym_public] = ACTIONS(2403), + [anon_sym_private] = ACTIONS(2403), + [anon_sym_protected] = ACTIONS(2403), + [anon_sym_override] = ACTIONS(2403), + [anon_sym_module] = ACTIONS(2403), + [anon_sym_any] = ACTIONS(2403), + [anon_sym_number] = ACTIONS(2403), + [anon_sym_boolean] = ACTIONS(2403), + [anon_sym_string] = ACTIONS(2403), + [anon_sym_symbol] = ACTIONS(2403), + [anon_sym_object] = ACTIONS(2403), + [anon_sym_abstract] = ACTIONS(2403), + [anon_sym_interface] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [sym_html_comment] = ACTIONS(5), + }, + [685] = { + [ts_builtin_sym_end] = ACTIONS(1787), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1789), + [anon_sym_default] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_namespace] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(1789), + [anon_sym_with] = ACTIONS(1789), + [anon_sym_var] = ACTIONS(1789), + [anon_sym_let] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_switch] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_while] = ACTIONS(1789), + [anon_sym_do] = ACTIONS(1789), + [anon_sym_try] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_debugger] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_throw] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1789), + [anon_sym_catch] = ACTIONS(1789), + [anon_sym_finally] = ACTIONS(1789), + [anon_sym_yield] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1787), + [sym_glimmer_opening_tag] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1789), + [anon_sym_async] = ACTIONS(1789), + [anon_sym_function] = ACTIONS(1789), + [anon_sym_new] = ACTIONS(1789), + [anon_sym_using] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1787), + [sym_number] = ACTIONS(1787), + [sym_private_property_identifier] = ACTIONS(1787), + [sym_this] = ACTIONS(1789), + [sym_super] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_null] = ACTIONS(1789), + [sym_undefined] = ACTIONS(1789), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1789), + [anon_sym_readonly] = ACTIONS(1789), + [anon_sym_get] = ACTIONS(1789), + [anon_sym_set] = ACTIONS(1789), + [anon_sym_declare] = ACTIONS(1789), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_override] = ACTIONS(1789), + [anon_sym_module] = ACTIONS(1789), + [anon_sym_any] = ACTIONS(1789), + [anon_sym_number] = ACTIONS(1789), + [anon_sym_boolean] = ACTIONS(1789), + [anon_sym_string] = ACTIONS(1789), + [anon_sym_symbol] = ACTIONS(1789), + [anon_sym_object] = ACTIONS(1789), + [anon_sym_abstract] = ACTIONS(1789), + [anon_sym_interface] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [sym__automatic_semicolon] = ACTIONS(2409), + [sym_html_comment] = ACTIONS(5), + }, + [686] = { + [sym__call_signature] = STATE(7398), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(942), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2393), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(162), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_function] = ACTIONS(2395), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(948), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2413), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -99422,53 +103306,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_readonly] = ACTIONS(2393), - [anon_sym_get] = ACTIONS(2393), - [anon_sym_set] = ACTIONS(2393), - [anon_sym_declare] = ACTIONS(2393), - [anon_sym_public] = ACTIONS(2393), - [anon_sym_private] = ACTIONS(2393), - [anon_sym_protected] = ACTIONS(2393), - [anon_sym_override] = ACTIONS(2393), - [anon_sym_module] = ACTIONS(2393), - [anon_sym_any] = ACTIONS(2393), - [anon_sym_number] = ACTIONS(2393), - [anon_sym_boolean] = ACTIONS(2393), - [anon_sym_string] = ACTIONS(2393), - [anon_sym_symbol] = ACTIONS(2393), - [anon_sym_object] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [681] = { - [sym__call_signature] = STATE(5703), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2391), - [anon_sym_export] = ACTIONS(2393), + [687] = { + [sym__call_signature] = STATE(7398), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2393), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(162), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_function] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(948), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2413), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -99510,51 +103393,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_readonly] = ACTIONS(2393), - [anon_sym_get] = ACTIONS(2393), - [anon_sym_set] = ACTIONS(2393), - [anon_sym_declare] = ACTIONS(2393), - [anon_sym_public] = ACTIONS(2393), - [anon_sym_private] = ACTIONS(2393), - [anon_sym_protected] = ACTIONS(2393), - [anon_sym_override] = ACTIONS(2393), - [anon_sym_module] = ACTIONS(2393), - [anon_sym_any] = ACTIONS(2393), - [anon_sym_number] = ACTIONS(2393), - [anon_sym_boolean] = ACTIONS(2393), - [anon_sym_string] = ACTIONS(2393), - [anon_sym_symbol] = ACTIONS(2393), - [anon_sym_object] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), + [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [682] = { - [sym__call_signature] = STATE(5772), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [688] = { + [sym__call_signature] = STATE(7227), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2397), [anon_sym_export] = ACTIONS(2399), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(895), + [anon_sym_EQ] = ACTIONS(936), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(227), [anon_sym_let] = ACTIONS(2399), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(900), + [anon_sym_COLON] = ACTIONS(897), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2399), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2399), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -99618,118 +103500,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [683] = { - [ts_builtin_sym_end] = ACTIONS(1720), - [sym_identifier] = ACTIONS(1722), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym_import] = ACTIONS(1722), - [anon_sym_with] = ACTIONS(1722), - [anon_sym_var] = ACTIONS(1722), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1720), - [anon_sym_else] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_await] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_try] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_debugger] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_throw] = ACTIONS(1722), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_catch] = ACTIONS(1722), - [anon_sym_finally] = ACTIONS(1722), - [anon_sym_yield] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [sym_glimmer_opening_tag] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_class] = ACTIONS(1722), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_function] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_using] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1720), - [anon_sym_void] = ACTIONS(1722), - [anon_sym_delete] = ACTIONS(1722), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1720), - [sym_number] = ACTIONS(1720), - [sym_private_property_identifier] = ACTIONS(1720), - [sym_this] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_undefined] = ACTIONS(1722), - [anon_sym_AT] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_protected] = ACTIONS(1722), - [anon_sym_override] = ACTIONS(1722), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1722), - [anon_sym_number] = ACTIONS(1722), - [anon_sym_boolean] = ACTIONS(1722), - [anon_sym_string] = ACTIONS(1722), - [anon_sym_symbol] = ACTIONS(1722), - [anon_sym_object] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_interface] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [sym__automatic_semicolon] = ACTIONS(1730), - [sym_html_comment] = ACTIONS(5), - }, - [684] = { - [sym__call_signature] = STATE(5753), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2403), + [689] = { + [sym__call_signature] = STATE(7227), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2399), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(892), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2403), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_let] = ACTIONS(2399), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2399), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(918), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2403), + [anon_sym_new] = ACTIONS(2399), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -99771,311 +103566,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_declare] = ACTIONS(2403), - [anon_sym_public] = ACTIONS(2403), - [anon_sym_private] = ACTIONS(2403), - [anon_sym_protected] = ACTIONS(2403), - [anon_sym_override] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_any] = ACTIONS(2403), - [anon_sym_number] = ACTIONS(2403), - [anon_sym_boolean] = ACTIONS(2403), - [anon_sym_string] = ACTIONS(2403), - [anon_sym_symbol] = ACTIONS(2403), - [anon_sym_object] = ACTIONS(2403), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, - [685] = { - [sym__call_signature] = STATE(5753), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(918), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2378), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_declare] = ACTIONS(2403), - [anon_sym_public] = ACTIONS(2403), - [anon_sym_private] = ACTIONS(2403), - [anon_sym_protected] = ACTIONS(2403), - [anon_sym_override] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_any] = ACTIONS(2403), - [anon_sym_number] = ACTIONS(2403), - [anon_sym_boolean] = ACTIONS(2403), - [anon_sym_string] = ACTIONS(2403), - [anon_sym_symbol] = ACTIONS(2403), - [anon_sym_object] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_readonly] = ACTIONS(2399), + [anon_sym_get] = ACTIONS(2399), + [anon_sym_set] = ACTIONS(2399), + [anon_sym_declare] = ACTIONS(2399), + [anon_sym_public] = ACTIONS(2399), + [anon_sym_private] = ACTIONS(2399), + [anon_sym_protected] = ACTIONS(2399), + [anon_sym_override] = ACTIONS(2399), + [anon_sym_module] = ACTIONS(2399), + [anon_sym_any] = ACTIONS(2399), + [anon_sym_number] = ACTIONS(2399), + [anon_sym_boolean] = ACTIONS(2399), + [anon_sym_string] = ACTIONS(2399), + [anon_sym_symbol] = ACTIONS(2399), + [anon_sym_object] = ACTIONS(2399), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [686] = { - [sym_catch_clause] = STATE(706), - [sym_finally_clause] = STATE(826), - [ts_builtin_sym_end] = ACTIONS(2405), - [sym_identifier] = ACTIONS(2407), - [anon_sym_export] = ACTIONS(2407), - [anon_sym_default] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2407), - [anon_sym_namespace] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_typeof] = ACTIONS(2407), - [anon_sym_import] = ACTIONS(2407), - [anon_sym_with] = ACTIONS(2407), - [anon_sym_var] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_switch] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_await] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [anon_sym_do] = ACTIONS(2407), - [anon_sym_try] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_debugger] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_throw] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2407), - [anon_sym_catch] = ACTIONS(2409), - [anon_sym_finally] = ACTIONS(2411), - [anon_sym_yield] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [sym_glimmer_opening_tag] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [anon_sym_SQUOTE] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2407), - [anon_sym_async] = ACTIONS(2407), - [anon_sym_function] = ACTIONS(2407), - [anon_sym_new] = ACTIONS(2407), - [anon_sym_using] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_LT] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_void] = ACTIONS(2407), - [anon_sym_delete] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2405), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2405), - [sym_number] = ACTIONS(2405), - [sym_private_property_identifier] = ACTIONS(2405), - [sym_this] = ACTIONS(2407), - [sym_super] = ACTIONS(2407), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [sym_null] = ACTIONS(2407), - [sym_undefined] = ACTIONS(2407), - [anon_sym_AT] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2407), - [anon_sym_readonly] = ACTIONS(2407), - [anon_sym_get] = ACTIONS(2407), - [anon_sym_set] = ACTIONS(2407), - [anon_sym_declare] = ACTIONS(2407), - [anon_sym_public] = ACTIONS(2407), - [anon_sym_private] = ACTIONS(2407), - [anon_sym_protected] = ACTIONS(2407), - [anon_sym_override] = ACTIONS(2407), - [anon_sym_module] = ACTIONS(2407), - [anon_sym_any] = ACTIONS(2407), - [anon_sym_number] = ACTIONS(2407), - [anon_sym_boolean] = ACTIONS(2407), - [anon_sym_string] = ACTIONS(2407), - [anon_sym_symbol] = ACTIONS(2407), - [anon_sym_object] = ACTIONS(2407), - [anon_sym_abstract] = ACTIONS(2407), - [anon_sym_interface] = ACTIONS(2407), - [anon_sym_enum] = ACTIONS(2407), - [sym_html_comment] = ACTIONS(5), - }, - [687] = { - [ts_builtin_sym_end] = ACTIONS(1871), - [sym_identifier] = ACTIONS(1873), - [anon_sym_export] = ACTIONS(1873), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_type] = ACTIONS(1873), - [anon_sym_namespace] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_typeof] = ACTIONS(1873), - [anon_sym_import] = ACTIONS(1873), - [anon_sym_with] = ACTIONS(1873), - [anon_sym_var] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_switch] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_do] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_debugger] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_throw] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1873), - [anon_sym_catch] = ACTIONS(1873), - [anon_sym_finally] = ACTIONS(1873), - [anon_sym_yield] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1871), - [sym_glimmer_opening_tag] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_SQUOTE] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1873), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1873), - [anon_sym_new] = ACTIONS(1873), - [anon_sym_using] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_SLASH] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_void] = ACTIONS(1873), - [anon_sym_delete] = ACTIONS(1873), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1871), - [sym_number] = ACTIONS(1871), - [sym_private_property_identifier] = ACTIONS(1871), - [sym_this] = ACTIONS(1873), - [sym_super] = ACTIONS(1873), - [sym_true] = ACTIONS(1873), - [sym_false] = ACTIONS(1873), - [sym_null] = ACTIONS(1873), - [sym_undefined] = ACTIONS(1873), - [anon_sym_AT] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_readonly] = ACTIONS(1873), - [anon_sym_get] = ACTIONS(1873), - [anon_sym_set] = ACTIONS(1873), - [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_override] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1873), - [anon_sym_any] = ACTIONS(1873), - [anon_sym_number] = ACTIONS(1873), - [anon_sym_boolean] = ACTIONS(1873), - [anon_sym_string] = ACTIONS(1873), - [anon_sym_symbol] = ACTIONS(1873), - [anon_sym_object] = ACTIONS(1873), - [anon_sym_abstract] = ACTIONS(1873), - [anon_sym_interface] = ACTIONS(1873), - [anon_sym_enum] = ACTIONS(1873), - [sym__automatic_semicolon] = ACTIONS(2413), - [sym_html_comment] = ACTIONS(5), - }, - [688] = { - [sym__call_signature] = STATE(5566), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [690] = { + [sym__call_signature] = STATE(7179), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2415), [anon_sym_export] = ACTIONS(2417), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2417), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(914), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_let] = ACTIONS(2417), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2417), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(952), + [anon_sym_function] = ACTIONS(2389), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2417), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -100136,279 +103668,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2417), [anon_sym_object] = ACTIONS(2417), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [689] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_export] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_namespace] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_COMMA] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_typeof] = ACTIONS(1753), - [anon_sym_import] = ACTIONS(1753), - [anon_sym_with] = ACTIONS(1753), - [anon_sym_var] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_await] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_debugger] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [sym_glimmer_opening_tag] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_function] = ACTIONS(1753), - [anon_sym_new] = ACTIONS(1753), - [anon_sym_using] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_void] = ACTIONS(1753), - [anon_sym_delete] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1751), - [sym_number] = ACTIONS(1751), - [sym_private_property_identifier] = ACTIONS(1751), - [sym_this] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_null] = ACTIONS(1753), - [sym_undefined] = ACTIONS(1753), - [anon_sym_AT] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_readonly] = ACTIONS(1753), - [anon_sym_get] = ACTIONS(1753), - [anon_sym_set] = ACTIONS(1753), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_public] = ACTIONS(1753), - [anon_sym_private] = ACTIONS(1753), - [anon_sym_protected] = ACTIONS(1753), - [anon_sym_override] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1753), - [anon_sym_any] = ACTIONS(1753), - [anon_sym_number] = ACTIONS(1753), - [anon_sym_boolean] = ACTIONS(1753), - [anon_sym_string] = ACTIONS(1753), - [anon_sym_symbol] = ACTIONS(1753), - [anon_sym_object] = ACTIONS(1753), - [anon_sym_abstract] = ACTIONS(1753), - [anon_sym_interface] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_PIPE_RBRACE] = ACTIONS(1751), - [sym__automatic_semicolon] = ACTIONS(1751), - [sym_html_comment] = ACTIONS(5), - }, - [690] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_export] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_namespace] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_COMMA] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_typeof] = ACTIONS(1753), - [anon_sym_import] = ACTIONS(1753), - [anon_sym_with] = ACTIONS(1753), - [anon_sym_var] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_await] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_debugger] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_catch] = ACTIONS(1753), - [anon_sym_finally] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [sym_glimmer_opening_tag] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_function] = ACTIONS(1753), - [anon_sym_new] = ACTIONS(1753), - [anon_sym_using] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_void] = ACTIONS(1753), - [anon_sym_delete] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1751), - [sym_number] = ACTIONS(1751), - [sym_private_property_identifier] = ACTIONS(1751), - [sym_this] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_null] = ACTIONS(1753), - [sym_undefined] = ACTIONS(1753), - [anon_sym_AT] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_readonly] = ACTIONS(1753), - [anon_sym_get] = ACTIONS(1753), - [anon_sym_set] = ACTIONS(1753), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_public] = ACTIONS(1753), - [anon_sym_private] = ACTIONS(1753), - [anon_sym_protected] = ACTIONS(1753), - [anon_sym_override] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1753), - [anon_sym_any] = ACTIONS(1753), - [anon_sym_number] = ACTIONS(1753), - [anon_sym_boolean] = ACTIONS(1753), - [anon_sym_string] = ACTIONS(1753), - [anon_sym_symbol] = ACTIONS(1753), - [anon_sym_object] = ACTIONS(1753), - [anon_sym_abstract] = ACTIONS(1753), - [anon_sym_interface] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [sym_html_comment] = ACTIONS(5), - }, [691] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_default] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_typeof] = ACTIONS(1923), - [anon_sym_import] = ACTIONS(1923), - [anon_sym_with] = ACTIONS(1923), - [anon_sym_var] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_switch] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_await] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_debugger] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_throw] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_case] = ACTIONS(1923), - [anon_sym_yield] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1921), - [sym_glimmer_opening_tag] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [anon_sym_SQUOTE] = ACTIONS(1921), - [anon_sym_class] = ACTIONS(1923), - [anon_sym_async] = ACTIONS(1923), - [anon_sym_function] = ACTIONS(1923), - [anon_sym_new] = ACTIONS(1923), - [anon_sym_using] = ACTIONS(1923), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(1923), - [anon_sym_delete] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1921), - [sym_number] = ACTIONS(1921), - [sym_private_property_identifier] = ACTIONS(1921), - [sym_this] = ACTIONS(1923), - [sym_super] = ACTIONS(1923), - [sym_true] = ACTIONS(1923), - [sym_false] = ACTIONS(1923), - [sym_null] = ACTIONS(1923), - [sym_undefined] = ACTIONS(1923), - [anon_sym_AT] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_get] = ACTIONS(1923), - [anon_sym_set] = ACTIONS(1923), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), - [anon_sym_object] = ACTIONS(1923), - [anon_sym_abstract] = ACTIONS(1923), - [anon_sym_interface] = ACTIONS(1923), - [anon_sym_enum] = ACTIONS(1923), - [anon_sym_PIPE_RBRACE] = ACTIONS(1921), - [sym__automatic_semicolon] = ACTIONS(1921), - [sym_html_comment] = ACTIONS(5), - }, - [692] = { - [sym__call_signature] = STATE(5588), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2419), - [anon_sym_export] = ACTIONS(2421), + [sym__call_signature] = STATE(7179), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2415), + [anon_sym_export] = ACTIONS(2417), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_let] = ACTIONS(2421), + [anon_sym_namespace] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), @@ -100416,11 +103691,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2417), [anon_sym_function] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(2417), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -100462,50 +103737,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_readonly] = ACTIONS(2421), - [anon_sym_get] = ACTIONS(2421), - [anon_sym_set] = ACTIONS(2421), - [anon_sym_declare] = ACTIONS(2421), - [anon_sym_public] = ACTIONS(2421), - [anon_sym_private] = ACTIONS(2421), - [anon_sym_protected] = ACTIONS(2421), - [anon_sym_override] = ACTIONS(2421), - [anon_sym_module] = ACTIONS(2421), - [anon_sym_any] = ACTIONS(2421), - [anon_sym_number] = ACTIONS(2421), - [anon_sym_boolean] = ACTIONS(2421), - [anon_sym_string] = ACTIONS(2421), - [anon_sym_symbol] = ACTIONS(2421), - [anon_sym_object] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_readonly] = ACTIONS(2417), + [anon_sym_get] = ACTIONS(2417), + [anon_sym_set] = ACTIONS(2417), + [anon_sym_declare] = ACTIONS(2417), + [anon_sym_public] = ACTIONS(2417), + [anon_sym_private] = ACTIONS(2417), + [anon_sym_protected] = ACTIONS(2417), + [anon_sym_override] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_any] = ACTIONS(2417), + [anon_sym_number] = ACTIONS(2417), + [anon_sym_boolean] = ACTIONS(2417), + [anon_sym_string] = ACTIONS(2417), + [anon_sym_symbol] = ACTIONS(2417), + [anon_sym_object] = ACTIONS(2417), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, + [692] = { + [ts_builtin_sym_end] = ACTIONS(1787), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1789), + [anon_sym_default] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_namespace] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(1789), + [anon_sym_with] = ACTIONS(1789), + [anon_sym_var] = ACTIONS(1789), + [anon_sym_let] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_switch] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_while] = ACTIONS(1789), + [anon_sym_do] = ACTIONS(1789), + [anon_sym_try] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_debugger] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_throw] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1789), + [anon_sym_catch] = ACTIONS(1789), + [anon_sym_finally] = ACTIONS(1789), + [anon_sym_yield] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1787), + [sym_glimmer_opening_tag] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1789), + [anon_sym_async] = ACTIONS(1789), + [anon_sym_function] = ACTIONS(1789), + [anon_sym_new] = ACTIONS(1789), + [anon_sym_using] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1787), + [sym_number] = ACTIONS(1787), + [sym_private_property_identifier] = ACTIONS(1787), + [sym_this] = ACTIONS(1789), + [sym_super] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_null] = ACTIONS(1789), + [sym_undefined] = ACTIONS(1789), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1789), + [anon_sym_readonly] = ACTIONS(1789), + [anon_sym_get] = ACTIONS(1789), + [anon_sym_set] = ACTIONS(1789), + [anon_sym_declare] = ACTIONS(1789), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_override] = ACTIONS(1789), + [anon_sym_module] = ACTIONS(1789), + [anon_sym_any] = ACTIONS(1789), + [anon_sym_number] = ACTIONS(1789), + [anon_sym_boolean] = ACTIONS(1789), + [anon_sym_string] = ACTIONS(1789), + [anon_sym_symbol] = ACTIONS(1789), + [anon_sym_object] = ACTIONS(1789), + [anon_sym_abstract] = ACTIONS(1789), + [anon_sym_interface] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [sym_html_comment] = ACTIONS(5), + }, [693] = { - [sym__call_signature] = STATE(5772), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [sym__call_signature] = STATE(7227), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2397), [anon_sym_export] = ACTIONS(2399), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(926), + [anon_sym_EQ] = ACTIONS(936), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2399), [anon_sym_let] = ACTIONS(2399), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(940), + [anon_sym_COLON] = ACTIONS(954), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2399), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2399), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -100570,113 +103931,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [694] = { - [ts_builtin_sym_end] = ACTIONS(1871), - [sym_identifier] = ACTIONS(1873), - [anon_sym_export] = ACTIONS(1873), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_type] = ACTIONS(1873), - [anon_sym_namespace] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_typeof] = ACTIONS(1873), - [anon_sym_import] = ACTIONS(1873), - [anon_sym_with] = ACTIONS(1873), - [anon_sym_var] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_switch] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_do] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_debugger] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_throw] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1873), - [anon_sym_yield] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1871), - [sym_glimmer_opening_tag] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_SQUOTE] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1873), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1873), - [anon_sym_new] = ACTIONS(1873), - [anon_sym_using] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_SLASH] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_void] = ACTIONS(1873), - [anon_sym_delete] = ACTIONS(1873), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1871), - [sym_number] = ACTIONS(1871), - [sym_private_property_identifier] = ACTIONS(1871), - [sym_this] = ACTIONS(1873), - [sym_super] = ACTIONS(1873), - [sym_true] = ACTIONS(1873), - [sym_false] = ACTIONS(1873), - [sym_null] = ACTIONS(1873), - [sym_undefined] = ACTIONS(1873), - [anon_sym_AT] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_readonly] = ACTIONS(1873), - [anon_sym_get] = ACTIONS(1873), - [anon_sym_set] = ACTIONS(1873), - [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_override] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1873), - [anon_sym_any] = ACTIONS(1873), - [anon_sym_number] = ACTIONS(1873), - [anon_sym_boolean] = ACTIONS(1873), - [anon_sym_string] = ACTIONS(1873), - [anon_sym_symbol] = ACTIONS(1873), - [anon_sym_object] = ACTIONS(1873), - [anon_sym_abstract] = ACTIONS(1873), - [anon_sym_interface] = ACTIONS(1873), - [anon_sym_enum] = ACTIONS(1873), - [anon_sym_PIPE_RBRACE] = ACTIONS(1871), - [sym__automatic_semicolon] = ACTIONS(2423), - [sym_html_comment] = ACTIONS(5), - }, - [695] = { - [sym__call_signature] = STATE(5588), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [sym__call_signature] = STATE(7242), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2419), [anon_sym_export] = ACTIONS(2421), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2421), - [anon_sym_EQ] = ACTIONS(932), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_let] = ACTIONS(2421), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2421), - [anon_sym_function] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(932), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2421), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -100737,22 +104013,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2421), [anon_sym_object] = ACTIONS(2421), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, + [695] = { + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1859), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_default] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_typeof] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_with] = ACTIONS(1859), + [anon_sym_var] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1857), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_debugger] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1857), + [sym_glimmer_opening_tag] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_delete] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1857), + [sym_number] = ACTIONS(1857), + [sym_private_property_identifier] = ACTIONS(1857), + [sym_this] = ACTIONS(1859), + [sym_super] = ACTIONS(1859), + [sym_true] = ACTIONS(1859), + [sym_false] = ACTIONS(1859), + [sym_null] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_abstract] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), + [anon_sym_PIPE_RBRACE] = ACTIONS(1857), + [sym__automatic_semicolon] = ACTIONS(1857), + [sym_html_comment] = ACTIONS(5), + }, [696] = { - [sym__call_signature] = STATE(5588), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2419), - [anon_sym_export] = ACTIONS(2421), + [ts_builtin_sym_end] = ACTIONS(1787), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1789), + [anon_sym_default] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_namespace] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(1789), + [anon_sym_with] = ACTIONS(1789), + [anon_sym_var] = ACTIONS(1789), + [anon_sym_let] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_switch] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_while] = ACTIONS(1789), + [anon_sym_do] = ACTIONS(1789), + [anon_sym_try] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_debugger] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_throw] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1789), + [anon_sym_yield] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1787), + [sym_glimmer_opening_tag] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1789), + [anon_sym_async] = ACTIONS(1789), + [anon_sym_function] = ACTIONS(1789), + [anon_sym_new] = ACTIONS(1789), + [anon_sym_using] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1787), + [sym_number] = ACTIONS(1787), + [sym_private_property_identifier] = ACTIONS(1787), + [sym_this] = ACTIONS(1789), + [sym_super] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_null] = ACTIONS(1789), + [sym_undefined] = ACTIONS(1789), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1789), + [anon_sym_readonly] = ACTIONS(1789), + [anon_sym_get] = ACTIONS(1789), + [anon_sym_set] = ACTIONS(1789), + [anon_sym_declare] = ACTIONS(1789), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_override] = ACTIONS(1789), + [anon_sym_module] = ACTIONS(1789), + [anon_sym_any] = ACTIONS(1789), + [anon_sym_number] = ACTIONS(1789), + [anon_sym_boolean] = ACTIONS(1789), + [anon_sym_string] = ACTIONS(1789), + [anon_sym_symbol] = ACTIONS(1789), + [anon_sym_object] = ACTIONS(1789), + [anon_sym_abstract] = ACTIONS(1789), + [anon_sym_interface] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [anon_sym_PIPE_RBRACE] = ACTIONS(1787), + [sym__automatic_semicolon] = ACTIONS(2423), + [sym_html_comment] = ACTIONS(5), + }, + [697] = { + [ts_builtin_sym_end] = ACTIONS(1925), + [sym_identifier] = ACTIONS(1927), + [anon_sym_export] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_namespace] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_typeof] = ACTIONS(1927), + [anon_sym_import] = ACTIONS(1927), + [anon_sym_with] = ACTIONS(1927), + [anon_sym_var] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_switch] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_debugger] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_throw] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_case] = ACTIONS(1927), + [anon_sym_yield] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1925), + [sym_glimmer_opening_tag] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_class] = ACTIONS(1927), + [anon_sym_async] = ACTIONS(1927), + [anon_sym_function] = ACTIONS(1927), + [anon_sym_new] = ACTIONS(1927), + [anon_sym_using] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_SLASH] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_void] = ACTIONS(1927), + [anon_sym_delete] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1925), + [anon_sym_DASH_DASH] = ACTIONS(1925), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1925), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [sym_this] = ACTIONS(1927), + [sym_super] = ACTIONS(1927), + [sym_true] = ACTIONS(1927), + [sym_false] = ACTIONS(1927), + [sym_null] = ACTIONS(1927), + [sym_undefined] = ACTIONS(1927), + [anon_sym_AT] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1927), + [anon_sym_readonly] = ACTIONS(1927), + [anon_sym_get] = ACTIONS(1927), + [anon_sym_set] = ACTIONS(1927), + [anon_sym_declare] = ACTIONS(1927), + [anon_sym_public] = ACTIONS(1927), + [anon_sym_private] = ACTIONS(1927), + [anon_sym_protected] = ACTIONS(1927), + [anon_sym_override] = ACTIONS(1927), + [anon_sym_module] = ACTIONS(1927), + [anon_sym_any] = ACTIONS(1927), + [anon_sym_number] = ACTIONS(1927), + [anon_sym_boolean] = ACTIONS(1927), + [anon_sym_string] = ACTIONS(1927), + [anon_sym_symbol] = ACTIONS(1927), + [anon_sym_object] = ACTIONS(1927), + [anon_sym_abstract] = ACTIONS(1927), + [anon_sym_interface] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1927), + [anon_sym_PIPE_RBRACE] = ACTIONS(1925), + [sym__automatic_semicolon] = ACTIONS(1925), + [sym_html_comment] = ACTIONS(5), + }, + [698] = { + [sym__call_signature] = STATE(7179), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2415), + [anon_sym_export] = ACTIONS(2417), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_EQ] = ACTIONS(932), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_EQ] = ACTIONS(914), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_let] = ACTIONS(2421), + [anon_sym_namespace] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), @@ -100760,11 +104293,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2417), [anon_sym_function] = ACTIONS(2279), - [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(2417), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -100806,52 +104339,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_readonly] = ACTIONS(2421), - [anon_sym_get] = ACTIONS(2421), - [anon_sym_set] = ACTIONS(2421), - [anon_sym_declare] = ACTIONS(2421), - [anon_sym_public] = ACTIONS(2421), - [anon_sym_private] = ACTIONS(2421), - [anon_sym_protected] = ACTIONS(2421), - [anon_sym_override] = ACTIONS(2421), - [anon_sym_module] = ACTIONS(2421), - [anon_sym_any] = ACTIONS(2421), - [anon_sym_number] = ACTIONS(2421), - [anon_sym_boolean] = ACTIONS(2421), - [anon_sym_string] = ACTIONS(2421), - [anon_sym_symbol] = ACTIONS(2421), - [anon_sym_object] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_readonly] = ACTIONS(2417), + [anon_sym_get] = ACTIONS(2417), + [anon_sym_set] = ACTIONS(2417), + [anon_sym_declare] = ACTIONS(2417), + [anon_sym_public] = ACTIONS(2417), + [anon_sym_private] = ACTIONS(2417), + [anon_sym_protected] = ACTIONS(2417), + [anon_sym_override] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_any] = ACTIONS(2417), + [anon_sym_number] = ACTIONS(2417), + [anon_sym_boolean] = ACTIONS(2417), + [anon_sym_string] = ACTIONS(2417), + [anon_sym_symbol] = ACTIONS(2417), + [anon_sym_object] = ACTIONS(2417), [anon_sym_satisfies] = ACTIONS(122), [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [697] = { - [sym__call_signature] = STATE(5772), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), + [699] = { + [ts_builtin_sym_end] = ACTIONS(1670), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_COMMA] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym_import] = ACTIONS(1672), + [anon_sym_with] = ACTIONS(1672), + [anon_sym_var] = ACTIONS(1672), + [anon_sym_let] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_else] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_debugger] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_glimmer_opening_tag] = ACTIONS(1670), + [anon_sym_DQUOTE] = ACTIONS(1670), + [anon_sym_SQUOTE] = ACTIONS(1670), + [anon_sym_class] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_function] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(1672), + [anon_sym_using] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1670), + [anon_sym_void] = ACTIONS(1672), + [anon_sym_delete] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1670), + [anon_sym_DASH_DASH] = ACTIONS(1670), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1670), + [sym_number] = ACTIONS(1670), + [sym_private_property_identifier] = ACTIONS(1670), + [sym_this] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_undefined] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_readonly] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1672), + [anon_sym_set] = ACTIONS(1672), + [anon_sym_declare] = ACTIONS(1672), + [anon_sym_public] = ACTIONS(1672), + [anon_sym_private] = ACTIONS(1672), + [anon_sym_protected] = ACTIONS(1672), + [anon_sym_override] = ACTIONS(1672), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_any] = ACTIONS(1672), + [anon_sym_number] = ACTIONS(1672), + [anon_sym_boolean] = ACTIONS(1672), + [anon_sym_string] = ACTIONS(1672), + [anon_sym_symbol] = ACTIONS(1672), + [anon_sym_object] = ACTIONS(1672), + [anon_sym_abstract] = ACTIONS(1672), + [anon_sym_interface] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_PIPE_RBRACE] = ACTIONS(1670), + [sym__automatic_semicolon] = ACTIONS(2425), + [sym_html_comment] = ACTIONS(5), + }, + [700] = { + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_namespace] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_COMMA] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_typeof] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1853), + [anon_sym_with] = ACTIONS(1853), + [anon_sym_var] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_debugger] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_throw] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_case] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1851), + [sym_glimmer_opening_tag] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_function] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_void] = ACTIONS(1853), + [anon_sym_delete] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1851), + [sym_number] = ACTIONS(1851), + [sym_private_property_identifier] = ACTIONS(1851), + [sym_this] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_null] = ACTIONS(1853), + [sym_undefined] = ACTIONS(1853), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_get] = ACTIONS(1853), + [anon_sym_set] = ACTIONS(1853), + [anon_sym_declare] = ACTIONS(1853), + [anon_sym_public] = ACTIONS(1853), + [anon_sym_private] = ACTIONS(1853), + [anon_sym_protected] = ACTIONS(1853), + [anon_sym_override] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_any] = ACTIONS(1853), + [anon_sym_number] = ACTIONS(1853), + [anon_sym_boolean] = ACTIONS(1853), + [anon_sym_string] = ACTIONS(1853), + [anon_sym_symbol] = ACTIONS(1853), + [anon_sym_object] = ACTIONS(1853), + [anon_sym_abstract] = ACTIONS(1853), + [anon_sym_interface] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_PIPE_RBRACE] = ACTIONS(1851), + [sym__automatic_semicolon] = ACTIONS(1851), + [sym_html_comment] = ACTIONS(5), + }, + [701] = { + [sym__call_signature] = STATE(7179), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2415), + [anon_sym_export] = ACTIONS(2417), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(926), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_EQ] = ACTIONS(914), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), + [anon_sym_namespace] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_function] = ACTIONS(2427), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2417), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -100893,51 +104597,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_readonly] = ACTIONS(2417), + [anon_sym_get] = ACTIONS(2417), + [anon_sym_set] = ACTIONS(2417), + [anon_sym_declare] = ACTIONS(2417), + [anon_sym_public] = ACTIONS(2417), + [anon_sym_private] = ACTIONS(2417), + [anon_sym_protected] = ACTIONS(2417), + [anon_sym_override] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_any] = ACTIONS(2417), + [anon_sym_number] = ACTIONS(2417), + [anon_sym_boolean] = ACTIONS(2417), + [anon_sym_string] = ACTIONS(2417), + [anon_sym_symbol] = ACTIONS(2417), + [anon_sym_object] = ACTIONS(2417), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [698] = { - [sym__call_signature] = STATE(5772), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), + [702] = { + [ts_builtin_sym_end] = ACTIONS(1787), + [sym_identifier] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1789), + [anon_sym_default] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_namespace] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(1789), + [anon_sym_with] = ACTIONS(1789), + [anon_sym_var] = ACTIONS(1789), + [anon_sym_let] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_switch] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_while] = ACTIONS(1789), + [anon_sym_do] = ACTIONS(1789), + [anon_sym_try] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_debugger] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_throw] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1789), + [anon_sym_yield] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1787), + [sym_glimmer_opening_tag] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1789), + [anon_sym_async] = ACTIONS(1789), + [anon_sym_function] = ACTIONS(1789), + [anon_sym_new] = ACTIONS(1789), + [anon_sym_using] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1787), + [sym_number] = ACTIONS(1787), + [sym_private_property_identifier] = ACTIONS(1787), + [sym_this] = ACTIONS(1789), + [sym_super] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_null] = ACTIONS(1789), + [sym_undefined] = ACTIONS(1789), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1789), + [anon_sym_readonly] = ACTIONS(1789), + [anon_sym_get] = ACTIONS(1789), + [anon_sym_set] = ACTIONS(1789), + [anon_sym_declare] = ACTIONS(1789), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_override] = ACTIONS(1789), + [anon_sym_module] = ACTIONS(1789), + [anon_sym_any] = ACTIONS(1789), + [anon_sym_number] = ACTIONS(1789), + [anon_sym_boolean] = ACTIONS(1789), + [anon_sym_string] = ACTIONS(1789), + [anon_sym_symbol] = ACTIONS(1789), + [anon_sym_object] = ACTIONS(1789), + [anon_sym_abstract] = ACTIONS(1789), + [anon_sym_interface] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [anon_sym_PIPE_RBRACE] = ACTIONS(1787), + [sym__automatic_semicolon] = ACTIONS(1787), + [sym_html_comment] = ACTIONS(5), + }, + [703] = { + [sym__call_signature] = STATE(7179), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2415), + [anon_sym_export] = ACTIONS(2417), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(895), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_EQ] = ACTIONS(914), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_let] = ACTIONS(2399), + [anon_sym_namespace] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_function] = ACTIONS(2395), + [anon_sym_EQ_GT] = ACTIONS(908), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2417), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -100979,134 +104769,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_readonly] = ACTIONS(2417), + [anon_sym_get] = ACTIONS(2417), + [anon_sym_set] = ACTIONS(2417), + [anon_sym_declare] = ACTIONS(2417), + [anon_sym_public] = ACTIONS(2417), + [anon_sym_private] = ACTIONS(2417), + [anon_sym_protected] = ACTIONS(2417), + [anon_sym_override] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_any] = ACTIONS(2417), + [anon_sym_number] = ACTIONS(2417), + [anon_sym_boolean] = ACTIONS(2417), + [anon_sym_string] = ACTIONS(2417), + [anon_sym_symbol] = ACTIONS(2417), + [anon_sym_object] = ACTIONS(2417), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [699] = { - [ts_builtin_sym_end] = ACTIONS(1765), - [sym_identifier] = ACTIONS(1767), - [anon_sym_export] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1767), - [anon_sym_type] = ACTIONS(1767), - [anon_sym_namespace] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(1767), - [anon_sym_import] = ACTIONS(1767), - [anon_sym_with] = ACTIONS(1767), - [anon_sym_var] = ACTIONS(1767), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_switch] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_await] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_debugger] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_throw] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_yield] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_class] = ACTIONS(1767), - [anon_sym_async] = ACTIONS(1767), - [anon_sym_function] = ACTIONS(1767), - [anon_sym_new] = ACTIONS(1767), - [anon_sym_using] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_void] = ACTIONS(1767), - [anon_sym_delete] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1765), - [sym_number] = ACTIONS(1765), - [sym_private_property_identifier] = ACTIONS(1765), - [sym_this] = ACTIONS(1767), - [sym_super] = ACTIONS(1767), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [sym_null] = ACTIONS(1767), - [sym_undefined] = ACTIONS(1767), - [anon_sym_AT] = ACTIONS(1765), - [anon_sym_static] = ACTIONS(1767), - [anon_sym_readonly] = ACTIONS(1767), - [anon_sym_get] = ACTIONS(1767), - [anon_sym_set] = ACTIONS(1767), - [anon_sym_declare] = ACTIONS(1767), - [anon_sym_public] = ACTIONS(1767), - [anon_sym_private] = ACTIONS(1767), - [anon_sym_protected] = ACTIONS(1767), - [anon_sym_override] = ACTIONS(1767), - [anon_sym_module] = ACTIONS(1767), - [anon_sym_any] = ACTIONS(1767), - [anon_sym_number] = ACTIONS(1767), - [anon_sym_boolean] = ACTIONS(1767), - [anon_sym_string] = ACTIONS(1767), - [anon_sym_symbol] = ACTIONS(1767), - [anon_sym_object] = ACTIONS(1767), - [anon_sym_abstract] = ACTIONS(1767), - [anon_sym_interface] = ACTIONS(1767), - [anon_sym_enum] = ACTIONS(1767), - [anon_sym_PIPE_RBRACE] = ACTIONS(1765), - [sym__automatic_semicolon] = ACTIONS(1765), + [704] = { + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1859), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_default] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_typeof] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_with] = ACTIONS(1859), + [anon_sym_var] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1857), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_debugger] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_finally] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1857), + [sym_glimmer_opening_tag] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_delete] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1857), + [sym_number] = ACTIONS(1857), + [sym_private_property_identifier] = ACTIONS(1857), + [sym_this] = ACTIONS(1859), + [sym_super] = ACTIONS(1859), + [sym_true] = ACTIONS(1859), + [sym_false] = ACTIONS(1859), + [sym_null] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_abstract] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), [sym_html_comment] = ACTIONS(5), }, - [700] = { - [sym__call_signature] = STATE(5588), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [705] = { + [sym__call_signature] = STATE(7242), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2419), [anon_sym_export] = ACTIONS(2421), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2421), - [anon_sym_EQ] = ACTIONS(932), + [anon_sym_EQ] = ACTIONS(926), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_let] = ACTIONS(2421), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2421), - [anon_sym_function] = ACTIONS(2395), - [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(932), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2421), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -101167,121 +104959,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2421), [anon_sym_object] = ACTIONS(2421), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [701] = { - [ts_builtin_sym_end] = ACTIONS(1871), - [sym_identifier] = ACTIONS(1873), - [anon_sym_export] = ACTIONS(1873), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_type] = ACTIONS(1873), - [anon_sym_namespace] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_typeof] = ACTIONS(1873), - [anon_sym_import] = ACTIONS(1873), - [anon_sym_with] = ACTIONS(1873), - [anon_sym_var] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_switch] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_do] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_debugger] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_throw] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1873), - [anon_sym_catch] = ACTIONS(1873), - [anon_sym_finally] = ACTIONS(1873), - [anon_sym_yield] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1871), - [sym_glimmer_opening_tag] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_SQUOTE] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1873), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1873), - [anon_sym_new] = ACTIONS(1873), - [anon_sym_using] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_SLASH] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_void] = ACTIONS(1873), - [anon_sym_delete] = ACTIONS(1873), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1871), - [sym_number] = ACTIONS(1871), - [sym_private_property_identifier] = ACTIONS(1871), - [sym_this] = ACTIONS(1873), - [sym_super] = ACTIONS(1873), - [sym_true] = ACTIONS(1873), - [sym_false] = ACTIONS(1873), - [sym_null] = ACTIONS(1873), - [sym_undefined] = ACTIONS(1873), - [anon_sym_AT] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_readonly] = ACTIONS(1873), - [anon_sym_get] = ACTIONS(1873), - [anon_sym_set] = ACTIONS(1873), - [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_override] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1873), - [anon_sym_any] = ACTIONS(1873), - [anon_sym_number] = ACTIONS(1873), - [anon_sym_boolean] = ACTIONS(1873), - [anon_sym_string] = ACTIONS(1873), - [anon_sym_symbol] = ACTIONS(1873), - [anon_sym_object] = ACTIONS(1873), - [anon_sym_abstract] = ACTIONS(1873), - [anon_sym_interface] = ACTIONS(1873), - [anon_sym_enum] = ACTIONS(1873), + [706] = { + [sym_statement_block] = STATE(795), + [ts_builtin_sym_end] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_type] = ACTIONS(1704), + [anon_sym_namespace] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(1704), + [anon_sym_with] = ACTIONS(1704), + [anon_sym_var] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_else] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_await] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1704), + [anon_sym_try] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_debugger] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_yield] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1702), + [sym_glimmer_opening_tag] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_class] = ACTIONS(1704), + [anon_sym_async] = ACTIONS(1704), + [anon_sym_function] = ACTIONS(1704), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_using] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [sym_private_property_identifier] = ACTIONS(1702), + [sym_this] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_true] = ACTIONS(1704), + [sym_false] = ACTIONS(1704), + [sym_null] = ACTIONS(1704), + [sym_undefined] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_readonly] = ACTIONS(1704), + [anon_sym_get] = ACTIONS(1704), + [anon_sym_set] = ACTIONS(1704), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_public] = ACTIONS(1704), + [anon_sym_private] = ACTIONS(1704), + [anon_sym_protected] = ACTIONS(1704), + [anon_sym_override] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1704), + [anon_sym_any] = ACTIONS(1704), + [anon_sym_number] = ACTIONS(1704), + [anon_sym_boolean] = ACTIONS(1704), + [anon_sym_string] = ACTIONS(1704), + [anon_sym_symbol] = ACTIONS(1704), + [anon_sym_object] = ACTIONS(1704), + [anon_sym_abstract] = ACTIONS(1704), + [anon_sym_interface] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), [sym_html_comment] = ACTIONS(5), }, - [702] = { - [sym__call_signature] = STATE(5566), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2415), - [anon_sym_export] = ACTIONS(2417), + [707] = { + [sym_statement_block] = STATE(795), + [ts_builtin_sym_end] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_type] = ACTIONS(1704), + [anon_sym_namespace] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(1704), + [anon_sym_with] = ACTIONS(1704), + [anon_sym_var] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_else] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_await] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1704), + [anon_sym_try] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_debugger] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_yield] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1702), + [sym_glimmer_opening_tag] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_class] = ACTIONS(1704), + [anon_sym_async] = ACTIONS(1704), + [anon_sym_function] = ACTIONS(1704), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_using] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [sym_private_property_identifier] = ACTIONS(1702), + [sym_this] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_true] = ACTIONS(1704), + [sym_false] = ACTIONS(1704), + [sym_null] = ACTIONS(1704), + [sym_undefined] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_readonly] = ACTIONS(1704), + [anon_sym_get] = ACTIONS(1704), + [anon_sym_set] = ACTIONS(1704), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_public] = ACTIONS(1704), + [anon_sym_private] = ACTIONS(1704), + [anon_sym_protected] = ACTIONS(1704), + [anon_sym_override] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1704), + [anon_sym_any] = ACTIONS(1704), + [anon_sym_number] = ACTIONS(1704), + [anon_sym_boolean] = ACTIONS(1704), + [anon_sym_string] = ACTIONS(1704), + [anon_sym_symbol] = ACTIONS(1704), + [anon_sym_object] = ACTIONS(1704), + [anon_sym_abstract] = ACTIONS(1704), + [anon_sym_interface] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [sym_html_comment] = ACTIONS(5), + }, + [708] = { + [sym_finally_clause] = STATE(782), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_typeof] = ACTIONS(2437), + [anon_sym_import] = ACTIONS(2437), + [anon_sym_with] = ACTIONS(2437), + [anon_sym_var] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_switch] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_await] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_debugger] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_throw] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(2437), + [anon_sym_finally] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [sym_glimmer_opening_tag] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_class] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_function] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_using] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_void] = ACTIONS(2437), + [anon_sym_delete] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2435), + [sym_number] = ACTIONS(2435), + [sym_private_property_identifier] = ACTIONS(2435), + [sym_this] = ACTIONS(2437), + [sym_super] = ACTIONS(2437), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_null] = ACTIONS(2437), + [sym_undefined] = ACTIONS(2437), + [anon_sym_AT] = ACTIONS(2435), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_readonly] = ACTIONS(2437), + [anon_sym_get] = ACTIONS(2437), + [anon_sym_set] = ACTIONS(2437), + [anon_sym_declare] = ACTIONS(2437), + [anon_sym_public] = ACTIONS(2437), + [anon_sym_private] = ACTIONS(2437), + [anon_sym_protected] = ACTIONS(2437), + [anon_sym_override] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_any] = ACTIONS(2437), + [anon_sym_number] = ACTIONS(2437), + [anon_sym_boolean] = ACTIONS(2437), + [anon_sym_string] = ACTIONS(2437), + [anon_sym_symbol] = ACTIONS(2437), + [anon_sym_object] = ACTIONS(2437), + [anon_sym_abstract] = ACTIONS(2437), + [anon_sym_interface] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [sym_html_comment] = ACTIONS(5), + }, + [709] = { + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2417), - [anon_sym_EQ] = ACTIONS(946), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(162), - [anon_sym_let] = ACTIONS(2417), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(162), + [anon_sym_in] = ACTIONS(883), + [anon_sym_of] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2371), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(952), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2417), + [anon_sym_new] = ACTIONS(2371), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -101323,222 +105282,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_readonly] = ACTIONS(2417), - [anon_sym_get] = ACTIONS(2417), - [anon_sym_set] = ACTIONS(2417), - [anon_sym_declare] = ACTIONS(2417), - [anon_sym_public] = ACTIONS(2417), - [anon_sym_private] = ACTIONS(2417), - [anon_sym_protected] = ACTIONS(2417), - [anon_sym_override] = ACTIONS(2417), - [anon_sym_module] = ACTIONS(2417), - [anon_sym_any] = ACTIONS(2417), - [anon_sym_number] = ACTIONS(2417), - [anon_sym_boolean] = ACTIONS(2417), - [anon_sym_string] = ACTIONS(2417), - [anon_sym_symbol] = ACTIONS(2417), - [anon_sym_object] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [anon_sym_declare] = ACTIONS(2371), + [anon_sym_public] = ACTIONS(2371), + [anon_sym_private] = ACTIONS(2371), + [anon_sym_protected] = ACTIONS(2371), + [anon_sym_override] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_any] = ACTIONS(2371), + [anon_sym_number] = ACTIONS(2371), + [anon_sym_boolean] = ACTIONS(2371), + [anon_sym_string] = ACTIONS(2371), + [anon_sym_symbol] = ACTIONS(2371), + [anon_sym_object] = ACTIONS(2371), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [703] = { - [ts_builtin_sym_end] = ACTIONS(1871), - [sym_identifier] = ACTIONS(1873), - [anon_sym_export] = ACTIONS(1873), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_type] = ACTIONS(1873), - [anon_sym_namespace] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_typeof] = ACTIONS(1873), - [anon_sym_import] = ACTIONS(1873), - [anon_sym_with] = ACTIONS(1873), - [anon_sym_var] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_switch] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_do] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_debugger] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_throw] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1873), - [anon_sym_yield] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1871), - [sym_glimmer_opening_tag] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_SQUOTE] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1873), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1873), - [anon_sym_new] = ACTIONS(1873), - [anon_sym_using] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_SLASH] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_void] = ACTIONS(1873), - [anon_sym_delete] = ACTIONS(1873), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1871), - [sym_number] = ACTIONS(1871), - [sym_private_property_identifier] = ACTIONS(1871), - [sym_this] = ACTIONS(1873), - [sym_super] = ACTIONS(1873), - [sym_true] = ACTIONS(1873), - [sym_false] = ACTIONS(1873), - [sym_null] = ACTIONS(1873), - [sym_undefined] = ACTIONS(1873), - [anon_sym_AT] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_readonly] = ACTIONS(1873), - [anon_sym_get] = ACTIONS(1873), - [anon_sym_set] = ACTIONS(1873), - [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_override] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1873), - [anon_sym_any] = ACTIONS(1873), - [anon_sym_number] = ACTIONS(1873), - [anon_sym_boolean] = ACTIONS(1873), - [anon_sym_string] = ACTIONS(1873), - [anon_sym_symbol] = ACTIONS(1873), - [anon_sym_object] = ACTIONS(1873), - [anon_sym_abstract] = ACTIONS(1873), - [anon_sym_interface] = ACTIONS(1873), - [anon_sym_enum] = ACTIONS(1873), - [anon_sym_PIPE_RBRACE] = ACTIONS(1871), - [sym__automatic_semicolon] = ACTIONS(1871), - [sym_html_comment] = ACTIONS(5), - }, - [704] = { - [ts_builtin_sym_end] = ACTIONS(1720), - [sym_identifier] = ACTIONS(1722), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym_import] = ACTIONS(1722), - [anon_sym_with] = ACTIONS(1722), - [anon_sym_var] = ACTIONS(1722), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1720), - [anon_sym_else] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_await] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_try] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_debugger] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_throw] = ACTIONS(1722), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_yield] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [sym_glimmer_opening_tag] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_class] = ACTIONS(1722), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_function] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_using] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1720), - [anon_sym_void] = ACTIONS(1722), - [anon_sym_delete] = ACTIONS(1722), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1720), - [sym_number] = ACTIONS(1720), - [sym_private_property_identifier] = ACTIONS(1720), - [sym_this] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_undefined] = ACTIONS(1722), - [anon_sym_AT] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_protected] = ACTIONS(1722), - [anon_sym_override] = ACTIONS(1722), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1722), - [anon_sym_number] = ACTIONS(1722), - [anon_sym_boolean] = ACTIONS(1722), - [anon_sym_string] = ACTIONS(1722), - [anon_sym_symbol] = ACTIONS(1722), - [anon_sym_object] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_interface] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_PIPE_RBRACE] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(2425), - [sym_html_comment] = ACTIONS(5), - }, - [705] = { - [sym__call_signature] = STATE(5588), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2419), - [anon_sym_export] = ACTIONS(2421), + [710] = { + [sym__call_signature] = STATE(7227), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2399), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_EQ] = ACTIONS(932), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_let] = ACTIONS(2421), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_function] = ACTIONS(2427), - [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(2399), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -101580,136 +105367,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_readonly] = ACTIONS(2421), - [anon_sym_get] = ACTIONS(2421), - [anon_sym_set] = ACTIONS(2421), - [anon_sym_declare] = ACTIONS(2421), - [anon_sym_public] = ACTIONS(2421), - [anon_sym_private] = ACTIONS(2421), - [anon_sym_protected] = ACTIONS(2421), - [anon_sym_override] = ACTIONS(2421), - [anon_sym_module] = ACTIONS(2421), - [anon_sym_any] = ACTIONS(2421), - [anon_sym_number] = ACTIONS(2421), - [anon_sym_boolean] = ACTIONS(2421), - [anon_sym_string] = ACTIONS(2421), - [anon_sym_symbol] = ACTIONS(2421), - [anon_sym_object] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_readonly] = ACTIONS(2399), + [anon_sym_get] = ACTIONS(2399), + [anon_sym_set] = ACTIONS(2399), + [anon_sym_declare] = ACTIONS(2399), + [anon_sym_public] = ACTIONS(2399), + [anon_sym_private] = ACTIONS(2399), + [anon_sym_protected] = ACTIONS(2399), + [anon_sym_override] = ACTIONS(2399), + [anon_sym_module] = ACTIONS(2399), + [anon_sym_any] = ACTIONS(2399), + [anon_sym_number] = ACTIONS(2399), + [anon_sym_boolean] = ACTIONS(2399), + [anon_sym_string] = ACTIONS(2399), + [anon_sym_symbol] = ACTIONS(2399), + [anon_sym_object] = ACTIONS(2399), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [706] = { - [sym_finally_clause] = STATE(773), - [ts_builtin_sym_end] = ACTIONS(2429), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_namespace] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_typeof] = ACTIONS(2431), - [anon_sym_import] = ACTIONS(2431), - [anon_sym_with] = ACTIONS(2431), - [anon_sym_var] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_switch] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_await] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [anon_sym_do] = ACTIONS(2431), - [anon_sym_try] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_debugger] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_throw] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2429), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_finally] = ACTIONS(2411), - [anon_sym_yield] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2429), - [sym_glimmer_opening_tag] = ACTIONS(2429), - [anon_sym_DQUOTE] = ACTIONS(2429), - [anon_sym_SQUOTE] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_function] = ACTIONS(2431), - [anon_sym_new] = ACTIONS(2431), - [anon_sym_using] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2429), - [anon_sym_void] = ACTIONS(2431), - [anon_sym_delete] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2429), - [anon_sym_DASH_DASH] = ACTIONS(2429), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2429), - [sym_number] = ACTIONS(2429), - [sym_private_property_identifier] = ACTIONS(2429), - [sym_this] = ACTIONS(2431), - [sym_super] = ACTIONS(2431), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [sym_null] = ACTIONS(2431), - [sym_undefined] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_readonly] = ACTIONS(2431), - [anon_sym_get] = ACTIONS(2431), - [anon_sym_set] = ACTIONS(2431), - [anon_sym_declare] = ACTIONS(2431), - [anon_sym_public] = ACTIONS(2431), - [anon_sym_private] = ACTIONS(2431), - [anon_sym_protected] = ACTIONS(2431), - [anon_sym_override] = ACTIONS(2431), - [anon_sym_module] = ACTIONS(2431), - [anon_sym_any] = ACTIONS(2431), - [anon_sym_number] = ACTIONS(2431), - [anon_sym_boolean] = ACTIONS(2431), - [anon_sym_string] = ACTIONS(2431), - [anon_sym_symbol] = ACTIONS(2431), - [anon_sym_object] = ACTIONS(2431), - [anon_sym_abstract] = ACTIONS(2431), - [anon_sym_interface] = ACTIONS(2431), - [anon_sym_enum] = ACTIONS(2431), - [sym_html_comment] = ACTIONS(5), - }, - [707] = { - [sym__call_signature] = STATE(5912), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2433), - [anon_sym_export] = ACTIONS(2435), + [711] = { + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2435), + [anon_sym_async] = ACTIONS(2371), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2435), + [anon_sym_new] = ACTIONS(2371), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -101751,50 +105452,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2435), - [anon_sym_readonly] = ACTIONS(2435), - [anon_sym_get] = ACTIONS(2435), - [anon_sym_set] = ACTIONS(2435), - [anon_sym_declare] = ACTIONS(2435), - [anon_sym_public] = ACTIONS(2435), - [anon_sym_private] = ACTIONS(2435), - [anon_sym_protected] = ACTIONS(2435), - [anon_sym_override] = ACTIONS(2435), - [anon_sym_module] = ACTIONS(2435), - [anon_sym_any] = ACTIONS(2435), - [anon_sym_number] = ACTIONS(2435), - [anon_sym_boolean] = ACTIONS(2435), - [anon_sym_string] = ACTIONS(2435), - [anon_sym_symbol] = ACTIONS(2435), - [anon_sym_object] = ACTIONS(2435), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [anon_sym_declare] = ACTIONS(2371), + [anon_sym_public] = ACTIONS(2371), + [anon_sym_private] = ACTIONS(2371), + [anon_sym_protected] = ACTIONS(2371), + [anon_sym_override] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_any] = ACTIONS(2371), + [anon_sym_number] = ACTIONS(2371), + [anon_sym_boolean] = ACTIONS(2371), + [anon_sym_string] = ACTIONS(2371), + [anon_sym_symbol] = ACTIONS(2371), + [anon_sym_object] = ACTIONS(2371), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [708] = { - [sym__call_signature] = STATE(5772), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), + [712] = { + [sym__call_signature] = STATE(7195), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2439), + [anon_sym_export] = ACTIONS(2441), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2441), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(956), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2441), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -101836,120 +105537,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_readonly] = ACTIONS(2441), + [anon_sym_get] = ACTIONS(2441), + [anon_sym_set] = ACTIONS(2441), + [anon_sym_declare] = ACTIONS(2441), + [anon_sym_public] = ACTIONS(2441), + [anon_sym_private] = ACTIONS(2441), + [anon_sym_protected] = ACTIONS(2441), + [anon_sym_override] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_any] = ACTIONS(2441), + [anon_sym_number] = ACTIONS(2441), + [anon_sym_boolean] = ACTIONS(2441), + [anon_sym_string] = ACTIONS(2441), + [anon_sym_symbol] = ACTIONS(2441), + [anon_sym_object] = ACTIONS(2441), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [709] = { - [sym_statement_block] = STATE(862), - [ts_builtin_sym_end] = ACTIONS(1712), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1714), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1714), - [anon_sym_namespace] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(1712), - [anon_sym_typeof] = ACTIONS(1714), - [anon_sym_import] = ACTIONS(1714), - [anon_sym_with] = ACTIONS(1714), - [anon_sym_var] = ACTIONS(1714), - [anon_sym_let] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_else] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_switch] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_await] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_debugger] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_throw] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_case] = ACTIONS(1714), - [anon_sym_yield] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1712), - [sym_glimmer_opening_tag] = ACTIONS(1712), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_class] = ACTIONS(1714), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_function] = ACTIONS(1714), - [anon_sym_new] = ACTIONS(1714), - [anon_sym_using] = ACTIONS(1714), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_TILDE] = ACTIONS(1712), - [anon_sym_void] = ACTIONS(1714), - [anon_sym_delete] = ACTIONS(1714), - [anon_sym_PLUS_PLUS] = ACTIONS(1712), - [anon_sym_DASH_DASH] = ACTIONS(1712), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1712), - [sym_number] = ACTIONS(1712), - [sym_private_property_identifier] = ACTIONS(1712), - [sym_this] = ACTIONS(1714), - [sym_super] = ACTIONS(1714), - [sym_true] = ACTIONS(1714), - [sym_false] = ACTIONS(1714), - [sym_null] = ACTIONS(1714), - [sym_undefined] = ACTIONS(1714), - [anon_sym_AT] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_readonly] = ACTIONS(1714), - [anon_sym_get] = ACTIONS(1714), - [anon_sym_set] = ACTIONS(1714), - [anon_sym_declare] = ACTIONS(1714), - [anon_sym_public] = ACTIONS(1714), - [anon_sym_private] = ACTIONS(1714), - [anon_sym_protected] = ACTIONS(1714), - [anon_sym_override] = ACTIONS(1714), - [anon_sym_module] = ACTIONS(1714), - [anon_sym_any] = ACTIONS(1714), - [anon_sym_number] = ACTIONS(1714), - [anon_sym_boolean] = ACTIONS(1714), - [anon_sym_string] = ACTIONS(1714), - [anon_sym_symbol] = ACTIONS(1714), - [anon_sym_object] = ACTIONS(1714), - [anon_sym_abstract] = ACTIONS(1714), - [anon_sym_interface] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [sym_html_comment] = ACTIONS(5), - }, - [710] = { - [sym__call_signature] = STATE(5772), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [713] = { + [sym__call_signature] = STATE(7227), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2397), [anon_sym_export] = ACTIONS(2399), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(926), + [anon_sym_EQ] = ACTIONS(936), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2399), [anon_sym_let] = ACTIONS(2399), @@ -101962,7 +105578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2399), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(901), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2399), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -102026,103 +105642,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [711] = { - [sym_statement_block] = STATE(862), - [ts_builtin_sym_end] = ACTIONS(1712), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1714), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1714), - [anon_sym_namespace] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(1712), - [anon_sym_typeof] = ACTIONS(1714), - [anon_sym_import] = ACTIONS(1714), - [anon_sym_with] = ACTIONS(1714), - [anon_sym_var] = ACTIONS(1714), - [anon_sym_let] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_else] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_switch] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_await] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_debugger] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_throw] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_case] = ACTIONS(1714), - [anon_sym_yield] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1712), - [sym_glimmer_opening_tag] = ACTIONS(1712), - [anon_sym_DOT] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_class] = ACTIONS(1714), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_function] = ACTIONS(1714), - [anon_sym_new] = ACTIONS(1714), - [anon_sym_using] = ACTIONS(1714), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_TILDE] = ACTIONS(1712), - [anon_sym_void] = ACTIONS(1714), - [anon_sym_delete] = ACTIONS(1714), - [anon_sym_PLUS_PLUS] = ACTIONS(1712), - [anon_sym_DASH_DASH] = ACTIONS(1712), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1712), - [sym_number] = ACTIONS(1712), - [sym_private_property_identifier] = ACTIONS(1712), - [sym_this] = ACTIONS(1714), - [sym_super] = ACTIONS(1714), - [sym_true] = ACTIONS(1714), - [sym_false] = ACTIONS(1714), - [sym_null] = ACTIONS(1714), - [sym_undefined] = ACTIONS(1714), - [anon_sym_AT] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_readonly] = ACTIONS(1714), - [anon_sym_get] = ACTIONS(1714), - [anon_sym_set] = ACTIONS(1714), - [anon_sym_declare] = ACTIONS(1714), - [anon_sym_public] = ACTIONS(1714), - [anon_sym_private] = ACTIONS(1714), - [anon_sym_protected] = ACTIONS(1714), - [anon_sym_override] = ACTIONS(1714), - [anon_sym_module] = ACTIONS(1714), - [anon_sym_any] = ACTIONS(1714), - [anon_sym_number] = ACTIONS(1714), - [anon_sym_boolean] = ACTIONS(1714), - [anon_sym_string] = ACTIONS(1714), - [anon_sym_symbol] = ACTIONS(1714), - [anon_sym_object] = ACTIONS(1714), - [anon_sym_abstract] = ACTIONS(1714), - [anon_sym_interface] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [sym_html_comment] = ACTIONS(5), - }, - [712] = { - [sym__call_signature] = STATE(5912), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2433), - [anon_sym_export] = ACTIONS(2435), + [714] = { + [sym__call_signature] = STATE(7195), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2439), + [anon_sym_export] = ACTIONS(2441), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(962), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_in] = ACTIONS(122), @@ -102130,11 +105661,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2435), + [anon_sym_async] = ACTIONS(2441), [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(956), [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2435), + [anon_sym_new] = ACTIONS(2441), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), [anon_sym_STAR_EQ] = ACTIONS(168), @@ -102176,617 +105707,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2435), - [anon_sym_readonly] = ACTIONS(2435), - [anon_sym_get] = ACTIONS(2435), - [anon_sym_set] = ACTIONS(2435), - [anon_sym_declare] = ACTIONS(2435), - [anon_sym_public] = ACTIONS(2435), - [anon_sym_private] = ACTIONS(2435), - [anon_sym_protected] = ACTIONS(2435), - [anon_sym_override] = ACTIONS(2435), - [anon_sym_module] = ACTIONS(2435), - [anon_sym_any] = ACTIONS(2435), - [anon_sym_number] = ACTIONS(2435), - [anon_sym_boolean] = ACTIONS(2435), - [anon_sym_string] = ACTIONS(2435), - [anon_sym_symbol] = ACTIONS(2435), - [anon_sym_object] = ACTIONS(2435), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, - [713] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2369), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2378), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_readonly] = ACTIONS(2371), - [anon_sym_get] = ACTIONS(2371), - [anon_sym_set] = ACTIONS(2371), - [anon_sym_declare] = ACTIONS(2371), - [anon_sym_public] = ACTIONS(2371), - [anon_sym_private] = ACTIONS(2371), - [anon_sym_protected] = ACTIONS(2371), - [anon_sym_override] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_any] = ACTIONS(2371), - [anon_sym_number] = ACTIONS(2371), - [anon_sym_boolean] = ACTIONS(2371), - [anon_sym_string] = ACTIONS(2371), - [anon_sym_symbol] = ACTIONS(2371), - [anon_sym_object] = ACTIONS(2371), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, - [714] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2369), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(861), - [anon_sym_of] = ACTIONS(864), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2378), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_readonly] = ACTIONS(2371), - [anon_sym_get] = ACTIONS(2371), - [anon_sym_set] = ACTIONS(2371), - [anon_sym_declare] = ACTIONS(2371), - [anon_sym_public] = ACTIONS(2371), - [anon_sym_private] = ACTIONS(2371), - [anon_sym_protected] = ACTIONS(2371), - [anon_sym_override] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_any] = ACTIONS(2371), - [anon_sym_number] = ACTIONS(2371), - [anon_sym_boolean] = ACTIONS(2371), - [anon_sym_string] = ACTIONS(2371), - [anon_sym_symbol] = ACTIONS(2371), - [anon_sym_object] = ACTIONS(2371), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_readonly] = ACTIONS(2441), + [anon_sym_get] = ACTIONS(2441), + [anon_sym_set] = ACTIONS(2441), + [anon_sym_declare] = ACTIONS(2441), + [anon_sym_public] = ACTIONS(2441), + [anon_sym_private] = ACTIONS(2441), + [anon_sym_protected] = ACTIONS(2441), + [anon_sym_override] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_any] = ACTIONS(2441), + [anon_sym_number] = ACTIONS(2441), + [anon_sym_boolean] = ACTIONS(2441), + [anon_sym_string] = ACTIONS(2441), + [anon_sym_symbol] = ACTIONS(2441), + [anon_sym_object] = ACTIONS(2441), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [715] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_default] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_typeof] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(1861), - [anon_sym_var] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_switch] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_await] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_debugger] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_throw] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_case] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [sym_glimmer_opening_tag] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1859), - [anon_sym_SQUOTE] = ACTIONS(1859), - [anon_sym_class] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_function] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1861), - [anon_sym_using] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(1861), - [anon_sym_delete] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1859), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1859), - [sym_number] = ACTIONS(1859), - [sym_private_property_identifier] = ACTIONS(1859), - [sym_this] = ACTIONS(1861), - [sym_super] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_null] = ACTIONS(1861), - [sym_undefined] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_readonly] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1861), - [anon_sym_private] = ACTIONS(1861), - [anon_sym_protected] = ACTIONS(1861), - [anon_sym_override] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_any] = ACTIONS(1861), - [anon_sym_number] = ACTIONS(1861), - [anon_sym_boolean] = ACTIONS(1861), - [anon_sym_string] = ACTIONS(1861), - [anon_sym_symbol] = ACTIONS(1861), - [anon_sym_object] = ACTIONS(1861), - [anon_sym_abstract] = ACTIONS(1861), - [anon_sym_interface] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [sym__automatic_semicolon] = ACTIONS(1867), - [sym_html_comment] = ACTIONS(5), - }, - [716] = { - [ts_builtin_sym_end] = ACTIONS(1875), - [sym_identifier] = ACTIONS(1877), - [anon_sym_export] = ACTIONS(1877), - [anon_sym_default] = ACTIONS(1877), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_namespace] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_typeof] = ACTIONS(1877), - [anon_sym_import] = ACTIONS(1877), - [anon_sym_with] = ACTIONS(1877), - [anon_sym_var] = ACTIONS(1877), - [anon_sym_let] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_else] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_switch] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_while] = ACTIONS(1877), - [anon_sym_do] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_debugger] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_throw] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1875), - [anon_sym_case] = ACTIONS(1877), - [anon_sym_yield] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1875), - [sym_glimmer_opening_tag] = ACTIONS(1875), - [anon_sym_DQUOTE] = ACTIONS(1875), - [anon_sym_SQUOTE] = ACTIONS(1875), - [anon_sym_class] = ACTIONS(1877), - [anon_sym_async] = ACTIONS(1877), - [anon_sym_function] = ACTIONS(1877), - [anon_sym_new] = ACTIONS(1877), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_SLASH] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1875), - [anon_sym_void] = ACTIONS(1877), - [anon_sym_delete] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1875), - [sym_number] = ACTIONS(1875), - [sym_private_property_identifier] = ACTIONS(1875), - [sym_this] = ACTIONS(1877), - [sym_super] = ACTIONS(1877), - [sym_true] = ACTIONS(1877), - [sym_false] = ACTIONS(1877), - [sym_null] = ACTIONS(1877), - [sym_undefined] = ACTIONS(1877), - [anon_sym_AT] = ACTIONS(1875), - [anon_sym_static] = ACTIONS(1877), - [anon_sym_readonly] = ACTIONS(1877), - [anon_sym_get] = ACTIONS(1877), - [anon_sym_set] = ACTIONS(1877), - [anon_sym_declare] = ACTIONS(1877), - [anon_sym_public] = ACTIONS(1877), - [anon_sym_private] = ACTIONS(1877), - [anon_sym_protected] = ACTIONS(1877), - [anon_sym_override] = ACTIONS(1877), - [anon_sym_module] = ACTIONS(1877), - [anon_sym_any] = ACTIONS(1877), - [anon_sym_number] = ACTIONS(1877), - [anon_sym_boolean] = ACTIONS(1877), - [anon_sym_string] = ACTIONS(1877), - [anon_sym_symbol] = ACTIONS(1877), - [anon_sym_object] = ACTIONS(1877), - [anon_sym_abstract] = ACTIONS(1877), - [anon_sym_interface] = ACTIONS(1877), - [anon_sym_enum] = ACTIONS(1877), - [sym__automatic_semicolon] = ACTIONS(1883), - [sym_html_comment] = ACTIONS(5), - }, - [717] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [sym_identifier] = ACTIONS(1827), - [anon_sym_export] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_typeof] = ACTIONS(1827), - [anon_sym_import] = ACTIONS(1827), - [anon_sym_with] = ACTIONS(1827), - [anon_sym_var] = ACTIONS(1827), - [anon_sym_let] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_else] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_await] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_debugger] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_yield] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1825), - [sym_glimmer_opening_tag] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_async] = ACTIONS(1827), - [anon_sym_function] = ACTIONS(1827), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_void] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1825), - [sym_number] = ACTIONS(1825), - [sym_private_property_identifier] = ACTIONS(1825), - [sym_this] = ACTIONS(1827), - [sym_super] = ACTIONS(1827), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_readonly] = ACTIONS(1827), - [anon_sym_get] = ACTIONS(1827), - [anon_sym_set] = ACTIONS(1827), - [anon_sym_declare] = ACTIONS(1827), - [anon_sym_public] = ACTIONS(1827), - [anon_sym_private] = ACTIONS(1827), - [anon_sym_protected] = ACTIONS(1827), - [anon_sym_override] = ACTIONS(1827), - [anon_sym_module] = ACTIONS(1827), - [anon_sym_any] = ACTIONS(1827), - [anon_sym_number] = ACTIONS(1827), - [anon_sym_boolean] = ACTIONS(1827), - [anon_sym_string] = ACTIONS(1827), - [anon_sym_symbol] = ACTIONS(1827), - [anon_sym_object] = ACTIONS(1827), - [anon_sym_abstract] = ACTIONS(1827), - [anon_sym_interface] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [sym__automatic_semicolon] = ACTIONS(1833), - [sym_html_comment] = ACTIONS(5), - }, - [718] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_typeof] = ACTIONS(1803), - [anon_sym_import] = ACTIONS(1803), - [anon_sym_with] = ACTIONS(1803), - [anon_sym_var] = ACTIONS(1803), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_await] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_debugger] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1801), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [sym__automatic_semicolon] = ACTIONS(1809), - [sym_html_comment] = ACTIONS(5), - }, - [719] = { - [ts_builtin_sym_end] = ACTIONS(1734), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1736), - [anon_sym_default] = ACTIONS(1736), - [anon_sym_type] = ACTIONS(1736), - [anon_sym_namespace] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_typeof] = ACTIONS(1736), - [anon_sym_import] = ACTIONS(1736), - [anon_sym_with] = ACTIONS(1736), - [anon_sym_var] = ACTIONS(1736), - [anon_sym_let] = ACTIONS(1736), - [anon_sym_const] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1736), - [anon_sym_switch] = ACTIONS(1736), - [anon_sym_for] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_while] = ACTIONS(1736), - [anon_sym_do] = ACTIONS(1736), - [anon_sym_try] = ACTIONS(1736), - [anon_sym_break] = ACTIONS(1736), - [anon_sym_continue] = ACTIONS(1736), - [anon_sym_debugger] = ACTIONS(1736), - [anon_sym_return] = ACTIONS(1736), - [anon_sym_throw] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_case] = ACTIONS(1736), - [anon_sym_yield] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1734), - [sym_glimmer_opening_tag] = ACTIONS(1734), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1734), - [anon_sym_class] = ACTIONS(1736), - [anon_sym_async] = ACTIONS(1736), - [anon_sym_function] = ACTIONS(1736), - [anon_sym_new] = ACTIONS(1736), - [anon_sym_using] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1736), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(1734), - [anon_sym_void] = ACTIONS(1736), - [anon_sym_delete] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1734), - [sym_number] = ACTIONS(1734), - [sym_private_property_identifier] = ACTIONS(1734), - [sym_this] = ACTIONS(1736), - [sym_super] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_null] = ACTIONS(1736), - [sym_undefined] = ACTIONS(1736), - [anon_sym_AT] = ACTIONS(1734), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_readonly] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(1736), - [anon_sym_set] = ACTIONS(1736), - [anon_sym_declare] = ACTIONS(1736), - [anon_sym_public] = ACTIONS(1736), - [anon_sym_private] = ACTIONS(1736), - [anon_sym_protected] = ACTIONS(1736), - [anon_sym_override] = ACTIONS(1736), - [anon_sym_module] = ACTIONS(1736), - [anon_sym_any] = ACTIONS(1736), - [anon_sym_number] = ACTIONS(1736), - [anon_sym_boolean] = ACTIONS(1736), - [anon_sym_string] = ACTIONS(1736), - [anon_sym_symbol] = ACTIONS(1736), - [anon_sym_object] = ACTIONS(1736), - [anon_sym_abstract] = ACTIONS(1736), - [anon_sym_interface] = ACTIONS(1736), - [anon_sym_enum] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1742), - [sym_html_comment] = ACTIONS(5), - }, - [720] = { [ts_builtin_sym_end] = ACTIONS(2443), [sym_identifier] = ACTIONS(2445), [anon_sym_export] = ACTIONS(2445), @@ -102870,7 +105811,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(2443), [sym_html_comment] = ACTIONS(5), }, - [721] = { + [716] = { + [ts_builtin_sym_end] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1746), + [anon_sym_default] = ACTIONS(1746), + [anon_sym_type] = ACTIONS(1746), + [anon_sym_namespace] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1746), + [anon_sym_import] = ACTIONS(1746), + [anon_sym_with] = ACTIONS(1746), + [anon_sym_var] = ACTIONS(1746), + [anon_sym_let] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1746), + [anon_sym_if] = ACTIONS(1746), + [anon_sym_switch] = ACTIONS(1746), + [anon_sym_for] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1744), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_while] = ACTIONS(1746), + [anon_sym_do] = ACTIONS(1746), + [anon_sym_try] = ACTIONS(1746), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1746), + [anon_sym_debugger] = ACTIONS(1746), + [anon_sym_return] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1746), + [anon_sym_yield] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1744), + [sym_glimmer_opening_tag] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1744), + [anon_sym_class] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_function] = ACTIONS(1746), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1746), + [anon_sym_DASH] = ACTIONS(1746), + [anon_sym_SLASH] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1746), + [anon_sym_TILDE] = ACTIONS(1744), + [anon_sym_void] = ACTIONS(1746), + [anon_sym_delete] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1744), + [sym_number] = ACTIONS(1744), + [sym_private_property_identifier] = ACTIONS(1744), + [sym_this] = ACTIONS(1746), + [sym_super] = ACTIONS(1746), + [sym_true] = ACTIONS(1746), + [sym_false] = ACTIONS(1746), + [sym_null] = ACTIONS(1746), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1746), + [anon_sym_readonly] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1746), + [anon_sym_declare] = ACTIONS(1746), + [anon_sym_public] = ACTIONS(1746), + [anon_sym_private] = ACTIONS(1746), + [anon_sym_protected] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(1746), + [anon_sym_module] = ACTIONS(1746), + [anon_sym_any] = ACTIONS(1746), + [anon_sym_number] = ACTIONS(1746), + [anon_sym_boolean] = ACTIONS(1746), + [anon_sym_string] = ACTIONS(1746), + [anon_sym_symbol] = ACTIONS(1746), + [anon_sym_object] = ACTIONS(1746), + [anon_sym_abstract] = ACTIONS(1746), + [anon_sym_interface] = ACTIONS(1746), + [anon_sym_enum] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_html_comment] = ACTIONS(5), + }, + [717] = { + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1837), + [anon_sym_default] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_namespace] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_typeof] = ACTIONS(1837), + [anon_sym_import] = ACTIONS(1837), + [anon_sym_with] = ACTIONS(1837), + [anon_sym_var] = ACTIONS(1837), + [anon_sym_let] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_switch] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_while] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_debugger] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_throw] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_case] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [sym_glimmer_opening_tag] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1835), + [anon_sym_class] = ACTIONS(1837), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(1837), + [anon_sym_new] = ACTIONS(1837), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_void] = ACTIONS(1837), + [anon_sym_delete] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1835), + [sym_number] = ACTIONS(1835), + [sym_private_property_identifier] = ACTIONS(1835), + [sym_this] = ACTIONS(1837), + [sym_super] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_null] = ACTIONS(1837), + [sym_undefined] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1835), + [anon_sym_static] = ACTIONS(1837), + [anon_sym_readonly] = ACTIONS(1837), + [anon_sym_get] = ACTIONS(1837), + [anon_sym_set] = ACTIONS(1837), + [anon_sym_declare] = ACTIONS(1837), + [anon_sym_public] = ACTIONS(1837), + [anon_sym_private] = ACTIONS(1837), + [anon_sym_protected] = ACTIONS(1837), + [anon_sym_override] = ACTIONS(1837), + [anon_sym_module] = ACTIONS(1837), + [anon_sym_any] = ACTIONS(1837), + [anon_sym_number] = ACTIONS(1837), + [anon_sym_boolean] = ACTIONS(1837), + [anon_sym_string] = ACTIONS(1837), + [anon_sym_symbol] = ACTIONS(1837), + [anon_sym_object] = ACTIONS(1837), + [anon_sym_abstract] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [sym_html_comment] = ACTIONS(5), + }, + [718] = { + [sym_else_clause] = STATE(814), [ts_builtin_sym_end] = ACTIONS(2447), [sym_identifier] = ACTIONS(2449), [anon_sym_export] = ACTIONS(2449), @@ -102886,7 +105996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2449), [anon_sym_const] = ACTIONS(2449), [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_else] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2451), [anon_sym_if] = ACTIONS(2449), [anon_sym_switch] = ACTIONS(2449), [anon_sym_for] = ACTIONS(2449), @@ -102902,7 +106012,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2449), [anon_sym_SEMI] = ACTIONS(2447), [anon_sym_case] = ACTIONS(2449), - [anon_sym_finally] = ACTIONS(2449), [anon_sym_yield] = ACTIONS(2449), [anon_sym_LBRACK] = ACTIONS(2447), [sym_glimmer_opening_tag] = ACTIONS(2447), @@ -102954,679 +106063,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2449), [sym_html_comment] = ACTIONS(5), }, - [722] = { - [ts_builtin_sym_end] = ACTIONS(2451), - [sym_identifier] = ACTIONS(2453), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_default] = ACTIONS(2453), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_typeof] = ACTIONS(2453), - [anon_sym_import] = ACTIONS(2453), - [anon_sym_with] = ACTIONS(2453), - [anon_sym_var] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_else] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_switch] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_await] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_debugger] = ACTIONS(2453), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_throw] = ACTIONS(2453), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_case] = ACTIONS(2453), - [anon_sym_finally] = ACTIONS(2453), - [anon_sym_yield] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2451), - [sym_glimmer_opening_tag] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_class] = ACTIONS(2453), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2453), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_using] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_SLASH] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_void] = ACTIONS(2453), - [anon_sym_delete] = ACTIONS(2453), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2451), - [sym_number] = ACTIONS(2451), - [sym_private_property_identifier] = ACTIONS(2451), - [sym_this] = ACTIONS(2453), - [sym_super] = ACTIONS(2453), - [sym_true] = ACTIONS(2453), - [sym_false] = ACTIONS(2453), - [sym_null] = ACTIONS(2453), - [sym_undefined] = ACTIONS(2453), - [anon_sym_AT] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_readonly] = ACTIONS(2453), - [anon_sym_get] = ACTIONS(2453), - [anon_sym_set] = ACTIONS(2453), - [anon_sym_declare] = ACTIONS(2453), - [anon_sym_public] = ACTIONS(2453), - [anon_sym_private] = ACTIONS(2453), - [anon_sym_protected] = ACTIONS(2453), - [anon_sym_override] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_any] = ACTIONS(2453), - [anon_sym_number] = ACTIONS(2453), - [anon_sym_boolean] = ACTIONS(2453), - [anon_sym_string] = ACTIONS(2453), - [anon_sym_symbol] = ACTIONS(2453), - [anon_sym_object] = ACTIONS(2453), - [anon_sym_abstract] = ACTIONS(2453), - [anon_sym_interface] = ACTIONS(2453), - [anon_sym_enum] = ACTIONS(2453), - [sym_html_comment] = ACTIONS(5), - }, - [723] = { - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1813), - [anon_sym_default] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_typeof] = ACTIONS(1813), - [anon_sym_import] = ACTIONS(1813), - [anon_sym_with] = ACTIONS(1813), - [anon_sym_var] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_switch] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_await] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_do] = ACTIONS(1813), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_debugger] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_throw] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1813), - [anon_sym_yield] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [sym_glimmer_opening_tag] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1811), - [anon_sym_SQUOTE] = ACTIONS(1811), - [anon_sym_class] = ACTIONS(1813), - [anon_sym_async] = ACTIONS(1813), - [anon_sym_function] = ACTIONS(1813), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_using] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_void] = ACTIONS(1813), - [anon_sym_delete] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1811), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1811), - [sym_number] = ACTIONS(1811), - [sym_private_property_identifier] = ACTIONS(1811), - [sym_this] = ACTIONS(1813), - [sym_super] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_null] = ACTIONS(1813), - [sym_undefined] = ACTIONS(1813), - [anon_sym_AT] = ACTIONS(1811), - [anon_sym_static] = ACTIONS(1813), - [anon_sym_readonly] = ACTIONS(1813), - [anon_sym_get] = ACTIONS(1813), - [anon_sym_set] = ACTIONS(1813), - [anon_sym_declare] = ACTIONS(1813), - [anon_sym_public] = ACTIONS(1813), - [anon_sym_private] = ACTIONS(1813), - [anon_sym_protected] = ACTIONS(1813), - [anon_sym_override] = ACTIONS(1813), - [anon_sym_module] = ACTIONS(1813), - [anon_sym_any] = ACTIONS(1813), - [anon_sym_number] = ACTIONS(1813), - [anon_sym_boolean] = ACTIONS(1813), - [anon_sym_string] = ACTIONS(1813), - [anon_sym_symbol] = ACTIONS(1813), - [anon_sym_object] = ACTIONS(1813), - [anon_sym_abstract] = ACTIONS(1813), - [anon_sym_interface] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [sym__automatic_semicolon] = ACTIONS(1819), - [sym_html_comment] = ACTIONS(5), - }, - [724] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_typeof] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_switch] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_debugger] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_throw] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [sym_glimmer_opening_tag] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_function] = ACTIONS(1887), - [anon_sym_new] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_void] = ACTIONS(1887), - [anon_sym_delete] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1885), - [sym_number] = ACTIONS(1885), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(1887), - [sym_super] = ACTIONS(1887), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_null] = ACTIONS(1887), - [sym_undefined] = ACTIONS(1887), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_readonly] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1887), - [anon_sym_set] = ACTIONS(1887), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_interface] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [sym__automatic_semicolon] = ACTIONS(1893), - [sym_html_comment] = ACTIONS(5), - }, - [725] = { - [ts_builtin_sym_end] = ACTIONS(2455), - [sym_identifier] = ACTIONS(2457), - [anon_sym_export] = ACTIONS(2457), - [anon_sym_default] = ACTIONS(2457), - [anon_sym_type] = ACTIONS(2457), - [anon_sym_namespace] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_typeof] = ACTIONS(2457), - [anon_sym_import] = ACTIONS(2457), - [anon_sym_with] = ACTIONS(2457), - [anon_sym_var] = ACTIONS(2457), - [anon_sym_let] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_switch] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2455), - [anon_sym_await] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_debugger] = ACTIONS(2457), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_throw] = ACTIONS(2457), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_case] = ACTIONS(2457), - [anon_sym_yield] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2455), - [sym_glimmer_opening_tag] = ACTIONS(2455), - [anon_sym_DQUOTE] = ACTIONS(2455), - [anon_sym_SQUOTE] = ACTIONS(2455), - [anon_sym_class] = ACTIONS(2457), - [anon_sym_async] = ACTIONS(2457), - [anon_sym_function] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2457), - [anon_sym_using] = ACTIONS(2457), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_SLASH] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_void] = ACTIONS(2457), - [anon_sym_delete] = ACTIONS(2457), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2455), - [sym_number] = ACTIONS(2455), - [sym_private_property_identifier] = ACTIONS(2455), - [sym_this] = ACTIONS(2457), - [sym_super] = ACTIONS(2457), - [sym_true] = ACTIONS(2457), - [sym_false] = ACTIONS(2457), - [sym_null] = ACTIONS(2457), - [sym_undefined] = ACTIONS(2457), - [anon_sym_AT] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2457), - [anon_sym_readonly] = ACTIONS(2457), - [anon_sym_get] = ACTIONS(2457), - [anon_sym_set] = ACTIONS(2457), - [anon_sym_declare] = ACTIONS(2457), - [anon_sym_public] = ACTIONS(2457), - [anon_sym_private] = ACTIONS(2457), - [anon_sym_protected] = ACTIONS(2457), - [anon_sym_override] = ACTIONS(2457), - [anon_sym_module] = ACTIONS(2457), - [anon_sym_any] = ACTIONS(2457), - [anon_sym_number] = ACTIONS(2457), - [anon_sym_boolean] = ACTIONS(2457), - [anon_sym_string] = ACTIONS(2457), - [anon_sym_symbol] = ACTIONS(2457), - [anon_sym_object] = ACTIONS(2457), - [anon_sym_abstract] = ACTIONS(2457), - [anon_sym_interface] = ACTIONS(2457), - [anon_sym_enum] = ACTIONS(2457), - [sym_html_comment] = ACTIONS(5), - }, - [726] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2369), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2378), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_readonly] = ACTIONS(2371), - [anon_sym_get] = ACTIONS(2371), - [anon_sym_set] = ACTIONS(2371), - [anon_sym_declare] = ACTIONS(2371), - [anon_sym_public] = ACTIONS(2371), - [anon_sym_private] = ACTIONS(2371), - [anon_sym_protected] = ACTIONS(2371), - [anon_sym_override] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_any] = ACTIONS(2371), - [anon_sym_number] = ACTIONS(2371), - [anon_sym_boolean] = ACTIONS(2371), - [anon_sym_string] = ACTIONS(2371), - [anon_sym_symbol] = ACTIONS(2371), - [anon_sym_object] = ACTIONS(2371), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), - [sym_html_comment] = ACTIONS(5), - }, - [727] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2369), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2378), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_readonly] = ACTIONS(2371), - [anon_sym_get] = ACTIONS(2371), - [anon_sym_set] = ACTIONS(2371), - [anon_sym_declare] = ACTIONS(2371), - [anon_sym_public] = ACTIONS(2371), - [anon_sym_private] = ACTIONS(2371), - [anon_sym_protected] = ACTIONS(2371), - [anon_sym_override] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_any] = ACTIONS(2371), - [anon_sym_number] = ACTIONS(2371), - [anon_sym_boolean] = ACTIONS(2371), - [anon_sym_string] = ACTIONS(2371), - [anon_sym_symbol] = ACTIONS(2371), - [anon_sym_object] = ACTIONS(2371), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), + [719] = { + [ts_builtin_sym_end] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2455), + [anon_sym_export] = ACTIONS(2455), + [anon_sym_default] = ACTIONS(2455), + [anon_sym_type] = ACTIONS(2455), + [anon_sym_namespace] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_typeof] = ACTIONS(2455), + [anon_sym_import] = ACTIONS(2455), + [anon_sym_with] = ACTIONS(2455), + [anon_sym_var] = ACTIONS(2455), + [anon_sym_let] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_switch] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_await] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_debugger] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_case] = ACTIONS(2455), + [anon_sym_yield] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2453), + [sym_glimmer_opening_tag] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_class] = ACTIONS(2455), + [anon_sym_async] = ACTIONS(2455), + [anon_sym_function] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2455), + [anon_sym_using] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_SLASH] = ACTIONS(2455), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_void] = ACTIONS(2455), + [anon_sym_delete] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2453), + [sym_number] = ACTIONS(2453), + [sym_private_property_identifier] = ACTIONS(2453), + [sym_this] = ACTIONS(2455), + [sym_super] = ACTIONS(2455), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_null] = ACTIONS(2455), + [sym_undefined] = ACTIONS(2455), + [anon_sym_AT] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_readonly] = ACTIONS(2455), + [anon_sym_get] = ACTIONS(2455), + [anon_sym_set] = ACTIONS(2455), + [anon_sym_declare] = ACTIONS(2455), + [anon_sym_public] = ACTIONS(2455), + [anon_sym_private] = ACTIONS(2455), + [anon_sym_protected] = ACTIONS(2455), + [anon_sym_override] = ACTIONS(2455), + [anon_sym_module] = ACTIONS(2455), + [anon_sym_any] = ACTIONS(2455), + [anon_sym_number] = ACTIONS(2455), + [anon_sym_boolean] = ACTIONS(2455), + [anon_sym_string] = ACTIONS(2455), + [anon_sym_symbol] = ACTIONS(2455), + [anon_sym_object] = ACTIONS(2455), + [anon_sym_abstract] = ACTIONS(2455), + [anon_sym_interface] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [sym__automatic_semicolon] = ACTIONS(2457), [sym_html_comment] = ACTIONS(5), }, - [728] = { - [ts_builtin_sym_end] = ACTIONS(1895), - [sym_identifier] = ACTIONS(1897), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_default] = ACTIONS(1897), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_namespace] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_typeof] = ACTIONS(1897), - [anon_sym_import] = ACTIONS(1897), - [anon_sym_with] = ACTIONS(1897), - [anon_sym_var] = ACTIONS(1897), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_switch] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_await] = ACTIONS(1897), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_do] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_debugger] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_throw] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1897), - [anon_sym_yield] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1895), - [sym_glimmer_opening_tag] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1895), - [anon_sym_SQUOTE] = ACTIONS(1895), - [anon_sym_class] = ACTIONS(1897), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1897), - [anon_sym_new] = ACTIONS(1897), - [anon_sym_using] = ACTIONS(1897), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_SLASH] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_void] = ACTIONS(1897), - [anon_sym_delete] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1895), - [sym_number] = ACTIONS(1895), - [sym_private_property_identifier] = ACTIONS(1895), - [sym_this] = ACTIONS(1897), - [sym_super] = ACTIONS(1897), - [sym_true] = ACTIONS(1897), - [sym_false] = ACTIONS(1897), - [sym_null] = ACTIONS(1897), - [sym_undefined] = ACTIONS(1897), - [anon_sym_AT] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_readonly] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1897), - [anon_sym_set] = ACTIONS(1897), - [anon_sym_declare] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_protected] = ACTIONS(1897), - [anon_sym_override] = ACTIONS(1897), - [anon_sym_module] = ACTIONS(1897), - [anon_sym_any] = ACTIONS(1897), - [anon_sym_number] = ACTIONS(1897), - [anon_sym_boolean] = ACTIONS(1897), - [anon_sym_string] = ACTIONS(1897), - [anon_sym_symbol] = ACTIONS(1897), - [anon_sym_object] = ACTIONS(1897), - [anon_sym_abstract] = ACTIONS(1897), - [anon_sym_interface] = ACTIONS(1897), - [anon_sym_enum] = ACTIONS(1897), - [sym__automatic_semicolon] = ACTIONS(1903), + [720] = { + [ts_builtin_sym_end] = ACTIONS(1881), + [sym_identifier] = ACTIONS(1883), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_namespace] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_typeof] = ACTIONS(1883), + [anon_sym_import] = ACTIONS(1883), + [anon_sym_with] = ACTIONS(1883), + [anon_sym_var] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_switch] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_await] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_debugger] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_throw] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_case] = ACTIONS(1883), + [anon_sym_yield] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1881), + [sym_glimmer_opening_tag] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_class] = ACTIONS(1883), + [anon_sym_async] = ACTIONS(1883), + [anon_sym_function] = ACTIONS(1883), + [anon_sym_new] = ACTIONS(1883), + [anon_sym_using] = ACTIONS(1883), + [anon_sym_PLUS] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_SLASH] = ACTIONS(1883), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_void] = ACTIONS(1883), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1881), + [sym_number] = ACTIONS(1881), + [sym_private_property_identifier] = ACTIONS(1881), + [sym_this] = ACTIONS(1883), + [sym_super] = ACTIONS(1883), + [sym_true] = ACTIONS(1883), + [sym_false] = ACTIONS(1883), + [sym_null] = ACTIONS(1883), + [sym_undefined] = ACTIONS(1883), + [anon_sym_AT] = ACTIONS(1881), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_readonly] = ACTIONS(1883), + [anon_sym_get] = ACTIONS(1883), + [anon_sym_set] = ACTIONS(1883), + [anon_sym_declare] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_private] = ACTIONS(1883), + [anon_sym_protected] = ACTIONS(1883), + [anon_sym_override] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_any] = ACTIONS(1883), + [anon_sym_number] = ACTIONS(1883), + [anon_sym_boolean] = ACTIONS(1883), + [anon_sym_string] = ACTIONS(1883), + [anon_sym_symbol] = ACTIONS(1883), + [anon_sym_object] = ACTIONS(1883), + [anon_sym_abstract] = ACTIONS(1883), + [anon_sym_interface] = ACTIONS(1883), + [anon_sym_enum] = ACTIONS(1883), + [sym__automatic_semicolon] = ACTIONS(1889), [sym_html_comment] = ACTIONS(5), }, - [729] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), - [sym_identifier] = ACTIONS(2369), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(162), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(162), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_SLASH_EQ] = ACTIONS(168), - [anon_sym_PERCENT_EQ] = ACTIONS(168), - [anon_sym_CARET_EQ] = ACTIONS(168), - [anon_sym_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_EQ] = ACTIONS(168), - [anon_sym_GT_GT_EQ] = ACTIONS(168), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), - [anon_sym_LT_LT_EQ] = ACTIONS(168), - [anon_sym_STAR_STAR_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP_EQ] = ACTIONS(168), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2378), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(162), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(162), - [anon_sym_GT_EQ] = ACTIONS(162), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(162), - [anon_sym_DASH_DASH] = ACTIONS(162), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_readonly] = ACTIONS(2371), - [anon_sym_get] = ACTIONS(2371), - [anon_sym_set] = ACTIONS(2371), - [anon_sym_declare] = ACTIONS(2371), - [anon_sym_public] = ACTIONS(2371), - [anon_sym_private] = ACTIONS(2371), - [anon_sym_protected] = ACTIONS(2371), - [anon_sym_override] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_any] = ACTIONS(2371), - [anon_sym_number] = ACTIONS(2371), - [anon_sym_boolean] = ACTIONS(2371), - [anon_sym_string] = ACTIONS(2371), - [anon_sym_symbol] = ACTIONS(2371), - [anon_sym_object] = ACTIONS(2371), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(162), + [721] = { + [sym_statement_block] = STATE(795), + [ts_builtin_sym_end] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_type] = ACTIONS(1704), + [anon_sym_namespace] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym_import] = ACTIONS(1704), + [anon_sym_with] = ACTIONS(1704), + [anon_sym_var] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_else] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_await] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1704), + [anon_sym_try] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_debugger] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_throw] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_yield] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1702), + [sym_glimmer_opening_tag] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_class] = ACTIONS(1704), + [anon_sym_async] = ACTIONS(1704), + [anon_sym_function] = ACTIONS(1704), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_using] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_void] = ACTIONS(1704), + [anon_sym_delete] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [sym_private_property_identifier] = ACTIONS(1702), + [sym_this] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_true] = ACTIONS(1704), + [sym_false] = ACTIONS(1704), + [sym_null] = ACTIONS(1704), + [sym_undefined] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_readonly] = ACTIONS(1704), + [anon_sym_get] = ACTIONS(1704), + [anon_sym_set] = ACTIONS(1704), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_public] = ACTIONS(1704), + [anon_sym_private] = ACTIONS(1704), + [anon_sym_protected] = ACTIONS(1704), + [anon_sym_override] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1704), + [anon_sym_any] = ACTIONS(1704), + [anon_sym_number] = ACTIONS(1704), + [anon_sym_boolean] = ACTIONS(1704), + [anon_sym_string] = ACTIONS(1704), + [anon_sym_symbol] = ACTIONS(1704), + [anon_sym_object] = ACTIONS(1704), + [anon_sym_abstract] = ACTIONS(1704), + [anon_sym_interface] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), [sym_html_comment] = ACTIONS(5), }, - [730] = { + [722] = { [ts_builtin_sym_end] = ACTIONS(2459), [sym_identifier] = ACTIONS(2461), [anon_sym_export] = ACTIONS(2461), @@ -103658,6 +106347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2461), [anon_sym_SEMI] = ACTIONS(2459), [anon_sym_case] = ACTIONS(2461), + [anon_sym_finally] = ACTIONS(2461), [anon_sym_yield] = ACTIONS(2461), [anon_sym_LBRACK] = ACTIONS(2459), [sym_glimmer_opening_tag] = ACTIONS(2459), @@ -103707,10 +106397,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2461), [anon_sym_interface] = ACTIONS(2461), [anon_sym_enum] = ACTIONS(2461), - [sym__automatic_semicolon] = ACTIONS(2459), [sym_html_comment] = ACTIONS(5), }, - [731] = { + [723] = { + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2371), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [anon_sym_declare] = ACTIONS(2371), + [anon_sym_public] = ACTIONS(2371), + [anon_sym_private] = ACTIONS(2371), + [anon_sym_protected] = ACTIONS(2371), + [anon_sym_override] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_any] = ACTIONS(2371), + [anon_sym_number] = ACTIONS(2371), + [anon_sym_boolean] = ACTIONS(2371), + [anon_sym_string] = ACTIONS(2371), + [anon_sym_symbol] = ACTIONS(2371), + [anon_sym_object] = ACTIONS(2371), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [724] = { [ts_builtin_sym_end] = ACTIONS(2463), [sym_identifier] = ACTIONS(2465), [anon_sym_export] = ACTIONS(2465), @@ -103731,6 +106504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2465), [anon_sym_for] = ACTIONS(2465), [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2463), [anon_sym_await] = ACTIONS(2465), [anon_sym_while] = ACTIONS(2465), [anon_sym_do] = ACTIONS(2465), @@ -103742,7 +106516,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2465), [anon_sym_SEMI] = ACTIONS(2463), [anon_sym_case] = ACTIONS(2465), - [anon_sym_finally] = ACTIONS(2465), [anon_sym_yield] = ACTIONS(2465), [anon_sym_LBRACK] = ACTIONS(2463), [sym_glimmer_opening_tag] = ACTIONS(2463), @@ -103794,7 +106567,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2465), [sym_html_comment] = ACTIONS(5), }, - [732] = { + [725] = { + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2371), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [anon_sym_declare] = ACTIONS(2371), + [anon_sym_public] = ACTIONS(2371), + [anon_sym_private] = ACTIONS(2371), + [anon_sym_protected] = ACTIONS(2371), + [anon_sym_override] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_any] = ACTIONS(2371), + [anon_sym_number] = ACTIONS(2371), + [anon_sym_boolean] = ACTIONS(2371), + [anon_sym_string] = ACTIONS(2371), + [anon_sym_symbol] = ACTIONS(2371), + [anon_sym_object] = ACTIONS(2371), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [726] = { [ts_builtin_sym_end] = ACTIONS(2467), [sym_identifier] = ACTIONS(2469), [anon_sym_export] = ACTIONS(2469), @@ -103815,6 +106672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2469), [anon_sym_for] = ACTIONS(2469), [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_RPAREN] = ACTIONS(2467), [anon_sym_await] = ACTIONS(2469), [anon_sym_while] = ACTIONS(2469), [anon_sym_do] = ACTIONS(2469), @@ -103824,7 +106682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(2469), [anon_sym_return] = ACTIONS(2469), [anon_sym_throw] = ACTIONS(2469), - [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2467), [anon_sym_case] = ACTIONS(2469), [anon_sym_yield] = ACTIONS(2469), [anon_sym_LBRACK] = ACTIONS(2467), @@ -103875,18 +106733,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2469), [anon_sym_interface] = ACTIONS(2469), [anon_sym_enum] = ACTIONS(2469), - [sym__automatic_semicolon] = ACTIONS(2471), [sym_html_comment] = ACTIONS(5), }, - [733] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [727] = { + [ts_builtin_sym_end] = ACTIONS(1861), + [sym_identifier] = ACTIONS(1863), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_default] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_typeof] = ACTIONS(1863), + [anon_sym_import] = ACTIONS(1863), + [anon_sym_with] = ACTIONS(1863), + [anon_sym_var] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1861), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_switch] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_debugger] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_throw] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_case] = ACTIONS(1863), + [anon_sym_yield] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1861), + [sym_glimmer_opening_tag] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [anon_sym_SQUOTE] = ACTIONS(1861), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1863), + [anon_sym_function] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_using] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_void] = ACTIONS(1863), + [anon_sym_delete] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1861), + [sym_number] = ACTIONS(1861), + [sym_private_property_identifier] = ACTIONS(1861), + [sym_this] = ACTIONS(1863), + [sym_super] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [sym_false] = ACTIONS(1863), + [sym_null] = ACTIONS(1863), + [sym_undefined] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(1863), + [anon_sym_get] = ACTIONS(1863), + [anon_sym_set] = ACTIONS(1863), + [anon_sym_declare] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_private] = ACTIONS(1863), + [anon_sym_protected] = ACTIONS(1863), + [anon_sym_override] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_any] = ACTIONS(1863), + [anon_sym_number] = ACTIONS(1863), + [anon_sym_boolean] = ACTIONS(1863), + [anon_sym_string] = ACTIONS(1863), + [anon_sym_symbol] = ACTIONS(1863), + [anon_sym_object] = ACTIONS(1863), + [anon_sym_abstract] = ACTIONS(1863), + [anon_sym_interface] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [sym__automatic_semicolon] = ACTIONS(1869), + [sym_html_comment] = ACTIONS(5), + }, + [728] = { + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_identifier] = ACTIONS(1893), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_namespace] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_typeof] = ACTIONS(1893), + [anon_sym_import] = ACTIONS(1893), + [anon_sym_with] = ACTIONS(1893), + [anon_sym_var] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_switch] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_await] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_debugger] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_case] = ACTIONS(1893), + [anon_sym_yield] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1891), + [sym_glimmer_opening_tag] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1891), + [anon_sym_SQUOTE] = ACTIONS(1891), + [anon_sym_class] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_function] = ACTIONS(1893), + [anon_sym_new] = ACTIONS(1893), + [anon_sym_using] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_void] = ACTIONS(1893), + [anon_sym_delete] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1891), + [sym_number] = ACTIONS(1891), + [sym_private_property_identifier] = ACTIONS(1891), + [sym_this] = ACTIONS(1893), + [sym_super] = ACTIONS(1893), + [sym_true] = ACTIONS(1893), + [sym_false] = ACTIONS(1893), + [sym_null] = ACTIONS(1893), + [sym_undefined] = ACTIONS(1893), + [anon_sym_AT] = ACTIONS(1891), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_readonly] = ACTIONS(1893), + [anon_sym_get] = ACTIONS(1893), + [anon_sym_set] = ACTIONS(1893), + [anon_sym_declare] = ACTIONS(1893), + [anon_sym_public] = ACTIONS(1893), + [anon_sym_private] = ACTIONS(1893), + [anon_sym_protected] = ACTIONS(1893), + [anon_sym_override] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_any] = ACTIONS(1893), + [anon_sym_number] = ACTIONS(1893), + [anon_sym_boolean] = ACTIONS(1893), + [anon_sym_string] = ACTIONS(1893), + [anon_sym_symbol] = ACTIONS(1893), + [anon_sym_object] = ACTIONS(1893), + [anon_sym_abstract] = ACTIONS(1893), + [anon_sym_interface] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), + [sym__automatic_semicolon] = ACTIONS(1899), + [sym_html_comment] = ACTIONS(5), + }, + [729] = { + [ts_builtin_sym_end] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1736), + [anon_sym_default] = ACTIONS(1736), + [anon_sym_type] = ACTIONS(1736), + [anon_sym_namespace] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_typeof] = ACTIONS(1736), + [anon_sym_import] = ACTIONS(1736), + [anon_sym_with] = ACTIONS(1736), + [anon_sym_var] = ACTIONS(1736), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(1736), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_for] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_await] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1736), + [anon_sym_do] = ACTIONS(1736), + [anon_sym_try] = ACTIONS(1736), + [anon_sym_break] = ACTIONS(1736), + [anon_sym_continue] = ACTIONS(1736), + [anon_sym_debugger] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1736), + [anon_sym_throw] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1736), + [anon_sym_yield] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1734), + [sym_glimmer_opening_tag] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_class] = ACTIONS(1736), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_function] = ACTIONS(1736), + [anon_sym_new] = ACTIONS(1736), + [anon_sym_using] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_SLASH] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(1734), + [anon_sym_void] = ACTIONS(1736), + [anon_sym_delete] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1734), + [sym_number] = ACTIONS(1734), + [sym_private_property_identifier] = ACTIONS(1734), + [sym_this] = ACTIONS(1736), + [sym_super] = ACTIONS(1736), + [sym_true] = ACTIONS(1736), + [sym_false] = ACTIONS(1736), + [sym_null] = ACTIONS(1736), + [sym_undefined] = ACTIONS(1736), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1736), + [anon_sym_readonly] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(1736), + [anon_sym_set] = ACTIONS(1736), + [anon_sym_declare] = ACTIONS(1736), + [anon_sym_public] = ACTIONS(1736), + [anon_sym_private] = ACTIONS(1736), + [anon_sym_protected] = ACTIONS(1736), + [anon_sym_override] = ACTIONS(1736), + [anon_sym_module] = ACTIONS(1736), + [anon_sym_any] = ACTIONS(1736), + [anon_sym_number] = ACTIONS(1736), + [anon_sym_boolean] = ACTIONS(1736), + [anon_sym_string] = ACTIONS(1736), + [anon_sym_symbol] = ACTIONS(1736), + [anon_sym_object] = ACTIONS(1736), + [anon_sym_abstract] = ACTIONS(1736), + [anon_sym_interface] = ACTIONS(1736), + [anon_sym_enum] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1742), + [sym_html_comment] = ACTIONS(5), + }, + [730] = { + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2369), [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(984), + [anon_sym_EQ] = ACTIONS(1028), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2371), [anon_sym_let] = ACTIONS(2371), @@ -103962,519 +107071,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [734] = { - [sym_else_clause] = STATE(764), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_export] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_namespace] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_typeof] = ACTIONS(2475), - [anon_sym_import] = ACTIONS(2475), - [anon_sym_with] = ACTIONS(2475), - [anon_sym_var] = ACTIONS(2475), - [anon_sym_let] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_switch] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_await] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_debugger] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_case] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [sym_glimmer_opening_tag] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_class] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2475), - [anon_sym_using] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_void] = ACTIONS(2475), - [anon_sym_delete] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2473), - [sym_number] = ACTIONS(2473), - [sym_private_property_identifier] = ACTIONS(2473), - [sym_this] = ACTIONS(2475), - [sym_super] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_null] = ACTIONS(2475), - [sym_undefined] = ACTIONS(2475), - [anon_sym_AT] = ACTIONS(2473), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_readonly] = ACTIONS(2475), - [anon_sym_get] = ACTIONS(2475), - [anon_sym_set] = ACTIONS(2475), - [anon_sym_declare] = ACTIONS(2475), - [anon_sym_public] = ACTIONS(2475), - [anon_sym_private] = ACTIONS(2475), - [anon_sym_protected] = ACTIONS(2475), - [anon_sym_override] = ACTIONS(2475), - [anon_sym_module] = ACTIONS(2475), - [anon_sym_any] = ACTIONS(2475), - [anon_sym_number] = ACTIONS(2475), - [anon_sym_boolean] = ACTIONS(2475), - [anon_sym_string] = ACTIONS(2475), - [anon_sym_symbol] = ACTIONS(2475), - [anon_sym_object] = ACTIONS(2475), - [anon_sym_abstract] = ACTIONS(2475), - [anon_sym_interface] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [sym_html_comment] = ACTIONS(5), - }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(1845), - [sym_identifier] = ACTIONS(1847), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_typeof] = ACTIONS(1847), - [anon_sym_import] = ACTIONS(1847), - [anon_sym_with] = ACTIONS(1847), - [anon_sym_var] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_await] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_throw] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_case] = ACTIONS(1847), - [anon_sym_yield] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1845), - [sym_glimmer_opening_tag] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [anon_sym_SQUOTE] = ACTIONS(1845), - [anon_sym_class] = ACTIONS(1847), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_using] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_void] = ACTIONS(1847), - [anon_sym_delete] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1845), - [sym_number] = ACTIONS(1845), - [sym_private_property_identifier] = ACTIONS(1845), - [sym_this] = ACTIONS(1847), - [sym_super] = ACTIONS(1847), - [sym_true] = ACTIONS(1847), - [sym_false] = ACTIONS(1847), - [sym_null] = ACTIONS(1847), - [sym_undefined] = ACTIONS(1847), - [anon_sym_AT] = ACTIONS(1845), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_readonly] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_declare] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_protected] = ACTIONS(1847), - [anon_sym_override] = ACTIONS(1847), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_any] = ACTIONS(1847), - [anon_sym_number] = ACTIONS(1847), - [anon_sym_boolean] = ACTIONS(1847), - [anon_sym_string] = ACTIONS(1847), - [anon_sym_symbol] = ACTIONS(1847), - [anon_sym_object] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_interface] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [sym__automatic_semicolon] = ACTIONS(1853), - [sym_html_comment] = ACTIONS(5), - }, - [736] = { - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_typeof] = ACTIONS(1837), - [anon_sym_import] = ACTIONS(1837), - [anon_sym_with] = ACTIONS(1837), - [anon_sym_var] = ACTIONS(1837), - [anon_sym_let] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_switch] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_do] = ACTIONS(1837), - [anon_sym_try] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_debugger] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_throw] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [sym_glimmer_opening_tag] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1837), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_function] = ACTIONS(1837), - [anon_sym_new] = ACTIONS(1837), - [anon_sym_using] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_void] = ACTIONS(1837), - [anon_sym_delete] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1835), - [sym_number] = ACTIONS(1835), - [sym_private_property_identifier] = ACTIONS(1835), - [sym_this] = ACTIONS(1837), - [sym_super] = ACTIONS(1837), - [sym_true] = ACTIONS(1837), - [sym_false] = ACTIONS(1837), - [sym_null] = ACTIONS(1837), - [sym_undefined] = ACTIONS(1837), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_readonly] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1837), - [anon_sym_set] = ACTIONS(1837), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_override] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [anon_sym_object] = ACTIONS(1837), - [anon_sym_abstract] = ACTIONS(1837), - [anon_sym_interface] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), - [sym__automatic_semicolon] = ACTIONS(1843), - [sym_html_comment] = ACTIONS(5), - }, - [737] = { - [ts_builtin_sym_end] = ACTIONS(1797), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1799), - [anon_sym_type] = ACTIONS(1799), - [anon_sym_namespace] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_RBRACE] = ACTIONS(1797), - [anon_sym_typeof] = ACTIONS(1799), - [anon_sym_import] = ACTIONS(1799), - [anon_sym_with] = ACTIONS(1799), - [anon_sym_var] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_switch] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1797), - [anon_sym_await] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_debugger] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_throw] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_case] = ACTIONS(1799), - [anon_sym_yield] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1797), - [sym_glimmer_opening_tag] = ACTIONS(1797), - [anon_sym_DOT] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(1797), - [anon_sym_class] = ACTIONS(1799), - [anon_sym_async] = ACTIONS(1799), - [anon_sym_function] = ACTIONS(1799), - [anon_sym_new] = ACTIONS(1799), - [anon_sym_using] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_SLASH] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_void] = ACTIONS(1799), - [anon_sym_delete] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1797), - [anon_sym_DASH_DASH] = ACTIONS(1797), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1797), - [sym_number] = ACTIONS(1797), - [sym_private_property_identifier] = ACTIONS(1797), - [sym_this] = ACTIONS(1799), - [sym_super] = ACTIONS(1799), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_null] = ACTIONS(1799), - [sym_undefined] = ACTIONS(1799), - [anon_sym_AT] = ACTIONS(1797), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_readonly] = ACTIONS(1799), - [anon_sym_get] = ACTIONS(1799), - [anon_sym_set] = ACTIONS(1799), - [anon_sym_declare] = ACTIONS(1799), - [anon_sym_public] = ACTIONS(1799), - [anon_sym_private] = ACTIONS(1799), - [anon_sym_protected] = ACTIONS(1799), - [anon_sym_override] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_any] = ACTIONS(1799), - [anon_sym_number] = ACTIONS(1799), - [anon_sym_boolean] = ACTIONS(1799), - [anon_sym_string] = ACTIONS(1799), - [anon_sym_symbol] = ACTIONS(1799), - [anon_sym_object] = ACTIONS(1799), - [anon_sym_abstract] = ACTIONS(1799), - [anon_sym_interface] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [sym_html_comment] = ACTIONS(5), - }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(2479), - [sym_identifier] = ACTIONS(2481), - [anon_sym_export] = ACTIONS(2481), - [anon_sym_default] = ACTIONS(2481), - [anon_sym_type] = ACTIONS(2481), - [anon_sym_namespace] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_typeof] = ACTIONS(2481), - [anon_sym_import] = ACTIONS(2481), - [anon_sym_with] = ACTIONS(2481), - [anon_sym_var] = ACTIONS(2481), - [anon_sym_let] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_switch] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_RPAREN] = ACTIONS(2479), - [anon_sym_await] = ACTIONS(2481), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_do] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_debugger] = ACTIONS(2481), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_throw] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_case] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [sym_glimmer_opening_tag] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_SQUOTE] = ACTIONS(2479), - [anon_sym_class] = ACTIONS(2481), - [anon_sym_async] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2481), - [anon_sym_using] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_void] = ACTIONS(2481), - [anon_sym_delete] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2479), + [731] = { + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), + [sym_identifier] = ACTIONS(2369), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2371), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2479), - [sym_number] = ACTIONS(2479), - [sym_private_property_identifier] = ACTIONS(2479), - [sym_this] = ACTIONS(2481), - [sym_super] = ACTIONS(2481), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_null] = ACTIONS(2481), - [sym_undefined] = ACTIONS(2481), - [anon_sym_AT] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2481), - [anon_sym_readonly] = ACTIONS(2481), - [anon_sym_get] = ACTIONS(2481), - [anon_sym_set] = ACTIONS(2481), - [anon_sym_declare] = ACTIONS(2481), - [anon_sym_public] = ACTIONS(2481), - [anon_sym_private] = ACTIONS(2481), - [anon_sym_protected] = ACTIONS(2481), - [anon_sym_override] = ACTIONS(2481), - [anon_sym_module] = ACTIONS(2481), - [anon_sym_any] = ACTIONS(2481), - [anon_sym_number] = ACTIONS(2481), - [anon_sym_boolean] = ACTIONS(2481), - [anon_sym_string] = ACTIONS(2481), - [anon_sym_symbol] = ACTIONS(2481), - [anon_sym_object] = ACTIONS(2481), - [anon_sym_abstract] = ACTIONS(2481), - [anon_sym_interface] = ACTIONS(2481), - [anon_sym_enum] = ACTIONS(2481), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [anon_sym_declare] = ACTIONS(2371), + [anon_sym_public] = ACTIONS(2371), + [anon_sym_private] = ACTIONS(2371), + [anon_sym_protected] = ACTIONS(2371), + [anon_sym_override] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_any] = ACTIONS(2371), + [anon_sym_number] = ACTIONS(2371), + [anon_sym_boolean] = ACTIONS(2371), + [anon_sym_string] = ACTIONS(2371), + [anon_sym_symbol] = ACTIONS(2371), + [anon_sym_object] = ACTIONS(2371), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [739] = { - [ts_builtin_sym_end] = ACTIONS(1855), - [sym_identifier] = ACTIONS(1857), - [anon_sym_export] = ACTIONS(1857), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_type] = ACTIONS(1857), - [anon_sym_namespace] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_typeof] = ACTIONS(1857), - [anon_sym_import] = ACTIONS(1857), - [anon_sym_with] = ACTIONS(1857), - [anon_sym_var] = ACTIONS(1857), - [anon_sym_let] = ACTIONS(1857), - [anon_sym_const] = ACTIONS(1857), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1857), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_switch] = ACTIONS(1857), - [anon_sym_for] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_await] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_do] = ACTIONS(1857), - [anon_sym_try] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1857), - [anon_sym_continue] = ACTIONS(1857), - [anon_sym_debugger] = ACTIONS(1857), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_throw] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1857), - [anon_sym_yield] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1855), - [sym_glimmer_opening_tag] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_class] = ACTIONS(1857), - [anon_sym_async] = ACTIONS(1857), - [anon_sym_function] = ACTIONS(1857), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1857), - [anon_sym_PLUS] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1857), - [anon_sym_SLASH] = ACTIONS(1857), - [anon_sym_LT] = ACTIONS(1857), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_void] = ACTIONS(1857), - [anon_sym_delete] = ACTIONS(1857), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1855), - [sym_number] = ACTIONS(1855), - [sym_private_property_identifier] = ACTIONS(1855), - [sym_this] = ACTIONS(1857), - [sym_super] = ACTIONS(1857), - [sym_true] = ACTIONS(1857), - [sym_false] = ACTIONS(1857), - [sym_null] = ACTIONS(1857), - [sym_undefined] = ACTIONS(1857), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_static] = ACTIONS(1857), - [anon_sym_readonly] = ACTIONS(1857), - [anon_sym_get] = ACTIONS(1857), - [anon_sym_set] = ACTIONS(1857), - [anon_sym_declare] = ACTIONS(1857), - [anon_sym_public] = ACTIONS(1857), - [anon_sym_private] = ACTIONS(1857), - [anon_sym_protected] = ACTIONS(1857), - [anon_sym_override] = ACTIONS(1857), - [anon_sym_module] = ACTIONS(1857), - [anon_sym_any] = ACTIONS(1857), - [anon_sym_number] = ACTIONS(1857), - [anon_sym_boolean] = ACTIONS(1857), - [anon_sym_string] = ACTIONS(1857), - [anon_sym_symbol] = ACTIONS(1857), - [anon_sym_object] = ACTIONS(1857), - [anon_sym_abstract] = ACTIONS(1857), - [anon_sym_interface] = ACTIONS(1857), - [anon_sym_enum] = ACTIONS(1857), + [732] = { + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_namespace] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_typeof] = ACTIONS(1833), + [anon_sym_import] = ACTIONS(1833), + [anon_sym_with] = ACTIONS(1833), + [anon_sym_var] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_switch] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_debugger] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_throw] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_case] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1831), + [sym_glimmer_opening_tag] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [anon_sym_class] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1833), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1833), + [anon_sym_delete] = ACTIONS(1833), + [anon_sym_PLUS_PLUS] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1831), + [sym_number] = ACTIONS(1831), + [sym_private_property_identifier] = ACTIONS(1831), + [sym_this] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_true] = ACTIONS(1833), + [sym_false] = ACTIONS(1833), + [sym_null] = ACTIONS(1833), + [sym_undefined] = ACTIONS(1833), + [anon_sym_AT] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_readonly] = ACTIONS(1833), + [anon_sym_get] = ACTIONS(1833), + [anon_sym_set] = ACTIONS(1833), + [anon_sym_declare] = ACTIONS(1833), + [anon_sym_public] = ACTIONS(1833), + [anon_sym_private] = ACTIONS(1833), + [anon_sym_protected] = ACTIONS(1833), + [anon_sym_override] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_any] = ACTIONS(1833), + [anon_sym_number] = ACTIONS(1833), + [anon_sym_boolean] = ACTIONS(1833), + [anon_sym_string] = ACTIONS(1833), + [anon_sym_symbol] = ACTIONS(1833), + [anon_sym_object] = ACTIONS(1833), + [anon_sym_abstract] = ACTIONS(1833), + [anon_sym_interface] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), [sym_html_comment] = ACTIONS(5), }, - [740] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [733] = { + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2369), [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(976), + [anon_sym_EQ] = ACTIONS(1034), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2371), [anon_sym_let] = ACTIONS(2371), @@ -104550,99 +107323,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [741] = { - [sym_statement_block] = STATE(862), - [ts_builtin_sym_end] = ACTIONS(1712), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1714), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1714), - [anon_sym_namespace] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(1712), - [anon_sym_typeof] = ACTIONS(1714), - [anon_sym_import] = ACTIONS(1714), - [anon_sym_with] = ACTIONS(1714), - [anon_sym_var] = ACTIONS(1714), - [anon_sym_let] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_else] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_switch] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_await] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_debugger] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_throw] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_case] = ACTIONS(1714), - [anon_sym_yield] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1712), - [sym_glimmer_opening_tag] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_class] = ACTIONS(1714), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_function] = ACTIONS(1714), - [anon_sym_new] = ACTIONS(1714), - [anon_sym_using] = ACTIONS(1714), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_SLASH] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_TILDE] = ACTIONS(1712), - [anon_sym_void] = ACTIONS(1714), - [anon_sym_delete] = ACTIONS(1714), - [anon_sym_PLUS_PLUS] = ACTIONS(1712), - [anon_sym_DASH_DASH] = ACTIONS(1712), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1712), - [sym_number] = ACTIONS(1712), - [sym_private_property_identifier] = ACTIONS(1712), - [sym_this] = ACTIONS(1714), - [sym_super] = ACTIONS(1714), - [sym_true] = ACTIONS(1714), - [sym_false] = ACTIONS(1714), - [sym_null] = ACTIONS(1714), - [sym_undefined] = ACTIONS(1714), - [anon_sym_AT] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_readonly] = ACTIONS(1714), - [anon_sym_get] = ACTIONS(1714), - [anon_sym_set] = ACTIONS(1714), - [anon_sym_declare] = ACTIONS(1714), - [anon_sym_public] = ACTIONS(1714), - [anon_sym_private] = ACTIONS(1714), - [anon_sym_protected] = ACTIONS(1714), - [anon_sym_override] = ACTIONS(1714), - [anon_sym_module] = ACTIONS(1714), - [anon_sym_any] = ACTIONS(1714), - [anon_sym_number] = ACTIONS(1714), - [anon_sym_boolean] = ACTIONS(1714), - [anon_sym_string] = ACTIONS(1714), - [anon_sym_symbol] = ACTIONS(1714), - [anon_sym_object] = ACTIONS(1714), - [anon_sym_abstract] = ACTIONS(1714), - [anon_sym_interface] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), + [734] = { + [ts_builtin_sym_end] = ACTIONS(2471), + [sym_identifier] = ACTIONS(2473), + [anon_sym_export] = ACTIONS(2473), + [anon_sym_default] = ACTIONS(2473), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_namespace] = ACTIONS(2473), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_typeof] = ACTIONS(2473), + [anon_sym_import] = ACTIONS(2473), + [anon_sym_with] = ACTIONS(2473), + [anon_sym_var] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_else] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_switch] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_await] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_debugger] = ACTIONS(2473), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_throw] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_case] = ACTIONS(2473), + [anon_sym_finally] = ACTIONS(2473), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2471), + [sym_glimmer_opening_tag] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_class] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_function] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_using] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_void] = ACTIONS(2473), + [anon_sym_delete] = ACTIONS(2473), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2471), + [sym_number] = ACTIONS(2471), + [sym_private_property_identifier] = ACTIONS(2471), + [sym_this] = ACTIONS(2473), + [sym_super] = ACTIONS(2473), + [sym_true] = ACTIONS(2473), + [sym_false] = ACTIONS(2473), + [sym_null] = ACTIONS(2473), + [sym_undefined] = ACTIONS(2473), + [anon_sym_AT] = ACTIONS(2471), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_readonly] = ACTIONS(2473), + [anon_sym_get] = ACTIONS(2473), + [anon_sym_set] = ACTIONS(2473), + [anon_sym_declare] = ACTIONS(2473), + [anon_sym_public] = ACTIONS(2473), + [anon_sym_private] = ACTIONS(2473), + [anon_sym_protected] = ACTIONS(2473), + [anon_sym_override] = ACTIONS(2473), + [anon_sym_module] = ACTIONS(2473), + [anon_sym_any] = ACTIONS(2473), + [anon_sym_number] = ACTIONS(2473), + [anon_sym_boolean] = ACTIONS(2473), + [anon_sym_string] = ACTIONS(2473), + [anon_sym_symbol] = ACTIONS(2473), + [anon_sym_object] = ACTIONS(2473), + [anon_sym_abstract] = ACTIONS(2473), + [anon_sym_interface] = ACTIONS(2473), + [anon_sym_enum] = ACTIONS(2473), [sym_html_comment] = ACTIONS(5), }, - [742] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [735] = { + [ts_builtin_sym_end] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [anon_sym_export] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_type] = ACTIONS(1803), + [anon_sym_namespace] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_typeof] = ACTIONS(1803), + [anon_sym_import] = ACTIONS(1803), + [anon_sym_with] = ACTIONS(1803), + [anon_sym_var] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_BANG] = ACTIONS(1801), + [anon_sym_else] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_switch] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_debugger] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_case] = ACTIONS(1803), + [anon_sym_yield] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1801), + [sym_glimmer_opening_tag] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1801), + [anon_sym_class] = ACTIONS(1803), + [anon_sym_async] = ACTIONS(1803), + [anon_sym_function] = ACTIONS(1803), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_SLASH] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_void] = ACTIONS(1803), + [anon_sym_delete] = ACTIONS(1803), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1801), + [sym_number] = ACTIONS(1801), + [sym_private_property_identifier] = ACTIONS(1801), + [sym_this] = ACTIONS(1803), + [sym_super] = ACTIONS(1803), + [sym_true] = ACTIONS(1803), + [sym_false] = ACTIONS(1803), + [sym_null] = ACTIONS(1803), + [sym_undefined] = ACTIONS(1803), + [anon_sym_AT] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_readonly] = ACTIONS(1803), + [anon_sym_get] = ACTIONS(1803), + [anon_sym_set] = ACTIONS(1803), + [anon_sym_declare] = ACTIONS(1803), + [anon_sym_public] = ACTIONS(1803), + [anon_sym_private] = ACTIONS(1803), + [anon_sym_protected] = ACTIONS(1803), + [anon_sym_override] = ACTIONS(1803), + [anon_sym_module] = ACTIONS(1803), + [anon_sym_any] = ACTIONS(1803), + [anon_sym_number] = ACTIONS(1803), + [anon_sym_boolean] = ACTIONS(1803), + [anon_sym_string] = ACTIONS(1803), + [anon_sym_symbol] = ACTIONS(1803), + [anon_sym_object] = ACTIONS(1803), + [anon_sym_abstract] = ACTIONS(1803), + [anon_sym_interface] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [sym__automatic_semicolon] = ACTIONS(1809), + [sym_html_comment] = ACTIONS(5), + }, + [736] = { + [ts_builtin_sym_end] = ACTIONS(1841), + [sym_identifier] = ACTIONS(1843), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_default] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_namespace] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_typeof] = ACTIONS(1843), + [anon_sym_import] = ACTIONS(1843), + [anon_sym_with] = ACTIONS(1843), + [anon_sym_var] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_switch] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_await] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_throw] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_case] = ACTIONS(1843), + [anon_sym_yield] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1841), + [sym_glimmer_opening_tag] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_class] = ACTIONS(1843), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_using] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1841), + [anon_sym_void] = ACTIONS(1843), + [anon_sym_delete] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1841), + [sym_number] = ACTIONS(1841), + [sym_private_property_identifier] = ACTIONS(1841), + [sym_this] = ACTIONS(1843), + [sym_super] = ACTIONS(1843), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [sym_null] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_readonly] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_declare] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_protected] = ACTIONS(1843), + [anon_sym_override] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_any] = ACTIONS(1843), + [anon_sym_number] = ACTIONS(1843), + [anon_sym_boolean] = ACTIONS(1843), + [anon_sym_string] = ACTIONS(1843), + [anon_sym_symbol] = ACTIONS(1843), + [anon_sym_object] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_interface] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [sym__automatic_semicolon] = ACTIONS(1849), + [sym_html_comment] = ACTIONS(5), + }, + [737] = { + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2369), [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(978), + [anon_sym_EQ] = ACTIONS(1032), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2371), [anon_sym_let] = ACTIONS(2371), @@ -104718,15 +107659,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [743] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [738] = { + [ts_builtin_sym_end] = ACTIONS(2475), + [sym_identifier] = ACTIONS(2477), + [anon_sym_export] = ACTIONS(2477), + [anon_sym_default] = ACTIONS(2477), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_namespace] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_typeof] = ACTIONS(2477), + [anon_sym_import] = ACTIONS(2477), + [anon_sym_with] = ACTIONS(2477), + [anon_sym_var] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_else] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_switch] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_await] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_debugger] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_throw] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_case] = ACTIONS(2477), + [anon_sym_finally] = ACTIONS(2477), + [anon_sym_yield] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2475), + [sym_glimmer_opening_tag] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_class] = ACTIONS(2477), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_function] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_using] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_void] = ACTIONS(2477), + [anon_sym_delete] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2475), + [sym_number] = ACTIONS(2475), + [sym_private_property_identifier] = ACTIONS(2475), + [sym_this] = ACTIONS(2477), + [sym_super] = ACTIONS(2477), + [sym_true] = ACTIONS(2477), + [sym_false] = ACTIONS(2477), + [sym_null] = ACTIONS(2477), + [sym_undefined] = ACTIONS(2477), + [anon_sym_AT] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_readonly] = ACTIONS(2477), + [anon_sym_get] = ACTIONS(2477), + [anon_sym_set] = ACTIONS(2477), + [anon_sym_declare] = ACTIONS(2477), + [anon_sym_public] = ACTIONS(2477), + [anon_sym_private] = ACTIONS(2477), + [anon_sym_protected] = ACTIONS(2477), + [anon_sym_override] = ACTIONS(2477), + [anon_sym_module] = ACTIONS(2477), + [anon_sym_any] = ACTIONS(2477), + [anon_sym_number] = ACTIONS(2477), + [anon_sym_boolean] = ACTIONS(2477), + [anon_sym_string] = ACTIONS(2477), + [anon_sym_symbol] = ACTIONS(2477), + [anon_sym_object] = ACTIONS(2477), + [anon_sym_abstract] = ACTIONS(2477), + [anon_sym_interface] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [sym_html_comment] = ACTIONS(5), + }, + [739] = { + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2369), [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(974), + [anon_sym_EQ] = ACTIONS(1040), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2371), [anon_sym_let] = ACTIONS(2371), @@ -104802,15 +107827,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [744] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [740] = { + [ts_builtin_sym_end] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2481), + [anon_sym_export] = ACTIONS(2481), + [anon_sym_default] = ACTIONS(2481), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_namespace] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_typeof] = ACTIONS(2481), + [anon_sym_import] = ACTIONS(2481), + [anon_sym_with] = ACTIONS(2481), + [anon_sym_var] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_switch] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_debugger] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_throw] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_case] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [sym_glimmer_opening_tag] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_function] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_using] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_void] = ACTIONS(2481), + [anon_sym_delete] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2479), + [sym_number] = ACTIONS(2479), + [sym_private_property_identifier] = ACTIONS(2479), + [sym_this] = ACTIONS(2481), + [sym_super] = ACTIONS(2481), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_null] = ACTIONS(2481), + [sym_undefined] = ACTIONS(2481), + [anon_sym_AT] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_readonly] = ACTIONS(2481), + [anon_sym_get] = ACTIONS(2481), + [anon_sym_set] = ACTIONS(2481), + [anon_sym_declare] = ACTIONS(2481), + [anon_sym_public] = ACTIONS(2481), + [anon_sym_private] = ACTIONS(2481), + [anon_sym_protected] = ACTIONS(2481), + [anon_sym_override] = ACTIONS(2481), + [anon_sym_module] = ACTIONS(2481), + [anon_sym_any] = ACTIONS(2481), + [anon_sym_number] = ACTIONS(2481), + [anon_sym_boolean] = ACTIONS(2481), + [anon_sym_string] = ACTIONS(2481), + [anon_sym_symbol] = ACTIONS(2481), + [anon_sym_object] = ACTIONS(2481), + [anon_sym_abstract] = ACTIONS(2481), + [anon_sym_interface] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [sym__automatic_semicolon] = ACTIONS(2479), + [sym_html_comment] = ACTIONS(5), + }, + [741] = { + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2369), [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(988), + [anon_sym_EQ] = ACTIONS(972), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2371), [anon_sym_let] = ACTIONS(2371), @@ -104886,15 +107995,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [745] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [742] = { + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2369), [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(972), + [anon_sym_EQ] = ACTIONS(1038), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2371), [anon_sym_let] = ACTIONS(2371), @@ -104970,99 +108079,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, + [743] = { + [ts_builtin_sym_end] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1917), + [anon_sym_export] = ACTIONS(1917), + [anon_sym_default] = ACTIONS(1917), + [anon_sym_type] = ACTIONS(1917), + [anon_sym_namespace] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_typeof] = ACTIONS(1917), + [anon_sym_import] = ACTIONS(1917), + [anon_sym_with] = ACTIONS(1917), + [anon_sym_var] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_else] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_switch] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_debugger] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_throw] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_case] = ACTIONS(1917), + [anon_sym_yield] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1915), + [sym_glimmer_opening_tag] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1917), + [anon_sym_async] = ACTIONS(1917), + [anon_sym_function] = ACTIONS(1917), + [anon_sym_new] = ACTIONS(1917), + [anon_sym_using] = ACTIONS(1917), + [anon_sym_PLUS] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1917), + [anon_sym_TILDE] = ACTIONS(1915), + [anon_sym_void] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(1917), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1915), + [sym_number] = ACTIONS(1915), + [sym_private_property_identifier] = ACTIONS(1915), + [sym_this] = ACTIONS(1917), + [sym_super] = ACTIONS(1917), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_null] = ACTIONS(1917), + [sym_undefined] = ACTIONS(1917), + [anon_sym_AT] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1917), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_get] = ACTIONS(1917), + [anon_sym_set] = ACTIONS(1917), + [anon_sym_declare] = ACTIONS(1917), + [anon_sym_public] = ACTIONS(1917), + [anon_sym_private] = ACTIONS(1917), + [anon_sym_protected] = ACTIONS(1917), + [anon_sym_override] = ACTIONS(1917), + [anon_sym_module] = ACTIONS(1917), + [anon_sym_any] = ACTIONS(1917), + [anon_sym_number] = ACTIONS(1917), + [anon_sym_boolean] = ACTIONS(1917), + [anon_sym_string] = ACTIONS(1917), + [anon_sym_symbol] = ACTIONS(1917), + [anon_sym_object] = ACTIONS(1917), + [anon_sym_abstract] = ACTIONS(1917), + [anon_sym_interface] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1917), + [sym__automatic_semicolon] = ACTIONS(1923), + [sym_html_comment] = ACTIONS(5), + }, + [744] = { + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_namespace] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_typeof] = ACTIONS(1823), + [anon_sym_import] = ACTIONS(1823), + [anon_sym_with] = ACTIONS(1823), + [anon_sym_var] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_else] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_switch] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_do] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_debugger] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_throw] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [sym_glimmer_opening_tag] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_using] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1821), + [anon_sym_void] = ACTIONS(1823), + [anon_sym_delete] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1821), + [anon_sym_DASH_DASH] = ACTIONS(1821), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1821), + [sym_number] = ACTIONS(1821), + [sym_private_property_identifier] = ACTIONS(1821), + [sym_this] = ACTIONS(1823), + [sym_super] = ACTIONS(1823), + [sym_true] = ACTIONS(1823), + [sym_false] = ACTIONS(1823), + [sym_null] = ACTIONS(1823), + [sym_undefined] = ACTIONS(1823), + [anon_sym_AT] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_readonly] = ACTIONS(1823), + [anon_sym_get] = ACTIONS(1823), + [anon_sym_set] = ACTIONS(1823), + [anon_sym_declare] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1823), + [anon_sym_private] = ACTIONS(1823), + [anon_sym_protected] = ACTIONS(1823), + [anon_sym_override] = ACTIONS(1823), + [anon_sym_module] = ACTIONS(1823), + [anon_sym_any] = ACTIONS(1823), + [anon_sym_number] = ACTIONS(1823), + [anon_sym_boolean] = ACTIONS(1823), + [anon_sym_string] = ACTIONS(1823), + [anon_sym_symbol] = ACTIONS(1823), + [anon_sym_object] = ACTIONS(1823), + [anon_sym_abstract] = ACTIONS(1823), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(1829), + [sym_html_comment] = ACTIONS(5), + }, + [745] = { + [ts_builtin_sym_end] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1793), + [anon_sym_export] = ACTIONS(1793), + [anon_sym_default] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1793), + [anon_sym_namespace] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_typeof] = ACTIONS(1793), + [anon_sym_import] = ACTIONS(1793), + [anon_sym_with] = ACTIONS(1793), + [anon_sym_var] = ACTIONS(1793), + [anon_sym_let] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_BANG] = ACTIONS(1791), + [anon_sym_else] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_switch] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1793), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_do] = ACTIONS(1793), + [anon_sym_try] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_debugger] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_throw] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1793), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(1791), + [sym_glimmer_opening_tag] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_class] = ACTIONS(1793), + [anon_sym_async] = ACTIONS(1793), + [anon_sym_function] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_SLASH] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_void] = ACTIONS(1793), + [anon_sym_delete] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1791), + [sym_number] = ACTIONS(1791), + [sym_private_property_identifier] = ACTIONS(1791), + [sym_this] = ACTIONS(1793), + [sym_super] = ACTIONS(1793), + [sym_true] = ACTIONS(1793), + [sym_false] = ACTIONS(1793), + [sym_null] = ACTIONS(1793), + [sym_undefined] = ACTIONS(1793), + [anon_sym_AT] = ACTIONS(1791), + [anon_sym_static] = ACTIONS(1793), + [anon_sym_readonly] = ACTIONS(1793), + [anon_sym_get] = ACTIONS(1793), + [anon_sym_set] = ACTIONS(1793), + [anon_sym_declare] = ACTIONS(1793), + [anon_sym_public] = ACTIONS(1793), + [anon_sym_private] = ACTIONS(1793), + [anon_sym_protected] = ACTIONS(1793), + [anon_sym_override] = ACTIONS(1793), + [anon_sym_module] = ACTIONS(1793), + [anon_sym_any] = ACTIONS(1793), + [anon_sym_number] = ACTIONS(1793), + [anon_sym_boolean] = ACTIONS(1793), + [anon_sym_string] = ACTIONS(1793), + [anon_sym_symbol] = ACTIONS(1793), + [anon_sym_object] = ACTIONS(1793), + [anon_sym_abstract] = ACTIONS(1793), + [anon_sym_interface] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [sym__automatic_semicolon] = ACTIONS(1799), + [sym_html_comment] = ACTIONS(5), + }, [746] = { - [ts_builtin_sym_end] = ACTIONS(1769), - [sym_identifier] = ACTIONS(1771), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1771), - [anon_sym_type] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(1771), - [anon_sym_import] = ACTIONS(1771), - [anon_sym_with] = ACTIONS(1771), - [anon_sym_var] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_switch] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_debugger] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_case] = ACTIONS(1771), - [anon_sym_yield] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1769), - [sym_glimmer_opening_tag] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_async] = ACTIONS(1771), - [anon_sym_function] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1771), - [anon_sym_using] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_SLASH] = ACTIONS(1771), - [anon_sym_LT] = ACTIONS(1771), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_void] = ACTIONS(1771), - [anon_sym_delete] = ACTIONS(1771), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1769), - [sym_number] = ACTIONS(1769), - [sym_private_property_identifier] = ACTIONS(1769), - [sym_this] = ACTIONS(1771), - [sym_super] = ACTIONS(1771), - [sym_true] = ACTIONS(1771), - [sym_false] = ACTIONS(1771), - [sym_null] = ACTIONS(1771), - [sym_undefined] = ACTIONS(1771), - [anon_sym_AT] = ACTIONS(1769), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_readonly] = ACTIONS(1771), - [anon_sym_get] = ACTIONS(1771), - [anon_sym_set] = ACTIONS(1771), - [anon_sym_declare] = ACTIONS(1771), - [anon_sym_public] = ACTIONS(1771), - [anon_sym_private] = ACTIONS(1771), - [anon_sym_protected] = ACTIONS(1771), - [anon_sym_override] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_any] = ACTIONS(1771), - [anon_sym_number] = ACTIONS(1771), - [anon_sym_boolean] = ACTIONS(1771), - [anon_sym_string] = ACTIONS(1771), - [anon_sym_symbol] = ACTIONS(1771), - [anon_sym_object] = ACTIONS(1771), - [anon_sym_abstract] = ACTIONS(1771), - [anon_sym_interface] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [sym__automatic_semicolon] = ACTIONS(1777), + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_namespace] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_typeof] = ACTIONS(1813), + [anon_sym_import] = ACTIONS(1813), + [anon_sym_with] = ACTIONS(1813), + [anon_sym_var] = ACTIONS(1813), + [anon_sym_let] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_else] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_switch] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_await] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(1813), + [anon_sym_do] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_debugger] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_throw] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_case] = ACTIONS(1813), + [anon_sym_yield] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [sym_glimmer_opening_tag] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1811), + [anon_sym_SQUOTE] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1813), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_function] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1813), + [anon_sym_using] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_void] = ACTIONS(1813), + [anon_sym_delete] = ACTIONS(1813), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1811), + [sym_number] = ACTIONS(1811), + [sym_private_property_identifier] = ACTIONS(1811), + [sym_this] = ACTIONS(1813), + [sym_super] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_null] = ACTIONS(1813), + [sym_undefined] = ACTIONS(1813), + [anon_sym_AT] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1813), + [anon_sym_readonly] = ACTIONS(1813), + [anon_sym_get] = ACTIONS(1813), + [anon_sym_set] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1813), + [anon_sym_public] = ACTIONS(1813), + [anon_sym_private] = ACTIONS(1813), + [anon_sym_protected] = ACTIONS(1813), + [anon_sym_override] = ACTIONS(1813), + [anon_sym_module] = ACTIONS(1813), + [anon_sym_any] = ACTIONS(1813), + [anon_sym_number] = ACTIONS(1813), + [anon_sym_boolean] = ACTIONS(1813), + [anon_sym_string] = ACTIONS(1813), + [anon_sym_symbol] = ACTIONS(1813), + [anon_sym_object] = ACTIONS(1813), + [anon_sym_abstract] = ACTIONS(1813), + [anon_sym_interface] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [sym__automatic_semicolon] = ACTIONS(1819), [sym_html_comment] = ACTIONS(5), }, [747] = { - [sym__call_signature] = STATE(5738), - [sym_formal_parameters] = STATE(3742), - [sym_type_parameters] = STATE(5349), + [sym__call_signature] = STATE(7267), + [sym_formal_parameters] = STATE(4505), + [sym_type_parameters] = STATE(6901), [sym_identifier] = ACTIONS(2369), [anon_sym_export] = ACTIONS(2371), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2371), - [anon_sym_EQ] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(1030), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2371), [anon_sym_let] = ACTIONS(2371), @@ -105139,87 +108500,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [748] = { - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_namespace] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_typeof] = ACTIONS(1757), - [anon_sym_import] = ACTIONS(1757), - [anon_sym_with] = ACTIONS(1757), - [anon_sym_var] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_await] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_debugger] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_throw] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_case] = ACTIONS(1757), - [anon_sym_yield] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1755), - [sym_glimmer_opening_tag] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1755), - [anon_sym_class] = ACTIONS(1757), - [anon_sym_async] = ACTIONS(1757), - [anon_sym_function] = ACTIONS(1757), - [anon_sym_new] = ACTIONS(1757), - [anon_sym_using] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1755), - [anon_sym_void] = ACTIONS(1757), - [anon_sym_delete] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1755), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1755), - [sym_number] = ACTIONS(1755), - [sym_private_property_identifier] = ACTIONS(1755), - [sym_this] = ACTIONS(1757), - [sym_super] = ACTIONS(1757), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [sym_null] = ACTIONS(1757), - [sym_undefined] = ACTIONS(1757), - [anon_sym_AT] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_readonly] = ACTIONS(1757), - [anon_sym_get] = ACTIONS(1757), - [anon_sym_set] = ACTIONS(1757), - [anon_sym_declare] = ACTIONS(1757), - [anon_sym_public] = ACTIONS(1757), - [anon_sym_private] = ACTIONS(1757), - [anon_sym_protected] = ACTIONS(1757), - [anon_sym_override] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_any] = ACTIONS(1757), - [anon_sym_number] = ACTIONS(1757), - [anon_sym_boolean] = ACTIONS(1757), - [anon_sym_string] = ACTIONS(1757), - [anon_sym_symbol] = ACTIONS(1757), - [anon_sym_object] = ACTIONS(1757), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_interface] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [sym__automatic_semicolon] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1901), + [sym_identifier] = ACTIONS(1903), + [anon_sym_export] = ACTIONS(1903), + [anon_sym_default] = ACTIONS(1903), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_namespace] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_typeof] = ACTIONS(1903), + [anon_sym_import] = ACTIONS(1903), + [anon_sym_with] = ACTIONS(1903), + [anon_sym_var] = ACTIONS(1903), + [anon_sym_let] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_switch] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_await] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_do] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_debugger] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_case] = ACTIONS(1903), + [anon_sym_yield] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1901), + [sym_glimmer_opening_tag] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1901), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(1903), + [anon_sym_function] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1903), + [anon_sym_using] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1901), + [anon_sym_void] = ACTIONS(1903), + [anon_sym_delete] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1901), + [anon_sym_DASH_DASH] = ACTIONS(1901), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1901), + [sym_number] = ACTIONS(1901), + [sym_private_property_identifier] = ACTIONS(1901), + [sym_this] = ACTIONS(1903), + [sym_super] = ACTIONS(1903), + [sym_true] = ACTIONS(1903), + [sym_false] = ACTIONS(1903), + [sym_null] = ACTIONS(1903), + [sym_undefined] = ACTIONS(1903), + [anon_sym_AT] = ACTIONS(1901), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_readonly] = ACTIONS(1903), + [anon_sym_get] = ACTIONS(1903), + [anon_sym_set] = ACTIONS(1903), + [anon_sym_declare] = ACTIONS(1903), + [anon_sym_public] = ACTIONS(1903), + [anon_sym_private] = ACTIONS(1903), + [anon_sym_protected] = ACTIONS(1903), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_module] = ACTIONS(1903), + [anon_sym_any] = ACTIONS(1903), + [anon_sym_number] = ACTIONS(1903), + [anon_sym_boolean] = ACTIONS(1903), + [anon_sym_string] = ACTIONS(1903), + [anon_sym_symbol] = ACTIONS(1903), + [anon_sym_object] = ACTIONS(1903), + [anon_sym_abstract] = ACTIONS(1903), + [anon_sym_interface] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [sym__automatic_semicolon] = ACTIONS(1909), [sym_html_comment] = ACTIONS(5), }, [749] = { @@ -105389,89 +108750,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [751] = { - [ts_builtin_sym_end] = ACTIONS(2487), - [sym_identifier] = ACTIONS(2489), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_default] = ACTIONS(2489), - [anon_sym_type] = ACTIONS(2489), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_typeof] = ACTIONS(2489), - [anon_sym_import] = ACTIONS(2489), - [anon_sym_with] = ACTIONS(2489), - [anon_sym_var] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_switch] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_debugger] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_throw] = ACTIONS(2489), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [sym_glimmer_opening_tag] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2489), - [anon_sym_function] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_using] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_SLASH] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_void] = ACTIONS(2489), - [anon_sym_delete] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2487), - [sym_number] = ACTIONS(2487), - [sym_private_property_identifier] = ACTIONS(2487), - [sym_this] = ACTIONS(2489), - [sym_super] = ACTIONS(2489), - [sym_true] = ACTIONS(2489), - [sym_false] = ACTIONS(2489), - [sym_null] = ACTIONS(2489), - [sym_undefined] = ACTIONS(2489), - [anon_sym_AT] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2489), - [anon_sym_readonly] = ACTIONS(2489), - [anon_sym_get] = ACTIONS(2489), - [anon_sym_set] = ACTIONS(2489), - [anon_sym_declare] = ACTIONS(2489), - [anon_sym_public] = ACTIONS(2489), - [anon_sym_private] = ACTIONS(2489), - [anon_sym_protected] = ACTIONS(2489), - [anon_sym_override] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_any] = ACTIONS(2489), - [anon_sym_number] = ACTIONS(2489), - [anon_sym_boolean] = ACTIONS(2489), - [anon_sym_string] = ACTIONS(2489), - [anon_sym_symbol] = ACTIONS(2489), - [anon_sym_object] = ACTIONS(2489), - [anon_sym_abstract] = ACTIONS(2489), - [anon_sym_interface] = ACTIONS(2489), - [anon_sym_enum] = ACTIONS(2489), - [sym_html_comment] = ACTIONS(5), - }, - [752] = { [ts_builtin_sym_end] = ACTIONS(2491), [sym_identifier] = ACTIONS(2493), [anon_sym_export] = ACTIONS(2493), @@ -105554,7 +108832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2493), [sym_html_comment] = ACTIONS(5), }, - [753] = { + [752] = { [ts_builtin_sym_end] = ACTIONS(2495), [sym_identifier] = ACTIONS(2497), [anon_sym_export] = ACTIONS(2497), @@ -105637,90 +108915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2497), [sym_html_comment] = ACTIONS(5), }, - [754] = { - [ts_builtin_sym_end] = ACTIONS(2499), - [sym_identifier] = ACTIONS(2501), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_default] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_typeof] = ACTIONS(2501), - [anon_sym_import] = ACTIONS(2501), - [anon_sym_with] = ACTIONS(2501), - [anon_sym_var] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_debugger] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_case] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [sym_glimmer_opening_tag] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_SQUOTE] = ACTIONS(2499), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_using] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(2501), - [anon_sym_delete] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2499), - [sym_number] = ACTIONS(2499), - [sym_private_property_identifier] = ACTIONS(2499), - [sym_this] = ACTIONS(2501), - [sym_super] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_null] = ACTIONS(2501), - [sym_undefined] = ACTIONS(2501), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_readonly] = ACTIONS(2501), - [anon_sym_get] = ACTIONS(2501), - [anon_sym_set] = ACTIONS(2501), - [anon_sym_declare] = ACTIONS(2501), - [anon_sym_public] = ACTIONS(2501), - [anon_sym_private] = ACTIONS(2501), - [anon_sym_protected] = ACTIONS(2501), - [anon_sym_override] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_any] = ACTIONS(2501), - [anon_sym_number] = ACTIONS(2501), - [anon_sym_boolean] = ACTIONS(2501), - [anon_sym_string] = ACTIONS(2501), - [anon_sym_symbol] = ACTIONS(2501), - [anon_sym_object] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - [sym_html_comment] = ACTIONS(5), - }, - [755] = { + [753] = { [ts_builtin_sym_end] = ACTIONS(2499), [sym_identifier] = ACTIONS(2501), [anon_sym_export] = ACTIONS(2501), @@ -105803,7 +108998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2501), [sym_html_comment] = ACTIONS(5), }, - [756] = { + [754] = { [ts_builtin_sym_end] = ACTIONS(2503), [sym_identifier] = ACTIONS(2505), [anon_sym_export] = ACTIONS(2505), @@ -105886,7 +109081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2505), [sym_html_comment] = ACTIONS(5), }, - [757] = { + [755] = { [ts_builtin_sym_end] = ACTIONS(2507), [sym_identifier] = ACTIONS(2509), [anon_sym_export] = ACTIONS(2509), @@ -105969,7 +109164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2509), [sym_html_comment] = ACTIONS(5), }, - [758] = { + [756] = { [ts_builtin_sym_end] = ACTIONS(2511), [sym_identifier] = ACTIONS(2513), [anon_sym_export] = ACTIONS(2513), @@ -106052,422 +109247,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2513), [sym_html_comment] = ACTIONS(5), }, - [759] = { - [ts_builtin_sym_end] = ACTIONS(2515), - [sym_identifier] = ACTIONS(2517), - [anon_sym_export] = ACTIONS(2517), - [anon_sym_default] = ACTIONS(2517), - [anon_sym_type] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_typeof] = ACTIONS(2517), - [anon_sym_import] = ACTIONS(2517), - [anon_sym_with] = ACTIONS(2517), - [anon_sym_var] = ACTIONS(2517), - [anon_sym_let] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_switch] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_await] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_break] = ACTIONS(2517), - [anon_sym_continue] = ACTIONS(2517), - [anon_sym_debugger] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2517), - [anon_sym_throw] = ACTIONS(2517), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_case] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2515), - [sym_glimmer_opening_tag] = ACTIONS(2515), - [anon_sym_DQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_class] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_function] = ACTIONS(2517), - [anon_sym_new] = ACTIONS(2517), - [anon_sym_using] = ACTIONS(2517), - [anon_sym_PLUS] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_SLASH] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2515), - [anon_sym_void] = ACTIONS(2517), - [anon_sym_delete] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2515), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2515), - [sym_number] = ACTIONS(2515), - [sym_private_property_identifier] = ACTIONS(2515), - [sym_this] = ACTIONS(2517), - [sym_super] = ACTIONS(2517), - [sym_true] = ACTIONS(2517), - [sym_false] = ACTIONS(2517), - [sym_null] = ACTIONS(2517), - [sym_undefined] = ACTIONS(2517), - [anon_sym_AT] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2517), - [anon_sym_readonly] = ACTIONS(2517), - [anon_sym_get] = ACTIONS(2517), - [anon_sym_set] = ACTIONS(2517), - [anon_sym_declare] = ACTIONS(2517), - [anon_sym_public] = ACTIONS(2517), - [anon_sym_private] = ACTIONS(2517), - [anon_sym_protected] = ACTIONS(2517), - [anon_sym_override] = ACTIONS(2517), - [anon_sym_module] = ACTIONS(2517), - [anon_sym_any] = ACTIONS(2517), - [anon_sym_number] = ACTIONS(2517), - [anon_sym_boolean] = ACTIONS(2517), - [anon_sym_string] = ACTIONS(2517), - [anon_sym_symbol] = ACTIONS(2517), - [anon_sym_object] = ACTIONS(2517), - [anon_sym_abstract] = ACTIONS(2517), - [anon_sym_interface] = ACTIONS(2517), - [anon_sym_enum] = ACTIONS(2517), - [sym_html_comment] = ACTIONS(5), - }, - [760] = { - [ts_builtin_sym_end] = ACTIONS(2519), - [sym_identifier] = ACTIONS(2521), - [anon_sym_export] = ACTIONS(2521), - [anon_sym_default] = ACTIONS(2521), - [anon_sym_type] = ACTIONS(2521), - [anon_sym_namespace] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_typeof] = ACTIONS(2521), - [anon_sym_import] = ACTIONS(2521), - [anon_sym_with] = ACTIONS(2521), - [anon_sym_var] = ACTIONS(2521), - [anon_sym_let] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_await] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_debugger] = ACTIONS(2521), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_throw] = ACTIONS(2521), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_case] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2519), - [sym_glimmer_opening_tag] = ACTIONS(2519), - [anon_sym_DQUOTE] = ACTIONS(2519), - [anon_sym_SQUOTE] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2521), - [anon_sym_async] = ACTIONS(2521), - [anon_sym_function] = ACTIONS(2521), - [anon_sym_new] = ACTIONS(2521), - [anon_sym_using] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_SLASH] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_void] = ACTIONS(2521), - [anon_sym_delete] = ACTIONS(2521), - [anon_sym_PLUS_PLUS] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2519), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2519), - [sym_number] = ACTIONS(2519), - [sym_private_property_identifier] = ACTIONS(2519), - [sym_this] = ACTIONS(2521), - [sym_super] = ACTIONS(2521), - [sym_true] = ACTIONS(2521), - [sym_false] = ACTIONS(2521), - [sym_null] = ACTIONS(2521), - [sym_undefined] = ACTIONS(2521), - [anon_sym_AT] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2521), - [anon_sym_readonly] = ACTIONS(2521), - [anon_sym_get] = ACTIONS(2521), - [anon_sym_set] = ACTIONS(2521), - [anon_sym_declare] = ACTIONS(2521), - [anon_sym_public] = ACTIONS(2521), - [anon_sym_private] = ACTIONS(2521), - [anon_sym_protected] = ACTIONS(2521), - [anon_sym_override] = ACTIONS(2521), - [anon_sym_module] = ACTIONS(2521), - [anon_sym_any] = ACTIONS(2521), - [anon_sym_number] = ACTIONS(2521), - [anon_sym_boolean] = ACTIONS(2521), - [anon_sym_string] = ACTIONS(2521), - [anon_sym_symbol] = ACTIONS(2521), - [anon_sym_object] = ACTIONS(2521), - [anon_sym_abstract] = ACTIONS(2521), - [anon_sym_interface] = ACTIONS(2521), - [anon_sym_enum] = ACTIONS(2521), - [sym_html_comment] = ACTIONS(5), - }, - [761] = { - [ts_builtin_sym_end] = ACTIONS(2523), - [sym_identifier] = ACTIONS(2525), - [anon_sym_export] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2525), - [anon_sym_type] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_typeof] = ACTIONS(2525), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_with] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2525), - [anon_sym_let] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2523), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_await] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_debugger] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_yield] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2523), - [sym_glimmer_opening_tag] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_async] = ACTIONS(2525), - [anon_sym_function] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_SLASH] = ACTIONS(2525), + [757] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5884), + [sym_optional_tuple_parameter] = STATE(5884), + [sym_optional_type] = STATE(5884), + [sym_rest_type] = STATE(5884), + [sym__tuple_type_member] = STATE(5884), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(2517), + [anon_sym_typeof] = ACTIONS(1542), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), [anon_sym_LT] = ACTIONS(2525), - [anon_sym_TILDE] = ACTIONS(2523), - [anon_sym_void] = ACTIONS(2525), - [anon_sym_delete] = ACTIONS(2525), - [anon_sym_PLUS_PLUS] = ACTIONS(2523), - [anon_sym_DASH_DASH] = ACTIONS(2523), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2523), - [sym_number] = ACTIONS(2523), - [sym_private_property_identifier] = ACTIONS(2523), - [sym_this] = ACTIONS(2525), - [sym_super] = ACTIONS(2525), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_null] = ACTIONS(2525), - [sym_undefined] = ACTIONS(2525), - [anon_sym_AT] = ACTIONS(2523), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_readonly] = ACTIONS(2525), - [anon_sym_get] = ACTIONS(2525), - [anon_sym_set] = ACTIONS(2525), - [anon_sym_declare] = ACTIONS(2525), - [anon_sym_public] = ACTIONS(2525), - [anon_sym_private] = ACTIONS(2525), - [anon_sym_protected] = ACTIONS(2525), - [anon_sym_override] = ACTIONS(2525), - [anon_sym_module] = ACTIONS(2525), - [anon_sym_any] = ACTIONS(2525), - [anon_sym_number] = ACTIONS(2525), - [anon_sym_boolean] = ACTIONS(2525), - [anon_sym_string] = ACTIONS(2525), - [anon_sym_symbol] = ACTIONS(2525), - [anon_sym_object] = ACTIONS(2525), - [anon_sym_abstract] = ACTIONS(2525), - [anon_sym_interface] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [sym_html_comment] = ACTIONS(5), - }, - [762] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_default] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_typeof] = ACTIONS(1923), - [anon_sym_import] = ACTIONS(1923), - [anon_sym_with] = ACTIONS(1923), - [anon_sym_var] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_switch] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_await] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_debugger] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_throw] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_case] = ACTIONS(1923), - [anon_sym_yield] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1921), - [sym_glimmer_opening_tag] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [anon_sym_SQUOTE] = ACTIONS(1921), - [anon_sym_class] = ACTIONS(1923), - [anon_sym_async] = ACTIONS(1923), - [anon_sym_function] = ACTIONS(1923), - [anon_sym_new] = ACTIONS(1923), - [anon_sym_using] = ACTIONS(1923), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(1923), - [anon_sym_delete] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1921), - [sym_number] = ACTIONS(1921), - [sym_private_property_identifier] = ACTIONS(1921), - [sym_this] = ACTIONS(1923), - [sym_super] = ACTIONS(1923), - [sym_true] = ACTIONS(1923), - [sym_false] = ACTIONS(1923), - [sym_null] = ACTIONS(1923), - [sym_undefined] = ACTIONS(1923), - [anon_sym_AT] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_get] = ACTIONS(1923), - [anon_sym_set] = ACTIONS(1923), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), - [anon_sym_object] = ACTIONS(1923), - [anon_sym_abstract] = ACTIONS(1923), - [anon_sym_interface] = ACTIONS(1923), - [anon_sym_enum] = ACTIONS(1923), - [sym_html_comment] = ACTIONS(5), - }, - [763] = { - [ts_builtin_sym_end] = ACTIONS(1765), - [sym_identifier] = ACTIONS(1767), - [anon_sym_export] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1767), - [anon_sym_type] = ACTIONS(1767), - [anon_sym_namespace] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(1767), - [anon_sym_import] = ACTIONS(1767), - [anon_sym_with] = ACTIONS(1767), - [anon_sym_var] = ACTIONS(1767), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_switch] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_await] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_debugger] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_throw] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_yield] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_class] = ACTIONS(1767), - [anon_sym_async] = ACTIONS(1767), - [anon_sym_function] = ACTIONS(1767), - [anon_sym_new] = ACTIONS(1767), - [anon_sym_using] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_void] = ACTIONS(1767), - [anon_sym_delete] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1765), - [sym_number] = ACTIONS(1765), - [sym_private_property_identifier] = ACTIONS(1765), - [sym_this] = ACTIONS(1767), - [sym_super] = ACTIONS(1767), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [sym_null] = ACTIONS(1767), - [sym_undefined] = ACTIONS(1767), - [anon_sym_AT] = ACTIONS(1765), - [anon_sym_static] = ACTIONS(1767), - [anon_sym_readonly] = ACTIONS(1767), - [anon_sym_get] = ACTIONS(1767), - [anon_sym_set] = ACTIONS(1767), - [anon_sym_declare] = ACTIONS(1767), - [anon_sym_public] = ACTIONS(1767), - [anon_sym_private] = ACTIONS(1767), - [anon_sym_protected] = ACTIONS(1767), - [anon_sym_override] = ACTIONS(1767), - [anon_sym_module] = ACTIONS(1767), - [anon_sym_any] = ACTIONS(1767), - [anon_sym_number] = ACTIONS(1767), - [anon_sym_boolean] = ACTIONS(1767), - [anon_sym_string] = ACTIONS(1767), - [anon_sym_symbol] = ACTIONS(1767), - [anon_sym_object] = ACTIONS(1767), - [anon_sym_abstract] = ACTIONS(1767), - [anon_sym_interface] = ACTIONS(1767), - [anon_sym_enum] = ACTIONS(1767), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [764] = { + [758] = { [ts_builtin_sym_end] = ACTIONS(2527), [sym_identifier] = ACTIONS(2529), [anon_sym_export] = ACTIONS(2529), @@ -106550,7 +109413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2529), [sym_html_comment] = ACTIONS(5), }, - [765] = { + [759] = { [ts_builtin_sym_end] = ACTIONS(2531), [sym_identifier] = ACTIONS(2533), [anon_sym_export] = ACTIONS(2533), @@ -106633,7 +109496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2533), [sym_html_comment] = ACTIONS(5), }, - [766] = { + [760] = { [ts_builtin_sym_end] = ACTIONS(2535), [sym_identifier] = ACTIONS(2537), [anon_sym_export] = ACTIONS(2537), @@ -106716,7 +109579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2537), [sym_html_comment] = ACTIONS(5), }, - [767] = { + [761] = { [ts_builtin_sym_end] = ACTIONS(2539), [sym_identifier] = ACTIONS(2541), [anon_sym_export] = ACTIONS(2541), @@ -106799,7 +109662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2541), [sym_html_comment] = ACTIONS(5), }, - [768] = { + [762] = { [ts_builtin_sym_end] = ACTIONS(2543), [sym_identifier] = ACTIONS(2545), [anon_sym_export] = ACTIONS(2545), @@ -106882,7 +109745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2545), [sym_html_comment] = ACTIONS(5), }, - [769] = { + [763] = { [ts_builtin_sym_end] = ACTIONS(2547), [sym_identifier] = ACTIONS(2549), [anon_sym_export] = ACTIONS(2549), @@ -106965,7 +109828,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2549), [sym_html_comment] = ACTIONS(5), }, - [770] = { + [764] = { + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2541), + [anon_sym_export] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_typeof] = ACTIONS(2541), + [anon_sym_import] = ACTIONS(2541), + [anon_sym_with] = ACTIONS(2541), + [anon_sym_var] = ACTIONS(2541), + [anon_sym_let] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_await] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_debugger] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [sym_glimmer_opening_tag] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_function] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_SLASH] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_void] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2539), + [sym_number] = ACTIONS(2539), + [sym_private_property_identifier] = ACTIONS(2539), + [sym_this] = ACTIONS(2541), + [sym_super] = ACTIONS(2541), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [sym_null] = ACTIONS(2541), + [sym_undefined] = ACTIONS(2541), + [anon_sym_AT] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_readonly] = ACTIONS(2541), + [anon_sym_get] = ACTIONS(2541), + [anon_sym_set] = ACTIONS(2541), + [anon_sym_declare] = ACTIONS(2541), + [anon_sym_public] = ACTIONS(2541), + [anon_sym_private] = ACTIONS(2541), + [anon_sym_protected] = ACTIONS(2541), + [anon_sym_override] = ACTIONS(2541), + [anon_sym_module] = ACTIONS(2541), + [anon_sym_any] = ACTIONS(2541), + [anon_sym_number] = ACTIONS(2541), + [anon_sym_boolean] = ACTIONS(2541), + [anon_sym_string] = ACTIONS(2541), + [anon_sym_symbol] = ACTIONS(2541), + [anon_sym_object] = ACTIONS(2541), + [anon_sym_abstract] = ACTIONS(2541), + [anon_sym_interface] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [sym_html_comment] = ACTIONS(5), + }, + [765] = { + [ts_builtin_sym_end] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2553), + [anon_sym_export] = ACTIONS(2553), + [anon_sym_default] = ACTIONS(2553), + [anon_sym_type] = ACTIONS(2553), + [anon_sym_namespace] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_typeof] = ACTIONS(2553), + [anon_sym_import] = ACTIONS(2553), + [anon_sym_with] = ACTIONS(2553), + [anon_sym_var] = ACTIONS(2553), + [anon_sym_let] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_switch] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_await] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_do] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_debugger] = ACTIONS(2553), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_throw] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2553), + [anon_sym_yield] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2551), + [sym_glimmer_opening_tag] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_function] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(2553), + [anon_sym_using] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_void] = ACTIONS(2553), + [anon_sym_delete] = ACTIONS(2553), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2551), + [sym_number] = ACTIONS(2551), + [sym_private_property_identifier] = ACTIONS(2551), + [sym_this] = ACTIONS(2553), + [sym_super] = ACTIONS(2553), + [sym_true] = ACTIONS(2553), + [sym_false] = ACTIONS(2553), + [sym_null] = ACTIONS(2553), + [sym_undefined] = ACTIONS(2553), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_readonly] = ACTIONS(2553), + [anon_sym_get] = ACTIONS(2553), + [anon_sym_set] = ACTIONS(2553), + [anon_sym_declare] = ACTIONS(2553), + [anon_sym_public] = ACTIONS(2553), + [anon_sym_private] = ACTIONS(2553), + [anon_sym_protected] = ACTIONS(2553), + [anon_sym_override] = ACTIONS(2553), + [anon_sym_module] = ACTIONS(2553), + [anon_sym_any] = ACTIONS(2553), + [anon_sym_number] = ACTIONS(2553), + [anon_sym_boolean] = ACTIONS(2553), + [anon_sym_string] = ACTIONS(2553), + [anon_sym_symbol] = ACTIONS(2553), + [anon_sym_object] = ACTIONS(2553), + [anon_sym_abstract] = ACTIONS(2553), + [anon_sym_interface] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [sym_html_comment] = ACTIONS(5), + }, + [766] = { [ts_builtin_sym_end] = ACTIONS(2551), [sym_identifier] = ACTIONS(2553), [anon_sym_export] = ACTIONS(2553), @@ -107048,6 +110077,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2553), [sym_html_comment] = ACTIONS(5), }, + [767] = { + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2541), + [anon_sym_export] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_typeof] = ACTIONS(2541), + [anon_sym_import] = ACTIONS(2541), + [anon_sym_with] = ACTIONS(2541), + [anon_sym_var] = ACTIONS(2541), + [anon_sym_let] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_await] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_debugger] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [sym_glimmer_opening_tag] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_function] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_SLASH] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_void] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2539), + [sym_number] = ACTIONS(2539), + [sym_private_property_identifier] = ACTIONS(2539), + [sym_this] = ACTIONS(2541), + [sym_super] = ACTIONS(2541), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [sym_null] = ACTIONS(2541), + [sym_undefined] = ACTIONS(2541), + [anon_sym_AT] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_readonly] = ACTIONS(2541), + [anon_sym_get] = ACTIONS(2541), + [anon_sym_set] = ACTIONS(2541), + [anon_sym_declare] = ACTIONS(2541), + [anon_sym_public] = ACTIONS(2541), + [anon_sym_private] = ACTIONS(2541), + [anon_sym_protected] = ACTIONS(2541), + [anon_sym_override] = ACTIONS(2541), + [anon_sym_module] = ACTIONS(2541), + [anon_sym_any] = ACTIONS(2541), + [anon_sym_number] = ACTIONS(2541), + [anon_sym_boolean] = ACTIONS(2541), + [anon_sym_string] = ACTIONS(2541), + [anon_sym_symbol] = ACTIONS(2541), + [anon_sym_object] = ACTIONS(2541), + [anon_sym_abstract] = ACTIONS(2541), + [anon_sym_interface] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [sym_html_comment] = ACTIONS(5), + }, + [768] = { + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2541), + [anon_sym_export] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_typeof] = ACTIONS(2541), + [anon_sym_import] = ACTIONS(2541), + [anon_sym_with] = ACTIONS(2541), + [anon_sym_var] = ACTIONS(2541), + [anon_sym_let] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_await] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_debugger] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [sym_glimmer_opening_tag] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_function] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_SLASH] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_void] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2539), + [sym_number] = ACTIONS(2539), + [sym_private_property_identifier] = ACTIONS(2539), + [sym_this] = ACTIONS(2541), + [sym_super] = ACTIONS(2541), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [sym_null] = ACTIONS(2541), + [sym_undefined] = ACTIONS(2541), + [anon_sym_AT] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_readonly] = ACTIONS(2541), + [anon_sym_get] = ACTIONS(2541), + [anon_sym_set] = ACTIONS(2541), + [anon_sym_declare] = ACTIONS(2541), + [anon_sym_public] = ACTIONS(2541), + [anon_sym_private] = ACTIONS(2541), + [anon_sym_protected] = ACTIONS(2541), + [anon_sym_override] = ACTIONS(2541), + [anon_sym_module] = ACTIONS(2541), + [anon_sym_any] = ACTIONS(2541), + [anon_sym_number] = ACTIONS(2541), + [anon_sym_boolean] = ACTIONS(2541), + [anon_sym_string] = ACTIONS(2541), + [anon_sym_symbol] = ACTIONS(2541), + [anon_sym_object] = ACTIONS(2541), + [anon_sym_abstract] = ACTIONS(2541), + [anon_sym_interface] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [sym_html_comment] = ACTIONS(5), + }, + [769] = { + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2541), + [anon_sym_export] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_typeof] = ACTIONS(2541), + [anon_sym_import] = ACTIONS(2541), + [anon_sym_with] = ACTIONS(2541), + [anon_sym_var] = ACTIONS(2541), + [anon_sym_let] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_await] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_debugger] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [sym_glimmer_opening_tag] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_function] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_SLASH] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_void] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2539), + [sym_number] = ACTIONS(2539), + [sym_private_property_identifier] = ACTIONS(2539), + [sym_this] = ACTIONS(2541), + [sym_super] = ACTIONS(2541), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [sym_null] = ACTIONS(2541), + [sym_undefined] = ACTIONS(2541), + [anon_sym_AT] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_readonly] = ACTIONS(2541), + [anon_sym_get] = ACTIONS(2541), + [anon_sym_set] = ACTIONS(2541), + [anon_sym_declare] = ACTIONS(2541), + [anon_sym_public] = ACTIONS(2541), + [anon_sym_private] = ACTIONS(2541), + [anon_sym_protected] = ACTIONS(2541), + [anon_sym_override] = ACTIONS(2541), + [anon_sym_module] = ACTIONS(2541), + [anon_sym_any] = ACTIONS(2541), + [anon_sym_number] = ACTIONS(2541), + [anon_sym_boolean] = ACTIONS(2541), + [anon_sym_string] = ACTIONS(2541), + [anon_sym_symbol] = ACTIONS(2541), + [anon_sym_object] = ACTIONS(2541), + [anon_sym_abstract] = ACTIONS(2541), + [anon_sym_interface] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [sym_html_comment] = ACTIONS(5), + }, + [770] = { + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2541), + [anon_sym_export] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_typeof] = ACTIONS(2541), + [anon_sym_import] = ACTIONS(2541), + [anon_sym_with] = ACTIONS(2541), + [anon_sym_var] = ACTIONS(2541), + [anon_sym_let] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_await] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_debugger] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [sym_glimmer_opening_tag] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_function] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_SLASH] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_void] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2539), + [sym_number] = ACTIONS(2539), + [sym_private_property_identifier] = ACTIONS(2539), + [sym_this] = ACTIONS(2541), + [sym_super] = ACTIONS(2541), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [sym_null] = ACTIONS(2541), + [sym_undefined] = ACTIONS(2541), + [anon_sym_AT] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_readonly] = ACTIONS(2541), + [anon_sym_get] = ACTIONS(2541), + [anon_sym_set] = ACTIONS(2541), + [anon_sym_declare] = ACTIONS(2541), + [anon_sym_public] = ACTIONS(2541), + [anon_sym_private] = ACTIONS(2541), + [anon_sym_protected] = ACTIONS(2541), + [anon_sym_override] = ACTIONS(2541), + [anon_sym_module] = ACTIONS(2541), + [anon_sym_any] = ACTIONS(2541), + [anon_sym_number] = ACTIONS(2541), + [anon_sym_boolean] = ACTIONS(2541), + [anon_sym_string] = ACTIONS(2541), + [anon_sym_symbol] = ACTIONS(2541), + [anon_sym_object] = ACTIONS(2541), + [anon_sym_abstract] = ACTIONS(2541), + [anon_sym_interface] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [sym_html_comment] = ACTIONS(5), + }, [771] = { [ts_builtin_sym_end] = ACTIONS(2555), [sym_identifier] = ACTIONS(2557), @@ -107215,6 +110576,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [773] = { + [ts_builtin_sym_end] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2553), + [anon_sym_export] = ACTIONS(2553), + [anon_sym_default] = ACTIONS(2553), + [anon_sym_type] = ACTIONS(2553), + [anon_sym_namespace] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_typeof] = ACTIONS(2553), + [anon_sym_import] = ACTIONS(2553), + [anon_sym_with] = ACTIONS(2553), + [anon_sym_var] = ACTIONS(2553), + [anon_sym_let] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_switch] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_await] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_do] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_debugger] = ACTIONS(2553), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_throw] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2553), + [anon_sym_yield] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2551), + [sym_glimmer_opening_tag] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_function] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(2553), + [anon_sym_using] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_void] = ACTIONS(2553), + [anon_sym_delete] = ACTIONS(2553), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2551), + [sym_number] = ACTIONS(2551), + [sym_private_property_identifier] = ACTIONS(2551), + [sym_this] = ACTIONS(2553), + [sym_super] = ACTIONS(2553), + [sym_true] = ACTIONS(2553), + [sym_false] = ACTIONS(2553), + [sym_null] = ACTIONS(2553), + [sym_undefined] = ACTIONS(2553), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_readonly] = ACTIONS(2553), + [anon_sym_get] = ACTIONS(2553), + [anon_sym_set] = ACTIONS(2553), + [anon_sym_declare] = ACTIONS(2553), + [anon_sym_public] = ACTIONS(2553), + [anon_sym_private] = ACTIONS(2553), + [anon_sym_protected] = ACTIONS(2553), + [anon_sym_override] = ACTIONS(2553), + [anon_sym_module] = ACTIONS(2553), + [anon_sym_any] = ACTIONS(2553), + [anon_sym_number] = ACTIONS(2553), + [anon_sym_boolean] = ACTIONS(2553), + [anon_sym_string] = ACTIONS(2553), + [anon_sym_symbol] = ACTIONS(2553), + [anon_sym_object] = ACTIONS(2553), + [anon_sym_abstract] = ACTIONS(2553), + [anon_sym_interface] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [sym_html_comment] = ACTIONS(5), + }, + [774] = { [ts_builtin_sym_end] = ACTIONS(2563), [sym_identifier] = ACTIONS(2565), [anon_sym_export] = ACTIONS(2565), @@ -107297,7 +110741,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2565), [sym_html_comment] = ACTIONS(5), }, - [774] = { + [775] = { + [ts_builtin_sym_end] = ACTIONS(2543), + [sym_identifier] = ACTIONS(2545), + [anon_sym_export] = ACTIONS(2545), + [anon_sym_default] = ACTIONS(2545), + [anon_sym_type] = ACTIONS(2545), + [anon_sym_namespace] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_typeof] = ACTIONS(2545), + [anon_sym_import] = ACTIONS(2545), + [anon_sym_with] = ACTIONS(2545), + [anon_sym_var] = ACTIONS(2545), + [anon_sym_let] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_else] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_debugger] = ACTIONS(2545), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_case] = ACTIONS(2545), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_LBRACK] = ACTIONS(2543), + [sym_glimmer_opening_tag] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_async] = ACTIONS(2545), + [anon_sym_function] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_using] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2545), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_SLASH] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2545), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_void] = ACTIONS(2545), + [anon_sym_delete] = ACTIONS(2545), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2543), + [sym_number] = ACTIONS(2543), + [sym_private_property_identifier] = ACTIONS(2543), + [sym_this] = ACTIONS(2545), + [sym_super] = ACTIONS(2545), + [sym_true] = ACTIONS(2545), + [sym_false] = ACTIONS(2545), + [sym_null] = ACTIONS(2545), + [sym_undefined] = ACTIONS(2545), + [anon_sym_AT] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_readonly] = ACTIONS(2545), + [anon_sym_get] = ACTIONS(2545), + [anon_sym_set] = ACTIONS(2545), + [anon_sym_declare] = ACTIONS(2545), + [anon_sym_public] = ACTIONS(2545), + [anon_sym_private] = ACTIONS(2545), + [anon_sym_protected] = ACTIONS(2545), + [anon_sym_override] = ACTIONS(2545), + [anon_sym_module] = ACTIONS(2545), + [anon_sym_any] = ACTIONS(2545), + [anon_sym_number] = ACTIONS(2545), + [anon_sym_boolean] = ACTIONS(2545), + [anon_sym_string] = ACTIONS(2545), + [anon_sym_symbol] = ACTIONS(2545), + [anon_sym_object] = ACTIONS(2545), + [anon_sym_abstract] = ACTIONS(2545), + [anon_sym_interface] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [sym_html_comment] = ACTIONS(5), + }, + [776] = { [ts_builtin_sym_end] = ACTIONS(2567), [sym_identifier] = ACTIONS(2569), [anon_sym_export] = ACTIONS(2569), @@ -107380,256 +110907,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2569), [sym_html_comment] = ACTIONS(5), }, - [775] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(4770), - [sym_optional_tuple_parameter] = STATE(4770), - [sym_optional_type] = STATE(4770), - [sym_rest_type] = STATE(4770), - [sym__tuple_type_member] = STATE(4770), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_COMMA] = ACTIONS(2573), - [anon_sym_typeof] = ACTIONS(1500), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [777] = { + [ts_builtin_sym_end] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2573), + [anon_sym_export] = ACTIONS(2573), + [anon_sym_default] = ACTIONS(2573), + [anon_sym_type] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_typeof] = ACTIONS(2573), + [anon_sym_import] = ACTIONS(2573), + [anon_sym_with] = ACTIONS(2573), + [anon_sym_var] = ACTIONS(2573), + [anon_sym_let] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_await] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_debugger] = ACTIONS(2573), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_throw] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2573), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2571), + [sym_glimmer_opening_tag] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_class] = ACTIONS(2573), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_function] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2573), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_SLASH] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_void] = ACTIONS(2573), + [anon_sym_delete] = ACTIONS(2573), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2571), + [sym_number] = ACTIONS(2571), + [sym_private_property_identifier] = ACTIONS(2571), + [sym_this] = ACTIONS(2573), + [sym_super] = ACTIONS(2573), + [sym_true] = ACTIONS(2573), + [sym_false] = ACTIONS(2573), + [sym_null] = ACTIONS(2573), + [sym_undefined] = ACTIONS(2573), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_readonly] = ACTIONS(2573), + [anon_sym_get] = ACTIONS(2573), + [anon_sym_set] = ACTIONS(2573), + [anon_sym_declare] = ACTIONS(2573), + [anon_sym_public] = ACTIONS(2573), + [anon_sym_private] = ACTIONS(2573), + [anon_sym_protected] = ACTIONS(2573), + [anon_sym_override] = ACTIONS(2573), + [anon_sym_module] = ACTIONS(2573), + [anon_sym_any] = ACTIONS(2573), + [anon_sym_number] = ACTIONS(2573), + [anon_sym_boolean] = ACTIONS(2573), + [anon_sym_string] = ACTIONS(2573), + [anon_sym_symbol] = ACTIONS(2573), + [anon_sym_object] = ACTIONS(2573), + [anon_sym_abstract] = ACTIONS(2573), + [anon_sym_interface] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), [sym_html_comment] = ACTIONS(5), }, - [776] = { - [ts_builtin_sym_end] = ACTIONS(2583), - [sym_identifier] = ACTIONS(2585), - [anon_sym_export] = ACTIONS(2585), - [anon_sym_default] = ACTIONS(2585), - [anon_sym_type] = ACTIONS(2585), - [anon_sym_namespace] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2583), - [anon_sym_typeof] = ACTIONS(2585), - [anon_sym_import] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2585), - [anon_sym_var] = ACTIONS(2585), - [anon_sym_let] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2583), - [anon_sym_else] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_switch] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_await] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_do] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_debugger] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_throw] = ACTIONS(2585), - [anon_sym_SEMI] = ACTIONS(2583), - [anon_sym_case] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [sym_glimmer_opening_tag] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_SQUOTE] = ACTIONS(2583), - [anon_sym_class] = ACTIONS(2585), - [anon_sym_async] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2585), - [anon_sym_using] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2583), - [anon_sym_void] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2583), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2583), - [sym_number] = ACTIONS(2583), - [sym_private_property_identifier] = ACTIONS(2583), - [sym_this] = ACTIONS(2585), - [sym_super] = ACTIONS(2585), - [sym_true] = ACTIONS(2585), - [sym_false] = ACTIONS(2585), - [sym_null] = ACTIONS(2585), - [sym_undefined] = ACTIONS(2585), - [anon_sym_AT] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2585), - [anon_sym_readonly] = ACTIONS(2585), - [anon_sym_get] = ACTIONS(2585), - [anon_sym_set] = ACTIONS(2585), - [anon_sym_declare] = ACTIONS(2585), - [anon_sym_public] = ACTIONS(2585), - [anon_sym_private] = ACTIONS(2585), - [anon_sym_protected] = ACTIONS(2585), - [anon_sym_override] = ACTIONS(2585), - [anon_sym_module] = ACTIONS(2585), - [anon_sym_any] = ACTIONS(2585), - [anon_sym_number] = ACTIONS(2585), - [anon_sym_boolean] = ACTIONS(2585), - [anon_sym_string] = ACTIONS(2585), - [anon_sym_symbol] = ACTIONS(2585), - [anon_sym_object] = ACTIONS(2585), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_interface] = ACTIONS(2585), - [anon_sym_enum] = ACTIONS(2585), + [778] = { + [ts_builtin_sym_end] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2577), + [anon_sym_export] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_namespace] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(2577), + [anon_sym_import] = ACTIONS(2577), + [anon_sym_with] = ACTIONS(2577), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_let] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_await] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_debugger] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_case] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2575), + [sym_glimmer_opening_tag] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_function] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_using] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_SLASH] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2577), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_void] = ACTIONS(2577), + [anon_sym_delete] = ACTIONS(2577), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2575), + [sym_number] = ACTIONS(2575), + [sym_private_property_identifier] = ACTIONS(2575), + [sym_this] = ACTIONS(2577), + [sym_super] = ACTIONS(2577), + [sym_true] = ACTIONS(2577), + [sym_false] = ACTIONS(2577), + [sym_null] = ACTIONS(2577), + [sym_undefined] = ACTIONS(2577), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_readonly] = ACTIONS(2577), + [anon_sym_get] = ACTIONS(2577), + [anon_sym_set] = ACTIONS(2577), + [anon_sym_declare] = ACTIONS(2577), + [anon_sym_public] = ACTIONS(2577), + [anon_sym_private] = ACTIONS(2577), + [anon_sym_protected] = ACTIONS(2577), + [anon_sym_override] = ACTIONS(2577), + [anon_sym_module] = ACTIONS(2577), + [anon_sym_any] = ACTIONS(2577), + [anon_sym_number] = ACTIONS(2577), + [anon_sym_boolean] = ACTIONS(2577), + [anon_sym_string] = ACTIONS(2577), + [anon_sym_symbol] = ACTIONS(2577), + [anon_sym_object] = ACTIONS(2577), + [anon_sym_abstract] = ACTIONS(2577), + [anon_sym_interface] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), [sym_html_comment] = ACTIONS(5), }, - [777] = { - [ts_builtin_sym_end] = ACTIONS(2583), - [sym_identifier] = ACTIONS(2585), - [anon_sym_export] = ACTIONS(2585), - [anon_sym_default] = ACTIONS(2585), - [anon_sym_type] = ACTIONS(2585), - [anon_sym_namespace] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2583), - [anon_sym_typeof] = ACTIONS(2585), - [anon_sym_import] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2585), - [anon_sym_var] = ACTIONS(2585), - [anon_sym_let] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2583), - [anon_sym_else] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_switch] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_await] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_do] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_debugger] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_throw] = ACTIONS(2585), - [anon_sym_SEMI] = ACTIONS(2583), - [anon_sym_case] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [sym_glimmer_opening_tag] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_SQUOTE] = ACTIONS(2583), - [anon_sym_class] = ACTIONS(2585), - [anon_sym_async] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2585), - [anon_sym_using] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2583), - [anon_sym_void] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2583), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2583), - [sym_number] = ACTIONS(2583), - [sym_private_property_identifier] = ACTIONS(2583), - [sym_this] = ACTIONS(2585), - [sym_super] = ACTIONS(2585), - [sym_true] = ACTIONS(2585), - [sym_false] = ACTIONS(2585), - [sym_null] = ACTIONS(2585), - [sym_undefined] = ACTIONS(2585), - [anon_sym_AT] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2585), - [anon_sym_readonly] = ACTIONS(2585), - [anon_sym_get] = ACTIONS(2585), - [anon_sym_set] = ACTIONS(2585), - [anon_sym_declare] = ACTIONS(2585), - [anon_sym_public] = ACTIONS(2585), - [anon_sym_private] = ACTIONS(2585), - [anon_sym_protected] = ACTIONS(2585), - [anon_sym_override] = ACTIONS(2585), - [anon_sym_module] = ACTIONS(2585), - [anon_sym_any] = ACTIONS(2585), - [anon_sym_number] = ACTIONS(2585), - [anon_sym_boolean] = ACTIONS(2585), - [anon_sym_string] = ACTIONS(2585), - [anon_sym_symbol] = ACTIONS(2585), - [anon_sym_object] = ACTIONS(2585), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_interface] = ACTIONS(2585), - [anon_sym_enum] = ACTIONS(2585), + [779] = { + [ts_builtin_sym_end] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2581), + [anon_sym_export] = ACTIONS(2581), + [anon_sym_default] = ACTIONS(2581), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_namespace] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(2581), + [anon_sym_import] = ACTIONS(2581), + [anon_sym_with] = ACTIONS(2581), + [anon_sym_var] = ACTIONS(2581), + [anon_sym_let] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_switch] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_do] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_debugger] = ACTIONS(2581), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_throw] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_case] = ACTIONS(2581), + [anon_sym_yield] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2579), + [sym_glimmer_opening_tag] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_class] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_function] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(2581), + [anon_sym_using] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_SLASH] = ACTIONS(2581), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_delete] = ACTIONS(2581), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2579), + [sym_number] = ACTIONS(2579), + [sym_private_property_identifier] = ACTIONS(2579), + [sym_this] = ACTIONS(2581), + [sym_super] = ACTIONS(2581), + [sym_true] = ACTIONS(2581), + [sym_false] = ACTIONS(2581), + [sym_null] = ACTIONS(2581), + [sym_undefined] = ACTIONS(2581), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_readonly] = ACTIONS(2581), + [anon_sym_get] = ACTIONS(2581), + [anon_sym_set] = ACTIONS(2581), + [anon_sym_declare] = ACTIONS(2581), + [anon_sym_public] = ACTIONS(2581), + [anon_sym_private] = ACTIONS(2581), + [anon_sym_protected] = ACTIONS(2581), + [anon_sym_override] = ACTIONS(2581), + [anon_sym_module] = ACTIONS(2581), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2581), + [anon_sym_interface] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), [sym_html_comment] = ACTIONS(5), }, - [778] = { + [780] = { [ts_builtin_sym_end] = ACTIONS(2583), [sym_identifier] = ACTIONS(2585), [anon_sym_export] = ACTIONS(2585), @@ -107712,7 +111239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2585), [sym_html_comment] = ACTIONS(5), }, - [779] = { + [781] = { [ts_builtin_sym_end] = ACTIONS(2587), [sym_identifier] = ACTIONS(2589), [anon_sym_export] = ACTIONS(2589), @@ -107795,7 +111322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2589), [sym_html_comment] = ACTIONS(5), }, - [780] = { + [782] = { [ts_builtin_sym_end] = ACTIONS(2591), [sym_identifier] = ACTIONS(2593), [anon_sym_export] = ACTIONS(2593), @@ -107878,7 +111405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2593), [sym_html_comment] = ACTIONS(5), }, - [781] = { + [783] = { [ts_builtin_sym_end] = ACTIONS(2595), [sym_identifier] = ACTIONS(2597), [anon_sym_export] = ACTIONS(2597), @@ -107961,7 +111488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2597), [sym_html_comment] = ACTIONS(5), }, - [782] = { + [784] = { [ts_builtin_sym_end] = ACTIONS(2599), [sym_identifier] = ACTIONS(2601), [anon_sym_export] = ACTIONS(2601), @@ -108044,90 +111571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2601), [sym_html_comment] = ACTIONS(5), }, - [783] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(4889), - [sym_optional_tuple_parameter] = STATE(4889), - [sym_optional_type] = STATE(4889), - [sym_rest_type] = STATE(4889), - [sym__tuple_type_member] = STATE(4889), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_typeof] = ACTIONS(1500), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [785] = { + [ts_builtin_sym_end] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2605), + [anon_sym_export] = ACTIONS(2605), + [anon_sym_default] = ACTIONS(2605), + [anon_sym_type] = ACTIONS(2605), + [anon_sym_namespace] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_RBRACE] = ACTIONS(2603), + [anon_sym_typeof] = ACTIONS(2605), + [anon_sym_import] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2605), + [anon_sym_var] = ACTIONS(2605), + [anon_sym_let] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_switch] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_await] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_debugger] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_throw] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [sym_glimmer_opening_tag] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_SQUOTE] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2605), + [anon_sym_async] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2605), + [anon_sym_using] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_SLASH] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2603), + [anon_sym_void] = ACTIONS(2605), + [anon_sym_delete] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2603), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2603), + [sym_number] = ACTIONS(2603), + [sym_private_property_identifier] = ACTIONS(2603), + [sym_this] = ACTIONS(2605), + [sym_super] = ACTIONS(2605), + [sym_true] = ACTIONS(2605), + [sym_false] = ACTIONS(2605), + [sym_null] = ACTIONS(2605), + [sym_undefined] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_readonly] = ACTIONS(2605), + [anon_sym_get] = ACTIONS(2605), + [anon_sym_set] = ACTIONS(2605), + [anon_sym_declare] = ACTIONS(2605), + [anon_sym_public] = ACTIONS(2605), + [anon_sym_private] = ACTIONS(2605), + [anon_sym_protected] = ACTIONS(2605), + [anon_sym_override] = ACTIONS(2605), + [anon_sym_module] = ACTIONS(2605), + [anon_sym_any] = ACTIONS(2605), + [anon_sym_number] = ACTIONS(2605), + [anon_sym_boolean] = ACTIONS(2605), + [anon_sym_string] = ACTIONS(2605), + [anon_sym_symbol] = ACTIONS(2605), + [anon_sym_object] = ACTIONS(2605), + [anon_sym_abstract] = ACTIONS(2605), + [anon_sym_interface] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), [sym_html_comment] = ACTIONS(5), }, - [784] = { + [786] = { [ts_builtin_sym_end] = ACTIONS(2607), [sym_identifier] = ACTIONS(2609), [anon_sym_export] = ACTIONS(2609), @@ -108210,7 +111737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2609), [sym_html_comment] = ACTIONS(5), }, - [785] = { + [787] = { [ts_builtin_sym_end] = ACTIONS(2611), [sym_identifier] = ACTIONS(2613), [anon_sym_export] = ACTIONS(2613), @@ -108293,90 +111820,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2613), [sym_html_comment] = ACTIONS(5), }, - [786] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(4619), - [sym_optional_tuple_parameter] = STATE(4619), - [sym_optional_type] = STATE(4619), - [sym_rest_type] = STATE(4619), - [sym__tuple_type_member] = STATE(4619), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_COMMA] = ACTIONS(2615), - [anon_sym_typeof] = ACTIONS(1500), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [788] = { + [ts_builtin_sym_end] = ACTIONS(2615), + [sym_identifier] = ACTIONS(2617), + [anon_sym_export] = ACTIONS(2617), + [anon_sym_default] = ACTIONS(2617), + [anon_sym_type] = ACTIONS(2617), + [anon_sym_namespace] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_typeof] = ACTIONS(2617), + [anon_sym_import] = ACTIONS(2617), + [anon_sym_with] = ACTIONS(2617), + [anon_sym_var] = ACTIONS(2617), + [anon_sym_let] = ACTIONS(2617), + [anon_sym_const] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2617), + [anon_sym_if] = ACTIONS(2617), + [anon_sym_switch] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_await] = ACTIONS(2617), + [anon_sym_while] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_try] = ACTIONS(2617), + [anon_sym_break] = ACTIONS(2617), + [anon_sym_continue] = ACTIONS(2617), + [anon_sym_debugger] = ACTIONS(2617), + [anon_sym_return] = ACTIONS(2617), + [anon_sym_throw] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2615), + [sym_glimmer_opening_tag] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2617), + [anon_sym_async] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2617), + [anon_sym_using] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_void] = ACTIONS(2617), + [anon_sym_delete] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2615), + [sym_number] = ACTIONS(2615), + [sym_private_property_identifier] = ACTIONS(2615), + [sym_this] = ACTIONS(2617), + [sym_super] = ACTIONS(2617), + [sym_true] = ACTIONS(2617), + [sym_false] = ACTIONS(2617), + [sym_null] = ACTIONS(2617), + [sym_undefined] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2617), + [anon_sym_readonly] = ACTIONS(2617), + [anon_sym_get] = ACTIONS(2617), + [anon_sym_set] = ACTIONS(2617), + [anon_sym_declare] = ACTIONS(2617), + [anon_sym_public] = ACTIONS(2617), + [anon_sym_private] = ACTIONS(2617), + [anon_sym_protected] = ACTIONS(2617), + [anon_sym_override] = ACTIONS(2617), + [anon_sym_module] = ACTIONS(2617), + [anon_sym_any] = ACTIONS(2617), + [anon_sym_number] = ACTIONS(2617), + [anon_sym_boolean] = ACTIONS(2617), + [anon_sym_string] = ACTIONS(2617), + [anon_sym_symbol] = ACTIONS(2617), + [anon_sym_object] = ACTIONS(2617), + [anon_sym_abstract] = ACTIONS(2617), + [anon_sym_interface] = ACTIONS(2617), + [anon_sym_enum] = ACTIONS(2617), [sym_html_comment] = ACTIONS(5), }, - [787] = { + [789] = { [ts_builtin_sym_end] = ACTIONS(2619), [sym_identifier] = ACTIONS(2621), [anon_sym_export] = ACTIONS(2621), @@ -108459,7 +111986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2621), [sym_html_comment] = ACTIONS(5), }, - [788] = { + [790] = { [ts_builtin_sym_end] = ACTIONS(2623), [sym_identifier] = ACTIONS(2625), [anon_sym_export] = ACTIONS(2625), @@ -108542,90 +112069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2625), [sym_html_comment] = ACTIONS(5), }, - [789] = { - [ts_builtin_sym_end] = ACTIONS(2627), - [sym_identifier] = ACTIONS(2629), - [anon_sym_export] = ACTIONS(2629), - [anon_sym_default] = ACTIONS(2629), - [anon_sym_type] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_typeof] = ACTIONS(2629), - [anon_sym_import] = ACTIONS(2629), - [anon_sym_with] = ACTIONS(2629), - [anon_sym_var] = ACTIONS(2629), - [anon_sym_let] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_await] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_debugger] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_throw] = ACTIONS(2629), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_case] = ACTIONS(2629), - [anon_sym_yield] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2627), - [sym_glimmer_opening_tag] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_class] = ACTIONS(2629), - [anon_sym_async] = ACTIONS(2629), - [anon_sym_function] = ACTIONS(2629), - [anon_sym_new] = ACTIONS(2629), - [anon_sym_using] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_SLASH] = ACTIONS(2629), - [anon_sym_LT] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_void] = ACTIONS(2629), - [anon_sym_delete] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2627), - [sym_number] = ACTIONS(2627), - [sym_private_property_identifier] = ACTIONS(2627), - [sym_this] = ACTIONS(2629), - [sym_super] = ACTIONS(2629), - [sym_true] = ACTIONS(2629), - [sym_false] = ACTIONS(2629), - [sym_null] = ACTIONS(2629), - [sym_undefined] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_readonly] = ACTIONS(2629), - [anon_sym_get] = ACTIONS(2629), - [anon_sym_set] = ACTIONS(2629), - [anon_sym_declare] = ACTIONS(2629), - [anon_sym_public] = ACTIONS(2629), - [anon_sym_private] = ACTIONS(2629), - [anon_sym_protected] = ACTIONS(2629), - [anon_sym_override] = ACTIONS(2629), - [anon_sym_module] = ACTIONS(2629), - [anon_sym_any] = ACTIONS(2629), - [anon_sym_number] = ACTIONS(2629), - [anon_sym_boolean] = ACTIONS(2629), - [anon_sym_string] = ACTIONS(2629), - [anon_sym_symbol] = ACTIONS(2629), - [anon_sym_object] = ACTIONS(2629), - [anon_sym_abstract] = ACTIONS(2629), - [anon_sym_interface] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), - [sym_html_comment] = ACTIONS(5), - }, - [790] = { + [791] = { [ts_builtin_sym_end] = ACTIONS(2627), [sym_identifier] = ACTIONS(2629), [anon_sym_export] = ACTIONS(2629), @@ -108708,90 +112152,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2629), [sym_html_comment] = ACTIONS(5), }, - [791] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(4650), - [sym_optional_tuple_parameter] = STATE(4650), - [sym_optional_type] = STATE(4650), - [sym_rest_type] = STATE(4650), - [sym__tuple_type_member] = STATE(4650), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_COMMA] = ACTIONS(2631), - [anon_sym_typeof] = ACTIONS(1500), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [792] = { + [ts_builtin_sym_end] = ACTIONS(2631), + [sym_identifier] = ACTIONS(2633), + [anon_sym_export] = ACTIONS(2633), + [anon_sym_default] = ACTIONS(2633), + [anon_sym_type] = ACTIONS(2633), + [anon_sym_namespace] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_typeof] = ACTIONS(2633), + [anon_sym_import] = ACTIONS(2633), + [anon_sym_with] = ACTIONS(2633), + [anon_sym_var] = ACTIONS(2633), + [anon_sym_let] = ACTIONS(2633), + [anon_sym_const] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_await] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_try] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_debugger] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_throw] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2633), + [anon_sym_yield] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2631), + [sym_glimmer_opening_tag] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2633), + [anon_sym_async] = ACTIONS(2633), + [anon_sym_function] = ACTIONS(2633), + [anon_sym_new] = ACTIONS(2633), + [anon_sym_using] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_void] = ACTIONS(2633), + [anon_sym_delete] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2631), + [sym_number] = ACTIONS(2631), + [sym_private_property_identifier] = ACTIONS(2631), + [sym_this] = ACTIONS(2633), + [sym_super] = ACTIONS(2633), + [sym_true] = ACTIONS(2633), + [sym_false] = ACTIONS(2633), + [sym_null] = ACTIONS(2633), + [sym_undefined] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_readonly] = ACTIONS(2633), + [anon_sym_get] = ACTIONS(2633), + [anon_sym_set] = ACTIONS(2633), + [anon_sym_declare] = ACTIONS(2633), + [anon_sym_public] = ACTIONS(2633), + [anon_sym_private] = ACTIONS(2633), + [anon_sym_protected] = ACTIONS(2633), + [anon_sym_override] = ACTIONS(2633), + [anon_sym_module] = ACTIONS(2633), + [anon_sym_any] = ACTIONS(2633), + [anon_sym_number] = ACTIONS(2633), + [anon_sym_boolean] = ACTIONS(2633), + [anon_sym_string] = ACTIONS(2633), + [anon_sym_symbol] = ACTIONS(2633), + [anon_sym_object] = ACTIONS(2633), + [anon_sym_abstract] = ACTIONS(2633), + [anon_sym_interface] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), [sym_html_comment] = ACTIONS(5), }, - [792] = { + [793] = { [ts_builtin_sym_end] = ACTIONS(2635), [sym_identifier] = ACTIONS(2637), [anon_sym_export] = ACTIONS(2637), @@ -108874,16 +112318,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2637), [sym_html_comment] = ACTIONS(5), }, - [793] = { - [ts_builtin_sym_end] = ACTIONS(2639), - [sym_identifier] = ACTIONS(2641), - [anon_sym_export] = ACTIONS(2641), - [anon_sym_default] = ACTIONS(2641), - [anon_sym_type] = ACTIONS(2641), - [anon_sym_namespace] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_typeof] = ACTIONS(2641), + [794] = { + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_namespace] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_with] = ACTIONS(1766), + [anon_sym_var] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_await] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_debugger] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_case] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1764), + [sym_glimmer_opening_tag] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_class] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_function] = ACTIONS(1766), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_using] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1764), + [anon_sym_void] = ACTIONS(1766), + [anon_sym_delete] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1764), + [sym_number] = ACTIONS(1764), + [sym_private_property_identifier] = ACTIONS(1764), + [sym_this] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_true] = ACTIONS(1766), + [sym_false] = ACTIONS(1766), + [sym_null] = ACTIONS(1766), + [sym_undefined] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_readonly] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(1766), + [anon_sym_set] = ACTIONS(1766), + [anon_sym_declare] = ACTIONS(1766), + [anon_sym_public] = ACTIONS(1766), + [anon_sym_private] = ACTIONS(1766), + [anon_sym_protected] = ACTIONS(1766), + [anon_sym_override] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_any] = ACTIONS(1766), + [anon_sym_number] = ACTIONS(1766), + [anon_sym_boolean] = ACTIONS(1766), + [anon_sym_string] = ACTIONS(1766), + [anon_sym_symbol] = ACTIONS(1766), + [anon_sym_object] = ACTIONS(1766), + [anon_sym_abstract] = ACTIONS(1766), + [anon_sym_interface] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [sym_html_comment] = ACTIONS(5), + }, + [795] = { + [ts_builtin_sym_end] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1785), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_default] = ACTIONS(1785), + [anon_sym_type] = ACTIONS(1785), + [anon_sym_namespace] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_typeof] = ACTIONS(1785), + [anon_sym_import] = ACTIONS(1785), + [anon_sym_with] = ACTIONS(1785), + [anon_sym_var] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_switch] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_debugger] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_throw] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_case] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1783), + [sym_glimmer_opening_tag] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(1785), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_function] = ACTIONS(1785), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1785), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_void] = ACTIONS(1785), + [anon_sym_delete] = ACTIONS(1785), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1783), + [sym_number] = ACTIONS(1783), + [sym_private_property_identifier] = ACTIONS(1783), + [sym_this] = ACTIONS(1785), + [sym_super] = ACTIONS(1785), + [sym_true] = ACTIONS(1785), + [sym_false] = ACTIONS(1785), + [sym_null] = ACTIONS(1785), + [sym_undefined] = ACTIONS(1785), + [anon_sym_AT] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1785), + [anon_sym_readonly] = ACTIONS(1785), + [anon_sym_get] = ACTIONS(1785), + [anon_sym_set] = ACTIONS(1785), + [anon_sym_declare] = ACTIONS(1785), + [anon_sym_public] = ACTIONS(1785), + [anon_sym_private] = ACTIONS(1785), + [anon_sym_protected] = ACTIONS(1785), + [anon_sym_override] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_any] = ACTIONS(1785), + [anon_sym_number] = ACTIONS(1785), + [anon_sym_boolean] = ACTIONS(1785), + [anon_sym_string] = ACTIONS(1785), + [anon_sym_symbol] = ACTIONS(1785), + [anon_sym_object] = ACTIONS(1785), + [anon_sym_abstract] = ACTIONS(1785), + [anon_sym_interface] = ACTIONS(1785), + [anon_sym_enum] = ACTIONS(1785), + [sym_html_comment] = ACTIONS(5), + }, + [796] = { + [ts_builtin_sym_end] = ACTIONS(2639), + [sym_identifier] = ACTIONS(2641), + [anon_sym_export] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2641), + [anon_sym_type] = ACTIONS(2641), + [anon_sym_namespace] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_typeof] = ACTIONS(2641), [anon_sym_import] = ACTIONS(2641), [anon_sym_with] = ACTIONS(2641), [anon_sym_var] = ACTIONS(2641), @@ -108957,7 +112567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2641), [sym_html_comment] = ACTIONS(5), }, - [794] = { + [797] = { [ts_builtin_sym_end] = ACTIONS(2643), [sym_identifier] = ACTIONS(2645), [anon_sym_export] = ACTIONS(2645), @@ -109040,7 +112650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2645), [sym_html_comment] = ACTIONS(5), }, - [795] = { + [798] = { [ts_builtin_sym_end] = ACTIONS(2647), [sym_identifier] = ACTIONS(2649), [anon_sym_export] = ACTIONS(2649), @@ -109123,7 +112733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2649), [sym_html_comment] = ACTIONS(5), }, - [796] = { + [799] = { [ts_builtin_sym_end] = ACTIONS(2651), [sym_identifier] = ACTIONS(2653), [anon_sym_export] = ACTIONS(2653), @@ -109206,7 +112816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2653), [sym_html_comment] = ACTIONS(5), }, - [797] = { + [800] = { [ts_builtin_sym_end] = ACTIONS(2655), [sym_identifier] = ACTIONS(2657), [anon_sym_export] = ACTIONS(2657), @@ -109289,7 +112899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2657), [sym_html_comment] = ACTIONS(5), }, - [798] = { + [801] = { [ts_builtin_sym_end] = ACTIONS(2655), [sym_identifier] = ACTIONS(2657), [anon_sym_export] = ACTIONS(2657), @@ -109372,7 +112982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2657), [sym_html_comment] = ACTIONS(5), }, - [799] = { + [802] = { [ts_builtin_sym_end] = ACTIONS(2659), [sym_identifier] = ACTIONS(2661), [anon_sym_export] = ACTIONS(2661), @@ -109455,7 +113065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2661), [sym_html_comment] = ACTIONS(5), }, - [800] = { + [803] = { [ts_builtin_sym_end] = ACTIONS(2663), [sym_identifier] = ACTIONS(2665), [anon_sym_export] = ACTIONS(2665), @@ -109538,7 +113148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2665), [sym_html_comment] = ACTIONS(5), }, - [801] = { + [804] = { [ts_builtin_sym_end] = ACTIONS(2667), [sym_identifier] = ACTIONS(2669), [anon_sym_export] = ACTIONS(2669), @@ -109621,90 +113231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2669), [sym_html_comment] = ACTIONS(5), }, - [802] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [sym_html_comment] = ACTIONS(5), - }, - [803] = { + [805] = { [ts_builtin_sym_end] = ACTIONS(2671), [sym_identifier] = ACTIONS(2673), [anon_sym_export] = ACTIONS(2673), @@ -109787,7 +113314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2673), [sym_html_comment] = ACTIONS(5), }, - [804] = { + [806] = { [ts_builtin_sym_end] = ACTIONS(2675), [sym_identifier] = ACTIONS(2677), [anon_sym_export] = ACTIONS(2677), @@ -109870,7 +113397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2677), [sym_html_comment] = ACTIONS(5), }, - [805] = { + [807] = { [ts_builtin_sym_end] = ACTIONS(2679), [sym_identifier] = ACTIONS(2681), [anon_sym_export] = ACTIONS(2681), @@ -109953,7 +113480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2681), [sym_html_comment] = ACTIONS(5), }, - [806] = { + [808] = { [ts_builtin_sym_end] = ACTIONS(2683), [sym_identifier] = ACTIONS(2685), [anon_sym_export] = ACTIONS(2685), @@ -110036,173 +113563,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2685), [sym_html_comment] = ACTIONS(5), }, - [807] = { - [ts_builtin_sym_end] = ACTIONS(2687), - [sym_identifier] = ACTIONS(2689), - [anon_sym_export] = ACTIONS(2689), - [anon_sym_default] = ACTIONS(2689), - [anon_sym_type] = ACTIONS(2689), - [anon_sym_namespace] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_typeof] = ACTIONS(2689), - [anon_sym_import] = ACTIONS(2689), - [anon_sym_with] = ACTIONS(2689), - [anon_sym_var] = ACTIONS(2689), - [anon_sym_let] = ACTIONS(2689), - [anon_sym_const] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2689), - [anon_sym_if] = ACTIONS(2689), - [anon_sym_switch] = ACTIONS(2689), - [anon_sym_for] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_await] = ACTIONS(2689), - [anon_sym_while] = ACTIONS(2689), - [anon_sym_do] = ACTIONS(2689), - [anon_sym_try] = ACTIONS(2689), - [anon_sym_break] = ACTIONS(2689), - [anon_sym_continue] = ACTIONS(2689), - [anon_sym_debugger] = ACTIONS(2689), - [anon_sym_return] = ACTIONS(2689), - [anon_sym_throw] = ACTIONS(2689), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_case] = ACTIONS(2689), - [anon_sym_yield] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2687), - [sym_glimmer_opening_tag] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2689), - [anon_sym_async] = ACTIONS(2689), - [anon_sym_function] = ACTIONS(2689), - [anon_sym_new] = ACTIONS(2689), - [anon_sym_using] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_void] = ACTIONS(2689), - [anon_sym_delete] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2687), - [sym_number] = ACTIONS(2687), - [sym_private_property_identifier] = ACTIONS(2687), - [sym_this] = ACTIONS(2689), - [sym_super] = ACTIONS(2689), - [sym_true] = ACTIONS(2689), - [sym_false] = ACTIONS(2689), - [sym_null] = ACTIONS(2689), - [sym_undefined] = ACTIONS(2689), - [anon_sym_AT] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2689), - [anon_sym_readonly] = ACTIONS(2689), - [anon_sym_get] = ACTIONS(2689), - [anon_sym_set] = ACTIONS(2689), - [anon_sym_declare] = ACTIONS(2689), - [anon_sym_public] = ACTIONS(2689), - [anon_sym_private] = ACTIONS(2689), - [anon_sym_protected] = ACTIONS(2689), - [anon_sym_override] = ACTIONS(2689), - [anon_sym_module] = ACTIONS(2689), - [anon_sym_any] = ACTIONS(2689), - [anon_sym_number] = ACTIONS(2689), - [anon_sym_boolean] = ACTIONS(2689), - [anon_sym_string] = ACTIONS(2689), - [anon_sym_symbol] = ACTIONS(2689), - [anon_sym_object] = ACTIONS(2689), - [anon_sym_abstract] = ACTIONS(2689), - [anon_sym_interface] = ACTIONS(2689), - [anon_sym_enum] = ACTIONS(2689), - [sym_html_comment] = ACTIONS(5), - }, - [808] = { - [ts_builtin_sym_end] = ACTIONS(2487), - [sym_identifier] = ACTIONS(2489), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_default] = ACTIONS(2489), - [anon_sym_type] = ACTIONS(2489), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_typeof] = ACTIONS(2489), - [anon_sym_import] = ACTIONS(2489), - [anon_sym_with] = ACTIONS(2489), - [anon_sym_var] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_switch] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_debugger] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_throw] = ACTIONS(2489), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [sym_glimmer_opening_tag] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2489), - [anon_sym_function] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_using] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_SLASH] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_void] = ACTIONS(2489), - [anon_sym_delete] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), + [809] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5783), + [sym_optional_tuple_parameter] = STATE(5783), + [sym_optional_type] = STATE(5783), + [sym_rest_type] = STATE(5783), + [sym__tuple_type_member] = STATE(5783), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_typeof] = ACTIONS(1542), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2487), - [sym_number] = ACTIONS(2487), - [sym_private_property_identifier] = ACTIONS(2487), - [sym_this] = ACTIONS(2489), - [sym_super] = ACTIONS(2489), - [sym_true] = ACTIONS(2489), - [sym_false] = ACTIONS(2489), - [sym_null] = ACTIONS(2489), - [sym_undefined] = ACTIONS(2489), - [anon_sym_AT] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2489), - [anon_sym_readonly] = ACTIONS(2489), - [anon_sym_get] = ACTIONS(2489), - [anon_sym_set] = ACTIONS(2489), - [anon_sym_declare] = ACTIONS(2489), - [anon_sym_public] = ACTIONS(2489), - [anon_sym_private] = ACTIONS(2489), - [anon_sym_protected] = ACTIONS(2489), - [anon_sym_override] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_any] = ACTIONS(2489), - [anon_sym_number] = ACTIONS(2489), - [anon_sym_boolean] = ACTIONS(2489), - [anon_sym_string] = ACTIONS(2489), - [anon_sym_symbol] = ACTIONS(2489), - [anon_sym_object] = ACTIONS(2489), - [anon_sym_abstract] = ACTIONS(2489), - [anon_sym_interface] = ACTIONS(2489), - [anon_sym_enum] = ACTIONS(2489), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [809] = { + [810] = { [ts_builtin_sym_end] = ACTIONS(2691), [sym_identifier] = ACTIONS(2693), [anon_sym_export] = ACTIONS(2693), @@ -110285,89 +113729,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2693), [sym_html_comment] = ACTIONS(5), }, - [810] = { - [ts_builtin_sym_end] = ACTIONS(2695), - [sym_identifier] = ACTIONS(2697), - [anon_sym_export] = ACTIONS(2697), - [anon_sym_default] = ACTIONS(2697), - [anon_sym_type] = ACTIONS(2697), - [anon_sym_namespace] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_typeof] = ACTIONS(2697), - [anon_sym_import] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2697), - [anon_sym_var] = ACTIONS(2697), - [anon_sym_let] = ACTIONS(2697), - [anon_sym_const] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_switch] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_await] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_try] = ACTIONS(2697), - [anon_sym_break] = ACTIONS(2697), - [anon_sym_continue] = ACTIONS(2697), - [anon_sym_debugger] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_throw] = ACTIONS(2697), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2697), - [anon_sym_yield] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2695), - [sym_glimmer_opening_tag] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(2695), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2697), - [anon_sym_async] = ACTIONS(2697), - [anon_sym_function] = ACTIONS(2697), - [anon_sym_new] = ACTIONS(2697), - [anon_sym_using] = ACTIONS(2697), - [anon_sym_PLUS] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_SLASH] = ACTIONS(2697), - [anon_sym_LT] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_void] = ACTIONS(2697), - [anon_sym_delete] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2695), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [sym_this] = ACTIONS(2697), - [sym_super] = ACTIONS(2697), - [sym_true] = ACTIONS(2697), - [sym_false] = ACTIONS(2697), - [sym_null] = ACTIONS(2697), - [sym_undefined] = ACTIONS(2697), - [anon_sym_AT] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_readonly] = ACTIONS(2697), - [anon_sym_get] = ACTIONS(2697), - [anon_sym_set] = ACTIONS(2697), - [anon_sym_declare] = ACTIONS(2697), - [anon_sym_public] = ACTIONS(2697), - [anon_sym_private] = ACTIONS(2697), - [anon_sym_protected] = ACTIONS(2697), - [anon_sym_override] = ACTIONS(2697), - [anon_sym_module] = ACTIONS(2697), - [anon_sym_any] = ACTIONS(2697), - [anon_sym_number] = ACTIONS(2697), - [anon_sym_boolean] = ACTIONS(2697), - [anon_sym_string] = ACTIONS(2697), - [anon_sym_symbol] = ACTIONS(2697), - [anon_sym_object] = ACTIONS(2697), - [anon_sym_abstract] = ACTIONS(2697), - [anon_sym_interface] = ACTIONS(2697), - [anon_sym_enum] = ACTIONS(2697), - [sym_html_comment] = ACTIONS(5), - }, [811] = { [ts_builtin_sym_end] = ACTIONS(2695), [sym_identifier] = ACTIONS(2697), @@ -110452,89 +113813,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [812] = { - [ts_builtin_sym_end] = ACTIONS(2695), - [sym_identifier] = ACTIONS(2697), - [anon_sym_export] = ACTIONS(2697), - [anon_sym_default] = ACTIONS(2697), - [anon_sym_type] = ACTIONS(2697), - [anon_sym_namespace] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_typeof] = ACTIONS(2697), - [anon_sym_import] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2697), - [anon_sym_var] = ACTIONS(2697), - [anon_sym_let] = ACTIONS(2697), - [anon_sym_const] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_switch] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_await] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_try] = ACTIONS(2697), - [anon_sym_break] = ACTIONS(2697), - [anon_sym_continue] = ACTIONS(2697), - [anon_sym_debugger] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_throw] = ACTIONS(2697), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2697), - [anon_sym_yield] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2695), - [sym_glimmer_opening_tag] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(2695), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2697), - [anon_sym_async] = ACTIONS(2697), - [anon_sym_function] = ACTIONS(2697), - [anon_sym_new] = ACTIONS(2697), - [anon_sym_using] = ACTIONS(2697), - [anon_sym_PLUS] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_SLASH] = ACTIONS(2697), - [anon_sym_LT] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_void] = ACTIONS(2697), - [anon_sym_delete] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2695), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [sym_this] = ACTIONS(2697), - [sym_super] = ACTIONS(2697), - [sym_true] = ACTIONS(2697), - [sym_false] = ACTIONS(2697), - [sym_null] = ACTIONS(2697), - [sym_undefined] = ACTIONS(2697), - [anon_sym_AT] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_readonly] = ACTIONS(2697), - [anon_sym_get] = ACTIONS(2697), - [anon_sym_set] = ACTIONS(2697), - [anon_sym_declare] = ACTIONS(2697), - [anon_sym_public] = ACTIONS(2697), - [anon_sym_private] = ACTIONS(2697), - [anon_sym_protected] = ACTIONS(2697), - [anon_sym_override] = ACTIONS(2697), - [anon_sym_module] = ACTIONS(2697), - [anon_sym_any] = ACTIONS(2697), - [anon_sym_number] = ACTIONS(2697), - [anon_sym_boolean] = ACTIONS(2697), - [anon_sym_string] = ACTIONS(2697), - [anon_sym_symbol] = ACTIONS(2697), - [anon_sym_object] = ACTIONS(2697), - [anon_sym_abstract] = ACTIONS(2697), - [anon_sym_interface] = ACTIONS(2697), - [anon_sym_enum] = ACTIONS(2697), - [sym_html_comment] = ACTIONS(5), - }, - [813] = { [ts_builtin_sym_end] = ACTIONS(2699), [sym_identifier] = ACTIONS(2701), [anon_sym_export] = ACTIONS(2701), @@ -110617,7 +113895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2701), [sym_html_comment] = ACTIONS(5), }, - [814] = { + [813] = { [ts_builtin_sym_end] = ACTIONS(2703), [sym_identifier] = ACTIONS(2705), [anon_sym_export] = ACTIONS(2705), @@ -110700,7 +113978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2705), [sym_html_comment] = ACTIONS(5), }, - [815] = { + [814] = { [ts_builtin_sym_end] = ACTIONS(2707), [sym_identifier] = ACTIONS(2709), [anon_sym_export] = ACTIONS(2709), @@ -110783,7 +114061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2709), [sym_html_comment] = ACTIONS(5), }, - [816] = { + [815] = { [ts_builtin_sym_end] = ACTIONS(2711), [sym_identifier] = ACTIONS(2713), [anon_sym_export] = ACTIONS(2713), @@ -110866,90 +114144,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2713), [sym_html_comment] = ACTIONS(5), }, - [817] = { - [ts_builtin_sym_end] = ACTIONS(2715), - [sym_identifier] = ACTIONS(2717), - [anon_sym_export] = ACTIONS(2717), - [anon_sym_default] = ACTIONS(2717), - [anon_sym_type] = ACTIONS(2717), - [anon_sym_namespace] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_typeof] = ACTIONS(2717), - [anon_sym_import] = ACTIONS(2717), - [anon_sym_with] = ACTIONS(2717), - [anon_sym_var] = ACTIONS(2717), - [anon_sym_let] = ACTIONS(2717), - [anon_sym_const] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2717), - [anon_sym_switch] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2717), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_await] = ACTIONS(2717), - [anon_sym_while] = ACTIONS(2717), - [anon_sym_do] = ACTIONS(2717), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_break] = ACTIONS(2717), - [anon_sym_continue] = ACTIONS(2717), - [anon_sym_debugger] = ACTIONS(2717), - [anon_sym_return] = ACTIONS(2717), - [anon_sym_throw] = ACTIONS(2717), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_case] = ACTIONS(2717), - [anon_sym_yield] = ACTIONS(2717), - [anon_sym_LBRACK] = ACTIONS(2715), - [sym_glimmer_opening_tag] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2717), - [anon_sym_async] = ACTIONS(2717), - [anon_sym_function] = ACTIONS(2717), - [anon_sym_new] = ACTIONS(2717), - [anon_sym_using] = ACTIONS(2717), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_SLASH] = ACTIONS(2717), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_void] = ACTIONS(2717), - [anon_sym_delete] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2715), - [sym_number] = ACTIONS(2715), - [sym_private_property_identifier] = ACTIONS(2715), - [sym_this] = ACTIONS(2717), - [sym_super] = ACTIONS(2717), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_undefined] = ACTIONS(2717), - [anon_sym_AT] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2717), - [anon_sym_readonly] = ACTIONS(2717), - [anon_sym_get] = ACTIONS(2717), - [anon_sym_set] = ACTIONS(2717), - [anon_sym_declare] = ACTIONS(2717), - [anon_sym_public] = ACTIONS(2717), - [anon_sym_private] = ACTIONS(2717), - [anon_sym_protected] = ACTIONS(2717), - [anon_sym_override] = ACTIONS(2717), - [anon_sym_module] = ACTIONS(2717), - [anon_sym_any] = ACTIONS(2717), - [anon_sym_number] = ACTIONS(2717), - [anon_sym_boolean] = ACTIONS(2717), - [anon_sym_string] = ACTIONS(2717), - [anon_sym_symbol] = ACTIONS(2717), - [anon_sym_object] = ACTIONS(2717), - [anon_sym_abstract] = ACTIONS(2717), - [anon_sym_interface] = ACTIONS(2717), - [anon_sym_enum] = ACTIONS(2717), + [816] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5944), + [sym_optional_tuple_parameter] = STATE(5944), + [sym_optional_type] = STATE(5944), + [sym_rest_type] = STATE(5944), + [sym__tuple_type_member] = STATE(5944), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_typeof] = ACTIONS(1542), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(2717), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [818] = { + [817] = { [ts_builtin_sym_end] = ACTIONS(2719), [sym_identifier] = ACTIONS(2721), [anon_sym_export] = ACTIONS(2721), @@ -111032,7 +114310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2721), [sym_html_comment] = ACTIONS(5), }, - [819] = { + [818] = { [ts_builtin_sym_end] = ACTIONS(2723), [sym_identifier] = ACTIONS(2725), [anon_sym_export] = ACTIONS(2725), @@ -111115,6 +114393,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2725), [sym_html_comment] = ACTIONS(5), }, + [819] = { + [ts_builtin_sym_end] = ACTIONS(2587), + [sym_identifier] = ACTIONS(2589), + [anon_sym_export] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_type] = ACTIONS(2589), + [anon_sym_namespace] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_typeof] = ACTIONS(2589), + [anon_sym_import] = ACTIONS(2589), + [anon_sym_with] = ACTIONS(2589), + [anon_sym_var] = ACTIONS(2589), + [anon_sym_let] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_await] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_do] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_debugger] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_throw] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_case] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [sym_glimmer_opening_tag] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2587), + [anon_sym_SQUOTE] = ACTIONS(2587), + [anon_sym_class] = ACTIONS(2589), + [anon_sym_async] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2587), + [anon_sym_void] = ACTIONS(2589), + [anon_sym_delete] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2587), + [sym_number] = ACTIONS(2587), + [sym_private_property_identifier] = ACTIONS(2587), + [sym_this] = ACTIONS(2589), + [sym_super] = ACTIONS(2589), + [sym_true] = ACTIONS(2589), + [sym_false] = ACTIONS(2589), + [sym_null] = ACTIONS(2589), + [sym_undefined] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_readonly] = ACTIONS(2589), + [anon_sym_get] = ACTIONS(2589), + [anon_sym_set] = ACTIONS(2589), + [anon_sym_declare] = ACTIONS(2589), + [anon_sym_public] = ACTIONS(2589), + [anon_sym_private] = ACTIONS(2589), + [anon_sym_protected] = ACTIONS(2589), + [anon_sym_override] = ACTIONS(2589), + [anon_sym_module] = ACTIONS(2589), + [anon_sym_any] = ACTIONS(2589), + [anon_sym_number] = ACTIONS(2589), + [anon_sym_boolean] = ACTIONS(2589), + [anon_sym_string] = ACTIONS(2589), + [anon_sym_symbol] = ACTIONS(2589), + [anon_sym_object] = ACTIONS(2589), + [anon_sym_abstract] = ACTIONS(2589), + [anon_sym_interface] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [sym_html_comment] = ACTIONS(5), + }, [820] = { [ts_builtin_sym_end] = ACTIONS(2727), [sym_identifier] = ACTIONS(2729), @@ -111199,89 +114560,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [821] = { - [ts_builtin_sym_end] = ACTIONS(2727), - [sym_identifier] = ACTIONS(2729), - [anon_sym_export] = ACTIONS(2729), - [anon_sym_default] = ACTIONS(2729), - [anon_sym_type] = ACTIONS(2729), - [anon_sym_namespace] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_typeof] = ACTIONS(2729), - [anon_sym_import] = ACTIONS(2729), - [anon_sym_with] = ACTIONS(2729), - [anon_sym_var] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_switch] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_await] = ACTIONS(2729), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_debugger] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_throw] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2727), - [sym_glimmer_opening_tag] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_async] = ACTIONS(2729), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_using] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_void] = ACTIONS(2729), - [anon_sym_delete] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2727), - [sym_number] = ACTIONS(2727), - [sym_private_property_identifier] = ACTIONS(2727), - [sym_this] = ACTIONS(2729), - [sym_super] = ACTIONS(2729), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_null] = ACTIONS(2729), - [sym_undefined] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_readonly] = ACTIONS(2729), - [anon_sym_get] = ACTIONS(2729), - [anon_sym_set] = ACTIONS(2729), - [anon_sym_declare] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_protected] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_module] = ACTIONS(2729), - [anon_sym_any] = ACTIONS(2729), - [anon_sym_number] = ACTIONS(2729), - [anon_sym_boolean] = ACTIONS(2729), - [anon_sym_string] = ACTIONS(2729), - [anon_sym_symbol] = ACTIONS(2729), - [anon_sym_object] = ACTIONS(2729), - [anon_sym_abstract] = ACTIONS(2729), - [anon_sym_interface] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [sym_html_comment] = ACTIONS(5), - }, - [822] = { [ts_builtin_sym_end] = ACTIONS(2731), [sym_identifier] = ACTIONS(2733), [anon_sym_export] = ACTIONS(2733), @@ -111364,7 +114642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2733), [sym_html_comment] = ACTIONS(5), }, - [823] = { + [822] = { [ts_builtin_sym_end] = ACTIONS(2735), [sym_identifier] = ACTIONS(2737), [anon_sym_export] = ACTIONS(2737), @@ -111447,7 +114725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2737), [sym_html_comment] = ACTIONS(5), }, - [824] = { + [823] = { [ts_builtin_sym_end] = ACTIONS(2739), [sym_identifier] = ACTIONS(2741), [anon_sym_export] = ACTIONS(2741), @@ -111530,173 +114808,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2741), [sym_html_comment] = ACTIONS(5), }, - [825] = { - [ts_builtin_sym_end] = ACTIONS(2743), - [sym_identifier] = ACTIONS(2745), - [anon_sym_export] = ACTIONS(2745), - [anon_sym_default] = ACTIONS(2745), - [anon_sym_type] = ACTIONS(2745), - [anon_sym_namespace] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2743), - [anon_sym_RBRACE] = ACTIONS(2743), - [anon_sym_typeof] = ACTIONS(2745), - [anon_sym_import] = ACTIONS(2745), - [anon_sym_with] = ACTIONS(2745), - [anon_sym_var] = ACTIONS(2745), - [anon_sym_let] = ACTIONS(2745), - [anon_sym_const] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_switch] = ACTIONS(2745), - [anon_sym_for] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_await] = ACTIONS(2745), - [anon_sym_while] = ACTIONS(2745), - [anon_sym_do] = ACTIONS(2745), - [anon_sym_try] = ACTIONS(2745), - [anon_sym_break] = ACTIONS(2745), - [anon_sym_continue] = ACTIONS(2745), - [anon_sym_debugger] = ACTIONS(2745), - [anon_sym_return] = ACTIONS(2745), - [anon_sym_throw] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2743), - [anon_sym_case] = ACTIONS(2745), - [anon_sym_yield] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2743), - [sym_glimmer_opening_tag] = ACTIONS(2743), - [anon_sym_DQUOTE] = ACTIONS(2743), - [anon_sym_SQUOTE] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2745), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_function] = ACTIONS(2745), - [anon_sym_new] = ACTIONS(2745), - [anon_sym_using] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2743), - [anon_sym_void] = ACTIONS(2745), - [anon_sym_delete] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2743), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2743), - [sym_number] = ACTIONS(2743), - [sym_private_property_identifier] = ACTIONS(2743), - [sym_this] = ACTIONS(2745), - [sym_super] = ACTIONS(2745), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_null] = ACTIONS(2745), - [sym_undefined] = ACTIONS(2745), - [anon_sym_AT] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2745), - [anon_sym_readonly] = ACTIONS(2745), - [anon_sym_get] = ACTIONS(2745), - [anon_sym_set] = ACTIONS(2745), - [anon_sym_declare] = ACTIONS(2745), - [anon_sym_public] = ACTIONS(2745), - [anon_sym_private] = ACTIONS(2745), - [anon_sym_protected] = ACTIONS(2745), - [anon_sym_override] = ACTIONS(2745), - [anon_sym_module] = ACTIONS(2745), - [anon_sym_any] = ACTIONS(2745), - [anon_sym_number] = ACTIONS(2745), - [anon_sym_boolean] = ACTIONS(2745), - [anon_sym_string] = ACTIONS(2745), - [anon_sym_symbol] = ACTIONS(2745), - [anon_sym_object] = ACTIONS(2745), - [anon_sym_abstract] = ACTIONS(2745), - [anon_sym_interface] = ACTIONS(2745), - [anon_sym_enum] = ACTIONS(2745), + [824] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(5976), + [sym_optional_tuple_parameter] = STATE(5976), + [sym_optional_type] = STATE(5976), + [sym_rest_type] = STATE(5976), + [sym__tuple_type_member] = STATE(5976), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_typeof] = ACTIONS(1542), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [826] = { - [ts_builtin_sym_end] = ACTIONS(2747), - [sym_identifier] = ACTIONS(2749), - [anon_sym_export] = ACTIONS(2749), - [anon_sym_default] = ACTIONS(2749), - [anon_sym_type] = ACTIONS(2749), - [anon_sym_namespace] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_RBRACE] = ACTIONS(2747), - [anon_sym_typeof] = ACTIONS(2749), - [anon_sym_import] = ACTIONS(2749), - [anon_sym_with] = ACTIONS(2749), - [anon_sym_var] = ACTIONS(2749), - [anon_sym_let] = ACTIONS(2749), - [anon_sym_const] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_switch] = ACTIONS(2749), - [anon_sym_for] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_await] = ACTIONS(2749), - [anon_sym_while] = ACTIONS(2749), - [anon_sym_do] = ACTIONS(2749), - [anon_sym_try] = ACTIONS(2749), - [anon_sym_break] = ACTIONS(2749), - [anon_sym_continue] = ACTIONS(2749), - [anon_sym_debugger] = ACTIONS(2749), - [anon_sym_return] = ACTIONS(2749), - [anon_sym_throw] = ACTIONS(2749), - [anon_sym_SEMI] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2749), - [anon_sym_yield] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2747), - [sym_glimmer_opening_tag] = ACTIONS(2747), - [anon_sym_DQUOTE] = ACTIONS(2747), - [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2749), - [anon_sym_async] = ACTIONS(2749), - [anon_sym_function] = ACTIONS(2749), - [anon_sym_new] = ACTIONS(2749), - [anon_sym_using] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_void] = ACTIONS(2749), - [anon_sym_delete] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2747), - [sym_number] = ACTIONS(2747), - [sym_private_property_identifier] = ACTIONS(2747), - [sym_this] = ACTIONS(2749), - [sym_super] = ACTIONS(2749), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_null] = ACTIONS(2749), - [sym_undefined] = ACTIONS(2749), - [anon_sym_AT] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2749), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_get] = ACTIONS(2749), - [anon_sym_set] = ACTIONS(2749), - [anon_sym_declare] = ACTIONS(2749), - [anon_sym_public] = ACTIONS(2749), - [anon_sym_private] = ACTIONS(2749), - [anon_sym_protected] = ACTIONS(2749), - [anon_sym_override] = ACTIONS(2749), - [anon_sym_module] = ACTIONS(2749), - [anon_sym_any] = ACTIONS(2749), - [anon_sym_number] = ACTIONS(2749), - [anon_sym_boolean] = ACTIONS(2749), - [anon_sym_string] = ACTIONS(2749), - [anon_sym_symbol] = ACTIONS(2749), - [anon_sym_object] = ACTIONS(2749), - [anon_sym_abstract] = ACTIONS(2749), - [anon_sym_interface] = ACTIONS(2749), - [anon_sym_enum] = ACTIONS(2749), + [825] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(6078), + [sym_optional_tuple_parameter] = STATE(6078), + [sym_optional_type] = STATE(6078), + [sym_rest_type] = STATE(6078), + [sym__tuple_type_member] = STATE(6078), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(2747), + [anon_sym_typeof] = ACTIONS(1542), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [827] = { + [826] = { [ts_builtin_sym_end] = ACTIONS(2751), [sym_identifier] = ACTIONS(2753), [anon_sym_export] = ACTIONS(2753), @@ -111779,6 +115057,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2753), [sym_html_comment] = ACTIONS(5), }, + [827] = { + [ts_builtin_sym_end] = ACTIONS(1925), + [sym_identifier] = ACTIONS(1927), + [anon_sym_export] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_namespace] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_typeof] = ACTIONS(1927), + [anon_sym_import] = ACTIONS(1927), + [anon_sym_with] = ACTIONS(1927), + [anon_sym_var] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_switch] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_debugger] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_throw] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_case] = ACTIONS(1927), + [anon_sym_yield] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1925), + [sym_glimmer_opening_tag] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_class] = ACTIONS(1927), + [anon_sym_async] = ACTIONS(1927), + [anon_sym_function] = ACTIONS(1927), + [anon_sym_new] = ACTIONS(1927), + [anon_sym_using] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_SLASH] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_void] = ACTIONS(1927), + [anon_sym_delete] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1925), + [anon_sym_DASH_DASH] = ACTIONS(1925), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1925), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [sym_this] = ACTIONS(1927), + [sym_super] = ACTIONS(1927), + [sym_true] = ACTIONS(1927), + [sym_false] = ACTIONS(1927), + [sym_null] = ACTIONS(1927), + [sym_undefined] = ACTIONS(1927), + [anon_sym_AT] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1927), + [anon_sym_readonly] = ACTIONS(1927), + [anon_sym_get] = ACTIONS(1927), + [anon_sym_set] = ACTIONS(1927), + [anon_sym_declare] = ACTIONS(1927), + [anon_sym_public] = ACTIONS(1927), + [anon_sym_private] = ACTIONS(1927), + [anon_sym_protected] = ACTIONS(1927), + [anon_sym_override] = ACTIONS(1927), + [anon_sym_module] = ACTIONS(1927), + [anon_sym_any] = ACTIONS(1927), + [anon_sym_number] = ACTIONS(1927), + [anon_sym_boolean] = ACTIONS(1927), + [anon_sym_string] = ACTIONS(1927), + [anon_sym_symbol] = ACTIONS(1927), + [anon_sym_object] = ACTIONS(1927), + [anon_sym_abstract] = ACTIONS(1927), + [anon_sym_interface] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1927), + [sym_html_comment] = ACTIONS(5), + }, [828] = { [ts_builtin_sym_end] = ACTIONS(2755), [sym_identifier] = ACTIONS(2757), @@ -111946,89 +115307,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [830] = { - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_export] = ACTIONS(2761), - [anon_sym_default] = ACTIONS(2761), - [anon_sym_type] = ACTIONS(2761), - [anon_sym_namespace] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_typeof] = ACTIONS(2761), - [anon_sym_import] = ACTIONS(2761), - [anon_sym_with] = ACTIONS(2761), - [anon_sym_var] = ACTIONS(2761), - [anon_sym_let] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_switch] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_await] = ACTIONS(2761), - [anon_sym_while] = ACTIONS(2761), - [anon_sym_do] = ACTIONS(2761), - [anon_sym_try] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_debugger] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_throw] = ACTIONS(2761), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_case] = ACTIONS(2761), - [anon_sym_yield] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(2759), - [sym_glimmer_opening_tag] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2761), - [anon_sym_function] = ACTIONS(2761), - [anon_sym_new] = ACTIONS(2761), - [anon_sym_using] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_void] = ACTIONS(2761), - [anon_sym_delete] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2759), - [sym_number] = ACTIONS(2759), - [sym_private_property_identifier] = ACTIONS(2759), - [sym_this] = ACTIONS(2761), - [sym_super] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_null] = ACTIONS(2761), - [sym_undefined] = ACTIONS(2761), - [anon_sym_AT] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2761), - [anon_sym_readonly] = ACTIONS(2761), - [anon_sym_get] = ACTIONS(2761), - [anon_sym_set] = ACTIONS(2761), - [anon_sym_declare] = ACTIONS(2761), - [anon_sym_public] = ACTIONS(2761), - [anon_sym_private] = ACTIONS(2761), - [anon_sym_protected] = ACTIONS(2761), - [anon_sym_override] = ACTIONS(2761), - [anon_sym_module] = ACTIONS(2761), - [anon_sym_any] = ACTIONS(2761), - [anon_sym_number] = ACTIONS(2761), - [anon_sym_boolean] = ACTIONS(2761), - [anon_sym_string] = ACTIONS(2761), - [anon_sym_symbol] = ACTIONS(2761), - [anon_sym_object] = ACTIONS(2761), - [anon_sym_abstract] = ACTIONS(2761), - [anon_sym_interface] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), - [sym_html_comment] = ACTIONS(5), - }, - [831] = { [ts_builtin_sym_end] = ACTIONS(2763), [sym_identifier] = ACTIONS(2765), [anon_sym_export] = ACTIONS(2765), @@ -112111,7 +115389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2765), [sym_html_comment] = ACTIONS(5), }, - [832] = { + [831] = { [ts_builtin_sym_end] = ACTIONS(2767), [sym_identifier] = ACTIONS(2769), [anon_sym_export] = ACTIONS(2769), @@ -112194,6 +115472,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2769), [sym_html_comment] = ACTIONS(5), }, + [832] = { + [ts_builtin_sym_end] = ACTIONS(2639), + [sym_identifier] = ACTIONS(2641), + [anon_sym_export] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2641), + [anon_sym_type] = ACTIONS(2641), + [anon_sym_namespace] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_typeof] = ACTIONS(2641), + [anon_sym_import] = ACTIONS(2641), + [anon_sym_with] = ACTIONS(2641), + [anon_sym_var] = ACTIONS(2641), + [anon_sym_let] = ACTIONS(2641), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2641), + [anon_sym_switch] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2641), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_await] = ACTIONS(2641), + [anon_sym_while] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2641), + [anon_sym_break] = ACTIONS(2641), + [anon_sym_continue] = ACTIONS(2641), + [anon_sym_debugger] = ACTIONS(2641), + [anon_sym_return] = ACTIONS(2641), + [anon_sym_throw] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2641), + [anon_sym_yield] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2639), + [sym_glimmer_opening_tag] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_function] = ACTIONS(2641), + [anon_sym_new] = ACTIONS(2641), + [anon_sym_using] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_void] = ACTIONS(2641), + [anon_sym_delete] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2639), + [sym_number] = ACTIONS(2639), + [sym_private_property_identifier] = ACTIONS(2639), + [sym_this] = ACTIONS(2641), + [sym_super] = ACTIONS(2641), + [sym_true] = ACTIONS(2641), + [sym_false] = ACTIONS(2641), + [sym_null] = ACTIONS(2641), + [sym_undefined] = ACTIONS(2641), + [anon_sym_AT] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2641), + [anon_sym_readonly] = ACTIONS(2641), + [anon_sym_get] = ACTIONS(2641), + [anon_sym_set] = ACTIONS(2641), + [anon_sym_declare] = ACTIONS(2641), + [anon_sym_public] = ACTIONS(2641), + [anon_sym_private] = ACTIONS(2641), + [anon_sym_protected] = ACTIONS(2641), + [anon_sym_override] = ACTIONS(2641), + [anon_sym_module] = ACTIONS(2641), + [anon_sym_any] = ACTIONS(2641), + [anon_sym_number] = ACTIONS(2641), + [anon_sym_boolean] = ACTIONS(2641), + [anon_sym_string] = ACTIONS(2641), + [anon_sym_symbol] = ACTIONS(2641), + [anon_sym_object] = ACTIONS(2641), + [anon_sym_abstract] = ACTIONS(2641), + [anon_sym_interface] = ACTIONS(2641), + [anon_sym_enum] = ACTIONS(2641), + [sym_html_comment] = ACTIONS(5), + }, [833] = { [ts_builtin_sym_end] = ACTIONS(2771), [sym_identifier] = ACTIONS(2773), @@ -113025,6 +116386,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [843] = { + [ts_builtin_sym_end] = ACTIONS(2639), + [sym_identifier] = ACTIONS(2641), + [anon_sym_export] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2641), + [anon_sym_type] = ACTIONS(2641), + [anon_sym_namespace] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_typeof] = ACTIONS(2641), + [anon_sym_import] = ACTIONS(2641), + [anon_sym_with] = ACTIONS(2641), + [anon_sym_var] = ACTIONS(2641), + [anon_sym_let] = ACTIONS(2641), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2641), + [anon_sym_switch] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2641), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_await] = ACTIONS(2641), + [anon_sym_while] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2641), + [anon_sym_break] = ACTIONS(2641), + [anon_sym_continue] = ACTIONS(2641), + [anon_sym_debugger] = ACTIONS(2641), + [anon_sym_return] = ACTIONS(2641), + [anon_sym_throw] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2641), + [anon_sym_yield] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2639), + [sym_glimmer_opening_tag] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_function] = ACTIONS(2641), + [anon_sym_new] = ACTIONS(2641), + [anon_sym_using] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_void] = ACTIONS(2641), + [anon_sym_delete] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2639), + [sym_number] = ACTIONS(2639), + [sym_private_property_identifier] = ACTIONS(2639), + [sym_this] = ACTIONS(2641), + [sym_super] = ACTIONS(2641), + [sym_true] = ACTIONS(2641), + [sym_false] = ACTIONS(2641), + [sym_null] = ACTIONS(2641), + [sym_undefined] = ACTIONS(2641), + [anon_sym_AT] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2641), + [anon_sym_readonly] = ACTIONS(2641), + [anon_sym_get] = ACTIONS(2641), + [anon_sym_set] = ACTIONS(2641), + [anon_sym_declare] = ACTIONS(2641), + [anon_sym_public] = ACTIONS(2641), + [anon_sym_private] = ACTIONS(2641), + [anon_sym_protected] = ACTIONS(2641), + [anon_sym_override] = ACTIONS(2641), + [anon_sym_module] = ACTIONS(2641), + [anon_sym_any] = ACTIONS(2641), + [anon_sym_number] = ACTIONS(2641), + [anon_sym_boolean] = ACTIONS(2641), + [anon_sym_string] = ACTIONS(2641), + [anon_sym_symbol] = ACTIONS(2641), + [anon_sym_object] = ACTIONS(2641), + [anon_sym_abstract] = ACTIONS(2641), + [anon_sym_interface] = ACTIONS(2641), + [anon_sym_enum] = ACTIONS(2641), + [sym_html_comment] = ACTIONS(5), + }, + [844] = { + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_typeof] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_var] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_debugger] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1871), + [sym_glimmer_opening_tag] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_void] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_number] = ACTIONS(1871), + [sym_private_property_identifier] = ACTIONS(1871), + [sym_this] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_undefined] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_get] = ACTIONS(1873), + [anon_sym_set] = ACTIONS(1873), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_private] = ACTIONS(1873), + [anon_sym_protected] = ACTIONS(1873), + [anon_sym_override] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_any] = ACTIONS(1873), + [anon_sym_number] = ACTIONS(1873), + [anon_sym_boolean] = ACTIONS(1873), + [anon_sym_string] = ACTIONS(1873), + [anon_sym_symbol] = ACTIONS(1873), + [anon_sym_object] = ACTIONS(1873), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_interface] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [sym_html_comment] = ACTIONS(5), + }, + [845] = { [ts_builtin_sym_end] = ACTIONS(2811), [sym_identifier] = ACTIONS(2813), [anon_sym_export] = ACTIONS(2813), @@ -113107,7 +116634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2813), [sym_html_comment] = ACTIONS(5), }, - [844] = { + [846] = { [ts_builtin_sym_end] = ACTIONS(2815), [sym_identifier] = ACTIONS(2817), [anon_sym_export] = ACTIONS(2817), @@ -113190,7 +116717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2817), [sym_html_comment] = ACTIONS(5), }, - [845] = { + [847] = { [ts_builtin_sym_end] = ACTIONS(2819), [sym_identifier] = ACTIONS(2821), [anon_sym_export] = ACTIONS(2821), @@ -113273,7 +116800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2821), [sym_html_comment] = ACTIONS(5), }, - [846] = { + [848] = { [ts_builtin_sym_end] = ACTIONS(2823), [sym_identifier] = ACTIONS(2825), [anon_sym_export] = ACTIONS(2825), @@ -113356,90 +116883,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2825), [sym_html_comment] = ACTIONS(5), }, - [847] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5049), - [sym_optional_tuple_parameter] = STATE(5049), - [sym_optional_type] = STATE(5049), - [sym_rest_type] = STATE(5049), - [sym__tuple_type_member] = STATE(5049), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_COMMA] = ACTIONS(2827), - [anon_sym_typeof] = ACTIONS(1500), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), + [849] = { + [ts_builtin_sym_end] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2581), + [anon_sym_export] = ACTIONS(2581), + [anon_sym_default] = ACTIONS(2581), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_namespace] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(2581), + [anon_sym_import] = ACTIONS(2581), + [anon_sym_with] = ACTIONS(2581), + [anon_sym_var] = ACTIONS(2581), + [anon_sym_let] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_switch] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_do] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_debugger] = ACTIONS(2581), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_throw] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_case] = ACTIONS(2581), + [anon_sym_yield] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2579), + [sym_glimmer_opening_tag] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_class] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_function] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(2581), + [anon_sym_using] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_SLASH] = ACTIONS(2581), [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_delete] = ACTIONS(2581), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2579), + [sym_number] = ACTIONS(2579), + [sym_private_property_identifier] = ACTIONS(2579), + [sym_this] = ACTIONS(2581), + [sym_super] = ACTIONS(2581), + [sym_true] = ACTIONS(2581), + [sym_false] = ACTIONS(2581), + [sym_null] = ACTIONS(2581), + [sym_undefined] = ACTIONS(2581), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_readonly] = ACTIONS(2581), + [anon_sym_get] = ACTIONS(2581), + [anon_sym_set] = ACTIONS(2581), + [anon_sym_declare] = ACTIONS(2581), + [anon_sym_public] = ACTIONS(2581), + [anon_sym_private] = ACTIONS(2581), + [anon_sym_protected] = ACTIONS(2581), + [anon_sym_override] = ACTIONS(2581), + [anon_sym_module] = ACTIONS(2581), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2581), + [anon_sym_interface] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [sym_html_comment] = ACTIONS(5), + }, + [850] = { + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_namespace] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_typeof] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1853), + [anon_sym_with] = ACTIONS(1853), + [anon_sym_var] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_debugger] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_throw] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_case] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1851), + [sym_glimmer_opening_tag] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_function] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_void] = ACTIONS(1853), + [anon_sym_delete] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1851), + [sym_number] = ACTIONS(1851), + [sym_private_property_identifier] = ACTIONS(1851), + [sym_this] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_null] = ACTIONS(1853), + [sym_undefined] = ACTIONS(1853), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_get] = ACTIONS(1853), + [anon_sym_set] = ACTIONS(1853), + [anon_sym_declare] = ACTIONS(1853), + [anon_sym_public] = ACTIONS(1853), + [anon_sym_private] = ACTIONS(1853), + [anon_sym_protected] = ACTIONS(1853), + [anon_sym_override] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_any] = ACTIONS(1853), + [anon_sym_number] = ACTIONS(1853), + [anon_sym_boolean] = ACTIONS(1853), + [anon_sym_string] = ACTIONS(1853), + [anon_sym_symbol] = ACTIONS(1853), + [anon_sym_object] = ACTIONS(1853), + [anon_sym_abstract] = ACTIONS(1853), + [anon_sym_interface] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [sym_html_comment] = ACTIONS(5), + }, + [851] = { + [ts_builtin_sym_end] = ACTIONS(2611), + [sym_identifier] = ACTIONS(2613), + [anon_sym_export] = ACTIONS(2613), + [anon_sym_default] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2613), + [anon_sym_namespace] = ACTIONS(2613), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_typeof] = ACTIONS(2613), + [anon_sym_import] = ACTIONS(2613), + [anon_sym_with] = ACTIONS(2613), + [anon_sym_var] = ACTIONS(2613), + [anon_sym_let] = ACTIONS(2613), + [anon_sym_const] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2613), + [anon_sym_if] = ACTIONS(2613), + [anon_sym_switch] = ACTIONS(2613), + [anon_sym_for] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_await] = ACTIONS(2613), + [anon_sym_while] = ACTIONS(2613), + [anon_sym_do] = ACTIONS(2613), + [anon_sym_try] = ACTIONS(2613), + [anon_sym_break] = ACTIONS(2613), + [anon_sym_continue] = ACTIONS(2613), + [anon_sym_debugger] = ACTIONS(2613), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_throw] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2611), + [sym_glimmer_opening_tag] = ACTIONS(2611), + [anon_sym_DQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2613), + [anon_sym_async] = ACTIONS(2613), + [anon_sym_function] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2613), + [anon_sym_using] = ACTIONS(2613), + [anon_sym_PLUS] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2613), + [anon_sym_SLASH] = ACTIONS(2613), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_void] = ACTIONS(2613), + [anon_sym_delete] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(2611), + [sym_number] = ACTIONS(2611), + [sym_private_property_identifier] = ACTIONS(2611), + [sym_this] = ACTIONS(2613), + [sym_super] = ACTIONS(2613), + [sym_true] = ACTIONS(2613), + [sym_false] = ACTIONS(2613), + [sym_null] = ACTIONS(2613), + [sym_undefined] = ACTIONS(2613), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2613), + [anon_sym_readonly] = ACTIONS(2613), + [anon_sym_get] = ACTIONS(2613), + [anon_sym_set] = ACTIONS(2613), + [anon_sym_declare] = ACTIONS(2613), + [anon_sym_public] = ACTIONS(2613), + [anon_sym_private] = ACTIONS(2613), + [anon_sym_protected] = ACTIONS(2613), + [anon_sym_override] = ACTIONS(2613), + [anon_sym_module] = ACTIONS(2613), + [anon_sym_any] = ACTIONS(2613), + [anon_sym_number] = ACTIONS(2613), + [anon_sym_boolean] = ACTIONS(2613), + [anon_sym_string] = ACTIONS(2613), + [anon_sym_symbol] = ACTIONS(2613), + [anon_sym_object] = ACTIONS(2613), + [anon_sym_abstract] = ACTIONS(2613), + [anon_sym_interface] = ACTIONS(2613), + [anon_sym_enum] = ACTIONS(2613), [sym_html_comment] = ACTIONS(5), }, - [848] = { + [852] = { + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2829), + [anon_sym_export] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_type] = ACTIONS(2829), + [anon_sym_namespace] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_typeof] = ACTIONS(2829), + [anon_sym_import] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2829), + [anon_sym_var] = ACTIONS(2829), + [anon_sym_let] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_else] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_await] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_debugger] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_yield] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [sym_glimmer_opening_tag] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_async] = ACTIONS(2829), + [anon_sym_function] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_void] = ACTIONS(2829), + [anon_sym_delete] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2827), + [sym_number] = ACTIONS(2827), + [sym_private_property_identifier] = ACTIONS(2827), + [sym_this] = ACTIONS(2829), + [sym_super] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_null] = ACTIONS(2829), + [sym_undefined] = ACTIONS(2829), + [anon_sym_AT] = ACTIONS(2827), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_readonly] = ACTIONS(2829), + [anon_sym_get] = ACTIONS(2829), + [anon_sym_set] = ACTIONS(2829), + [anon_sym_declare] = ACTIONS(2829), + [anon_sym_public] = ACTIONS(2829), + [anon_sym_private] = ACTIONS(2829), + [anon_sym_protected] = ACTIONS(2829), + [anon_sym_override] = ACTIONS(2829), + [anon_sym_module] = ACTIONS(2829), + [anon_sym_any] = ACTIONS(2829), + [anon_sym_number] = ACTIONS(2829), + [anon_sym_boolean] = ACTIONS(2829), + [anon_sym_string] = ACTIONS(2829), + [anon_sym_symbol] = ACTIONS(2829), + [anon_sym_object] = ACTIONS(2829), + [anon_sym_abstract] = ACTIONS(2829), + [anon_sym_interface] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [sym_html_comment] = ACTIONS(5), + }, + [853] = { [ts_builtin_sym_end] = ACTIONS(2831), [sym_identifier] = ACTIONS(2833), [anon_sym_export] = ACTIONS(2833), @@ -113522,7 +117298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2833), [sym_html_comment] = ACTIONS(5), }, - [849] = { + [854] = { [ts_builtin_sym_end] = ACTIONS(2835), [sym_identifier] = ACTIONS(2837), [anon_sym_export] = ACTIONS(2837), @@ -113605,7 +117381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2837), [sym_html_comment] = ACTIONS(5), }, - [850] = { + [855] = { + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_typeof] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_var] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_debugger] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1871), + [sym_glimmer_opening_tag] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_void] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_number] = ACTIONS(1871), + [sym_private_property_identifier] = ACTIONS(1871), + [sym_this] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_undefined] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_get] = ACTIONS(1873), + [anon_sym_set] = ACTIONS(1873), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_private] = ACTIONS(1873), + [anon_sym_protected] = ACTIONS(1873), + [anon_sym_override] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_any] = ACTIONS(1873), + [anon_sym_number] = ACTIONS(1873), + [anon_sym_boolean] = ACTIONS(1873), + [anon_sym_string] = ACTIONS(1873), + [anon_sym_symbol] = ACTIONS(1873), + [anon_sym_object] = ACTIONS(1873), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_interface] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [sym_html_comment] = ACTIONS(5), + }, + [856] = { [ts_builtin_sym_end] = ACTIONS(2839), [sym_identifier] = ACTIONS(2841), [anon_sym_export] = ACTIONS(2841), @@ -113688,7 +117547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2841), [sym_html_comment] = ACTIONS(5), }, - [851] = { + [857] = { [ts_builtin_sym_end] = ACTIONS(2843), [sym_identifier] = ACTIONS(2845), [anon_sym_export] = ACTIONS(2845), @@ -113771,7 +117630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2845), [sym_html_comment] = ACTIONS(5), }, - [852] = { + [858] = { [ts_builtin_sym_end] = ACTIONS(2847), [sym_identifier] = ACTIONS(2849), [anon_sym_export] = ACTIONS(2849), @@ -113854,7 +117713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2849), [sym_html_comment] = ACTIONS(5), }, - [853] = { + [859] = { [ts_builtin_sym_end] = ACTIONS(2851), [sym_identifier] = ACTIONS(2853), [anon_sym_export] = ACTIONS(2853), @@ -113937,7 +117796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2853), [sym_html_comment] = ACTIONS(5), }, - [854] = { + [860] = { [ts_builtin_sym_end] = ACTIONS(2855), [sym_identifier] = ACTIONS(2857), [anon_sym_export] = ACTIONS(2857), @@ -114020,90 +117879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2857), [sym_html_comment] = ACTIONS(5), }, - [855] = { - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1927), - [anon_sym_export] = ACTIONS(1927), - [anon_sym_default] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_namespace] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_typeof] = ACTIONS(1927), - [anon_sym_import] = ACTIONS(1927), - [anon_sym_with] = ACTIONS(1927), - [anon_sym_var] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_switch] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_debugger] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_throw] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_case] = ACTIONS(1927), - [anon_sym_yield] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1925), - [sym_glimmer_opening_tag] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1925), - [anon_sym_class] = ACTIONS(1927), - [anon_sym_async] = ACTIONS(1927), - [anon_sym_function] = ACTIONS(1927), - [anon_sym_new] = ACTIONS(1927), - [anon_sym_using] = ACTIONS(1927), - [anon_sym_PLUS] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1927), - [anon_sym_SLASH] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_void] = ACTIONS(1927), - [anon_sym_delete] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1925), - [sym_number] = ACTIONS(1925), - [sym_private_property_identifier] = ACTIONS(1925), - [sym_this] = ACTIONS(1927), - [sym_super] = ACTIONS(1927), - [sym_true] = ACTIONS(1927), - [sym_false] = ACTIONS(1927), - [sym_null] = ACTIONS(1927), - [sym_undefined] = ACTIONS(1927), - [anon_sym_AT] = ACTIONS(1925), - [anon_sym_static] = ACTIONS(1927), - [anon_sym_readonly] = ACTIONS(1927), - [anon_sym_get] = ACTIONS(1927), - [anon_sym_set] = ACTIONS(1927), - [anon_sym_declare] = ACTIONS(1927), - [anon_sym_public] = ACTIONS(1927), - [anon_sym_private] = ACTIONS(1927), - [anon_sym_protected] = ACTIONS(1927), - [anon_sym_override] = ACTIONS(1927), - [anon_sym_module] = ACTIONS(1927), - [anon_sym_any] = ACTIONS(1927), - [anon_sym_number] = ACTIONS(1927), - [anon_sym_boolean] = ACTIONS(1927), - [anon_sym_string] = ACTIONS(1927), - [anon_sym_symbol] = ACTIONS(1927), - [anon_sym_object] = ACTIONS(1927), - [anon_sym_abstract] = ACTIONS(1927), - [anon_sym_interface] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1927), - [sym_html_comment] = ACTIONS(5), - }, - [856] = { + [861] = { [ts_builtin_sym_end] = ACTIONS(2859), [sym_identifier] = ACTIONS(2861), [anon_sym_export] = ACTIONS(2861), @@ -114186,7 +117962,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2861), [sym_html_comment] = ACTIONS(5), }, - [857] = { + [862] = { + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2829), + [anon_sym_export] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_type] = ACTIONS(2829), + [anon_sym_namespace] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_typeof] = ACTIONS(2829), + [anon_sym_import] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2829), + [anon_sym_var] = ACTIONS(2829), + [anon_sym_let] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_else] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_await] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_debugger] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_yield] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [sym_glimmer_opening_tag] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_async] = ACTIONS(2829), + [anon_sym_function] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_void] = ACTIONS(2829), + [anon_sym_delete] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2827), + [sym_number] = ACTIONS(2827), + [sym_private_property_identifier] = ACTIONS(2827), + [sym_this] = ACTIONS(2829), + [sym_super] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_null] = ACTIONS(2829), + [sym_undefined] = ACTIONS(2829), + [anon_sym_AT] = ACTIONS(2827), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_readonly] = ACTIONS(2829), + [anon_sym_get] = ACTIONS(2829), + [anon_sym_set] = ACTIONS(2829), + [anon_sym_declare] = ACTIONS(2829), + [anon_sym_public] = ACTIONS(2829), + [anon_sym_private] = ACTIONS(2829), + [anon_sym_protected] = ACTIONS(2829), + [anon_sym_override] = ACTIONS(2829), + [anon_sym_module] = ACTIONS(2829), + [anon_sym_any] = ACTIONS(2829), + [anon_sym_number] = ACTIONS(2829), + [anon_sym_boolean] = ACTIONS(2829), + [anon_sym_string] = ACTIONS(2829), + [anon_sym_symbol] = ACTIONS(2829), + [anon_sym_object] = ACTIONS(2829), + [anon_sym_abstract] = ACTIONS(2829), + [anon_sym_interface] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [sym_html_comment] = ACTIONS(5), + }, + [863] = { [ts_builtin_sym_end] = ACTIONS(2863), [sym_identifier] = ACTIONS(2865), [anon_sym_export] = ACTIONS(2865), @@ -114269,7 +118128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2865), [sym_html_comment] = ACTIONS(5), }, - [858] = { + [864] = { [ts_builtin_sym_end] = ACTIONS(2867), [sym_identifier] = ACTIONS(2869), [anon_sym_export] = ACTIONS(2869), @@ -114352,7 +118211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2869), [sym_html_comment] = ACTIONS(5), }, - [859] = { + [865] = { [ts_builtin_sym_end] = ACTIONS(2871), [sym_identifier] = ACTIONS(2873), [anon_sym_export] = ACTIONS(2873), @@ -114435,256 +118294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2873), [sym_html_comment] = ACTIONS(5), }, - [860] = { - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_default] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_namespace] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_typeof] = ACTIONS(1785), - [anon_sym_import] = ACTIONS(1785), - [anon_sym_with] = ACTIONS(1785), - [anon_sym_var] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_switch] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_debugger] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_throw] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1785), - [anon_sym_yield] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1783), - [sym_glimmer_opening_tag] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [anon_sym_SQUOTE] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(1785), - [anon_sym_async] = ACTIONS(1785), - [anon_sym_function] = ACTIONS(1785), - [anon_sym_new] = ACTIONS(1785), - [anon_sym_using] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_void] = ACTIONS(1785), - [anon_sym_delete] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1783), - [sym_number] = ACTIONS(1783), - [sym_private_property_identifier] = ACTIONS(1783), - [sym_this] = ACTIONS(1785), - [sym_super] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_null] = ACTIONS(1785), - [sym_undefined] = ACTIONS(1785), - [anon_sym_AT] = ACTIONS(1783), - [anon_sym_static] = ACTIONS(1785), - [anon_sym_readonly] = ACTIONS(1785), - [anon_sym_get] = ACTIONS(1785), - [anon_sym_set] = ACTIONS(1785), - [anon_sym_declare] = ACTIONS(1785), - [anon_sym_public] = ACTIONS(1785), - [anon_sym_private] = ACTIONS(1785), - [anon_sym_protected] = ACTIONS(1785), - [anon_sym_override] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_any] = ACTIONS(1785), - [anon_sym_number] = ACTIONS(1785), - [anon_sym_boolean] = ACTIONS(1785), - [anon_sym_string] = ACTIONS(1785), - [anon_sym_symbol] = ACTIONS(1785), - [anon_sym_object] = ACTIONS(1785), - [anon_sym_abstract] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [sym_html_comment] = ACTIONS(5), - }, - [861] = { - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_default] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_namespace] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_typeof] = ACTIONS(1785), - [anon_sym_import] = ACTIONS(1785), - [anon_sym_with] = ACTIONS(1785), - [anon_sym_var] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_switch] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_debugger] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_throw] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1785), - [anon_sym_yield] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1783), - [sym_glimmer_opening_tag] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [anon_sym_SQUOTE] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(1785), - [anon_sym_async] = ACTIONS(1785), - [anon_sym_function] = ACTIONS(1785), - [anon_sym_new] = ACTIONS(1785), - [anon_sym_using] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_void] = ACTIONS(1785), - [anon_sym_delete] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1783), - [sym_number] = ACTIONS(1783), - [sym_private_property_identifier] = ACTIONS(1783), - [sym_this] = ACTIONS(1785), - [sym_super] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_null] = ACTIONS(1785), - [sym_undefined] = ACTIONS(1785), - [anon_sym_AT] = ACTIONS(1783), - [anon_sym_static] = ACTIONS(1785), - [anon_sym_readonly] = ACTIONS(1785), - [anon_sym_get] = ACTIONS(1785), - [anon_sym_set] = ACTIONS(1785), - [anon_sym_declare] = ACTIONS(1785), - [anon_sym_public] = ACTIONS(1785), - [anon_sym_private] = ACTIONS(1785), - [anon_sym_protected] = ACTIONS(1785), - [anon_sym_override] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_any] = ACTIONS(1785), - [anon_sym_number] = ACTIONS(1785), - [anon_sym_boolean] = ACTIONS(1785), - [anon_sym_string] = ACTIONS(1785), - [anon_sym_symbol] = ACTIONS(1785), - [anon_sym_object] = ACTIONS(1785), - [anon_sym_abstract] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [sym_html_comment] = ACTIONS(5), - }, - [862] = { - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_export] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym_import] = ACTIONS(1781), - [anon_sym_with] = ACTIONS(1781), - [anon_sym_var] = ACTIONS(1781), - [anon_sym_let] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1781), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_switch] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_await] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1781), - [anon_sym_do] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_debugger] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_throw] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_yield] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1779), - [sym_glimmer_opening_tag] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [anon_sym_SQUOTE] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1781), - [anon_sym_async] = ACTIONS(1781), - [anon_sym_function] = ACTIONS(1781), - [anon_sym_new] = ACTIONS(1781), - [anon_sym_using] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1779), - [anon_sym_void] = ACTIONS(1781), - [anon_sym_delete] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1779), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1779), - [sym_number] = ACTIONS(1779), - [sym_private_property_identifier] = ACTIONS(1779), - [sym_this] = ACTIONS(1781), - [sym_super] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_null] = ACTIONS(1781), - [sym_undefined] = ACTIONS(1781), - [anon_sym_AT] = ACTIONS(1779), - [anon_sym_static] = ACTIONS(1781), - [anon_sym_readonly] = ACTIONS(1781), - [anon_sym_get] = ACTIONS(1781), - [anon_sym_set] = ACTIONS(1781), - [anon_sym_declare] = ACTIONS(1781), - [anon_sym_public] = ACTIONS(1781), - [anon_sym_private] = ACTIONS(1781), - [anon_sym_protected] = ACTIONS(1781), - [anon_sym_override] = ACTIONS(1781), - [anon_sym_module] = ACTIONS(1781), - [anon_sym_any] = ACTIONS(1781), - [anon_sym_number] = ACTIONS(1781), - [anon_sym_boolean] = ACTIONS(1781), - [anon_sym_string] = ACTIONS(1781), - [anon_sym_symbol] = ACTIONS(1781), - [anon_sym_object] = ACTIONS(1781), - [anon_sym_abstract] = ACTIONS(1781), - [anon_sym_interface] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [sym_html_comment] = ACTIONS(5), - }, - [863] = { + [866] = { [ts_builtin_sym_end] = ACTIONS(2875), [sym_identifier] = ACTIONS(2877), [anon_sym_export] = ACTIONS(2877), @@ -114767,173 +118377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2877), [sym_html_comment] = ACTIONS(5), }, - [864] = { - [ts_builtin_sym_end] = ACTIONS(2487), - [sym_identifier] = ACTIONS(2489), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_default] = ACTIONS(2489), - [anon_sym_type] = ACTIONS(2489), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_typeof] = ACTIONS(2489), - [anon_sym_import] = ACTIONS(2489), - [anon_sym_with] = ACTIONS(2489), - [anon_sym_var] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_switch] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_debugger] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_throw] = ACTIONS(2489), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [sym_glimmer_opening_tag] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2489), - [anon_sym_function] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_using] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_SLASH] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_void] = ACTIONS(2489), - [anon_sym_delete] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2487), - [sym_number] = ACTIONS(2487), - [sym_private_property_identifier] = ACTIONS(2487), - [sym_this] = ACTIONS(2489), - [sym_super] = ACTIONS(2489), - [sym_true] = ACTIONS(2489), - [sym_false] = ACTIONS(2489), - [sym_null] = ACTIONS(2489), - [sym_undefined] = ACTIONS(2489), - [anon_sym_AT] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2489), - [anon_sym_readonly] = ACTIONS(2489), - [anon_sym_get] = ACTIONS(2489), - [anon_sym_set] = ACTIONS(2489), - [anon_sym_declare] = ACTIONS(2489), - [anon_sym_public] = ACTIONS(2489), - [anon_sym_private] = ACTIONS(2489), - [anon_sym_protected] = ACTIONS(2489), - [anon_sym_override] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_any] = ACTIONS(2489), - [anon_sym_number] = ACTIONS(2489), - [anon_sym_boolean] = ACTIONS(2489), - [anon_sym_string] = ACTIONS(2489), - [anon_sym_symbol] = ACTIONS(2489), - [anon_sym_object] = ACTIONS(2489), - [anon_sym_abstract] = ACTIONS(2489), - [anon_sym_interface] = ACTIONS(2489), - [anon_sym_enum] = ACTIONS(2489), - [sym_html_comment] = ACTIONS(5), - }, - [865] = { - [ts_builtin_sym_end] = ACTIONS(2487), - [sym_identifier] = ACTIONS(2489), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_default] = ACTIONS(2489), - [anon_sym_type] = ACTIONS(2489), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_typeof] = ACTIONS(2489), - [anon_sym_import] = ACTIONS(2489), - [anon_sym_with] = ACTIONS(2489), - [anon_sym_var] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_switch] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_debugger] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_throw] = ACTIONS(2489), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [sym_glimmer_opening_tag] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2489), - [anon_sym_function] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_using] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_SLASH] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_void] = ACTIONS(2489), - [anon_sym_delete] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2487), - [sym_number] = ACTIONS(2487), - [sym_private_property_identifier] = ACTIONS(2487), - [sym_this] = ACTIONS(2489), - [sym_super] = ACTIONS(2489), - [sym_true] = ACTIONS(2489), - [sym_false] = ACTIONS(2489), - [sym_null] = ACTIONS(2489), - [sym_undefined] = ACTIONS(2489), - [anon_sym_AT] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2489), - [anon_sym_readonly] = ACTIONS(2489), - [anon_sym_get] = ACTIONS(2489), - [anon_sym_set] = ACTIONS(2489), - [anon_sym_declare] = ACTIONS(2489), - [anon_sym_public] = ACTIONS(2489), - [anon_sym_private] = ACTIONS(2489), - [anon_sym_protected] = ACTIONS(2489), - [anon_sym_override] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_any] = ACTIONS(2489), - [anon_sym_number] = ACTIONS(2489), - [anon_sym_boolean] = ACTIONS(2489), - [anon_sym_string] = ACTIONS(2489), - [anon_sym_symbol] = ACTIONS(2489), - [anon_sym_object] = ACTIONS(2489), - [anon_sym_abstract] = ACTIONS(2489), - [anon_sym_interface] = ACTIONS(2489), - [anon_sym_enum] = ACTIONS(2489), - [sym_html_comment] = ACTIONS(5), - }, - [866] = { + [867] = { [ts_builtin_sym_end] = ACTIONS(2879), [sym_identifier] = ACTIONS(2881), [anon_sym_export] = ACTIONS(2881), @@ -115016,7 +118460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2881), [sym_html_comment] = ACTIONS(5), }, - [867] = { + [868] = { [ts_builtin_sym_end] = ACTIONS(2883), [sym_identifier] = ACTIONS(2885), [anon_sym_export] = ACTIONS(2885), @@ -115099,89 +118543,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2885), [sym_html_comment] = ACTIONS(5), }, - [868] = { - [ts_builtin_sym_end] = ACTIONS(2487), - [sym_identifier] = ACTIONS(2489), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_default] = ACTIONS(2489), - [anon_sym_type] = ACTIONS(2489), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_typeof] = ACTIONS(2489), - [anon_sym_import] = ACTIONS(2489), - [anon_sym_with] = ACTIONS(2489), - [anon_sym_var] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_switch] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_debugger] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_throw] = ACTIONS(2489), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [sym_glimmer_opening_tag] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2489), - [anon_sym_function] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_using] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_SLASH] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_void] = ACTIONS(2489), - [anon_sym_delete] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2487), - [sym_number] = ACTIONS(2487), - [sym_private_property_identifier] = ACTIONS(2487), - [sym_this] = ACTIONS(2489), - [sym_super] = ACTIONS(2489), - [sym_true] = ACTIONS(2489), - [sym_false] = ACTIONS(2489), - [sym_null] = ACTIONS(2489), - [sym_undefined] = ACTIONS(2489), - [anon_sym_AT] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2489), - [anon_sym_readonly] = ACTIONS(2489), - [anon_sym_get] = ACTIONS(2489), - [anon_sym_set] = ACTIONS(2489), - [anon_sym_declare] = ACTIONS(2489), - [anon_sym_public] = ACTIONS(2489), - [anon_sym_private] = ACTIONS(2489), - [anon_sym_protected] = ACTIONS(2489), - [anon_sym_override] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_any] = ACTIONS(2489), - [anon_sym_number] = ACTIONS(2489), - [anon_sym_boolean] = ACTIONS(2489), - [anon_sym_string] = ACTIONS(2489), - [anon_sym_symbol] = ACTIONS(2489), - [anon_sym_object] = ACTIONS(2489), - [anon_sym_abstract] = ACTIONS(2489), - [anon_sym_interface] = ACTIONS(2489), - [anon_sym_enum] = ACTIONS(2489), - [sym_html_comment] = ACTIONS(5), - }, [869] = { [ts_builtin_sym_end] = ACTIONS(2887), [sym_identifier] = ACTIONS(2889), @@ -115266,81 +118627,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [870] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5447), - [sym_optional_tuple_parameter] = STATE(5447), - [sym_optional_type] = STATE(5447), - [sym_rest_type] = STATE(5447), - [sym__tuple_type_member] = STATE(5447), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(7044), + [sym_optional_tuple_parameter] = STATE(7044), + [sym_optional_type] = STATE(7044), + [sym_rest_type] = STATE(7044), + [sym__tuple_type_member] = STATE(7044), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_RBRACK] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115348,81 +118709,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [871] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5447), - [sym_optional_tuple_parameter] = STATE(5447), - [sym_optional_type] = STATE(5447), - [sym_rest_type] = STATE(5447), - [sym__tuple_type_member] = STATE(5447), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(7044), + [sym_optional_tuple_parameter] = STATE(7044), + [sym_optional_type] = STATE(7044), + [sym_rest_type] = STATE(7044), + [sym__tuple_type_member] = STATE(7044), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_RBRACK] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115430,81 +118791,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [872] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5447), - [sym_optional_tuple_parameter] = STATE(5447), - [sym_optional_type] = STATE(5447), - [sym_rest_type] = STATE(5447), - [sym__tuple_type_member] = STATE(5447), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(7044), + [sym_optional_tuple_parameter] = STATE(7044), + [sym_optional_type] = STATE(7044), + [sym_rest_type] = STATE(7044), + [sym__tuple_type_member] = STATE(7044), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_RBRACK] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115512,81 +118873,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [873] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5447), - [sym_optional_tuple_parameter] = STATE(5447), - [sym_optional_type] = STATE(5447), - [sym_rest_type] = STATE(5447), - [sym__tuple_type_member] = STATE(5447), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(7044), + [sym_optional_tuple_parameter] = STATE(7044), + [sym_optional_type] = STATE(7044), + [sym_rest_type] = STATE(7044), + [sym__tuple_type_member] = STATE(7044), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_RBRACK] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115594,81 +118955,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [874] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5447), - [sym_optional_tuple_parameter] = STATE(5447), - [sym_optional_type] = STATE(5447), - [sym_rest_type] = STATE(5447), - [sym__tuple_type_member] = STATE(5447), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(7044), + [sym_optional_tuple_parameter] = STATE(7044), + [sym_optional_type] = STATE(7044), + [sym_rest_type] = STATE(7044), + [sym__tuple_type_member] = STATE(7044), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_RBRACK] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115676,81 +119037,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [875] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5447), - [sym_optional_tuple_parameter] = STATE(5447), - [sym_optional_type] = STATE(5447), - [sym_rest_type] = STATE(5447), - [sym__tuple_type_member] = STATE(5447), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(7044), + [sym_optional_tuple_parameter] = STATE(7044), + [sym_optional_type] = STATE(7044), + [sym_rest_type] = STATE(7044), + [sym__tuple_type_member] = STATE(7044), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_RBRACK] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115758,81 +119119,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [876] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5447), - [sym_optional_tuple_parameter] = STATE(5447), - [sym_optional_type] = STATE(5447), - [sym_rest_type] = STATE(5447), - [sym__tuple_type_member] = STATE(5447), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(7044), + [sym_optional_tuple_parameter] = STATE(7044), + [sym_optional_type] = STATE(7044), + [sym_rest_type] = STATE(7044), + [sym__tuple_type_member] = STATE(7044), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_RBRACK] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115840,81 +119201,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [877] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5447), - [sym_optional_tuple_parameter] = STATE(5447), - [sym_optional_type] = STATE(5447), - [sym_rest_type] = STATE(5447), - [sym__tuple_type_member] = STATE(5447), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(7044), + [sym_optional_tuple_parameter] = STATE(7044), + [sym_optional_type] = STATE(7044), + [sym_rest_type] = STATE(7044), + [sym__tuple_type_member] = STATE(7044), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_RBRACK] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -115922,81 +119283,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [878] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5447), - [sym_optional_tuple_parameter] = STATE(5447), - [sym_optional_type] = STATE(5447), - [sym_rest_type] = STATE(5447), - [sym__tuple_type_member] = STATE(5447), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(7044), + [sym_optional_tuple_parameter] = STATE(7044), + [sym_optional_type] = STATE(7044), + [sym_rest_type] = STATE(7044), + [sym__tuple_type_member] = STATE(7044), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_RBRACK] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -116004,81 +119365,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [879] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5447), - [sym_optional_tuple_parameter] = STATE(5447), - [sym_optional_type] = STATE(5447), - [sym_rest_type] = STATE(5447), - [sym__tuple_type_member] = STATE(5447), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(7044), + [sym_optional_tuple_parameter] = STATE(7044), + [sym_optional_type] = STATE(7044), + [sym_rest_type] = STATE(7044), + [sym__tuple_type_member] = STATE(7044), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_RBRACK] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -116086,80 +119447,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [880] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_rest_pattern] = STATE(5377), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3859), - [sym_tuple_parameter] = STATE(5447), - [sym_optional_tuple_parameter] = STATE(5447), - [sym_optional_type] = STATE(5447), - [sym_rest_type] = STATE(5447), - [sym__tuple_type_member] = STATE(5447), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_rest_pattern] = STATE(6258), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4181), + [sym_tuple_parameter] = STATE(7044), + [sym_optional_tuple_parameter] = STATE(7044), + [sym_optional_type] = STATE(7044), + [sym_rest_type] = STATE(7044), + [sym__tuple_type_member] = STATE(7044), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), @@ -116245,84 +119606,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [882] = { - [sym_identifier] = ACTIONS(2445), - [anon_sym_export] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_typeof] = ACTIONS(2445), - [anon_sym_import] = ACTIONS(2445), - [anon_sym_with] = ACTIONS(2445), - [anon_sym_var] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_switch] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [anon_sym_do] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_debugger] = ACTIONS(2445), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_throw] = ACTIONS(2445), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_yield] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2443), - [sym_glimmer_opening_tag] = ACTIONS(2443), - [anon_sym_DQUOTE] = ACTIONS(2443), - [anon_sym_SQUOTE] = ACTIONS(2443), - [anon_sym_class] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_function] = ACTIONS(2445), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_using] = ACTIONS(2445), - [anon_sym_PLUS] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_SLASH] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_TILDE] = ACTIONS(2443), - [anon_sym_void] = ACTIONS(2445), - [anon_sym_delete] = ACTIONS(2445), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2911), + [anon_sym_export] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_typeof] = ACTIONS(2911), + [anon_sym_import] = ACTIONS(2911), + [anon_sym_with] = ACTIONS(2911), + [anon_sym_var] = ACTIONS(2911), + [anon_sym_let] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2913), + [anon_sym_await] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_debugger] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_throw] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2913), + [sym_glimmer_opening_tag] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2911), + [anon_sym_async] = ACTIONS(2911), + [anon_sym_function] = ACTIONS(2911), + [anon_sym_new] = ACTIONS(2911), + [anon_sym_using] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_SLASH] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_void] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2443), - [sym_number] = ACTIONS(2443), - [sym_private_property_identifier] = ACTIONS(2443), - [sym_this] = ACTIONS(2445), - [sym_super] = ACTIONS(2445), - [sym_true] = ACTIONS(2445), - [sym_false] = ACTIONS(2445), - [sym_null] = ACTIONS(2445), - [sym_undefined] = ACTIONS(2445), - [anon_sym_AT] = ACTIONS(2443), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_readonly] = ACTIONS(2445), - [anon_sym_get] = ACTIONS(2445), - [anon_sym_set] = ACTIONS(2445), - [anon_sym_declare] = ACTIONS(2445), - [anon_sym_public] = ACTIONS(2445), - [anon_sym_private] = ACTIONS(2445), - [anon_sym_protected] = ACTIONS(2445), - [anon_sym_override] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_any] = ACTIONS(2445), - [anon_sym_number] = ACTIONS(2445), - [anon_sym_boolean] = ACTIONS(2445), - [anon_sym_string] = ACTIONS(2445), - [anon_sym_symbol] = ACTIONS(2445), - [anon_sym_object] = ACTIONS(2445), - [anon_sym_abstract] = ACTIONS(2445), - [anon_sym_interface] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_number] = ACTIONS(2913), + [sym_private_property_identifier] = ACTIONS(2913), + [sym_this] = ACTIONS(2911), + [sym_super] = ACTIONS(2911), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_null] = ACTIONS(2911), + [sym_undefined] = ACTIONS(2911), + [anon_sym_AT] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_readonly] = ACTIONS(2911), + [anon_sym_get] = ACTIONS(2911), + [anon_sym_set] = ACTIONS(2911), + [anon_sym_declare] = ACTIONS(2911), + [anon_sym_public] = ACTIONS(2911), + [anon_sym_private] = ACTIONS(2911), + [anon_sym_protected] = ACTIONS(2911), + [anon_sym_override] = ACTIONS(2911), + [anon_sym_module] = ACTIONS(2911), + [anon_sym_any] = ACTIONS(2911), + [anon_sym_number] = ACTIONS(2911), + [anon_sym_boolean] = ACTIONS(2911), + [anon_sym_string] = ACTIONS(2911), + [anon_sym_symbol] = ACTIONS(2911), + [anon_sym_object] = ACTIONS(2911), + [anon_sym_abstract] = ACTIONS(2911), + [anon_sym_interface] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), [sym_html_comment] = ACTIONS(5), }, [883] = { + [sym_identifier] = ACTIONS(2481), + [anon_sym_export] = ACTIONS(2481), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_namespace] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_typeof] = ACTIONS(2481), + [anon_sym_import] = ACTIONS(2481), + [anon_sym_with] = ACTIONS(2481), + [anon_sym_var] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_switch] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_debugger] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_throw] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [sym_glimmer_opening_tag] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_function] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_using] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_void] = ACTIONS(2481), + [anon_sym_delete] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2479), + [sym_number] = ACTIONS(2479), + [sym_private_property_identifier] = ACTIONS(2479), + [sym_this] = ACTIONS(2481), + [sym_super] = ACTIONS(2481), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_null] = ACTIONS(2481), + [sym_undefined] = ACTIONS(2481), + [anon_sym_AT] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_readonly] = ACTIONS(2481), + [anon_sym_get] = ACTIONS(2481), + [anon_sym_set] = ACTIONS(2481), + [anon_sym_declare] = ACTIONS(2481), + [anon_sym_public] = ACTIONS(2481), + [anon_sym_private] = ACTIONS(2481), + [anon_sym_protected] = ACTIONS(2481), + [anon_sym_override] = ACTIONS(2481), + [anon_sym_module] = ACTIONS(2481), + [anon_sym_any] = ACTIONS(2481), + [anon_sym_number] = ACTIONS(2481), + [anon_sym_boolean] = ACTIONS(2481), + [anon_sym_string] = ACTIONS(2481), + [anon_sym_symbol] = ACTIONS(2481), + [anon_sym_object] = ACTIONS(2481), + [anon_sym_abstract] = ACTIONS(2481), + [anon_sym_interface] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [sym_html_comment] = ACTIONS(5), + }, + [884] = { [sym_identifier] = ACTIONS(2915), [anon_sym_export] = ACTIONS(2915), [anon_sym_type] = ACTIONS(2915), @@ -116400,7 +119839,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2915), [sym_html_comment] = ACTIONS(5), }, - [884] = { + [885] = { + [sym_identifier] = ACTIONS(2445), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_typeof] = ACTIONS(2445), + [anon_sym_import] = ACTIONS(2445), + [anon_sym_with] = ACTIONS(2445), + [anon_sym_var] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_debugger] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2443), + [sym_glimmer_opening_tag] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_void] = ACTIONS(2445), + [anon_sym_delete] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2443), + [sym_number] = ACTIONS(2443), + [sym_private_property_identifier] = ACTIONS(2443), + [sym_this] = ACTIONS(2445), + [sym_super] = ACTIONS(2445), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_null] = ACTIONS(2445), + [sym_undefined] = ACTIONS(2445), + [anon_sym_AT] = ACTIONS(2443), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_abstract] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [sym_html_comment] = ACTIONS(5), + }, + [886] = { [sym_identifier] = ACTIONS(2911), [anon_sym_export] = ACTIONS(2911), [anon_sym_type] = ACTIONS(2911), @@ -116478,7 +119995,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2911), [sym_html_comment] = ACTIONS(5), }, - [885] = { + [887] = { + [sym_identifier] = ACTIONS(2919), + [anon_sym_export] = ACTIONS(2919), + [anon_sym_type] = ACTIONS(2919), + [anon_sym_namespace] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_typeof] = ACTIONS(2919), + [anon_sym_import] = ACTIONS(2919), + [anon_sym_with] = ACTIONS(2919), + [anon_sym_var] = ACTIONS(2919), + [anon_sym_let] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_await] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_do] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_debugger] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_throw] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_yield] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2921), + [sym_glimmer_opening_tag] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_async] = ACTIONS(2919), + [anon_sym_function] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_using] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2919), + [anon_sym_SLASH] = ACTIONS(2919), + [anon_sym_LT] = ACTIONS(2919), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_void] = ACTIONS(2919), + [anon_sym_delete] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2921), + [sym_number] = ACTIONS(2921), + [sym_private_property_identifier] = ACTIONS(2921), + [sym_this] = ACTIONS(2919), + [sym_super] = ACTIONS(2919), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [sym_null] = ACTIONS(2919), + [sym_undefined] = ACTIONS(2919), + [anon_sym_AT] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_readonly] = ACTIONS(2919), + [anon_sym_get] = ACTIONS(2919), + [anon_sym_set] = ACTIONS(2919), + [anon_sym_declare] = ACTIONS(2919), + [anon_sym_public] = ACTIONS(2919), + [anon_sym_private] = ACTIONS(2919), + [anon_sym_protected] = ACTIONS(2919), + [anon_sym_override] = ACTIONS(2919), + [anon_sym_module] = ACTIONS(2919), + [anon_sym_any] = ACTIONS(2919), + [anon_sym_number] = ACTIONS(2919), + [anon_sym_boolean] = ACTIONS(2919), + [anon_sym_string] = ACTIONS(2919), + [anon_sym_symbol] = ACTIONS(2919), + [anon_sym_object] = ACTIONS(2919), + [anon_sym_abstract] = ACTIONS(2919), + [anon_sym_interface] = ACTIONS(2919), + [anon_sym_enum] = ACTIONS(2919), + [sym_html_comment] = ACTIONS(5), + }, + [888] = { [sym_identifier] = ACTIONS(2911), [anon_sym_export] = ACTIONS(2911), [anon_sym_type] = ACTIONS(2911), @@ -116556,7 +120151,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2911), [sym_html_comment] = ACTIONS(5), }, - [886] = { + [889] = { + [sym_identifier] = ACTIONS(2923), + [anon_sym_export] = ACTIONS(2923), + [anon_sym_type] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_typeof] = ACTIONS(2923), + [anon_sym_import] = ACTIONS(2923), + [anon_sym_with] = ACTIONS(2923), + [anon_sym_var] = ACTIONS(2923), + [anon_sym_let] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_await] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_debugger] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_yield] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2925), + [sym_glimmer_opening_tag] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_async] = ACTIONS(2923), + [anon_sym_function] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_void] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2925), + [sym_number] = ACTIONS(2925), + [sym_private_property_identifier] = ACTIONS(2925), + [sym_this] = ACTIONS(2923), + [sym_super] = ACTIONS(2923), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_null] = ACTIONS(2923), + [sym_undefined] = ACTIONS(2923), + [anon_sym_AT] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_readonly] = ACTIONS(2923), + [anon_sym_get] = ACTIONS(2923), + [anon_sym_set] = ACTIONS(2923), + [anon_sym_declare] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_private] = ACTIONS(2923), + [anon_sym_protected] = ACTIONS(2923), + [anon_sym_override] = ACTIONS(2923), + [anon_sym_module] = ACTIONS(2923), + [anon_sym_any] = ACTIONS(2923), + [anon_sym_number] = ACTIONS(2923), + [anon_sym_boolean] = ACTIONS(2923), + [anon_sym_string] = ACTIONS(2923), + [anon_sym_symbol] = ACTIONS(2923), + [anon_sym_object] = ACTIONS(2923), + [anon_sym_abstract] = ACTIONS(2923), + [anon_sym_interface] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [sym_html_comment] = ACTIONS(5), + }, + [890] = { [sym_identifier] = ACTIONS(2911), [anon_sym_export] = ACTIONS(2911), [anon_sym_type] = ACTIONS(2911), @@ -116634,7 +120307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2911), [sym_html_comment] = ACTIONS(5), }, - [887] = { + [891] = { [sym_identifier] = ACTIONS(2911), [anon_sym_export] = ACTIONS(2911), [anon_sym_type] = ACTIONS(2911), @@ -116712,7 +120385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2911), [sym_html_comment] = ACTIONS(5), }, - [888] = { + [892] = { [sym_identifier] = ACTIONS(2911), [anon_sym_export] = ACTIONS(2911), [anon_sym_type] = ACTIONS(2911), @@ -116790,7 +120463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2911), [sym_html_comment] = ACTIONS(5), }, - [889] = { + [893] = { [sym_identifier] = ACTIONS(2911), [anon_sym_export] = ACTIONS(2911), [anon_sym_type] = ACTIONS(2911), @@ -116868,609 +120541,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2911), [sym_html_comment] = ACTIONS(5), }, - [890] = { - [sym_identifier] = ACTIONS(2911), - [anon_sym_export] = ACTIONS(2911), - [anon_sym_type] = ACTIONS(2911), - [anon_sym_namespace] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_typeof] = ACTIONS(2911), - [anon_sym_import] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), - [anon_sym_var] = ACTIONS(2911), - [anon_sym_let] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_await] = ACTIONS(2911), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2911), - [anon_sym_try] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_debugger] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_throw] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym_yield] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2913), - [sym_glimmer_opening_tag] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_async] = ACTIONS(2911), - [anon_sym_function] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_void] = ACTIONS(2911), - [anon_sym_delete] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2913), - [sym_number] = ACTIONS(2913), - [sym_private_property_identifier] = ACTIONS(2913), - [sym_this] = ACTIONS(2911), - [sym_super] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_null] = ACTIONS(2911), - [sym_undefined] = ACTIONS(2911), - [anon_sym_AT] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_readonly] = ACTIONS(2911), - [anon_sym_get] = ACTIONS(2911), - [anon_sym_set] = ACTIONS(2911), - [anon_sym_declare] = ACTIONS(2911), - [anon_sym_public] = ACTIONS(2911), - [anon_sym_private] = ACTIONS(2911), - [anon_sym_protected] = ACTIONS(2911), - [anon_sym_override] = ACTIONS(2911), - [anon_sym_module] = ACTIONS(2911), - [anon_sym_any] = ACTIONS(2911), - [anon_sym_number] = ACTIONS(2911), - [anon_sym_boolean] = ACTIONS(2911), - [anon_sym_string] = ACTIONS(2911), - [anon_sym_symbol] = ACTIONS(2911), - [anon_sym_object] = ACTIONS(2911), - [anon_sym_abstract] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [sym_html_comment] = ACTIONS(5), - }, - [891] = { - [sym_identifier] = ACTIONS(2919), - [anon_sym_export] = ACTIONS(2919), - [anon_sym_type] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_typeof] = ACTIONS(2919), - [anon_sym_import] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2919), - [anon_sym_var] = ACTIONS(2919), - [anon_sym_let] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_await] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_debugger] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_yield] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2921), - [sym_glimmer_opening_tag] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_async] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_void] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2921), - [sym_number] = ACTIONS(2921), - [sym_private_property_identifier] = ACTIONS(2921), - [sym_this] = ACTIONS(2919), - [sym_super] = ACTIONS(2919), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [sym_null] = ACTIONS(2919), - [sym_undefined] = ACTIONS(2919), - [anon_sym_AT] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_readonly] = ACTIONS(2919), - [anon_sym_get] = ACTIONS(2919), - [anon_sym_set] = ACTIONS(2919), - [anon_sym_declare] = ACTIONS(2919), - [anon_sym_public] = ACTIONS(2919), - [anon_sym_private] = ACTIONS(2919), - [anon_sym_protected] = ACTIONS(2919), - [anon_sym_override] = ACTIONS(2919), - [anon_sym_module] = ACTIONS(2919), - [anon_sym_any] = ACTIONS(2919), - [anon_sym_number] = ACTIONS(2919), - [anon_sym_boolean] = ACTIONS(2919), - [anon_sym_string] = ACTIONS(2919), - [anon_sym_symbol] = ACTIONS(2919), - [anon_sym_object] = ACTIONS(2919), - [anon_sym_abstract] = ACTIONS(2919), - [anon_sym_interface] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [sym_html_comment] = ACTIONS(5), - }, - [892] = { - [sym_identifier] = ACTIONS(2461), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2461), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_typeof] = ACTIONS(2461), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_var] = ACTIONS(2461), - [anon_sym_let] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_switch] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_await] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_debugger] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_throw] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_glimmer_opening_tag] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(2459), - [anon_sym_SQUOTE] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_function] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2461), - [anon_sym_using] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_SLASH] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_void] = ACTIONS(2461), - [anon_sym_delete] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2459), - [sym_number] = ACTIONS(2459), - [sym_private_property_identifier] = ACTIONS(2459), - [sym_this] = ACTIONS(2461), - [sym_super] = ACTIONS(2461), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_null] = ACTIONS(2461), - [sym_undefined] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_readonly] = ACTIONS(2461), - [anon_sym_get] = ACTIONS(2461), - [anon_sym_set] = ACTIONS(2461), - [anon_sym_declare] = ACTIONS(2461), - [anon_sym_public] = ACTIONS(2461), - [anon_sym_private] = ACTIONS(2461), - [anon_sym_protected] = ACTIONS(2461), - [anon_sym_override] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_any] = ACTIONS(2461), - [anon_sym_number] = ACTIONS(2461), - [anon_sym_boolean] = ACTIONS(2461), - [anon_sym_string] = ACTIONS(2461), - [anon_sym_symbol] = ACTIONS(2461), - [anon_sym_object] = ACTIONS(2461), - [anon_sym_abstract] = ACTIONS(2461), - [anon_sym_interface] = ACTIONS(2461), - [anon_sym_enum] = ACTIONS(2461), - [sym_html_comment] = ACTIONS(5), - }, - [893] = { - [sym_identifier] = ACTIONS(2923), - [anon_sym_export] = ACTIONS(2923), - [anon_sym_type] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_typeof] = ACTIONS(2923), - [anon_sym_import] = ACTIONS(2923), - [anon_sym_with] = ACTIONS(2923), - [anon_sym_var] = ACTIONS(2923), - [anon_sym_let] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_await] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_debugger] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_yield] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2925), - [sym_glimmer_opening_tag] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_async] = ACTIONS(2923), - [anon_sym_function] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_SLASH] = ACTIONS(2923), - [anon_sym_LT] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_void] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2925), - [sym_number] = ACTIONS(2925), - [sym_private_property_identifier] = ACTIONS(2925), - [sym_this] = ACTIONS(2923), - [sym_super] = ACTIONS(2923), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [sym_null] = ACTIONS(2923), - [sym_undefined] = ACTIONS(2923), - [anon_sym_AT] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_readonly] = ACTIONS(2923), - [anon_sym_get] = ACTIONS(2923), - [anon_sym_set] = ACTIONS(2923), - [anon_sym_declare] = ACTIONS(2923), - [anon_sym_public] = ACTIONS(2923), - [anon_sym_private] = ACTIONS(2923), - [anon_sym_protected] = ACTIONS(2923), - [anon_sym_override] = ACTIONS(2923), - [anon_sym_module] = ACTIONS(2923), - [anon_sym_any] = ACTIONS(2923), - [anon_sym_number] = ACTIONS(2923), - [anon_sym_boolean] = ACTIONS(2923), - [anon_sym_string] = ACTIONS(2923), - [anon_sym_symbol] = ACTIONS(2923), - [anon_sym_object] = ACTIONS(2923), - [anon_sym_abstract] = ACTIONS(2923), - [anon_sym_interface] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [sym_html_comment] = ACTIONS(5), - }, [894] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_asserts] = STATE(1894), - [sym_type] = STATE(1895), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_predicate] = STATE(1894), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1811), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_asserts] = STATE(3388), + [sym_type] = STATE(3535), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_predicate] = STATE(3388), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3417), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), [sym_identifier] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(2955), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_asserts] = ACTIONS(2965), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), - [sym_html_comment] = ACTIONS(5), - }, - [895] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_asserts] = STATE(3174), - [sym_type] = STATE(3175), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_predicate] = STATE(3174), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3112), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(2979), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_asserts] = ACTIONS(2981), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), - [sym_html_comment] = ACTIONS(5), - }, - [896] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_asserts] = STATE(3299), - [sym_type] = STATE(3317), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_predicate] = STATE(3299), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3227), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(2983), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3015), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_asserts] = ACTIONS(3025), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), - [sym_html_comment] = ACTIONS(5), - }, - [897] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_asserts] = STATE(2926), - [sym_type] = STATE(3059), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_predicate] = STATE(2926), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2995), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(3037), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(2929), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -117479,7 +120609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), - [anon_sym_asserts] = ACTIONS(3039), + [anon_sym_asserts] = ACTIONS(2931), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), @@ -117488,297 +120618,451 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, + [895] = { + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_asserts] = STATE(5090), + [sym_type] = STATE(3933), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_predicate] = STATE(5089), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3704), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(2965), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_asserts] = ACTIONS(2975), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), + [sym_html_comment] = ACTIONS(5), + }, + [896] = { + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_asserts] = STATE(1546), + [sym_type] = STATE(1545), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_predicate] = STATE(1546), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1440), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3013), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_asserts] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), + [sym_html_comment] = ACTIONS(5), + }, + [897] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_asserts] = STATE(3615), + [sym_type] = STATE(3621), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_predicate] = STATE(3615), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3548), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(3037), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_asserts] = ACTIONS(3039), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, [898] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_asserts] = STATE(2926), - [sym_type] = STATE(3829), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_predicate] = STATE(2926), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(3590), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_asserts] = STATE(3811), + [sym_type] = STATE(3813), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_predicate] = STATE(3811), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3704), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(2965), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_asserts] = ACTIONS(2975), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), + [sym_html_comment] = ACTIONS(5), + }, + [899] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_asserts] = STATE(3388), + [sym_type] = STATE(3963), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_predicate] = STATE(3388), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3919), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), [sym_identifier] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(3053), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(3043), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_asserts] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_asserts] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), - [sym_html_comment] = ACTIONS(5), - }, - [899] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_asserts] = STATE(3208), - [sym_type] = STATE(3152), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_predicate] = STATE(3208), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3112), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(2979), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_asserts] = ACTIONS(2981), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [900] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_asserts] = STATE(3419), - [sym_type] = STATE(3421), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_predicate] = STATE(3419), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3227), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(2983), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3015), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_asserts] = ACTIONS(3025), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), - [sym_html_comment] = ACTIONS(5), - }, - [901] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_asserts] = STATE(5487), - [sym_type] = STATE(3333), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_predicate] = STATE(5492), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2995), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_asserts] = STATE(6132), + [sym_type] = STATE(3835), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_predicate] = STATE(6133), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3417), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(3037), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(2929), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -117787,7 +121071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), - [anon_sym_asserts] = ACTIONS(3039), + [anon_sym_asserts] = ACTIONS(2931), [anon_sym_infer] = ACTIONS(214), [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), @@ -117796,986 +121080,835 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, + [901] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_asserts] = STATE(2044), + [sym_type] = STATE(2041), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_predicate] = STATE(2044), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(1891), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3075), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_asserts] = ACTIONS(3085), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [sym_html_comment] = ACTIONS(5), + }, [902] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_asserts] = STATE(3933), - [sym_type] = STATE(3454), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_predicate] = STATE(3935), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3227), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(2983), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_asserts] = STATE(3882), + [sym_type] = STATE(3881), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_predicate] = STATE(3882), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3704), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3015), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_asserts] = ACTIONS(3025), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(2965), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_asserts] = ACTIONS(2975), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, [903] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_asserts] = STATE(1457), - [sym_type] = STATE(1458), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_predicate] = STATE(1457), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1450), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_asserts] = STATE(2116), + [sym_type] = STATE(2109), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_predicate] = STATE(2116), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(1891), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3097), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_asserts] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3075), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_asserts] = ACTIONS(3085), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), [sym_html_comment] = ACTIONS(5), }, [904] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_asserts] = STATE(2874), - [sym_type] = STATE(3812), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_predicate] = STATE(2874), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(3590), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_asserts] = STATE(4525), + [sym_type] = STATE(3702), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_predicate] = STATE(4527), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3548), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(3037), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_asserts] = ACTIONS(3039), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [905] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_asserts] = STATE(3393), + [sym_type] = STATE(3504), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_predicate] = STATE(3393), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3417), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(3053), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(2929), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_asserts] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_asserts] = ACTIONS(2931), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [905] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_asserts] = STATE(2874), - [sym_type] = STATE(3623), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_predicate] = STATE(2874), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(3472), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [906] = { + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_asserts] = STATE(3393), + [sym_type] = STATE(4508), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_predicate] = STATE(3393), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(4044), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(3119), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(3107), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_asserts] = ACTIONS(3121), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_asserts] = ACTIONS(3115), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, - [906] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_asserts] = STATE(2926), - [sym_type] = STATE(3651), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_predicate] = STATE(2926), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(3472), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [907] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_asserts] = STATE(3393), + [sym_type] = STATE(4101), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_predicate] = STATE(3393), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3919), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(3119), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(3043), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_asserts] = ACTIONS(3121), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_asserts] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [907] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_asserts] = STATE(3896), - [sym_type] = STATE(3226), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_predicate] = STATE(3900), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3112), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [908] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_asserts] = STATE(3648), + [sym_type] = STATE(3636), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_predicate] = STATE(3648), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3548), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(2979), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_asserts] = ACTIONS(2981), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(3037), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_asserts] = ACTIONS(3039), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym_html_comment] = ACTIONS(5), }, - [908] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_asserts] = STATE(2874), - [sym_type] = STATE(3006), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_predicate] = STATE(2874), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2995), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [909] = { + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_asserts] = STATE(3388), + [sym_type] = STATE(4582), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_predicate] = STATE(3388), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(4044), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(3037), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(3107), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_asserts] = ACTIONS(3039), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_asserts] = ACTIONS(3115), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [909] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_asserts] = STATE(2096), - [sym_type] = STATE(2097), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_predicate] = STATE(2096), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1811), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(2955), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_asserts] = ACTIONS(2965), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, [910] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_asserts] = STATE(1491), - [sym_type] = STATE(1492), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_predicate] = STATE(1491), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1450), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_asserts] = STATE(1504), + [sym_type] = STATE(1502), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_predicate] = STATE(1504), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1440), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3097), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_asserts] = ACTIONS(3107), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3013), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_asserts] = ACTIONS(3023), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), [sym_html_comment] = ACTIONS(5), }, [911] = { - [sym_identifier] = ACTIONS(3123), - [anon_sym_export] = ACTIONS(3123), - [anon_sym_type] = ACTIONS(3123), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_namespace] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_typeof] = ACTIONS(3123), - [anon_sym_import] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_RPAREN] = ACTIONS(3125), - [anon_sym_await] = ACTIONS(3123), - [anon_sym_COLON] = ACTIONS(3125), - [anon_sym_yield] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_RBRACK] = ACTIONS(3125), - [sym_glimmer_opening_tag] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3125), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_async] = ACTIONS(3123), - [anon_sym_function] = ACTIONS(3123), - [anon_sym_EQ_GT] = ACTIONS(3125), - [anon_sym_QMARK_DOT] = ACTIONS(3125), - [anon_sym_new] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_PIPE] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_void] = ACTIONS(3123), - [anon_sym_delete] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3125), - [sym_number] = ACTIONS(3125), - [sym_private_property_identifier] = ACTIONS(3125), - [sym_this] = ACTIONS(3123), - [sym_super] = ACTIONS(3123), - [sym_true] = ACTIONS(3123), - [sym_false] = ACTIONS(3123), - [sym_null] = ACTIONS(3123), - [sym_undefined] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_readonly] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3123), - [anon_sym_set] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(3123), - [anon_sym_declare] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_module] = ACTIONS(3123), - [anon_sym_any] = ACTIONS(3123), - [anon_sym_number] = ACTIONS(3123), - [anon_sym_boolean] = ACTIONS(3123), - [anon_sym_string] = ACTIONS(3123), - [anon_sym_symbol] = ACTIONS(3123), - [anon_sym_object] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_extends] = ACTIONS(3123), - [sym_html_comment] = ACTIONS(5), - }, - [912] = { - [sym_identifier] = ACTIONS(3127), - [anon_sym_export] = ACTIONS(3127), - [anon_sym_type] = ACTIONS(3127), - [anon_sym_EQ] = ACTIONS(3127), - [anon_sym_namespace] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_RBRACE] = ACTIONS(3129), - [anon_sym_typeof] = ACTIONS(3127), - [anon_sym_import] = ACTIONS(3127), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_RPAREN] = ACTIONS(3129), - [anon_sym_await] = ACTIONS(3127), - [anon_sym_COLON] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_RBRACK] = ACTIONS(3129), - [sym_glimmer_opening_tag] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_DOT] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3129), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_async] = ACTIONS(3127), - [anon_sym_function] = ACTIONS(3127), - [anon_sym_EQ_GT] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_using] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_SLASH] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_void] = ACTIONS(3127), - [anon_sym_delete] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3129), - [sym_number] = ACTIONS(3129), - [sym_private_property_identifier] = ACTIONS(3129), - [sym_this] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_true] = ACTIONS(3127), - [sym_false] = ACTIONS(3127), - [sym_null] = ACTIONS(3127), - [sym_undefined] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_readonly] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3127), - [anon_sym_set] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3127), - [anon_sym_declare] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_protected] = ACTIONS(3127), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_module] = ACTIONS(3127), - [anon_sym_any] = ACTIONS(3127), - [anon_sym_number] = ACTIONS(3127), - [anon_sym_boolean] = ACTIONS(3127), - [anon_sym_string] = ACTIONS(3127), - [anon_sym_symbol] = ACTIONS(3127), - [anon_sym_object] = ACTIONS(3127), - [anon_sym_abstract] = ACTIONS(3127), - [anon_sym_extends] = ACTIONS(3127), - [sym_html_comment] = ACTIONS(5), - }, - [913] = { - [sym_identifier] = ACTIONS(3131), - [anon_sym_export] = ACTIONS(3131), - [anon_sym_type] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3131), - [anon_sym_namespace] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_typeof] = ACTIONS(3131), - [anon_sym_import] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_RPAREN] = ACTIONS(3133), - [anon_sym_await] = ACTIONS(3131), - [anon_sym_COLON] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_RBRACK] = ACTIONS(3133), - [sym_glimmer_opening_tag] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3133), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_async] = ACTIONS(3131), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_EQ_GT] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_using] = ACTIONS(3131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_SLASH] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_void] = ACTIONS(3131), - [anon_sym_delete] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3133), - [sym_number] = ACTIONS(3133), - [sym_private_property_identifier] = ACTIONS(3133), - [sym_this] = ACTIONS(3131), - [sym_super] = ACTIONS(3131), - [sym_true] = ACTIONS(3131), - [sym_false] = ACTIONS(3131), - [sym_null] = ACTIONS(3131), - [sym_undefined] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_readonly] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3131), - [anon_sym_set] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_declare] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_private] = ACTIONS(3131), - [anon_sym_protected] = ACTIONS(3131), - [anon_sym_override] = ACTIONS(3131), - [anon_sym_module] = ACTIONS(3131), - [anon_sym_any] = ACTIONS(3131), - [anon_sym_number] = ACTIONS(3131), - [anon_sym_boolean] = ACTIONS(3131), - [anon_sym_string] = ACTIONS(3131), - [anon_sym_symbol] = ACTIONS(3131), - [anon_sym_object] = ACTIONS(3131), - [anon_sym_abstract] = ACTIONS(3131), - [anon_sym_extends] = ACTIONS(3131), - [sym_html_comment] = ACTIONS(5), - }, - [914] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3135), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -118792,65 +121925,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [915] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [912] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5378), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -118867,65 +122000,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [916] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [913] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -118942,65 +122075,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [917] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4534), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [914] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5355), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(3129), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119017,65 +122150,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [918] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3738), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [915] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [sym_jsx_identifier] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119092,65 +122225,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [919] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4432), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [916] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5467), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(3133), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119167,65 +122300,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [920] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4446), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [917] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(3149), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119242,65 +122375,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [921] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4494), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [918] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4348), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [sym_jsx_identifier] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119317,65 +122450,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [922] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [919] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119392,65 +122525,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [923] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [920] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3155), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119467,65 +122600,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [924] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [921] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119542,65 +122675,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [925] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [922] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119617,65 +122750,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [926] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [923] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119692,65 +122825,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [927] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [924] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119767,65 +122900,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [928] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [925] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5404), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119842,65 +122975,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [929] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [926] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119917,65 +123050,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [930] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4514), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [927] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5349), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(3169), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -119992,65 +123125,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [931] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [928] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -120067,65 +123200,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [932] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [929] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -120142,65 +123275,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [933] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [930] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -120217,952 +123350,1100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, + [931] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3652), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [932] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3646), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [933] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3600), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, [934] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4561), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5716), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3333), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, [935] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3784), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3391), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_DQUOTE] = ACTIONS(2275), [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, [936] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4791), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4584), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_DQUOTE] = ACTIONS(2275), [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, [937] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4791), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2860), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3889), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(3065), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, [938] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2876), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3885), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, [939] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3813), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3853), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, [940] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(5076), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(4232), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(4437), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, [941] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3819), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5430), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [942] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3820), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3493), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [943] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2921), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3320), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [944] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3828), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3519), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [945] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3171), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), - [sym_html_comment] = ACTIONS(5), - }, - [946] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3750), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4413), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -121179,508 +124460,730 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, + [946] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5948), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3623), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, [947] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3176), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1485), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), [sym_html_comment] = ACTIONS(5), }, [948] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2854), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5481), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [949] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2859), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5948), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3642), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym_html_comment] = ACTIONS(5), }, [950] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2857), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3658), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym_html_comment] = ACTIONS(5), }, [951] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3837), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3664), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym_html_comment] = ACTIONS(5), }, [952] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2876), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3661), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [953] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3635), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [954] = { + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3372), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, - [953] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3017), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [955] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4980), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -121697,730 +125200,582 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [954] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4444), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(220), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(220), - [anon_sym_number] = ACTIONS(220), - [anon_sym_boolean] = ACTIONS(220), - [anon_sym_string] = ACTIONS(220), - [anon_sym_symbol] = ACTIONS(220), - [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(218), - [anon_sym_unknown] = ACTIONS(220), - [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [955] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3201), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), - [sym_html_comment] = ACTIONS(5), - }, [956] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3168), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1563), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), [sym_html_comment] = ACTIONS(5), }, [957] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(1909), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1487), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), [sym_html_comment] = ACTIONS(5), }, [958] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(1939), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1538), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), [sym_html_comment] = ACTIONS(5), }, [959] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(1940), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3886), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, [960] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3170), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3900), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, [961] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3172), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(4885), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym_html_comment] = ACTIONS(5), }, [962] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(1910), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(1969), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), [sym_html_comment] = ACTIONS(5), }, [963] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3833), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4276), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -122438,803 +125793,803 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [964] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(1922), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3770), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, [965] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3191), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1536), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), [sym_html_comment] = ACTIONS(5), }, [966] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3192), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3339), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [967] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3210), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4264), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [968] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3211), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3765), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, [969] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1563), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3463), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, [970] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1564), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3825), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, [971] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(1923), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3339), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, [972] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1580), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3821), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, [973] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1581), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3913), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym_html_comment] = ACTIONS(5), }, [974] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3000), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5413), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -123252,1025 +126607,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [975] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3001), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4470), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, [976] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1586), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3632), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym_html_comment] = ACTIONS(5), }, [977] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4620), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(1587), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1611), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), [sym_html_comment] = ACTIONS(5), }, [978] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4620), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(1590), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3702), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym_html_comment] = ACTIONS(5), }, [979] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3226), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), - [sym_html_comment] = ACTIONS(5), - }, - [980] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1463), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), - [sym_html_comment] = ACTIONS(5), - }, - [981] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1464), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), - [sym_html_comment] = ACTIONS(5), - }, - [982] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1484), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), - [sym_html_comment] = ACTIONS(5), - }, - [983] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1487), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), - [sym_html_comment] = ACTIONS(5), - }, - [984] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(2019), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), - [sym_html_comment] = ACTIONS(5), - }, - [985] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1510), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), - [sym_html_comment] = ACTIONS(5), - }, - [986] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1512), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), - [sym_html_comment] = ACTIONS(5), - }, - [987] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1529), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), - [sym_html_comment] = ACTIONS(5), - }, - [988] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4541), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4507), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -124287,138 +126976,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [989] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4298), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [980] = { + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5055), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_DQUOTE] = ACTIONS(2275), [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, - [990] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4546), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [981] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3484), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -124435,212 +127124,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [991] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1531), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), - [sym_html_comment] = ACTIONS(5), - }, - [992] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(4094), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [982] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5970), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3762), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, - [993] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3906), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [983] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5410), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -124657,64 +127272,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [994] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2921), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [984] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5400), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -124731,1618 +127346,1544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [995] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3054), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [985] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3965), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [996] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3329), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), - [sym_html_comment] = ACTIONS(5), - }, - [997] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3330), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), - [sym_html_comment] = ACTIONS(5), - }, - [998] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3337), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), - [sym_html_comment] = ACTIONS(5), - }, - [999] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4651), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(3338), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), + [986] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5970), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3757), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, - [1000] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4651), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(3346), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), + [987] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5475), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1001] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(4011), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [988] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(1959), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), [sym_html_comment] = ACTIONS(5), }, - [1002] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(4393), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [989] = { + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3756), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, - [1003] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(4033), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [990] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(5235), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym_html_comment] = ACTIONS(5), }, - [1004] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(1892), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), + [991] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(1898), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), [sym_html_comment] = ACTIONS(5), }, - [1005] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2876), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [992] = { + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4449), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, - [1006] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3625), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [993] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1007] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3427), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), - [sym_html_comment] = ACTIONS(5), - }, - [1008] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3629), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [994] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5852), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3333), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1009] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3630), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [995] = { + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3752), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), + [sym_html_comment] = ACTIONS(5), + }, + [996] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3452), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1010] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2921), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [997] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(2013), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [sym_html_comment] = ACTIONS(5), + }, + [998] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3628), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [999] = { + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4578), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, - [1011] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3646), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1000] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5716), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3332), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), - [sym_html_comment] = ACTIONS(5), - }, - [1012] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3428), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), - [sym_html_comment] = ACTIONS(5), - }, - [1013] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(4058), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, - [1014] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2854), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1001] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3360), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1015] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2859), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1002] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3616), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [1003] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(1999), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [sym_html_comment] = ACTIONS(5), + }, + [1004] = { + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4585), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, - [1016] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4485), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1005] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5399), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -126359,360 +128900,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1017] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2857), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1006] = { + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3371), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, - [1018] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3666), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1007] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4191), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1019] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3251), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), + [1008] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(2095), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), [sym_html_comment] = ACTIONS(5), }, - [1020] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3260), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), + [1009] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(2020), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), [sym_html_comment] = ACTIONS(5), }, - [1021] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3889), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1010] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3619), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [1011] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3620), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [1012] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5852), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3332), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -126729,804 +129418,1026 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1022] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3268), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), + [1013] = { + [sym_import] = STATE(6008), + [sym_nested_identifier] = STATE(7193), + [sym_string] = STATE(3706), + [sym_formal_parameters] = STATE(7345), + [sym_nested_type_identifier] = STATE(3608), + [sym__type_query_member_expression_in_type_annotation] = STATE(3544), + [sym__type_query_call_expression_in_type_annotation] = STATE(3693), + [sym_type] = STATE(3750), + [sym_constructor_type] = STATE(3708), + [sym_primary_type] = STATE(3710), + [sym_template_literal_type] = STATE(3717), + [sym_infer_type] = STATE(3708), + [sym_conditional_type] = STATE(3717), + [sym_generic_type] = STATE(3717), + [sym_type_query] = STATE(3717), + [sym_index_type_query] = STATE(3717), + [sym_lookup_type] = STATE(3717), + [sym_literal_type] = STATE(3717), + [sym__number] = STATE(3711), + [sym_existential_type] = STATE(3717), + [sym_flow_maybe_type] = STATE(3717), + [sym_parenthesized_type] = STATE(3717), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(3717), + [sym_type_parameters] = STATE(7068), + [sym_array_type] = STATE(3717), + [sym_tuple_type] = STATE(3717), + [sym_readonly_type] = STATE(3708), + [sym_union_type] = STATE(3717), + [sym_intersection_type] = STATE(3717), + [sym_function_type] = STATE(3708), + [sym_identifier] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2963), + [sym_this] = ACTIONS(3167), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_infer] = ACTIONS(2977), + [anon_sym_keyof] = ACTIONS(2979), + [anon_sym_unique] = ACTIONS(2981), + [anon_sym_unknown] = ACTIONS(2959), + [anon_sym_never] = ACTIONS(2959), + [anon_sym_LBRACE_PIPE] = ACTIONS(2983), [sym_html_comment] = ACTIONS(5), }, - [1023] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3269), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), + [1014] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4551), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1024] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3282), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), + [1015] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3657), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym_html_comment] = ACTIONS(5), }, - [1025] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3782), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [1016] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(4758), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [1017] = { + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4447), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_DQUOTE] = ACTIONS(2275), [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, - [1026] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3469), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [1018] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(2055), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), [sym_html_comment] = ACTIONS(5), }, - [1027] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3456), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [1019] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(2037), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), [sym_html_comment] = ACTIONS(5), }, - [1028] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3475), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [1020] = { + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3360), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, - [1029] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4466), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1021] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3372), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1030] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4537), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1022] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3371), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1031] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2854), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1023] = { + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4509), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(222), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, - [1032] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2859), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1024] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(2054), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [sym_html_comment] = ACTIONS(5), + }, + [1025] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(2036), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [sym_html_comment] = ACTIONS(5), + }, + [1026] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5376), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -127543,64 +130454,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1033] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4476), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1027] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5358), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -127617,213 +130528,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1034] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3165), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), - [sym_html_comment] = ACTIONS(5), - }, - [1035] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3177), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [1028] = { + [sym_import] = STATE(5590), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7285), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3724), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3320), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(7056), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_typeof] = ACTIONS(3099), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(220), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3111), + [anon_sym_any] = ACTIONS(220), + [anon_sym_number] = ACTIONS(220), + [anon_sym_boolean] = ACTIONS(220), + [anon_sym_string] = ACTIONS(220), + [anon_sym_symbol] = ACTIONS(220), + [anon_sym_object] = ACTIONS(220), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_infer] = ACTIONS(3117), + [anon_sym_keyof] = ACTIONS(3119), + [anon_sym_unique] = ACTIONS(218), + [anon_sym_unknown] = ACTIONS(220), + [anon_sym_never] = ACTIONS(220), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, - [1036] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3737), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1029] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5538), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3332), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -127832,219 +130669,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1037] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(1941), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), - [sym_html_comment] = ACTIONS(5), - }, - [1038] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(4047), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), - [sym_html_comment] = ACTIONS(5), - }, - [1039] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4549), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1030] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5424), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -128061,65 +130750,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1040] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4553), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1031] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5538), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3333), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), @@ -128128,441 +130817,367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(220), [anon_sym_abstract] = ACTIONS(212), [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1041] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4562), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1032] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3320), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1042] = { - [sym_import] = STATE(5139), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5827), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2958), - [sym__type_query_call_expression_in_type_annotation] = STATE(3113), - [sym_type] = STATE(3203), - [sym_constructor_type] = STATE(3205), - [sym_primary_type] = STATE(3150), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [1033] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(4990), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_infer] = ACTIONS(1032), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym_html_comment] = ACTIONS(5), }, - [1043] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4567), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(3204), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), + [1034] = { + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1572), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), [sym_html_comment] = ACTIONS(5), }, - [1044] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2857), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1035] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4099), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1045] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5610), - [sym_string] = STATE(3160), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(3047), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4567), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(3146), - [sym_template_literal_type] = STATE(3195), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(3195), - [sym_generic_type] = STATE(3195), - [sym_type_query] = STATE(3195), - [sym_index_type_query] = STATE(3195), - [sym_lookup_type] = STATE(3195), - [sym_literal_type] = STATE(3195), - [sym__number] = STATE(3154), - [sym_existential_type] = STATE(3195), - [sym_flow_maybe_type] = STATE(3195), - [sym_parenthesized_type] = STATE(3195), - [sym_predefined_type] = STATE(3195), - [sym_object_type] = STATE(3195), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(3195), - [sym_tuple_type] = STATE(3195), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(3195), - [sym_intersection_type] = STATE(3195), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_typeof] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_number] = ACTIONS(1608), - [sym_this] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_undefined] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_any] = ACTIONS(1038), - [anon_sym_number] = ACTIONS(1038), - [anon_sym_boolean] = ACTIONS(1038), - [anon_sym_string] = ACTIONS(1038), - [anon_sym_symbol] = ACTIONS(1038), - [anon_sym_object] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(1034), - [anon_sym_unique] = ACTIONS(1036), - [anon_sym_unknown] = ACTIONS(1038), - [anon_sym_never] = ACTIONS(1038), - [anon_sym_LBRACE_PIPE] = ACTIONS(1040), - [sym_html_comment] = ACTIONS(5), - }, - [1046] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4434), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1036] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5852), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(5267), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(5377), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -128579,64 +131194,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1047] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2915), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1037] = { + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1571), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), + [sym_html_comment] = ACTIONS(5), + }, + [1038] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5428), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -128653,64 +131342,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1048] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3050), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1039] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(1982), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [sym_html_comment] = ACTIONS(5), + }, + [1040] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(1986), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [sym_html_comment] = ACTIONS(5), + }, + [1041] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5470), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -128727,212 +131564,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1049] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3019), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1042] = { + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1471), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), + [sym_html_comment] = ACTIONS(5), + }, + [1043] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5348), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1050] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3014), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1044] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5340), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1051] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(5076), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1045] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4178), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -128949,64 +131860,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1052] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(5076), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2860), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1046] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(2035), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [sym_html_comment] = ACTIONS(5), + }, + [1047] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4440), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -129023,138 +132008,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1053] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3961), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1048] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5379), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1054] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3738), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1049] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3835), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -129171,138 +132156,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1055] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1536), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), - [sym_html_comment] = ACTIONS(5), - }, - [1056] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3891), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1050] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5461), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -129319,212 +132230,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1057] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4563), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1051] = { + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1567), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), + [sym_html_comment] = ACTIONS(5), + }, + [1052] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5425), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1058] = { - [sym_import] = STATE(4606), - [sym_nested_identifier] = STATE(5653), - [sym_string] = STATE(1545), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1441), - [sym__type_query_member_expression_in_type_annotation] = STATE(1440), - [sym__type_query_call_expression_in_type_annotation] = STATE(1555), - [sym_type] = STATE(1559), - [sym_constructor_type] = STATE(1556), - [sym_primary_type] = STATE(1565), - [sym_template_literal_type] = STATE(1540), - [sym_infer_type] = STATE(1556), - [sym_conditional_type] = STATE(1540), - [sym_generic_type] = STATE(1540), - [sym_type_query] = STATE(1540), - [sym_index_type_query] = STATE(1540), - [sym_lookup_type] = STATE(1540), - [sym_literal_type] = STATE(1540), - [sym__number] = STATE(1566), - [sym_existential_type] = STATE(1540), - [sym_flow_maybe_type] = STATE(1540), - [sym_parenthesized_type] = STATE(1540), - [sym_predefined_type] = STATE(1540), - [sym_object_type] = STATE(1540), - [sym_type_parameters] = STATE(5295), - [sym_array_type] = STATE(1540), - [sym_tuple_type] = STATE(1540), - [sym_readonly_type] = STATE(1556), - [sym_union_type] = STATE(1540), - [sym_intersection_type] = STATE(1540), - [sym_function_type] = STATE(1556), - [sym_identifier] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_typeof] = ACTIONS(3075), + [1053] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(6082), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_number] = ACTIONS(3095), - [sym_this] = ACTIONS(3183), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_undefined] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3091), - [anon_sym_number] = ACTIONS(3091), - [anon_sym_boolean] = ACTIONS(3091), - [anon_sym_string] = ACTIONS(3091), - [anon_sym_symbol] = ACTIONS(3091), - [anon_sym_object] = ACTIONS(3091), - [anon_sym_abstract] = ACTIONS(3105), - [anon_sym_infer] = ACTIONS(3109), - [anon_sym_keyof] = ACTIONS(3111), - [anon_sym_unique] = ACTIONS(3113), - [anon_sym_unknown] = ACTIONS(3091), - [anon_sym_never] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), [sym_html_comment] = ACTIONS(5), }, - [1059] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3839), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1054] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(6082), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(1564), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), + [sym_html_comment] = ACTIONS(5), + }, + [1055] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4300), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -129541,64 +132600,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1060] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4536), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1056] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3391), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -129615,508 +132674,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1061] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(2014), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), - [sym_html_comment] = ACTIONS(5), - }, - [1062] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(2015), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), - [sym_html_comment] = ACTIONS(5), - }, - [1063] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(2025), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), - [sym_html_comment] = ACTIONS(5), - }, - [1064] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4781), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2027), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), - [sym_html_comment] = ACTIONS(5), - }, - [1065] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4781), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2030), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), - [sym_html_comment] = ACTIONS(5), - }, - [1066] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(1980), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), - [sym_html_comment] = ACTIONS(5), - }, - [1067] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3756), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1057] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3528), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -130133,508 +132748,878 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1068] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3879), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1058] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5368), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1069] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2915), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1059] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3360), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1070] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3618), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1060] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4082), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1071] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3619), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1061] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(4820), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [1062] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3974), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1072] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(5060), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1063] = { + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1507), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), + [sym_html_comment] = ACTIONS(5), + }, + [1064] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5478), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1073] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(5060), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2860), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1065] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3973), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(212), - [anon_sym_infer] = ACTIONS(214), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1074] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4496), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1066] = { + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1506), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), + [sym_html_comment] = ACTIONS(5), + }, + [1067] = { + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1466), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), + [sym_html_comment] = ACTIONS(5), + }, + [1068] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5729), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(2008), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [sym_html_comment] = ACTIONS(5), + }, + [1069] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3372), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -130651,64 +133636,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1075] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(3333), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1070] = { + [sym_import] = STATE(5835), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7505), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(1839), + [sym__type_query_call_expression_in_type_annotation] = STATE(2052), + [sym_type] = STATE(2058), + [sym_constructor_type] = STATE(2050), + [sym_primary_type] = STATE(2049), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(2050), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6395), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(2050), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(2050), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3087), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [sym_html_comment] = ACTIONS(5), + }, + [1071] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4348), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -130725,360 +133784,582 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1076] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(2102), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), - [sym_html_comment] = ACTIONS(5), - }, - [1077] = { - [sym_import] = STATE(4618), - [sym_nested_identifier] = STATE(5906), - [sym_string] = STATE(1947), - [sym_formal_parameters] = STATE(5651), - [sym_nested_type_identifier] = STATE(1799), - [sym__type_query_member_expression_in_type_annotation] = STATE(1800), - [sym__type_query_call_expression_in_type_annotation] = STATE(1928), - [sym_type] = STATE(2103), - [sym_constructor_type] = STATE(1929), - [sym_primary_type] = STATE(1931), - [sym_template_literal_type] = STATE(1936), - [sym_infer_type] = STATE(1929), - [sym_conditional_type] = STATE(1936), - [sym_generic_type] = STATE(1936), - [sym_type_query] = STATE(1936), - [sym_index_type_query] = STATE(1936), - [sym_lookup_type] = STATE(1936), - [sym_literal_type] = STATE(1936), - [sym__number] = STATE(1932), - [sym_existential_type] = STATE(1936), - [sym_flow_maybe_type] = STATE(1936), - [sym_parenthesized_type] = STATE(1936), - [sym_predefined_type] = STATE(1936), - [sym_object_type] = STATE(1936), - [sym_type_parameters] = STATE(5347), - [sym_array_type] = STATE(1936), - [sym_tuple_type] = STATE(1936), - [sym_readonly_type] = STATE(1929), - [sym_union_type] = STATE(1936), - [sym_intersection_type] = STATE(1936), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_typeof] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - [sym_this] = ACTIONS(3179), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_any] = ACTIONS(2949), - [anon_sym_number] = ACTIONS(2949), - [anon_sym_boolean] = ACTIONS(2949), - [anon_sym_string] = ACTIONS(2949), - [anon_sym_symbol] = ACTIONS(2949), - [anon_sym_object] = ACTIONS(2949), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_infer] = ACTIONS(2967), - [anon_sym_keyof] = ACTIONS(2969), - [anon_sym_unique] = ACTIONS(2971), - [anon_sym_unknown] = ACTIONS(2949), - [anon_sym_never] = ACTIONS(2949), - [anon_sym_LBRACE_PIPE] = ACTIONS(2973), - [sym_html_comment] = ACTIONS(5), - }, - [1078] = { - [sym_import] = STATE(4903), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5916), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3332), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(2915), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5386), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_typeof] = ACTIONS(3045), + [1072] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5472), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(3063), - [anon_sym_keyof] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), - [anon_sym_LBRACE_PIPE] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1079] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4477), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1073] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3339), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1080] = { - [sym_import] = STATE(5087), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(2846), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4482), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5435), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1074] = { + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1472), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), + [sym_html_comment] = ACTIONS(5), + }, + [1075] = { + [sym_import] = STATE(6053), + [sym_nested_identifier] = STATE(7237), + [sym_string] = STATE(1593), + [sym_formal_parameters] = STATE(7404), + [sym_nested_type_identifier] = STATE(1439), + [sym__type_query_member_expression_in_type_annotation] = STATE(1443), + [sym__type_query_call_expression_in_type_annotation] = STATE(1588), + [sym_type] = STATE(1465), + [sym_constructor_type] = STATE(1587), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1595), + [sym_infer_type] = STATE(1587), + [sym_conditional_type] = STATE(1595), + [sym_generic_type] = STATE(1595), + [sym_type_query] = STATE(1595), + [sym_index_type_query] = STATE(1595), + [sym_lookup_type] = STATE(1595), + [sym_literal_type] = STATE(1595), + [sym__number] = STATE(1585), + [sym_existential_type] = STATE(1595), + [sym_flow_maybe_type] = STATE(1595), + [sym_parenthesized_type] = STATE(1595), + [sym_predefined_type] = STATE(1595), + [sym_object_type] = STATE(1595), + [sym_type_parameters] = STATE(6995), + [sym_array_type] = STATE(1595), + [sym_tuple_type] = STATE(1595), + [sym_readonly_type] = STATE(1587), + [sym_union_type] = STATE(1595), + [sym_intersection_type] = STATE(1595), + [sym_function_type] = STATE(1587), + [sym_identifier] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_typeof] = ACTIONS(2991), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3007), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_number] = ACTIONS(3011), + [sym_this] = ACTIONS(3171), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [sym_undefined] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_any] = ACTIONS(3007), + [anon_sym_number] = ACTIONS(3007), + [anon_sym_boolean] = ACTIONS(3007), + [anon_sym_string] = ACTIONS(3007), + [anon_sym_symbol] = ACTIONS(3007), + [anon_sym_object] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_infer] = ACTIONS(3025), + [anon_sym_keyof] = ACTIONS(3027), + [anon_sym_unique] = ACTIONS(3029), + [anon_sym_unknown] = ACTIONS(3007), + [anon_sym_never] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3031), + [sym_html_comment] = ACTIONS(5), + }, + [1076] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(5044), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [1077] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3927), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), + [sym_html_comment] = ACTIONS(5), + }, + [1078] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7286), + [sym_string] = STATE(2073), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(1837), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5729), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(2027), + [sym_template_literal_type] = STATE(2005), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_type_query] = STATE(2005), + [sym_index_type_query] = STATE(2005), + [sym_lookup_type] = STATE(2005), + [sym_literal_type] = STATE(2005), + [sym__number] = STATE(2043), + [sym_existential_type] = STATE(2005), + [sym_flow_maybe_type] = STATE(2005), + [sym_parenthesized_type] = STATE(2005), + [sym_predefined_type] = STATE(2005), + [sym_object_type] = STATE(2005), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(2005), + [sym_tuple_type] = STATE(2005), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(2005), + [sym_intersection_type] = STATE(2005), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_typeof] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(3069), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_number] = ACTIONS(3073), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3077), + [sym_false] = ACTIONS(3077), + [sym_null] = ACTIONS(3077), + [sym_undefined] = ACTIONS(3077), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(3089), + [anon_sym_unique] = ACTIONS(3091), + [anon_sym_unknown] = ACTIONS(3069), + [anon_sym_never] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [sym_html_comment] = ACTIONS(5), + }, + [1079] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(5473), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), [anon_sym_AMP] = ACTIONS(741), [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), @@ -131095,863 +134376,715 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1081] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3425), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), - [sym_html_comment] = ACTIONS(5), - }, - [1082] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3426), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), - [sym_html_comment] = ACTIONS(5), - }, - [1083] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4542), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1080] = { + [sym_import] = STATE(6095), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7380), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3301), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3371), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6118), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(761), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_infer] = ACTIONS(214), + [anon_sym_keyof] = ACTIONS(216), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1084] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4545), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1081] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(4085), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1085] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4548), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1082] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3391), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1086] = { - [sym_import] = STATE(4753), - [sym_nested_identifier] = STATE(5707), - [sym_string] = STATE(2889), - [sym_formal_parameters] = STATE(5626), - [sym_nested_type_identifier] = STATE(2828), - [sym__type_query_member_expression_in_type_annotation] = STATE(3228), - [sym__type_query_call_expression_in_type_annotation] = STATE(2850), - [sym_type] = STATE(4556), - [sym_constructor_type] = STATE(2896), - [sym_primary_type] = STATE(2897), - [sym_template_literal_type] = STATE(2885), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2885), - [sym_generic_type] = STATE(2885), - [sym_type_query] = STATE(2885), - [sym_index_type_query] = STATE(2885), - [sym_lookup_type] = STATE(2885), - [sym_literal_type] = STATE(2885), - [sym__number] = STATE(2903), - [sym_existential_type] = STATE(2885), - [sym_flow_maybe_type] = STATE(2885), - [sym_parenthesized_type] = STATE(2885), - [sym_predefined_type] = STATE(2885), - [sym_object_type] = STATE(2885), - [sym_type_parameters] = STATE(5517), - [sym_array_type] = STATE(2885), - [sym_tuple_type] = STATE(2885), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2885), - [sym_intersection_type] = STATE(2885), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), + [1083] = { + [sym_import] = STATE(5775), + [sym_nested_identifier] = STATE(7381), + [sym_string] = STATE(3349), + [sym_formal_parameters] = STATE(7216), + [sym_nested_type_identifier] = STATE(3298), + [sym__type_query_member_expression_in_type_annotation] = STATE(3677), + [sym__type_query_call_expression_in_type_annotation] = STATE(3302), + [sym_type] = STATE(3964), + [sym_constructor_type] = STATE(3354), + [sym_primary_type] = STATE(3355), + [sym_template_literal_type] = STATE(3347), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(3347), + [sym_generic_type] = STATE(3347), + [sym_type_query] = STATE(3347), + [sym_index_type_query] = STATE(3347), + [sym_lookup_type] = STATE(3347), + [sym_literal_type] = STATE(3347), + [sym__number] = STATE(3356), + [sym_existential_type] = STATE(3347), + [sym_flow_maybe_type] = STATE(3347), + [sym_parenthesized_type] = STATE(3347), + [sym_predefined_type] = STATE(3347), + [sym_object_type] = STATE(3347), + [sym_type_parameters] = STATE(6660), + [sym_array_type] = STATE(3347), + [sym_tuple_type] = STATE(3347), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(3347), + [sym_intersection_type] = STATE(3347), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_typeof] = ACTIONS(1542), [anon_sym_import] = ACTIONS(133), [anon_sym_const] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), [anon_sym_void] = ACTIONS(220), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1518), - [sym_this] = ACTIONS(1520), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_number] = ACTIONS(1560), + [sym_this] = ACTIONS(1562), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(600), [anon_sym_any] = ACTIONS(220), [anon_sym_number] = ACTIONS(220), [anon_sym_boolean] = ACTIONS(220), [anon_sym_string] = ACTIONS(220), [anon_sym_symbol] = ACTIONS(220), [anon_sym_object] = ACTIONS(220), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_infer] = ACTIONS(606), + [anon_sym_keyof] = ACTIONS(608), [anon_sym_unique] = ACTIONS(218), [anon_sym_unknown] = ACTIONS(220), [anon_sym_never] = ACTIONS(220), [anon_sym_LBRACE_PIPE] = ACTIONS(222), [sym_html_comment] = ACTIONS(5), }, - [1087] = { - [sym_import] = STATE(4642), - [sym_nested_identifier] = STATE(5541), - [sym_string] = STATE(3272), - [sym_formal_parameters] = STATE(5632), - [sym_nested_type_identifier] = STATE(3198), - [sym__type_query_member_expression_in_type_annotation] = STATE(3138), - [sym__type_query_call_expression_in_type_annotation] = STATE(3223), - [sym_type] = STATE(3284), - [sym_constructor_type] = STATE(3280), - [sym_primary_type] = STATE(3281), - [sym_template_literal_type] = STATE(3257), - [sym_infer_type] = STATE(3280), - [sym_conditional_type] = STATE(3257), - [sym_generic_type] = STATE(3257), - [sym_type_query] = STATE(3257), - [sym_index_type_query] = STATE(3257), - [sym_lookup_type] = STATE(3257), - [sym_literal_type] = STATE(3257), - [sym__number] = STATE(3285), - [sym_existential_type] = STATE(3257), - [sym_flow_maybe_type] = STATE(3257), - [sym_parenthesized_type] = STATE(3257), - [sym_predefined_type] = STATE(3257), - [sym_object_type] = STATE(3257), - [sym_type_parameters] = STATE(5324), - [sym_array_type] = STATE(3257), - [sym_tuple_type] = STATE(3257), - [sym_readonly_type] = STATE(3280), - [sym_union_type] = STATE(3257), - [sym_intersection_type] = STATE(3257), - [sym_function_type] = STATE(3280), - [sym_identifier] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_typeof] = ACTIONS(2989), + [1084] = { + [sym_import] = STATE(5914), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3659), + [sym_formal_parameters] = STATE(7458), + [sym_nested_type_identifier] = STATE(3490), + [sym__type_query_member_expression_in_type_annotation] = STATE(3419), + [sym__type_query_call_expression_in_type_annotation] = STATE(3567), + [sym_type] = STATE(3929), + [sym_constructor_type] = STATE(3638), + [sym_primary_type] = STATE(3626), + [sym_template_literal_type] = STATE(3662), + [sym_infer_type] = STATE(3638), + [sym_conditional_type] = STATE(3662), + [sym_generic_type] = STATE(3662), + [sym_type_query] = STATE(3662), + [sym_index_type_query] = STATE(3662), + [sym_lookup_type] = STATE(3662), + [sym_literal_type] = STATE(3662), + [sym__number] = STATE(3602), + [sym_existential_type] = STATE(3662), + [sym_flow_maybe_type] = STATE(3662), + [sym_parenthesized_type] = STATE(3662), + [sym_predefined_type] = STATE(3662), + [sym_object_type] = STATE(3662), + [sym_type_parameters] = STATE(6874), + [sym_array_type] = STATE(3662), + [sym_tuple_type] = STATE(3662), + [sym_readonly_type] = STATE(3638), + [sym_union_type] = STATE(3662), + [sym_intersection_type] = STATE(3662), + [sym_function_type] = STATE(3638), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_typeof] = ACTIONS(1578), [anon_sym_import] = ACTIONS(133), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(3009), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_number] = ACTIONS(3013), - [sym_this] = ACTIONS(3187), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_object] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(3023), - [anon_sym_infer] = ACTIONS(3027), - [anon_sym_keyof] = ACTIONS(3029), - [anon_sym_unique] = ACTIONS(3031), - [anon_sym_unknown] = ACTIONS(3009), - [anon_sym_never] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_const] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_void] = ACTIONS(1024), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1596), + [sym_number] = ACTIONS(1598), + [sym_this] = ACTIONS(1600), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_undefined] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1024), + [anon_sym_number] = ACTIONS(1024), + [anon_sym_boolean] = ACTIONS(1024), + [anon_sym_string] = ACTIONS(1024), + [anon_sym_symbol] = ACTIONS(1024), + [anon_sym_object] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_infer] = ACTIONS(1018), + [anon_sym_keyof] = ACTIONS(1020), + [anon_sym_unique] = ACTIONS(1022), + [anon_sym_unknown] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_LBRACE_PIPE] = ACTIONS(1026), [sym_html_comment] = ACTIONS(5), }, - [1088] = { - [sym_export_statement] = STATE(3911), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(4835), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4835), - [sym_pair] = STATE(4835), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3911), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3911), - [sym_property_signature] = STATE(3911), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3911), - [sym_index_signature] = STATE(3911), - [aux_sym_export_statement_repeat1] = STATE(4448), - [aux_sym_object_repeat1] = STATE(4839), - [aux_sym_object_pattern_repeat1] = STATE(4759), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3213), + [1085] = { + [sym_export_statement] = STATE(4277), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(5880), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5880), + [sym_pair] = STATE(5880), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4277), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4277), + [sym_property_signature] = STATE(4277), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4277), + [sym_index_signature] = STATE(4277), + [aux_sym_export_statement_repeat1] = STATE(2614), + [aux_sym_object_repeat1] = STATE(5879), + [aux_sym_object_pattern_repeat1] = STATE(5650), + [sym_identifier] = ACTIONS(3181), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3181), + [anon_sym_namespace] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_let] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(3199), + [anon_sym_new] = ACTIONS(3201), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_any] = ACTIONS(3193), - [anon_sym_number] = ACTIONS(3193), - [anon_sym_boolean] = ACTIONS(3193), - [anon_sym_string] = ACTIONS(3193), - [anon_sym_symbol] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3209), + [anon_sym_get] = ACTIONS(3211), + [anon_sym_set] = ACTIONS(3211), + [anon_sym_declare] = ACTIONS(3181), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_private] = ACTIONS(3213), + [anon_sym_protected] = ACTIONS(3213), + [anon_sym_override] = ACTIONS(3215), + [anon_sym_module] = ACTIONS(3181), + [anon_sym_any] = ACTIONS(3181), + [anon_sym_number] = ACTIONS(3181), + [anon_sym_boolean] = ACTIONS(3181), + [anon_sym_string] = ACTIONS(3181), + [anon_sym_symbol] = ACTIONS(3181), + [anon_sym_object] = ACTIONS(3181), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_PIPE_RBRACE] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1089] = { - [sym_export_statement] = STATE(3830), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(4835), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4835), - [sym_pair] = STATE(4835), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3830), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3830), - [sym_property_signature] = STATE(3830), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3830), - [sym_index_signature] = STATE(3830), - [aux_sym_export_statement_repeat1] = STATE(4448), - [aux_sym_object_repeat1] = STATE(4839), - [aux_sym_object_pattern_repeat1] = STATE(4759), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3213), + [1086] = { + [sym_export_statement] = STATE(4277), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(5880), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5880), + [sym_pair] = STATE(5880), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4277), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4277), + [sym_property_signature] = STATE(4277), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4277), + [sym_index_signature] = STATE(4277), + [aux_sym_export_statement_repeat1] = STATE(2614), + [aux_sym_object_repeat1] = STATE(5879), + [aux_sym_object_pattern_repeat1] = STATE(5650), + [sym_identifier] = ACTIONS(3221), + [anon_sym_export] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3229), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_any] = ACTIONS(3193), - [anon_sym_number] = ACTIONS(3193), - [anon_sym_boolean] = ACTIONS(3193), - [anon_sym_string] = ACTIONS(3193), - [anon_sym_symbol] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3233), + [anon_sym_get] = ACTIONS(3235), + [anon_sym_set] = ACTIONS(3235), + [anon_sym_declare] = ACTIONS(3221), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_module] = ACTIONS(3221), + [anon_sym_any] = ACTIONS(3221), + [anon_sym_number] = ACTIONS(3221), + [anon_sym_boolean] = ACTIONS(3221), + [anon_sym_string] = ACTIONS(3221), + [anon_sym_symbol] = ACTIONS(3221), + [anon_sym_object] = ACTIONS(3221), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_PIPE_RBRACE] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1090] = { - [sym_export_statement] = STATE(3830), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(4835), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4835), - [sym_pair] = STATE(4835), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3830), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3830), - [sym_property_signature] = STATE(3830), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3830), - [sym_index_signature] = STATE(3830), - [aux_sym_export_statement_repeat1] = STATE(4448), - [aux_sym_object_repeat1] = STATE(4839), - [aux_sym_object_pattern_repeat1] = STATE(4759), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3249), + [1087] = { + [sym_export_statement] = STATE(4277), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(5880), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5880), + [sym_pair] = STATE(5880), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4277), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4277), + [sym_property_signature] = STATE(4277), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4277), + [sym_index_signature] = STATE(4277), + [aux_sym_export_statement_repeat1] = STATE(2614), + [aux_sym_object_repeat1] = STATE(5879), + [aux_sym_object_pattern_repeat1] = STATE(5650), + [sym_identifier] = ACTIONS(3181), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3181), + [anon_sym_namespace] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(3199), + [anon_sym_new] = ACTIONS(3201), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_readonly] = ACTIONS(3253), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3259), - [anon_sym_module] = ACTIONS(3241), - [anon_sym_any] = ACTIONS(3241), - [anon_sym_number] = ACTIONS(3241), - [anon_sym_boolean] = ACTIONS(3241), - [anon_sym_string] = ACTIONS(3241), - [anon_sym_symbol] = ACTIONS(3241), - [anon_sym_object] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3209), + [anon_sym_get] = ACTIONS(3211), + [anon_sym_set] = ACTIONS(3211), + [anon_sym_declare] = ACTIONS(3181), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_private] = ACTIONS(3213), + [anon_sym_protected] = ACTIONS(3213), + [anon_sym_override] = ACTIONS(3215), + [anon_sym_module] = ACTIONS(3181), + [anon_sym_any] = ACTIONS(3181), + [anon_sym_number] = ACTIONS(3181), + [anon_sym_boolean] = ACTIONS(3181), + [anon_sym_string] = ACTIONS(3181), + [anon_sym_symbol] = ACTIONS(3181), + [anon_sym_object] = ACTIONS(3181), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_PIPE_RBRACE] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1091] = { - [sym_export_statement] = STATE(3830), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(4835), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4835), - [sym_pair] = STATE(4835), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3830), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3830), - [sym_property_signature] = STATE(3830), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3830), - [sym_index_signature] = STATE(3830), - [aux_sym_export_statement_repeat1] = STATE(4448), - [aux_sym_object_repeat1] = STATE(4839), - [aux_sym_object_pattern_repeat1] = STATE(4759), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3261), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3249), + [1088] = { + [sym_export_statement] = STATE(4277), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(5648), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5648), + [sym_pair] = STATE(5648), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4277), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4277), + [sym_property_signature] = STATE(4277), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4277), + [sym_index_signature] = STATE(4277), + [aux_sym_export_statement_repeat1] = STATE(2614), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5650), + [sym_identifier] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3251), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_readonly] = ACTIONS(3253), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3259), - [anon_sym_module] = ACTIONS(3241), - [anon_sym_any] = ACTIONS(3241), - [anon_sym_number] = ACTIONS(3241), - [anon_sym_boolean] = ACTIONS(3241), - [anon_sym_string] = ACTIONS(3241), - [anon_sym_symbol] = ACTIONS(3241), - [anon_sym_object] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3253), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3257), + [anon_sym_set] = ACTIONS(3257), + [anon_sym_declare] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3261), + [anon_sym_module] = ACTIONS(3243), + [anon_sym_any] = ACTIONS(3243), + [anon_sym_number] = ACTIONS(3243), + [anon_sym_boolean] = ACTIONS(3243), + [anon_sym_string] = ACTIONS(3243), + [anon_sym_symbol] = ACTIONS(3243), + [anon_sym_object] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_PIPE_RBRACE] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1092] = { - [sym_export_statement] = STATE(3830), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(4603), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3830), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3830), - [sym_property_signature] = STATE(3830), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3830), - [sym_index_signature] = STATE(3830), - [aux_sym_export_statement_repeat1] = STATE(4448), - [aux_sym_object_repeat1] = STATE(4682), - [aux_sym_object_pattern_repeat1] = STATE(4759), + [1089] = { + [sym_export_statement] = STATE(4277), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(5880), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5880), + [sym_pair] = STATE(5880), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4277), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4277), + [sym_property_signature] = STATE(4277), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4277), + [sym_index_signature] = STATE(4277), + [aux_sym_export_statement_repeat1] = STATE(2614), + [aux_sym_object_repeat1] = STATE(5879), + [aux_sym_object_pattern_repeat1] = STATE(5650), [sym_identifier] = ACTIONS(3263), [anon_sym_export] = ACTIONS(3265), - [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3185), [anon_sym_type] = ACTIONS(3263), [anon_sym_namespace] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), [anon_sym_RBRACE] = ACTIONS(3267), [anon_sym_let] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), [anon_sym_async] = ACTIONS(3269), [anon_sym_new] = ACTIONS(3271), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(3273), [anon_sym_readonly] = ACTIONS(3275), @@ -131969,277 +135102,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(3263), [anon_sym_symbol] = ACTIONS(3263), [anon_sym_object] = ACTIONS(3263), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_PIPE_RBRACE] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1093] = { - [sym_export_statement] = STATE(3830), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(4835), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4835), - [sym_pair] = STATE(4835), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3830), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3830), - [sym_property_signature] = STATE(3830), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3830), - [sym_index_signature] = STATE(3830), - [aux_sym_export_statement_repeat1] = STATE(4448), - [aux_sym_object_repeat1] = STATE(4839), - [aux_sym_object_pattern_repeat1] = STATE(4759), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_any] = ACTIONS(3193), - [anon_sym_number] = ACTIONS(3193), - [anon_sym_boolean] = ACTIONS(3193), - [anon_sym_string] = ACTIONS(3193), - [anon_sym_symbol] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3239), - [sym_html_comment] = ACTIONS(5), - }, - [1094] = { - [sym_export_statement] = STATE(3830), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(4835), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4835), - [sym_pair] = STATE(4835), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3830), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3830), - [sym_property_signature] = STATE(3830), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3830), - [sym_index_signature] = STATE(3830), - [aux_sym_export_statement_repeat1] = STATE(4448), - [aux_sym_object_repeat1] = STATE(4839), - [aux_sym_object_pattern_repeat1] = STATE(4759), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_any] = ACTIONS(3193), - [anon_sym_number] = ACTIONS(3193), - [anon_sym_boolean] = ACTIONS(3193), - [anon_sym_string] = ACTIONS(3193), - [anon_sym_symbol] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3239), - [sym_html_comment] = ACTIONS(5), - }, - [1095] = { - [sym_export_statement] = STATE(3830), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(4835), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4835), - [sym_pair] = STATE(4835), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3830), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3830), - [sym_property_signature] = STATE(3830), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3830), - [sym_index_signature] = STATE(3830), - [aux_sym_export_statement_repeat1] = STATE(4448), - [aux_sym_object_repeat1] = STATE(4839), - [aux_sym_object_pattern_repeat1] = STATE(4759), - [sym_identifier] = ACTIONS(3287), - [anon_sym_export] = ACTIONS(3289), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_namespace] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3301), - [anon_sym_set] = ACTIONS(3301), - [anon_sym_declare] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3303), - [anon_sym_private] = ACTIONS(3303), - [anon_sym_protected] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3305), - [anon_sym_module] = ACTIONS(3287), - [anon_sym_any] = ACTIONS(3287), - [anon_sym_number] = ACTIONS(3287), - [anon_sym_boolean] = ACTIONS(3287), - [anon_sym_string] = ACTIONS(3287), - [anon_sym_symbol] = ACTIONS(3287), - [anon_sym_object] = ACTIONS(3287), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3239), - [sym_html_comment] = ACTIONS(5), - }, - [1096] = { - [sym_export_statement] = STATE(3830), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(4603), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3830), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3830), - [sym_property_signature] = STATE(3830), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3830), - [sym_index_signature] = STATE(3830), - [aux_sym_export_statement_repeat1] = STATE(4448), - [aux_sym_object_repeat1] = STATE(4682), - [aux_sym_object_pattern_repeat1] = STATE(4759), + [1090] = { + [sym_export_statement] = STATE(4277), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(5880), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5880), + [sym_pair] = STATE(5880), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4277), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4277), + [sym_property_signature] = STATE(4277), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4277), + [sym_index_signature] = STATE(4277), + [aux_sym_export_statement_repeat1] = STATE(2614), + [aux_sym_object_repeat1] = STATE(5879), + [aux_sym_object_pattern_repeat1] = STATE(5650), [sym_identifier] = ACTIONS(3263), [anon_sym_export] = ACTIONS(3265), - [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3185), [anon_sym_type] = ACTIONS(3263), [anon_sym_namespace] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3283), [anon_sym_let] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), [anon_sym_async] = ACTIONS(3269), [anon_sym_new] = ACTIONS(3271), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(3273), [anon_sym_readonly] = ACTIONS(3275), @@ -132257,236 +135174,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(3263), [anon_sym_symbol] = ACTIONS(3263), [anon_sym_object] = ACTIONS(3263), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_PIPE_RBRACE] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1097] = { - [sym_export_statement] = STATE(3830), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(4835), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4835), - [sym_pair] = STATE(4835), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3830), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3830), - [sym_property_signature] = STATE(3830), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3830), - [sym_index_signature] = STATE(3830), - [aux_sym_export_statement_repeat1] = STATE(4448), - [aux_sym_object_repeat1] = STATE(4839), - [aux_sym_object_pattern_repeat1] = STATE(4759), - [sym_identifier] = ACTIONS(3309), - [anon_sym_export] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3315), + [1091] = { + [sym_export_statement] = STATE(4277), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(5880), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5880), + [sym_pair] = STATE(5880), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4277), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4277), + [sym_property_signature] = STATE(4277), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4277), + [sym_index_signature] = STATE(4277), + [aux_sym_export_statement_repeat1] = STATE(2614), + [aux_sym_object_repeat1] = STATE(5879), + [aux_sym_object_pattern_repeat1] = STATE(5650), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3291), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3321), - [anon_sym_set] = ACTIONS(3321), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3309), - [anon_sym_any] = ACTIONS(3309), - [anon_sym_number] = ACTIONS(3309), - [anon_sym_boolean] = ACTIONS(3309), - [anon_sym_string] = ACTIONS(3309), - [anon_sym_symbol] = ACTIONS(3309), - [anon_sym_object] = ACTIONS(3309), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_PIPE_RBRACE] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1098] = { - [sym_export_statement] = STATE(3830), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(4835), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4835), - [sym_pair] = STATE(4835), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3830), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3830), - [sym_property_signature] = STATE(3830), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3830), - [sym_index_signature] = STATE(3830), - [aux_sym_export_statement_repeat1] = STATE(4448), - [aux_sym_object_repeat1] = STATE(4839), - [aux_sym_object_pattern_repeat1] = STATE(4759), - [sym_identifier] = ACTIONS(3287), - [anon_sym_export] = ACTIONS(3289), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_namespace] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3295), + [1092] = { + [sym_export_statement] = STATE(4277), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(5880), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5880), + [sym_pair] = STATE(5880), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4277), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4277), + [sym_property_signature] = STATE(4277), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4277), + [sym_index_signature] = STATE(4277), + [aux_sym_export_statement_repeat1] = STATE(2614), + [aux_sym_object_repeat1] = STATE(5879), + [aux_sym_object_pattern_repeat1] = STATE(5650), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3291), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3301), - [anon_sym_set] = ACTIONS(3301), - [anon_sym_declare] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3303), - [anon_sym_private] = ACTIONS(3303), - [anon_sym_protected] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3305), - [anon_sym_module] = ACTIONS(3287), - [anon_sym_any] = ACTIONS(3287), - [anon_sym_number] = ACTIONS(3287), - [anon_sym_boolean] = ACTIONS(3287), - [anon_sym_string] = ACTIONS(3287), - [anon_sym_symbol] = ACTIONS(3287), - [anon_sym_object] = ACTIONS(3287), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_PIPE_RBRACE] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1099] = { - [sym_export_statement] = STATE(3830), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(4861), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(4835), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(4861), - [sym_method_definition] = STATE(4835), - [sym_pair] = STATE(4835), - [sym_pair_pattern] = STATE(4861), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3830), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3830), - [sym_property_signature] = STATE(3830), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3830), - [sym_index_signature] = STATE(3830), - [aux_sym_export_statement_repeat1] = STATE(4448), - [aux_sym_object_repeat1] = STATE(4839), - [aux_sym_object_pattern_repeat1] = STATE(4759), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3249), + [1093] = { + [sym_export_statement] = STATE(4277), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(5880), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5880), + [sym_pair] = STATE(5880), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4277), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4277), + [sym_property_signature] = STATE(4277), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4277), + [sym_index_signature] = STATE(4277), + [aux_sym_export_statement_repeat1] = STATE(2614), + [aux_sym_object_repeat1] = STATE(5879), + [aux_sym_object_pattern_repeat1] = STATE(5650), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3291), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_readonly] = ACTIONS(3253), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3259), - [anon_sym_module] = ACTIONS(3241), - [anon_sym_any] = ACTIONS(3241), - [anon_sym_number] = ACTIONS(3241), - [anon_sym_boolean] = ACTIONS(3241), - [anon_sym_string] = ACTIONS(3241), - [anon_sym_symbol] = ACTIONS(3241), - [anon_sym_object] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_PIPE_RBRACE] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_PIPE_RBRACE] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1100] = { - [sym_nested_identifier] = STATE(214), - [sym_string] = STATE(213), - [sym__module] = STATE(247), - [aux_sym_object_repeat1] = STATE(4671), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(3329), + [1094] = { + [sym_export_statement] = STATE(4277), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(5880), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5880), + [sym_pair] = STATE(5880), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4277), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4277), + [sym_property_signature] = STATE(4277), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4277), + [sym_index_signature] = STATE(4277), + [aux_sym_export_statement_repeat1] = STATE(2614), + [aux_sym_object_repeat1] = STATE(5879), + [aux_sym_object_pattern_repeat1] = STATE(5650), + [sym_identifier] = ACTIONS(3181), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3181), + [anon_sym_namespace] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(3199), + [anon_sym_new] = ACTIONS(3201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3209), + [anon_sym_get] = ACTIONS(3211), + [anon_sym_set] = ACTIONS(3211), + [anon_sym_declare] = ACTIONS(3181), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_private] = ACTIONS(3213), + [anon_sym_protected] = ACTIONS(3213), + [anon_sym_override] = ACTIONS(3215), + [anon_sym_module] = ACTIONS(3181), + [anon_sym_any] = ACTIONS(3181), + [anon_sym_number] = ACTIONS(3181), + [anon_sym_boolean] = ACTIONS(3181), + [anon_sym_string] = ACTIONS(3181), + [anon_sym_symbol] = ACTIONS(3181), + [anon_sym_object] = ACTIONS(3181), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_PIPE_RBRACE] = ACTIONS(3219), + [sym_html_comment] = ACTIONS(5), + }, + [1095] = { + [sym_export_statement] = STATE(4284), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(5880), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5880), + [sym_pair] = STATE(5880), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4284), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4284), + [sym_property_signature] = STATE(4284), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4284), + [sym_index_signature] = STATE(4284), + [aux_sym_export_statement_repeat1] = STATE(2614), + [aux_sym_object_repeat1] = STATE(5879), + [aux_sym_object_pattern_repeat1] = STATE(5650), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_PIPE_RBRACE] = ACTIONS(3313), + [sym_html_comment] = ACTIONS(5), + }, + [1096] = { + [sym_export_statement] = STATE(4277), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(5647), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(5648), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(5647), + [sym_method_definition] = STATE(5648), + [sym_pair] = STATE(5648), + [sym_pair_pattern] = STATE(5647), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4277), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4277), + [sym_property_signature] = STATE(4277), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4277), + [sym_index_signature] = STATE(4277), + [aux_sym_export_statement_repeat1] = STATE(2614), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5650), + [sym_identifier] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(3253), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3257), + [anon_sym_set] = ACTIONS(3257), + [anon_sym_declare] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3261), + [anon_sym_module] = ACTIONS(3243), + [anon_sym_any] = ACTIONS(3243), + [anon_sym_number] = ACTIONS(3243), + [anon_sym_boolean] = ACTIONS(3243), + [anon_sym_string] = ACTIONS(3243), + [anon_sym_symbol] = ACTIONS(3243), + [anon_sym_object] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_PIPE_RBRACE] = ACTIONS(3219), + [sym_html_comment] = ACTIONS(5), + }, + [1097] = { + [sym_variable_declarator] = STATE(5344), + [sym_object_pattern] = STATE(3986), + [sym_array_pattern] = STATE(3986), + [sym__destructuring_pattern] = STATE(3986), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(3317), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3319), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_BANG] = ACTIONS(122), @@ -132494,11 +135629,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(3321), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3333), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132548,18 +135681,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1101] = { - [sym_variable_declarator] = STATE(4506), - [sym_object_pattern] = STATE(3661), - [sym_array_pattern] = STATE(3661), - [sym__destructuring_pattern] = STATE(3661), - [aux_sym_object_repeat1] = STATE(4671), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(3335), + [1098] = { + [sym_nested_identifier] = STATE(212), + [sym_string] = STATE(210), + [sym__module] = STATE(219), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(3323), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_BANG] = ACTIONS(122), @@ -132567,9 +135698,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3327), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132619,12 +135752,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1102] = { - [sym_nested_identifier] = STATE(214), - [sym_string] = STATE(213), - [sym__module] = STATE(247), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), + [1099] = { + [sym_nested_identifier] = STATE(706), + [sym_string] = STATE(721), + [sym__module] = STATE(758), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), [sym_identifier] = ACTIONS(3329), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), @@ -132639,8 +135772,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132690,28 +135823,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1103] = { - [sym_variable_declarator] = STATE(4506), - [sym_object_pattern] = STATE(3661), - [sym_array_pattern] = STATE(3661), - [sym__destructuring_pattern] = STATE(3661), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(3335), + [1100] = { + [sym_nested_identifier] = STATE(706), + [sym_string] = STATE(721), + [sym__module] = STATE(758), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(3329), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132761,13 +135894,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1104] = { - [sym_nested_identifier] = STATE(711), - [sym_string] = STATE(741), - [sym__module] = STATE(825), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(3341), + [1101] = { + [sym_nested_identifier] = STATE(706), + [sym_string] = STATE(721), + [sym__module] = STATE(758), + [aux_sym_object_repeat1] = STATE(5988), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(3329), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), @@ -132781,8 +135914,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132832,28 +135965,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1105] = { - [sym_nested_identifier] = STATE(711), - [sym_string] = STATE(741), - [sym__module] = STATE(825), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(3341), + [1102] = { + [sym_variable_declarator] = STATE(5344), + [sym_object_pattern] = STATE(3986), + [sym_array_pattern] = STATE(3986), + [sym__destructuring_pattern] = STATE(3986), + [aux_sym_object_repeat1] = STATE(5988), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(3317), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3319), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(3321), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132903,13 +136036,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1106] = { - [sym_nested_identifier] = STATE(214), - [sym_string] = STATE(213), - [sym__module] = STATE(247), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(3329), + [1103] = { + [sym_nested_identifier] = STATE(212), + [sym_string] = STATE(210), + [sym__module] = STATE(219), + [aux_sym_object_repeat1] = STATE(5988), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(3323), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), @@ -132923,8 +136056,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3327), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -132974,28 +136107,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1107] = { - [sym_nested_identifier] = STATE(711), - [sym_string] = STATE(741), - [sym__module] = STATE(825), - [aux_sym_object_repeat1] = STATE(4671), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(3341), + [1104] = { + [sym_variable_declarator] = STATE(5344), + [sym_object_pattern] = STATE(3986), + [sym_array_pattern] = STATE(3986), + [sym__destructuring_pattern] = STATE(3986), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(3317), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3319), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(3321), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -133045,28 +136178,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1108] = { - [sym_variable_declarator] = STATE(4506), - [sym_object_pattern] = STATE(3661), - [sym_array_pattern] = STATE(3661), - [sym__destructuring_pattern] = STATE(3661), - [aux_sym_object_repeat1] = STATE(5156), - [aux_sym_object_pattern_repeat1] = STATE(4672), - [sym_identifier] = ACTIONS(3335), + [1105] = { + [sym_nested_identifier] = STATE(212), + [sym_string] = STATE(210), + [sym__module] = STATE(219), + [aux_sym_object_repeat1] = STATE(5848), + [aux_sym_object_pattern_repeat1] = STATE(5989), + [sym_identifier] = ACTIONS(3323), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(696), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2239), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3327), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -133116,28 +136249,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1109] = { - [sym_nested_identifier] = STATE(1486), - [sym_string] = STATE(1513), - [sym__module] = STATE(1710), - [sym_identifier] = ACTIONS(3343), + [1106] = { + [sym_nested_identifier] = STATE(1603), + [sym_string] = STATE(1602), + [sym__module] = STATE(1712), + [sym_identifier] = ACTIONS(3331), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(853), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_RPAREN] = ACTIONS(853), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_RBRACK] = ACTIONS(853), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(229), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -133180,28 +136313,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_QMARK] = ACTIONS(855), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1110] = { - [sym_nested_identifier] = STATE(1486), - [sym_string] = STATE(1513), - [sym__module] = STATE(1710), - [sym_identifier] = ACTIONS(3343), + [1107] = { + [sym_nested_identifier] = STATE(1603), + [sym_string] = STATE(1602), + [sym__module] = STATE(1712), + [sym_identifier] = ACTIONS(3331), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_RBRACE] = ACTIONS(227), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(227), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(847), + [anon_sym_COLON] = ACTIONS(227), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_RBRACK] = ACTIONS(227), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_DQUOTE] = ACTIONS(150), @@ -133249,33 +136382,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), - [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(793), [anon_sym_satisfies] = ACTIONS(122), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1111] = { - [sym_nested_identifier] = STATE(1486), - [sym_string] = STATE(1513), - [sym__module] = STATE(1710), - [sym_identifier] = ACTIONS(3343), + [1108] = { + [sym_nested_identifier] = STATE(1603), + [sym_string] = STATE(1602), + [sym__module] = STATE(1712), + [sym_identifier] = ACTIONS(3331), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(224), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(128), [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(227), + [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -133323,81 +136456,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1112] = { - [sym_export_statement] = STATE(3786), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(5227), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(5214), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(5227), - [sym_method_definition] = STATE(5214), - [sym_pair] = STATE(5214), - [sym_pair_pattern] = STATE(5227), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3786), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3786), - [sym_property_signature] = STATE(3786), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3786), - [sym_index_signature] = STATE(3786), - [aux_sym_export_statement_repeat1] = STATE(4448), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3345), - [anon_sym_any] = ACTIONS(3345), - [anon_sym_number] = ACTIONS(3345), - [anon_sym_boolean] = ACTIONS(3345), - [anon_sym_string] = ACTIONS(3345), - [anon_sym_symbol] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3229), + [1109] = { + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_COMMA] = ACTIONS(3335), + [anon_sym_typeof] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3335), + [anon_sym_await] = ACTIONS(3333), + [anon_sym_yield] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_RBRACK] = ACTIONS(3335), + [sym_glimmer_opening_tag] = ACTIONS(3335), + [anon_sym_DOT] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3335), + [anon_sym_SQUOTE] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_async] = ACTIONS(3333), + [anon_sym_function] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3335), + [anon_sym_AMP] = ACTIONS(3335), + [anon_sym_PIPE] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3335), + [anon_sym_void] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3335), + [anon_sym_DASH_DASH] = ACTIONS(3335), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3335), + [sym_number] = ACTIONS(3335), + [sym_private_property_identifier] = ACTIONS(3335), + [sym_this] = ACTIONS(3333), + [sym_super] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_null] = ACTIONS(3333), + [sym_undefined] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_readonly] = ACTIONS(3333), + [anon_sym_get] = ACTIONS(3333), + [anon_sym_set] = ACTIONS(3333), + [anon_sym_QMARK] = ACTIONS(3335), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3333), + [anon_sym_private] = ACTIONS(3333), + [anon_sym_protected] = ACTIONS(3333), + [anon_sym_override] = ACTIONS(3333), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_extends] = ACTIONS(3333), [sym_html_comment] = ACTIONS(5), }, - [1113] = { - [sym_nested_identifier] = STATE(1486), - [sym_string] = STATE(1513), - [sym__module] = STATE(1710), - [sym_identifier] = ACTIONS(3343), + [1110] = { + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3337), + [anon_sym_type] = ACTIONS(3337), + [anon_sym_namespace] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3339), + [anon_sym_COMMA] = ACTIONS(3339), + [anon_sym_typeof] = ACTIONS(3337), + [anon_sym_import] = ACTIONS(3337), + [anon_sym_let] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_await] = ACTIONS(3337), + [anon_sym_yield] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_RBRACK] = ACTIONS(3339), + [sym_glimmer_opening_tag] = ACTIONS(3339), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3337), + [anon_sym_async] = ACTIONS(3337), + [anon_sym_function] = ACTIONS(3337), + [anon_sym_new] = ACTIONS(3337), + [anon_sym_using] = ACTIONS(3337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3339), + [anon_sym_AMP] = ACTIONS(3339), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3339), + [anon_sym_void] = ACTIONS(3337), + [anon_sym_delete] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3339), + [anon_sym_DASH_DASH] = ACTIONS(3339), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3339), + [sym_number] = ACTIONS(3339), + [sym_private_property_identifier] = ACTIONS(3339), + [sym_this] = ACTIONS(3337), + [sym_super] = ACTIONS(3337), + [sym_true] = ACTIONS(3337), + [sym_false] = ACTIONS(3337), + [sym_null] = ACTIONS(3337), + [sym_undefined] = ACTIONS(3337), + [anon_sym_AT] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3337), + [anon_sym_readonly] = ACTIONS(3337), + [anon_sym_get] = ACTIONS(3337), + [anon_sym_set] = ACTIONS(3337), + [anon_sym_QMARK] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3337), + [anon_sym_public] = ACTIONS(3337), + [anon_sym_private] = ACTIONS(3337), + [anon_sym_protected] = ACTIONS(3337), + [anon_sym_override] = ACTIONS(3337), + [anon_sym_module] = ACTIONS(3337), + [anon_sym_any] = ACTIONS(3337), + [anon_sym_number] = ACTIONS(3337), + [anon_sym_boolean] = ACTIONS(3337), + [anon_sym_string] = ACTIONS(3337), + [anon_sym_symbol] = ACTIONS(3337), + [anon_sym_object] = ACTIONS(3337), + [anon_sym_extends] = ACTIONS(3337), + [sym_html_comment] = ACTIONS(5), + }, + [1111] = { + [sym_nested_identifier] = STATE(1603), + [sym_string] = STATE(1602), + [sym__module] = STATE(1712), + [sym_identifier] = ACTIONS(3331), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(162), @@ -133459,11 +136660,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1114] = { - [sym_nested_identifier] = STATE(1486), - [sym_string] = STATE(1513), - [sym__module] = STATE(1710), - [sym_identifier] = ACTIONS(3343), + [1112] = { + [sym_export_statement] = STATE(4243), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(6171), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(6170), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(6171), + [sym_method_definition] = STATE(6170), + [sym_pair] = STATE(6170), + [sym_pair_pattern] = STATE(6171), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4243), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4243), + [sym_property_signature] = STATE(4243), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4243), + [sym_index_signature] = STATE(4243), + [aux_sym_export_statement_repeat1] = STATE(2614), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(3352), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3356), + [anon_sym_set] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3358), + [anon_sym_private] = ACTIONS(3358), + [anon_sym_protected] = ACTIONS(3358), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_module] = ACTIONS(3341), + [anon_sym_any] = ACTIONS(3341), + [anon_sym_number] = ACTIONS(3341), + [anon_sym_boolean] = ACTIONS(3341), + [anon_sym_string] = ACTIONS(3341), + [anon_sym_symbol] = ACTIONS(3341), + [anon_sym_object] = ACTIONS(3341), + [anon_sym_abstract] = ACTIONS(3217), + [sym_html_comment] = ACTIONS(5), + }, + [1113] = { + [sym_nested_identifier] = STATE(1603), + [sym_string] = STATE(1602), + [sym__module] = STATE(1712), + [sym_identifier] = ACTIONS(3331), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), @@ -133527,94 +136796,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, + [1114] = { + [sym_identifier] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_COMMA] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_let] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3362), + [anon_sym_yield] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_RBRACK] = ACTIONS(3364), + [sym_glimmer_opening_tag] = ACTIONS(3364), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_async] = ACTIONS(3362), + [anon_sym_function] = ACTIONS(3362), + [anon_sym_new] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_private_property_identifier] = ACTIONS(3364), + [sym_this] = ACTIONS(3362), + [sym_super] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_null] = ACTIONS(3362), + [sym_undefined] = ACTIONS(3362), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_readonly] = ACTIONS(3362), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [anon_sym_QMARK] = ACTIONS(3364), + [anon_sym_declare] = ACTIONS(3362), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_override] = ACTIONS(3362), + [anon_sym_module] = ACTIONS(3362), + [anon_sym_any] = ACTIONS(3362), + [anon_sym_number] = ACTIONS(3362), + [anon_sym_boolean] = ACTIONS(3362), + [anon_sym_string] = ACTIONS(3362), + [anon_sym_symbol] = ACTIONS(3362), + [anon_sym_object] = ACTIONS(3362), + [anon_sym_extends] = ACTIONS(3362), + [sym_html_comment] = ACTIONS(5), + }, [1115] = { - [sym_export_statement] = STATE(3736), - [sym_object_pattern] = STATE(5760), - [sym_object_assignment_pattern] = STATE(5227), - [sym_array_pattern] = STATE(5760), - [sym__call_signature] = STATE(4329), - [sym__destructuring_pattern] = STATE(5760), - [sym_spread_element] = STATE(5214), - [sym_string] = STATE(3049), - [sym_decorator] = STATE(1244), - [sym_formal_parameters] = STATE(3229), - [sym_rest_pattern] = STATE(5227), - [sym_method_definition] = STATE(5214), - [sym_pair] = STATE(5214), - [sym_pair_pattern] = STATE(5227), - [sym__property_name] = STATE(3049), - [sym_computed_property_name] = STATE(3049), - [sym_method_signature] = STATE(3736), - [sym_accessibility_modifier] = STATE(2687), - [sym_override_modifier] = STATE(2717), - [sym_call_signature] = STATE(3736), - [sym_property_signature] = STATE(3736), - [sym_type_parameters] = STATE(5404), - [sym_construct_signature] = STATE(3736), - [sym_index_signature] = STATE(3736), - [aux_sym_export_statement_repeat1] = STATE(4448), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3354), + [sym_export_statement] = STATE(4304), + [sym_object_pattern] = STATE(7437), + [sym_object_assignment_pattern] = STATE(6171), + [sym_array_pattern] = STATE(7437), + [sym__call_signature] = STATE(4795), + [sym__destructuring_pattern] = STATE(7437), + [sym_spread_element] = STATE(6170), + [sym_string] = STATE(3505), + [sym_decorator] = STATE(3068), + [sym_formal_parameters] = STATE(3685), + [sym_rest_pattern] = STATE(6171), + [sym_method_definition] = STATE(6170), + [sym_pair] = STATE(6170), + [sym_pair_pattern] = STATE(6171), + [sym__property_name] = STATE(3505), + [sym_computed_property_name] = STATE(3505), + [sym_method_signature] = STATE(4304), + [sym_accessibility_modifier] = STATE(3072), + [sym_override_modifier] = STATE(3101), + [sym_call_signature] = STATE(4304), + [sym_property_signature] = STATE(4304), + [sym_type_parameters] = STATE(6292), + [sym_construct_signature] = STATE(4304), + [sym_index_signature] = STATE(4304), + [aux_sym_export_statement_repeat1] = STATE(2614), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3350), [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(2525), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3345), - [anon_sym_any] = ACTIONS(3345), - [anon_sym_number] = ACTIONS(3345), - [anon_sym_boolean] = ACTIONS(3345), - [anon_sym_string] = ACTIONS(3345), - [anon_sym_symbol] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3229), + [anon_sym_static] = ACTIONS(3352), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3356), + [anon_sym_set] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3358), + [anon_sym_private] = ACTIONS(3358), + [anon_sym_protected] = ACTIONS(3358), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_module] = ACTIONS(3341), + [anon_sym_any] = ACTIONS(3341), + [anon_sym_number] = ACTIONS(3341), + [anon_sym_boolean] = ACTIONS(3341), + [anon_sym_string] = ACTIONS(3341), + [anon_sym_symbol] = ACTIONS(3341), + [anon_sym_object] = ACTIONS(3341), + [anon_sym_abstract] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, [1116] = { - [sym_nested_identifier] = STATE(1444), - [sym_string] = STATE(1452), - [sym__module] = STATE(1765), + [sym_nested_identifier] = STATE(1452), + [sym_string] = STATE(1453), + [sym__module] = STATE(1692), [sym_identifier] = ACTIONS(3366), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), + [anon_sym_in] = ACTIONS(883), + [anon_sym_of] = ACTIONS(886), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -133663,10 +137000,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1117] = { - [sym_nested_identifier] = STATE(4429), - [sym_string] = STATE(741), - [sym__module] = STATE(825), - [sym_identifier] = ACTIONS(3368), + [sym_nested_identifier] = STATE(1452), + [sym_string] = STATE(1453), + [sym__module] = STATE(1692), + [sym_identifier] = ACTIONS(3366), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), @@ -133675,12 +137012,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(866), + [anon_sym_COLON] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -133730,26 +137067,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1118] = { - [sym_nested_identifier] = STATE(1486), - [sym_string] = STATE(1513), - [sym__module] = STATE(1710), - [sym_identifier] = ACTIONS(3343), + [sym_variable_declarator] = STATE(5344), + [sym_object_pattern] = STATE(3733), + [sym_array_pattern] = STATE(3733), + [sym__destructuring_pattern] = STATE(3733), + [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(888), - [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_in] = ACTIONS(883), + [anon_sym_of] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(3321), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -133793,28 +137129,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1119] = { - [sym_variable_declarator] = STATE(4506), - [sym_object_pattern] = STATE(3442), - [sym_array_pattern] = STATE(3442), - [sym__destructuring_pattern] = STATE(3442), - [sym_identifier] = ACTIONS(3370), + [sym_nested_identifier] = STATE(1452), + [sym_string] = STATE(1453), + [sym__module] = STATE(1692), + [sym_identifier] = ACTIONS(3366), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_in] = ACTIONS(861), - [anon_sym_of] = ACTIONS(864), + [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_COLON] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -133864,24 +137201,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1120] = { - [sym_nested_identifier] = STATE(1444), - [sym_string] = STATE(1452), - [sym__module] = STATE(1765), - [sym_identifier] = ACTIONS(3366), + [sym_variable_declarator] = STATE(5344), + [sym_object_pattern] = STATE(3986), + [sym_array_pattern] = STATE(3986), + [sym__destructuring_pattern] = STATE(3986), + [sym_identifier] = ACTIONS(3317), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3319), [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(3321), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -133931,25 +137268,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1121] = { - [sym_nested_identifier] = STATE(1486), - [sym_string] = STATE(1513), - [sym__module] = STATE(1710), - [sym_identifier] = ACTIONS(3343), + [sym_nested_identifier] = STATE(212), + [sym_string] = STATE(210), + [sym__module] = STATE(219), + [sym_identifier] = ACTIONS(3323), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(861), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3327), + [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -133998,25 +137335,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1122] = { - [sym_nested_identifier] = STATE(1444), - [sym_string] = STATE(1452), - [sym__module] = STATE(1765), - [sym_identifier] = ACTIONS(3366), + [sym_nested_identifier] = STATE(1603), + [sym_string] = STATE(1602), + [sym__module] = STATE(1712), + [sym_identifier] = ACTIONS(3331), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_in] = ACTIONS(861), - [anon_sym_of] = ACTIONS(864), + [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(875), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -134065,24 +137402,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1123] = { - [sym_variable_declarator] = STATE(4506), - [sym_object_pattern] = STATE(3661), - [sym_array_pattern] = STATE(3661), - [sym__destructuring_pattern] = STATE(3661), - [sym_identifier] = ACTIONS(3335), + [sym_nested_identifier] = STATE(706), + [sym_string] = STATE(721), + [sym__module] = STATE(758), + [sym_identifier] = ACTIONS(3329), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134132,24 +137469,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1124] = { - [sym_nested_identifier] = STATE(214), - [sym_string] = STATE(213), - [sym__module] = STATE(247), - [sym_identifier] = ACTIONS(3329), + [sym_variable_declarator] = STATE(5344), + [sym_object_pattern] = STATE(3986), + [sym_array_pattern] = STATE(3986), + [sym__destructuring_pattern] = STATE(3986), + [sym_identifier] = ACTIONS(3317), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3319), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(3321), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3333), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134199,24 +137536,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1125] = { - [sym_nested_identifier] = STATE(711), - [sym_string] = STATE(741), - [sym__module] = STATE(825), - [sym_identifier] = ACTIONS(3341), + [sym_variable_declarator] = STATE(5344), + [sym_object_pattern] = STATE(3986), + [sym_array_pattern] = STATE(3986), + [sym__destructuring_pattern] = STATE(3986), + [sym_identifier] = ACTIONS(3317), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(3319), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(3321), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134266,25 +137603,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1126] = { - [sym_nested_identifier] = STATE(1486), - [sym_string] = STATE(1513), - [sym__module] = STATE(1710), - [sym_identifier] = ACTIONS(3343), + [sym_nested_identifier] = STATE(1603), + [sym_string] = STATE(1602), + [sym__module] = STATE(1712), + [sym_identifier] = ACTIONS(3331), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(857), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_COMMA] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(905), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), [anon_sym_DQUOTE] = ACTIONS(150), [anon_sym_SQUOTE] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_EQ_GT] = ACTIONS(160), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -134328,29 +137666,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(162), [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1127] = { - [sym_variable_declarator] = STATE(4506), - [sym_object_pattern] = STATE(3661), - [sym_array_pattern] = STATE(3661), - [sym__destructuring_pattern] = STATE(3661), - [sym_identifier] = ACTIONS(3335), + [sym_nested_identifier] = STATE(5479), + [sym_string] = STATE(721), + [sym__module] = STATE(758), + [sym_identifier] = ACTIONS(3370), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_COLON] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134400,24 +137737,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1128] = { - [sym_variable_declarator] = STATE(4506), - [sym_object_pattern] = STATE(3661), - [sym_array_pattern] = STATE(3661), - [sym__destructuring_pattern] = STATE(3661), - [sym_identifier] = ACTIONS(3335), + [sym_nested_identifier] = STATE(1603), + [sym_string] = STATE(1602), + [sym__module] = STATE(1712), + [sym_identifier] = ACTIONS(3331), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(851), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3337), [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134467,19 +137804,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1129] = { - [sym_nested_identifier] = STATE(1444), - [sym_string] = STATE(1452), - [sym__module] = STATE(1765), + [sym_nested_identifier] = STATE(1452), + [sym_string] = STATE(1453), + [sym__module] = STATE(1692), [sym_identifier] = ACTIONS(3366), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(866), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), @@ -134534,10 +137871,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1130] = { - [sym_nested_identifier] = STATE(1444), - [sym_string] = STATE(1452), - [sym__module] = STATE(1765), - [sym_identifier] = ACTIONS(3366), + [sym_nested_identifier] = STATE(706), + [sym_string] = STATE(721), + [sym__module] = STATE(758), + [sym_identifier] = ACTIONS(3329), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(859), [anon_sym_as] = ACTIONS(122), @@ -134546,12 +137883,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(886), + [anon_sym_COLON] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1550), [anon_sym_EQ_GT] = ACTIONS(715), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), @@ -134601,25 +137938,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1131] = { - [sym_nested_identifier] = STATE(711), - [sym_string] = STATE(741), - [sym__module] = STATE(825), - [sym_identifier] = ACTIONS(3341), + [sym_nested_identifier] = STATE(1452), + [sym_string] = STATE(1453), + [sym__module] = STATE(1692), + [sym_identifier] = ACTIONS(3366), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(869), [anon_sym_as] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), [anon_sym_SEMI] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_EQ_GT] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_EQ_GT] = ACTIONS(875), [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_PLUS_EQ] = ACTIONS(168), [anon_sym_DASH_EQ] = ACTIONS(168), @@ -134687,9 +138024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(3372), 1, sym_identifier, - STATE(4671), 1, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(4672), 1, + STATE(5989), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -134749,35 +138086,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [93] = 14, - ACTIONS(696), 1, + [93] = 15, + ACTIONS(128), 1, + anon_sym_RBRACK, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(227), 1, + anon_sym_COMMA, + ACTIONS(892), 1, anon_sym_EQ, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(704), 1, + ACTIONS(897), 1, anon_sym_COLON, - ACTIONS(715), 1, + ACTIONS(901), 1, anon_sym_EQ_GT, - ACTIONS(723), 1, - anon_sym_QMARK, - ACTIONS(2239), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_LT, - ACTIONS(3372), 1, + ACTIONS(3331), 1, sym_identifier, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + STATE(1602), 1, + sym_string, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 14, - sym__automatic_semicolon, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -134804,7 +138141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(122), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134823,27 +138160,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [186] = 12, + [188] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(841), 1, + ACTIONS(942), 1, anon_sym_EQ, - ACTIONS(918), 1, + ACTIONS(948), 1, anon_sym_EQ_GT, - ACTIONS(3343), 1, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -134905,7 +138243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, - [275] = 14, + [277] = 14, ACTIONS(696), 1, anon_sym_EQ, ACTIONS(704), 1, @@ -134922,10 +138260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(3372), 1, sym_identifier, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -134984,22 +138322,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [368] = 12, + [370] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(912), 1, + ACTIONS(851), 1, anon_sym_EQ, - ACTIONS(918), 1, + ACTIONS(948), 1, anon_sym_EQ_GT, - ACTIONS(3343), 1, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -135061,35 +138399,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, - [457] = 15, - ACTIONS(128), 1, - anon_sym_RBRACK, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(227), 1, - anon_sym_COMMA, - ACTIONS(895), 1, + [459] = 14, + ACTIONS(696), 1, anon_sym_EQ, - ACTIONS(900), 1, + ACTIONS(702), 1, + anon_sym_RBRACE, + ACTIONS(704), 1, anon_sym_COLON, - ACTIONS(904), 1, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(3343), 1, + ACTIONS(723), 1, + anon_sym_QMARK, + ACTIONS(2239), 1, + anon_sym_LPAREN, + ACTIONS(2248), 1, + anon_sym_LT, + ACTIONS(3372), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, - sym_string, - STATE(1710), 1, - sym__module, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 12, + ACTIONS(162), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -135116,7 +138454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(122), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -135135,28 +138473,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, [552] = 12, - ACTIONS(150), 1, + ACTIONS(908), 1, + anon_sym_EQ_GT, + ACTIONS(914), 1, + anon_sym_EQ, + ACTIONS(1548), 1, anon_sym_DQUOTE, - ACTIONS(152), 1, + ACTIONS(1550), 1, anon_sym_SQUOTE, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(924), 1, - anon_sym_EQ_GT, - ACTIONS(3343), 1, + ACTIONS(3329), 1, sym_identifier, - STATE(1486), 1, + STATE(706), 1, sym_nested_identifier, - STATE(1513), 1, + STATE(721), 1, sym_string, - STATE(1710), 1, + STATE(758), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -135284,29 +138621,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [710] = 13, - ACTIONS(696), 1, + [710] = 4, + ACTIONS(3378), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3374), 23, + anon_sym_STAR, anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3376), 37, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [782] = 13, ACTIONS(704), 1, anon_sym_COLON, - ACTIONS(715), 1, - anon_sym_EQ_GT, ACTIONS(723), 1, anon_sym_QMARK, - ACTIONS(725), 1, + ACTIONS(727), 1, anon_sym_RBRACE, - ACTIONS(2239), 1, + ACTIONS(3382), 1, + anon_sym_EQ, + ACTIONS(3386), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(3389), 1, + anon_sym_EQ_GT, + ACTIONS(3393), 1, anon_sym_LT, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135322,7 +138727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 17, + ACTIONS(3384), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -135340,7 +138745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(3380), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -135361,60 +138766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [800] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(946), 1, - anon_sym_EQ, - ACTIONS(952), 1, - anon_sym_EQ_GT, - ACTIONS(3343), 1, - sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, - sym_string, - STATE(1710), 1, - sym__module, + [872] = 4, + ACTIONS(3400), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 14, - sym__ternary_qmark, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3396), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -135435,45 +138795,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [888] = 13, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(900), 1, - anon_sym_COLON, - ACTIONS(904), 1, - anon_sym_EQ_GT, - ACTIONS(926), 1, - anon_sym_EQ, - ACTIONS(3343), 1, - sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, - sym_string, - STATE(1710), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 13, + anon_sym_QMARK, + ACTIONS(3398), 37, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135489,56 +138824,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [978] = 11, - ACTIONS(924), 1, + anon_sym_implements, + [944] = 13, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(897), 1, + anon_sym_COLON, + ACTIONS(901), 1, anon_sym_EQ_GT, - ACTIONS(932), 1, + ACTIONS(936), 1, anon_sym_EQ, - ACTIONS(3335), 1, + ACTIONS(3331), 1, sym_identifier, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - STATE(4442), 1, - sym_variable_declarator, + STATE(1602), 1, + sym_string, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3661), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, ACTIONS(162), 13, - sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -135589,15 +138911,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1064] = 4, - ACTIONS(3382), 1, - anon_sym_extends, + [1034] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(932), 1, + anon_sym_EQ_GT, + ACTIONS(3331), 1, + sym_identifier, + STATE(1602), 1, + sym_string, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3378), 23, + ACTIONS(162), 14, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -135618,20 +138985,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3380), 37, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_instanceof, + anon_sym_satisfies, + [1122] = 13, + ACTIONS(702), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(704), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(723), 1, + anon_sym_QMARK, + ACTIONS(3382), 1, + anon_sym_EQ, + ACTIONS(3386), 1, + anon_sym_LPAREN, + ACTIONS(3389), 1, + anon_sym_EQ_GT, + ACTIONS(3393), 1, + anon_sym_LT, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135647,6 +139025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3384), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -135656,33 +139043,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [1136] = 12, + ACTIONS(3380), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [1212] = 13, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(952), 1, + ACTIONS(901), 1, anon_sym_EQ_GT, - ACTIONS(3343), 1, + ACTIONS(936), 1, + anon_sym_EQ, + ACTIONS(954), 1, + anon_sym_COLON, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 14, + ACTIONS(162), 13, sym__ternary_qmark, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -135733,48 +139141,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1224] = 3, + [1302] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(926), 1, + anon_sym_EQ, + ACTIONS(932), 1, + anon_sym_EQ_GT, + ACTIONS(3331), 1, + sym_identifier, + STATE(1602), 1, + sym_string, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3386), 38, + ACTIONS(162), 14, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135790,23 +139192,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [1294] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3378), 23, + ACTIONS(122), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -135827,21 +139215,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3380), 38, + anon_sym_instanceof, + anon_sym_satisfies, + [1390] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(908), 1, + anon_sym_EQ_GT, + ACTIONS(3331), 1, + sym_identifier, + STATE(1602), 1, + sym_string, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135857,21 +139268,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(122), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [1364] = 3, + [1478] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3388), 23, + ACTIONS(3402), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -135895,7 +139321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3390), 38, + ACTIONS(3404), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135934,11 +139360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1434] = 3, + [1548] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3392), 23, + ACTIONS(3406), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -135962,7 +139388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3394), 38, + ACTIONS(3408), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -136001,11 +139427,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1504] = 3, + [1618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3396), 23, + ACTIONS(3410), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -136029,7 +139455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3398), 38, + ACTIONS(3412), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -136068,41 +139494,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1574] = 12, - ACTIONS(924), 1, - anon_sym_EQ_GT, - ACTIONS(932), 1, + [1688] = 13, + ACTIONS(696), 1, anon_sym_EQ, - ACTIONS(3329), 1, - sym_identifier, - ACTIONS(3331), 1, - anon_sym_DQUOTE, - ACTIONS(3333), 1, - anon_sym_SQUOTE, - STATE(213), 1, - sym_string, - STATE(214), 1, - sym_nested_identifier, - STATE(247), 1, - sym__module, + ACTIONS(704), 1, + anon_sym_COLON, + ACTIONS(715), 1, + anon_sym_EQ_GT, + ACTIONS(723), 1, + anon_sym_QMARK, + ACTIONS(727), 1, + anon_sym_RBRACE, + ACTIONS(2239), 1, + anon_sym_LPAREN, + ACTIONS(2248), 1, + anon_sym_LT, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -136119,9 +139532,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, + ACTIONS(162), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 20, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -136138,73 +139568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [1662] = 14, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(3410), 1, - anon_sym_DOT, - ACTIONS(3412), 1, - anon_sym_EQ_GT, - ACTIONS(3414), 1, - anon_sym_QMARK_DOT, - ACTIONS(3420), 1, - anon_sym_LT, - STATE(3020), 1, - sym_arguments, - STATE(3189), 1, - sym_type_arguments, + [1778] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3406), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3404), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 18, + ACTIONS(3396), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -136213,51 +139586,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1754] = 12, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - anon_sym_SQUOTE, - ACTIONS(924), 1, - anon_sym_EQ_GT, - ACTIONS(932), 1, - anon_sym_EQ, - ACTIONS(3366), 1, - sym_identifier, - STATE(1444), 1, - sym_nested_identifier, - STATE(1452), 1, - sym_string, - STATE(1765), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 14, - sym__automatic_semicolon, + anon_sym_QMARK, + ACTIONS(3398), 38, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136273,54 +139628,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [1842] = 13, + anon_sym_implements, + [1848] = 13, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(702), 1, + anon_sym_RBRACE, ACTIONS(704), 1, anon_sym_COLON, + ACTIONS(715), 1, + anon_sym_EQ_GT, ACTIONS(723), 1, anon_sym_QMARK, - ACTIONS(725), 1, - anon_sym_RBRACE, - ACTIONS(3422), 1, - anon_sym_EQ, - ACTIONS(3424), 1, + ACTIONS(2239), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, - anon_sym_EQ_GT, - ACTIONS(3429), 1, + ACTIONS(2248), 1, anon_sym_LT, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5988), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136336,7 +139676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 17, + ACTIONS(162), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136354,7 +139694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 20, + ACTIONS(122), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136375,32 +139715,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1932] = 12, - ACTIONS(924), 1, + [1938] = 11, + ACTIONS(908), 1, anon_sym_EQ_GT, - ACTIONS(932), 1, + ACTIONS(914), 1, anon_sym_EQ, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3432), 1, + ACTIONS(3317), 1, sym_identifier, - STATE(3483), 1, - sym_nested_identifier, - STATE(3697), 1, - sym_string, - STATE(4370), 1, - sym__module, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + anon_sym_LBRACK, + STATE(5344), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 14, + STATE(3986), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(162), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -136451,29 +139790,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2020] = 13, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(704), 1, - anon_sym_COLON, - ACTIONS(723), 1, - anon_sym_QMARK, - ACTIONS(3422), 1, + [2024] = 14, + ACTIONS(128), 1, + anon_sym_RBRACK, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(227), 1, + anon_sym_COMMA, + ACTIONS(892), 1, anon_sym_EQ, - ACTIONS(3424), 1, - anon_sym_LPAREN, - ACTIONS(3427), 1, + ACTIONS(901), 1, anon_sym_EQ_GT, - ACTIONS(3429), 1, - anon_sym_LT, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + ACTIONS(3331), 1, + sym_identifier, + STATE(1602), 1, + sym_string, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(162), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136489,26 +139843,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3400), 20, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -136525,31 +139862,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2110] = 13, - ACTIONS(696), 1, - anon_sym_EQ, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(704), 1, - anon_sym_COLON, - ACTIONS(715), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2116] = 12, + ACTIONS(908), 1, anon_sym_EQ_GT, - ACTIONS(723), 1, - anon_sym_QMARK, - ACTIONS(2239), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_LT, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + ACTIONS(914), 1, + anon_sym_EQ, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3414), 1, + sym_identifier, + STATE(3911), 1, + sym_nested_identifier, + STATE(4157), 1, + sym_string, + STATE(5211), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(162), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -136566,26 +139919,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -136602,32 +139938,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2200] = 13, - ACTIONS(704), 1, - anon_sym_COLON, - ACTIONS(723), 1, - anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(3422), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2204] = 14, + ACTIONS(3416), 1, anon_sym_EQ, - ACTIONS(3424), 1, + ACTIONS(3420), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3426), 1, anon_sym_EQ_GT, - ACTIONS(3429), 1, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, + ACTIONS(3430), 1, anon_sym_LT, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, + STATE(3288), 1, + sym_arguments, + STATE(3373), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3418), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3422), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136643,37 +140004,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3400), 20, + ACTIONS(3380), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -136682,32 +140022,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2290] = 12, - ACTIONS(924), 1, + [2296] = 11, + ACTIONS(908), 1, anon_sym_EQ_GT, - ACTIONS(932), 1, + ACTIONS(914), 1, anon_sym_EQ, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(3341), 1, + ACTIONS(3317), 1, sym_identifier, - STATE(711), 1, - sym_nested_identifier, - STATE(741), 1, - sym_string, - STATE(825), 1, - sym__module, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + anon_sym_LBRACK, + STATE(5394), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 14, + STATE(3986), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(162), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -136758,29 +140097,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2378] = 13, - ACTIONS(696), 1, - anon_sym_EQ, + [2382] = 13, ACTIONS(704), 1, anon_sym_COLON, - ACTIONS(715), 1, - anon_sym_EQ_GT, ACTIONS(723), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(725), 1, anon_sym_RBRACE, - ACTIONS(2239), 1, + ACTIONS(3382), 1, + anon_sym_EQ, + ACTIONS(3386), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(3389), 1, + anon_sym_EQ_GT, + ACTIONS(3393), 1, anon_sym_LT, - STATE(4671), 1, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(4672), 1, + STATE(5989), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136796,7 +140135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 17, + ACTIONS(3384), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136814,80 +140153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [2468] = 11, - ACTIONS(924), 1, - anon_sym_EQ_GT, - ACTIONS(932), 1, - anon_sym_EQ, - ACTIONS(3335), 1, - sym_identifier, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - STATE(4506), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3661), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(162), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3380), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -136904,17 +140171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2554] = 3, + [2472] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3434), 23, + ACTIONS(3432), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -136938,7 +140202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3436), 38, + ACTIONS(3434), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -136977,44 +140241,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2624] = 14, - ACTIONS(128), 1, - anon_sym_RBRACK, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(227), 1, - anon_sym_COMMA, - ACTIONS(895), 1, + [2542] = 14, + ACTIONS(3416), 1, anon_sym_EQ, - ACTIONS(904), 1, + ACTIONS(3426), 1, anon_sym_EQ_GT, - ACTIONS(3343), 1, - sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, - sym_string, - STATE(1710), 1, - sym__module, + ACTIONS(3436), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_DOT, + ACTIONS(3440), 1, + anon_sym_QMARK_DOT, + ACTIONS(3442), 1, + anon_sym_LT, + STATE(3499), 1, + sym_arguments, + STATE(3645), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3422), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3418), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3384), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(168), 15, + anon_sym_satisfies, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137030,9 +140300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3380), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -137041,65 +140310,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2716] = 14, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3412), 1, + [2634] = 12, + ACTIONS(908), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_QMARK_DOT, - ACTIONS(3444), 1, - anon_sym_LT, - STATE(2829), 1, - sym_arguments, - STATE(2852), 1, - sym_type_arguments, + ACTIONS(914), 1, + anon_sym_EQ, + ACTIONS(3323), 1, + sym_identifier, + ACTIONS(3325), 1, + anon_sym_DQUOTE, + ACTIONS(3327), 1, + anon_sym_SQUOTE, + STATE(210), 1, + sym_string, + STATE(212), 1, + sym_nested_identifier, + STATE(219), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3418), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3404), 15, + ACTIONS(162), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137115,31 +140370,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2808] = 4, - ACTIONS(3446), 1, - anon_sym_extends, + anon_sym_instanceof, + anon_sym_satisfies, + [2722] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 23, + ACTIONS(3444), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137163,7 +140423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3386), 37, + ACTIONS(3446), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137171,6 +140431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -137201,33 +140462,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2880] = 13, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, + [2792] = 12, + ACTIONS(908), 1, anon_sym_EQ_GT, - ACTIONS(926), 1, + ACTIONS(914), 1, anon_sym_EQ, - ACTIONS(940), 1, - anon_sym_COLON, - ACTIONS(3343), 1, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(721), 1, sym_string, - STATE(1710), 1, + STATE(758), 1, sym__module, + STATE(5479), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 13, + ACTIONS(162), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -137278,23 +140538,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2970] = 12, - ACTIONS(924), 1, - anon_sym_EQ_GT, - ACTIONS(932), 1, - anon_sym_EQ, - ACTIONS(1506), 1, + [2880] = 12, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(1508), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(3368), 1, + ACTIONS(908), 1, + anon_sym_EQ_GT, + ACTIONS(914), 1, + anon_sym_EQ, + ACTIONS(3366), 1, sym_identifier, - STATE(741), 1, + STATE(1452), 1, + sym_nested_identifier, + STATE(1453), 1, sym_string, - STATE(825), 1, + STATE(1692), 1, sym__module, - STATE(4429), 1, - sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -137354,49 +140614,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3058] = 14, - ACTIONS(3402), 1, + [2968] = 13, + ACTIONS(696), 1, anon_sym_EQ, - ACTIONS(3412), 1, + ACTIONS(704), 1, + anon_sym_COLON, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(723), 1, + anon_sym_QMARK, + ACTIONS(725), 1, + anon_sym_RBRACE, + ACTIONS(2239), 1, anon_sym_LPAREN, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_QMARK_DOT, - ACTIONS(3444), 1, + ACTIONS(2248), 1, anon_sym_LT, - STATE(2829), 1, - sym_arguments, - STATE(2852), 1, - sym_type_arguments, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3406), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3404), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137412,48 +140652,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [3149] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - anon_sym_EQ, - ACTIONS(966), 1, - anon_sym_EQ_GT, - ACTIONS(3343), 1, - sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, - sym_string, - STATE(1710), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 12, + ACTIONS(162), 17, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -137461,31 +140665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + anon_sym_satisfies, + ACTIONS(122), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137500,28 +140688,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3236] = 12, + [3058] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(841), 1, + ACTIONS(851), 1, anon_sym_EQ, - ACTIONS(966), 1, + ACTIONS(956), 1, anon_sym_EQ_GT, - ACTIONS(3343), 1, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -137581,39 +140766,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3323] = 14, - ACTIONS(3427), 1, - anon_sym_EQ_GT, - ACTIONS(3438), 1, + [3145] = 14, + ACTIONS(3420), 1, anon_sym_LPAREN, - ACTIONS(3440), 1, + ACTIONS(3424), 1, anon_sym_DOT, - ACTIONS(3442), 1, + ACTIONS(3428), 1, anon_sym_QMARK_DOT, - ACTIONS(3444), 1, + ACTIONS(3430), 1, anon_sym_LT, ACTIONS(3448), 1, anon_sym_EQ, - STATE(2829), 1, + ACTIONS(3450), 1, + anon_sym_EQ_GT, + STATE(3288), 1, sym_arguments, - STATE(2852), 1, + STATE(3373), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, + ACTIONS(3418), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3418), 3, + ACTIONS(3422), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3404), 14, + ACTIONS(3384), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -137624,7 +140809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137640,7 +140825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, + ACTIONS(3380), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137658,40 +140843,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3414] = 14, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(3440), 1, + [3236] = 16, + ACTIONS(3426), 1, + anon_sym_EQ_GT, + ACTIONS(3452), 1, + anon_sym_EQ, + ACTIONS(3459), 1, + anon_sym_COLON, + ACTIONS(3461), 1, + anon_sym_LBRACK, + ACTIONS(3464), 1, anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_QMARK_DOT, - ACTIONS(3444), 1, + ACTIONS(3470), 1, anon_sym_LT, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3452), 1, - anon_sym_EQ_GT, - STATE(2829), 1, - sym_arguments, - STATE(2852), 1, + ACTIONS(3473), 1, + anon_sym_QMARK, + ACTIONS(3476), 1, + anon_sym_extends, + STATE(3335), 1, sym_type_arguments, + STATE(7164), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, + ACTIONS(3455), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3418), 3, - anon_sym_GT, + anon_sym_RBRACK, + ACTIONS(3467), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3404), 14, - sym__automatic_semicolon, + ACTIONS(3384), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -137701,7 +140887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137717,10 +140903,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, + ACTIONS(3380), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137735,32 +140922,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3505] = 13, + [3331] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(229), 1, + ACTIONS(901), 1, anon_sym_EQ_GT, - ACTIONS(841), 1, + ACTIONS(936), 1, anon_sym_EQ, - ACTIONS(847), 1, - anon_sym_COLON, - ACTIONS(3343), 1, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 12, + ACTIONS(162), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -137811,114 +140997,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3594] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2445), 22, - anon_sym_STAR, + [3418] = 12, + ACTIONS(3416), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2443), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [3663] = 13, - ACTIONS(3412), 1, + ACTIONS(3426), 1, anon_sym_EQ_GT, - ACTIONS(3454), 1, - anon_sym_EQ, - ACTIONS(3463), 1, - anon_sym_LBRACK, - ACTIONS(3466), 1, + ACTIONS(3464), 1, anon_sym_DOT, - ACTIONS(3472), 1, + ACTIONS(3470), 1, anon_sym_LT, - STATE(3194), 1, + ACTIONS(3476), 1, + anon_sym_extends, + STATE(3335), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3457), 2, + ACTIONS(3461), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3469), 2, + anon_sym_LBRACK, + ACTIONS(3467), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3461), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3404), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137934,11 +141036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 18, + ACTIONS(3380), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -137953,26 +141054,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3752] = 14, + ACTIONS(3384), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3505] = 13, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(841), 1, + ACTIONS(851), 1, anon_sym_EQ, - ACTIONS(861), 1, - anon_sym_in, - ACTIONS(864), 1, - anon_sym_of, - ACTIONS(3343), 1, + ACTIONS(853), 1, + anon_sym_COLON, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -138006,10 +141123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(122), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138030,41 +141148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3843] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(841), 1, + [3594] = 5, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(904), 1, - anon_sym_EQ_GT, - ACTIONS(3343), 1, - sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, - sym_string, - STATE(1710), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138080,38 +141170,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3930] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2461), 22, + ACTIONS(3380), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138132,7 +141192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2459), 38, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138146,21 +141206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -138171,13 +141216,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [3999] = 5, - ACTIONS(3475), 1, + [3667] = 14, + ACTIONS(3389), 1, + anon_sym_EQ_GT, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, + ACTIONS(3430), 1, + anon_sym_LT, + ACTIONS(3480), 1, anon_sym_EQ, + STATE(3288), 1, + sym_arguments, + STATE(3373), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3418), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3422), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3384), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138193,83 +141275,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(3380), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [4072] = 16, - ACTIONS(3412), 1, + [3758] = 13, + ACTIONS(3426), 1, anon_sym_EQ_GT, - ACTIONS(3454), 1, + ACTIONS(3452), 1, anon_sym_EQ, ACTIONS(3461), 1, - anon_sym_extends, - ACTIONS(3463), 1, anon_sym_LBRACK, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(3479), 1, - anon_sym_DOT, ACTIONS(3482), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(3485), 1, - anon_sym_QMARK, - STATE(2856), 1, + anon_sym_LT, + STATE(3663), 1, sym_type_arguments, - STATE(5509), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3457), 2, + ACTIONS(3455), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3469), 2, + anon_sym_RBRACE, + ACTIONS(3467), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3404), 13, + ACTIONS(3476), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3384), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -138283,7 +141334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138299,7 +141350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 18, + ACTIONS(3380), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138318,59 +141369,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4167] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - anon_sym_EQ_GT, - ACTIONS(926), 1, - anon_sym_EQ, - ACTIONS(3343), 1, - sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, - sym_string, - STATE(1710), 1, - sym__module, + [3847] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(2481), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138391,32 +141396,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(2479), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [4254] = 12, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3412), 1, + anon_sym_implements, + [3916] = 14, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(3461), 1, - anon_sym_extends, - ACTIONS(3479), 1, - anon_sym_DOT, - ACTIONS(3482), 1, - anon_sym_LT, - STATE(2856), 1, - sym_type_arguments, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(883), 1, + anon_sym_in, + ACTIONS(886), 1, + anon_sym_of, + ACTIONS(3331), 1, + sym_identifier, + STATE(1602), 1, + sym_string, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3463), 2, - anon_sym_COMMA, + ACTIONS(162), 12, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3469), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3416), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138432,52 +141488,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, + ACTIONS(122), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3404), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [4341] = 8, - ACTIONS(3438), 1, - anon_sym_LPAREN, + [4007] = 8, ACTIONS(3492), 1, - anon_sym_DOT, + anon_sym_LPAREN, ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, anon_sym_LT, - STATE(1194), 1, + STATE(1274), 1, sym_arguments, - STATE(5478), 1, + STATE(6346), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, @@ -138539,39 +141583,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [4420] = 15, - ACTIONS(3412), 1, - anon_sym_EQ_GT, - ACTIONS(3454), 1, + [4086] = 14, + ACTIONS(3416), 1, anon_sym_EQ, - ACTIONS(3457), 1, - anon_sym_RPAREN, - ACTIONS(3461), 1, - anon_sym_extends, - ACTIONS(3463), 1, - anon_sym_LBRACK, - ACTIONS(3479), 1, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(3424), 1, anon_sym_DOT, - ACTIONS(3482), 1, + ACTIONS(3426), 1, + anon_sym_EQ_GT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, + ACTIONS(3430), 1, anon_sym_LT, - ACTIONS(3499), 1, - anon_sym_QMARK, - STATE(2856), 1, + STATE(3288), 1, + sym_arguments, + STATE(3373), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 2, + ACTIONS(3422), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3496), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3404), 13, + ACTIONS(3418), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3384), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -138581,7 +141625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138597,7 +141641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 18, + ACTIONS(3380), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138616,30 +141660,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4512] = 12, + [4177] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(988), 1, + ACTIONS(851), 1, anon_sym_EQ, - ACTIONS(3343), 1, + ACTIONS(901), 1, + anon_sym_EQ_GT, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 12, + ACTIONS(162), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -138690,22 +141735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4598] = 12, + [4264] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(229), 1, + ACTIONS(956), 1, anon_sym_EQ_GT, - ACTIONS(982), 1, + ACTIONS(962), 1, anon_sym_EQ, - ACTIONS(3343), 1, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -138739,11 +141784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(122), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138764,49 +141810,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4684] = 14, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_QMARK_DOT, - ACTIONS(3444), 1, - anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3503), 1, - anon_sym_EQ_GT, - STATE(2829), 1, - sym_arguments, - STATE(2852), 1, - sym_type_arguments, + [4351] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3418), 3, + ACTIONS(2445), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3404), 13, - sym__automatic_semicolon, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2443), 38, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138822,59 +141866,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [4774] = 9, - ACTIONS(119), 1, - anon_sym_EQ, - ACTIONS(160), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [4420] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(3505), 1, - anon_sym_LBRACK, + ACTIONS(1028), 1, + anon_sym_EQ, + ACTIONS(3331), 1, + sym_identifier, + STATE(1602), 1, + sym_string, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1650), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(162), 14, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -138891,8 +141925,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138901,7 +141936,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -138911,28 +141948,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4854] = 8, - ACTIONS(224), 1, - anon_sym_EQ, - ACTIONS(229), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4506] = 15, + ACTIONS(3426), 1, anon_sym_EQ_GT, - ACTIONS(793), 1, + ACTIONS(3452), 1, + anon_sym_EQ, + ACTIONS(3455), 1, + anon_sym_RPAREN, + ACTIONS(3461), 1, + anon_sym_LBRACK, + ACTIONS(3464), 1, + anon_sym_DOT, + ACTIONS(3470), 1, + anon_sym_LT, + ACTIONS(3476), 1, + anon_sym_extends, + ACTIONS(3501), 1, anon_sym_QMARK, + STATE(3335), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(227), 5, + ACTIONS(3467), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3498), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(162), 15, + ACTIONS(3384), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -138943,7 +141992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138959,7 +142008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3380), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138969,34 +142018,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4932] = 12, + [4598] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(978), 1, + ACTIONS(1030), 1, anon_sym_EQ, - ACTIONS(3343), 1, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -139055,25 +142101,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5018] = 8, - ACTIONS(119), 1, - anon_sym_EQ, - ACTIONS(160), 1, + [4684] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(793), 1, - anon_sym_QMARK, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(3331), 1, + sym_identifier, + STATE(1602), 1, + sym_string, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(162), 15, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -139082,11 +142131,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -139103,8 +142150,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139125,39 +142173,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5096] = 8, - ACTIONS(3499), 1, - anon_sym_QMARK, - ACTIONS(3511), 1, - anon_sym_EQ, - ACTIONS(3516), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4770] = 12, + ACTIONS(229), 1, anon_sym_EQ_GT, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(883), 1, + anon_sym_in, + ACTIONS(886), 1, + anon_sym_of, + ACTIONS(3187), 1, + anon_sym_LBRACE, + ACTIONS(3503), 1, + sym_identifier, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3514), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3404), 15, + STATE(7053), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(162), 11, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139173,10 +142225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(122), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139195,35 +142247,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5174] = 14, - ACTIONS(3438), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4856] = 14, + ACTIONS(3420), 1, anon_sym_LPAREN, - ACTIONS(3440), 1, + ACTIONS(3424), 1, anon_sym_DOT, - ACTIONS(3442), 1, + ACTIONS(3428), 1, anon_sym_QMARK_DOT, - ACTIONS(3444), 1, + ACTIONS(3430), 1, anon_sym_LT, - ACTIONS(3518), 1, + ACTIONS(3508), 1, anon_sym_EQ, - ACTIONS(3520), 1, + ACTIONS(3510), 1, anon_sym_EQ_GT, - STATE(2829), 1, + STATE(3288), 1, sym_arguments, - STATE(2852), 1, + STATE(3373), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, + ACTIONS(3418), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3418), 3, + ACTIONS(3422), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3404), 13, + ACTIONS(3384), 13, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -139237,7 +142291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139253,7 +142307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, + ACTIONS(3380), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139271,87 +142325,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5264] = 3, + [4946] = 12, + ACTIONS(3389), 1, + anon_sym_EQ_GT, + ACTIONS(3464), 1, + anon_sym_DOT, + ACTIONS(3470), 1, + anon_sym_LT, + ACTIONS(3476), 1, + anon_sym_extends, + ACTIONS(3480), 1, + anon_sym_EQ, + STATE(3335), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3524), 16, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3461), 2, + anon_sym_COMMA, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + ACTIONS(3467), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3384), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3522), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, + anon_sym_satisfies, + ACTIONS(3380), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [5332] = 12, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5032] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(841), 1, + ACTIONS(972), 1, anon_sym_EQ, - ACTIONS(3343), 1, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -139410,22 +142473,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5418] = 12, + [5118] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(976), 1, + ACTIONS(1038), 1, anon_sym_EQ, - ACTIONS(3343), 1, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -139484,28 +142547,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5504] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(972), 1, + [5204] = 8, + ACTIONS(3501), 1, + anon_sym_QMARK, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(3343), 1, - sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, - sym_string, - STATE(1710), 1, - sym__module, + ACTIONS(3517), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 12, + ACTIONS(3515), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3384), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -139514,10 +142574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(168), 15, + anon_sym_satisfies, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139533,9 +142595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3380), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139556,42 +142617,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5590] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(980), 1, + [5282] = 15, + ACTIONS(3461), 1, + anon_sym_LBRACK, + ACTIONS(3464), 1, + anon_sym_DOT, + ACTIONS(3470), 1, + anon_sym_LT, + ACTIONS(3476), 1, + anon_sym_extends, + ACTIONS(3501), 1, + anon_sym_QMARK, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(3343), 1, - sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, - sym_string, - STATE(1710), 1, - sym__module, + ACTIONS(3517), 1, + anon_sym_EQ_GT, + ACTIONS(3519), 1, + anon_sym_RPAREN, + STATE(3335), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 12, + ACTIONS(3467), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3515), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3384), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(168), 15, + anon_sym_satisfies, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139607,9 +142675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3380), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139618,44 +142685,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5676] = 12, - ACTIONS(3450), 1, + [5374] = 8, + ACTIONS(224), 1, anon_sym_EQ, - ACTIONS(3452), 1, + ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(3461), 1, - anon_sym_extends, - ACTIONS(3479), 1, - anon_sym_DOT, - ACTIONS(3482), 1, - anon_sym_LT, - STATE(2856), 1, - sym_type_arguments, + ACTIONS(793), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3463), 2, + ACTIONS(227), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(162), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3469), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3416), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139671,66 +142742,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3400), 17, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5762] = 12, + [5452] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(841), 1, + ACTIONS(1036), 1, anon_sym_EQ, - ACTIONS(861), 1, - anon_sym_in, - ACTIONS(864), 1, - anon_sym_of, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3526), 1, + ACTIONS(3331), 1, sym_identifier, - ACTIONS(3528), 1, - anon_sym_LBRACK, + STATE(1602), 1, + sym_string, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5532), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(162), 11, + ACTIONS(162), 12, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -139756,10 +142813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(122), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139780,92 +142838,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5848] = 6, - ACTIONS(3535), 1, - anon_sym_AT, - STATE(1201), 1, - aux_sym_export_statement_repeat1, - STATE(1244), 1, - sym_decorator, + [5538] = 14, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, + ACTIONS(3430), 1, + anon_sym_LT, + ACTIONS(3522), 1, + anon_sym_EQ, + ACTIONS(3524), 1, + anon_sym_EQ_GT, + STATE(3288), 1, + sym_arguments, + STATE(3373), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, + ACTIONS(3418), 3, + anon_sym_COMMA, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3531), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [5922] = 9, - ACTIONS(160), 1, - anon_sym_EQ_GT, - ACTIONS(857), 1, - anon_sym_EQ, - ACTIONS(1650), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3508), 3, + ACTIONS(3422), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(168), 15, + ACTIONS(3384), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139881,7 +142896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(3380), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139896,18 +142911,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(162), 18, + [5628] = 9, + ACTIONS(119), 1, + anon_sym_EQ, + ACTIONS(160), 1, + anon_sym_EQ_GT, + ACTIONS(3526), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3529), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1662), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -139919,88 +142949,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6002] = 3, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5708] = 14, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, + ACTIONS(3430), 1, + anon_sym_LT, + ACTIONS(3532), 1, + anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_EQ_GT, + STATE(3288), 1, + sym_arguments, + STATE(3373), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3540), 16, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3418), 3, + anon_sym_COMMA, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + anon_sym_extends, + ACTIONS(3422), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3384), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3538), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [6070] = 8, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(841), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5798] = 8, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(855), 1, + ACTIONS(3517), 1, + anon_sym_EQ_GT, + ACTIONS(3538), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(847), 5, + ACTIONS(3536), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(162), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -140016,7 +143093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140032,7 +143109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140054,38 +143131,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6148] = 14, - ACTIONS(3438), 1, + [5876] = 14, + ACTIONS(3416), 1, + anon_sym_EQ, + ACTIONS(3420), 1, anon_sym_LPAREN, - ACTIONS(3440), 1, + ACTIONS(3424), 1, anon_sym_DOT, - ACTIONS(3442), 1, + ACTIONS(3426), 1, + anon_sym_EQ_GT, + ACTIONS(3428), 1, anon_sym_QMARK_DOT, - ACTIONS(3444), 1, + ACTIONS(3430), 1, anon_sym_LT, - ACTIONS(3542), 1, - anon_sym_EQ, - ACTIONS(3544), 1, - anon_sym_EQ_GT, - STATE(2829), 1, + STATE(3288), 1, sym_arguments, - STATE(2852), 1, + STATE(3373), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, + ACTIONS(3422), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3418), 4, anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3418), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3404), 13, + ACTIONS(3384), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -140095,8 +143172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140112,10 +143188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, + ACTIONS(3380), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140130,38 +143207,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6238] = 15, - ACTIONS(3461), 1, - anon_sym_extends, - ACTIONS(3463), 1, - anon_sym_LBRACK, - ACTIONS(3479), 1, - anon_sym_DOT, - ACTIONS(3482), 1, - anon_sym_LT, - ACTIONS(3499), 1, - anon_sym_QMARK, - ACTIONS(3511), 1, + [5966] = 12, + ACTIONS(3448), 1, anon_sym_EQ, - ACTIONS(3516), 1, + ACTIONS(3450), 1, anon_sym_EQ_GT, - ACTIONS(3546), 1, - anon_sym_RPAREN, - STATE(2856), 1, + ACTIONS(3464), 1, + anon_sym_DOT, + ACTIONS(3470), 1, + anon_sym_LT, + ACTIONS(3476), 1, + anon_sym_extends, + STATE(3335), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 2, + ACTIONS(3461), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3467), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3514), 2, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3384), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3380), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6052] = 8, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(855), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(853), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3404), 13, + anon_sym_RBRACK, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -140172,7 +143313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140188,7 +143329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 18, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140198,37 +143339,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6330] = 12, - ACTIONS(150), 1, - anon_sym_DQUOTE, - ACTIONS(152), 1, - anon_sym_SQUOTE, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(974), 1, + [6130] = 8, + ACTIONS(119), 1, anon_sym_EQ, - ACTIONS(3343), 1, - sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, - sym_string, - STATE(1710), 1, - sym__module, + ACTIONS(160), 1, + anon_sym_EQ_GT, + ACTIONS(793), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 12, + ACTIONS(128), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(162), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -140237,9 +143378,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_satisfies, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -140256,9 +143399,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(122), 21, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6208] = 8, + ACTIONS(3426), 1, + anon_sym_EQ_GT, + ACTIONS(3452), 1, + anon_sym_EQ, + ACTIONS(3501), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3384), 15, + sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140279,24 +143491,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + [6286] = 9, + ACTIONS(160), 1, + anon_sym_EQ_GT, + ACTIONS(857), 1, + anon_sym_EQ, + ACTIONS(1662), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3526), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3529), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(162), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [6416] = 12, + [6366] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(986), 1, + ACTIONS(1034), 1, anon_sym_EQ, - ACTIONS(3343), 1, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -140355,25 +143636,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6502] = 8, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3516), 1, + [6452] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(3551), 1, - anon_sym_QMARK, + ACTIONS(974), 1, + anon_sym_EQ, + ACTIONS(3331), 1, + sym_identifier, + STATE(1602), 1, + sym_string, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3404), 15, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -140382,12 +143666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140403,8 +143685,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140425,22 +143708,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6580] = 12, + anon_sym_instanceof, + anon_sym_satisfies, + [6538] = 12, ACTIONS(150), 1, anon_sym_DQUOTE, ACTIONS(152), 1, anon_sym_SQUOTE, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(984), 1, + ACTIONS(1032), 1, anon_sym_EQ, - ACTIONS(3343), 1, + ACTIONS(3331), 1, sym_identifier, - STATE(1486), 1, - sym_nested_identifier, - STATE(1513), 1, + STATE(1602), 1, sym_string, - STATE(1710), 1, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, sym__module, ACTIONS(5), 2, sym_html_comment, @@ -140499,48 +143784,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6666] = 14, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3412), 1, + [6624] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_QMARK_DOT, - ACTIONS(3444), 1, - anon_sym_LT, - STATE(2829), 1, - sym_arguments, - STATE(2852), 1, - sym_type_arguments, + ACTIONS(1040), 1, + anon_sym_EQ, + ACTIONS(3331), 1, + sym_identifier, + STATE(1602), 1, + sym_string, + STATE(1603), 1, + sym_nested_identifier, + STATE(1712), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3406), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3404), 11, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140556,8 +143833,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 18, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140566,28 +143844,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6756] = 7, - ACTIONS(3535), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6710] = 6, + ACTIONS(3544), 1, anon_sym_AT, - ACTIONS(3553), 1, - anon_sym_class, - STATE(1201), 1, + STATE(1211), 1, aux_sym_export_statement_repeat1, - STATE(1244), 1, + STATE(1256), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 14, + ACTIONS(3542), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -140602,7 +143883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3531), 41, + ACTIONS(3540), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -140611,6 +143892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, + anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, @@ -140644,100 +143926,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [6832] = 12, - ACTIONS(3427), 1, - anon_sym_EQ_GT, - ACTIONS(3448), 1, - anon_sym_EQ, - ACTIONS(3461), 1, - anon_sym_extends, - ACTIONS(3479), 1, - anon_sym_DOT, - ACTIONS(3482), 1, - anon_sym_LT, - STATE(2856), 1, - sym_type_arguments, + [6784] = 7, + ACTIONS(3544), 1, + anon_sym_AT, + ACTIONS(3547), 1, + anon_sym_class, + STATE(1211), 1, + aux_sym_export_statement_repeat1, + STATE(1256), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3463), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3469), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(3542), 14, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3400), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + sym_number, + sym_private_property_identifier, + ACTIONS(3540), 41, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [6918] = 8, - ACTIONS(3412), 1, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [6860] = 8, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(3454), 1, + ACTIONS(859), 1, anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_QMARK, + ACTIONS(863), 1, + anon_sym_COLON, + ACTIONS(3372), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3404), 15, + ACTIONS(162), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140745,12 +144020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140766,8 +144039,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140788,15 +144062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6996] = 6, - ACTIONS(3412), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6937] = 6, + ACTIONS(3426), 1, anon_sym_EQ_GT, - ACTIONS(3475), 1, + ACTIONS(3478), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140812,7 +144088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 20, + ACTIONS(3384), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -140833,7 +144109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140855,40 +144131,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7069] = 6, - ACTIONS(160), 1, - anon_sym_EQ_GT, - ACTIONS(857), 1, + [7010] = 7, + ACTIONS(3452), 1, anon_sym_EQ, + ACTIONS(3501), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 20, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3498), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140900,7 +144161,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140922,15 +144199,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7142] = 6, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3412), 1, - anon_sym_EQ_GT, + [7085] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3400), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3396), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3398), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140946,18 +144255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -140967,8 +144264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + [7154] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3378), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3374), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140989,38 +144295,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7215] = 14, - ACTIONS(3438), 1, + ACTIONS(3376), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3440), 1, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3442), 1, anon_sym_QMARK_DOT, - ACTIONS(3444), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7223] = 14, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, + ACTIONS(3430), 1, anon_sym_LT, - ACTIONS(3556), 1, + ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(3558), 1, + ACTIONS(3552), 1, anon_sym_EQ_GT, - STATE(2829), 1, + STATE(3288), 1, sym_arguments, - STATE(2852), 1, + STATE(3373), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, + ACTIONS(3418), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3418), 3, + ACTIONS(3422), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3404), 12, + ACTIONS(3384), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141030,7 +144370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141046,7 +144386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, + ACTIONS(3380), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141064,38 +144404,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7304] = 14, - ACTIONS(3438), 1, + [7312] = 14, + ACTIONS(3420), 1, anon_sym_LPAREN, - ACTIONS(3440), 1, + ACTIONS(3424), 1, anon_sym_DOT, - ACTIONS(3442), 1, + ACTIONS(3428), 1, anon_sym_QMARK_DOT, - ACTIONS(3444), 1, + ACTIONS(3430), 1, anon_sym_LT, - ACTIONS(3560), 1, + ACTIONS(3554), 1, anon_sym_EQ, - ACTIONS(3562), 1, + ACTIONS(3556), 1, anon_sym_EQ_GT, - STATE(2829), 1, + STATE(3288), 1, sym_arguments, - STATE(2852), 1, + STATE(3373), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, + ACTIONS(3418), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3418), 3, + ACTIONS(3422), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3404), 12, + ACTIONS(3384), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141105,7 +144445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141121,7 +144461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, + ACTIONS(3380), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141139,46 +144479,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7393] = 12, - ACTIONS(3461), 1, - anon_sym_extends, - ACTIONS(3479), 1, - anon_sym_DOT, - ACTIONS(3482), 1, - anon_sym_LT, - ACTIONS(3542), 1, + [7401] = 9, + ACTIONS(869), 1, anon_sym_EQ, - ACTIONS(3544), 1, + ACTIONS(875), 1, anon_sym_EQ_GT, - STATE(2856), 1, - sym_type_arguments, + ACTIONS(1662), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3463), 2, + ACTIONS(3526), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3469), 3, + ACTIONS(3529), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3404), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141194,7 +144512,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, + ACTIONS(162), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141209,30 +144545,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7478] = 7, - ACTIONS(3499), 1, - anon_sym_QMARK, - ACTIONS(3511), 1, - anon_sym_EQ, + [7480] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3514), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3404), 15, + ACTIONS(3400), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3396), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3398), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141242,7 +144614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + [7549] = 6, + ACTIONS(160), 1, + anon_sym_EQ_GT, + ACTIONS(857), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141258,7 +144638,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(162), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141280,14 +144681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7553] = 11, + [7622] = 11, ACTIONS(119), 1, anon_sym_EQ, ACTIONS(160), 1, anon_sym_EQ_GT, ACTIONS(793), 1, anon_sym_QMARK, - ACTIONS(3505), 1, + ACTIONS(3526), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -141295,10 +144696,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(128), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1650), 2, + ACTIONS(1662), 2, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3508), 2, + ACTIONS(3529), 2, anon_sym_AMP, anon_sym_PIPE, ACTIONS(162), 14, @@ -141352,14 +144753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7636] = 4, - ACTIONS(3446), 1, - anon_sym_extends, + [7705] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3384), 22, - anon_sym_STAR, + ACTIONS(3378), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3374), 22, + anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, @@ -141381,15 +144785,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3386), 35, - sym__automatic_semicolon, + ACTIONS(3376), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -141417,23 +144818,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7705] = 9, - ACTIONS(872), 1, - anon_sym_EQ, - ACTIONS(878), 1, + [7774] = 8, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(1650), 1, - anon_sym_extends, + ACTIONS(859), 1, + anon_sym_EQ, + ACTIONS(861), 1, + anon_sym_COLON, + ACTIONS(3372), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 2, + ACTIONS(162), 15, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141450,52 +144862,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7784] = 4, - ACTIONS(3382), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3378), 22, + ACTIONS(122), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141516,66 +144885,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3380), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [7853] = 12, - ACTIONS(3463), 1, + [7851] = 12, + ACTIONS(3461), 1, anon_sym_LBRACK, - ACTIONS(3479), 1, + ACTIONS(3464), 1, anon_sym_DOT, - ACTIONS(3482), 1, + ACTIONS(3470), 1, anon_sym_LT, - ACTIONS(3518), 1, + ACTIONS(3508), 1, anon_sym_EQ, - ACTIONS(3520), 1, + ACTIONS(3510), 1, anon_sym_EQ_GT, - STATE(2856), 1, + STATE(3335), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 2, + ACTIONS(3476), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3469), 3, + ACTIONS(3467), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3404), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -141591,7 +144926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141607,7 +144942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, + ACTIONS(3380), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141625,62 +144960,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7938] = 4, + [7936] = 12, + ACTIONS(3461), 1, + anon_sym_LBRACK, + ACTIONS(3464), 1, + anon_sym_DOT, + ACTIONS(3470), 1, + anon_sym_LT, + ACTIONS(3532), 1, + anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_EQ_GT, + STATE(3335), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 3, + ACTIONS(3476), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3384), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3467), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3386), 33, + ACTIONS(3384), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141690,99 +144999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8007] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3490), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3488), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [8074] = 8, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, - anon_sym_EQ, - ACTIONS(886), 1, - anon_sym_COLON, - ACTIONS(3372), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141798,46 +145015,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3380), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [8151] = 7, - ACTIONS(3454), 1, + [8021] = 7, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3538), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 5, + ACTIONS(3536), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3404), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -141853,7 +145063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141869,7 +145079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141891,110 +145101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8226] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3566), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3564), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [8293] = 13, - ACTIONS(3463), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, + [8096] = 6, + ACTIONS(3416), 1, anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_DOT, - ACTIONS(3482), 1, - anon_sym_LT, - ACTIONS(3516), 1, + ACTIONS(3426), 1, anon_sym_EQ_GT, - ACTIONS(3549), 1, - anon_sym_COLON, - STATE(2856), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3461), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3404), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142010,7 +145125,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 18, + ACTIONS(3384), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142020,97 +145156,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8380] = 3, + [8169] = 4, + ACTIONS(3378), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3570), 15, - anon_sym_LBRACE, + ACTIONS(3374), 22, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3376), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3568), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [8447] = 7, - ACTIONS(3475), 1, + anon_sym_satisfies, + [8238] = 8, + ACTIONS(715), 1, + anon_sym_EQ_GT, + ACTIONS(859), 1, anon_sym_EQ, - ACTIONS(3551), 1, - anon_sym_QMARK, + ACTIONS(881), 1, + anon_sym_COLON, + ACTIONS(3372), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3404), 15, + ACTIONS(162), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142118,12 +145258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142139,8 +145277,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142161,32 +145300,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8522] = 11, - ACTIONS(224), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [8315] = 13, + ACTIONS(3461), 1, + anon_sym_LBRACK, + ACTIONS(3464), 1, + anon_sym_DOT, + ACTIONS(3470), 1, + anon_sym_LT, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(229), 1, + ACTIONS(3517), 1, anon_sym_EQ_GT, - ACTIONS(793), 1, - anon_sym_QMARK, - ACTIONS(3505), 1, - anon_sym_LBRACK, + ACTIONS(3536), 1, + anon_sym_COLON, + STATE(3335), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(227), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1650), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3508), 2, + ACTIONS(3467), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(162), 14, + ACTIONS(3476), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3384), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142197,7 +145341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142213,7 +145357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3380), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142229,39 +145373,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8605] = 12, - ACTIONS(3463), 1, + [8402] = 14, + ACTIONS(3416), 1, + anon_sym_EQ, + ACTIONS(3426), 1, + anon_sym_EQ_GT, + ACTIONS(3461), 1, anon_sym_LBRACK, - ACTIONS(3479), 1, + ACTIONS(3464), 1, anon_sym_DOT, - ACTIONS(3482), 1, + ACTIONS(3470), 1, anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3503), 1, - anon_sym_EQ_GT, - STATE(2856), 1, + ACTIONS(3476), 1, + anon_sym_extends, + ACTIONS(3536), 1, + anon_sym_COLON, + STATE(3335), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3469), 3, - anon_sym_GT, + ACTIONS(3467), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3404), 15, - sym__automatic_semicolon, + ACTIONS(3558), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3384), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142272,7 +145416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142288,10 +145432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, + ACTIONS(3380), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142306,35 +145451,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8690] = 14, - ACTIONS(3438), 1, + [8491] = 14, + ACTIONS(3420), 1, anon_sym_LPAREN, - ACTIONS(3440), 1, + ACTIONS(3424), 1, anon_sym_DOT, - ACTIONS(3442), 1, + ACTIONS(3428), 1, anon_sym_QMARK_DOT, - ACTIONS(3444), 1, + ACTIONS(3430), 1, anon_sym_LT, - ACTIONS(3475), 1, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(3516), 1, + ACTIONS(3517), 1, anon_sym_EQ_GT, - STATE(2829), 1, + STATE(3288), 1, sym_arguments, - STATE(2852), 1, + STATE(3373), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 2, + ACTIONS(3422), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3406), 4, + ACTIONS(3418), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3404), 11, + ACTIONS(3384), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LT_EQ, @@ -142346,7 +145491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142362,7 +145507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 18, + ACTIONS(3380), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142381,34 +145526,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8779] = 8, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, + [8580] = 11, + ACTIONS(224), 1, anon_sym_EQ, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(3372), 1, - sym_identifier, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(793), 1, + anon_sym_QMARK, + ACTIONS(3526), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(227), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1662), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3529), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(162), 14, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_satisfies, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -142425,9 +145578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(122), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142436,9 +145588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -142448,85 +145598,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [8856] = 8, + [8663] = 9, ACTIONS(715), 1, anon_sym_EQ_GT, ACTIONS(859), 1, anon_sym_EQ, - ACTIONS(884), 1, - anon_sym_COLON, - ACTIONS(3372), 1, - sym_identifier, + ACTIONS(1662), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3526), 2, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3529), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [8933] = 6, - ACTIONS(160), 1, - anon_sym_EQ_GT, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -142543,16 +145631,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 20, + ACTIONS(162), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142564,19 +145649,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -142586,35 +145668,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9006] = 14, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3412), 1, - anon_sym_EQ_GT, - ACTIONS(3461), 1, - anon_sym_extends, - ACTIONS(3463), 1, - anon_sym_LBRACK, - ACTIONS(3479), 1, + [8742] = 12, + ACTIONS(3464), 1, anon_sym_DOT, - ACTIONS(3482), 1, + ACTIONS(3470), 1, anon_sym_LT, - ACTIONS(3549), 1, - anon_sym_COLON, - STATE(2856), 1, + ACTIONS(3476), 1, + anon_sym_extends, + ACTIONS(3522), 1, + anon_sym_EQ, + ACTIONS(3524), 1, + anon_sym_EQ_GT, + STATE(3335), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 2, + ACTIONS(3461), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3467), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3572), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3404), 13, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142626,7 +145706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + anon_sym_implements, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142642,11 +145723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 18, + ACTIONS(3380), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142661,47 +145741,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9095] = 4, + [8827] = 7, + ACTIONS(3501), 1, + anon_sym_QMARK, + ACTIONS(3512), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3382), 3, + ACTIONS(3515), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3378), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3380), 33, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142717,27 +145787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [9164] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3446), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3384), 22, + ACTIONS(3380), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142758,15 +145809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3386), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [8902] = 6, + ACTIONS(160), 1, + anon_sym_EQ_GT, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142782,6 +145833,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(162), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142791,11 +145854,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9233] = 3, + ACTIONS(122), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8975] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3578), 15, + ACTIONS(3564), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -142811,7 +145896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3576), 43, + ACTIONS(3562), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -142820,6 +145905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, + anon_sym_DOT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -142854,17 +145940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [9300] = 4, + [9042] = 4, + ACTIONS(3400), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3382), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3378), 22, + ACTIONS(3396), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -142887,12 +145969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3380), 32, + ACTIONS(3398), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142920,20 +146005,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9369] = 9, - ACTIONS(715), 1, + [9111] = 9, + ACTIONS(908), 1, anon_sym_EQ_GT, - ACTIONS(859), 1, + ACTIONS(914), 1, anon_sym_EQ, - ACTIONS(1650), 1, - anon_sym_extends, + ACTIONS(3526), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 2, + ACTIONS(1662), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3508), 3, + anon_sym_extends, + ACTIONS(3529), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -142953,11 +146038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 17, + ACTIONS(162), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_DOT, @@ -142990,15 +146074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9448] = 6, - ACTIONS(3427), 1, - anon_sym_EQ_GT, - ACTIONS(3475), 1, + [9189] = 6, + ACTIONS(3448), 1, anon_sym_EQ, + ACTIONS(3450), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143014,13 +146098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 19, + ACTIONS(3384), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -143034,7 +146118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143056,30 +146140,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9520] = 11, - ACTIONS(160), 1, + [9261] = 6, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(847), 1, - anon_sym_COLON, - ACTIONS(857), 1, + ACTIONS(851), 1, anon_sym_EQ, - ACTIONS(1650), 1, - anon_sym_extends, - ACTIONS(3505), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3580), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(162), 14, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(162), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143091,7 +146184,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(122), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9333] = 5, + ACTIONS(3478), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143107,7 +146228,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3384), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143117,7 +146259,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -143127,26 +146271,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9602] = 8, - ACTIONS(160), 1, - anon_sym_EQ_GT, - ACTIONS(847), 1, - anon_sym_COLON, - ACTIONS(857), 1, + [9403] = 12, + ACTIONS(3416), 1, anon_sym_EQ, + ACTIONS(3426), 1, + anon_sym_EQ_GT, + ACTIONS(3464), 1, + anon_sym_DOT, + ACTIONS(3470), 1, + anon_sym_LT, + ACTIONS(3476), 1, + anon_sym_extends, + STATE(3335), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(888), 3, - anon_sym_COMMA, + ACTIONS(3461), 2, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(162), 15, + anon_sym_LBRACK, + ACTIONS(3467), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3384), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -143157,7 +146308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143173,7 +146324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3380), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143183,23 +146334,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9678] = 6, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(878), 1, + [9487] = 6, + ACTIONS(715), 1, anon_sym_EQ_GT, + ACTIONS(859), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -143224,8 +146372,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -143261,13 +146409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9750] = 5, - ACTIONS(3402), 1, + [9559] = 6, + ACTIONS(3389), 1, + anon_sym_EQ_GT, + ACTIONS(3480), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143283,16 +146433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 20, + ACTIONS(3384), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143304,7 +146453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143326,11 +146475,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9820] = 3, + [9631] = 12, + ACTIONS(3461), 1, + anon_sym_LBRACK, + ACTIONS(3464), 1, + anon_sym_DOT, + ACTIONS(3470), 1, + anon_sym_LT, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(3552), 1, + anon_sym_EQ_GT, + STATE(3335), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3396), 22, + ACTIONS(3476), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3467), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3384), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9715] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3402), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -143353,7 +146574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3398), 35, + ACTIONS(3404), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143389,143 +146610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9886] = 6, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(841), 1, - anon_sym_EQ, + [9781] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9958] = 6, - ACTIONS(3452), 1, - anon_sym_EQ_GT, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3400), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10030] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3434), 22, + ACTIONS(3444), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -143548,7 +146637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3436), 35, + ACTIONS(3446), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143584,45 +146673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10096] = 3, + [9847] = 6, + ACTIONS(3450), 1, + anon_sym_EQ_GT, + ACTIONS(3478), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3374), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3376), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143638,69 +146697,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [10162] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3384), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3386), 35, + ACTIONS(3384), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143710,13 +146717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10228] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3378), 22, + ACTIONS(3380), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143737,18 +146739,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3380), 35, - sym__automatic_semicolon, + [9919] = 12, + ACTIONS(3461), 1, + anon_sym_LBRACK, + ACTIONS(3464), 1, + anon_sym_DOT, + ACTIONS(3470), 1, + anon_sym_LT, + ACTIONS(3554), 1, + anon_sym_EQ, + ACTIONS(3556), 1, + anon_sym_EQ_GT, + STATE(3335), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3476), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3467), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3384), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143764,54 +146793,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [10294] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3388), 22, + ACTIONS(3380), 17, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3390), 35, - sym__automatic_semicolon, + [10003] = 10, + ACTIONS(119), 1, + anon_sym_EQ, + ACTIONS(160), 1, + anon_sym_EQ_GT, + ACTIONS(1664), 1, + anon_sym_QMARK, + ACTIONS(3526), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3529), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1662), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143827,22 +146861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [10360] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3392), 22, + ACTIONS(122), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143851,9 +146871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -143863,33 +146881,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3394), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [10083] = 8, + ACTIONS(160), 1, + anon_sym_EQ_GT, + ACTIONS(853), 1, + anon_sym_COLON, + ACTIONS(857), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(905), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(162), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143899,18 +146911,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10426] = 8, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, - anon_sym_EQ, - ACTIONS(861), 1, - anon_sym_in, - ACTIONS(3584), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -143927,28 +146927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143967,79 +146949,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10502] = 6, - ACTIONS(3427), 1, - anon_sym_EQ_GT, - ACTIONS(3448), 1, - anon_sym_EQ, + [10159] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3568), 15, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3400), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3566), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10574] = 7, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [10225] = 6, + ACTIONS(851), 1, anon_sym_EQ, - ACTIONS(884), 1, - anon_sym_COLON, + ACTIONS(875), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -144059,12 +147036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 18, + ACTIONS(162), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -144100,17 +147078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10648] = 7, - ACTIONS(866), 1, + [10297] = 7, + ACTIONS(861), 1, anon_sym_COLON, - ACTIONS(3427), 1, + ACTIONS(3389), 1, anon_sym_EQ_GT, - ACTIONS(3448), 1, + ACTIONS(3480), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144126,7 +147104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 18, + ACTIONS(3384), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144145,7 +147123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144167,17 +147145,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10722] = 7, - ACTIONS(715), 1, + [10371] = 8, + ACTIONS(3389), 1, anon_sym_EQ_GT, - ACTIONS(859), 1, + ACTIONS(3480), 1, anon_sym_EQ, - ACTIONS(866), 1, - anon_sym_COLON, + ACTIONS(3570), 1, + anon_sym_in, + ACTIONS(3573), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144193,7 +147173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 18, + ACTIONS(3384), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144212,10 +147192,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3380), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144234,93 +147213,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10796] = 14, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_QMARK_DOT, - ACTIONS(3444), 1, - anon_sym_LT, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3516), 1, - anon_sym_EQ_GT, - STATE(2829), 1, - sym_arguments, - STATE(2852), 1, - sym_type_arguments, + [10447] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, - anon_sym_COMMA, + ACTIONS(3490), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3418), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3404), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3488), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10884] = 8, - ACTIONS(3427), 1, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [10513] = 6, + ACTIONS(3389), 1, anon_sym_EQ_GT, - ACTIONS(3448), 1, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_in, - ACTIONS(3589), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144336,11 +147300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 18, + ACTIONS(3384), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -144355,9 +147320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 20, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144376,63 +147342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10960] = 14, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_QMARK_DOT, - ACTIONS(3444), 1, - anon_sym_LT, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3516), 1, - anon_sym_EQ_GT, - STATE(2829), 1, - sym_arguments, - STATE(2852), 1, - sym_type_arguments, + [10585] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3406), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3404), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 18, + ACTIONS(2481), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144441,22 +147357,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11048] = 5, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3416), 15, + ACTIONS(2479), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144472,18 +147396,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 20, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144493,37 +147405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11118] = 6, - ACTIONS(872), 1, + [10651] = 5, + ACTIONS(3416), 1, anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144539,15 +147427,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 19, - sym__automatic_semicolon, + ACTIONS(3384), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144559,7 +147448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144581,7 +147470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11190] = 3, + [10721] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -144644,87 +147533,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11256] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2461), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2459), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [11322] = 9, - ACTIONS(912), 1, - anon_sym_EQ, - ACTIONS(918), 1, + [10787] = 7, + ACTIONS(863), 1, + anon_sym_COLON, + ACTIONS(3389), 1, anon_sym_EQ_GT, - ACTIONS(1650), 1, - anon_sym_extends, + ACTIONS(3480), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144740,11 +147559,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 16, + ACTIONS(3384), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144756,17 +147578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 18, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -144776,31 +147600,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11400] = 10, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(841), 1, + [10861] = 14, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, + ACTIONS(3430), 1, + anon_sym_LT, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(847), 1, - anon_sym_COLON, - ACTIONS(3505), 1, - anon_sym_LBRACK, + ACTIONS(3517), 1, + anon_sym_EQ_GT, + STATE(3288), 1, + sym_arguments, + STATE(3373), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, + ACTIONS(3422), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1650), 3, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3418), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(162), 14, + ACTIONS(3384), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144810,7 +147639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144826,7 +147655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3380), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144842,44 +147671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11480] = 10, - ACTIONS(119), 1, - anon_sym_EQ, - ACTIONS(160), 1, + [10949] = 7, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(1652), 1, - anon_sym_QMARK, - ACTIONS(3505), 1, - anon_sym_LBRACK, + ACTIONS(859), 1, + anon_sym_EQ, + ACTIONS(861), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1650), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(162), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -144896,7 +147700,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(162), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144906,7 +147729,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -144916,20 +147741,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11560] = 9, - ACTIONS(946), 1, + [11023] = 9, + ACTIONS(926), 1, anon_sym_EQ, - ACTIONS(952), 1, + ACTIONS(932), 1, anon_sym_EQ_GT, - ACTIONS(3505), 1, + ACTIONS(3526), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1650), 2, + ACTIONS(1662), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3508), 3, + ACTIONS(3529), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -144985,17 +147810,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11638] = 7, - ACTIONS(886), 1, - anon_sym_COLON, - ACTIONS(3427), 1, + [11101] = 7, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(3448), 1, + ACTIONS(859), 1, anon_sym_EQ, + ACTIONS(863), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145011,7 +147836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 18, + ACTIONS(162), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145030,7 +147855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145052,13 +147877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11712] = 7, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, + [11175] = 6, + ACTIONS(869), 1, anon_sym_EQ, - ACTIONS(886), 1, - anon_sym_COLON, + ACTIONS(875), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -145078,12 +147901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 18, + ACTIONS(162), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -145119,23 +147943,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11786] = 9, - ACTIONS(924), 1, + [11247] = 7, + ACTIONS(715), 1, anon_sym_EQ_GT, - ACTIONS(932), 1, + ACTIONS(859), 1, anon_sym_EQ, - ACTIONS(3505), 1, - anon_sym_LBRACK, + ACTIONS(881), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1650), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -145152,12 +147969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 16, + ACTIONS(162), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -145169,16 +147988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -145188,15 +148010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11864] = 6, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3452), 1, + [11321] = 8, + ACTIONS(715), 1, anon_sym_EQ_GT, + ACTIONS(859), 1, + anon_sym_EQ, + ACTIONS(883), 1, + anon_sym_in, + ACTIONS(3575), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145212,13 +148038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 19, + ACTIONS(162), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -145232,10 +148057,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(122), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145254,45 +148078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11936] = 12, - ACTIONS(3463), 1, - anon_sym_LBRACK, - ACTIONS(3479), 1, - anon_sym_DOT, - ACTIONS(3482), 1, - anon_sym_LT, - ACTIONS(3556), 1, + [11397] = 9, + ACTIONS(942), 1, anon_sym_EQ, - ACTIONS(3558), 1, + ACTIONS(948), 1, anon_sym_EQ_GT, - STATE(2856), 1, - sym_type_arguments, + ACTIONS(1662), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 2, + ACTIONS(3526), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3469), 3, + anon_sym_LBRACK, + ACTIONS(3529), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3404), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145308,52 +148111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12020] = 12, - ACTIONS(3463), 1, - anon_sym_LBRACK, - ACTIONS(3479), 1, - anon_sym_DOT, - ACTIONS(3482), 1, - anon_sym_LT, - ACTIONS(3560), 1, - anon_sym_EQ, - ACTIONS(3562), 1, - anon_sym_EQ_GT, - STATE(2856), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3461), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3469), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3404), 14, + ACTIONS(162), 16, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -145364,23 +148127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, + anon_sym_implements, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145395,102 +148143,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12104] = 6, - ACTIONS(715), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, - anon_sym_EQ, + [11475] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3579), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3577), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [11541] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3583), 15, + anon_sym_LBRACE, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3581), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12176] = 12, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3412), 1, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [11607] = 10, + ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(3461), 1, - anon_sym_extends, - ACTIONS(3479), 1, - anon_sym_DOT, - ACTIONS(3482), 1, - anon_sym_LT, - STATE(2856), 1, - sym_type_arguments, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(853), 1, + anon_sym_COLON, + ACTIONS(3526), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3463), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3469), 2, + ACTIONS(3529), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3404), 14, + ACTIONS(1662), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -145501,7 +148307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145517,7 +148323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 18, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145533,20 +148339,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12260] = 7, - ACTIONS(884), 1, + [11687] = 7, + ACTIONS(881), 1, anon_sym_COLON, - ACTIONS(3427), 1, + ACTIONS(3389), 1, anon_sym_EQ_GT, - ACTIONS(3448), 1, + ACTIONS(3480), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145562,7 +148369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 18, + ACTIONS(3384), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145581,7 +148388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145603,27 +148410,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12334] = 9, - ACTIONS(128), 1, - anon_sym_RBRACK, - ACTIONS(227), 1, - anon_sym_COMMA, - ACTIONS(895), 1, + [11761] = 14, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, + ACTIONS(3430), 1, + anon_sym_LT, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(900), 1, - anon_sym_COLON, - ACTIONS(904), 1, + ACTIONS(3517), 1, anon_sym_EQ_GT, + STATE(3288), 1, + sym_arguments, + STATE(3373), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 15, + ACTIONS(3418), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3422), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3384), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145633,7 +148450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145649,8 +148466,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3380), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11849] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3406), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145671,15 +148511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12411] = 6, - ACTIONS(3542), 1, - anon_sym_EQ, - ACTIONS(3544), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3416), 15, + ACTIONS(3408), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145695,15 +148538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145713,37 +148547,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3400), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12482] = 4, + [11915] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3384), 22, + ACTIONS(3410), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -145766,11 +148574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3386), 32, + ACTIONS(3412), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -145799,32 +148610,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12549] = 7, - ACTIONS(924), 1, - anon_sym_EQ_GT, - ACTIONS(932), 1, - anon_sym_EQ, - ACTIONS(3591), 1, - sym_identifier, + [11981] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 14, + ACTIONS(3432), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3434), 35, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145840,9 +148664,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [12047] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3396), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145863,19 +148700,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [12622] = 7, - ACTIONS(3448), 1, - anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_in, - ACTIONS(3589), 1, + ACTIONS(3398), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3416), 15, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145891,16 +148727,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145910,9 +148736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 20, + [12113] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3374), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145931,32 +148763,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12695] = 7, - ACTIONS(924), 1, - anon_sym_EQ_GT, - ACTIONS(932), 1, - anon_sym_EQ, - ACTIONS(3372), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(162), 14, + ACTIONS(3376), 35, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145972,48 +148790,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [12768] = 7, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3412), 1, + [12179] = 11, + ACTIONS(160), 1, anon_sym_EQ_GT, + ACTIONS(853), 1, + anon_sym_COLON, + ACTIONS(857), 1, + anon_sym_EQ, + ACTIONS(1662), 1, + anon_sym_extends, + ACTIONS(3526), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 3, + ACTIONS(3529), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3585), 2, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(3404), 15, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146025,7 +148834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146041,7 +148850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146051,9 +148860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -146063,76 +148870,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12841] = 4, + [12261] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3382), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3378), 22, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3591), 15, + anon_sym_LBRACE, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3380), 32, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [12908] = 5, - ACTIONS(3448), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3589), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [12327] = 7, + ACTIONS(3480), 1, anon_sym_EQ, + ACTIONS(3570), 1, + anon_sym_in, + ACTIONS(3573), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146148,12 +148959,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 19, + ACTIONS(3384), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -146168,10 +148978,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3380), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146190,15 +148999,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12977] = 6, - ACTIONS(912), 1, + [12400] = 6, + ACTIONS(3522), 1, anon_sym_EQ, - ACTIONS(918), 1, + ACTIONS(3524), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146214,7 +149023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 18, + ACTIONS(3384), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -146233,7 +149042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(122), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146255,86 +149064,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13048] = 12, - ACTIONS(3463), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_DOT, - ACTIONS(3482), 1, - anon_sym_LT, - ACTIONS(3516), 1, - anon_sym_EQ_GT, - STATE(2856), 1, - sym_type_arguments, + [12471] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 2, + ACTIONS(3400), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3469), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3404), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13131] = 5, - ACTIONS(3446), 1, - anon_sym_extends, - ACTIONS(3596), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3384), 22, + ACTIONS(3396), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146357,13 +149094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3386), 32, + ACTIONS(3398), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -146390,15 +149127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13200] = 5, - ACTIONS(3382), 1, - anon_sym_extends, - ACTIONS(3598), 1, - anon_sym_QMARK, + [12538] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3378), 22, + ACTIONS(3378), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3374), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146421,13 +149157,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3380), 32, + ACTIONS(3376), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -146454,10 +149190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13269] = 6, - ACTIONS(841), 1, + [12605] = 6, + ACTIONS(851), 1, anon_sym_EQ, - ACTIONS(918), 1, + ACTIONS(948), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -146519,13 +149255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13340] = 5, - ACTIONS(3450), 1, + [12676] = 6, + ACTIONS(3478), 1, anon_sym_EQ, + ACTIONS(3524), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146541,14 +149279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 19, - sym__automatic_semicolon, + ACTIONS(3384), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146561,7 +149297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + anon_sym_implements, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146583,22 +149320,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13409] = 7, - ACTIONS(3402), 1, + [12747] = 7, + ACTIONS(908), 1, + anon_sym_EQ_GT, + ACTIONS(914), 1, anon_sym_EQ, - ACTIONS(3549), 1, - anon_sym_COLON, + ACTIONS(3372), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3404), 15, + ACTIONS(162), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146606,12 +149342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146627,8 +149361,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -146649,23 +149384,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13482] = 10, - ACTIONS(3496), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [12820] = 9, + ACTIONS(128), 1, anon_sym_RBRACK, - ACTIONS(3514), 1, + ACTIONS(227), 1, anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_EQ_GT, - ACTIONS(3600), 1, + ACTIONS(892), 1, anon_sym_EQ, - ACTIONS(3603), 1, - anon_sym_in, - ACTIONS(3605), 1, + ACTIONS(897), 1, anon_sym_COLON, + ACTIONS(901), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -146681,7 +149416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146697,9 +149432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 20, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146718,39 +149454,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13561] = 9, - ACTIONS(904), 1, - anon_sym_EQ_GT, - ACTIONS(926), 1, + [12897] = 6, + ACTIONS(942), 1, anon_sym_EQ, - ACTIONS(3505), 1, - anon_sym_LBRACK, + ACTIONS(948), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1650), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(162), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -146767,16 +149478,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(162), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -146786,39 +149519,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13638] = 9, - ACTIONS(960), 1, - anon_sym_EQ, - ACTIONS(966), 1, + [12968] = 7, + ACTIONS(908), 1, anon_sym_EQ_GT, - ACTIONS(3505), 1, - anon_sym_LBRACK, + ACTIONS(914), 1, + anon_sym_EQ, + ACTIONS(3593), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1650), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(162), 15, + ACTIONS(162), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -146835,16 +149560,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -146854,15 +149583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13715] = 6, - ACTIONS(3475), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [13041] = 5, + ACTIONS(3480), 1, anon_sym_EQ, - ACTIONS(3544), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146878,12 +149607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 18, + ACTIONS(3384), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146896,8 +149627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146919,27 +149649,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13786] = 9, - ACTIONS(160), 1, + [13110] = 10, + ACTIONS(3498), 1, + anon_sym_RBRACK, + ACTIONS(3515), 1, + anon_sym_COMMA, + ACTIONS(3556), 1, anon_sym_EQ_GT, - ACTIONS(857), 1, + ACTIONS(3595), 1, anon_sym_EQ, - ACTIONS(1650), 1, - anon_sym_extends, + ACTIONS(3598), 1, + anon_sym_in, + ACTIONS(3600), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(162), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146951,7 +149681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146967,17 +149697,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3380), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -146987,14 +149718,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13863] = 6, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(952), 1, + [13189] = 9, + ACTIONS(160), 1, anon_sym_EQ_GT, + ACTIONS(857), 1, + anon_sym_EQ, + ACTIONS(1662), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(3526), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3529), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(162), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -147011,25 +149766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147039,9 +149776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -147051,15 +149786,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13933] = 6, - ACTIONS(924), 1, - anon_sym_EQ_GT, - ACTIONS(932), 1, + [13266] = 5, + ACTIONS(3448), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147075,11 +149808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 17, + ACTIONS(3384), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -147093,7 +149828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147115,197 +149850,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14003] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, + [13335] = 9, + ACTIONS(901), 1, + anon_sym_EQ_GT, + ACTIONS(936), 1, + anon_sym_EQ, + ACTIONS(3526), 1, anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3613), 2, + ACTIONS(1662), 2, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3615), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3753), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [14123] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, + anon_sym_extends, + ACTIONS(3529), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(162), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3237), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3239), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3830), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [14243] = 8, - ACTIONS(3556), 1, - anon_sym_EQ, - ACTIONS(3558), 1, - anon_sym_EQ_GT, - ACTIONS(3603), 1, - anon_sym_in, - ACTIONS(3605), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3416), 15, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147321,35 +149899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3400), 20, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -147359,28 +149918,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14317] = 9, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(3505), 1, + [13412] = 12, + ACTIONS(3461), 1, anon_sym_LBRACK, + ACTIONS(3464), 1, + anon_sym_DOT, + ACTIONS(3470), 1, + anon_sym_LT, + ACTIONS(3478), 1, + anon_sym_EQ, + ACTIONS(3517), 1, + anon_sym_EQ_GT, + STATE(3335), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1650), 2, + ACTIONS(3476), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3508), 3, + ACTIONS(3467), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(162), 14, + ACTIONS(3384), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147391,7 +149955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147407,7 +149971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(3380), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147422,23 +149986,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14393] = 8, - ACTIONS(128), 1, - anon_sym_RBRACK, - ACTIONS(227), 1, - anon_sym_COMMA, - ACTIONS(895), 1, + [13495] = 7, + ACTIONS(3416), 1, anon_sym_EQ, - ACTIONS(904), 1, - anon_sym_EQ_GT, + ACTIONS(3536), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 15, + ACTIONS(3602), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147454,7 +150017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147470,7 +150033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147492,50 +150055,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14467] = 6, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3503), 1, - anon_sym_EQ_GT, + [13568] = 5, + ACTIONS(3378), 1, + anon_sym_extends, + ACTIONS(3605), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3374), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147556,108 +150086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14537] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3376), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3635), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3637), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3874), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [14657] = 8, - ACTIONS(3556), 1, - anon_sym_EQ, - ACTIONS(3558), 1, - anon_sym_EQ_GT, - ACTIONS(3603), 1, - anon_sym_in, - ACTIONS(3639), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3416), 15, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147673,12 +150110,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 16, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13637] = 9, + ACTIONS(956), 1, + anon_sym_EQ_GT, + ACTIONS(962), 1, + anon_sym_EQ, + ACTIONS(3526), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1662), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3529), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -147690,18 +150152,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 20, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -147711,15 +150187,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14731] = 6, - ACTIONS(946), 1, - anon_sym_EQ, - ACTIONS(952), 1, - anon_sym_EQ_GT, + [13714] = 5, + ACTIONS(3400), 1, + anon_sym_extends, + ACTIONS(3607), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3396), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3398), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147735,15 +150242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147753,41 +150251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14801] = 8, - ACTIONS(3496), 1, - anon_sym_RBRACK, - ACTIONS(3514), 1, - anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_EQ_GT, - ACTIONS(3600), 1, + [13783] = 7, + ACTIONS(3416), 1, anon_sym_EQ, + ACTIONS(3426), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(3602), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147803,7 +150279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147819,7 +150295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147841,15 +150317,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14875] = 6, - ACTIONS(3518), 1, + [13856] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, + anon_sym_STAR, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, + anon_sym_readonly, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, + sym_decorator, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, + sym_override_modifier, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3615), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3617), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3625), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3631), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4401), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3609), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [13976] = 6, + ACTIONS(3508), 1, anon_sym_EQ, - ACTIONS(3520), 1, + ACTIONS(3510), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147865,7 +150430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 17, + ACTIONS(3384), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -147883,7 +150448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147905,14 +150470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14945] = 4, + [14046] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 2, + ACTIONS(3378), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3384), 22, + ACTIONS(3374), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147935,7 +150500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3386), 31, + ACTIONS(3376), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147967,133 +150532,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15011] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, + [14112] = 9, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(3526), 1, anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3207), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3231), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3911), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [15131] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3382), 2, + ACTIONS(1662), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3378), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3529), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3380), 31, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148109,92 +150580,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [15197] = 31, + ACTIONS(122), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [14188] = 31, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3641), 2, + ACTIONS(3637), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3643), 2, + ACTIONS(3639), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3771), 6, + STATE(4438), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -148207,36 +150688,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15317] = 6, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3520), 1, + [14308] = 8, + ACTIONS(3498), 1, + anon_sym_RBRACK, + ACTIONS(3515), 1, + anon_sym_COMMA, + ACTIONS(3556), 1, anon_sym_EQ_GT, + ACTIONS(3595), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 17, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148249,7 +150716,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148271,13 +150754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15387] = 7, - ACTIONS(904), 1, + [14382] = 7, + ACTIONS(897), 1, + anon_sym_COLON, + ACTIONS(901), 1, anon_sym_EQ_GT, - ACTIONS(926), 1, + ACTIONS(936), 1, anon_sym_EQ, - ACTIONS(940), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -148336,14 +150819,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15459] = 6, - ACTIONS(841), 1, + [14454] = 8, + ACTIONS(128), 1, + anon_sym_RBRACK, + ACTIONS(227), 1, + anon_sym_COMMA, + ACTIONS(892), 1, anon_sym_EQ, - ACTIONS(924), 1, + ACTIONS(901), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(162), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -148360,24 +150863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, @@ -148400,13 +150885,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15529] = 5, - ACTIONS(3542), 1, + [14528] = 8, + ACTIONS(3554), 1, anon_sym_EQ, + ACTIONS(3556), 1, + anon_sym_EQ_GT, + ACTIONS(3598), 1, + anon_sym_in, + ACTIONS(3600), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148422,13 +150913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 18, + ACTIONS(3384), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148440,11 +150930,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3400), 21, + ACTIONS(3380), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148463,15 +150951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15597] = 6, - ACTIONS(3501), 1, + [14602] = 6, + ACTIONS(3532), 1, anon_sym_EQ, - ACTIONS(3503), 1, + ACTIONS(3534), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148487,7 +150975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 17, + ACTIONS(3384), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148505,7 +150993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148527,83 +151015,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15667] = 31, + [14672] = 31, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3645), 2, + ACTIONS(3641), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3647), 2, + ACTIONS(3643), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3802), 6, + STATE(4515), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -148616,13 +151104,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15787] = 7, - ACTIONS(900), 1, - anon_sym_COLON, - ACTIONS(904), 1, - anon_sym_EQ_GT, + [14792] = 6, ACTIONS(926), 1, anon_sym_EQ, + ACTIONS(932), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -148642,12 +151128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 16, + ACTIONS(162), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148681,15 +151168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15859] = 6, - ACTIONS(3556), 1, + [14862] = 6, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(3558), 1, + ACTIONS(3510), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148705,12 +151192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 16, + ACTIONS(3384), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148722,7 +151210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148744,75 +151232,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15928] = 8, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3516), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_in, - ACTIONS(3589), 1, - anon_sym_of, + [14932] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, + anon_sym_STAR, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, + anon_sym_readonly, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, + sym_decorator, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, + sym_override_modifier, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3195), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16001] = 6, - ACTIONS(904), 1, + ACTIONS(3219), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3625), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3631), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4277), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3609), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [15052] = 6, + ACTIONS(908), 1, anon_sym_EQ_GT, - ACTIONS(926), 1, + ACTIONS(914), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -148833,12 +151345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 16, + ACTIONS(162), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148872,15 +151385,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16070] = 6, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(904), 1, - anon_sym_EQ_GT, + [15122] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3400), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3396), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3398), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148896,14 +151438,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -148913,37 +151447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16139] = 6, - ACTIONS(960), 1, + [15188] = 6, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(966), 1, + ACTIONS(3534), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148959,11 +151471,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 16, + ACTIONS(3384), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148976,7 +151489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148998,13 +151511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16208] = 5, - ACTIONS(3518), 1, + [15258] = 6, + ACTIONS(851), 1, anon_sym_EQ, + ACTIONS(932), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149020,7 +151535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 17, + ACTIONS(162), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -149038,7 +151553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149060,15 +151575,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16275] = 6, - ACTIONS(841), 1, + [15328] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, + anon_sym_STAR, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, + anon_sym_readonly, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, + sym_decorator, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, + sym_override_modifier, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3311), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3313), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3625), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3631), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4284), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3609), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [15448] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, + anon_sym_STAR, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, + anon_sym_readonly, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, + sym_decorator, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, + sym_override_modifier, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3625), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3631), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3645), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3647), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4454), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3609), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [15568] = 5, + ACTIONS(3522), 1, anon_sym_EQ, - ACTIONS(966), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149084,11 +151775,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(162), 16, + ACTIONS(3384), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149101,7 +151793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + anon_sym_implements, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149123,13 +151816,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16344] = 5, - ACTIONS(3501), 1, + [15636] = 6, + ACTIONS(851), 1, anon_sym_EQ, + ACTIONS(908), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149145,7 +151840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 17, + ACTIONS(162), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149163,7 +151858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149185,15 +151880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16411] = 6, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3558), 1, + [15706] = 7, + ACTIONS(901), 1, anon_sym_EQ_GT, + ACTIONS(936), 1, + anon_sym_EQ, + ACTIONS(954), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149209,7 +151906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 16, + ACTIONS(162), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -149226,7 +151923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149248,15 +151945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16480] = 6, - ACTIONS(3560), 1, + [15778] = 8, + ACTIONS(3554), 1, anon_sym_EQ, - ACTIONS(3562), 1, + ACTIONS(3556), 1, anon_sym_EQ_GT, + ACTIONS(3598), 1, + anon_sym_in, + ACTIONS(3649), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149272,12 +151973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 16, + ACTIONS(3384), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149289,10 +151990,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3380), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149311,15 +152011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16549] = 6, - ACTIONS(3475), 1, + [15852] = 6, + ACTIONS(3554), 1, anon_sym_EQ, - ACTIONS(3562), 1, + ACTIONS(3556), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149335,12 +152035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 16, + ACTIONS(3384), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149352,7 +152052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149374,14 +152074,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16618] = 8, + [15921] = 8, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(841), 1, + ACTIONS(851), 1, anon_sym_EQ, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_in, - ACTIONS(3584), 1, + ACTIONS(3575), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, @@ -149439,17 +152139,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16691] = 7, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(841), 1, + [15994] = 8, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(847), 1, - anon_sym_COLON, + ACTIONS(3517), 1, + anon_sym_EQ_GT, + ACTIONS(3570), 1, + anon_sym_in, + ACTIONS(3573), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -149465,7 +152167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149481,10 +152183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3380), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149503,20 +152204,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16762] = 7, - ACTIONS(3496), 1, - anon_sym_RBRACK, - ACTIONS(3514), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + [16067] = 6, + ACTIONS(3550), 1, anon_sym_EQ, + ACTIONS(3552), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3384), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149529,7 +152245,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16136] = 6, + ACTIONS(3478), 1, + anon_sym_EQ, + ACTIONS(3552), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149545,7 +152291,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(3384), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149567,13 +152330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16833] = 5, - ACTIONS(3560), 1, + [16205] = 6, + ACTIONS(851), 1, anon_sym_EQ, + ACTIONS(901), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149589,12 +152354,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 16, + ACTIONS(162), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149606,7 +152371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149628,276 +152393,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16899] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, + [16274] = 6, + ACTIONS(956), 1, + anon_sym_EQ_GT, + ACTIONS(962), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3649), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4363), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17015] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(162), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3651), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4363), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17131] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3653), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4363), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17247] = 6, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(986), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16343] = 5, + ACTIONS(3508), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 15, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3384), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149910,6 +152496,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16410] = 6, + ACTIONS(901), 1, + anon_sym_EQ_GT, + ACTIONS(936), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -149926,6 +152542,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(162), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, @@ -149948,104 +152581,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17315] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3655), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4363), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17431] = 6, - ACTIONS(3516), 1, - anon_sym_EQ_GT, - ACTIONS(3657), 1, + [16479] = 5, + ACTIONS(3532), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3384), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150058,7 +152621,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16546] = 6, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(956), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150074,7 +152667,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(162), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150096,355 +152706,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17499] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, + [16615] = 6, + ACTIONS(3478), 1, + anon_sym_EQ, + ACTIONS(3556), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3659), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4363), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17615] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3384), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3661), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4363), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17731] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16684] = 7, + ACTIONS(3498), 1, + anon_sym_RBRACK, + ACTIONS(3515), 1, + anon_sym_COMMA, + ACTIONS(3595), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3663), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4363), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17847] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3665), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4363), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17963] = 6, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16755] = 7, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(974), 1, + ACTIONS(851), 1, anon_sym_EQ, + ACTIONS(853), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -150502,15 +152897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18031] = 6, - ACTIONS(3516), 1, + [16826] = 6, + ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(3667), 1, + ACTIONS(1040), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150526,7 +152921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150542,7 +152937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150564,80 +152959,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18099] = 30, + [16894] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3669), 2, + ACTIONS(3651), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4363), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150650,166 +153045,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18215] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, + [17010] = 6, + ACTIONS(3517), 1, + anon_sym_EQ_GT, + ACTIONS(3653), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3671), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4363), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18331] = 30, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17078] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3673), 2, + ACTIONS(3655), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4363), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150822,10 +153193,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18447] = 6, + [17194] = 6, + ACTIONS(3517), 1, + anon_sym_EQ_GT, + ACTIONS(3657), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17262] = 6, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(984), 1, + ACTIONS(1030), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -150884,80 +153317,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18515] = 30, + [17330] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3675), 2, + ACTIONS(3659), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4363), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150970,15 +153403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18631] = 6, - ACTIONS(3516), 1, + [17446] = 6, + ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(3677), 1, + ACTIONS(851), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150994,7 +153427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151010,7 +153443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151032,80 +153465,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18699] = 30, + [17514] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3679), 2, + ACTIONS(3661), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4363), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -151118,15 +153551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18815] = 6, - ACTIONS(3516), 1, - anon_sym_EQ_GT, - ACTIONS(3681), 1, + [17630] = 6, + ACTIONS(3478), 1, anon_sym_EQ, + ACTIONS(3536), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151142,7 +153575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151158,7 +153591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151180,15 +153613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18883] = 6, - ACTIONS(3475), 1, + [17698] = 7, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(3516), 1, - anon_sym_EQ_GT, + ACTIONS(3570), 1, + anon_sym_in, + ACTIONS(3573), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151204,7 +153639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151220,10 +153655,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(3380), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151242,80 +153676,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18951] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, + [17768] = 5, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3384), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17834] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3683), 2, + ACTIONS(3663), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4363), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -151328,15 +153823,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19067] = 6, - ACTIONS(3516), 1, + [17950] = 6, + ACTIONS(3517), 1, anon_sym_EQ_GT, - ACTIONS(3685), 1, + ACTIONS(3665), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151352,7 +153847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151368,7 +153863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151390,13 +153885,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19135] = 5, - ACTIONS(3556), 1, + [18018] = 5, + ACTIONS(3554), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151412,7 +153907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3404), 16, + ACTIONS(3384), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151429,7 +153924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151451,15 +153946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19201] = 6, - ACTIONS(3516), 1, - anon_sym_EQ_GT, - ACTIONS(3687), 1, + [18084] = 6, + ACTIONS(3478), 1, anon_sym_EQ, + ACTIONS(3517), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151475,7 +153970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151491,7 +153986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151513,10 +154008,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19269] = 6, + [18152] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, + anon_sym_STAR, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, + anon_sym_readonly, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, + sym_decorator, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, + sym_override_modifier, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3625), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3631), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3667), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4752), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3609), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18268] = 6, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(980), 1, + ACTIONS(972), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -151575,80 +154156,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19337] = 30, + [18336] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3689), 2, + ACTIONS(3669), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4363), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -151661,73 +154242,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19453] = 7, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_in, - ACTIONS(3589), 1, - anon_sym_of, + [18452] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, + anon_sym_STAR, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, + anon_sym_readonly, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, + sym_decorator, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, + sym_override_modifier, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19523] = 6, + ACTIONS(3625), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3631), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3671), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4752), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3609), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18568] = 6, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(972), 1, + ACTIONS(1036), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -151786,15 +154390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19591] = 6, - ACTIONS(229), 1, + [18636] = 6, + ACTIONS(3517), 1, anon_sym_EQ_GT, - ACTIONS(841), 1, + ACTIONS(3673), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151810,7 +154414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151826,7 +154430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151848,15 +154452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19659] = 6, - ACTIONS(3516), 1, + [18704] = 6, + ACTIONS(3517), 1, anon_sym_EQ_GT, - ACTIONS(3691), 1, + ACTIONS(3675), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151872,7 +154476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151888,7 +154492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151910,330 +154514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19727] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3693), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4363), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [19843] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3695), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4363), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [19959] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, - ACTIONS(3611), 1, - anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3619), 1, - anon_sym_async, - ACTIONS(3621), 1, - anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, - ACTIONS(3627), 1, - anon_sym_readonly, - ACTIONS(3633), 1, - anon_sym_override, - STATE(1244), 1, - sym_decorator, - STATE(2674), 1, - sym_accessibility_modifier, - STATE(2702), 1, - sym_override_modifier, - STATE(3229), 1, - sym_formal_parameters, - STATE(4329), 1, - sym__call_signature, - STATE(4448), 1, - aux_sym_export_statement_repeat1, - STATE(5404), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3623), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3629), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3697), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4363), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3607), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [20075] = 6, - ACTIONS(3516), 1, - anon_sym_EQ_GT, - ACTIONS(3699), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3404), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20143] = 6, + [18772] = 6, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(978), 1, + ACTIONS(1034), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -152292,15 +154576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20211] = 6, - ACTIONS(229), 1, + [18840] = 6, + ACTIONS(3517), 1, anon_sym_EQ_GT, - ACTIONS(988), 1, + ACTIONS(3677), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(162), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152316,7 +154600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(168), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152332,7 +154616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152354,72 +154638,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20279] = 6, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3549), 1, - anon_sym_COLON, + [18908] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, + anon_sym_STAR, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, + anon_sym_readonly, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, + sym_decorator, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, + sym_override_modifier, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20347] = 6, + ACTIONS(3625), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3631), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3679), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4752), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3609), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19024] = 6, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(982), 1, + ACTIONS(1032), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -152478,15 +154786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20415] = 6, - ACTIONS(3516), 1, + [19092] = 6, + ACTIONS(3517), 1, anon_sym_EQ_GT, - ACTIONS(3701), 1, + ACTIONS(3681), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152502,7 +154810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152518,7 +154826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152540,10 +154848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20483] = 6, + [19160] = 6, ACTIONS(229), 1, anon_sym_EQ_GT, - ACTIONS(976), 1, + ACTIONS(1038), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -152602,193 +154910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20551] = 5, - ACTIONS(3691), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3404), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20616] = 5, - ACTIONS(3699), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3404), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20681] = 5, - ACTIONS(3701), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3404), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20746] = 5, - ACTIONS(3685), 1, + [19228] = 6, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(1028), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152804,7 +154934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152820,7 +154950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152842,253 +154972,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20811] = 5, - ACTIONS(3657), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3404), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + [19296] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20876] = 5, - ACTIONS(3667), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3404), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3193), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20941] = 5, - ACTIONS(3681), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3404), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(3619), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [21006] = 5, - ACTIONS(3677), 1, - anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, + anon_sym_readonly, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, + sym_decorator, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, + sym_override_modifier, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [21071] = 5, - ACTIONS(3687), 1, + ACTIONS(3625), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3631), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3683), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4752), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3609), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19412] = 6, + ACTIONS(3517), 1, + anon_sym_EQ_GT, + ACTIONS(3685), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3404), 15, + ACTIONS(3384), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153104,7 +155082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3416), 15, + ACTIONS(3391), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153120,7 +155098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3400), 21, + ACTIONS(3380), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153142,77 +155120,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21136] = 29, + [19480] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3631), 3, + ACTIONS(3687), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3907), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153225,77 +155206,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21248] = 29, + [19596] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3631), 3, + ACTIONS(3689), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3831), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153308,77 +155292,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21360] = 29, + [19712] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3631), 3, + ACTIONS(3691), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3804), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153391,77 +155378,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21472] = 29, + [19828] = 6, + ACTIONS(229), 1, + anon_sym_EQ_GT, + ACTIONS(974), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19896] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3631), 3, + ACTIONS(3693), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4363), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153474,77 +155526,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21584] = 29, + [20012] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3631), 3, + ACTIONS(3695), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3786), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153557,77 +155612,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21696] = 29, + [20128] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3631), 3, + ACTIONS(3697), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3809), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153640,77 +155698,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21808] = 29, + [20244] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2581), 1, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(3609), 1, - anon_sym_export, ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3617), 1, - anon_sym_LBRACK, ACTIONS(3619), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, anon_sym_new, - ACTIONS(3625), 1, - anon_sym_static, ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(2674), 1, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2702), 1, + STATE(3104), 1, sym_override_modifier, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4329), 1, + STATE(4795), 1, sym__call_signature, - STATE(4448), 1, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3623), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3629), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3631), 3, + ACTIONS(3699), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3028), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3736), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3607), 12, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153723,81 +155784,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21920] = 29, - ACTIONS(1594), 1, + [20360] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3703), 1, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3705), 1, - anon_sym_RBRACE, - ACTIONS(3707), 1, - anon_sym_SEMI, - ACTIONS(3709), 1, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, anon_sym_async, - ACTIONS(3713), 1, - anon_sym_AT, - ACTIONS(3715), 1, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, anon_sym_static, - ACTIONS(3717), 1, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3721), 1, - anon_sym_declare, - ACTIONS(3723), 1, - anon_sym_abstract, - ACTIONS(3725), 1, - anon_sym_accessor, - STATE(2436), 1, - aux_sym_export_statement_repeat1, - STATE(2564), 1, - sym_method_definition, - STATE(2633), 1, - sym_accessibility_modifier, - STATE(2697), 1, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, sym_decorator, - STATE(2698), 1, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, sym_override_modifier, - STATE(4464), 1, - sym_method_signature, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3719), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - STATE(1409), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3631), 3, + ACTIONS(3701), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2955), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5052), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4752), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(3607), 13, - anon_sym_export, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -153805,167 +155870,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22031] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2229), 1, - anon_sym_LBRACE, - ACTIONS(2341), 1, - anon_sym_namespace, - ACTIONS(2343), 1, - anon_sym_import, - ACTIONS(2345), 1, - anon_sym_var, - ACTIONS(2347), 1, - anon_sym_let, - ACTIONS(2349), 1, - anon_sym_const, - ACTIONS(2351), 1, - anon_sym_class, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_function, - ACTIONS(2357), 1, - anon_sym_declare, - ACTIONS(2361), 1, - anon_sym_abstract, - ACTIONS(2365), 1, - anon_sym_interface, - ACTIONS(2367), 1, - anon_sym_enum, - ACTIONS(3727), 1, - anon_sym_STAR, - ACTIONS(3729), 1, - anon_sym_default, - ACTIONS(3731), 1, - anon_sym_type, - ACTIONS(3733), 1, + [20476] = 6, + ACTIONS(3517), 1, + anon_sym_EQ_GT, + ACTIONS(3703), 1, anon_sym_EQ, - ACTIONS(3735), 1, - anon_sym_as, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3740), 1, - anon_sym_RBRACE, - ACTIONS(3745), 1, - anon_sym_module, - STATE(1244), 1, - sym_decorator, - STATE(4333), 1, - aux_sym_export_statement_repeat1, - STATE(4342), 1, - sym_declaration, - STATE(4343), 1, - sym_internal_module, - STATE(4521), 1, - sym_export_clause, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - STATE(5290), 1, - sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 7, - sym__automatic_semicolon, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4336), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [22150] = 29, - ACTIONS(1594), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20544] = 28, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(235), 1, + anon_sym_STAR, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(253), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3703), 1, - anon_sym_STAR, + ACTIONS(3187), 1, + anon_sym_LBRACE, + ACTIONS(3707), 1, + anon_sym_RBRACE, ACTIONS(3709), 1, + anon_sym_LBRACK, + ACTIONS(3711), 1, anon_sym_async, - ACTIONS(3713), 1, - anon_sym_AT, ACTIONS(3715), 1, anon_sym_static, ACTIONS(3717), 1, anon_sym_readonly, - ACTIONS(3721), 1, - anon_sym_declare, ACTIONS(3723), 1, - anon_sym_abstract, - ACTIONS(3725), 1, - anon_sym_accessor, - ACTIONS(3747), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, - anon_sym_SEMI, - STATE(2436), 1, + anon_sym_override, + STATE(2605), 1, aux_sym_export_statement_repeat1, - STATE(2564), 1, - sym_method_definition, - STATE(2633), 1, - sym_accessibility_modifier, - STATE(2697), 1, + STATE(3068), 1, sym_decorator, - STATE(2698), 1, + STATE(3070), 1, + sym_accessibility_modifier, + STATE(3113), 1, sym_override_modifier, - STATE(4464), 1, - sym_method_signature, + STATE(5650), 1, + aux_sym_object_pattern_repeat1, + STATE(5879), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(3713), 2, sym_number, sym_private_property_identifier, ACTIONS(3719), 2, anon_sym_get, anon_sym_set, - STATE(1418), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3631), 3, + ACTIONS(3721), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2955), 3, + STATE(3977), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5052), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3607), 13, + STATE(5647), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5880), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7437), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3705), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -153973,81 +156015,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22261] = 29, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_override, + [20655] = 5, ACTIONS(3703), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, anon_sym_STAR, - ACTIONS(3707), 1, - anon_sym_SEMI, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20720] = 28, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(235), 1, + anon_sym_STAR, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(253), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3187), 1, + anon_sym_LBRACE, ACTIONS(3709), 1, + anon_sym_LBRACK, + ACTIONS(3727), 1, + anon_sym_RBRACE, + ACTIONS(3729), 1, anon_sym_async, - ACTIONS(3713), 1, - anon_sym_AT, - ACTIONS(3715), 1, + ACTIONS(3731), 1, anon_sym_static, - ACTIONS(3717), 1, + ACTIONS(3733), 1, anon_sym_readonly, - ACTIONS(3721), 1, - anon_sym_declare, - ACTIONS(3723), 1, - anon_sym_abstract, - ACTIONS(3725), 1, - anon_sym_accessor, - ACTIONS(3751), 1, - anon_sym_RBRACE, - STATE(2436), 1, + ACTIONS(3739), 1, + anon_sym_override, + STATE(2605), 1, aux_sym_export_statement_repeat1, - STATE(2564), 1, - sym_method_definition, - STATE(2633), 1, - sym_accessibility_modifier, - STATE(2697), 1, + STATE(3068), 1, sym_decorator, - STATE(2698), 1, + STATE(3070), 1, + sym_accessibility_modifier, + STATE(3113), 1, sym_override_modifier, - STATE(4464), 1, - sym_method_signature, + STATE(5649), 1, + aux_sym_object_repeat1, + STATE(5650), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(3713), 2, sym_number, sym_private_property_identifier, - ACTIONS(3719), 2, + ACTIONS(3735), 2, anon_sym_get, anon_sym_set, - STATE(1409), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3631), 3, + ACTIONS(3737), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2955), 3, + STATE(3977), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5052), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3607), 13, + STATE(5647), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5648), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7437), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3725), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -154055,81 +156158,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22372] = 29, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3617), 1, + [20831] = 5, + ACTIONS(3681), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3703), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20896] = 28, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(235), 1, anon_sym_STAR, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(253), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3187), 1, + anon_sym_LBRACE, ACTIONS(3709), 1, + anon_sym_LBRACK, + ACTIONS(3743), 1, + anon_sym_RBRACE, + ACTIONS(3745), 1, anon_sym_async, - ACTIONS(3713), 1, - anon_sym_AT, - ACTIONS(3715), 1, + ACTIONS(3747), 1, anon_sym_static, - ACTIONS(3717), 1, + ACTIONS(3749), 1, anon_sym_readonly, - ACTIONS(3721), 1, - anon_sym_declare, - ACTIONS(3723), 1, - anon_sym_abstract, - ACTIONS(3725), 1, - anon_sym_accessor, - ACTIONS(3753), 1, - anon_sym_RBRACE, ACTIONS(3755), 1, - anon_sym_SEMI, - STATE(2436), 1, + anon_sym_override, + STATE(2605), 1, aux_sym_export_statement_repeat1, - STATE(2564), 1, - sym_method_definition, - STATE(2633), 1, - sym_accessibility_modifier, - STATE(2697), 1, + STATE(3068), 1, sym_decorator, - STATE(2698), 1, + STATE(3070), 1, + sym_accessibility_modifier, + STATE(3113), 1, sym_override_modifier, - STATE(4464), 1, - sym_method_signature, + STATE(5650), 1, + aux_sym_object_pattern_repeat1, + STATE(5879), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(3713), 2, sym_number, sym_private_property_identifier, - ACTIONS(3719), 2, + ACTIONS(3751), 2, anon_sym_get, anon_sym_set, - STATE(1406), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3631), 3, + ACTIONS(3753), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2955), 3, + STATE(3977), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5052), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3607), 13, + STATE(5647), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5880), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7437), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3741), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -154137,81 +156301,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22483] = 29, - ACTIONS(1594), 1, + [21007] = 28, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(235), 1, + anon_sym_STAR, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(253), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3703), 1, - anon_sym_STAR, + ACTIONS(3187), 1, + anon_sym_LBRACE, ACTIONS(3709), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_RBRACE, + ACTIONS(3761), 1, anon_sym_async, - ACTIONS(3713), 1, - anon_sym_AT, - ACTIONS(3715), 1, + ACTIONS(3763), 1, anon_sym_static, - ACTIONS(3717), 1, + ACTIONS(3765), 1, anon_sym_readonly, - ACTIONS(3721), 1, - anon_sym_declare, - ACTIONS(3723), 1, - anon_sym_abstract, - ACTIONS(3725), 1, - anon_sym_accessor, - ACTIONS(3757), 1, - anon_sym_RBRACE, - ACTIONS(3759), 1, - anon_sym_SEMI, - STATE(2436), 1, + ACTIONS(3771), 1, + anon_sym_override, + STATE(2605), 1, aux_sym_export_statement_repeat1, - STATE(2564), 1, - sym_method_definition, - STATE(2633), 1, - sym_accessibility_modifier, - STATE(2697), 1, + STATE(3068), 1, sym_decorator, - STATE(2698), 1, + STATE(3070), 1, + sym_accessibility_modifier, + STATE(3113), 1, sym_override_modifier, - STATE(4464), 1, - sym_method_signature, + STATE(5650), 1, + aux_sym_object_pattern_repeat1, + STATE(5879), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(3713), 2, sym_number, sym_private_property_identifier, - ACTIONS(3719), 2, + ACTIONS(3767), 2, anon_sym_get, anon_sym_set, - STATE(1403), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3631), 3, + ACTIONS(3769), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2955), 3, + STATE(3977), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5052), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3607), 13, + STATE(5647), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5880), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7437), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3757), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -154219,81 +156384,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22594] = 29, - ACTIONS(3764), 1, + [21118] = 5, + ACTIONS(3685), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, anon_sym_STAR, - ACTIONS(3767), 1, - anon_sym_RBRACE, - ACTIONS(3769), 1, - anon_sym_SEMI, - ACTIONS(3772), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21183] = 5, + ACTIONS(3677), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3775), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21248] = 5, + ACTIONS(3673), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21313] = 5, + ACTIONS(3675), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21378] = 28, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(235), 1, + anon_sym_STAR, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(253), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(3778), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3781), 1, + ACTIONS(3187), 1, + anon_sym_LBRACE, + ACTIONS(3709), 1, + anon_sym_LBRACK, + ACTIONS(3775), 1, + anon_sym_RBRACE, + ACTIONS(3777), 1, anon_sym_async, - ACTIONS(3790), 1, - anon_sym_AT, - ACTIONS(3793), 1, + ACTIONS(3779), 1, anon_sym_static, - ACTIONS(3796), 1, + ACTIONS(3781), 1, anon_sym_readonly, - ACTIONS(3802), 1, - anon_sym_declare, - ACTIONS(3808), 1, + ACTIONS(3787), 1, anon_sym_override, - ACTIONS(3811), 1, - anon_sym_abstract, - ACTIONS(3814), 1, - anon_sym_accessor, - STATE(2436), 1, + STATE(2605), 1, aux_sym_export_statement_repeat1, - STATE(2564), 1, - sym_method_definition, - STATE(2633), 1, - sym_accessibility_modifier, - STATE(2697), 1, + STATE(3068), 1, sym_decorator, - STATE(2698), 1, + STATE(3070), 1, + sym_accessibility_modifier, + STATE(3113), 1, sym_override_modifier, - STATE(4464), 1, - sym_method_signature, + STATE(5650), 1, + aux_sym_object_pattern_repeat1, + STATE(5879), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3784), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3787), 2, + ACTIONS(3713), 2, sym_number, sym_private_property_identifier, - ACTIONS(3799), 2, + ACTIONS(3783), 2, anon_sym_get, anon_sym_set, - STATE(1409), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3805), 3, + ACTIONS(3785), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2955), 3, + STATE(3977), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5052), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3761), 13, + STATE(5647), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5880), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7437), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3773), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -154301,167 +156707,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22705] = 33, + [21489] = 28, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(2229), 1, - anon_sym_LBRACE, - ACTIONS(2341), 1, - anon_sym_namespace, - ACTIONS(2343), 1, - anon_sym_import, - ACTIONS(2345), 1, - anon_sym_var, - ACTIONS(2347), 1, - anon_sym_let, - ACTIONS(2349), 1, - anon_sym_const, - ACTIONS(2351), 1, - anon_sym_class, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_function, - ACTIONS(2357), 1, - anon_sym_declare, - ACTIONS(2361), 1, - anon_sym_abstract, - ACTIONS(2365), 1, - anon_sym_interface, - ACTIONS(2367), 1, - anon_sym_enum, - ACTIONS(3727), 1, + ACTIONS(235), 1, anon_sym_STAR, - ACTIONS(3729), 1, - anon_sym_default, - ACTIONS(3731), 1, - anon_sym_type, - ACTIONS(3733), 1, - anon_sym_EQ, - ACTIONS(3735), 1, - anon_sym_as, - ACTIONS(3737), 1, + ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(3745), 1, - anon_sym_module, - ACTIONS(3817), 1, - anon_sym_RBRACE, - STATE(1244), 1, - sym_decorator, - STATE(4333), 1, - aux_sym_export_statement_repeat1, - STATE(4342), 1, - sym_declaration, - STATE(4343), 1, - sym_internal_module, - STATE(4521), 1, - sym_export_clause, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - STATE(5290), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4336), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [22824] = 29, - ACTIONS(1594), 1, + ACTIONS(253), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3703), 1, - anon_sym_STAR, + ACTIONS(3187), 1, + anon_sym_LBRACE, ACTIONS(3709), 1, + anon_sym_LBRACK, + ACTIONS(3791), 1, + anon_sym_RBRACE, + ACTIONS(3793), 1, anon_sym_async, - ACTIONS(3713), 1, - anon_sym_AT, - ACTIONS(3715), 1, + ACTIONS(3795), 1, anon_sym_static, - ACTIONS(3717), 1, + ACTIONS(3797), 1, anon_sym_readonly, - ACTIONS(3721), 1, - anon_sym_declare, - ACTIONS(3723), 1, - anon_sym_abstract, - ACTIONS(3725), 1, - anon_sym_accessor, - ACTIONS(3820), 1, - anon_sym_RBRACE, - ACTIONS(3822), 1, - anon_sym_SEMI, - STATE(2436), 1, + ACTIONS(3803), 1, + anon_sym_override, + STATE(2605), 1, aux_sym_export_statement_repeat1, - STATE(2564), 1, - sym_method_definition, - STATE(2633), 1, - sym_accessibility_modifier, - STATE(2697), 1, + STATE(3068), 1, sym_decorator, - STATE(2698), 1, + STATE(3070), 1, + sym_accessibility_modifier, + STATE(3113), 1, sym_override_modifier, - STATE(4464), 1, - sym_method_signature, + STATE(5650), 1, + aux_sym_object_pattern_repeat1, + STATE(5879), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(3713), 2, sym_number, sym_private_property_identifier, - ACTIONS(3719), 2, + ACTIONS(3799), 2, anon_sym_get, anon_sym_set, - STATE(1413), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3631), 3, + ACTIONS(3801), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2955), 3, + STATE(3977), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5052), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3607), 13, + STATE(5647), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5880), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7437), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3789), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -154469,335 +156790,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22935] = 33, + [21600] = 28, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(2229), 1, - anon_sym_LBRACE, - ACTIONS(2341), 1, - anon_sym_namespace, - ACTIONS(2343), 1, - anon_sym_import, - ACTIONS(2345), 1, - anon_sym_var, - ACTIONS(2347), 1, - anon_sym_let, - ACTIONS(2349), 1, - anon_sym_const, - ACTIONS(2351), 1, - anon_sym_class, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_function, - ACTIONS(2357), 1, - anon_sym_declare, - ACTIONS(2361), 1, - anon_sym_abstract, - ACTIONS(2365), 1, - anon_sym_interface, - ACTIONS(2367), 1, - anon_sym_enum, - ACTIONS(3727), 1, + ACTIONS(235), 1, anon_sym_STAR, - ACTIONS(3729), 1, - anon_sym_default, - ACTIONS(3731), 1, - anon_sym_type, - ACTIONS(3733), 1, - anon_sym_EQ, - ACTIONS(3735), 1, - anon_sym_as, - ACTIONS(3737), 1, + ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(3745), 1, - anon_sym_module, - ACTIONS(3824), 1, - anon_sym_RBRACE, - STATE(1244), 1, - sym_decorator, - STATE(4333), 1, - aux_sym_export_statement_repeat1, - STATE(4342), 1, - sym_declaration, - STATE(4343), 1, - sym_internal_module, - STATE(4521), 1, - sym_export_clause, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - STATE(5290), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4336), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [23054] = 29, - ACTIONS(1594), 1, + ACTIONS(253), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3703), 1, - anon_sym_STAR, - ACTIONS(3707), 1, - anon_sym_SEMI, + ACTIONS(3187), 1, + anon_sym_LBRACE, ACTIONS(3709), 1, + anon_sym_LBRACK, + ACTIONS(3807), 1, + anon_sym_RBRACE, + ACTIONS(3809), 1, anon_sym_async, - ACTIONS(3713), 1, - anon_sym_AT, - ACTIONS(3715), 1, + ACTIONS(3811), 1, anon_sym_static, - ACTIONS(3717), 1, + ACTIONS(3813), 1, anon_sym_readonly, - ACTIONS(3721), 1, - anon_sym_declare, - ACTIONS(3723), 1, - anon_sym_abstract, - ACTIONS(3725), 1, - anon_sym_accessor, - ACTIONS(3827), 1, - anon_sym_RBRACE, - STATE(2436), 1, + ACTIONS(3819), 1, + anon_sym_override, + STATE(2605), 1, aux_sym_export_statement_repeat1, - STATE(2564), 1, - sym_method_definition, - STATE(2633), 1, - sym_accessibility_modifier, - STATE(2697), 1, + STATE(3068), 1, sym_decorator, - STATE(2698), 1, + STATE(3070), 1, + sym_accessibility_modifier, + STATE(3113), 1, sym_override_modifier, - STATE(4464), 1, - sym_method_signature, + STATE(5649), 1, + aux_sym_object_repeat1, + STATE(5650), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(3713), 2, sym_number, sym_private_property_identifier, - ACTIONS(3719), 2, + ACTIONS(3815), 2, anon_sym_get, anon_sym_set, - STATE(1409), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3631), 3, + ACTIONS(3817), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2955), 3, + STATE(3977), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5052), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3607), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, + STATE(5647), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5648), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7437), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3805), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, anon_sym_object, - [23165] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2229), 1, - anon_sym_LBRACE, - ACTIONS(2341), 1, - anon_sym_namespace, - ACTIONS(2343), 1, - anon_sym_import, - ACTIONS(2345), 1, - anon_sym_var, - ACTIONS(2347), 1, - anon_sym_let, - ACTIONS(2349), 1, - anon_sym_const, - ACTIONS(2351), 1, - anon_sym_class, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_function, - ACTIONS(2357), 1, - anon_sym_declare, - ACTIONS(2361), 1, - anon_sym_abstract, - ACTIONS(2365), 1, - anon_sym_interface, - ACTIONS(2367), 1, - anon_sym_enum, - ACTIONS(3727), 1, + [21711] = 5, + ACTIONS(3665), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, anon_sym_STAR, - ACTIONS(3729), 1, - anon_sym_default, - ACTIONS(3731), 1, - anon_sym_type, - ACTIONS(3733), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21776] = 5, + ACTIONS(3657), 1, anon_sym_EQ, - ACTIONS(3735), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3384), 15, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3745), 1, - anon_sym_module, - ACTIONS(3829), 1, - anon_sym_RBRACE, - STATE(1244), 1, - sym_decorator, - STATE(4333), 1, - aux_sym_export_statement_repeat1, - STATE(4342), 1, - sym_declaration, - STATE(4343), 1, - sym_internal_module, - STATE(4521), 1, - sym_export_clause, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - STATE(5290), 1, - sym_namespace_export, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21841] = 5, + ACTIONS(3653), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 7, - sym__automatic_semicolon, + ACTIONS(3384), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3380), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4336), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [23284] = 29, - ACTIONS(1594), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21906] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3703), 1, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3707), 1, - anon_sym_SEMI, - ACTIONS(3709), 1, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, anon_sym_async, - ACTIONS(3713), 1, - anon_sym_AT, - ACTIONS(3715), 1, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, anon_sym_static, - ACTIONS(3717), 1, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3721), 1, - anon_sym_declare, - ACTIONS(3723), 1, - anon_sym_abstract, - ACTIONS(3725), 1, - anon_sym_accessor, - ACTIONS(3832), 1, - anon_sym_RBRACE, - STATE(2436), 1, - aux_sym_export_statement_repeat1, - STATE(2564), 1, - sym_method_definition, - STATE(2633), 1, - sym_accessibility_modifier, - STATE(2697), 1, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, sym_decorator, - STATE(2698), 1, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, sym_override_modifier, - STATE(4464), 1, - sym_method_signature, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3719), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - STATE(1409), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3631), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2955), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5052), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4243), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(3607), 13, - anon_sym_export, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -154805,81 +157136,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23395] = 29, - ACTIONS(1594), 1, + [22018] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3703), 1, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3709), 1, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, anon_sym_async, - ACTIONS(3713), 1, - anon_sym_AT, - ACTIONS(3715), 1, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, anon_sym_static, - ACTIONS(3717), 1, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3721), 1, - anon_sym_declare, - ACTIONS(3723), 1, - anon_sym_abstract, - ACTIONS(3725), 1, - anon_sym_accessor, - ACTIONS(3834), 1, - anon_sym_RBRACE, - ACTIONS(3836), 1, - anon_sym_SEMI, - STATE(2436), 1, - aux_sym_export_statement_repeat1, - STATE(2564), 1, - sym_method_definition, - STATE(2633), 1, - sym_accessibility_modifier, - STATE(2697), 1, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, sym_decorator, - STATE(2698), 1, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, sym_override_modifier, - STATE(4464), 1, - sym_method_signature, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3719), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - STATE(1415), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3631), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2955), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5052), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4520), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(3607), 13, - anon_sym_export, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -154887,167 +157219,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23506] = 33, + [22130] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(2229), 1, - anon_sym_LBRACE, - ACTIONS(2341), 1, - anon_sym_namespace, - ACTIONS(2343), 1, - anon_sym_import, - ACTIONS(2345), 1, - anon_sym_var, - ACTIONS(2347), 1, - anon_sym_let, - ACTIONS(2349), 1, - anon_sym_const, - ACTIONS(2351), 1, - anon_sym_class, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_function, - ACTIONS(2357), 1, - anon_sym_declare, - ACTIONS(2361), 1, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, anon_sym_abstract, - ACTIONS(2365), 1, - anon_sym_interface, - ACTIONS(2367), 1, - anon_sym_enum, - ACTIONS(3727), 1, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3729), 1, - anon_sym_default, - ACTIONS(3731), 1, - anon_sym_type, - ACTIONS(3733), 1, - anon_sym_EQ, - ACTIONS(3735), 1, - anon_sym_as, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3745), 1, - anon_sym_module, - ACTIONS(3838), 1, - anon_sym_RBRACE, - STATE(1244), 1, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, + anon_sym_async, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, + anon_sym_static, + ACTIONS(3629), 1, + anon_sym_readonly, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, sym_decorator, - STATE(4333), 1, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, + sym_override_modifier, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, aux_sym_export_statement_repeat1, - STATE(4342), 1, - sym_declaration, - STATE(4343), 1, - sym_internal_module, - STATE(4521), 1, - sym_export_clause, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5290), 1, - sym_namespace_export, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4336), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [23625] = 29, - ACTIONS(1594), 1, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3625), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3631), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4408), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3609), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22242] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3617), 1, - anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3703), 1, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, anon_sym_STAR, - ACTIONS(3707), 1, - anon_sym_SEMI, - ACTIONS(3709), 1, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3621), 1, anon_sym_async, - ACTIONS(3713), 1, - anon_sym_AT, - ACTIONS(3715), 1, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, anon_sym_static, - ACTIONS(3717), 1, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3721), 1, - anon_sym_declare, - ACTIONS(3723), 1, - anon_sym_abstract, - ACTIONS(3725), 1, - anon_sym_accessor, - ACTIONS(3841), 1, - anon_sym_RBRACE, - STATE(2436), 1, - aux_sym_export_statement_repeat1, - STATE(2564), 1, - sym_method_definition, - STATE(2633), 1, - sym_accessibility_modifier, - STATE(2697), 1, + ACTIONS(3635), 1, + anon_sym_override, + STATE(3068), 1, sym_decorator, - STATE(2698), 1, + STATE(3073), 1, + sym_accessibility_modifier, + STATE(3104), 1, sym_override_modifier, - STATE(4464), 1, - sym_method_signature, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3719), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - STATE(1409), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3631), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2955), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5052), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4304), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(3607), 13, - anon_sym_export, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -155055,74 +157385,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23736] = 25, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2275), 1, + [22354] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3845), 1, - anon_sym_RBRACE, - ACTIONS(3847), 1, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, + anon_sym_STAR, + ACTIONS(3619), 1, anon_sym_LBRACK, - ACTIONS(3849), 1, + ACTIONS(3621), 1, anon_sym_async, - ACTIONS(3853), 1, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, anon_sym_static, - ACTIONS(3855), 1, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3861), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(2682), 1, + STATE(3068), 1, + sym_decorator, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2711), 1, + STATE(3104), 1, sym_override_modifier, - STATE(4682), 1, - aux_sym_object_repeat1, - STATE(4759), 1, - aux_sym_object_pattern_repeat1, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3851), 2, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3857), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3859), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3665), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4603), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4861), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5760), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3843), 14, - anon_sym_export, + STATE(4752), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, anon_sym_declare, anon_sym_module, @@ -155132,74 +157468,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23838] = 25, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2275), 1, + [22466] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, + anon_sym_STAR, + ACTIONS(3619), 1, anon_sym_LBRACK, - ACTIONS(3865), 1, - anon_sym_RBRACE, - ACTIONS(3867), 1, + ACTIONS(3621), 1, anon_sym_async, - ACTIONS(3869), 1, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, anon_sym_static, - ACTIONS(3871), 1, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3877), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(2682), 1, + STATE(3068), 1, + sym_decorator, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2711), 1, + STATE(3104), 1, sym_override_modifier, - STATE(4759), 1, - aux_sym_object_pattern_repeat1, - STATE(4839), 1, - aux_sym_object_repeat1, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3851), 2, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3873), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3875), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3665), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4835), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4861), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5760), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3863), 14, - anon_sym_export, + STATE(4465), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, anon_sym_declare, anon_sym_module, @@ -155209,74 +157551,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23940] = 25, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2275), 1, + [22578] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3611), 1, + anon_sym_export, + ACTIONS(3613), 1, + anon_sym_STAR, + ACTIONS(3619), 1, anon_sym_LBRACK, - ACTIONS(3881), 1, - anon_sym_RBRACE, - ACTIONS(3883), 1, + ACTIONS(3621), 1, anon_sym_async, - ACTIONS(3885), 1, + ACTIONS(3623), 1, + anon_sym_new, + ACTIONS(3627), 1, anon_sym_static, - ACTIONS(3887), 1, + ACTIONS(3629), 1, anon_sym_readonly, - ACTIONS(3893), 1, + ACTIONS(3635), 1, anon_sym_override, - STATE(2682), 1, + STATE(3068), 1, + sym_decorator, + STATE(3073), 1, sym_accessibility_modifier, - STATE(2711), 1, + STATE(3104), 1, sym_override_modifier, - STATE(4759), 1, - aux_sym_object_pattern_repeat1, - STATE(4839), 1, - aux_sym_object_repeat1, + STATE(3685), 1, + sym_formal_parameters, + STATE(4795), 1, + sym__call_signature, + STATE(5454), 1, + aux_sym_export_statement_repeat1, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3851), 2, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3625), 2, sym_number, sym_private_property_identifier, - ACTIONS(3889), 2, + ACTIONS(3631), 2, anon_sym_get, anon_sym_set, - ACTIONS(3891), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3665), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4835), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4861), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5760), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3879), 14, - anon_sym_export, + STATE(4598), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3609), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, anon_sym_declare, anon_sym_module, @@ -155286,76 +157634,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24042] = 25, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2275), 1, + [22690] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, + ACTIONS(3619), 1, anon_sym_LBRACK, - ACTIONS(3897), 1, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3823), 1, anon_sym_RBRACE, - ACTIONS(3899), 1, + ACTIONS(3825), 1, + anon_sym_SEMI, + ACTIONS(3827), 1, anon_sym_async, - ACTIONS(3901), 1, + ACTIONS(3831), 1, anon_sym_static, - ACTIONS(3903), 1, + ACTIONS(3833), 1, anon_sym_readonly, - ACTIONS(3909), 1, - anon_sym_override, - STATE(2682), 1, + ACTIONS(3837), 1, + anon_sym_declare, + ACTIONS(3839), 1, + anon_sym_abstract, + ACTIONS(3841), 1, + anon_sym_accessor, + STATE(2512), 1, + aux_sym_export_statement_repeat1, + STATE(2619), 1, + sym_method_definition, + STATE(2939), 1, sym_accessibility_modifier, - STATE(2711), 1, + STATE(3068), 1, + sym_decorator, + STATE(3093), 1, sym_override_modifier, - STATE(4759), 1, - aux_sym_object_pattern_repeat1, - STATE(4839), 1, - aux_sym_object_repeat1, + STATE(5453), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3851), 2, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3829), 2, sym_number, sym_private_property_identifier, - ACTIONS(3905), 2, + ACTIONS(3835), 2, anon_sym_get, anon_sym_set, - ACTIONS(3907), 3, + STATE(1424), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3665), 3, + STATE(3432), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4835), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4861), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5760), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3895), 14, + STATE(6054), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3609), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -155363,76 +157716,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24144] = 25, - ACTIONS(235), 1, + [22801] = 29, + ACTIONS(3846), 1, anon_sym_STAR, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2275), 1, + ACTIONS(3849), 1, + anon_sym_RBRACE, + ACTIONS(3851), 1, + anon_sym_SEMI, + ACTIONS(3854), 1, + anon_sym_LBRACK, + ACTIONS(3857), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(3860), 1, anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, - anon_sym_LBRACK, - ACTIONS(3913), 1, - anon_sym_RBRACE, - ACTIONS(3915), 1, + ACTIONS(3863), 1, anon_sym_async, - ACTIONS(3917), 1, + ACTIONS(3872), 1, + anon_sym_AT, + ACTIONS(3875), 1, anon_sym_static, - ACTIONS(3919), 1, + ACTIONS(3878), 1, anon_sym_readonly, - ACTIONS(3925), 1, + ACTIONS(3884), 1, + anon_sym_declare, + ACTIONS(3890), 1, anon_sym_override, - STATE(2682), 1, + ACTIONS(3893), 1, + anon_sym_abstract, + ACTIONS(3896), 1, + anon_sym_accessor, + STATE(2512), 1, + aux_sym_export_statement_repeat1, + STATE(2619), 1, + sym_method_definition, + STATE(2939), 1, sym_accessibility_modifier, - STATE(2711), 1, + STATE(3068), 1, + sym_decorator, + STATE(3093), 1, sym_override_modifier, - STATE(4682), 1, - aux_sym_object_repeat1, - STATE(4759), 1, - aux_sym_object_pattern_repeat1, + STATE(5453), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3851), 2, + ACTIONS(3866), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3869), 2, sym_number, sym_private_property_identifier, - ACTIONS(3921), 2, + ACTIONS(3881), 2, anon_sym_get, anon_sym_set, - ACTIONS(3923), 3, + STATE(1411), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3887), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3665), 3, + STATE(3432), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4603), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4861), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5760), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3911), 14, + STATE(6054), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3843), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -155440,76 +157798,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24246] = 25, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2275), 1, + [22912] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, + ACTIONS(3619), 1, anon_sym_LBRACK, - ACTIONS(3929), 1, - anon_sym_RBRACE, - ACTIONS(3931), 1, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3827), 1, anon_sym_async, - ACTIONS(3933), 1, + ACTIONS(3831), 1, anon_sym_static, - ACTIONS(3935), 1, + ACTIONS(3833), 1, anon_sym_readonly, - ACTIONS(3941), 1, - anon_sym_override, - STATE(2682), 1, + ACTIONS(3837), 1, + anon_sym_declare, + ACTIONS(3839), 1, + anon_sym_abstract, + ACTIONS(3841), 1, + anon_sym_accessor, + ACTIONS(3899), 1, + anon_sym_RBRACE, + ACTIONS(3901), 1, + anon_sym_SEMI, + STATE(2512), 1, + aux_sym_export_statement_repeat1, + STATE(2619), 1, + sym_method_definition, + STATE(2939), 1, sym_accessibility_modifier, - STATE(2711), 1, + STATE(3068), 1, + sym_decorator, + STATE(3093), 1, sym_override_modifier, - STATE(4759), 1, - aux_sym_object_pattern_repeat1, - STATE(4839), 1, - aux_sym_object_repeat1, + STATE(5453), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3851), 2, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3829), 2, sym_number, sym_private_property_identifier, - ACTIONS(3937), 2, + ACTIONS(3835), 2, anon_sym_get, anon_sym_set, - ACTIONS(3939), 3, + STATE(1411), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3665), 3, + STATE(3432), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4835), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4861), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5760), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3927), 14, + STATE(6054), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3609), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -155517,76 +157880,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24348] = 25, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2275), 1, + [23023] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, + ACTIONS(3619), 1, anon_sym_LBRACK, - ACTIONS(3945), 1, - anon_sym_RBRACE, - ACTIONS(3947), 1, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3827), 1, anon_sym_async, - ACTIONS(3949), 1, + ACTIONS(3831), 1, anon_sym_static, - ACTIONS(3951), 1, + ACTIONS(3833), 1, anon_sym_readonly, - ACTIONS(3957), 1, - anon_sym_override, - STATE(2682), 1, + ACTIONS(3837), 1, + anon_sym_declare, + ACTIONS(3839), 1, + anon_sym_abstract, + ACTIONS(3841), 1, + anon_sym_accessor, + ACTIONS(3901), 1, + anon_sym_SEMI, + ACTIONS(3903), 1, + anon_sym_RBRACE, + STATE(2512), 1, + aux_sym_export_statement_repeat1, + STATE(2619), 1, + sym_method_definition, + STATE(2939), 1, sym_accessibility_modifier, - STATE(2711), 1, + STATE(3068), 1, + sym_decorator, + STATE(3093), 1, sym_override_modifier, - STATE(4759), 1, - aux_sym_object_pattern_repeat1, - STATE(4839), 1, - aux_sym_object_repeat1, + STATE(5453), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3851), 2, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3829), 2, sym_number, sym_private_property_identifier, - ACTIONS(3953), 2, + ACTIONS(3835), 2, anon_sym_get, anon_sym_set, - ACTIONS(3955), 3, + STATE(1411), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3665), 3, + STATE(3432), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4835), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4861), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5760), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3943), 14, + STATE(6054), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3609), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -155594,7 +157962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24450] = 30, + [23134] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2229), 1, @@ -155623,37 +157991,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2367), 1, anon_sym_enum, - ACTIONS(3727), 1, + ACTIONS(3905), 1, anon_sym_STAR, - ACTIONS(3729), 1, + ACTIONS(3907), 1, anon_sym_default, - ACTIONS(3731), 1, + ACTIONS(3909), 1, anon_sym_type, - ACTIONS(3733), 1, + ACTIONS(3911), 1, anon_sym_EQ, - ACTIONS(3735), 1, + ACTIONS(3913), 1, anon_sym_as, - ACTIONS(3745), 1, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, + anon_sym_RBRACE, + ACTIONS(3923), 1, anon_sym_module, - STATE(1244), 1, + STATE(3068), 1, sym_decorator, - STATE(4333), 1, - aux_sym_export_statement_repeat1, - STATE(4342), 1, - sym_declaration, - STATE(4343), 1, + STATE(5238), 1, sym_internal_module, - STATE(4521), 1, + STATE(5239), 1, + sym_declaration, + STATE(5282), 1, + aux_sym_export_statement_repeat1, + STATE(5407), 1, sym_export_clause, - STATE(5290), 1, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + STATE(6332), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3959), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -155661,7 +158034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4336), 13, + STATE(5245), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -155675,7 +158048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24561] = 29, + [23253] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2229), 1, @@ -155704,44 +158077,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2367), 1, anon_sym_enum, - ACTIONS(3727), 1, + ACTIONS(3905), 1, anon_sym_STAR, - ACTIONS(3729), 1, + ACTIONS(3907), 1, anon_sym_default, - ACTIONS(3731), 1, + ACTIONS(3909), 1, anon_sym_type, - ACTIONS(3735), 1, + ACTIONS(3911), 1, + anon_sym_EQ, + ACTIONS(3913), 1, anon_sym_as, - ACTIONS(3745), 1, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3923), 1, anon_sym_module, - ACTIONS(3963), 1, - anon_sym_EQ, - STATE(1244), 1, + ACTIONS(3925), 1, + anon_sym_RBRACE, + STATE(3068), 1, sym_decorator, - STATE(4333), 1, - aux_sym_export_statement_repeat1, - STATE(4342), 1, - sym_declaration, - STATE(4343), 1, + STATE(5238), 1, sym_internal_module, - STATE(4521), 1, + STATE(5239), 1, + sym_declaration, + STATE(5282), 1, + aux_sym_export_statement_repeat1, + STATE(5407), 1, sym_export_clause, - STATE(5290), 1, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + STATE(6332), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 9, + ACTIONS(3921), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4336), 13, + STATE(5245), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -155755,88 +158134,1078 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24670] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1919), 14, + [23372] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3821), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1917), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3827), 1, + anon_sym_async, + ACTIONS(3831), 1, + anon_sym_static, + ACTIONS(3833), 1, + anon_sym_readonly, + ACTIONS(3837), 1, + anon_sym_declare, + ACTIONS(3839), 1, + anon_sym_abstract, + ACTIONS(3841), 1, + anon_sym_accessor, + ACTIONS(3928), 1, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, + ACTIONS(3930), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [24727] = 3, + STATE(2512), 1, + aux_sym_export_statement_repeat1, + STATE(2619), 1, + sym_method_definition, + STATE(2939), 1, + sym_accessibility_modifier, + STATE(3068), 1, + sym_decorator, + STATE(3093), 1, + sym_override_modifier, + STATE(5453), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3203), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1821), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, + ACTIONS(3829), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3835), 2, + anon_sym_get, + anon_sym_set, + STATE(1419), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3432), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(6054), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3609), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23483] = 25, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(235), 1, + anon_sym_STAR, + ACTIONS(253), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3187), 1, + anon_sym_LBRACE, + ACTIONS(3709), 1, + anon_sym_LBRACK, + ACTIONS(3934), 1, + anon_sym_async, + ACTIONS(3936), 1, + anon_sym_static, + ACTIONS(3938), 1, + anon_sym_readonly, + ACTIONS(3944), 1, + anon_sym_override, + STATE(2605), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, + STATE(3070), 1, + sym_accessibility_modifier, + STATE(3113), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3345), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3713), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3940), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3942), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3977), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(6170), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(6171), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7437), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3932), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23586] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3827), 1, + anon_sym_async, + ACTIONS(3831), 1, + anon_sym_static, + ACTIONS(3833), 1, + anon_sym_readonly, + ACTIONS(3837), 1, + anon_sym_declare, + ACTIONS(3839), 1, + anon_sym_abstract, + ACTIONS(3841), 1, + anon_sym_accessor, + ACTIONS(3946), 1, + anon_sym_RBRACE, + ACTIONS(3948), 1, + anon_sym_SEMI, + STATE(2512), 1, + aux_sym_export_statement_repeat1, + STATE(2619), 1, + sym_method_definition, + STATE(2939), 1, + sym_accessibility_modifier, + STATE(3068), 1, + sym_decorator, + STATE(3093), 1, + sym_override_modifier, + STATE(5453), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3829), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3835), 2, + anon_sym_get, + anon_sym_set, + STATE(1421), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3432), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(6054), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3609), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23697] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3827), 1, + anon_sym_async, + ACTIONS(3831), 1, + anon_sym_static, + ACTIONS(3833), 1, + anon_sym_readonly, + ACTIONS(3837), 1, + anon_sym_declare, + ACTIONS(3839), 1, + anon_sym_abstract, + ACTIONS(3841), 1, + anon_sym_accessor, + ACTIONS(3901), 1, + anon_sym_SEMI, + ACTIONS(3950), 1, + anon_sym_RBRACE, + STATE(2512), 1, + aux_sym_export_statement_repeat1, + STATE(2619), 1, + sym_method_definition, + STATE(2939), 1, + sym_accessibility_modifier, + STATE(3068), 1, + sym_decorator, + STATE(3093), 1, + sym_override_modifier, + STATE(5453), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3829), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3835), 2, + anon_sym_get, + anon_sym_set, + STATE(1411), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3432), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(6054), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3609), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23808] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3827), 1, + anon_sym_async, + ACTIONS(3831), 1, + anon_sym_static, + ACTIONS(3833), 1, + anon_sym_readonly, + ACTIONS(3837), 1, + anon_sym_declare, + ACTIONS(3839), 1, + anon_sym_abstract, + ACTIONS(3841), 1, + anon_sym_accessor, + ACTIONS(3952), 1, + anon_sym_RBRACE, + ACTIONS(3954), 1, + anon_sym_SEMI, + STATE(2512), 1, + aux_sym_export_statement_repeat1, + STATE(2619), 1, + sym_method_definition, + STATE(2939), 1, + sym_accessibility_modifier, + STATE(3068), 1, + sym_decorator, + STATE(3093), 1, + sym_override_modifier, + STATE(5453), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3829), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3835), 2, + anon_sym_get, + anon_sym_set, + STATE(1413), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3432), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(6054), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3609), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23919] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3827), 1, + anon_sym_async, + ACTIONS(3831), 1, + anon_sym_static, + ACTIONS(3833), 1, + anon_sym_readonly, + ACTIONS(3837), 1, + anon_sym_declare, + ACTIONS(3839), 1, + anon_sym_abstract, + ACTIONS(3841), 1, + anon_sym_accessor, + ACTIONS(3901), 1, + anon_sym_SEMI, + ACTIONS(3956), 1, + anon_sym_RBRACE, + STATE(2512), 1, + aux_sym_export_statement_repeat1, + STATE(2619), 1, + sym_method_definition, + STATE(2939), 1, + sym_accessibility_modifier, + STATE(3068), 1, + sym_decorator, + STATE(3093), 1, + sym_override_modifier, + STATE(5453), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3829), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3835), 2, + anon_sym_get, + anon_sym_set, + STATE(1411), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3432), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(6054), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3609), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24030] = 33, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2341), 1, + anon_sym_namespace, + ACTIONS(2343), 1, + anon_sym_import, + ACTIONS(2345), 1, + anon_sym_var, + ACTIONS(2347), 1, + anon_sym_let, + ACTIONS(2349), 1, + anon_sym_const, + ACTIONS(2351), 1, + anon_sym_class, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_function, + ACTIONS(2357), 1, + anon_sym_declare, + ACTIONS(2361), 1, + anon_sym_abstract, + ACTIONS(2365), 1, + anon_sym_interface, + ACTIONS(2367), 1, + anon_sym_enum, + ACTIONS(3905), 1, + anon_sym_STAR, + ACTIONS(3907), 1, + anon_sym_default, + ACTIONS(3909), 1, + anon_sym_type, + ACTIONS(3911), 1, + anon_sym_EQ, + ACTIONS(3913), 1, + anon_sym_as, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3923), 1, + anon_sym_module, + ACTIONS(3958), 1, + anon_sym_RBRACE, + STATE(3068), 1, + sym_decorator, + STATE(5238), 1, + sym_internal_module, + STATE(5239), 1, + sym_declaration, + STATE(5282), 1, + aux_sym_export_statement_repeat1, + STATE(5407), 1, + sym_export_clause, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + STATE(6332), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5245), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [24149] = 33, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2341), 1, + anon_sym_namespace, + ACTIONS(2343), 1, + anon_sym_import, + ACTIONS(2345), 1, + anon_sym_var, + ACTIONS(2347), 1, + anon_sym_let, + ACTIONS(2349), 1, + anon_sym_const, + ACTIONS(2351), 1, + anon_sym_class, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_function, + ACTIONS(2357), 1, + anon_sym_declare, + ACTIONS(2361), 1, + anon_sym_abstract, + ACTIONS(2365), 1, + anon_sym_interface, + ACTIONS(2367), 1, + anon_sym_enum, + ACTIONS(3905), 1, + anon_sym_STAR, + ACTIONS(3907), 1, + anon_sym_default, + ACTIONS(3909), 1, + anon_sym_type, + ACTIONS(3911), 1, + anon_sym_EQ, + ACTIONS(3913), 1, + anon_sym_as, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3923), 1, + anon_sym_module, + ACTIONS(3961), 1, + anon_sym_RBRACE, + STATE(3068), 1, + sym_decorator, + STATE(5238), 1, + sym_internal_module, + STATE(5239), 1, + sym_declaration, + STATE(5282), 1, + aux_sym_export_statement_repeat1, + STATE(5407), 1, + sym_export_clause, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + STATE(6332), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5245), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [24268] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3827), 1, + anon_sym_async, + ACTIONS(3831), 1, + anon_sym_static, + ACTIONS(3833), 1, + anon_sym_readonly, + ACTIONS(3837), 1, + anon_sym_declare, + ACTIONS(3839), 1, + anon_sym_abstract, + ACTIONS(3841), 1, + anon_sym_accessor, + ACTIONS(3901), 1, + anon_sym_SEMI, + ACTIONS(3964), 1, + anon_sym_RBRACE, + STATE(2512), 1, + aux_sym_export_statement_repeat1, + STATE(2619), 1, + sym_method_definition, + STATE(2939), 1, + sym_accessibility_modifier, + STATE(3068), 1, + sym_decorator, + STATE(3093), 1, + sym_override_modifier, + STATE(5453), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3829), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3835), 2, + anon_sym_get, + anon_sym_set, + STATE(1411), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3432), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(6054), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3609), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24379] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3619), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3821), 1, + anon_sym_STAR, + ACTIONS(3827), 1, + anon_sym_async, + ACTIONS(3831), 1, + anon_sym_static, + ACTIONS(3833), 1, + anon_sym_readonly, + ACTIONS(3837), 1, + anon_sym_declare, + ACTIONS(3839), 1, + anon_sym_abstract, + ACTIONS(3841), 1, + anon_sym_accessor, + ACTIONS(3966), 1, + anon_sym_RBRACE, + ACTIONS(3968), 1, + anon_sym_SEMI, + STATE(2512), 1, + aux_sym_export_statement_repeat1, + STATE(2619), 1, + sym_method_definition, + STATE(2939), 1, + sym_accessibility_modifier, + STATE(3068), 1, + sym_decorator, + STATE(3093), 1, + sym_override_modifier, + STATE(5453), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3829), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3835), 2, + anon_sym_get, + anon_sym_set, + STATE(1412), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3432), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(6054), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3609), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24490] = 33, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2341), 1, + anon_sym_namespace, + ACTIONS(2343), 1, + anon_sym_import, + ACTIONS(2345), 1, + anon_sym_var, + ACTIONS(2347), 1, + anon_sym_let, + ACTIONS(2349), 1, + anon_sym_const, + ACTIONS(2351), 1, + anon_sym_class, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_function, + ACTIONS(2357), 1, + anon_sym_declare, + ACTIONS(2361), 1, + anon_sym_abstract, + ACTIONS(2365), 1, + anon_sym_interface, + ACTIONS(2367), 1, + anon_sym_enum, + ACTIONS(3905), 1, + anon_sym_STAR, + ACTIONS(3907), 1, + anon_sym_default, + ACTIONS(3909), 1, + anon_sym_type, + ACTIONS(3911), 1, + anon_sym_EQ, + ACTIONS(3913), 1, + anon_sym_as, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3923), 1, + anon_sym_module, + ACTIONS(3970), 1, + anon_sym_RBRACE, + STATE(3068), 1, + sym_decorator, + STATE(5238), 1, + sym_internal_module, + STATE(5239), 1, + sym_declaration, + STATE(5282), 1, + aux_sym_export_statement_repeat1, + STATE(5407), 1, + sym_export_clause, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + STATE(6332), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5245), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [24609] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2341), 1, + anon_sym_namespace, + ACTIONS(2343), 1, + anon_sym_import, + ACTIONS(2345), 1, + anon_sym_var, + ACTIONS(2347), 1, + anon_sym_let, + ACTIONS(2349), 1, + anon_sym_const, + ACTIONS(2351), 1, + anon_sym_class, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_function, + ACTIONS(2357), 1, + anon_sym_declare, + ACTIONS(2361), 1, + anon_sym_abstract, + ACTIONS(2365), 1, + anon_sym_interface, + ACTIONS(2367), 1, + anon_sym_enum, + ACTIONS(3905), 1, + anon_sym_STAR, + ACTIONS(3907), 1, + anon_sym_default, + ACTIONS(3909), 1, + anon_sym_type, + ACTIONS(3913), 1, + anon_sym_as, + ACTIONS(3923), 1, + anon_sym_module, + ACTIONS(3973), 1, + anon_sym_EQ, + STATE(3068), 1, + sym_decorator, + STATE(5238), 1, + sym_internal_module, + STATE(5239), 1, + sym_declaration, + STATE(5282), 1, + aux_sym_export_statement_repeat1, + STATE(5407), 1, + sym_export_clause, + STATE(6332), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5245), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [24718] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3339), 18, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3337), 30, + anon_sym_export, + anon_sym_type, + anon_sym_EQ, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_QMARK, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [24775] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1781), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(1779), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_of, anon_sym_while, anon_sym_SEMI, @@ -155863,27 +159232,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [24784] = 11, - ACTIONS(3969), 1, + [24832] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2341), 1, + anon_sym_namespace, + ACTIONS(2343), 1, + anon_sym_import, + ACTIONS(2345), 1, + anon_sym_var, + ACTIONS(2347), 1, + anon_sym_let, + ACTIONS(2349), 1, + anon_sym_const, + ACTIONS(2351), 1, + anon_sym_class, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_function, + ACTIONS(2357), 1, + anon_sym_declare, + ACTIONS(2361), 1, + anon_sym_abstract, + ACTIONS(2365), 1, + anon_sym_interface, + ACTIONS(2367), 1, + anon_sym_enum, + ACTIONS(3905), 1, + anon_sym_STAR, + ACTIONS(3907), 1, + anon_sym_default, + ACTIONS(3909), 1, + anon_sym_type, + ACTIONS(3911), 1, + anon_sym_EQ, + ACTIONS(3913), 1, + anon_sym_as, + ACTIONS(3923), 1, + anon_sym_module, + STATE(3068), 1, + sym_decorator, + STATE(5238), 1, + sym_internal_module, + STATE(5239), 1, + sym_declaration, + STATE(5282), 1, + aux_sym_export_statement_repeat1, + STATE(5407), 1, + sym_export_clause, + STATE(6332), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3975), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3921), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5245), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [24943] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3364), 18, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3362), 30, + anon_sym_export, + anon_sym_type, + anon_sym_EQ, + anon_sym_namespace, + anon_sym_let, anon_sym_DOT, - ACTIONS(3975), 1, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_QMARK, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [25000] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3335), 18, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - STATE(1522), 1, - sym_type_arguments, - STATE(1756), 1, - sym_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_AMP, + anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3333), 30, + anon_sym_export, + anon_sym_type, + anon_sym_EQ, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_QMARK, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [25057] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3965), 12, + ACTIONS(1777), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155894,18 +159436,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3967), 27, + anon_sym_QMARK, + ACTIONS(1775), 34, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_else, + anon_sym_LPAREN, anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -155923,18 +159473,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [24856] = 8, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3977), 1, - anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [25114] = 11, ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, - STATE(1604), 1, - sym_arguments, - STATE(1605), 1, + ACTIONS(3989), 1, + anon_sym_QMARK_DOT, + ACTIONS(3991), 1, + anon_sym_LT, + STATE(1540), 1, sym_type_arguments, + STATE(1649), 1, + sym_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -155951,7 +159508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3981), 30, + ACTIONS(3981), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -155960,9 +159517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -155980,23 +159535,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [24922] = 8, - ACTIONS(3969), 1, + [25186] = 8, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3977), 1, + ACTIONS(3991), 1, anon_sym_LT, - ACTIONS(3989), 1, + ACTIONS(3997), 1, anon_sym_DOT, - STATE(1606), 1, - sym_arguments, - STATE(1607), 1, + STATE(1553), 1, sym_type_arguments, + STATE(1582), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3985), 12, + ACTIONS(3993), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156009,7 +159563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3987), 30, + ACTIONS(3995), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156040,21 +159594,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24988] = 8, - ACTIONS(3969), 1, + [25252] = 8, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3977), 1, - anon_sym_LT, ACTIONS(3991), 1, + anon_sym_LT, + ACTIONS(4003), 1, anon_sym_DOT, - STATE(1601), 1, - sym_arguments, - STATE(1602), 1, + STATE(1555), 1, sym_type_arguments, + STATE(1556), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 12, + ACTIONS(3999), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156067,7 +159621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3406), 30, + ACTIONS(4001), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156098,91 +159652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25054] = 22, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_async, - ACTIONS(3997), 1, - anon_sym_static, - ACTIONS(3999), 1, - anon_sym_readonly, - ACTIONS(4005), 1, - anon_sym_override, - STATE(2682), 1, - sym_accessibility_modifier, - STATE(2711), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3349), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3851), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4001), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4003), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3665), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5214), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5227), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5760), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3993), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [25148] = 7, - ACTIONS(3977), 1, + [25318] = 7, + ACTIONS(3991), 1, anon_sym_LT, - ACTIONS(4009), 1, + ACTIONS(4007), 1, anon_sym_DOT, - ACTIONS(4011), 1, + ACTIONS(4009), 1, anon_sym_is, - STATE(1584), 1, + STATE(1568), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4007), 12, + ACTIONS(4005), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156195,7 +159677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 31, + ACTIONS(3476), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156227,13 +159709,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25212] = 4, + [25382] = 8, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3991), 1, + anon_sym_LT, ACTIONS(4011), 1, - anon_sym_is, + anon_sym_DOT, + STATE(1557), 1, + sym_type_arguments, + STATE(1558), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4013), 13, + ACTIONS(3422), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156244,22 +159734,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4015), 32, + ACTIONS(3418), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156280,11 +159767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25269] = 3, + [25448] = 5, + ACTIONS(3991), 1, + anon_sym_LT, + STATE(1561), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3131), 14, + ACTIONS(4013), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156295,11 +159786,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3133), 32, + ACTIONS(4015), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156332,11 +159821,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25324] = 3, + [25507] = 4, + ACTIONS(4017), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3123), 14, + ACTIONS(4013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156350,8 +159841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3125), 32, + ACTIONS(4015), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156384,15 +159874,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25379] = 5, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(4017), 1, - sym__automatic_semicolon, + [25564] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1722), 13, + ACTIONS(1781), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156406,7 +159892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1720), 31, + anon_sym_QMARK, + ACTIONS(1779), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156437,14 +159924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [25438] = 6, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(4023), 1, - anon_sym_DOT, - STATE(1597), 1, - sym_arguments, + [25619] = 4, + ACTIONS(4009), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -156462,59 +159946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4021), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [25499] = 5, - ACTIONS(3977), 1, - anon_sym_LT, - STATE(1595), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4025), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4027), 32, + ACTIONS(4021), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156547,72 +159979,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25558] = 6, - ACTIONS(4029), 1, - anon_sym_LBRACE, - ACTIONS(4031), 1, - anon_sym_DOT, - STATE(1654), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1714), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1712), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + [25676] = 6, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [25619] = 6, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(4009), 1, + ACTIONS(4027), 1, anon_sym_DOT, - STATE(1584), 1, - sym_type_arguments, + STATE(1560), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4007), 12, + ACTIONS(4023), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156623,15 +160000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 31, + ACTIONS(4025), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -156657,66 +160034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25680] = 6, - ACTIONS(4029), 1, - anon_sym_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOT, - STATE(1654), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1714), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1712), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [25741] = 3, + [25737] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 14, + ACTIONS(1664), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156730,8 +160052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1821), 32, + ACTIONS(1662), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156764,11 +160085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25796] = 3, + anon_sym_is, + [25792] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1652), 13, + ACTIONS(3333), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156782,7 +160104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1650), 33, + anon_sym_QMARK, + ACTIONS(3335), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156815,19 +160138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, + [25847] = 4, + ACTIONS(4009), 1, anon_sym_is, - [25851] = 6, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1626), 2, - sym_template_string, - sym_arguments, - ACTIONS(4035), 13, + ACTIONS(4029), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156841,12 +160158,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4037), 29, + ACTIONS(4031), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -156869,13 +160187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [25912] = 3, + [25904] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1919), 14, + ACTIONS(1777), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156890,7 +160210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1917), 32, + ACTIONS(1775), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -156923,13 +160243,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25967] = 4, - ACTIONS(4011), 1, - anon_sym_is, + [25959] = 6, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4039), 13, + STATE(1707), 2, + sym_template_string, + sym_arguments, + ACTIONS(4033), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156943,13 +160268,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4041), 32, + ACTIONS(4035), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -156972,17 +160296,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26024] = 4, - ACTIONS(4043), 1, - anon_sym_is, + [26020] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 13, + ACTIONS(4037), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156996,7 +160316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4027), 32, + ACTIONS(4039), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157029,11 +160349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26081] = 3, + anon_sym_is, + [26075] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4045), 13, + ACTIONS(3337), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157047,7 +160368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4047), 33, + anon_sym_QMARK, + ACTIONS(3339), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157080,16 +160402,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [26136] = 5, - ACTIONS(4029), 1, + [26130] = 6, + ACTIONS(4041), 1, anon_sym_LBRACE, - STATE(1654), 1, + ACTIONS(4043), 1, + anon_sym_DOT, + STATE(1697), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1714), 13, + ACTIONS(1704), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157103,7 +160426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1712), 31, + ACTIONS(1702), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -157115,7 +160438,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157135,11 +160457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [26195] = 3, + [26191] = 6, + ACTIONS(4041), 1, + anon_sym_LBRACE, + ACTIONS(4045), 1, + anon_sym_DOT, + STATE(1697), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3127), 14, + ACTIONS(1704), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157153,20 +160481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3129), 32, + ACTIONS(1702), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157185,93 +160511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [26250] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4049), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4085), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4053), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [26362] = 3, + anon_sym_PIPE_RBRACE, + [26252] = 5, + ACTIONS(4041), 1, + anon_sym_LBRACE, + STATE(1697), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3598), 13, + ACTIONS(1704), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157285,18 +160534,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3382), 32, + ACTIONS(1702), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -157316,15 +160565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [26416] = 4, - ACTIONS(4101), 1, - anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [26311] = 5, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(4047), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 13, + ACTIONS(1672), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157338,7 +160588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4099), 31, + ACTIONS(1670), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157350,6 +160600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157368,13 +160619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26472] = 3, + [26370] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 13, + ACTIONS(3362), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157388,7 +160638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 32, + anon_sym_QMARK, + ACTIONS(3364), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157421,65 +160672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26526] = 6, - ACTIONS(4108), 1, - anon_sym_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4112), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4104), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + [26425] = 6, + ACTIONS(3991), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4106), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4007), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [26586] = 3, + STATE(1568), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 13, + ACTIONS(4005), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157490,10 +160693,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4116), 32, + ACTIONS(3476), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157505,7 +160707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157526,11 +160727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26640] = 3, + [26486] = 6, + ACTIONS(4049), 1, + anon_sym_LBRACE, + ACTIONS(4051), 1, + anon_sym_DOT, + STATE(1755), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4118), 13, + ACTIONS(1704), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157544,10 +160751,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4120), 32, + ACTIONS(1702), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -157556,7 +160762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157575,13 +160780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26694] = 3, + [26546] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4122), 13, + ACTIONS(4053), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157595,7 +160799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4124), 32, + ACTIONS(4055), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157628,120 +160832,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26748] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4126), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4128), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [26600] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3985), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4101), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [26802] = 3, + ACTIONS(4103), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4130), 13, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4132), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4061), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [26856] = 4, - ACTIONS(4108), 1, - anon_sym_AMP, + [26712] = 4, + ACTIONS(4105), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 12, + ACTIONS(1789), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -157749,7 +160932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4136), 32, + ACTIONS(1787), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157780,27 +160963,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26912] = 3, + [26768] = 36, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_COLON, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(4109), 1, + anon_sym_RPAREN, + STATE(1448), 1, + sym_type_arguments, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, + sym_optional_chain, + STATE(7410), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 13, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [26888] = 19, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3958), 1, + anon_sym_RBRACE, + ACTIONS(4111), 1, anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4121), 1, + anon_sym_readonly, + STATE(3111), 1, + sym_override_modifier, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [26974] = 36, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_COLON, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(4125), 1, + anon_sym_RPAREN, + STATE(1448), 1, + sym_type_arguments, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, + sym_optional_chain, + STATE(7501), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27094] = 36, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_COLON, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(4127), 1, + anon_sym_RPAREN, + STATE(1448), 1, + sym_type_arguments, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, + sym_optional_chain, + STATE(7465), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27214] = 6, + ACTIONS(4133), 1, anon_sym_AMP, + ACTIONS(4135), 1, anon_sym_PIPE, + ACTIONS(4137), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4129), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4140), 32, + ACTIONS(4131), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157831,27 +161336,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26966] = 3, + [27274] = 6, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4137), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 13, + ACTIONS(4139), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4144), 32, + ACTIONS(4141), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157882,13 +161390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27020] = 3, + [27334] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2321), 13, + ACTIONS(4019), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157902,7 +161409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2319), 32, + ACTIONS(4021), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157935,19 +161442,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27074] = 7, - ACTIONS(3971), 1, + [27388] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(3975), 1, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - STATE(5080), 1, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1787), 13, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4143), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [27500] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4145), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [27612] = 7, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_QMARK_DOT, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1875), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157961,7 +161628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 28, + ACTIONS(1877), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -157990,25 +161657,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27136] = 3, + [27674] = 6, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4137), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 13, + ACTIONS(4147), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4148), 32, + ACTIONS(4149), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158039,13 +161710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27190] = 3, + [27734] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 13, + ACTIONS(4151), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158059,7 +161729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4152), 32, + ACTIONS(4153), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158092,11 +161762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27244] = 3, + [27788] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4155), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158110,7 +161780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 32, + ACTIONS(4157), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158143,11 +161813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27298] = 3, + [27842] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 13, + ACTIONS(4155), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158161,7 +161831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4152), 32, + ACTIONS(4157), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158194,11 +161864,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27352] = 3, + [27896] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4155), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158212,7 +161882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 32, + ACTIONS(4157), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158245,11 +161915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27406] = 3, + [27950] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4158), 13, + ACTIONS(4159), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158263,7 +161933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4160), 32, + ACTIONS(4161), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158296,11 +161966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27460] = 3, + [28004] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 13, + ACTIONS(4159), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158314,7 +161984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4164), 32, + ACTIONS(4161), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158347,11 +162017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27514] = 3, + [28058] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4158), 13, + ACTIONS(4159), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158365,7 +162035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4160), 32, + ACTIONS(4161), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158398,11 +162068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27568] = 3, + [28112] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 13, + ACTIONS(4163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158416,7 +162086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4164), 32, + ACTIONS(4165), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158449,11 +162119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27622] = 3, + [28166] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 13, + ACTIONS(4163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158467,7 +162137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4168), 32, + ACTIONS(4165), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158500,72 +162170,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27676] = 13, + [28220] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4174), 1, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4170), 12, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4167), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [27750] = 3, + [28332] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 13, + ACTIONS(4163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158579,7 +162268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4179), 32, + ACTIONS(4165), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158612,11 +162301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27804] = 3, + [28386] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 13, + ACTIONS(4169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158630,7 +162319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4168), 32, + ACTIONS(4171), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158663,11 +162352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27858] = 3, + [28440] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 13, + ACTIONS(2331), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158681,7 +162370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4179), 32, + ACTIONS(2329), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158714,11 +162403,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27912] = 3, + [28494] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 13, + ACTIONS(4173), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158732,7 +162421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4183), 32, + ACTIONS(4175), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158765,11 +162454,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27966] = 3, + [28548] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4177), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [28660] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 13, + ACTIONS(4179), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158783,7 +162552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4187), 32, + ACTIONS(4181), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158816,17 +162585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28020] = 6, - ACTIONS(4189), 1, - anon_sym_LBRACE, - ACTIONS(4191), 1, - anon_sym_DOT, - STATE(1620), 1, - sym_statement_block, + [28714] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1714), 13, + ACTIONS(4183), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158840,9 +162603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1712), 29, + ACTIONS(4185), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -158851,6 +162615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158869,18 +162634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28080] = 6, - ACTIONS(4189), 1, - anon_sym_LBRACE, - ACTIONS(4193), 1, - anon_sym_DOT, - STATE(1620), 1, - sym_statement_block, + [28768] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1714), 13, + ACTIONS(4187), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158894,9 +162654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1712), 29, + ACTIONS(4189), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -158905,6 +162666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158923,30 +162685,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [28140] = 6, - ACTIONS(4108), 1, - anon_sym_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4112), 1, anon_sym_extends, + anon_sym_implements, + [28822] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 11, + ACTIONS(4187), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4197), 31, + ACTIONS(4189), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158977,41 +162736,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28200] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + [28876] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4187), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4189), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4203), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_extends, + anon_sym_implements, + [28930] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4199), 11, + ACTIONS(4191), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -159020,15 +162804,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 19, + ACTIONS(4193), 32, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -159042,11 +162834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [28280] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28984] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4206), 13, + ACTIONS(4191), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159060,7 +162858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4208), 32, + ACTIONS(4193), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159093,91 +162891,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28334] = 32, + [29038] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4195), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [29150] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4210), 5, + ACTIONS(4197), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [28446] = 3, + [29262] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 13, + ACTIONS(4191), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159191,7 +163069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4214), 32, + ACTIONS(4193), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159224,29 +163102,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28500] = 6, - ACTIONS(4108), 1, + [29316] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4110), 1, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4112), 1, - anon_sym_extends, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 11, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4199), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [29428] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4053), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4214), 31, + ACTIONS(4055), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159277,12 +163231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28560] = 3, + [29482] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2325), 13, + ACTIONS(4053), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159296,7 +163251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 32, + ACTIONS(4055), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159329,11 +163284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28614] = 3, + [29536] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4216), 13, + ACTIONS(4201), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159347,7 +163302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4218), 32, + ACTIONS(4203), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159380,11 +163335,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28668] = 3, + [29590] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 13, + ACTIONS(2323), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159398,7 +163353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 32, + ACTIONS(2321), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159431,25 +163386,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28722] = 3, + [29644] = 6, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4137), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 13, + ACTIONS(4205), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 32, + ACTIONS(4207), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159480,13 +163439,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28776] = 3, + [29704] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4209), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [29816] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 13, + ACTIONS(4205), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159500,7 +163538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 32, + ACTIONS(4207), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159533,11 +163571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28830] = 3, + [29870] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 13, + ACTIONS(4211), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159551,7 +163589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4226), 32, + ACTIONS(4213), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159584,25 +163622,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28884] = 3, + [29924] = 6, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4137), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 13, + ACTIONS(4215), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4226), 32, + ACTIONS(4217), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159633,15 +163675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28938] = 4, - ACTIONS(4228), 1, - sym__automatic_semicolon, + [29984] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 13, + ACTIONS(4219), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159655,7 +163694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 31, + ACTIONS(4221), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159686,12 +163725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28994] = 3, + [30038] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 13, + ACTIONS(4223), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159705,7 +163745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4226), 32, + ACTIONS(4225), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159738,30 +163778,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29048] = 12, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4234), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [30092] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 12, + ACTIONS(4227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159772,16 +163793,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 23, + ACTIONS(4229), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -159797,12 +163825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [29120] = 3, + anon_sym_extends, + anon_sym_implements, + [30146] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 13, + ACTIONS(4231), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159816,7 +163847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4239), 32, + ACTIONS(4233), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159849,11 +163880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29174] = 3, + [30200] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 13, + ACTIONS(4227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159867,7 +163898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4239), 32, + ACTIONS(4229), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159900,11 +163931,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29228] = 3, + [30254] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 13, + ACTIONS(4231), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159918,7 +163949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4239), 32, + ACTIONS(4233), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159951,47 +163982,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29282] = 19, - ACTIONS(1594), 1, + [30308] = 19, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - ACTIONS(3737), 1, + ACTIONS(3915), 1, anon_sym_COMMA, - ACTIONS(3740), 1, + ACTIONS(3961), 1, anon_sym_RBRACE, - ACTIONS(4241), 1, + ACTIONS(4111), 1, anon_sym_STAR, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(4247), 1, + ACTIONS(4117), 1, anon_sym_async, - ACTIONS(4251), 1, + ACTIONS(4121), 1, anon_sym_readonly, - STATE(2701), 1, + STATE(3111), 1, sym_override_modifier, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 2, + ACTIONS(4119), 2, sym_number, sym_private_property_identifier, - ACTIONS(4253), 2, + ACTIONS(4123), 2, anon_sym_get, anon_sym_set, - STATE(3081), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -159999,7 +164030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3607), 18, + ACTIONS(3609), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160018,195 +164049,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29368] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [30394] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4235), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4255), 5, + ACTIONS(4237), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - [29480] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_extends, + anon_sym_implements, + [30448] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4239), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4257), 5, + ACTIONS(4241), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - [29592] = 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30502] = 7, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(2325), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 13, + ACTIONS(4243), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4246), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1674), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4261), 32, + ACTIONS(1678), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -160227,13 +164205,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29646] = 3, + [30564] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4263), 13, + ACTIONS(4235), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160247,7 +164224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4265), 32, + ACTIONS(4237), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160280,150 +164257,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29700] = 36, + [30618] = 19, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, + anon_sym_GT_GT, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(4269), 1, - anon_sym_RPAREN, - STATE(1447), 1, + anon_sym_LT, + STATE(1448), 1, sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, - STATE(5804), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29820] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4271), 13, - anon_sym_STAR, + ACTIONS(4251), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4273), 32, + ACTIONS(4249), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [29874] = 5, - ACTIONS(4189), 1, - anon_sym_LBRACE, - STATE(1620), 1, - sym_statement_block, + [30704] = 19, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3970), 1, + anon_sym_RBRACE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4121), 1, + anon_sym_readonly, + STATE(3111), 1, + sym_override_modifier, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [30790] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1714), 13, + ACTIONS(4239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160437,9 +164409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1712), 30, + ACTIONS(4241), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -160467,12 +164440,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [29932] = 3, + [30844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2329), 13, + ACTIONS(4253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160486,7 +164460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2327), 32, + ACTIONS(4255), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160519,62 +164493,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29986] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4275), 13, - anon_sym_STAR, + [30898] = 36, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_COLON, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, anon_sym_GT_GT, + ACTIONS(4077), 1, anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4277), 32, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4107), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(4257), 1, anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1448), 1, + sym_type_arguments, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, + sym_optional_chain, + STATE(7409), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [30040] = 3, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31018] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4279), 13, + ACTIONS(4259), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160588,7 +164595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 32, + ACTIONS(4261), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160621,11 +164628,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30094] = 3, + [31072] = 13, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4267), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4279), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4263), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160636,23 +164665,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 32, + ACTIONS(4265), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -160666,97 +164688,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [30148] = 32, + [31146] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4283), 5, + ACTIONS(4270), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [30260] = 3, + [31258] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4279), 13, + ACTIONS(4253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160770,7 +164787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 32, + ACTIONS(4255), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160803,11 +164820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30314] = 3, + [31312] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4259), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160821,7 +164838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4287), 32, + ACTIONS(4261), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160854,11 +164871,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30368] = 3, + [31366] = 14, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4272), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160869,77 +164910,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4287), 32, + ACTIONS(4249), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [30422] = 5, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(1721), 1, - sym_arguments, + [31442] = 7, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 13, + ACTIONS(3418), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3422), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4291), 30, + ACTIONS(3384), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -160958,11 +164988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30480] = 3, + [31504] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4275), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160976,7 +165006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4287), 32, + ACTIONS(4277), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161009,11 +165039,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30534] = 3, + [31558] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4279), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161027,7 +165057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 32, + ACTIONS(4281), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161060,91 +165090,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30588] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [31612] = 7, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4289), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4292), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4283), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4059), 1, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4287), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_implements, + [31674] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(2335), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4297), 5, + ACTIONS(2333), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - [30700] = 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31728] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4297), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161158,7 +165214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 32, + ACTIONS(4299), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161191,97 +165247,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30754] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [31782] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4301), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4303), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4299), 5, - anon_sym_COMMA, + ACTIONS(3384), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_RBRACK, - [30866] = 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [31840] = 4, + ACTIONS(4133), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4305), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161289,7 +165319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 32, + ACTIONS(4307), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161322,11 +165352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30920] = 3, + [31896] = 5, + ACTIONS(4313), 1, + anon_sym_QMARK, + ACTIONS(4315), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4301), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161340,7 +165374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4303), 32, + ACTIONS(4311), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161348,7 +165382,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -161371,98 +165404,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30974] = 19, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [31954] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4317), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 17, + ACTIONS(4319), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [31060] = 6, - ACTIONS(4108), 1, - anon_sym_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4112), 1, anon_sym_extends, + anon_sym_implements, + [32008] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4309), 11, + ACTIONS(4321), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4311), 31, + ACTIONS(4323), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161493,98 +165505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31120] = 36, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(3969), 1, + [32062] = 5, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(4313), 1, - anon_sym_RPAREN, - STATE(1447), 1, - sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, - sym_optional_chain, - STATE(5795), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4049), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4085), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, + STATE(1674), 1, sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [31240] = 4, - ACTIONS(4017), 1, - sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1722), 13, + ACTIONS(4325), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161598,13 +165529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1720), 31, + ACTIONS(4327), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -161630,35 +165560,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31296] = 14, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [32120] = 19, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, + anon_sym_RBRACE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4315), 1, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4121), 1, + anon_sym_readonly, + STATE(3111), 1, + sym_override_modifier, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [32206] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 12, + ACTIONS(4329), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161669,36 +165642,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 20, + ACTIONS(4331), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [31372] = 4, - ACTIONS(4027), 1, anon_sym_extends, + anon_sym_implements, + [32260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 13, + ACTIONS(4333), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161712,7 +165696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4320), 31, + ACTIONS(4335), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161743,30 +165727,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [31428] = 6, - ACTIONS(4108), 1, - anon_sym_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4112), 1, anon_sym_extends, + anon_sym_implements, + [32314] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 11, + ACTIONS(4337), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4320), 31, + ACTIONS(4339), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161797,166 +165778,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31488] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, + [32368] = 6, + ACTIONS(4133), 1, anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4135), 1, anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + ACTIONS(4137), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4341), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4322), 5, + ACTIONS(4343), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - [31600] = 26, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4307), 1, - anon_sym_BANG, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4049), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4085), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4087), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [31700] = 3, + anon_sym_implements, + [32428] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 13, + ACTIONS(4341), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161970,7 +165852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4326), 32, + ACTIONS(4343), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162003,11 +165885,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31754] = 3, + [32482] = 4, + ACTIONS(4349), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 13, + ACTIONS(4345), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162021,7 +165905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4027), 32, + ACTIONS(4347), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162033,7 +165917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162054,294 +165937,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31808] = 27, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4307), 1, - anon_sym_BANG, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [32538] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(3605), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 10, + ACTIONS(3378), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [31910] = 17, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4077), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4315), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32592] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(3607), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 19, + ACTIONS(3400), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [31992] = 23, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32646] = 4, + ACTIONS(4352), 1, anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4345), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4307), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4305), 12, + ACTIONS(4347), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [32086] = 24, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32702] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4355), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 12, + ACTIONS(4357), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [32182] = 3, + anon_sym_extends, + anon_sym_implements, + [32756] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4359), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162355,7 +166160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4330), 32, + ACTIONS(4361), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162388,11 +166193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32236] = 3, + [32810] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4039), 13, + ACTIONS(4363), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162406,7 +166211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4041), 32, + ACTIONS(4365), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162439,113 +166244,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32290] = 25, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [32864] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4367), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 11, + ACTIONS(4369), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [32388] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4077), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4315), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4371), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -162554,100 +166309,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 19, + ACTIONS(4373), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [32468] = 19, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3838), 1, - anon_sym_RBRACE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4247), 1, - anon_sym_async, - ACTIONS(4251), 1, - anon_sym_readonly, - STATE(2701), 1, - sym_override_modifier, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4249), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4253), 2, - anon_sym_get, - anon_sym_set, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [32554] = 3, + anon_sym_extends, + anon_sym_implements, + [32972] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4013), 13, + ACTIONS(4375), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162661,7 +166364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4015), 32, + ACTIONS(4377), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162694,42 +166397,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32608] = 17, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4315), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [33026] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 11, + ACTIONS(4379), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -162738,101 +166412,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 18, + ACTIONS(4381), 32, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32690] = 19, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3829), 1, - anon_sym_RBRACE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4247), 1, - anon_sym_async, - ACTIONS(4251), 1, - anon_sym_readonly, - STATE(2701), 1, - sym_override_modifier, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4249), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4253), 2, - anon_sym_get, - anon_sym_set, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [32776] = 4, - ACTIONS(3475), 1, - anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [33080] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(4383), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162846,7 +166466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 31, + ACTIONS(4385), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162877,12 +166497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32832] = 3, + [33134] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 13, + ACTIONS(2319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162896,7 +166517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4334), 32, + ACTIONS(2317), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162929,13 +166550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32886] = 4, - ACTIONS(4340), 1, - anon_sym_DOT, + [33188] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 13, + ACTIONS(4387), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162949,7 +166568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4338), 31, + ACTIONS(4389), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162961,6 +166580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162981,11 +166601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32942] = 3, + [33242] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 13, + ACTIONS(4391), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162999,7 +166619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4344), 32, + ACTIONS(4393), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163032,162 +166652,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32996] = 21, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [33296] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4313), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4307), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 14, + ACTIONS(4315), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [33086] = 28, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4307), 1, - anon_sym_BANG, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4049), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4085), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4087), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [33190] = 6, - ACTIONS(4108), 1, + anon_sym_extends, + anon_sym_implements, + [33350] = 6, + ACTIONS(4133), 1, anon_sym_AMP, - ACTIONS(4110), 1, + ACTIONS(4135), 1, anon_sym_PIPE, - ACTIONS(4112), 1, + ACTIONS(4137), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 11, + ACTIONS(4395), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163199,7 +166725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4348), 31, + ACTIONS(4397), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163231,261 +166757,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33250] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [33410] = 4, + ACTIONS(4403), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4399), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4350), 5, + ACTIONS(4401), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_RBRACK, - [33362] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_extends, + anon_sym_implements, + [33466] = 4, + ACTIONS(4409), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4405), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4352), 5, + ACTIONS(4407), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - [33474] = 36, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(4354), 1, - anon_sym_RPAREN, - STATE(1447), 1, - sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, - sym_optional_chain, - STATE(5815), 1, - sym_type_annotation, + anon_sym_implements, + [33522] = 6, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4417), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4415), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4411), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4413), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33594] = 6, - ACTIONS(4108), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33582] = 6, + ACTIONS(4133), 1, anon_sym_AMP, - ACTIONS(4110), 1, + ACTIONS(4135), 1, anon_sym_PIPE, - ACTIONS(4112), 1, + ACTIONS(4137), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 11, + ACTIONS(4419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163497,7 +166937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4358), 31, + ACTIONS(4421), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163529,29 +166969,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33654] = 6, - ACTIONS(4108), 1, - anon_sym_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4112), 1, - anon_sym_extends, + [33642] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4360), 11, + ACTIONS(4423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4362), 31, + ACTIONS(4425), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163582,14 +167018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33714] = 4, - ACTIONS(4364), 1, - anon_sym_LBRACK, + [33696] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 13, + ACTIONS(4427), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163603,7 +167038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4344), 31, + ACTIONS(4429), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163613,6 +167048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163635,11 +167071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33770] = 3, + [33750] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(4303), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163653,7 +167089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 32, + ACTIONS(4301), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163686,84 +167122,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33824] = 19, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3817), 1, - anon_sym_RBRACE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4247), 1, - anon_sym_async, - ACTIONS(4251), 1, - anon_sym_readonly, - STATE(2701), 1, - sym_override_modifier, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4249), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4253), 2, - anon_sym_get, - anon_sym_set, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [33910] = 3, + [33804] = 4, + ACTIONS(4133), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 13, + ACTIONS(4431), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163771,19 +167141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 32, - sym__automatic_semicolon, + ACTIONS(4433), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163803,12 +167172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [33964] = 3, + anon_sym_extends, + anon_sym_implements, + [33860] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1857), 13, + ACTIONS(4435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163822,19 +167192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 32, - sym__automatic_semicolon, + ACTIONS(4437), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163854,12 +167223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [34018] = 3, + anon_sym_extends, + anon_sym_implements, + [33914] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 13, + ACTIONS(4439), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163873,7 +167243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 32, + ACTIONS(4295), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163906,13 +167276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34072] = 4, - ACTIONS(3991), 1, - anon_sym_DOT, + [33968] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163926,7 +167294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3406), 31, + ACTIONS(4443), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163938,6 +167306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163958,383 +167327,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34128] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, + [34022] = 4, + ACTIONS(4449), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4445), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4370), 5, + ACTIONS(4447), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - [34240] = 32, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [34078] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4372), 5, + ACTIONS(4451), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [34352] = 32, + [34190] = 26, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, + anon_sym_LT, + ACTIONS(4251), 1, + anon_sym_BANG, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4374), 5, + ACTIONS(4249), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [34464] = 32, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [34290] = 27, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, + anon_sym_LT, + ACTIONS(4251), 1, + anon_sym_BANG, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4376), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [34576] = 4, - ACTIONS(4382), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4378), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4380), 31, + ACTIONS(4249), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [34632] = 3, + [34392] = 4, + ACTIONS(4011), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 13, + ACTIONS(3422), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164348,7 +167628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4386), 32, + ACTIONS(3418), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164360,7 +167640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164381,142 +167660,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34686] = 32, + [34448] = 17, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, + ACTIONS(4272), 1, anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4388), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [34798] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4390), 13, - anon_sym_STAR, + ACTIONS(4251), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 32, + ACTIONS(4249), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [34852] = 3, + [34530] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(2327), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164530,7 +167743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 32, + ACTIONS(2325), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164563,18 +167776,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34906] = 4, - ACTIONS(4108), 1, - anon_sym_AMP, + [34584] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 12, + ACTIONS(4453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164582,7 +167794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 32, + ACTIONS(4455), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164615,11 +167827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34962] = 3, + [34638] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 13, + ACTIONS(1833), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164633,18 +167845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4404), 32, + ACTIONS(1831), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -164664,13 +167877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [35016] = 3, + anon_sym_PIPE_RBRACE, + [34692] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 13, + ACTIONS(1837), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164684,18 +167896,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4408), 32, + ACTIONS(1835), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -164715,13 +167928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [35070] = 3, + anon_sym_PIPE_RBRACE, + [34746] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(4457), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164735,7 +167947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4412), 32, + ACTIONS(4459), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164768,39 +167980,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35124] = 7, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(2331), 1, - anon_sym_extends, + [34800] = 4, + ACTIONS(4403), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4417), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1724), 10, + ACTIONS(4415), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 28, + ACTIONS(4417), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_RBRACK, anon_sym_DOT, @@ -164822,30 +168030,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35186] = 6, - ACTIONS(4108), 1, - anon_sym_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4112), 1, anon_sym_extends, + anon_sym_implements, + [34856] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 11, + ACTIONS(4415), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4422), 31, + ACTIONS(4417), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164876,31 +168081,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35246] = 6, - ACTIONS(4344), 1, anon_sym_extends, - ACTIONS(4364), 1, - anon_sym_LBRACK, + anon_sym_implements, + [34910] = 4, + ACTIONS(4465), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4424), 11, + ACTIONS(4461), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4426), 30, + ACTIONS(4463), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164910,8 +168113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164930,133 +168133,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35306] = 4, - ACTIONS(4432), 1, anon_sym_extends, + anon_sym_implements, + [34966] = 23, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 13, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4430), 31, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4251), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4249), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [35060] = 24, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4085), 1, anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4089), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [35362] = 19, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3737), 1, + ACTIONS(4251), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 12, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3824), 1, anon_sym_RBRACE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4247), 1, - anon_sym_async, - ACTIONS(4251), 1, - anon_sym_readonly, - STATE(2701), 1, - sym_override_modifier, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4249), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4253), 2, - anon_sym_get, - anon_sym_set, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [35448] = 4, - ACTIONS(4364), 1, - anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [35156] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4434), 13, + ACTIONS(4029), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165070,7 +168296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4436), 31, + ACTIONS(4031), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165080,6 +168306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165102,95 +168329,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35504] = 7, - ACTIONS(3440), 1, + [35210] = 25, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(3442), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3418), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 27, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4251), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35566] = 7, - ACTIONS(4392), 1, - anon_sym_extends, - ACTIONS(4440), 1, - anon_sym_EQ, + [35308] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4444), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4447), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4438), 10, + ACTIONS(4467), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 28, + ACTIONS(4469), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165211,17 +168451,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35628] = 5, - ACTIONS(4454), 1, - anon_sym_QMARK, - ACTIONS(4456), 1, anon_sym_extends, + anon_sym_implements, + [35362] = 16, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4272), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4450), 13, + ACTIONS(4057), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -165230,46 +168495,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 30, + ACTIONS(4249), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35686] = 3, + [35442] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4458), 13, + ACTIONS(4013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165283,7 +168535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4460), 32, + ACTIONS(4015), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165316,11 +168568,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35740] = 3, + [35496] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4462), 13, + ACTIONS(4471), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165334,7 +168586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4464), 32, + ACTIONS(4473), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165367,64 +168619,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35794] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4402), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4404), 3, - anon_sym_COMMA, + [35550] = 17, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3400), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4272), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 29, + ACTIONS(4249), 18, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [35852] = 3, + [35632] = 4, + ACTIONS(4047), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4466), 13, + ACTIONS(1672), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165438,7 +168704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4468), 32, + ACTIONS(1670), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165469,13 +168735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [35906] = 3, + [35688] = 4, + ACTIONS(4015), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4470), 13, + ACTIONS(4395), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165489,7 +168756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4472), 32, + ACTIONS(4397), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165520,97 +168787,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [35960] = 36, + [35744] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(4474), 1, - anon_sym_RPAREN, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, - STATE(5564), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36080] = 3, + ACTIONS(4475), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [35856] = 5, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165624,7 +168890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2335), 32, + ACTIONS(4311), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165632,7 +168898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -165655,13 +168920,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [36134] = 3, + [35914] = 5, + ACTIONS(4049), 1, + anon_sym_LBRACE, + STATE(1755), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4454), 13, + ACTIONS(1704), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165675,10 +168943,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4456), 32, + ACTIONS(1702), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -165706,13 +168973,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [36188] = 3, + [35972] = 6, + ACTIONS(4049), 1, + anon_sym_LBRACE, + ACTIONS(4477), 1, + anon_sym_DOT, + STATE(1755), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4476), 13, + ACTIONS(1704), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165726,10 +168998,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4478), 32, + ACTIONS(1702), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -165738,7 +169009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165757,17 +169027,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [36242] = 5, - ACTIONS(4458), 1, - anon_sym_QMARK, - ACTIONS(4460), 1, - anon_sym_extends, + [36032] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4450), 13, + ACTIONS(4479), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165781,7 +169046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 30, + ACTIONS(4481), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165789,6 +169054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -165811,12 +169077,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [36300] = 3, + [36086] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4480), 13, + ACTIONS(4483), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165830,7 +169097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4482), 32, + ACTIONS(4485), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165863,11 +169130,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36354] = 3, + [36140] = 4, + ACTIONS(3478), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4484), 13, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165881,7 +169150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4486), 32, + ACTIONS(3384), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165912,13 +169181,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [36408] = 3, + [36196] = 19, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4121), 1, + anon_sym_readonly, + STATE(3111), 1, + sym_override_modifier, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4488), 13, + ACTIONS(4119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [36282] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4487), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165932,7 +169267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4490), 32, + ACTIONS(4489), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165965,76 +169300,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36462] = 3, + [36336] = 21, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4492), 13, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4251), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4494), 32, + ACTIONS(4249), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [36426] = 28, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4251), 1, + anon_sym_BANG, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_satisfies, + [36530] = 6, + ACTIONS(4133), 1, + anon_sym_AMP, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(4137), 1, anon_sym_extends, - anon_sym_implements, - [36516] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4496), 13, + ACTIONS(4491), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4498), 32, + ACTIONS(4493), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166065,13 +169498,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [36570] = 3, + [36590] = 12, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4499), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4500), 13, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4495), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166082,23 +169533,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4502), 32, + ACTIONS(4497), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -166114,222 +169558,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [36624] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4504), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4506), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [36662] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3985), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4101), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [36678] = 4, - ACTIONS(4508), 1, - anon_sym_DOT, + ACTIONS(4103), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 13, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4099), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4502), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [36774] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4101), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [36734] = 3, + ACTIONS(4103), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3596), 13, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3446), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4504), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [36886] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4101), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [36788] = 3, + ACTIONS(4103), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4511), 13, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4513), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4506), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [36998] = 16, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4101), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [36842] = 3, + ACTIONS(4512), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4515), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4508), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -166338,23 +169841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4370), 31, + ACTIONS(4510), 19, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -166368,70 +169863,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [36895] = 23, + [37078] = 19, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4533), 1, anon_sym_LT, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4543), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4307), 3, + ACTIONS(4251), 7, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4539), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 11, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -166441,21 +169922,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_satisfies, - [36988] = 7, - ACTIONS(4547), 1, - anon_sym_DOT, - ACTIONS(4549), 1, - anon_sym_LT, - ACTIONS(4551), 1, - anon_sym_is, - STATE(2024), 1, - sym_type_arguments, + [37163] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4007), 12, + ACTIONS(1885), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166466,18 +169944,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 28, - sym__automatic_semicolon, + ACTIONS(1887), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166496,188 +169978,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_implements, + [37216] = 6, + ACTIONS(4031), 1, anon_sym_extends, - [37049] = 24, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4531), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4541), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4543), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4539), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 11, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4537), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [37144] = 34, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, + ACTIONS(4540), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_COMMA, - ACTIONS(4560), 1, - anon_sym_RBRACE, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, - anon_sym_AMP_AMP, - ACTIONS(4566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, - anon_sym_CARET, - ACTIONS(4570), 1, anon_sym_PIPE, - ACTIONS(4572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4297), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4531), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4541), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4543), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4539), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [37259] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1849), 13, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1851), 31, + ACTIONS(3384), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -166699,11 +170032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37312] = 3, + [37275] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1781), 13, + ACTIONS(1927), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166717,7 +170050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1779), 31, + ACTIONS(1925), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166749,90 +170082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37365] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4582), 1, - anon_sym_AMP_AMP, - ACTIONS(4584), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, - anon_sym_AMP, - ACTIONS(4592), 1, - anon_sym_CARET, - ACTIONS(4594), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - ACTIONS(4610), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4596), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4606), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4608), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4604), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4388), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [37476] = 3, + [37328] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 13, + ACTIONS(4543), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166846,7 +170100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 31, + ACTIONS(4545), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166878,11 +170132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37529] = 3, + [37381] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(4547), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166896,7 +170150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 31, + ACTIONS(4549), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166928,163 +170182,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37582] = 25, + [37434] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4533), 1, anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4568), 1, - anon_sym_CARET, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4531), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4541), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4543), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4539), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 10, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4551), 1, anon_sym_as, + ACTIONS(4553), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [37679] = 33, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4580), 1, - anon_sym_GT, - ACTIONS(4582), 1, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4584), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4592), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4594), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - ACTIONS(4610), 1, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, sym__ternary_qmark, - ACTIONS(4616), 1, - anon_sym_in, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5387), 1, + aux_sym_sequence_expression_repeat1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4588), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4596), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4559), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4614), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [37792] = 3, + [37549] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4619), 13, + ACTIONS(1676), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4583), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1674), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167098,18 +170290,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4621), 31, + ACTIONS(1678), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -167129,42 +170315,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [37845] = 16, + [37606] = 16, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4623), 1, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4586), 1, anon_sym_LT, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4545), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4307), 10, - anon_sym_BANG, + ACTIONS(4508), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -167172,12 +170356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 18, + ACTIONS(4510), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -167186,132 +170370,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [37685] = 34, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4561), 1, + anon_sym_AMP_AMP, + ACTIONS(4563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, anon_sym_satisfies, - [37924] = 3, + ACTIONS(4581), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5387), 1, + aux_sym_sequence_expression_repeat1, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1738), 13, + ACTIONS(4515), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1740), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4575), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4589), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37800] = 34, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4519), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4561), 1, anon_sym_AMP_AMP, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5387), 1, + aux_sym_sequence_expression_repeat1, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4515), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4591), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [37977] = 17, + [37915] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4535), 1, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4555), 1, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4574), 1, + ACTIONS(4561), 1, + anon_sym_AMP_AMP, + ACTIONS(4563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(4623), 1, - anon_sym_LT, - STATE(1812), 1, + ACTIONS(4581), 1, + sym__ternary_qmark, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4515), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 11, - anon_sym_STAR, + ACTIONS(4557), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [38058] = 3, + ACTIONS(4504), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [38026] = 4, + ACTIONS(4593), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4626), 13, + ACTIONS(1789), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167325,18 +170639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4628), 31, + ACTIONS(1787), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -167356,12 +170669,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38111] = 3, + anon_sym_PIPE_RBRACE, + [38081] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 13, + ACTIONS(4595), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167375,7 +170688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4632), 31, + ACTIONS(4597), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167407,39 +170720,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38164] = 15, + [38134] = 15, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3737), 1, + ACTIONS(3915), 1, anon_sym_COMMA, - ACTIONS(3740), 1, + ACTIONS(3958), 1, anon_sym_RBRACE, - ACTIONS(4241), 1, + ACTIONS(4111), 1, anon_sym_STAR, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4636), 2, + ACTIONS(4601), 2, sym_number, sym_private_property_identifier, - ACTIONS(4638), 2, + ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3770), 3, + STATE(4468), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -167469,11 +170782,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38241] = 3, + [38211] = 16, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3958), 1, + anon_sym_RBRACE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4605), 1, + anon_sym_LBRACK, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [38290] = 11, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4607), 1, + anon_sym_QMARK_DOT, + ACTIONS(4609), 1, + anon_sym_LT, + STATE(1906), 1, + sym_type_arguments, + STATE(2339), 1, + sym_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 13, + ACTIONS(3979), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167484,23 +170876,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4642), 31, + ACTIONS(3981), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -167518,12 +170903,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38294] = 3, + [38359] = 12, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4611), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1787), 13, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4495), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167534,23 +170937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 31, + ACTIONS(4497), 22, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -167566,36 +170961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38347] = 13, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4644), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [38430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4170), 12, + ACTIONS(1865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167606,15 +170977,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 20, - sym__automatic_semicolon, + ACTIONS(1867), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -167628,41 +171007,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [38420] = 16, + anon_sym_implements, + [38483] = 13, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4647), 1, + ACTIONS(4614), 1, anon_sym_LT, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4199), 11, + ACTIONS(4263), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -167673,11 +171051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 18, + ACTIONS(4265), 20, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167692,90 +171071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [38499] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(4582), 1, - anon_sym_AMP_AMP, - ACTIONS(4584), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, - anon_sym_AMP, - ACTIONS(4592), 1, - anon_sym_CARET, - ACTIONS(4594), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - ACTIONS(4610), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4596), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4606), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4608), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4604), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4210), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [38610] = 3, + [38556] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4650), 13, + ACTIONS(4617), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167789,7 +171090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4652), 31, + ACTIONS(4619), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167821,11 +171122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38663] = 3, + [38609] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4654), 13, + ACTIONS(4621), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167839,7 +171140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4656), 31, + ACTIONS(4623), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167871,124 +171172,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38716] = 16, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3740), 1, - anon_sym_RBRACE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4247), 1, - anon_sym_async, - ACTIONS(4658), 1, + [38662] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4249), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4253), 2, - anon_sym_get, - anon_sym_set, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [38795] = 3, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4561), 1, + anon_sym_AMP_AMP, + ACTIONS(4563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4660), 13, + ACTIONS(4515), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4255), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4575), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4167), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + [38773] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4519), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4561), 1, anon_sym_AMP_AMP, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4515), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [38848] = 3, + ACTIONS(4145), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [38884] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 13, + ACTIONS(4285), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4625), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168002,18 +171357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 31, + ACTIONS(4287), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168033,12 +171382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38901] = 3, + [38941] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1857), 13, + ACTIONS(1795), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168052,7 +171400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 31, + ACTIONS(1797), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168084,70 +171432,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38954] = 12, + [38994] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4662), 1, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, anon_sym_LT, - STATE(1812), 1, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4561), 1, + anon_sym_AMP_AMP, + ACTIONS(4563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, + sym__ternary_qmark, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 12, + ACTIONS(4515), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 22, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [39025] = 3, + ACTIONS(4143), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [39105] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(4628), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168161,7 +171529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 31, + ACTIONS(4630), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168193,11 +171561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39078] = 3, + [39158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1805), 13, + ACTIONS(4632), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168211,7 +171579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1807), 31, + ACTIONS(4634), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168243,11 +171611,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39131] = 3, + [39211] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1759), 13, + ACTIONS(1789), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168261,18 +171629,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1761), 31, + ACTIONS(1787), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168292,12 +171660,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [39184] = 3, + anon_sym_PIPE_RBRACE, + [39264] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4665), 13, + ACTIONS(4638), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4642), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4636), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168311,18 +171688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4667), 31, + ACTIONS(4640), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168342,14 +171713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [39237] = 4, - ACTIONS(4440), 1, - anon_sym_EQ, + [39321] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4438), 13, + ACTIONS(4645), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168363,7 +171731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 30, + ACTIONS(4647), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168371,6 +171739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -168394,11 +171763,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39292] = 3, + [39374] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(4649), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168412,7 +171781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 31, + ACTIONS(4651), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168444,180 +171813,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39345] = 32, + [39427] = 33, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4582), 1, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4584), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4592), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4594), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - ACTIONS(4610), 1, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4596), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + ACTIONS(4653), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4655), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4297), 4, - sym__automatic_semicolon, + [39540] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1833), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1831), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [39456] = 34, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4525), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4535), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39593] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4564), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4566), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(4669), 1, - anon_sym_COMMA, - ACTIONS(4672), 1, - anon_sym_RBRACE, - STATE(1812), 1, + STATE(1448), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4674), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2133), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [39571] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4678), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4682), 5, + ACTIONS(4657), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4676), 13, + [39704] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1875), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168631,12 +172040,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4680), 24, + ACTIONS(1877), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168656,11 +172071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [39628] = 3, + anon_sym_implements, + [39757] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1781), 13, + ACTIONS(4659), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168674,18 +172090,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1779), 31, - sym__automatic_semicolon, + ACTIONS(4145), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168705,74 +172121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [39681] = 15, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3838), 1, - anon_sym_RBRACE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4636), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4638), 2, - anon_sym_get, - anon_sym_set, - STATE(3770), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [39758] = 3, + anon_sym_implements, + [39810] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 13, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168786,18 +172140,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 31, - sym__automatic_semicolon, + ACTIONS(3384), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168817,327 +172171,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [39811] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + anon_sym_implements, + [39863] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4661), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4663), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4525), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4582), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4584), 1, anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, - anon_sym_AMP, - ACTIONS(4592), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4594), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, anon_sym_PERCENT, - ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - ACTIONS(4610), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39916] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4665), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4580), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4588), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4596), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4604), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4299), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [39922] = 15, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3737), 1, + ACTIONS(4667), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3829), 1, anon_sym_RBRACE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4636), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4638), 2, - anon_sym_get, - anon_sym_set, - STATE(3770), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [39999] = 19, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4598), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4600), 1, anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4669), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4588), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4596), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 16, - sym__automatic_semicolon, + ACTIONS(4671), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [40084] = 32, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, - anon_sym_AMP_AMP, - ACTIONS(4566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, - anon_sym_CARET, - ACTIONS(4570), 1, - anon_sym_PIPE, - ACTIONS(4572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_implements, + [40022] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(1837), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4521), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4531), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4539), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4388), 4, - sym__automatic_semicolon, + ACTIONS(1835), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [40195] = 16, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4525), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4685), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_implements, + [40075] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4199), 11, + ACTIONS(4673), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -169146,14 +172387,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 18, - sym__automatic_semicolon, + ACTIONS(4675), 31, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -169167,98 +172417,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40274] = 16, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3829), 1, - anon_sym_RBRACE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4247), 1, - anon_sym_async, - ACTIONS(4658), 1, - anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40128] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4253), 2, - anon_sym_get, - anon_sym_set, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4677), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [40353] = 14, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4167), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4525), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4600), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40181] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 12, + ACTIONS(4679), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169269,35 +172487,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 19, - sym__automatic_semicolon, + ACTIONS(4681), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [40428] = 4, - ACTIONS(4678), 1, - anon_sym_EQ, + anon_sym_implements, + [40234] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4676), 13, + ACTIONS(4683), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169311,7 +172540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4680), 30, + ACTIONS(4685), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169319,6 +172548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -169342,122 +172572,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40483] = 26, + [40287] = 12, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, - anon_sym_AMP, - ACTIONS(4592), 1, - anon_sym_CARET, - ACTIONS(4594), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, + ACTIONS(4687), 1, anon_sym_LT, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4495), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4580), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4588), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4596), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4497), 22, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4604), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4305), 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [40358] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1927), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1925), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_of, + anon_sym_while, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [40582] = 16, - ACTIONS(1594), 1, + anon_sym_PIPE_RBRACE, + [40411] = 17, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3838), 1, - anon_sym_RBRACE, - ACTIONS(4241), 1, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(4690), 1, anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4247), 1, + ACTIONS(4692), 1, + anon_sym_LBRACE, + ACTIONS(4694), 1, anon_sym_async, - ACTIONS(4658), 1, - anon_sym_LBRACK, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4698), 1, + anon_sym_readonly, + ACTIONS(4702), 1, + sym__automatic_semicolon, + STATE(2903), 1, + sym_statement_block, + STATE(3094), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 2, + ACTIONS(4696), 2, sym_number, sym_private_property_identifier, - ACTIONS(4253), 2, + ACTIONS(4700), 2, anon_sym_get, anon_sym_set, - STATE(3081), 3, + STATE(3410), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, + ACTIONS(3921), 8, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, + ACTIONS(3609), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -169465,12 +172734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -169478,117 +172745,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [40661] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + [40492] = 16, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, - anon_sym_AMP_AMP, - ACTIONS(4566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, - anon_sym_CARET, - ACTIONS(4570), 1, - anon_sym_PIPE, - ACTIONS(4572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + ACTIONS(4707), 1, + anon_sym_static, + ACTIONS(4709), 1, + anon_sym_readonly, + ACTIONS(4711), 1, + anon_sym_abstract, + ACTIONS(4713), 1, + anon_sym_accessor, + STATE(2977), 1, + sym_accessibility_modifier, + STATE(3137), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4531), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4541), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4543), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4539), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4283), 4, + ACTIONS(4705), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3867), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - [40772] = 6, - ACTIONS(4330), 1, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3609), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [40571] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4691), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4694), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(4715), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 28, + ACTIONS(4177), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169610,119 +172858,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40831] = 34, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, - anon_sym_AMP_AMP, - ACTIONS(4566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, - anon_sym_CARET, - ACTIONS(4570), 1, - anon_sym_PIPE, - ACTIONS(4572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - ACTIONS(4669), 1, - anon_sym_COMMA, - ACTIONS(4672), 1, - anon_sym_RBRACE, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [40624] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4517), 2, + ACTIONS(4717), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4521), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4531), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4541), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4543), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4539), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [40946] = 6, - ACTIONS(4041), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4697), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4700), 3, - anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3400), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 28, + ACTIONS(4270), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169744,369 +172908,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41005] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [40677] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4719), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4085), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4703), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [41116] = 27, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4582), 1, - anon_sym_AMP_AMP, - ACTIONS(4586), 1, anon_sym_GT_GT, - ACTIONS(4590), 1, anon_sym_AMP, - ACTIONS(4592), 1, - anon_sym_CARET, - ACTIONS(4594), 1, anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4604), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 9, - sym__automatic_semicolon, + ACTIONS(4721), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [41217] = 17, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4525), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4596), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4305), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [41298] = 23, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4545), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4578), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4596), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4606), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4608), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4604), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 11, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [41391] = 24, - ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, - anon_sym_AMP, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4596), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4606), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4608), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4604), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 11, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_satisfies, - [41486] = 3, + anon_sym_implements, + [40730] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4705), 13, + ACTIONS(4723), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170120,7 +172976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4707), 31, + ACTIONS(4725), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170152,11 +173008,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41539] = 3, + [40783] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4709), 13, + ACTIONS(4727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170170,7 +173026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4711), 31, + ACTIONS(4729), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170202,11 +173058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41592] = 3, + [40836] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4713), 13, + ACTIONS(4731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170220,7 +173076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4715), 31, + ACTIONS(4733), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170252,11 +173108,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41645] = 3, + [40889] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4717), 13, + ACTIONS(4735), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170270,7 +173126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4350), 31, + ACTIONS(4737), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170302,112 +173158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41698] = 25, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, - anon_sym_AMP, - ACTIONS(4592), 1, - anon_sym_CARET, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4596), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4606), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4608), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4604), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 10, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [41795] = 16, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [40942] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4739), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -170416,32 +173172,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 18, - sym__automatic_semicolon, + ACTIONS(4741), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [41874] = 3, + anon_sym_implements, + [40995] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4719), 13, + ACTIONS(4743), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170455,7 +173226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4721), 31, + ACTIONS(4502), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170487,11 +173258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41927] = 3, + [41048] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4723), 13, + ACTIONS(4745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170505,7 +173276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4725), 31, + ACTIONS(4747), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170537,11 +173308,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41980] = 3, + [41101] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4727), 13, + ACTIONS(4749), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170555,7 +173326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4729), 31, + ACTIONS(4751), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170587,11 +173358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42033] = 3, + [41154] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4731), 13, + ACTIONS(1748), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170605,7 +173376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 31, + ACTIONS(1750), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170637,11 +173408,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42086] = 3, + [41207] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 13, + ACTIONS(4753), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170655,18 +173426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1751), 31, - sym__automatic_semicolon, + ACTIONS(4755), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -170686,12 +173457,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42139] = 3, + anon_sym_implements, + [41260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1879), 13, + ACTIONS(4757), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170705,7 +173476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 31, + ACTIONS(4759), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170737,42 +173508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42192] = 17, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [41313] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 11, + ACTIONS(4761), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -170781,31 +173523,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 17, - sym__automatic_semicolon, + ACTIONS(4763), 31, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [42273] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [41366] = 16, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(4767), 1, + anon_sym_static, + ACTIONS(4769), 1, + anon_sym_readonly, + ACTIONS(4771), 1, + anon_sym_abstract, + ACTIONS(4773), 1, + anon_sym_accessor, + STATE(2950), 1, + sym_accessibility_modifier, + STATE(3231), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4735), 13, + ACTIONS(4765), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3633), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3743), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3609), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [41445] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4775), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170819,7 +173639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4737), 31, + ACTIONS(4777), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170851,11 +173671,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42326] = 3, + [41498] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 13, + ACTIONS(4749), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170869,7 +173689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1765), 31, + ACTIONS(4751), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170901,21 +173721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42379] = 8, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4549), 1, - anon_sym_LT, - ACTIONS(4739), 1, - anon_sym_DOT, - STATE(2046), 1, - sym_arguments, - STATE(2049), 1, - sym_type_arguments, + [41551] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 12, + ACTIONS(4779), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170926,17 +173736,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3406), 27, - sym__automatic_semicolon, + ACTIONS(4781), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170955,22 +173770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [42442] = 8, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4549), 1, - anon_sym_LT, - ACTIONS(4741), 1, - anon_sym_DOT, - STATE(2076), 1, - sym_arguments, - STATE(2078), 1, - sym_type_arguments, + anon_sym_implements, + [41604] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3979), 12, + ACTIONS(4783), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170981,17 +173786,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3981), 27, - sym__automatic_semicolon, + ACTIONS(4785), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171010,22 +173820,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [42505] = 8, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4549), 1, - anon_sym_LT, - ACTIONS(4743), 1, - anon_sym_DOT, - STATE(2086), 1, - sym_arguments, - STATE(2088), 1, - sym_type_arguments, + anon_sym_implements, + [41657] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3985), 12, + ACTIONS(1805), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171036,17 +173836,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3987), 27, - sym__automatic_semicolon, + ACTIONS(1807), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171065,12 +173870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [42568] = 3, + anon_sym_implements, + [41710] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1923), 13, + ACTIONS(4787), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171084,18 +173889,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1921), 31, - sym__automatic_semicolon, + ACTIONS(4789), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171115,93 +173920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42621] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, - anon_sym_AMP_AMP, - ACTIONS(4566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, - anon_sym_CARET, - ACTIONS(4570), 1, - anon_sym_PIPE, - ACTIONS(4572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4531), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4541), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4543), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4539), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4374), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [42732] = 4, - ACTIONS(4745), 1, - sym__automatic_semicolon, + anon_sym_implements, + [41763] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 13, + ACTIONS(4791), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171215,17 +173939,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 30, + ACTIONS(4209), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171245,21 +173970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42787] = 5, + anon_sym_implements, + [41816] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1726), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4747), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1724), 13, + ACTIONS(4749), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171273,12 +173989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 24, + ACTIONS(4751), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171298,92 +174020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42844] = 15, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3817), 1, - anon_sym_RBRACE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4636), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4638), 2, - anon_sym_get, - anon_sym_set, - STATE(3770), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [42921] = 12, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4750), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_implements, + [41869] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 12, + ACTIONS(1766), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171394,15 +174036,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 22, + ACTIONS(1764), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -171418,12 +174068,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [42992] = 3, + anon_sym_PIPE_RBRACE, + [41922] = 8, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4609), 1, + anon_sym_LT, + ACTIONS(4793), 1, + anon_sym_DOT, + STATE(2091), 1, + sym_arguments, + STATE(2092), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4753), 13, + ACTIONS(3993), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171434,22 +174096,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4755), 31, + ACTIONS(3995), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171468,12 +174125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [43045] = 3, + anon_sym_extends, + [41985] = 4, + ACTIONS(4285), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 13, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171487,7 +174146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 31, + ACTIONS(4287), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171495,7 +174154,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -171519,11 +174177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43098] = 3, + [42040] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 13, + ACTIONS(1845), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171537,7 +174195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1751), 31, + ACTIONS(1847), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171569,41 +174227,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43151] = 16, - ACTIONS(1594), 1, + [42093] = 15, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3737), 1, + ACTIONS(3915), 1, anon_sym_COMMA, - ACTIONS(3817), 1, + ACTIONS(3961), 1, anon_sym_RBRACE, - ACTIONS(4241), 1, + ACTIONS(4111), 1, anon_sym_STAR, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(4247), 1, - anon_sym_async, - ACTIONS(4658), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 2, + ACTIONS(4601), 2, sym_number, sym_private_property_identifier, - ACTIONS(4253), 2, + ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3081), 3, + STATE(4468), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -171611,11 +174267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -171632,11 +174289,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [43230] = 3, + [42170] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1899), 13, + ACTIONS(1785), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171650,18 +174307,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1901), 31, + ACTIONS(1783), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171681,95 +174338,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [43283] = 34, + anon_sym_PIPE_RBRACE, + [42223] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4564), 1, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4566), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4803), 1, + anon_sym_GT_GT, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4809), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4811), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4815), 1, + anon_sym_PERCENT, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4819), 1, + anon_sym_LT, + ACTIONS(4827), 1, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4829), 1, sym__ternary_qmark, - ACTIONS(4757), 1, - anon_sym_COMMA, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4513), 1, - aux_sym_sequence_expression_repeat1, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4759), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [43398] = 4, - ACTIONS(1726), 1, + ACTIONS(4504), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [42334] = 4, + ACTIONS(4638), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1724), 13, + ACTIONS(4636), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171783,7 +174438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 30, + ACTIONS(4640), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171814,20 +174469,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43453] = 5, + [42389] = 8, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4609), 1, + anon_sym_LT, + ACTIONS(4831), 1, + anon_sym_DOT, + STATE(2082), 1, + sym_arguments, + STATE(2084), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4440), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4761), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4438), 13, + ACTIONS(3999), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171838,16 +174494,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 24, + ACTIONS(4001), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171866,11 +174523,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43510] = 3, + anon_sym_extends, + [42452] = 16, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3961), 1, + anon_sym_RBRACE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4605), 1, + anon_sym_LBRACK, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42531] = 4, + ACTIONS(1676), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4764), 13, + ACTIONS(1674), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171884,7 +174607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4766), 31, + ACTIONS(1678), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171892,7 +174615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -171916,75 +174638,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43563] = 17, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + [42586] = 15, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3970), 1, + anon_sym_RBRACE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4623), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4531), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4305), 18, + ACTIONS(4601), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4603), 2, + anon_sym_get, + anon_sym_set, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [43644] = 3, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42663] = 4, + ACTIONS(4833), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 13, + ACTIONS(1672), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171998,18 +174720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1925), 31, + ACTIONS(1670), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -172029,112 +174750,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [43697] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4768), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4770), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_PIPE_RBRACE, + [42718] = 16, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3915), 1, anon_sym_COMMA, + ACTIONS(3970), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4605), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [43750] = 3, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4772), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4372), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [43803] = 3, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42797] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 13, + ACTIONS(1825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172148,7 +174832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 31, + ACTIONS(1827), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172180,11 +174864,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43856] = 3, + [42850] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4778), 13, + ACTIONS(4835), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172198,7 +174882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4374), 31, + ACTIONS(4837), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172230,11 +174914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43909] = 3, + [42903] = 7, + ACTIONS(4609), 1, + anon_sym_LT, + ACTIONS(4839), 1, + anon_sym_DOT, + ACTIONS(4841), 1, + anon_sym_is, + STATE(2056), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1829), 13, + ACTIONS(4005), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172245,22 +174937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1831), 31, + ACTIONS(3476), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172279,14 +174967,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [43962] = 4, - ACTIONS(4780), 1, - sym__automatic_semicolon, + anon_sym_extends, + [42964] = 8, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4609), 1, + anon_sym_LT, + ACTIONS(4843), 1, + anon_sym_DOT, + STATE(1961), 1, + sym_arguments, + STATE(2069), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1722), 13, + ACTIONS(3422), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172297,21 +174993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1720), 30, + ACTIONS(3418), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_of, - anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172330,148 +175022,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [44017] = 21, + anon_sym_extends, + [43027] = 16, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4845), 1, anon_sym_LT, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4578), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4596), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4307), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4305), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [44106] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4782), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4784), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [44159] = 11, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4549), 1, - anon_sym_LT, - ACTIONS(4786), 1, - anon_sym_QMARK_DOT, - STATE(1975), 1, - sym_type_arguments, - STATE(2148), 1, - sym_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3965), 12, + ACTIONS(4508), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -172482,12 +175067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3967), 24, + ACTIONS(4510), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -172503,94 +175086,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [44228] = 32, + [43106] = 33, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4564), 1, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4797), 1, + anon_sym_GT, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4566), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4803), 1, + anon_sym_GT_GT, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4809), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4811), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4815), 1, + anon_sym_PERCENT, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4819), 1, + anon_sym_LT, + ACTIONS(4827), 1, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4829), 1, sym__ternary_qmark, - STATE(1812), 1, + ACTIONS(4850), 1, + anon_sym_in, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4255), 4, + ACTIONS(4848), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [44339] = 3, + [43219] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4788), 13, + ACTIONS(1766), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172604,7 +175184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4790), 31, + ACTIONS(1764), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172636,86 +175216,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44392] = 28, + [43272] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4582), 1, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4584), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4592), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4594), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - STATE(1812), 1, + ACTIONS(4577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, + sym__ternary_qmark, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4596), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 8, + ACTIONS(4177), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [44495] = 3, + [43383] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4792), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172729,7 +175313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4794), 31, + ACTIONS(4311), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172761,35 +175345,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44548] = 3, + [43436] = 6, + ACTIONS(4429), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 13, + ACTIONS(4853), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4856), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4757), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4798), 31, + ACTIONS(4759), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -172811,11 +175398,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44601] = 3, + [43495] = 15, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4601), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4603), 2, + anon_sym_get, + anon_sym_set, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [43572] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4800), 13, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172829,7 +175478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 31, + ACTIONS(1817), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172861,11 +175510,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44654] = 3, + [43625] = 16, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4605), 1, + anon_sym_LBRACK, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [43704] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4804), 13, + ACTIONS(4859), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172879,7 +175591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4806), 31, + ACTIONS(4861), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172911,121 +175623,382 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44707] = 13, + [43757] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4808), 1, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, anon_sym_LT, - STATE(1812), 1, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4561), 1, + anon_sym_AMP_AMP, + ACTIONS(4563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, + sym__ternary_qmark, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4515), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4170), 12, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(4557), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 20, + ACTIONS(4575), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4270), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + [43868] = 16, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, + anon_sym_RBRACE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4605), 1, + anon_sym_LBRACK, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [43947] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4799), 1, anon_sym_AMP_AMP, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4803), 1, + anon_sym_GT_GT, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4809), 1, anon_sym_CARET, + ACTIONS(4811), 1, + anon_sym_PIPE, + ACTIONS(4815), 1, anon_sym_PERCENT, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4819), 1, + anon_sym_LT, + ACTIONS(4827), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [44780] = 3, + ACTIONS(4829), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4811), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4805), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4813), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4825), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4821), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4145), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, + [44058] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4799), 1, anon_sym_AMP_AMP, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4803), 1, + anon_sym_GT_GT, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4809), 1, anon_sym_CARET, + ACTIONS(4811), 1, + anon_sym_PIPE, + ACTIONS(4815), 1, anon_sym_PERCENT, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4819), 1, + anon_sym_LT, + ACTIONS(4827), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4829), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4797), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4805), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4813), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4823), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4821), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [44833] = 3, + ACTIONS(4143), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [44169] = 24, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(235), 1, + anon_sym_STAR, + ACTIONS(1941), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(4867), 1, + anon_sym_RBRACE, + ACTIONS(4869), 1, + anon_sym_async, + ACTIONS(4873), 1, + anon_sym_static, + ACTIONS(4875), 1, + anon_sym_readonly, + ACTIONS(4881), 1, + anon_sym_override, + STATE(2605), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, + STATE(3070), 1, + sym_accessibility_modifier, + STATE(3113), 1, + sym_override_modifier, + STATE(5878), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4871), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4877), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4879), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4023), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5876), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4863), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [44264] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4800), 13, + ACTIONS(4883), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173039,7 +176012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 31, + ACTIONS(4885), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173071,11 +176044,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44886] = 3, + [44317] = 15, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, + anon_sym_RBRACE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4601), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4603), 2, + anon_sym_get, + anon_sym_set, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [44394] = 13, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4887), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4815), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4263), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173086,23 +176143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4817), 31, + ACTIONS(4265), 20, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -173116,16 +176165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [44939] = 3, + [44467] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4819), 13, + ACTIONS(4890), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173139,7 +176184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4821), 31, + ACTIONS(4892), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173171,11 +176216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44992] = 3, + [44520] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4823), 13, + ACTIONS(4894), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173189,7 +176234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 31, + ACTIONS(4896), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173221,75 +176266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45045] = 17, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4827), 1, - anon_sym_STAR, - ACTIONS(4829), 1, - anon_sym_LBRACE, - ACTIONS(4831), 1, - anon_sym_async, - ACTIONS(4835), 1, - anon_sym_readonly, - ACTIONS(4839), 1, - sym__automatic_semicolon, - STATE(2625), 1, - sym_statement_block, - STATE(2700), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4833), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4837), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3607), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [45126] = 3, + [44573] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4800), 13, + ACTIONS(4898), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173303,7 +176284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 31, + ACTIONS(4900), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173335,112 +176316,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45179] = 32, + [44626] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4564), 1, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4566), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4803), 1, + anon_sym_GT_GT, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4809), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4811), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4815), 1, + anon_sym_PERCENT, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4819), 1, + anon_sym_LT, + ACTIONS(4827), 1, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4829), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4299), 4, + ACTIONS(4061), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [45290] = 3, + [44737] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4561), 1, + anon_sym_AMP_AMP, + ACTIONS(4563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1923), 13, + ACTIONS(4515), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1921), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4575), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4061), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + anon_sym_SEMI, + [44848] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4561), 1, + anon_sym_AMP_AMP, + ACTIONS(4563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4515), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4199), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [44959] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4902), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4904), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -173464,534 +176603,472 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45343] = 32, + [45012] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4582), 1, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4584), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4592), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4594), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - ACTIONS(4610), 1, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4596), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4350), 4, + ACTIONS(4195), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [45454] = 32, + [45123] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4582), 1, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4584), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4592), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4594), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - ACTIONS(4610), 1, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4596), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4352), 4, + ACTIONS(4209), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [45565] = 32, + [45234] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4533), 1, anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4564), 1, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4566), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4581), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4376), 4, + ACTIONS(4197), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [45676] = 32, + [45345] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4564), 1, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4566), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4803), 1, + anon_sym_GT_GT, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4809), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4811), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4815), 1, + anon_sym_PERCENT, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4819), 1, + anon_sym_LT, + ACTIONS(4827), 1, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4829), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4257), 4, + ACTIONS(4199), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [45787] = 19, + [45456] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4801), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4803), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4809), 1, + anon_sym_CARET, + ACTIONS(4811), 1, + anon_sym_PIPE, + ACTIONS(4815), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4819), 1, anon_sym_LT, - STATE(1812), 1, + ACTIONS(4827), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4829), 1, + sym__ternary_qmark, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4529), 2, + ACTIONS(4797), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4821), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [45872] = 32, + ACTIONS(4209), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [45567] = 19, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4803), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4815), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4819), 1, anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, - anon_sym_AMP_AMP, - ACTIONS(4566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, - anon_sym_CARET, - ACTIONS(4570), 1, - anon_sym_PIPE, - ACTIONS(4572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4249), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4539), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4053), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [45983] = 15, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4636), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4638), 2, - anon_sym_get, - anon_sym_set, - STATE(3770), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [46060] = 3, + anon_sym_satisfies, + [45652] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4842), 13, + ACTIONS(4906), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174005,7 +177082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4844), 31, + ACTIONS(4908), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174037,11 +177114,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46113] = 3, + [45705] = 14, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4910), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4846), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174052,573 +177153,588 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4848), 31, + ACTIONS(4249), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [46166] = 21, + [45780] = 26, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4803), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4809), 1, + anon_sym_CARET, + ACTIONS(4811), 1, + anon_sym_PIPE, + ACTIONS(4815), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4819), 1, anon_sym_LT, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, + ACTIONS(4823), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4825), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4307), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4305), 13, + ACTIONS(4249), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [46255] = 34, + [45879] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4533), 1, anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4564), 1, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4566), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4581), 1, sym__ternary_qmark, - ACTIONS(4757), 1, + ACTIONS(4653), 1, + anon_sym_RBRACE, + ACTIONS(4913), 1, anon_sym_COMMA, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4513), 1, - aux_sym_sequence_expression_repeat1, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4850), 2, + ACTIONS(4916), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46370] = 28, + [45994] = 27, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4307), 1, + ACTIONS(4251), 1, anon_sym_BANG, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4803), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, + ACTIONS(4807), 1, anon_sym_AMP, - ACTIONS(4564), 1, - anon_sym_AMP_AMP, - ACTIONS(4566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4809), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4811), 1, anon_sym_PIPE, - STATE(1812), 1, + ACTIONS(4815), 1, + anon_sym_PERCENT, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4819), 1, + anon_sym_LT, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 8, + ACTIONS(4249), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [46473] = 16, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4247), 1, - anon_sym_async, - ACTIONS(4658), 1, - anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + [46095] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4253), 2, - anon_sym_get, - anon_sym_set, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, + ACTIONS(4918), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4920), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [46552] = 34, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [46148] = 17, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4815), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4910), 1, anon_sym_LT, - ACTIONS(4553), 1, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4813), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4555), 1, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 18, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(4566), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4570), 1, - anon_sym_PIPE, - ACTIONS(4572), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, + anon_sym_instanceof, anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - ACTIONS(4757), 1, - anon_sym_COMMA, - STATE(1812), 1, + [46229] = 23, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4803), 1, + anon_sym_GT_GT, + ACTIONS(4815), 1, + anon_sym_PERCENT, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4819), 1, + anon_sym_LT, + STATE(1842), 1, sym_type_arguments, - STATE(4513), 1, - aux_sym_sequence_expression_repeat1, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4852), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4251), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46667] = 33, + ACTIONS(4249), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [46322] = 24, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4803), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4815), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4819), 1, anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, - anon_sym_AMP_AMP, - ACTIONS(4566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, - anon_sym_CARET, - ACTIONS(4570), 1, - anon_sym_PIPE, - ACTIONS(4572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4251), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4672), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4854), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46780] = 32, + ACTIONS(4249), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [46417] = 25, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4582), 1, - anon_sym_AMP_AMP, - ACTIONS(4584), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, + ACTIONS(4803), 1, anon_sym_GT_GT, - ACTIONS(4590), 1, + ACTIONS(4807), 1, anon_sym_AMP, - ACTIONS(4592), 1, + ACTIONS(4809), 1, anon_sym_CARET, - ACTIONS(4594), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, + ACTIONS(4815), 1, anon_sym_PERCENT, - ACTIONS(4600), 1, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - ACTIONS(4602), 1, + ACTIONS(4819), 1, anon_sym_LT, - ACTIONS(4610), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, - sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4251), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4580), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4588), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4596), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4255), 4, + ACTIONS(4249), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [46891] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [46514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4856), 13, + ACTIONS(1895), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174632,7 +177748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4858), 31, + ACTIONS(1897), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174664,13 +177780,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46944] = 3, + [46567] = 16, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4815), 1, + anon_sym_PERCENT, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4910), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4860), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [46646] = 17, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4910), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -174679,20 +177887,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [46727] = 6, + ACTIONS(4469), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4922), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4925), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4862), 31, + ACTIONS(3384), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -174714,74 +177960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46997] = 16, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4866), 1, - anon_sym_static, - ACTIONS(4868), 1, - anon_sym_readonly, - ACTIONS(4870), 1, - anon_sym_abstract, - ACTIONS(4872), 1, - anon_sym_accessor, - STATE(2644), 1, - sym_accessibility_modifier, - STATE(2741), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4864), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3354), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3607), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [47076] = 3, + [46786] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4874), 13, + ACTIONS(1785), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174795,7 +177978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4876), 31, + ACTIONS(1783), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174827,11 +178010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47129] = 3, + [46839] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4450), 13, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174845,18 +178028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 31, + ACTIONS(1851), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -174876,12 +178059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [47182] = 3, + anon_sym_PIPE_RBRACE, + [46892] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 13, + ACTIONS(1789), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174895,7 +178078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1841), 31, + ACTIONS(1787), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174927,196 +178110,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47235] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4582), 1, - anon_sym_AMP_AMP, - ACTIONS(4584), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, - anon_sym_AMP, - ACTIONS(4592), 1, - anon_sym_CARET, - ACTIONS(4594), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - ACTIONS(4610), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [46945] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(1919), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4580), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4588), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4596), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4604), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4257), 4, - sym__automatic_semicolon, + ACTIONS(1921), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [47346] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4525), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4566), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, - anon_sym_CARET, - ACTIONS(4570), 1, - anon_sym_PIPE, - ACTIONS(4572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4541), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4543), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4539), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4370), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [47457] = 6, - ACTIONS(4408), 1, - anon_sym_extends, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [46998] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4878), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4881), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4774), 10, + ACTIONS(1738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 28, + ACTIONS(1740), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -175138,90 +178210,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47516] = 32, + [47051] = 14, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4928), 1, anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, - anon_sym_AMP_AMP, - ACTIONS(4566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, - anon_sym_CARET, - ACTIONS(4570), 1, - anon_sym_PIPE, - ACTIONS(4572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4531), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4541), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4543), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4350), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [47627] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1773), 13, + ACTIONS(4251), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175232,125 +178249,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1775), 31, + ACTIONS(4249), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [47680] = 32, + [47126] = 26, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4533), 1, anon_sym_LT, - ACTIONS(4553), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, - anon_sym_AMP_AMP, - ACTIONS(4566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4352), 4, + ACTIONS(4249), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [47791] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [47225] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 13, + ACTIONS(1859), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175364,7 +178362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1925), 31, + ACTIONS(1857), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -175396,90 +178394,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [47844] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, - anon_sym_AMP_AMP, - ACTIONS(4566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, - anon_sym_CARET, - ACTIONS(4570), 1, - anon_sym_PIPE, - ACTIONS(4572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [47278] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4931), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4521), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4531), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4933), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4539), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4210), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [47955] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [47331] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4884), 13, + ACTIONS(4935), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175493,7 +178462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4886), 31, + ACTIONS(4937), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175525,411 +178494,512 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48008] = 32, + [47384] = 27, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4582), 1, - anon_sym_AMP_AMP, - ACTIONS(4584), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4590), 1, - anon_sym_AMP, - ACTIONS(4592), 1, - anon_sym_CARET, - ACTIONS(4594), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, + ACTIONS(4529), 1, anon_sym_PERCENT, - ACTIONS(4600), 1, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4602), 1, + ACTIONS(4533), 1, anon_sym_LT, - ACTIONS(4610), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, - sym__ternary_qmark, - STATE(1812), 1, + ACTIONS(4561), 1, + anon_sym_AMP_AMP, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4596), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4370), 4, + ACTIONS(4249), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [48119] = 3, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [47485] = 17, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4928), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4888), 13, + ACTIONS(4515), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4890), 31, + ACTIONS(4249), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [48172] = 16, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4894), 1, - anon_sym_static, - ACTIONS(4896), 1, - anon_sym_readonly, - ACTIONS(4898), 1, - anon_sym_abstract, - ACTIONS(4900), 1, - anon_sym_accessor, - STATE(2655), 1, - sym_accessibility_modifier, - STATE(2735), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4892), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3288), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + [47566] = 21, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4803), 1, + anon_sym_GT_GT, + ACTIONS(4815), 1, + anon_sym_PERCENT, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4819), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3607), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [48251] = 3, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4902), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4805), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4821), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4251), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4904), 31, + ACTIONS(4249), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [47655] = 23, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, anon_sym_PERCENT, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4533), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4515), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4571), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4249), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_implements, - [48304] = 32, + [47748] = 28, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4582), 1, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4584), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, + ACTIONS(4803), 1, anon_sym_GT_GT, - ACTIONS(4590), 1, + ACTIONS(4807), 1, anon_sym_AMP, - ACTIONS(4592), 1, + ACTIONS(4809), 1, anon_sym_CARET, - ACTIONS(4594), 1, + ACTIONS(4811), 1, anon_sym_PIPE, - ACTIONS(4598), 1, + ACTIONS(4815), 1, anon_sym_PERCENT, - ACTIONS(4600), 1, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - ACTIONS(4602), 1, + ACTIONS(4819), 1, anon_sym_LT, - ACTIONS(4610), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, - sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4580), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4588), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4596), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4372), 4, + ACTIONS(4249), 8, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [48415] = 32, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [47851] = 24, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4565), 1, + anon_sym_AMP, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4251), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4515), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [47946] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4574), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(4582), 1, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4584), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, + ACTIONS(4803), 1, anon_sym_GT_GT, - ACTIONS(4590), 1, + ACTIONS(4807), 1, anon_sym_AMP, - ACTIONS(4592), 1, + ACTIONS(4809), 1, anon_sym_CARET, - ACTIONS(4594), 1, + ACTIONS(4811), 1, anon_sym_PIPE, - ACTIONS(4598), 1, + ACTIONS(4815), 1, anon_sym_PERCENT, - ACTIONS(4600), 1, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - ACTIONS(4602), 1, + ACTIONS(4819), 1, anon_sym_LT, - ACTIONS(4610), 1, + ACTIONS(4827), 1, anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, + ACTIONS(4829), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4580), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4588), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4596), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4374), 4, + ACTIONS(4502), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [48526] = 3, + [48057] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4906), 13, + ACTIONS(4939), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175943,7 +179013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4908), 31, + ACTIONS(4941), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175975,62 +179045,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48579] = 3, + [48110] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4801), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4803), 1, + anon_sym_GT_GT, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4809), 1, + anon_sym_CARET, + ACTIONS(4811), 1, + anon_sym_PIPE, + ACTIONS(4815), 1, + anon_sym_PERCENT, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4819), 1, + anon_sym_LT, + ACTIONS(4827), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4829), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4910), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4805), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4813), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4823), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4825), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4821), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4506), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [48221] = 25, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4523), 1, anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4565), 1, anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4251), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(4515), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4912), 31, + ACTIONS(4575), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [48318] = 16, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4519), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(4529), 1, anon_sym_PERCENT, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [48632] = 3, + ACTIONS(4928), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4914), 13, + ACTIONS(4515), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -176039,49 +179238,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4916), 31, + ACTIONS(4249), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_satisfies, + [48397] = 17, + ACTIONS(89), 1, anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, anon_sym_satisfies, - anon_sym_implements, - [48685] = 3, + ACTIONS(4928), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -176090,283 +179303,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1765), 31, + ACTIONS(4249), 17, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [48738] = 32, + [48478] = 21, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4533), 1, anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4564), 1, - anon_sym_AMP_AMP, - ACTIONS(4566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, - anon_sym_CARET, - ACTIONS(4570), 1, - anon_sym_PIPE, - ACTIONS(4572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4543), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2133), 2, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4372), 4, + ACTIONS(4251), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 13, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [48849] = 32, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [48567] = 28, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4582), 1, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4584), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4592), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4594), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - ACTIONS(4610), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, - sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4596), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4376), 4, + ACTIONS(4249), 8, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [48960] = 32, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [48670] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(4582), 1, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4584), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, - anon_sym_GT_GT, - ACTIONS(4590), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4592), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4594), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_PERCENT, - ACTIONS(4600), 1, - anon_sym_STAR_STAR, - ACTIONS(4602), 1, - anon_sym_LT, - ACTIONS(4610), 1, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, sym__ternary_qmark, - STATE(1812), 1, + ACTIONS(4943), 1, + anon_sym_COMMA, + ACTIONS(4946), 1, + anon_sym_RBRACE, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4199), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4580), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4588), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4596), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4053), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [49071] = 3, + [48785] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4918), 13, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176380,7 +179565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4920), 31, + ACTIONS(1851), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -176412,11 +179597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49124] = 3, + [48838] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4922), 13, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176430,7 +179615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4299), 31, + ACTIONS(4950), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -176462,586 +179647,642 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49177] = 32, + [48891] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4574), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(4582), 1, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4584), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - ACTIONS(4586), 1, + ACTIONS(4803), 1, anon_sym_GT_GT, - ACTIONS(4590), 1, + ACTIONS(4807), 1, anon_sym_AMP, - ACTIONS(4592), 1, + ACTIONS(4809), 1, anon_sym_CARET, - ACTIONS(4594), 1, + ACTIONS(4811), 1, anon_sym_PIPE, - ACTIONS(4598), 1, + ACTIONS(4815), 1, anon_sym_PERCENT, - ACTIONS(4600), 1, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - ACTIONS(4602), 1, + ACTIONS(4819), 1, anon_sym_LT, - ACTIONS(4610), 1, + ACTIONS(4827), 1, anon_sym_QMARK_QMARK, - ACTIONS(4612), 1, + ACTIONS(4829), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4578), 2, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4580), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4588), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4596), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4606), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4604), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4283), 4, + ACTIONS(4475), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [49288] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4924), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4926), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [49002] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4519), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, anon_sym_PERCENT, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [49341] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4928), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4533), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4930), 31, - sym__ternary_qmark, + ACTIONS(4551), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4561), 1, anon_sym_AMP_AMP, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4579), 1, anon_sym_satisfies, - anon_sym_implements, - [49394] = 14, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4623), 1, - anon_sym_LT, - STATE(1812), 1, + ACTIONS(4581), 1, + sym__ternary_qmark, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4515), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 12, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(4557), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [49469] = 26, + ACTIONS(4502), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [49113] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4533), 1, anon_sym_LT, - ACTIONS(4553), 1, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4561), 1, + anon_sym_AMP_AMP, + ACTIONS(4563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4568), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - STATE(1812), 1, + ACTIONS(4577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, + sym__ternary_qmark, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 10, + ACTIONS(4506), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [49568] = 34, + [49224] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4533), 1, anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4564), 1, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4566), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4581), 1, sym__ternary_qmark, - ACTIONS(4672), 1, - anon_sym_RBRACE, - ACTIONS(4932), 1, - anon_sym_COMMA, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4517), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49683] = 27, + ACTIONS(4475), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [49335] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4533), 1, anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4564), 1, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4568), 1, + ACTIONS(4563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - STATE(1812), 1, + ACTIONS(4577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, + sym__ternary_qmark, + ACTIONS(4653), 1, + anon_sym_RBRACE, + ACTIONS(4952), 1, + anon_sym_COMMA, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4199), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 9, - sym__automatic_semicolon, + [49450] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1905), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1907), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [49784] = 32, + anon_sym_implements, + [49503] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_PERCENT, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_STAR_STAR, - ACTIONS(4537), 1, + ACTIONS(4533), 1, anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4564), 1, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4566), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, + sym__ternary_qmark, + ACTIONS(4653), 1, + anon_sym_RBRACE, + ACTIONS(4913), 1, + anon_sym_COMMA, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4143), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4515), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4571), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [49618] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4801), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4803), 1, + anon_sym_GT_GT, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4809), 1, + anon_sym_CARET, + ACTIONS(4811), 1, + anon_sym_PIPE, + ACTIONS(4815), 1, + anon_sym_PERCENT, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4819), 1, + anon_sym_LT, + ACTIONS(4827), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4829), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4297), 4, + ACTIONS(4197), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [49895] = 7, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(4414), 1, - anon_sym_LBRACK, + [49729] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2331), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4417), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1724), 10, + ACTIONS(1859), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 26, + ACTIONS(1857), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -177062,351 +180303,425 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [49955] = 32, - ACTIONS(825), 1, + anon_sym_implements, + [49782] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(4939), 1, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4803), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4807), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4809), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4811), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4815), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4819), 1, anon_sym_LT, - ACTIONS(4967), 1, + ACTIONS(4827), 1, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, + ACTIONS(4829), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1842), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4210), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4961), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50065] = 32, - ACTIONS(825), 1, + ACTIONS(4195), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [49893] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(4939), 1, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4803), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4807), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4809), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4811), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4815), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4819), 1, anon_sym_LT, - ACTIONS(4967), 1, + ACTIONS(4827), 1, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, + ACTIONS(4829), 1, sym__ternary_qmark, - STATE(2143), 1, + STATE(1842), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4795), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4805), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4961), 3, + ACTIONS(4821), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4971), 3, - anon_sym_LBRACE, + ACTIONS(4270), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [50175] = 6, - ACTIONS(3499), 1, - anon_sym_QMARK, - ACTIONS(3511), 1, - anon_sym_EQ, + anon_sym_of, + anon_sym_SEMI, + [50004] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4801), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4803), 1, + anon_sym_GT_GT, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4809), 1, + anon_sym_CARET, + ACTIONS(4811), 1, + anon_sym_PIPE, + ACTIONS(4815), 1, + anon_sym_PERCENT, + ACTIONS(4817), 1, + anon_sym_STAR_STAR, + ACTIONS(4819), 1, + anon_sym_LT, + ACTIONS(4827), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4829), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3514), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3400), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4805), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4825), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4821), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4177), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [50115] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4799), 1, anon_sym_AMP_AMP, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4803), 1, + anon_sym_GT_GT, + ACTIONS(4807), 1, + anon_sym_AMP, + ACTIONS(4809), 1, anon_sym_CARET, + ACTIONS(4811), 1, + anon_sym_PIPE, + ACTIONS(4815), 1, anon_sym_PERCENT, + ACTIONS(4817), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4819), 1, + anon_sym_LT, + ACTIONS(4827), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [50233] = 6, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3551), 1, - anon_sym_QMARK, + ACTIONS(4829), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3400), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4795), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4797), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4805), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4813), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4823), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4825), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4821), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [50291] = 34, + ACTIONS(4167), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [50226] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4961), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4967), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4969), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4971), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4089), 1, + ACTIONS(4987), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4989), 1, sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(4973), 1, - anon_sym_RBRACE, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4197), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4981), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50405] = 3, + [50336] = 12, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4991), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1652), 13, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4495), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177417,21 +180732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1650), 30, - sym__automatic_semicolon, + ACTIONS(4497), 21, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -177447,73 +180754,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [50457] = 6, - ACTIONS(4547), 1, + anon_sym_implements, + [50406] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4549), 1, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, + anon_sym_AMP_AMP, + ACTIONS(4961), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4963), 1, + anon_sym_GT_GT, + ACTIONS(4967), 1, + anon_sym_AMP, + ACTIONS(4969), 1, + anon_sym_CARET, + ACTIONS(4971), 1, + anon_sym_PIPE, + ACTIONS(4975), 1, + anon_sym_PERCENT, + ACTIONS(4977), 1, + anon_sym_STAR_STAR, + ACTIONS(4979), 1, anon_sym_LT, - STATE(2024), 1, + ACTIONS(4987), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4989), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4007), 12, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4965), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4504), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4981), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [50516] = 16, + ACTIONS(825), 1, anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, anon_sym_satisfies, - anon_sym_extends, - [50515] = 5, - ACTIONS(4549), 1, + ACTIONS(4994), 1, anon_sym_LT, - STATE(2033), 1, + STATE(1448), 1, sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 12, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4508), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -177524,18 +180878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4027), 29, - sym__automatic_semicolon, + ACTIONS(4510), 17, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -177549,22 +180895,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_implements, + [50594] = 13, + ACTIONS(825), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [50571] = 6, - ACTIONS(4519), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4975), 1, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, - STATE(2034), 1, - sym_arguments, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4997), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4019), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4263), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177575,19 +180933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4021), 27, - sym__automatic_semicolon, + ACTIONS(4265), 19, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -177601,39 +180953,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [50666] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, anon_sym_satisfies, - anon_sym_extends, - [50629] = 3, + ACTIONS(4959), 1, + anon_sym_AMP_AMP, + ACTIONS(4961), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4963), 1, + anon_sym_GT_GT, + ACTIONS(4967), 1, + anon_sym_AMP, + ACTIONS(4969), 1, + anon_sym_CARET, + ACTIONS(4971), 1, + anon_sym_PIPE, + ACTIONS(4975), 1, + anon_sym_PERCENT, + ACTIONS(4977), 1, + anon_sym_STAR_STAR, + ACTIONS(4979), 1, + anon_sym_LT, + ACTIONS(4987), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4989), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3131), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4965), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4983), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4985), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4199), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4981), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [50776] = 7, + ACTIONS(3452), 1, + anon_sym_EQ, + ACTIONS(4922), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4925), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4469), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3380), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3133), 30, - sym__automatic_semicolon, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -177653,572 +181086,498 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [50681] = 34, + [50836] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4961), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4967), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4969), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4971), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4089), 1, + ACTIONS(4987), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4989), 1, sym__ternary_qmark, - ACTIONS(4977), 1, - anon_sym_RPAREN, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(4581), 1, - aux_sym_array_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4209), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4981), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50795] = 32, - ACTIONS(89), 1, + [50946] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4564), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4566), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1812), 1, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5000), 1, + anon_sym_RBRACK, + STATE(1448), 1, sym_type_arguments, - STATE(4772), 1, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4322), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4539), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50905] = 34, + [51060] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(4267), 1, + ACTIONS(4107), 1, anon_sym_COMMA, - ACTIONS(4979), 1, - anon_sym_RBRACK, - STATE(1447), 1, + ACTIONS(5002), 1, + anon_sym_COLON, + STATE(1448), 1, sym_type_arguments, - STATE(3803), 1, + STATE(4195), 1, aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51019] = 7, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(4330), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4691), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4694), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4091), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [51079] = 32, + [51174] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1447), 1, + ACTIONS(5004), 1, + anon_sym_RPAREN, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, + STATE(5964), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4614), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - [51189] = 34, + [51288] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(4267), 1, + ACTIONS(4107), 1, anon_sym_COMMA, - ACTIONS(4981), 1, - anon_sym_RBRACE, - STATE(1447), 1, + ACTIONS(5006), 1, + anon_sym_RPAREN, + STATE(1448), 1, sym_type_arguments, - STATE(3803), 1, + STATE(4195), 1, aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51303] = 3, + [51402] = 19, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4963), 1, + anon_sym_GT_GT, + ACTIONS(4975), 1, + anon_sym_PERCENT, + ACTIONS(4977), 1, + anon_sym_STAR_STAR, + ACTIONS(4979), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4045), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4965), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4973), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4047), 30, - sym__automatic_semicolon, + ACTIONS(4249), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [51355] = 13, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4636), 2, - sym_number, - sym_private_property_identifier, - STATE(3770), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, + anon_sym_implements, + [51486] = 14, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4977), 1, + anon_sym_STAR_STAR, + ACTIONS(5008), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [51427] = 4, - ACTIONS(4551), 1, - anon_sym_is, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4039), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178229,169 +181588,351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4041), 29, - sym__automatic_semicolon, + ACTIONS(4249), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51481] = 4, - ACTIONS(4983), 1, - anon_sym_is, + anon_sym_implements, + [51560] = 26, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(4963), 1, + anon_sym_GT_GT, + ACTIONS(4967), 1, + anon_sym_AMP, + ACTIONS(4969), 1, + anon_sym_CARET, + ACTIONS(4971), 1, + anon_sym_PIPE, + ACTIONS(4975), 1, + anon_sym_PERCENT, + ACTIONS(4977), 1, + anon_sym_STAR_STAR, + ACTIONS(4979), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4965), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4027), 29, - sym__automatic_semicolon, + ACTIONS(4985), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4981), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 9, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [51658] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5011), 1, + anon_sym_RPAREN, + STATE(1448), 1, + sym_type_arguments, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [51772] = 27, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(4959), 1, + anon_sym_AMP_AMP, + ACTIONS(4963), 1, + anon_sym_GT_GT, + ACTIONS(4967), 1, + anon_sym_AMP, + ACTIONS(4969), 1, + anon_sym_CARET, + ACTIONS(4971), 1, + anon_sym_PIPE, + ACTIONS(4975), 1, + anon_sym_PERCENT, + ACTIONS(4977), 1, + anon_sym_STAR_STAR, + ACTIONS(4979), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4955), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4957), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4965), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4983), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4985), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4981), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_extends, - [51535] = 6, - ACTIONS(89), 1, + anon_sym_implements, + [51872] = 17, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4519), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_PERCENT, + ACTIONS(4977), 1, + anon_sym_STAR_STAR, + ACTIONS(5008), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2222), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4973), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4035), 13, - anon_sym_STAR, + ACTIONS(4251), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4037), 26, - sym__automatic_semicolon, + ACTIONS(4249), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, - [51593] = 13, - ACTIONS(2275), 1, + anon_sym_implements, + [51952] = 16, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3817), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4121), 1, + anon_sym_readonly, + STATE(3111), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4636), 2, + ACTIONS(3975), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4119), 2, sym_number, sym_private_property_identifier, - STATE(3770), 3, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -178399,23 +181940,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2307), 23, + ACTIONS(3609), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -178423,1059 +181959,1184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [51665] = 32, - ACTIONS(89), 1, + [52030] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4564), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4566), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1812), 1, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5013), 1, + anon_sym_RBRACE, + STATE(1448), 1, sym_type_arguments, - STATE(4772), 1, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2133), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [51775] = 4, + [52144] = 23, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4963), 1, + anon_sym_GT_GT, + ACTIONS(4975), 1, + anon_sym_PERCENT, + ACTIONS(4977), 1, + anon_sym_STAR_STAR, + ACTIONS(4979), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4460), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4450), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4965), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 26, + ACTIONS(4985), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4981), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [52236] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4101), 1, anon_sym_satisfies, - [51829] = 4, - ACTIONS(4551), 1, - anon_sym_is, + ACTIONS(4103), 1, + sym__ternary_qmark, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5015), 1, + anon_sym_RPAREN, + STATE(1448), 1, + sym_type_arguments, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4013), 13, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4015), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52350] = 24, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(4963), 1, + anon_sym_GT_GT, + ACTIONS(4967), 1, + anon_sym_AMP, + ACTIONS(4975), 1, anon_sym_PERCENT, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51883] = 4, + ACTIONS(4979), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4456), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4450), 13, - anon_sym_STAR, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4251), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4955), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4965), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 26, + ACTIONS(4985), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4981), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [52444] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4101), 1, anon_sym_satisfies, - [51937] = 5, + ACTIONS(4103), 1, + sym__ternary_qmark, + ACTIONS(5017), 1, + anon_sym_RPAREN, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + STATE(5868), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4440), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4985), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4438), 13, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52558] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4101), 1, anon_sym_satisfies, - [51993] = 5, + ACTIONS(4103), 1, + sym__ternary_qmark, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5019), 1, + anon_sym_RPAREN, + STATE(1448), 1, + sym_type_arguments, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4678), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4987), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4676), 13, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4680), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52672] = 25, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4963), 1, + anon_sym_GT_GT, + ACTIONS(4967), 1, + anon_sym_AMP, + ACTIONS(4969), 1, anon_sym_CARET, + ACTIONS(4975), 1, anon_sym_PERCENT, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [52049] = 5, + ACTIONS(4979), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1726), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4989), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1724), 13, - anon_sym_STAR, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4251), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4955), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4965), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 23, + ACTIONS(4985), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4981), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [52105] = 32, + anon_sym_implements, + [52768] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1447), 1, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5021), 1, + anon_sym_RPAREN, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4991), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [52215] = 7, - ACTIONS(3454), 1, - anon_sym_EQ, - ACTIONS(4691), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4694), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4330), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3400), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 22, - sym__ternary_qmark, - anon_sym_as, + [52882] = 16, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(4975), 1, anon_sym_PERCENT, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [52275] = 7, - ACTIONS(4440), 1, - anon_sym_EQ, - ACTIONS(4444), 1, - anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4447), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4438), 10, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 10, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 26, + ACTIONS(4249), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [52335] = 14, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4995), 1, - anon_sym_static, - ACTIONS(4997), 1, - anon_sym_readonly, - ACTIONS(4999), 1, - anon_sym_abstract, - ACTIONS(5001), 1, - anon_sym_accessor, - STATE(2728), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4993), 2, - sym_number, - sym_private_property_identifier, - STATE(3277), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3607), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [52409] = 33, - ACTIONS(89), 1, + anon_sym_implements, + [52960] = 34, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4519), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4533), 1, - anon_sym_PERCENT, - ACTIONS(4535), 1, - anon_sym_STAR_STAR, - ACTIONS(4537), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_AMP, - ACTIONS(4555), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4564), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4566), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4568), 1, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4570), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4574), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1812), 1, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5023), 1, + anon_sym_RPAREN, + STATE(1448), 1, sym_type_arguments, - STATE(4772), 1, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4521), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4531), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4541), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4543), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4545), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4674), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2133), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4539), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52521] = 8, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(4414), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4417), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2331), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1724), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1728), 22, - sym__ternary_qmark, - anon_sym_as, + [53074] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4101), 1, anon_sym_satisfies, - [52583] = 8, - ACTIONS(4440), 1, - anon_sym_EQ, - ACTIONS(4444), 1, - anon_sym_LBRACK, + ACTIONS(4103), 1, + sym__ternary_qmark, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5025), 1, + anon_sym_RPAREN, + STATE(1448), 1, + sym_type_arguments, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4447), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5007), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4392), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4438), 11, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [52645] = 32, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53188] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5011), 3, + ACTIONS(4848), 3, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_RBRACK, - [52755] = 34, + [53298] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(5013), 1, - anon_sym_RBRACK, - STATE(1447), 1, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5027), 1, + anon_sym_RPAREN, + STATE(1448), 1, sym_type_arguments, - STATE(4593), 1, - aux_sym_array_repeat1, - STATE(5080), 1, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52869] = 3, + [53412] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5029), 1, + anon_sym_RPAREN, + STATE(1448), 1, + sym_type_arguments, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3123), 13, + ACTIONS(4057), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53526] = 34, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5031), 1, + anon_sym_RBRACK, + STATE(1448), 1, + sym_type_arguments, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [52921] = 7, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(2331), 1, - anon_sym_extends, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53640] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4417), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1724), 10, + ACTIONS(3333), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 26, + ACTIONS(3335), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -179495,500 +183156,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52981] = 34, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [53692] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(1931), 1, + ACTIONS(1937), 1, anon_sym_COMMA, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(5015), 1, + ACTIONS(5033), 1, anon_sym_RPAREN, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(4821), 1, + STATE(5567), 1, aux_sym_array_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53095] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(5017), 1, - anon_sym_RBRACK, - STATE(1447), 1, - sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, - sym_optional_chain, + [53806] = 6, + ACTIONS(3452), 1, + anon_sym_EQ, + ACTIONS(3501), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(3498), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3380), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53209] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [53864] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(5019), 1, - anon_sym_RBRACE, - STATE(1447), 1, + ACTIONS(5035), 1, + anon_sym_RBRACK, + STATE(1448), 1, sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, + STATE(6081), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53323] = 13, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3838), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4636), 2, - sym_number, - sym_private_property_identifier, - STATE(3770), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [53395] = 34, + [53978] = 17, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, + ACTIONS(5008), 1, anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(5021), 1, - anon_sym_RBRACK, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, - STATE(5170), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4249), 16, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53509] = 34, + anon_sym_implements, + [54058] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(4267), 1, + ACTIONS(4107), 1, anon_sym_COMMA, - ACTIONS(5023), 1, - anon_sym_RBRACK, - STATE(1447), 1, + ACTIONS(5037), 1, + anon_sym_RBRACE, + STATE(1448), 1, sym_type_arguments, - STATE(3803), 1, + STATE(4195), 1, aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53623] = 7, - ACTIONS(4392), 1, - anon_sym_extends, - ACTIONS(4440), 1, - anon_sym_EQ, + [54172] = 6, + ACTIONS(4609), 1, + anon_sym_LT, + ACTIONS(4839), 1, + anon_sym_DOT, + STATE(2056), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4444), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4447), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4438), 10, + ACTIONS(4005), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 26, + ACTIONS(3476), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180007,160 +183564,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53683] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + anon_sym_extends, + [54230] = 6, + ACTIONS(3478), 1, + anon_sym_EQ, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3536), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3380), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(5025), 1, - anon_sym_RBRACK, - STATE(1447), 1, + [54288] = 5, + ACTIONS(4609), 1, + anon_sym_LT, + STATE(1995), 1, sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4013), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [53797] = 13, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(3737), 1, + ACTIONS(4015), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3740), 1, anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4636), 2, - sym_number, - sym_private_property_identifier, - STATE(3770), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54344] = 6, + ACTIONS(3501), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [53869] = 6, - ACTIONS(3454), 1, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 5, + ACTIONS(3515), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3400), 13, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -180174,7 +183696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -180198,114 +183720,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53927] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(3969), 1, + [54402] = 6, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(5039), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, + STATE(1988), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4023), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4059), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4025), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(5027), 1, - anon_sym_RPAREN, - STATE(1447), 1, - sym_type_arguments, - STATE(4569), 1, - aux_sym_array_repeat1, - STATE(5080), 1, - sym_optional_chain, + anon_sym_extends, + [54460] = 7, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(4243), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(2325), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4246), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1674), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(1678), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54041] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [54520] = 13, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(3737), 1, + ACTIONS(3915), 1, anon_sym_COMMA, - ACTIONS(3829), 1, + ACTIONS(3958), 1, anon_sym_RBRACE, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4636), 2, + ACTIONS(4601), 2, sym_number, sym_private_property_identifier, - STATE(3770), 3, + STATE(4468), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180337,814 +183884,768 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [54113] = 34, - ACTIONS(825), 1, + [54592] = 6, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(3969), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(5029), 1, - anon_sym_RPAREN, - STATE(1447), 1, - sym_type_arguments, - STATE(4623), 1, - aux_sym_array_repeat1, - STATE(5080), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + STATE(2313), 2, + sym_template_string, + sym_arguments, + ACTIONS(4033), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54227] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4035), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(5031), 1, - anon_sym_COLON, - STATE(1447), 1, - sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4049), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4085), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4087), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54341] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [54650] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(5033), 1, - anon_sym_RPAREN, - STATE(1447), 1, + ACTIONS(5041), 1, + anon_sym_RBRACK, + STATE(1448), 1, sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5841), 1, + aux_sym_array_repeat1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54455] = 34, - ACTIONS(825), 1, + [54764] = 33, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(1931), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4143), 1, anon_sym_COMMA, - ACTIONS(3969), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4581), 1, sym__ternary_qmark, - ACTIONS(5035), 1, - anon_sym_RPAREN, - STATE(1447), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4653), 1, - aux_sym_array_repeat1, - STATE(5080), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, + ACTIONS(4916), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54569] = 34, + [54876] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(4267), 1, + ACTIONS(4107), 1, anon_sym_COMMA, - ACTIONS(5037), 1, + ACTIONS(5043), 1, anon_sym_RPAREN, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(3803), 1, + STATE(4195), 1, aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54683] = 34, + [54990] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(5039), 1, - anon_sym_RPAREN, - STATE(1447), 1, + ACTIONS(5045), 1, + anon_sym_RBRACK, + STATE(1448), 1, sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, + STATE(6081), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54797] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, + [55104] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(235), 1, + anon_sym_STAR, + ACTIONS(1941), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5051), 1, + anon_sym_async, + ACTIONS(5053), 1, + anon_sym_static, + ACTIONS(5055), 1, + anon_sym_readonly, + ACTIONS(5061), 1, + anon_sym_override, + STATE(2605), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, + STATE(3070), 1, + sym_accessibility_modifier, + STATE(3113), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4871), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5049), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5057), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5059), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4023), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(6170), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5047), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [55194] = 8, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4289), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4292), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5063), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4295), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4283), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4059), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4287), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [55256] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, + anon_sym_AMP_AMP, + ACTIONS(4961), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4967), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4969), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4971), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4089), 1, + ACTIONS(4987), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4989), 1, sym__ternary_qmark, - ACTIONS(5041), 1, - anon_sym_RPAREN, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(4681), 1, - aux_sym_array_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4061), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4981), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54911] = 34, + [55366] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4961), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4967), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4969), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4971), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4089), 1, + ACTIONS(4987), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4989), 1, sym__ternary_qmark, - ACTIONS(5043), 1, - anon_sym_RPAREN, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(4701), 1, - aux_sym_array_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4143), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4981), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55025] = 14, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5047), 1, - anon_sym_static, - ACTIONS(5049), 1, - anon_sym_readonly, - ACTIONS(5051), 1, - anon_sym_abstract, - ACTIONS(5053), 1, - anon_sym_accessor, - STATE(2768), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5045), 2, - sym_number, - sym_private_property_identifier, - STATE(3389), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3607), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [55099] = 34, + [55476] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4961), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4967), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4969), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4971), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4089), 1, + ACTIONS(4987), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4989), 1, sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(5055), 1, - anon_sym_RPAREN, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4145), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4981), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55213] = 3, + [55586] = 8, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(4243), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3127), 13, + ACTIONS(4246), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5067), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2325), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1674), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3129), 30, - sym__automatic_semicolon, + ACTIONS(1678), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -181164,590 +184665,618 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [55265] = 16, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4247), 1, - anon_sym_async, - ACTIONS(4251), 1, - anon_sym_readonly, - STATE(2701), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3959), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4249), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4253), 2, - anon_sym_get, - anon_sym_set, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [55343] = 34, + [55648] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(4267), 1, + ACTIONS(4107), 1, anon_sym_COMMA, - ACTIONS(5057), 1, - anon_sym_RPAREN, - STATE(1447), 1, + ACTIONS(5071), 1, + anon_sym_RBRACK, + STATE(1448), 1, sym_type_arguments, - STATE(3803), 1, + STATE(4195), 1, aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55457] = 32, - ACTIONS(825), 1, + [55762] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4939), 1, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, - anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4955), 1, - anon_sym_PERCENT, - ACTIONS(4957), 1, - anon_sym_STAR_STAR, - ACTIONS(4959), 1, - anon_sym_LT, - ACTIONS(4967), 1, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(4581), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1842), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4255), 3, - anon_sym_LBRACE, + ACTIONS(4451), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4961), 3, + anon_sym_SEMI, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55567] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4939), 1, - anon_sym_AMP_AMP, - ACTIONS(4941), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, - anon_sym_GT_GT, - ACTIONS(4947), 1, - anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_CARET, - ACTIONS(4951), 1, - anon_sym_PIPE, - ACTIONS(4955), 1, - anon_sym_PERCENT, - ACTIONS(4957), 1, - anon_sym_STAR_STAR, - ACTIONS(4959), 1, - anon_sym_LT, - ACTIONS(4967), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [55872] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4037), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4937), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4953), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4257), 3, - anon_sym_LBRACE, + ACTIONS(4039), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4961), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [55677] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [55924] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4939), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4089), 1, anon_sym_LT, - ACTIONS(4967), 1, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4283), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4961), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55787] = 32, + ACTIONS(5073), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [56034] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4939), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4089), 1, anon_sym_LT, - ACTIONS(4967), 1, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1447), 1, + ACTIONS(5075), 1, + anon_sym_RPAREN, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, + STATE(5959), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4297), 3, - anon_sym_LBRACE, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56148] = 7, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4289), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4295), 2, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4961), 3, + anon_sym_extends, + ACTIONS(4292), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4283), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4287), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [55897] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [56208] = 13, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3970), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4601), 2, + sym_number, + sym_private_property_identifier, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [56280] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4939), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4089), 1, anon_sym_LT, - ACTIONS(4967), 1, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1447), 1, + ACTIONS(5077), 1, + anon_sym_RPAREN, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, + STATE(5859), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4299), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4961), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56007] = 19, + [56394] = 21, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4943), 1, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4955), 1, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4979), 1, anon_sym_LT, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4945), 2, + ACTIONS(4957), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4307), 7, + ACTIONS(4981), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4251), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 15, + ACTIONS(4249), 12, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -181755,43 +185284,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, - [56091] = 14, + [56482] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4957), 1, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, + anon_sym_GT_GT, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_PERCENT, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(5059), 1, + ACTIONS(4089), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + ACTIONS(5079), 1, + anon_sym_RPAREN, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5703), 1, + aux_sym_array_repeat1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4065), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4075), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4083), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4307), 12, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56596] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181802,479 +185384,664 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 18, + ACTIONS(3364), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [56165] = 26, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [56648] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4307), 1, + anon_sym_as, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4943), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, + anon_sym_AMP_AMP, + ACTIONS(4961), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4967), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4969), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4971), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4979), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(4987), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4989), 1, + sym__ternary_qmark, + STATE(2202), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4961), 3, + ACTIONS(4981), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 9, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5081), 3, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, anon_sym_implements, - [56263] = 27, + [56758] = 14, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5085), 1, + anon_sym_static, + ACTIONS(5087), 1, + anon_sym_readonly, + ACTIONS(5089), 1, + anon_sym_abstract, + ACTIONS(5091), 1, + anon_sym_accessor, + STATE(3211), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5083), 2, + sym_number, + sym_private_property_identifier, + STATE(3728), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [56832] = 28, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4307), 1, + ACTIONS(4251), 1, anon_sym_BANG, - ACTIONS(4939), 1, + ACTIONS(4959), 1, anon_sym_AMP_AMP, - ACTIONS(4943), 1, + ACTIONS(4961), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4967), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4969), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4971), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4979), 1, anon_sym_LT, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4961), 3, + ACTIONS(4981), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 8, + ACTIONS(4249), 7, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, anon_sym_implements, - [56363] = 17, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [56934] = 13, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3961), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_PERCENT, - ACTIONS(4957), 1, - anon_sym_STAR_STAR, - ACTIONS(5059), 1, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4601), 2, + sym_number, + sym_private_property_identifier, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57006] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(1676), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5093), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1674), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4953), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 17, + ACTIONS(1678), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [56443] = 23, + [57062] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4943), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, + anon_sym_AMP_AMP, + ACTIONS(4961), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4955), 1, + ACTIONS(4967), 1, + anon_sym_AMP, + ACTIONS(4969), 1, + anon_sym_CARET, + ACTIONS(4971), 1, + anon_sym_PIPE, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4979), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(4987), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4989), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4307), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4961), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4502), 3, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, anon_sym_implements, - [56535] = 24, + ACTIONS(4981), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57172] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4943), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, + anon_sym_AMP_AMP, + ACTIONS(4961), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4967), 1, anon_sym_AMP, - ACTIONS(4955), 1, + ACTIONS(4969), 1, + anon_sym_CARET, + ACTIONS(4971), 1, + anon_sym_PIPE, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4979), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(4987), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4989), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4935), 2, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4961), 3, + ACTIONS(4506), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4981), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 10, + [57282] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4638), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5095), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4636), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4640), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [56629] = 25, + [57338] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4943), 1, + ACTIONS(4069), 1, + anon_sym_AMP_AMP, + ACTIONS(4071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4089), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(4097), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, + sym__ternary_qmark, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5097), 1, + anon_sym_RBRACK, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4935), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4961), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [56725] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_PERCENT, - ACTIONS(4957), 1, - anon_sym_STAR_STAR, - ACTIONS(5059), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [57452] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4285), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5099), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4283), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -182283,62 +186050,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 17, + ACTIONS(4287), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [56803] = 17, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4957), 1, - anon_sym_STAR_STAR, - ACTIONS(5059), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [57508] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 11, + ACTIONS(1664), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -182347,1298 +186093,1391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 16, + ACTIONS(1662), 30, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [56883] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [57560] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4943), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, + anon_sym_AMP_AMP, + ACTIONS(4961), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4955), 1, + ACTIONS(4967), 1, + anon_sym_AMP, + ACTIONS(4969), 1, + anon_sym_CARET, + ACTIONS(4971), 1, + anon_sym_PIPE, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4979), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(4987), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4989), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4961), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4307), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4475), 3, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_implements, - [56971] = 28, + ACTIONS(4981), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57670] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4307), 1, + anon_sym_as, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4939), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4961), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4967), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4969), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4971), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4979), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(4987), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4989), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4961), 3, + ACTIONS(4195), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4981), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 7, + [57780] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4385), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4309), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4311), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [57073] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, - anon_sym_GT_GT, - ACTIONS(4947), 1, - anon_sym_AMP, - ACTIONS(4949), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4951), 1, - anon_sym_PIPE, - ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, - anon_sym_LT, - ACTIONS(4967), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [57834] = 7, + ACTIONS(3416), 1, + anon_sym_EQ, + ACTIONS(4469), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4922), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4925), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4937), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4945), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4953), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(3384), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4350), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4961), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57183] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [57894] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4939), 1, + ACTIONS(4959), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4961), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4967), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4969), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4971), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4967), 1, + ACTIONS(4987), 1, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, + ACTIONS(4989), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4352), 3, + ACTIONS(4167), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4961), 3, + ACTIONS(4981), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57293] = 32, + [58004] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4939), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4089), 1, anon_sym_LT, - ACTIONS(4967), 1, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1447), 1, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(5101), 1, + anon_sym_RBRACE, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(4195), 1, + aux_sym_sequence_expression_repeat1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4370), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4961), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57403] = 32, + [58118] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4939), 1, + ACTIONS(4959), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4961), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4967), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4969), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4971), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4967), 1, + ACTIONS(4987), 1, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, + ACTIONS(4989), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4372), 3, + ACTIONS(4177), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4961), 3, + ACTIONS(4981), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57513] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + [58228] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3337), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3339), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, - anon_sym_GT_GT, - ACTIONS(4947), 1, - anon_sym_AMP, - ACTIONS(4949), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4951), 1, - anon_sym_PIPE, - ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, - anon_sym_LT, - ACTIONS(4967), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [58280] = 4, + ACTIONS(4841), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4029), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4937), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4953), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4374), 3, - anon_sym_LBRACE, + ACTIONS(4031), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4961), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57623] = 32, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_satisfies, + anon_sym_extends, + [58334] = 7, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4289), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4292), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4283), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4059), 1, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4287), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, - anon_sym_GT_GT, - ACTIONS(4947), 1, - anon_sym_AMP, - ACTIONS(4949), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4951), 1, - anon_sym_PIPE, - ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, - anon_sym_LT, - ACTIONS(4967), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58394] = 4, + ACTIONS(4841), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4019), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4937), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4953), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4376), 3, - anon_sym_LBRACE, + ACTIONS(4021), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4961), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57733] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [58448] = 34, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4939), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4089), 1, anon_sym_LT, - ACTIONS(4967), 1, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1447), 1, + ACTIONS(5103), 1, + anon_sym_RPAREN, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, + STATE(6091), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4053), 3, - anon_sym_LBRACE, + ACTIONS(4091), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58562] = 7, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(2325), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4243), 2, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4961), 3, + anon_sym_LBRACK, + ACTIONS(4246), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1674), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1678), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57843] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58622] = 14, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5107), 1, + anon_sym_static, + ACTIONS(5109), 1, + anon_sym_readonly, + ACTIONS(5111), 1, + anon_sym_abstract, + ACTIONS(5113), 1, + anon_sym_accessor, + STATE(3124), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5105), 2, + sym_number, + sym_private_property_identifier, + STATE(3848), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [58696] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4939), 1, + ACTIONS(4959), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4961), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4963), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4967), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4969), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4971), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4975), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4977), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4967), 1, + ACTIONS(4987), 1, anon_sym_QMARK_QMARK, - ACTIONS(4969), 1, + ACTIONS(4989), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4957), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4965), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4963), 2, + ACTIONS(4983), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 2, + ACTIONS(4985), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4388), 3, + ACTIONS(4270), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4961), 3, + ACTIONS(4981), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57953] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + [58806] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4315), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4309), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4311), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(5062), 1, - anon_sym_RPAREN, - STATE(1447), 1, - sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, - sym_optional_chain, + [58860] = 4, + ACTIONS(5115), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4013), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4015), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58067] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [58914] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - ACTIONS(5064), 1, - anon_sym_RBRACK, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, - STATE(5170), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58181] = 34, - ACTIONS(825), 1, + ACTIONS(5117), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [59024] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4529), 1, + anon_sym_PERCENT, + ACTIONS(4531), 1, + anon_sym_STAR_STAR, + ACTIONS(4533), 1, + anon_sym_LT, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4561), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4563), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, + ACTIONS(4577), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4581), 1, sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(5066), 1, - anon_sym_RPAREN, - STATE(1447), 1, + STATE(1842), 1, sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4515), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4557), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58295] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4848), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [59134] = 13, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(5068), 1, - anon_sym_RPAREN, - STATE(1447), 1, - sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, - sym_optional_chain, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4085), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58409] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4601), 2, + sym_number, + sym_private_property_identifier, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(4267), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [59206] = 13, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(3915), 1, anon_sym_COMMA, - ACTIONS(5070), 1, - anon_sym_RPAREN, - STATE(1447), 1, - sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4049), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4085), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58523] = 34, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(5072), 1, - anon_sym_RPAREN, - STATE(1447), 1, - sym_type_arguments, - STATE(3803), 1, - aux_sym_sequence_expression_repeat1, - STATE(5080), 1, - sym_optional_chain, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4085), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58637] = 13, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4601), 2, + sym_number, + sym_private_property_identifier, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5074), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [59278] = 4, + ACTIONS(5123), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4170), 12, + ACTIONS(5119), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -183648,131 +187487,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [58709] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5077), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4199), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4201), 17, + ACTIONS(5121), 25, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_implements, - [58787] = 12, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5080), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4232), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -183785,42 +187515,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, - [58857] = 5, + anon_sym_BQUOTE, + [59331] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4404), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3400), 10, + ACTIONS(4191), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 26, + ACTIONS(4193), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -183840,17 +187565,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58912] = 6, - ACTIONS(5083), 1, + anon_sym_extends, + [59382] = 6, + ACTIONS(5125), 1, anon_sym_AMP, - ACTIONS(5085), 1, + ACTIONS(5127), 1, anon_sym_PIPE, - ACTIONS(5087), 1, + ACTIONS(5129), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 11, + ACTIONS(4139), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183862,7 +187588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4197), 28, + ACTIONS(4141), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183891,11 +187617,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58969] = 3, + [59439] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4206), 13, + ACTIONS(4019), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183909,7 +187635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4208), 29, + ACTIONS(4021), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183939,65 +187665,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59020] = 3, + [59490] = 15, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5131), 1, + anon_sym_STAR, + ACTIONS(5133), 1, + anon_sym_async, + ACTIONS(5137), 1, + anon_sym_readonly, + ACTIONS(5139), 1, + anon_sym_get, + ACTIONS(5141), 1, + anon_sym_set, + STATE(3092), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 13, - anon_sym_STAR, + ACTIONS(5135), 2, + sym_number, + sym_private_property_identifier, + STATE(3437), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4214), 29, + anon_sym_QMARK, + ACTIONS(3609), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [59565] = 13, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5143), 1, + anon_sym_STAR, + ACTIONS(5145), 1, + anon_sym_async, + ACTIONS(5149), 1, + anon_sym_get, + ACTIONS(5151), 1, + anon_sym_set, + ACTIONS(5153), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5147), 2, + sym_number, + sym_private_property_identifier, + STATE(3439), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [59636] = 9, + ACTIONS(4289), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [59071] = 6, - ACTIONS(5083), 1, - anon_sym_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE, - ACTIONS(5087), 1, + ACTIONS(4295), 1, anon_sym_extends, + ACTIONS(5155), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 11, + ACTIONS(4285), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4292), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5099), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4283), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184009,16 +187814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4214), 28, - sym__automatic_semicolon, + ACTIONS(4287), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184038,11 +187837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59128] = 3, + [59699] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 13, + ACTIONS(2327), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184056,7 +187855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4144), 29, + ACTIONS(2325), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184086,34 +187885,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59179] = 3, + [59750] = 9, + ACTIONS(2325), 1, + anon_sym_extends, + ACTIONS(4243), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2325), 13, + ACTIONS(1676), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4246), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5093), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1674), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2323), 29, - sym__automatic_semicolon, + ACTIONS(1678), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184133,37 +187939,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59230] = 3, + [59813] = 7, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4216), 13, + ACTIONS(3418), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3422), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4218), 29, + ACTIONS(3384), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -184181,12 +187991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59281] = 3, + [59872] = 5, + ACTIONS(4517), 1, + anon_sym_LPAREN, + STATE(2305), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 13, + ACTIONS(4325), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184200,13 +188013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 29, + ACTIONS(4327), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, @@ -184229,35 +188041,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59332] = 3, + [59927] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 13, + ACTIONS(4301), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4303), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 29, + ACTIONS(3384), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184277,12 +188091,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59383] = 3, + [59982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 13, + ACTIONS(4275), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184296,7 +188109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 29, + ACTIONS(4277), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184326,34 +188139,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59434] = 3, + [60033] = 6, + ACTIONS(4537), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 13, + ACTIONS(4031), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4540), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4226), 29, - sym__automatic_semicolon, + ACTIONS(3384), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184373,35 +188190,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [60090] = 6, + ACTIONS(4429), 1, anon_sym_extends, - [59485] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 13, + ACTIONS(4853), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4856), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4757), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4226), 29, + ACTIONS(4759), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184421,156 +188241,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59536] = 3, + [60147] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4145), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4226), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60256] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [59587] = 3, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4143), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4239), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60365] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [59638] = 3, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 13, + ACTIONS(4061), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4239), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60474] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4199), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [59689] = 3, + [60583] = 4, + ACTIONS(4843), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 13, + ACTIONS(3422), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184584,7 +188569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4239), 29, + ACTIONS(3418), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184594,7 +188579,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184614,107 +188598,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59740] = 3, + [60636] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4209), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4261), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60745] = 19, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [59791] = 3, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4263), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4265), 29, - sym__automatic_semicolon, + ACTIONS(4249), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59842] = 3, + [60828] = 14, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5197), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184725,380 +188778,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4273), 29, - sym__automatic_semicolon, + ACTIONS(4249), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59893] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2329), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2327), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [60901] = 26, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [59944] = 3, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4277), 29, - sym__automatic_semicolon, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [60998] = 27, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [59995] = 3, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4279), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 29, - sym__automatic_semicolon, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [61097] = 17, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [60046] = 3, + ACTIONS(5197), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4279), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4281), 29, - sym__automatic_semicolon, + ACTIONS(4249), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60097] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4279), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4281), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [61176] = 23, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [60148] = 3, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4287), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [60199] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4285), 13, - anon_sym_STAR, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 3, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4287), 29, - sym__automatic_semicolon, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, + [61267] = 4, + ACTIONS(4315), 1, anon_sym_extends, - [60250] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185112,7 +189091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4287), 29, + ACTIONS(4311), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185141,259 +189120,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60301] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4293), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4295), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [61320] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4519), 1, anon_sym_LBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(5204), 1, anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, anon_sym_CARET, + ACTIONS(5216), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, anon_sym_PERCENT, + ACTIONS(5222), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5224), 1, + anon_sym_LT, + ACTIONS(5232), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [60352] = 3, + ACTIONS(5234), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4655), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5200), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5202), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [61429] = 24, + ACTIONS(825), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [60403] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4293), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4295), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [60454] = 3, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4301), 13, - anon_sym_STAR, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4251), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4303), 29, - sym__automatic_semicolon, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [61522] = 25, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [60505] = 6, - ACTIONS(5083), 1, - anon_sym_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE, - ACTIONS(5087), 1, - anon_sym_extends, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4309), 11, - anon_sym_STAR, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4251), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4311), 28, - sym__automatic_semicolon, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [60562] = 5, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(4780), 1, - sym__automatic_semicolon, + [61617] = 4, + ACTIONS(4015), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1722), 13, + ACTIONS(4395), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185407,7 +189356,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1720), 27, + ACTIONS(4397), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185435,84 +189385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60617] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4049), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4085), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5089), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60726] = 19, + [61670] = 19, ACTIONS(241), 1, anon_sym_COMMA, ACTIONS(725), 1, @@ -185527,18 +189400,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2315), 1, anon_sym_override, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5236), 1, anon_sym_STAR, - STATE(2719), 1, + STATE(3097), 1, sym_override_modifier, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -185548,11 +189421,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3788), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -185576,66 +189449,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60809] = 6, - ACTIONS(4697), 1, + [61753] = 16, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5197), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4700), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 10, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 26, + ACTIONS(4249), 16, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [60866] = 4, - ACTIONS(5093), 1, + [61830] = 17, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5197), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -185644,441 +189554,784 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4338), 28, - sym__automatic_semicolon, + ACTIONS(4249), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [61909] = 21, + ACTIONS(825), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [60919] = 3, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4251), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4344), 29, - sym__automatic_semicolon, + ACTIONS(4249), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60970] = 9, - ACTIONS(2331), 1, - anon_sym_extends, - ACTIONS(4414), 1, - anon_sym_LBRACK, - ACTIONS(5095), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1726), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4417), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4989), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1724), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1728), 22, - sym__ternary_qmark, - anon_sym_as, + [61996] = 28, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [61033] = 4, - ACTIONS(5098), 1, - anon_sym_LBRACK, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4344), 28, - sym__automatic_semicolon, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [62097] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [61086] = 3, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62206] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [61137] = 9, - ACTIONS(4392), 1, - anon_sym_extends, - ACTIONS(4444), 1, - anon_sym_LBRACK, - ACTIONS(5100), 1, - anon_sym_RPAREN, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4440), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4447), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4985), 2, - anon_sym_COMMA, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4506), 2, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(4438), 11, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62315] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4167), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [62424] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, anon_sym_satisfies, - [61200] = 4, - ACTIONS(5107), 1, - sym_regex_flags, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5103), 16, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4177), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(5105), 25, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [62533] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(3985), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [61253] = 3, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4270), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4326), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62642] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4195), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [62751] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, anon_sym_satisfies, - anon_sym_extends, - [61304] = 3, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4025), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4197), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4027), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62860] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4475), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [61355] = 3, + [62969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4013), 13, + ACTIONS(4253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186092,7 +190345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4015), 29, + ACTIONS(4255), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186122,13 +190375,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61406] = 4, - ACTIONS(4027), 1, - anon_sym_extends, + [63020] = 12, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5238), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 13, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4495), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186139,21 +190409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4320), 28, + ACTIONS(4497), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186169,93 +190431,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_satisfies, + [63089] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, anon_sym_satisfies, - [61459] = 6, - ACTIONS(5083), 1, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, anon_sym_AMP, - ACTIONS(5085), 1, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5216), 1, anon_sym_PIPE, - ACTIONS(5087), 1, - anon_sym_extends, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + ACTIONS(5232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5234), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 11, + ACTIONS(4504), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5202), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4358), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [63198] = 16, + ACTIONS(89), 1, anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, anon_sym_satisfies, - [61516] = 6, - ACTIONS(5083), 1, - anon_sym_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE, - ACTIONS(5087), 1, - anon_sym_extends, + ACTIONS(5241), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4360), 11, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4508), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4362), 28, + ACTIONS(4510), 16, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186269,44 +190570,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [63275] = 13, + ACTIONS(89), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [61573] = 6, - ACTIONS(5083), 1, - anon_sym_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE, - ACTIONS(5087), 1, - anon_sym_extends, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5244), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 11, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4263), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4320), 28, + ACTIONS(4265), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186320,66 +190627,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [61630] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1993), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3743), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1991), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [61683] = 4, - ACTIONS(3402), 1, + [63346] = 5, + ACTIONS(1676), 1, anon_sym_EQ, + ACTIONS(4833), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(1672), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186393,16 +190650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 28, + ACTIONS(1670), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186422,102 +190678,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61736] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - ACTIONS(5109), 1, - anon_sym_RBRACE, - STATE(2719), 1, - sym_override_modifier, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [61819] = 6, - ACTIONS(4691), 1, - anon_sym_LBRACK, + [63401] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4694), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(4487), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 26, + ACTIONS(4489), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186537,19 +190725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61876] = 7, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, + anon_sym_extends, + [63452] = 4, + ACTIONS(5247), 1, anon_sym_DOT, - ACTIONS(4786), 1, - anon_sym_QMARK_DOT, - STATE(4772), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1787), 13, + ACTIONS(4445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186563,7 +190746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 25, + ACTIONS(4447), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186572,6 +190755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186589,11 +190774,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61935] = 3, + anon_sym_extends, + [63505] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186607,7 +190793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4330), 29, + ACTIONS(4443), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186637,261 +190823,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61986] = 14, - ACTIONS(170), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, - anon_sym_LBRACK, - ACTIONS(5113), 1, - anon_sym_COMMA, - ACTIONS(5115), 1, - anon_sym_RBRACE, - STATE(4848), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5117), 2, - sym_number, - sym_private_property_identifier, - STATE(4834), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5634), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5760), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5111), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [62059] = 32, + [63556] = 33, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4574), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(5125), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5127), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, + ACTIONS(5208), 1, anon_sym_GT_GT, - ACTIONS(5133), 1, + ACTIONS(5212), 1, anon_sym_AMP, - ACTIONS(5135), 1, + ACTIONS(5214), 1, anon_sym_CARET, - ACTIONS(5137), 1, + ACTIONS(5216), 1, anon_sym_PIPE, - ACTIONS(5141), 1, + ACTIONS(5220), 1, anon_sym_PERCENT, - ACTIONS(5143), 1, + ACTIONS(5222), 1, anon_sym_STAR_STAR, - ACTIONS(5145), 1, + ACTIONS(5224), 1, anon_sym_LT, - ACTIONS(5153), 1, + ACTIONS(5232), 1, anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, + ACTIONS(5234), 1, sym__ternary_qmark, - STATE(1812), 1, + ACTIONS(5249), 1, + anon_sym_SEMI, + ACTIONS(5251), 1, + sym__automatic_semicolon, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(5200), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5121), 2, + ACTIONS(5202), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5123), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5131), 2, + ACTIONS(5210), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5139), 2, + ACTIONS(5218), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + ACTIONS(5228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, + ACTIONS(5230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62168] = 7, - ACTIONS(3410), 1, - anon_sym_DOT, - ACTIONS(3414), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3418), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3406), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3400), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5226), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [62227] = 6, - ACTIONS(4330), 1, + [63667] = 9, + ACTIONS(4031), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4691), 2, - anon_sym_COMMA, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4694), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [62284] = 5, + ACTIONS(5258), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 2, + ACTIONS(4540), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4404), 7, - sym__automatic_semicolon, + ACTIONS(5253), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5255), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3400), 11, + anon_sym_COLON, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186903,61 +190932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [62339] = 6, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4408), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4881), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4774), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4776), 26, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186977,37 +190955,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62396] = 14, - ACTIONS(1594), 1, + [63730] = 14, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5157), 1, + ACTIONS(5262), 1, anon_sym_STAR, - ACTIONS(5159), 1, + ACTIONS(5264), 1, anon_sym_async, - ACTIONS(5163), 1, + ACTIONS(5268), 1, anon_sym_readonly, - STATE(2705), 1, + STATE(3105), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5161), 2, + ACTIONS(5266), 2, sym_number, sym_private_property_identifier, - ACTIONS(5165), 2, + ACTIONS(5270), 2, anon_sym_get, anon_sym_set, - STATE(2964), 3, + STATE(3431), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -187017,7 +190995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 18, + ACTIONS(3609), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -187036,33 +191014,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [62469] = 12, - ACTIONS(1594), 1, + [63803] = 9, + ACTIONS(3452), 1, + anon_sym_EQ, + ACTIONS(3501), 1, + anon_sym_QMARK, + ACTIONS(4922), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4469), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4925), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63866] = 12, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5001), 1, + ACTIONS(5091), 1, anon_sym_abstract, - ACTIONS(5157), 1, + ACTIONS(5262), 1, anon_sym_STAR, - ACTIONS(5159), 1, + ACTIONS(5264), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5161), 2, + ACTIONS(5266), 2, sym_number, sym_private_property_identifier, - ACTIONS(5165), 2, + ACTIONS(5270), 2, anon_sym_get, anon_sym_set, - STATE(2964), 3, + STATE(3431), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -187072,7 +191104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 20, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -187093,20 +191125,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [62538] = 6, - ACTIONS(4041), 1, + [63935] = 7, + ACTIONS(3448), 1, + anon_sym_EQ, + ACTIONS(4469), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4697), 2, + ACTIONS(4922), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4700), 3, + ACTIONS(4925), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187117,11 +191151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 26, + ACTIONS(3384), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, @@ -187144,37 +191177,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62595] = 14, - ACTIONS(1594), 1, + [63994] = 15, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5167), 1, + ACTIONS(5272), 1, anon_sym_STAR, - ACTIONS(5169), 1, + ACTIONS(5274), 1, anon_sym_async, - ACTIONS(5173), 1, + ACTIONS(5278), 1, anon_sym_readonly, - STATE(2708), 1, + ACTIONS(5280), 1, + anon_sym_get, + ACTIONS(5282), 1, + anon_sym_set, + STATE(3112), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5171), 2, + ACTIONS(5276), 2, sym_number, sym_private_property_identifier, - ACTIONS(5175), 2, - anon_sym_get, - anon_sym_set, - STATE(2986), 3, + STATE(3428), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -187184,7 +191218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 18, + ACTIONS(3609), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -187203,33 +191237,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [62668] = 12, - ACTIONS(1594), 1, + [64069] = 13, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5167), 1, + ACTIONS(5284), 1, anon_sym_STAR, - ACTIONS(5169), 1, + ACTIONS(5286), 1, anon_sym_async, - ACTIONS(5179), 1, + ACTIONS(5290), 1, + anon_sym_get, + ACTIONS(5292), 1, + anon_sym_set, + ACTIONS(5294), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5175), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5177), 2, + ACTIONS(5288), 2, sym_number, sym_private_property_identifier, - STATE(2987), 3, + STATE(3427), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -187239,7 +191274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 20, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -187260,39 +191295,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [62737] = 7, - ACTIONS(3448), 1, - anon_sym_EQ, - ACTIONS(4330), 1, - anon_sym_extends, + [64140] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4691), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4694), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(2319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 25, + ACTIONS(2317), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187312,100 +191342,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62796] = 14, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, - anon_sym_STAR, - ACTIONS(5183), 1, - anon_sym_async, - ACTIONS(5187), 1, - anon_sym_readonly, - STATE(2712), 1, - sym_override_modifier, + anon_sym_extends, + [64191] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5185), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5189), 2, - anon_sym_get, - anon_sym_set, - STATE(3057), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(4147), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4149), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [62869] = 9, - ACTIONS(4041), 1, - anon_sym_extends, - ACTIONS(4697), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64248] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 2, + ACTIONS(3607), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5191), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5193), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3400), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3400), 11, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [64299] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4383), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(4385), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187425,41 +191489,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62932] = 9, - ACTIONS(3499), 1, - anon_sym_QMARK, - ACTIONS(3511), 1, - anon_sym_EQ, - ACTIONS(4691), 1, + anon_sym_extends, + [64350] = 24, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3514), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4330), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4694), 2, - anon_sym_AMP, + ACTIONS(4251), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(3400), 11, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [64443] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4155), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(4157), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187479,94 +191606,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62995] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5091), 1, + anon_sym_extends, + [64494] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4155), 13, anon_sym_STAR, - ACTIONS(5198), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4157), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2719), 1, - sym_override_modifier, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [64545] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(2335), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [63078] = 9, - ACTIONS(2331), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_extends, - ACTIONS(4414), 1, + [64596] = 6, + ACTIONS(4853), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1726), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4417), 2, + ACTIONS(4429), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4856), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4747), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1724), 11, + ACTIONS(4757), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -187574,10 +191727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 22, + ACTIONS(4759), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187597,26 +191754,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63141] = 9, - ACTIONS(4392), 1, + [64653] = 9, + ACTIONS(4031), 1, anon_sym_extends, - ACTIONS(4444), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(5007), 1, + ACTIONS(5300), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4440), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4447), 2, + ACTIONS(4540), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4761), 2, + ACTIONS(5296), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5298), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4438), 11, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187628,7 +191785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 22, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187651,16 +191808,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63204] = 4, + [64716] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4460), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4450), 13, + ACTIONS(4155), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187674,12 +191826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 25, + ACTIONS(4157), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -187700,16 +191855,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63257] = 4, + anon_sym_extends, + [64767] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4456), 4, + ACTIONS(4435), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4437), 29, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4450), 13, + [64818] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4159), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187723,12 +191922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 25, + ACTIONS(4161), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -187749,52 +191951,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63310] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, + anon_sym_extends, + [64869] = 14, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, + ACTIONS(3635), 1, anon_sym_override, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5303), 1, anon_sym_STAR, - ACTIONS(5200), 1, - anon_sym_RBRACE, - STATE(2719), 1, + ACTIONS(5305), 1, + anon_sym_async, + ACTIONS(5309), 1, + anon_sym_readonly, + STATE(3095), 1, sym_override_modifier, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5307), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(5311), 2, anon_sym_get, anon_sym_set, - STATE(3788), 3, + STATE(3451), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -187813,97 +192011,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63393] = 10, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(2331), 1, - anon_sym_extends, - ACTIONS(2333), 1, - anon_sym_QMARK, - ACTIONS(4414), 1, - anon_sym_LBRACK, - ACTIONS(4989), 1, - anon_sym_COLON, + [64942] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5003), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1724), 11, + ACTIONS(4159), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1728), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [63458] = 10, - ACTIONS(4390), 1, - anon_sym_QMARK, - ACTIONS(4392), 1, - anon_sym_extends, - ACTIONS(4440), 1, - anon_sym_EQ, - ACTIONS(4444), 1, - anon_sym_LBRACK, - ACTIONS(4985), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4447), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5007), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4438), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 22, + ACTIONS(4161), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187923,52 +192058,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63523] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, + anon_sym_extends, + [64993] = 12, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(4690), 1, anon_sym_STAR, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(2719), 1, - sym_override_modifier, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + ACTIONS(4694), 1, + anon_sym_async, + ACTIONS(4713), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(4696), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(4700), 2, anon_sym_get, anon_sym_set, - STATE(3788), 3, + STATE(3410), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 18, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -187976,10 +192103,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -187987,38 +192116,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63606] = 6, + [65062] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4694), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4691), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4330), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3400), 11, + ACTIONS(4159), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(4161), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188038,38 +192163,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63663] = 6, + anon_sym_extends, + [65113] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4881), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4878), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4408), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4774), 11, + ACTIONS(4439), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 22, + ACTIONS(4295), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188089,38 +192211,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63720] = 6, + anon_sym_extends, + [65164] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4697), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4041), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3400), 11, + ACTIONS(4163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(4165), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188140,15 +192259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63777] = 5, - ACTIONS(4519), 1, - anon_sym_LPAREN, - STATE(2188), 1, - sym_arguments, + anon_sym_extends, + [65215] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 13, + ACTIONS(4163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188162,12 +192278,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4291), 27, + ACTIONS(4165), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, @@ -188190,11 +192307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63832] = 3, + anon_sym_extends, + [65266] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 13, + ACTIONS(4163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188208,7 +192326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 29, + ACTIONS(4165), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188238,36 +192356,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63883] = 4, - ACTIONS(4678), 1, - anon_sym_EQ, + [65317] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4676), 13, + ACTIONS(4303), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4301), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4680), 28, - sym__automatic_semicolon, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188287,13 +192406,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63936] = 4, - ACTIONS(3475), 1, - anon_sym_EQ, + [65372] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(4169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188307,7 +192424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 28, + ACTIONS(4171), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188336,88 +192453,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63989] = 14, - ACTIONS(170), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, - anon_sym_LBRACK, - ACTIONS(5113), 1, - anon_sym_COMMA, - ACTIONS(5206), 1, - anon_sym_RBRACE, - STATE(4759), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5117), 2, - sym_number, - sym_private_property_identifier, - STATE(4861), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5634), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5760), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5204), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [64062] = 6, - ACTIONS(5083), 1, - anon_sym_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE, - ACTIONS(5087), 1, anon_sym_extends, + [65423] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 11, + ACTIONS(2331), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4348), 28, + ACTIONS(2329), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188446,13 +192501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64119] = 4, - ACTIONS(4739), 1, - anon_sym_DOT, + anon_sym_extends, + [65474] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 13, + ACTIONS(4173), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188466,7 +192520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3406), 28, + ACTIONS(4175), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188476,6 +192530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188495,244 +192550,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64172] = 32, - ACTIONS(89), 1, + [65525] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(5127), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(5133), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(5135), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(5137), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(5141), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(5143), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(5145), 1, + ACTIONS(4089), 1, anon_sym_LT, - ACTIONS(5153), 1, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1448), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5121), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5139), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5208), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2133), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4653), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5147), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64281] = 32, - ACTIONS(89), 1, + [65634] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(5127), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(5133), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(5135), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(5137), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(5141), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(5143), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(5145), 1, + ACTIONS(4089), 1, anon_sym_LT, - ACTIONS(5153), 1, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1448), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5121), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5139), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4946), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5147), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64390] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + [65743] = 19, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, - anon_sym_AMP_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, - anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(5313), 1, + anon_sym_RBRACE, + STATE(3097), 1, + sym_override_modifier, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2307), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [65826] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4179), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, + ACTIONS(4181), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64499] = 4, - ACTIONS(5210), 1, - anon_sym_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [65877] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 13, + ACTIONS(4183), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188746,7 +192834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4380), 28, + ACTIONS(4185), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188756,6 +192844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188775,88 +192864,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64552] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, - anon_sym_AMP_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, - anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [65928] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4283), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4387), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, + ACTIONS(4389), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64661] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [65979] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 13, + ACTIONS(4187), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188870,7 +192930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4386), 29, + ACTIONS(4189), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188900,259 +192960,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64712] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, - anon_sym_AMP_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, - anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [66030] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4187), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64821] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4189), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, anon_sym_PERCENT, - ACTIONS(5143), 1, anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4299), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5149), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5151), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64930] = 19, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_satisfies, + anon_sym_extends, + [66081] = 14, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, + ACTIONS(5315), 1, + anon_sym_STAR, + ACTIONS(5317), 1, + anon_sym_async, + ACTIONS(5321), 1, + anon_sym_readonly, + STATE(3098), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5319), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5323), 2, + anon_sym_get, + anon_sym_set, + STATE(3534), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [66154] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4187), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 14, + ACTIONS(4189), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [65013] = 9, - ACTIONS(4041), 1, anon_sym_extends, - ACTIONS(4697), 1, - anon_sym_LBRACK, - ACTIONS(5215), 1, - anon_sym_RPAREN, + [66205] = 4, + ACTIONS(3416), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5191), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5212), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3400), 11, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(3384), 28, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189172,35 +193164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65076] = 14, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5219), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [66258] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 12, + ACTIONS(4191), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189211,61 +193179,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 17, + ACTIONS(4193), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [65149] = 9, - ACTIONS(3454), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_QMARK, - ACTIONS(4691), 1, - anon_sym_LBRACK, + anon_sym_extends, + [66309] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4330), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4694), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 11, + ACTIONS(4391), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(4393), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189285,515 +193259,444 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65212] = 26, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_extends, + [66360] = 19, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, - anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(5325), 1, + anon_sym_RBRACE, + STATE(3097), 1, + sym_override_modifier, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2307), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [66443] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4313), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 8, + ACTIONS(4315), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [65309] = 27, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(4519), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(5125), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, anon_sym_PERCENT, - ACTIONS(5143), 1, anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [66494] = 9, + ACTIONS(4031), 1, + anon_sym_extends, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(5329), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4540), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5253), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5327), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3380), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 7, - sym__automatic_semicolon, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [65408] = 17, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(5141), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5143), 1, anon_sym_STAR_STAR, - ACTIONS(5219), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66557] = 4, + ACTIONS(5125), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4431), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5139), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 16, + ACTIONS(4433), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [65487] = 23, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_satisfies, + anon_sym_extends, + [66610] = 9, + ACTIONS(3501), 1, + anon_sym_QMARK, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(4922), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(3515), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4469), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4925), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 9, - sym__automatic_semicolon, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [65578] = 24, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5141), 1, anon_sym_PERCENT, - ACTIONS(5143), 1, anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4191), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 9, + ACTIONS(4193), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [65671] = 25, - ACTIONS(89), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_satisfies, + anon_sym_extends, + [66724] = 9, + ACTIONS(2325), 1, + anon_sym_extends, + ACTIONS(4243), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, - anon_sym_CARET, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + ACTIONS(5067), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 2, - anon_sym_BANG, + ACTIONS(1676), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4246), 2, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4583), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1674), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 8, - sym__automatic_semicolon, + ACTIONS(1678), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [65766] = 16, - ACTIONS(89), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_satisfies, + [66787] = 9, + ACTIONS(4289), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5219), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + ACTIONS(4295), 1, + anon_sym_extends, + ACTIONS(5063), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4285), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4292), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4625), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4283), 11, anon_sym_STAR, - anon_sym_SLASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 16, - sym__automatic_semicolon, + ACTIONS(4287), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [65843] = 17, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5219), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [66850] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 11, + ACTIONS(4315), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4309), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -189802,168 +193705,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 15, - sym__automatic_semicolon, + ACTIONS(4311), 25, sym__ternary_qmark, - anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65922] = 21, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_satisfies, + [66903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4013), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4307), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 11, + ACTIONS(4015), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [66009] = 28, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(4519), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(5125), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, anon_sym_PERCENT, - ACTIONS(5143), 1, anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5149), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5151), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 6, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [66110] = 3, + anon_sym_extends, + [66954] = 4, + ACTIONS(4352), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4039), 13, + ACTIONS(4345), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189977,7 +193802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4041), 29, + ACTIONS(4347), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189987,7 +193812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190007,165 +193831,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66161] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, - anon_sym_AMP_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, - anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [67007] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4350), 2, + ACTIONS(4385), 4, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4309), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66270] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4311), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, anon_sym_PERCENT, - ACTIONS(5143), 1, anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4352), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5149), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5151), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66379] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67060] = 4, + ACTIONS(5332), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4399), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190179,7 +193900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 29, + ACTIONS(4401), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190188,7 +193909,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190209,41 +193929,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66430] = 7, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_QMARK_DOT, + [67113] = 4, + ACTIONS(5334), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3418), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(4405), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 24, + ACTIONS(4407), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -190261,410 +193978,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66489] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + [67166] = 19, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, - anon_sym_AMP_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, - anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(5336), 1, + anon_sym_RBRACE, + STATE(3097), 1, + sym_override_modifier, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5149), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5151), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66598] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, - anon_sym_AMP_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, - anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2307), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67249] = 10, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(2325), 1, + anon_sym_extends, + ACTIONS(2327), 1, + anon_sym_QMARK, + ACTIONS(4243), 1, + anon_sym_LBRACK, + ACTIONS(5093), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4246), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5067), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1674), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66707] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(1678), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, anon_sym_PERCENT, - ACTIONS(5143), 1, anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4374), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5149), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5151), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66816] = 32, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(5125), 1, - anon_sym_AMP_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, - anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [67314] = 19, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(702), 1, + anon_sym_RBRACE, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + STATE(3097), 1, + sym_override_modifier, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4376), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5149), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5151), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66925] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67397] = 6, ACTIONS(5125), 1, - anon_sym_AMP_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, anon_sym_AMP, - ACTIONS(5135), 1, - anon_sym_CARET, - ACTIONS(5137), 1, + ACTIONS(5127), 1, anon_sym_PIPE, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4053), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5149), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5151), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67034] = 3, + ACTIONS(5129), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4129), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 29, + ACTIONS(4131), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190693,36 +194212,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [67454] = 10, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4289), 1, + anon_sym_LBRACK, + ACTIONS(4295), 1, anon_sym_extends, - [67085] = 4, - ACTIONS(5083), 1, - anon_sym_AMP, + ACTIONS(4439), 1, + anon_sym_QMARK, + ACTIONS(5099), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 12, + ACTIONS(4292), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5063), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4283), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 29, - sym__automatic_semicolon, + ACTIONS(4287), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190742,12 +194267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67138] = 3, + [67519] = 4, + ACTIONS(1676), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 13, + ACTIONS(1674), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190761,7 +194287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4404), 29, + ACTIONS(1678), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190790,122 +194316,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67189] = 33, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, - anon_sym_AMP_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, - anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - ACTIONS(5222), 1, - anon_sym_SEMI, - ACTIONS(5224), 1, - sym__automatic_semicolon, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5149), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5151), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67300] = 12, - ACTIONS(1594), 1, + [67572] = 19, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4658), 1, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(4827), 1, + ACTIONS(5236), 1, anon_sym_STAR, - ACTIONS(4831), 1, - anon_sym_async, - ACTIONS(4872), 1, - anon_sym_abstract, + ACTIONS(5338), 1, + anon_sym_RBRACE, + STATE(3097), 1, + sym_override_modifier, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4833), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(4837), 2, + ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(2980), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3921), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 20, + ACTIONS(2307), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -190913,12 +194369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -190926,34 +194380,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67369] = 3, + [67655] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 13, + ACTIONS(4925), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4922), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4469), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4187), 29, - sym__automatic_semicolon, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190973,24 +194431,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67420] = 6, - ACTIONS(4408), 1, - anon_sym_extends, + [67712] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4878), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4881), 3, - anon_sym_GT, + ACTIONS(4856), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4774), 10, + ACTIONS(4853), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4429), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4757), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -190998,14 +194459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 26, - sym__automatic_semicolon, + ACTIONS(4759), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191025,36 +194482,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67477] = 4, - ACTIONS(4460), 1, - anon_sym_extends, + [67769] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4450), 13, + ACTIONS(4540), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4537), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4031), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 28, - sym__automatic_semicolon, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191074,25 +194533,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67530] = 3, + [67826] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 13, + ACTIONS(4395), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4408), 29, + ACTIONS(4397), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191121,90 +194584,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67581] = 33, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_satisfies, - ACTIONS(5125), 1, - anon_sym_AMP_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, - anon_sym_GT_GT, - ACTIONS(5133), 1, - anon_sym_AMP, - ACTIONS(5135), 1, - anon_sym_CARET, - ACTIONS(5137), 1, - anon_sym_PIPE, - ACTIONS(5141), 1, - anon_sym_PERCENT, - ACTIONS(5143), 1, - anon_sym_STAR_STAR, - ACTIONS(5145), 1, - anon_sym_LT, - ACTIONS(5153), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, - sym__ternary_qmark, - ACTIONS(5226), 1, - anon_sym_SEMI, - ACTIONS(5228), 1, - sym__automatic_semicolon, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [67883] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(4483), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5121), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5139), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, + ACTIONS(4485), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5147), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67692] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [67934] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(4053), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191218,7 +194650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4412), 29, + ACTIONS(4055), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191248,29 +194680,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67743] = 6, - ACTIONS(5083), 1, - anon_sym_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE, - ACTIONS(5087), 1, - anon_sym_extends, + [67985] = 4, + ACTIONS(3478), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 11, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4422), 28, + ACTIONS(3384), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191299,107 +194729,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67800] = 32, + [68038] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4061), 1, + ACTIONS(4069), 1, anon_sym_AMP_AMP, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_GT_GT, - ACTIONS(4069), 1, + ACTIONS(4077), 1, anon_sym_AMP, - ACTIONS(4071), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4085), 1, anon_sym_PERCENT, - ACTIONS(4079), 1, + ACTIONS(4087), 1, anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, ACTIONS(4089), 1, + anon_sym_LT, + ACTIONS(4097), 1, anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4095), 1, + ACTIONS(4103), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4057), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4057), 2, + ACTIONS(4065), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, + ACTIONS(4075), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4075), 2, + ACTIONS(4083), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, + ACTIONS(4095), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4672), 2, + ACTIONS(5340), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4083), 3, + ACTIONS(4091), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67909] = 6, - ACTIONS(4344), 1, - anon_sym_extends, - ACTIONS(5098), 1, - anon_sym_LBRACK, + [68147] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4424), 11, + ACTIONS(4053), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4426), 27, + ACTIONS(4055), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191408,6 +194833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191427,104 +194853,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67966] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4061), 1, - anon_sym_AMP_AMP, - ACTIONS(4063), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4065), 1, - anon_sym_GT_GT, - ACTIONS(4069), 1, - anon_sym_AMP, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_PERCENT, - ACTIONS(4079), 1, - anon_sym_STAR_STAR, - ACTIONS(4081), 1, - anon_sym_LT, - ACTIONS(4089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4095), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_extends, + [68198] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4049), 2, + ACTIONS(4297), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4057), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4067), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4075), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4085), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4560), 2, + ACTIONS(4299), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4083), 3, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68075] = 4, - ACTIONS(5230), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [68249] = 6, + ACTIONS(4417), 1, anon_sym_extends, + ACTIONS(5332), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 13, + ACTIONS(4415), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4411), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4430), 28, + ACTIONS(4413), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191533,7 +194934,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191553,13 +194953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68128] = 4, - ACTIONS(5098), 1, - anon_sym_LBRACK, + [68306] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4434), 13, + ACTIONS(4259), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191573,7 +194971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4436), 28, + ACTIONS(4261), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191582,6 +194980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191602,18 +195001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [68181] = 6, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(1730), 1, - sym__automatic_semicolon, + [68357] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1720), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1724), 13, + ACTIONS(4053), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191627,11 +195019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 25, + ACTIONS(4055), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -191653,11 +195048,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68238] = 3, + anon_sym_extends, + [68408] = 14, + ACTIONS(170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(3187), 1, + anon_sym_LBRACE, + ACTIONS(3709), 1, + anon_sym_LBRACK, + ACTIONS(5344), 1, + anon_sym_COMMA, + ACTIONS(5346), 1, + anon_sym_RBRACE, + STATE(5650), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5348), 2, + sym_number, + sym_private_property_identifier, + STATE(5647), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7416), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(7437), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5342), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [68481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4458), 13, + ACTIONS(4201), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191671,7 +195126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4460), 29, + ACTIONS(4203), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191701,11 +195156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [68289] = 3, + [68532] = 4, + ACTIONS(4638), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4462), 13, + ACTIONS(4636), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191719,7 +195176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4464), 29, + ACTIONS(4640), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191748,12 +195205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [68340] = 3, + [68585] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4466), 13, + ACTIONS(2323), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191767,7 +195223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4468), 29, + ACTIONS(2321), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191797,11 +195253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [68391] = 3, + [68636] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 13, + ACTIONS(4479), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191815,7 +195271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4334), 29, + ACTIONS(4481), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191845,89 +195301,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [68442] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - STATE(2719), 1, - sym_override_modifier, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [68525] = 3, + [68687] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 13, + ACTIONS(4419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2335), 29, + ACTIONS(4421), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191956,20 +195352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [68576] = 4, - ACTIONS(1726), 1, - anon_sym_EQ, + [68744] = 4, + ACTIONS(5125), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1724), 13, + ACTIONS(4305), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -191977,7 +195371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 28, + ACTIONS(4307), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192006,97 +195400,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68629] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - STATE(2719), 1, - sym_override_modifier, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [68712] = 13, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5232), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_extends, + [68797] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4170), 12, + ACTIONS(4317), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192107,13 +195416,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 18, + ACTIONS(4319), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -192127,55 +195444,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [68783] = 16, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(4574), 1, anon_sym_satisfies, - ACTIONS(5235), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + anon_sym_extends, + [68848] = 7, + ACTIONS(3438), 1, + anon_sym_DOT, + ACTIONS(3440), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4199), 11, + ACTIONS(3422), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3418), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3380), 11, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 16, - sym__automatic_semicolon, + ACTIONS(3384), 20, sym__ternary_qmark, - anon_sym_SEMI, + anon_sym_as, + anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -192189,107 +195497,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68860] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68907] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4574), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(5125), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5127), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, + ACTIONS(5208), 1, anon_sym_GT_GT, - ACTIONS(5133), 1, + ACTIONS(5212), 1, anon_sym_AMP, - ACTIONS(5135), 1, + ACTIONS(5214), 1, anon_sym_CARET, - ACTIONS(5137), 1, + ACTIONS(5216), 1, anon_sym_PIPE, - ACTIONS(5141), 1, + ACTIONS(5220), 1, anon_sym_PERCENT, - ACTIONS(5143), 1, + ACTIONS(5222), 1, anon_sym_STAR_STAR, - ACTIONS(5145), 1, + ACTIONS(5224), 1, anon_sym_LT, - ACTIONS(5153), 1, + ACTIONS(5232), 1, anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, + ACTIONS(5234), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4210), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4545), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(5200), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5121), 2, + ACTIONS(5202), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, + ACTIONS(5210), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5139), 2, + ACTIONS(5218), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + ACTIONS(5228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, + ACTIONS(5230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + ACTIONS(5350), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(5147), 3, + ACTIONS(5226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68969] = 12, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5238), 1, - anon_sym_LT, - STATE(1812), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, + [69016] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 12, + ACTIONS(4279), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192300,13 +195593,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 20, + ACTIONS(4281), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -192322,142 +195623,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [69038] = 14, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5241), 1, - anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_async, - ACTIONS(5247), 1, - anon_sym_readonly, - STATE(2706), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5245), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5249), 2, - anon_sym_get, - anon_sym_set, - STATE(2971), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3607), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69111] = 12, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5241), 1, - anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_async, - ACTIONS(5253), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5249), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5251), 2, - sym_number, - sym_private_property_identifier, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3607), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69180] = 3, + anon_sym_extends, + [69067] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4454), 13, + ACTIONS(4205), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4456), 29, + ACTIONS(4207), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192486,23 +195677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [69231] = 7, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(4330), 1, + [69124] = 6, + ACTIONS(4469), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4691), 2, + ACTIONS(4922), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4694), 3, + ACTIONS(4925), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192513,10 +195701,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 25, + ACTIONS(3384), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, @@ -192539,70 +195728,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69290] = 14, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5255), 1, - anon_sym_STAR, - ACTIONS(5257), 1, - anon_sym_async, - ACTIONS(5261), 1, - anon_sym_readonly, - STATE(2715), 1, - sym_override_modifier, + [69181] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5259), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5263), 2, - anon_sym_get, - anon_sym_set, - STATE(3039), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(4457), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4459), 29, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69363] = 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [69232] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4476), 13, + ACTIONS(4205), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192616,7 +195794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4478), 29, + ACTIONS(4207), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192646,41 +195824,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [69414] = 9, - ACTIONS(4041), 1, - anon_sym_extends, - ACTIONS(4697), 1, - anon_sym_LBRACK, - ACTIONS(5269), 1, - anon_sym_RPAREN, + [69283] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5265), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5267), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3400), 11, + ACTIONS(4211), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(4213), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192700,960 +195871,787 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69477] = 32, - ACTIONS(825), 1, + anon_sym_extends, + [69334] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(5276), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, + ACTIONS(5208), 1, anon_sym_GT_GT, - ACTIONS(5284), 1, + ACTIONS(5212), 1, anon_sym_AMP, - ACTIONS(5286), 1, + ACTIONS(5214), 1, anon_sym_CARET, - ACTIONS(5288), 1, + ACTIONS(5216), 1, anon_sym_PIPE, - ACTIONS(5292), 1, + ACTIONS(5220), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, + ACTIONS(5222), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, + ACTIONS(5224), 1, anon_sym_LT, - ACTIONS(5304), 1, + ACTIONS(5232), 1, anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, + ACTIONS(5234), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1842), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4255), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5272), 2, + ACTIONS(5200), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5274), 2, + ACTIONS(5202), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, + ACTIONS(5210), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5290), 2, + ACTIONS(5218), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + ACTIONS(5228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, + ACTIONS(5230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + ACTIONS(5352), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(5298), 3, + ACTIONS(5226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69586] = 32, - ACTIONS(825), 1, + [69443] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(5276), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, + ACTIONS(5208), 1, anon_sym_GT_GT, - ACTIONS(5284), 1, + ACTIONS(5212), 1, anon_sym_AMP, - ACTIONS(5286), 1, + ACTIONS(5214), 1, anon_sym_CARET, - ACTIONS(5288), 1, + ACTIONS(5216), 1, anon_sym_PIPE, - ACTIONS(5292), 1, + ACTIONS(5220), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, + ACTIONS(5222), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, + ACTIONS(5224), 1, anon_sym_LT, - ACTIONS(5304), 1, + ACTIONS(5232), 1, anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, + ACTIONS(5234), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1842), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4145), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4257), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5272), 2, + ACTIONS(5200), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5274), 2, + ACTIONS(5202), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, + ACTIONS(5210), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5290), 2, + ACTIONS(5218), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + ACTIONS(5228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, + ACTIONS(5230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(5298), 3, + ACTIONS(5226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69695] = 32, - ACTIONS(825), 1, + [69552] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(5276), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, + ACTIONS(5208), 1, anon_sym_GT_GT, - ACTIONS(5284), 1, + ACTIONS(5212), 1, anon_sym_AMP, - ACTIONS(5286), 1, + ACTIONS(5214), 1, anon_sym_CARET, - ACTIONS(5288), 1, + ACTIONS(5216), 1, anon_sym_PIPE, - ACTIONS(5292), 1, + ACTIONS(5220), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, + ACTIONS(5222), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, + ACTIONS(5224), 1, anon_sym_LT, - ACTIONS(5304), 1, + ACTIONS(5232), 1, anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, + ACTIONS(5234), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1842), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4143), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4283), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5272), 2, + ACTIONS(5200), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5274), 2, + ACTIONS(5202), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, + ACTIONS(5210), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5290), 2, + ACTIONS(5218), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + ACTIONS(5228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, + ACTIONS(5230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(5298), 3, + ACTIONS(5226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69804] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [69661] = 4, + ACTIONS(5332), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4415), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4059), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4417), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [69714] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4297), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5272), 2, + ACTIONS(4415), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69913] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4417), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [69765] = 6, + ACTIONS(4031), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4299), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5272), 2, + ACTIONS(4537), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4540), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, + ACTIONS(3384), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70022] = 19, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_satisfies, + [69822] = 4, + ACTIONS(5354), 1, anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(4461), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 14, + ACTIONS(4463), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [70105] = 14, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5308), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [69875] = 7, + ACTIONS(3480), 1, + anon_sym_EQ, + ACTIONS(4469), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 12, + ACTIONS(4922), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4925), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 17, + ACTIONS(3384), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [70178] = 26, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, + anon_sym_satisfies, + [69934] = 6, + ACTIONS(5125), 1, anon_sym_AMP, - ACTIONS(5286), 1, - anon_sym_CARET, - ACTIONS(5288), 1, + ACTIONS(5127), 1, anon_sym_PIPE, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + ACTIONS(5129), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(4215), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 8, + ACTIONS(4217), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [70275] = 27, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69991] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(4219), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 7, + ACTIONS(4221), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [70374] = 17, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5292), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5308), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [70042] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(4423), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5290), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 16, + ACTIONS(4425), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [70453] = 23, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [70093] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(4321), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 9, + ACTIONS(4323), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [70544] = 24, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5292), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4307), 2, - anon_sym_BANG, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [70144] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, anon_sym_PIPE, - ACTIONS(5272), 2, + ACTIONS(5129), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4491), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 9, + ACTIONS(4493), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [70637] = 25, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70201] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5272), 2, + ACTIONS(4223), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 8, + ACTIONS(4225), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [70732] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5292), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5308), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [70252] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(4029), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -193662,61 +196660,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 16, + ACTIONS(4031), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [70809] = 17, + anon_sym_extends, + [70303] = 13, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5308), 1, + ACTIONS(5356), 1, anon_sym_LT, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4307), 11, + ACTIONS(4263), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -193727,8 +196733,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 15, + ACTIONS(4265), 18, sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, anon_sym_COLON, anon_sym_AMP_AMP, @@ -193737,772 +196744,435 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70888] = 21, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_satisfies, + [70374] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(4329), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4307), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 11, + ACTIONS(4331), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [70975] = 28, - ACTIONS(825), 1, + anon_sym_extends, + [70425] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4307), 1, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(5276), 1, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, + ACTIONS(5208), 1, anon_sym_GT_GT, - ACTIONS(5284), 1, + ACTIONS(5212), 1, anon_sym_AMP, - ACTIONS(5286), 1, + ACTIONS(5214), 1, anon_sym_CARET, - ACTIONS(5288), 1, + ACTIONS(5216), 1, anon_sym_PIPE, - ACTIONS(5292), 1, + ACTIONS(5220), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, + ACTIONS(5222), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, + ACTIONS(5224), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(5232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5234), 1, + sym__ternary_qmark, + STATE(1842), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4061), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(5200), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5274), 2, + ACTIONS(5202), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, + ACTIONS(5210), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5290), 2, + ACTIONS(5218), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + ACTIONS(5228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, + ACTIONS(5230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(5298), 3, + ACTIONS(5226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [71076] = 32, + [70534] = 16, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(5276), 1, - anon_sym_AMP_AMP, - ACTIONS(5278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, - anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, + ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4350), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5272), 2, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4508), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71185] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, + ACTIONS(4510), 16, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, - ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_instanceof, + [70611] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4352), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5272), 2, + ACTIONS(4227), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71294] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4229), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4370), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5272), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5300), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5302), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71403] = 32, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5276), 1, - anon_sym_AMP_AMP, - ACTIONS(5278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, - anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_extends, + [70662] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4372), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5272), 2, + ACTIONS(4231), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71512] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4233), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4374), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5272), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5300), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5302), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71621] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [70713] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(5276), 1, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(5284), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(5286), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(5288), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(5292), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, + ACTIONS(5185), 1, anon_sym_LT, - ACTIONS(5304), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4376), 2, + ACTIONS(4504), 2, anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(5272), 2, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5274), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5290), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5298), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71730] = 32, + [70822] = 12, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, - anon_sym_AMP_AMP, - ACTIONS(5278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, - anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, + ACTIONS(5362), 1, anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4053), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4495), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71839] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4497), 20, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, - ACTIONS(5278), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4388), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5272), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5300), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5302), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71948] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [70891] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4480), 13, + ACTIONS(4379), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194516,7 +197186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4482), 29, + ACTIONS(4381), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194546,68 +197216,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71999] = 12, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, + [70942] = 4, + ACTIONS(4285), 1, anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3959), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4636), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4638), 2, - anon_sym_get, - anon_sym_set, - STATE(3770), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [72068] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4484), 13, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194621,7 +197236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4486), 29, + ACTIONS(4287), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194650,131 +197265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [72119] = 13, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4247), 1, - anon_sym_async, - ACTIONS(4658), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3959), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4249), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4253), 2, - anon_sym_get, - anon_sym_set, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [72190] = 14, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - anon_sym_STAR, - ACTIONS(5313), 1, - anon_sym_async, - ACTIONS(5317), 1, - anon_sym_readonly, - STATE(2710), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5315), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5319), 2, - anon_sym_get, - anon_sym_set, - STATE(3074), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [72263] = 4, - ACTIONS(4456), 1, - anon_sym_extends, + [70995] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4450), 13, + ACTIONS(4227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194788,7 +197283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 28, + ACTIONS(4229), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194817,33 +197312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72316] = 13, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5321), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_extends, + [71046] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4170), 12, + ACTIONS(4231), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194854,13 +197328,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 18, + ACTIONS(4233), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -194874,41 +197356,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [72387] = 16, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5324), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_extends, + [71097] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4199), 11, + ACTIONS(4467), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -194917,12 +197376,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 16, + ACTIONS(4469), 29, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -194936,107 +197404,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72464] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, - anon_sym_AMP_AMP, - ACTIONS(5278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, - anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4210), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5272), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5300), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72573] = 12, - ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5327), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [71148] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 12, + ACTIONS(4235), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195047,13 +197424,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 20, + ACTIONS(4237), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -195069,12 +197454,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [72642] = 3, + anon_sym_extends, + [71199] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4488), 13, + ACTIONS(4239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195088,7 +197475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4490), 29, + ACTIONS(4241), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195118,88 +197505,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72693] = 32, + [71250] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4551), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4574), 1, + ACTIONS(4579), 1, anon_sym_satisfies, - ACTIONS(5125), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5127), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, + ACTIONS(5208), 1, anon_sym_GT_GT, - ACTIONS(5133), 1, + ACTIONS(5212), 1, anon_sym_AMP, - ACTIONS(5135), 1, + ACTIONS(5214), 1, anon_sym_CARET, - ACTIONS(5137), 1, + ACTIONS(5216), 1, anon_sym_PIPE, - ACTIONS(5141), 1, + ACTIONS(5220), 1, anon_sym_PERCENT, - ACTIONS(5143), 1, + ACTIONS(5222), 1, anon_sym_STAR_STAR, - ACTIONS(5145), 1, + ACTIONS(5224), 1, anon_sym_LT, - ACTIONS(5153), 1, + ACTIONS(5232), 1, anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, + ACTIONS(5234), 1, sym__ternary_qmark, - STATE(1812), 1, + STATE(1842), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4199), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4854), 2, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71359] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5216), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + ACTIONS(5232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5234), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4209), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5119), 2, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5121), 2, + ACTIONS(5202), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, + ACTIONS(5210), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5139), 2, + ACTIONS(5218), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + ACTIONS(5228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, + ACTIONS(5230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(5147), 3, + ACTIONS(5226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72802] = 3, + [71468] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4492), 13, + ACTIONS(4427), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195213,7 +197677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4494), 29, + ACTIONS(4429), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195243,11 +197707,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72853] = 3, + [71519] = 4, + ACTIONS(4385), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4496), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195261,7 +197727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4498), 29, + ACTIONS(4311), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195290,60 +197756,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [72904] = 3, + [71572] = 19, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4500), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4502), 29, + ACTIONS(4249), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [72955] = 3, + [71655] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [71708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4504), 13, + ACTIONS(4375), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195357,7 +197887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4506), 29, + ACTIONS(4377), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195387,13 +197917,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73006] = 4, - ACTIONS(4508), 1, + [71759] = 14, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5365), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195404,43 +197956,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4099), 28, + ACTIONS(4249), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73059] = 3, + [71832] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3596), 13, + ACTIONS(4371), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195454,7 +197994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3446), 29, + ACTIONS(4373), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195484,11 +198024,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73110] = 3, + [71883] = 14, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5368), 1, + anon_sym_STAR, + ACTIONS(5370), 1, + anon_sym_async, + ACTIONS(5374), 1, + anon_sym_readonly, + STATE(3103), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5372), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5376), 2, + anon_sym_get, + anon_sym_set, + STATE(3498), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [71956] = 14, + ACTIONS(170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(3187), 1, + anon_sym_LBRACE, + ACTIONS(3709), 1, + anon_sym_LBRACK, + ACTIONS(5344), 1, + anon_sym_COMMA, + ACTIONS(5380), 1, + anon_sym_RBRACE, + STATE(5877), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5348), 2, + sym_number, + sym_private_property_identifier, + STATE(5883), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7416), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(7437), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5378), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3598), 13, + ACTIONS(4333), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195502,7 +198160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3382), 29, + ACTIONS(4335), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195532,83 +198190,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73161] = 4, - ACTIONS(4101), 1, + [72080] = 26, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, anon_sym_DOT, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5216), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5202), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4099), 28, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73214] = 3, + [72177] = 6, + ACTIONS(4922), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4469), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4925), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3380), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 29, - sym__automatic_semicolon, + ACTIONS(3384), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195628,30 +198312,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73265] = 6, - ACTIONS(5083), 1, + [72234] = 27, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, anon_sym_AMP, - ACTIONS(5085), 1, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5216), 1, anon_sym_PIPE, - ACTIONS(5087), 1, - anon_sym_extends, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [72333] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 11, + ACTIONS(4453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 28, + ACTIONS(4455), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195680,11 +198431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73322] = 3, + anon_sym_extends, + [72384] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 13, + ACTIONS(4363), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195698,7 +198450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4116), 29, + ACTIONS(4365), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195728,59 +198480,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73373] = 3, + [72435] = 17, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5365), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4118), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4120), 29, + ACTIONS(4249), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_satisfies, + [72514] = 23, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_extends, - [73424] = 3, + [72605] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4122), 13, + ACTIONS(4151), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195794,7 +198628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4124), 29, + ACTIONS(4153), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195824,12 +198658,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73475] = 3, + [72656] = 25, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4251), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [72751] = 16, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5365), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4126), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -195838,47 +198770,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4128), 29, + ACTIONS(4249), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_satisfies, + [72828] = 17, + ACTIONS(89), 1, anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, anon_sym_satisfies, - anon_sym_extends, - [73526] = 3, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5365), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4130), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -195887,51 +198833,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4132), 29, + ACTIONS(4249), 15, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [72907] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5216), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + ACTIONS(5232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5234), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4475), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73016] = 21, + ACTIONS(89), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [73577] = 4, - ACTIONS(5083), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4251), 5, + anon_sym_BANG, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [73103] = 19, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(727), 1, + anon_sym_RBRACE, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + STATE(3097), 1, + sym_override_modifier, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73186] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 12, + ACTIONS(4337), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -195939,7 +199076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4136), 29, + ACTIONS(4339), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195969,59 +199106,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73630] = 3, + [73237] = 28, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5216), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 13, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5202), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4140), 29, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 6, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [73338] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3975), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4601), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4603), 2, + anon_sym_get, + anon_sym_set, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73407] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(5204), 1, anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, anon_sym_CARET, + ACTIONS(5216), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, anon_sym_PERCENT, + ACTIONS(5222), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5224), 1, + anon_sym_LT, + ACTIONS(5232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5234), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4502), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [73516] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, anon_sym_satisfies, - anon_sym_extends, - [73681] = 3, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5216), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + ACTIONS(5232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5234), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73625] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4470), 13, + ACTIONS(4303), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196035,7 +199408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4472), 29, + ACTIONS(4301), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196065,11 +199438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73732] = 3, + [73676] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2321), 13, + ACTIONS(4367), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196083,7 +199456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2319), 29, + ACTIONS(4369), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196113,25 +199486,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73783] = 3, + [73727] = 6, + ACTIONS(5125), 1, + anon_sym_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4511), 13, + ACTIONS(4341), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4513), 29, + ACTIONS(4343), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196160,60 +199537,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73834] = 3, + [73784] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5216), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + ACTIONS(5232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5234), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 13, + ACTIONS(4167), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5202), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73893] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5208), 1, anon_sym_GT_GT, + ACTIONS(5212), 1, anon_sym_AMP, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5216), 1, anon_sym_PIPE, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + ACTIONS(5232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5234), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4177), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4148), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74002] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4519), 1, anon_sym_LBRACK, + ACTIONS(4521), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(5204), 1, anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, anon_sym_CARET, + ACTIONS(5216), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, anon_sym_PERCENT, + ACTIONS(5222), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5224), 1, + anon_sym_LT, + ACTIONS(5232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5234), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4270), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [74111] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5216), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + ACTIONS(5232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5234), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4195), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74220] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, anon_sym_satisfies, - anon_sym_extends, - [73885] = 3, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5216), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + ACTIONS(5232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5234), 1, + sym__ternary_qmark, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4197), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74329] = 7, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4607), 1, + anon_sym_QMARK_DOT, + STATE(5898), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 13, + ACTIONS(1875), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196227,7 +199948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4152), 29, + ACTIONS(1877), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196236,9 +199957,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -196256,12 +199974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73936] = 3, + [74388] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4341), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196275,7 +199992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 29, + ACTIONS(4343), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196305,11 +200022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73987] = 3, + [74439] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 13, + ACTIONS(4235), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196323,7 +200040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4152), 29, + ACTIONS(4237), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196353,11 +200070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74038] = 3, + [74490] = 4, + ACTIONS(4349), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4345), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196371,7 +200090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 29, + ACTIONS(4347), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196381,7 +200100,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -196401,11 +200119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74089] = 3, + [74543] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4158), 13, + ACTIONS(3605), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196419,7 +200137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4160), 29, + ACTIONS(3378), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196449,13 +200167,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74140] = 4, - ACTIONS(4440), 1, + [74594] = 13, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4113), 1, anon_sym_EQ, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4605), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3975), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [74665] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4438), 13, + ACTIONS(4359), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196469,7 +200243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 28, + ACTIONS(4361), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196498,11 +200272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74193] = 3, + anon_sym_extends, + [74716] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 13, + ACTIONS(4355), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196516,7 +200291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4164), 29, + ACTIONS(4357), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196546,11 +200321,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74244] = 3, + [74767] = 33, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_as, + ACTIONS(4555), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_satisfies, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5208), 1, + anon_sym_GT_GT, + ACTIONS(5212), 1, + anon_sym_AMP, + ACTIONS(5214), 1, + anon_sym_CARET, + ACTIONS(5216), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, + anon_sym_PERCENT, + ACTIONS(5222), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_LT, + ACTIONS(5232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5234), 1, + sym__ternary_qmark, + ACTIONS(5382), 1, + anon_sym_SEMI, + ACTIONS(5384), 1, + sym__automatic_semicolon, + STATE(1842), 1, + sym_type_arguments, + STATE(5898), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4535), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5200), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5202), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5210), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5218), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2246), 2, + sym_template_string, + sym_arguments, + ACTIONS(5226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74878] = 6, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(1680), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4158), 13, + ACTIONS(1670), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1674), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196564,14 +200424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4160), 29, - sym__automatic_semicolon, + ACTIONS(1678), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -196593,12 +200450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74295] = 3, + [74935] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 13, + ACTIONS(4239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196612,7 +200468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4164), 29, + ACTIONS(4241), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196642,11 +200498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74346] = 3, + [74986] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 13, + ACTIONS(4253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196660,7 +200516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4168), 29, + ACTIONS(4255), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196690,11 +200546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74397] = 3, + [75037] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 13, + ACTIONS(4259), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196708,7 +200564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4179), 29, + ACTIONS(4261), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196738,11 +200594,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74448] = 3, + [75088] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 13, + ACTIONS(4471), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196756,7 +200612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4168), 29, + ACTIONS(4473), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196786,11 +200642,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74499] = 3, + [75139] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 13, + ACTIONS(5386), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5388), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196804,15 +200667,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4179), 29, - sym__automatic_semicolon, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -196833,12 +200691,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74550] = 3, + [75193] = 5, + ACTIONS(1752), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 13, + ACTIONS(1744), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1748), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196852,14 +200714,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4183), 29, - sym__automatic_semicolon, + ACTIONS(1750), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -196881,89 +200740,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74601] = 32, - ACTIONS(89), 1, + [75247] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(4525), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4562), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4574), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(5125), 1, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(5127), 1, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - ACTIONS(5129), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(5133), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(5135), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(5137), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(5141), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(5143), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(5145), 1, + ACTIONS(5185), 1, anon_sym_LT, - ACTIONS(5153), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5155), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1812), 1, + ACTIONS(5390), 1, + anon_sym_COLON, + STATE(1448), 1, sym_type_arguments, - STATE(4772), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4388), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75355] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5368), 1, + anon_sym_STAR, + ACTIONS(5370), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5372), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5376), 2, + anon_sym_get, + anon_sym_set, + STATE(3498), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4545), 2, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75421] = 27, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(5396), 1, + anon_sym_AMP_AMP, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, + anon_sym_PERCENT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5414), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5119), 2, + ACTIONS(5392), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5121), 2, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5131), 2, + ACTIONS(5400), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5139), 2, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5149), 2, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 2, + ACTIONS(5420), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2133), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5147), 3, + ACTIONS(5416), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74710] = 3, + ACTIONS(4249), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [75519] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4800), 13, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196977,7 +200960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 28, + ACTIONS(3384), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197006,18 +200989,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74760] = 5, + [75569] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5330), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5332), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3400), 13, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197031,10 +201007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(4950), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197055,18 +201036,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74814] = 5, + [75619] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5330), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5332), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3400), 13, + ACTIONS(4898), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197080,10 +201054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(4900), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197104,18 +201083,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74868] = 4, - ACTIONS(5334), 1, - sym_regex_flags, + [75669] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5103), 17, + ACTIONS(4935), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -197126,13 +201101,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(5105), 23, + ACTIONS(4937), 28, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -197149,14 +201125,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74920] = 3, + anon_sym_satisfies, + [75719] = 4, + ACTIONS(3480), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4723), 13, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197170,14 +201150,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4725), 28, + ACTIONS(3384), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -197199,38 +201178,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74970] = 7, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(4691), 1, - anon_sym_LBRACK, + [75771] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4694), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(1875), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 24, + ACTIONS(1877), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197250,18 +201225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75028] = 5, + [75821] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5330), 2, + ACTIONS(5422), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5332), 3, + ACTIONS(5424), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3400), 13, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197275,7 +201250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -197299,88 +201274,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75082] = 33, + [75875] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3975), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4601), 2, + sym_number, + sym_private_property_identifier, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75939] = 26, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4614), 1, - anon_sym_of, - ACTIONS(5338), 1, - anon_sym_in, - ACTIONS(5341), 1, - anon_sym_GT, - ACTIONS(5343), 1, - anon_sym_AMP_AMP, - ACTIONS(5345), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(5398), 1, anon_sym_GT_GT, - ACTIONS(5351), 1, + ACTIONS(5402), 1, anon_sym_AMP, - ACTIONS(5353), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5355), 1, + ACTIONS(5406), 1, anon_sym_PIPE, - ACTIONS(5359), 1, + ACTIONS(5410), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, + ACTIONS(5414), 1, anon_sym_LT, - ACTIONS(5371), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, - sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(5392), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5349), 2, + ACTIONS(5394), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5400), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5357), 2, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, + ACTIONS(5420), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5365), 3, + ACTIONS(5416), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75192] = 3, + ACTIONS(4249), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [76035] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4735), 13, + ACTIONS(4931), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197394,7 +201416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4737), 28, + ACTIONS(4933), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197423,11 +201445,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75242] = 3, + [76085] = 14, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5426), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [76157] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4450), 13, + ACTIONS(4939), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197441,7 +201521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 28, + ACTIONS(4941), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197470,36 +201550,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75292] = 5, + [76207] = 19, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5410), 1, + anon_sym_PERCENT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5414), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5191), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5193), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3400), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [76289] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4209), 1, + anon_sym_RBRACK, + ACTIONS(5396), 1, + anon_sym_AMP_AMP, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, + anon_sym_PERCENT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5433), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76397] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4199), 1, + anon_sym_RBRACK, + ACTIONS(5396), 1, + anon_sym_AMP_AMP, + ACTIONS(5398), 1, anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, + anon_sym_PERCENT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5433), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5394), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76505] = 8, + ACTIONS(3478), 1, + anon_sym_EQ, + ACTIONS(3536), 1, + anon_sym_COLON, + ACTIONS(4922), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4925), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4469), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3380), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197519,16 +201817,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75346] = 5, - ACTIONS(1833), 1, - sym__automatic_semicolon, + [76565] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1825), 2, + ACTIONS(1871), 2, anon_sym_else, anon_sym_while, - ACTIONS(1829), 13, + ACTIONS(1875), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197542,7 +201838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1831), 25, + ACTIONS(1877), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -197568,44 +201865,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75400] = 10, - ACTIONS(2275), 1, + [76617] = 11, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5157), 1, + ACTIONS(5315), 1, anon_sym_STAR, + ACTIONS(5317), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 2, + ACTIONS(5319), 2, sym_number, sym_private_property_identifier, - ACTIONS(5377), 2, + ACTIONS(5323), 2, anon_sym_get, anon_sym_set, - STATE(3731), 3, + STATE(3534), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -197622,45 +201920,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75464] = 11, - ACTIONS(1594), 1, + [76683] = 10, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5157), 1, + ACTIONS(5315), 1, anon_sym_STAR, - ACTIONS(5159), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5161), 2, + ACTIONS(5435), 2, sym_number, sym_private_property_identifier, - ACTIONS(5165), 2, + ACTIONS(5437), 2, anon_sym_get, anon_sym_set, - STATE(2964), 3, + STATE(4343), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -197677,29 +201974,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75530] = 10, - ACTIONS(2275), 1, + [76747] = 12, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5379), 1, + ACTIONS(5439), 1, anon_sym_STAR, + ACTIONS(5441), 1, + anon_sym_async, + ACTIONS(5445), 1, + anon_sym_get, + ACTIONS(5447), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5381), 2, + ACTIONS(5443), 2, sym_number, sym_private_property_identifier, - ACTIONS(5383), 2, - anon_sym_get, - anon_sym_set, - STATE(3854), 3, + STATE(3412), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -197709,12 +202009,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 21, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -197731,16 +202030,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75594] = 5, - ACTIONS(1819), 1, - sym__automatic_semicolon, + [76815] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1815), 13, + ACTIONS(5253), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5327), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197754,12 +202055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 25, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197780,65 +202079,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75648] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5167), 1, - anon_sym_STAR, + [76869] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5385), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5387), 2, - anon_sym_get, - anon_sym_set, - STATE(3824), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, + ACTIONS(5422), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5424), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(3380), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75712] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76923] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4842), 13, + ACTIONS(5422), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5424), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197852,15 +202153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4844), 28, - sym__automatic_semicolon, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197881,11 +202177,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75762] = 3, + [76977] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4846), 13, + ACTIONS(1891), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1895), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197899,15 +202201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4848), 28, - sym__automatic_semicolon, + ACTIONS(1897), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197928,22 +202225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75812] = 7, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + [77029] = 7, + ACTIONS(5449), 1, anon_sym_LPAREN, + ACTIONS(5452), 1, + anon_sym_COLON, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5457), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1626), 2, - sym_template_string, - sym_arguments, - ACTIONS(5389), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4035), 13, + ACTIONS(3380), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197954,12 +202248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4037), 21, + ACTIONS(3384), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197978,66 +202274,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [75870] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, - anon_sym_STAR, + [77087] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5391), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5393), 2, - anon_sym_get, - anon_sym_set, - STATE(3734), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(1881), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75934] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4856), 13, + ACTIONS(1885), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198051,15 +202300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4858), 28, - sym__automatic_semicolon, + ACTIONS(1887), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198080,41 +202324,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75984] = 11, - ACTIONS(1594), 1, + [77139] = 11, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4658), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(5262), 1, anon_sym_STAR, - ACTIONS(5183), 1, + ACTIONS(5264), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5185), 2, + ACTIONS(5266), 2, sym_number, sym_private_property_identifier, - ACTIONS(5189), 2, + ACTIONS(5270), 2, anon_sym_get, anon_sym_set, - STATE(3057), 3, + STATE(3431), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -198135,34 +202379,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76050] = 3, + [77205] = 8, + ACTIONS(3452), 1, + anon_sym_EQ, + ACTIONS(4467), 1, + anon_sym_QMARK, + ACTIONS(4922), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4860), 13, + ACTIONS(4925), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4862), 28, - sym__automatic_semicolon, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198182,284 +202431,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76100] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4874), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4876), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [77265] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4061), 1, + anon_sym_RBRACK, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, anon_sym_PERCENT, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [76150] = 3, + ACTIONS(5433), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4660), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4255), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5420), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [77373] = 32, + ACTIONS(825), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [76200] = 6, - ACTIONS(4440), 1, - anon_sym_EQ, - ACTIONS(4985), 1, - anon_sym_of, - ACTIONS(5395), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4438), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4442), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, anon_sym_PERCENT, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [76256] = 6, - ACTIONS(4678), 1, - anon_sym_EQ, - ACTIONS(4987), 1, - anon_sym_of, - ACTIONS(5398), 1, - anon_sym_in, + ACTIONS(5433), 1, + sym__ternary_qmark, + ACTIONS(5459), 1, + anon_sym_RBRACK, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4676), 12, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, + anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4680), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(5420), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77481] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4143), 1, + anon_sym_RBRACK, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, anon_sym_PERCENT, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [76312] = 6, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(4989), 1, - anon_sym_of, - ACTIONS(5401), 1, - anon_sym_in, + ACTIONS(5433), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1724), 12, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, + anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5420), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [76368] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, + [77589] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5262), 1, anon_sym_STAR, - ACTIONS(5198), 1, - anon_sym_RBRACE, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5461), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(5463), 2, anon_sym_get, anon_sym_set, - STATE(3788), 3, + STATE(4203), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -198485,46 +202713,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76442] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - ACTIONS(5198), 1, - anon_sym_RBRACE, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, + [77653] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, + ACTIONS(5465), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5467), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(3380), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77707] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4657), 1, + anon_sym_RBRACE, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77815] = 12, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5469), 1, + anon_sym_STAR, + ACTIONS(5471), 1, + anon_sym_async, + ACTIONS(5475), 1, + anon_sym_get, + ACTIONS(5477), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5473), 2, + sym_number, + sym_private_property_identifier, + STATE(3433), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -198545,20 +202894,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76518] = 6, - ACTIONS(4330), 1, - anon_sym_extends, + [77883] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4145), 1, + anon_sym_RBRACK, + ACTIONS(5396), 1, + anon_sym_AMP_AMP, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, + anon_sym_PERCENT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5433), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5394), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77991] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1901), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1905), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1907), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [78043] = 5, + ACTIONS(5479), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1915), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1919), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1921), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [78097] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + ACTIONS(5481), 1, + anon_sym_COLON, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78205] = 7, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4694), 2, + ACTIONS(3422), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4691), 3, + ACTIONS(3418), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(3400), 11, + anon_sym_extends, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198570,14 +203171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 24, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -198595,20 +203194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76574] = 6, - ACTIONS(4408), 1, - anon_sym_extends, + [78263] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4881), 2, + ACTIONS(4303), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4878), 3, + ACTIONS(4301), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(4774), 11, + anon_sym_extends, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198620,7 +203218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 24, + ACTIONS(3384), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -198645,25 +203243,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76630] = 9, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3549), 1, - anon_sym_COLON, - ACTIONS(4330), 1, - anon_sym_extends, - ACTIONS(4691), 1, - anon_sym_LBRACK, + [78317] = 7, + ACTIONS(4427), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4694), 2, + ACTIONS(4429), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4856), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5404), 2, + ACTIONS(4853), 3, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3400), 11, + ACTIONS(4757), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198675,7 +203271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(4759), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -198698,11 +203294,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76692] = 3, + [78375] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4764), 13, + ACTIONS(1734), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198716,15 +203318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4766), 28, - sym__automatic_semicolon, + ACTIONS(1740), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198745,11 +203342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76742] = 3, + [78427] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4515), 13, + ACTIONS(1811), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198763,15 +203366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4370), 28, - sym__automatic_semicolon, + ACTIONS(1817), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198792,11 +203390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76792] = 3, + [78479] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4768), 13, + ACTIONS(1905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198810,7 +203408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4770), 28, + ACTIONS(1907), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198839,11 +203437,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76842] = 3, + [78529] = 5, + ACTIONS(5483), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4772), 13, + ACTIONS(1821), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198857,15 +203462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4372), 28, - sym__automatic_semicolon, + ACTIONS(1827), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198886,74 +203486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76892] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - ACTIONS(5200), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [76966] = 4, - ACTIONS(5334), 1, - sym_regex_flags, + [78583] = 5, + ACTIONS(5485), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5103), 16, + ACTIONS(1841), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1845), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -198966,15 +203511,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1847), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5105), 24, + [78637] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1871), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1875), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1877), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198990,49 +203578,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [77018] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, + anon_sym_satisfies, + [78689] = 12, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5487), 1, anon_sym_STAR, - ACTIONS(5200), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + ACTIONS(5489), 1, + anon_sym_async, + ACTIONS(5493), 1, + anon_sym_get, + ACTIONS(5495), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5491), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 20, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -199053,47 +203639,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77094] = 9, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3838), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, + [78757] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1993), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5501), 2, sym_number, sym_private_property_identifier, - ACTIONS(3743), 7, + ACTIONS(5503), 2, + anon_sym_get, + anon_sym_set, + STATE(3441), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1991), 23, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -199106,36 +203694,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77156] = 9, - ACTIONS(3737), 1, + [78823] = 15, + ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(3838), 1, + ACTIONS(725), 1, anon_sym_RBRACE, - ACTIONS(4243), 1, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4113), 1, anon_sym_EQ, - STATE(4671), 1, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(4672), 1, + STATE(5989), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2003), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(3743), 7, - sym__automatic_semicolon, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2001), 23, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -199145,8 +203741,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -199159,11 +203753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77218] = 3, + [78897] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4778), 13, + ACTIONS(1801), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1805), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199177,15 +203777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4374), 28, - sym__automatic_semicolon, + ACTIONS(1807), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -199206,11 +203801,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77268] = 3, + [78949] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + ACTIONS(5505), 1, + anon_sym_COLON, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79057] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4888), 13, + ACTIONS(1744), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1748), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199224,15 +203901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4890), 28, - sym__automatic_semicolon, + ACTIONS(1750), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -199253,11 +203925,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77318] = 3, + [79109] = 12, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5507), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4782), 13, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4495), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199268,19 +203959,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4784), 28, - sym__automatic_semicolon, + ACTIONS(4497), 19, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [79177] = 7, + ACTIONS(4467), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4469), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4925), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4922), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3380), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199300,40 +204032,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77368] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, + [79235] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5497), 1, anon_sym_STAR, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5510), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(5512), 2, anon_sym_get, anon_sym_set, - STATE(3788), 3, + STATE(4576), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -199359,29 +204086,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77442] = 10, - ACTIONS(2275), 1, + [79299] = 12, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5241), 1, + ACTIONS(5514), 1, anon_sym_STAR, + ACTIONS(5516), 1, + anon_sym_async, + ACTIONS(5520), 1, + anon_sym_get, + ACTIONS(5522), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5408), 2, + ACTIONS(5518), 2, sym_number, sym_private_property_identifier, - ACTIONS(5410), 2, - anon_sym_get, - anon_sym_set, - STATE(3757), 3, + STATE(3445), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -199391,12 +204121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 21, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -199413,27 +204142,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77506] = 16, + [79367] = 17, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5410), 1, + anon_sym_PERCENT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5426), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5408), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [79445] = 16, ACTIONS(241), 1, anon_sym_COMMA, + ACTIONS(725), 1, + anon_sym_RBRACE, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, ACTIONS(2309), 1, anon_sym_async, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5236), 1, anon_sym_STAR, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -199443,11 +204233,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3788), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -199473,151 +204263,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77582] = 7, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(4414), 1, + [79521] = 23, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5410), 1, + anon_sym_PERCENT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5414), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2331), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4417), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1724), 10, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 24, - sym__automatic_semicolon, + ACTIONS(5420), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [77640] = 7, - ACTIONS(4440), 1, - anon_sym_EQ, - ACTIONS(4444), 1, + [79611] = 24, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5410), 1, + anon_sym_PERCENT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5414), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4447), 3, - anon_sym_GT, - anon_sym_AMP, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4251), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4438), 10, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 24, - sym__automatic_semicolon, + ACTIONS(5420), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 8, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [79703] = 25, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, anon_sym_CARET, + ACTIONS(5410), 1, anon_sym_PERCENT, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5414), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4251), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5392), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5394), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4249), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [77698] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, + [79797] = 11, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5524), 1, anon_sym_STAR, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + ACTIONS(5526), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5528), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(5530), 2, anon_sym_get, anon_sym_set, - STATE(3788), 3, + STATE(3430), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 21, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -199634,39 +204522,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77772] = 8, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(4414), 1, - anon_sym_LBRACK, - ACTIONS(4989), 1, - anon_sym_COLON, + [79863] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2331), 3, + ACTIONS(5253), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5255), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1724), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 22, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199686,39 +204571,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77832] = 8, - ACTIONS(4440), 1, - anon_sym_EQ, - ACTIONS(4444), 1, - anon_sym_LBRACK, - ACTIONS(4985), 1, - anon_sym_COLON, + [79917] = 5, + ACTIONS(5532), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4447), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4392), 3, + ACTIONS(1861), 4, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4438), 11, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 22, + ACTIONS(1867), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199738,89 +204620,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77892] = 9, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + [79971] = 16, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5410), 1, + anon_sym_PERCENT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5426), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1993), 6, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [80047] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5534), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1991), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [77954] = 9, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2003), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5536), 2, sym_number, sym_private_property_identifier, - ACTIONS(3743), 7, + ACTIONS(5538), 2, + anon_sym_get, + anon_sym_set, + STATE(4482), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2001), 23, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -199830,8 +204722,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -199844,151 +204734,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78016] = 9, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3740), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + [80111] = 7, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1993), 6, + STATE(1707), 2, + sym_template_string, + sym_arguments, + ACTIONS(5540), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4033), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4035), 21, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3743), 7, - sym__automatic_semicolon, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [80169] = 17, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5426), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1991), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78078] = 9, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3740), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2003), 6, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 11, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3743), 7, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 14, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [80247] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1791), 5, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2001), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78140] = 11, - ACTIONS(1594), 1, + ACTIONS(1795), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1797), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [80299] = 10, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5379), 1, + ACTIONS(5303), 1, anon_sym_STAR, - ACTIONS(5412), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5414), 2, + ACTIONS(5542), 2, sym_number, sym_private_property_identifier, - ACTIONS(5416), 2, + ACTIONS(5544), 2, anon_sym_get, anon_sym_set, - STATE(2981), 3, + STATE(4239), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -200005,107 +204948,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78206] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, + [80363] = 21, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5410), 1, + anon_sym_PERCENT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5414), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5394), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4251), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [80449] = 11, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5303), 1, anon_sym_STAR, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + ACTIONS(5305), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5307), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, + ACTIONS(5311), 2, anon_sym_get, anon_sym_set, - STATE(3788), 3, + STATE(3451), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78282] = 9, - ACTIONS(3737), 1, + ACTIONS(3921), 9, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3817), 1, anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1993), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3743), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1991), 23, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -200118,89 +205068,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78344] = 9, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3817), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + [80515] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + ACTIONS(5546), 1, + anon_sym_COLON, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2003), 6, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80623] = 11, + ACTIONS(2275), 1, anon_sym_DQUOTE, + ACTIONS(2277), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2001), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5548), 1, + anon_sym_STAR, + ACTIONS(5552), 1, anon_sym_get, + ACTIONS(5554), 1, anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78406] = 9, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3829), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1993), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5550), 2, sym_number, sym_private_property_identifier, - ACTIONS(3743), 7, + STATE(4382), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1991), 23, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -200210,8 +205187,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -200224,36 +205199,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78468] = 9, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3829), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + [80689] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5556), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2003), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5558), 2, sym_number, sym_private_property_identifier, - ACTIONS(3743), 7, + ACTIONS(5560), 2, + anon_sym_get, + anon_sym_set, + STATE(4481), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2001), 23, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -200263,8 +205241,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -200277,58 +205253,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78530] = 3, + [80753] = 28, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(5396), 1, + anon_sym_AMP_AMP, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, + anon_sym_PERCENT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4788), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4790), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5420), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4249), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [78580] = 3, + [80853] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 13, + ACTIONS(4628), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200342,7 +205343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4798), 28, + ACTIONS(4630), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -200371,640 +205372,724 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78630] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4800), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4802), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [80903] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4502), 1, + anon_sym_RBRACK, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, anon_sym_PERCENT, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78680] = 3, + ACTIONS(5433), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4804), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4806), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5420), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81011] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78730] = 3, + ACTIONS(5195), 1, + sym__ternary_qmark, + ACTIONS(5562), 1, + anon_sym_COLON, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4800), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81119] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4506), 1, + anon_sym_RBRACK, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, anon_sym_PERCENT, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78780] = 3, + ACTIONS(5433), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4815), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4817), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5420), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81227] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4167), 1, + anon_sym_RBRACK, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, anon_sym_PERCENT, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78830] = 3, + ACTIONS(5433), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4819), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4821), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5420), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81335] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4177), 1, + anon_sym_RBRACK, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, anon_sym_PERCENT, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78880] = 7, - ACTIONS(5418), 1, - anon_sym_LPAREN, - ACTIONS(5421), 1, - anon_sym_COLON, - ACTIONS(5423), 1, + ACTIONS(5414), 1, anon_sym_LT, - ACTIONS(5426), 1, - anon_sym_QMARK, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5433), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 12, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(5420), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81443] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4270), 1, + anon_sym_RBRACK, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, anon_sym_PERCENT, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78938] = 5, - ACTIONS(1763), 1, - sym__automatic_semicolon, + ACTIONS(5433), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1759), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1761), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(5420), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81551] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4101), 1, anon_sym_satisfies, - [78992] = 5, - ACTIONS(1853), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1845), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1849), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4195), 1, + anon_sym_RBRACK, + ACTIONS(5396), 1, + anon_sym_AMP_AMP, + ACTIONS(5398), 1, anon_sym_GT_GT, + ACTIONS(5402), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1851), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5404), 1, anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, anon_sym_PERCENT, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79046] = 3, + ACTIONS(5433), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4727), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4729), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5420), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79096] = 32, + [81659] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(5432), 1, + ACTIONS(4197), 1, anon_sym_RBRACK, - ACTIONS(5434), 1, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5398), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5402), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5406), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5410), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5414), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, + ACTIONS(5433), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(5392), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5430), 2, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5400), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5420), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5416), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79204] = 5, - ACTIONS(1867), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1859), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1863), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1865), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + [81767] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4475), 1, + anon_sym_RBRACK, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, anon_sym_PERCENT, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79258] = 5, - ACTIONS(1742), 1, - sym__automatic_semicolon, + ACTIONS(5433), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1734), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1738), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1740), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5420), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79312] = 10, + [81875] = 15, + ACTIONS(241), 1, + anon_sym_COMMA, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5466), 1, + ACTIONS(5236), 1, anon_sym_STAR, + ACTIONS(5313), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5468), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(5470), 2, + ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3878), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3921), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -201030,95 +206115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79376] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, - anon_sym_AMP_AMP, - ACTIONS(5278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, - anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - ACTIONS(5472), 1, - anon_sym_COLON, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5300), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79484] = 7, - ACTIONS(5474), 1, - anon_sym_LPAREN, - ACTIONS(5477), 1, - anon_sym_COLON, - ACTIONS(5479), 1, - anon_sym_LT, - ACTIONS(5482), 1, - anon_sym_QMARK, + [81949] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4811), 12, + ACTIONS(1865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201129,13 +206130,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4813), 25, + ACTIONS(1867), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -201157,11 +206162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79542] = 3, + [81999] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4902), 13, + ACTIONS(1795), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201175,7 +206180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4904), 28, + ACTIONS(1797), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201204,16 +206209,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79592] = 5, - ACTIONS(1883), 1, + [82049] = 5, + ACTIONS(1799), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 2, + ACTIONS(1791), 2, anon_sym_else, anon_sym_while, - ACTIONS(1879), 13, + ACTIONS(1795), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201227,7 +206232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 25, + ACTIONS(1797), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -201253,44 +206258,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79646] = 10, + [82103] = 16, + ACTIONS(241), 1, + anon_sym_COMMA, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5484), 1, + ACTIONS(5236), 1, anon_sym_STAR, + ACTIONS(5313), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5486), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(5488), 2, + ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3843), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3921), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, + ACTIONS(2307), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -201307,58 +206318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79710] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4811), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4813), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79760] = 3, + [82179] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4914), 13, + ACTIONS(4731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201372,7 +206336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4916), 28, + ACTIONS(4733), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201401,96 +206365,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79810] = 11, - ACTIONS(1594), 1, + [82229] = 12, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5484), 1, + ACTIONS(5564), 1, anon_sym_STAR, - ACTIONS(5490), 1, + ACTIONS(5566), 1, anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5492), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5494), 2, + ACTIONS(5570), 1, anon_sym_get, + ACTIONS(5572), 1, anon_sym_set, - STATE(3063), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [79876] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5496), 1, - anon_sym_STAR, - ACTIONS(5498), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5500), 2, + ACTIONS(5568), 2, sym_number, sym_private_property_identifier, - ACTIONS(5502), 2, - anon_sym_get, - anon_sym_set, - STATE(3009), 3, + STATE(3436), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -201511,87 +206421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79942] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5434), 1, - anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, - anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - ACTIONS(5504), 1, - anon_sym_RBRACK, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5458), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80050] = 3, + [82297] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4823), 13, + ACTIONS(4906), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201605,7 +206439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 28, + ACTIONS(4908), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201634,65 +206468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80100] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(4827), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5506), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5508), 2, - anon_sym_get, - anon_sym_set, - STATE(3747), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, + [82347] = 5, + ACTIONS(1869), 1, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [80164] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4922), 13, + ACTIONS(1861), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201706,14 +206491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4299), 28, - sym__automatic_semicolon, + ACTIONS(1867), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -201735,16 +206517,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80214] = 5, - ACTIONS(1893), 1, - sym__automatic_semicolon, + [82401] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1885), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1889), 13, + ACTIONS(5386), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5388), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201758,12 +206542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 25, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201784,11 +206566,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80268] = 3, + [82455] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4753), 13, + ACTIONS(4673), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201802,7 +206584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4755), 28, + ACTIONS(4675), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201831,16 +206613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80318] = 5, - ACTIONS(1903), 1, - sym__automatic_semicolon, + [82505] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1895), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1899), 13, + ACTIONS(4677), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201854,11 +206631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1901), 25, + ACTIONS(4167), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -201880,11 +206660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80372] = 3, + [82555] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4906), 13, + ACTIONS(4683), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201898,7 +206678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4908), 28, + ACTIONS(4685), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201927,11 +206707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80422] = 3, + [82605] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4910), 13, + ACTIONS(4745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201945,7 +206725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4912), 28, + ACTIONS(4747), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201974,11 +206754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80472] = 3, + [82655] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4918), 13, + ACTIONS(5386), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5388), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201992,15 +206779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4920), 28, - sym__automatic_semicolon, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202021,11 +206803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80522] = 3, + [82709] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4619), 13, + ACTIONS(4918), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202039,7 +206821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4621), 28, + ACTIONS(4920), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202068,11 +206850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80572] = 3, + [82759] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4924), 13, + ACTIONS(4757), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202086,7 +206868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4926), 28, + ACTIONS(4759), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202115,11 +206897,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80622] = 3, + [82809] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4792), 13, + ACTIONS(4715), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202133,7 +206915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4794), 28, + ACTIONS(4177), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202162,18 +206944,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80672] = 5, + [82859] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5574), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5191), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5212), 3, + ACTIONS(5576), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5578), 2, + anon_sym_get, + anon_sym_set, + STATE(4496), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(3400), 13, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82923] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202187,10 +207016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(4270), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202211,134 +207045,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80726] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [82973] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, - anon_sym_AMP_AMP, - ACTIONS(5278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, - anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - ACTIONS(5510), 1, - anon_sym_COLON, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + ACTIONS(5580), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(5582), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5584), 2, + anon_sym_get, + anon_sym_set, + STATE(4184), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83037] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5586), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5300), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80834] = 3, + ACTIONS(5590), 1, + anon_sym_get, + ACTIONS(5592), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1805), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1807), 28, + ACTIONS(5588), 2, + sym_number, + sym_private_property_identifier, + STATE(4332), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80884] = 3, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83103] = 4, + ACTIONS(3448), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 13, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202352,12 +207174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1841), 28, + ACTIONS(3384), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, @@ -202381,11 +207202,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80934] = 3, + [83155] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5594), 1, + anon_sym_STAR, + ACTIONS(5598), 1, + anon_sym_get, + ACTIONS(5600), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5596), 2, + sym_number, + sym_private_property_identifier, + STATE(4261), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83221] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1773), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202399,7 +207275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1775), 28, + ACTIONS(4311), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202428,14 +207304,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80984] = 3, + [83271] = 4, + ACTIONS(5602), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1829), 13, + ACTIONS(5119), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -202446,14 +207326,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1831), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5121), 23, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -202470,55 +207349,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [81034] = 12, - ACTIONS(170), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1506), 1, + [83323] = 11, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1508), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, + ACTIONS(5580), 1, + anon_sym_STAR, + ACTIONS(5604), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5117), 2, + ACTIONS(5606), 2, sym_number, sym_private_property_identifier, - ACTIONS(5514), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5227), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5634), 3, + ACTIONS(5608), 2, + anon_sym_get, + anon_sym_set, + STATE(3525), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5760), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5512), 23, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -202531,7 +207407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81102] = 3, + [83389] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -202578,34 +207454,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81152] = 3, + [83439] = 15, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(727), 1, + anon_sym_RBRACE, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83513] = 7, + ACTIONS(3532), 1, + anon_sym_EQ, + ACTIONS(4922), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 13, + ACTIONS(4469), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4925), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 28, + ACTIONS(3384), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -202625,11 +207564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81202] = 3, + [83571] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1787), 13, + ACTIONS(4679), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202643,7 +207582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 28, + ACTIONS(4681), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202672,18 +207611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81252] = 5, + [83621] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5516), 2, + ACTIONS(5610), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5518), 3, + ACTIONS(5612), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3400), 13, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202697,7 +207636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -202721,18 +207660,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81306] = 5, + [83675] = 16, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(727), 1, + anon_sym_RBRACE, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5520), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5522), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(3400), 13, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83751] = 12, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5614), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4495), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202743,16 +207754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(4497), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -202768,22 +207775,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [81360] = 5, - ACTIONS(5), 2, + [83819] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4504), 1, + anon_sym_of, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5629), 1, + anon_sym_AMP, + ACTIONS(5631), 1, + anon_sym_CARET, + ACTIONS(5633), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, + anon_sym_PERCENT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5641), 1, + anon_sym_LT, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5645), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5647), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5643), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83927] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5653), 1, + anon_sym_STAR, + ACTIONS(5657), 1, + anon_sym_get, + ACTIONS(5659), 1, + anon_sym_set, + ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5520), 2, + ACTIONS(5655), 2, + sym_number, + sym_private_property_identifier, + STATE(4219), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5522), 3, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(3400), 13, - anon_sym_STAR, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83993] = 16, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5661), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4508), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -202792,13 +207949,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4510), 15, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [84069] = 13, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5664), 1, anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4263), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(4265), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [84139] = 7, + ACTIONS(5667), 1, anon_sym_LPAREN, + ACTIONS(5670), 1, + anon_sym_COLON, + ACTIONS(5672), 1, + anon_sym_LT, + ACTIONS(5675), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4547), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4549), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202819,18 +208075,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81414] = 5, + [84197] = 33, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4848), 1, + anon_sym_of, + ACTIONS(5619), 1, + anon_sym_GT, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5629), 1, + anon_sym_AMP, + ACTIONS(5631), 1, + anon_sym_CARET, + ACTIONS(5633), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, + anon_sym_PERCENT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5641), 1, + anon_sym_LT, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + ACTIONS(5677), 1, + anon_sym_in, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5520), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5522), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5645), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5647), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5643), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84307] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + ACTIONS(5680), 1, anon_sym_COLON, - ACTIONS(3400), 13, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84415] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4659), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202844,10 +208246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(4145), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202868,83 +208275,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81468] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, + [84465] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(5524), 1, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4475), 1, + anon_sym_of, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5629), 1, + anon_sym_AMP, + ACTIONS(5631), 1, + anon_sym_CARET, + ACTIONS(5633), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, + anon_sym_PERCENT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5641), 1, + anon_sym_LT, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5617), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5645), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5647), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5643), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84573] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5396), 1, + anon_sym_AMP_AMP, + ACTIONS(5398), 1, + anon_sym_GT_GT, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, + anon_sym_PERCENT, + ACTIONS(5412), 1, + anon_sym_STAR_STAR, + ACTIONS(5414), 1, + anon_sym_LT, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5433), 1, + sym__ternary_qmark, + ACTIONS(5682), 1, + anon_sym_RBRACK, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5526), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5528), 2, - anon_sym_get, - anon_sym_set, - STATE(3842), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5392), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5394), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5400), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5408), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5420), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5416), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84681] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81532] = 10, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + ACTIONS(5684), 1, + anon_sym_COLON, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84789] = 11, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5530), 1, + ACTIONS(5686), 1, anon_sym_STAR, + ACTIONS(5690), 1, + anon_sym_get, + ACTIONS(5692), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5532), 2, + ACTIONS(5688), 2, sym_number, sym_private_property_identifier, - ACTIONS(5534), 2, - anon_sym_get, - anon_sym_set, - STATE(3798), 3, + STATE(4390), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -202976,259 +208558,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81596] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5530), 1, - anon_sym_STAR, - ACTIONS(5536), 1, - anon_sym_async, + [84855] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5538), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5540), 2, - anon_sym_get, - anon_sym_set, - STATE(2966), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(4723), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4725), 28, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84905] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4743), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3607), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81662] = 15, - ACTIONS(241), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(727), 1, anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84955] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4761), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81736] = 16, - ACTIONS(241), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4763), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(727), 1, anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85005] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4197), 1, + anon_sym_of, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5629), 1, + anon_sym_AMP, + ACTIONS(5631), 1, + anon_sym_CARET, + ACTIONS(5633), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, + anon_sym_PERCENT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5641), 1, + anon_sym_LT, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5645), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5647), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5643), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85113] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4195), 1, + anon_sym_of, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5629), 1, + anon_sym_AMP, + ACTIONS(5631), 1, + anon_sym_CARET, + ACTIONS(5633), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, + anon_sym_PERCENT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5641), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81812] = 10, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5645), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5647), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5643), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85221] = 11, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5542), 1, + ACTIONS(5694), 1, anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5544), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5546), 2, + ACTIONS(5698), 1, anon_sym_get, + ACTIONS(5700), 1, anon_sym_set, - STATE(3817), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81876] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5241), 1, - anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5249), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5548), 2, + ACTIONS(5696), 2, sym_number, sym_private_property_identifier, - STATE(2967), 3, + STATE(4208), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -203238,11 +208884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 20, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203259,92 +208906,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81942] = 32, + [85287] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4703), 1, - anon_sym_RBRACE, - ACTIONS(5276), 1, + ACTIONS(4270), 1, + anon_sym_of, + ACTIONS(5621), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, + ACTIONS(5623), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, + ACTIONS(5625), 1, anon_sym_GT_GT, - ACTIONS(5284), 1, + ACTIONS(5629), 1, anon_sym_AMP, - ACTIONS(5286), 1, + ACTIONS(5631), 1, anon_sym_CARET, - ACTIONS(5288), 1, + ACTIONS(5633), 1, anon_sym_PIPE, - ACTIONS(5292), 1, + ACTIONS(5637), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, + ACTIONS(5641), 1, anon_sym_LT, - ACTIONS(5304), 1, + ACTIONS(5649), 1, anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, + ACTIONS(5651), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(5617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5274), 2, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, + ACTIONS(5627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5290), 2, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + ACTIONS(5645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, + ACTIONS(5647), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5298), 3, + ACTIONS(5643), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82050] = 5, - ACTIONS(1809), 1, - sym__automatic_semicolon, + [85395] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1801), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1805), 13, + ACTIONS(4727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203358,11 +209000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1807), 25, + ACTIONS(4729), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -203384,31 +209029,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82104] = 11, - ACTIONS(1594), 1, + [85445] = 13, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5702), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4263), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4265), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [85515] = 10, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5241), 1, + ACTIONS(5705), 1, anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5249), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5550), 2, + ACTIONS(5707), 2, sym_number, sym_private_property_identifier, - STATE(2977), 3, + ACTIONS(5709), 2, + anon_sym_get, + anon_sym_set, + STATE(4394), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -203418,11 +209118,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 20, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203439,16 +209140,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82170] = 5, - ACTIONS(1843), 1, + [85579] = 5, + ACTIONS(1909), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 2, + ACTIONS(1901), 2, anon_sym_else, anon_sym_while, - ACTIONS(1839), 13, + ACTIONS(1905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203462,7 +209163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1841), 25, + ACTIONS(1907), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -203488,390 +209189,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82224] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, + [85633] = 16, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(5255), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5552), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5554), 2, - anon_sym_get, - anon_sym_set, - STATE(3767), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82288] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5255), 1, - anon_sym_STAR, - ACTIONS(5257), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5259), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5263), 2, - anon_sym_get, - anon_sym_set, - STATE(3039), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82354] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5556), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5558), 2, - anon_sym_get, - anon_sym_set, - STATE(3808), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82418] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5560), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5562), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5564), 2, - anon_sym_get, - anon_sym_set, - STATE(3914), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82482] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5496), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5566), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5568), 2, - anon_sym_get, - anon_sym_set, - STATE(3832), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82546] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5570), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5572), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5574), 2, - anon_sym_get, - anon_sym_set, - STATE(3834), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82610] = 8, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3549), 1, - anon_sym_COLON, - ACTIONS(4691), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4694), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4330), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3400), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4101), 1, anon_sym_satisfies, - [82670] = 3, + ACTIONS(5711), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4884), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4508), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -203880,21 +209231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4886), 28, - sym__automatic_semicolon, + ACTIONS(4510), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -203908,91 +209249,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82720] = 32, + [85709] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(5276), 1, + ACTIONS(4504), 1, + anon_sym_RBRACK, + ACTIONS(5396), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, + ACTIONS(5398), 1, anon_sym_GT_GT, - ACTIONS(5284), 1, + ACTIONS(5402), 1, anon_sym_AMP, - ACTIONS(5286), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5288), 1, + ACTIONS(5406), 1, anon_sym_PIPE, - ACTIONS(5292), 1, + ACTIONS(5410), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, + ACTIONS(5412), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, + ACTIONS(5414), 1, anon_sym_LT, - ACTIONS(5304), 1, + ACTIONS(5429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5431), 1, anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, + ACTIONS(5433), 1, sym__ternary_qmark, - ACTIONS(5576), 1, - anon_sym_COLON, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(5392), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5274), 2, + ACTIONS(5394), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, + ACTIONS(5400), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5290), 2, + ACTIONS(5408), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + ACTIONS(5418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, + ACTIONS(5420), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5298), 3, + ACTIONS(5416), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82828] = 3, + [85817] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4650), 13, + ACTIONS(4775), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204006,7 +209343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4652), 28, + ACTIONS(4777), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204035,11 +209372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82878] = 3, + [85867] = 5, + ACTIONS(1809), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4705), 13, + ACTIONS(1801), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1805), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204053,14 +209395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4707), 28, - sym__automatic_semicolon, + ACTIONS(1807), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -204082,17 +209421,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82928] = 4, + [85921] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5574), 1, + anon_sym_STAR, + ACTIONS(5714), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1783), 5, + ACTIONS(5716), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5718), 2, + anon_sym_get, + anon_sym_set, + STATE(3468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1787), 13, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85987] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204106,10 +209494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 23, + ACTIONS(1740), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204130,11 +209523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82980] = 3, + [86037] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4731), 13, + ACTIONS(1919), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204148,7 +209541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 28, + ACTIONS(1921), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204177,11 +209570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83030] = 3, + [86087] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1879), 13, + ACTIONS(1885), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204195,7 +209588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 28, + ACTIONS(1887), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204224,130 +209617,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83080] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(725), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83154] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(725), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83230] = 3, + [86137] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4654), 13, + ACTIONS(1895), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204361,7 +209635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4656), 28, + ACTIONS(1897), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204390,17 +209664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83280] = 4, + [86187] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1879), 13, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204414,10 +209682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 23, + ACTIONS(1817), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204438,37 +209711,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83332] = 10, - ACTIONS(2275), 1, + [86237] = 12, + ACTIONS(170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1548), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1550), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(3187), 1, + anon_sym_LBRACE, + ACTIONS(3709), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3959), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4636), 2, + ACTIONS(5348), 2, sym_number, sym_private_property_identifier, - STATE(3770), 3, + ACTIONS(5722), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(6171), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7416), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2307), 23, + STATE(7437), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5720), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -204492,66 +209767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83396] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - anon_sym_STAR, - ACTIONS(5313), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5315), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5319), 2, - anon_sym_get, - anon_sym_set, - STATE(3074), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83462] = 3, + [86305] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 13, + ACTIONS(1825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204565,7 +209785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4632), 28, + ACTIONS(1827), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204594,38 +209814,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83512] = 7, - ACTIONS(4328), 1, - anon_sym_QMARK, + [86355] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4177), 1, + anon_sym_of, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5629), 1, + anon_sym_AMP, + ACTIONS(5631), 1, + anon_sym_CARET, + ACTIONS(5633), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, + anon_sym_PERCENT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5641), 1, + anon_sym_LT, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4694), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4691), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3400), 11, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5645), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5647), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5643), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86463] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4595), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(4597), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204645,60 +209937,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83570] = 5, + [86513] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4167), 1, + anon_sym_of, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5629), 1, + anon_sym_AMP, + ACTIONS(5631), 1, + anon_sym_CARET, + ACTIONS(5633), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, + anon_sym_PERCENT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5641), 1, + anon_sym_LT, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5578), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5580), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3400), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5617), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5647), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5643), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86621] = 32, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4506), 1, + anon_sym_of, + ACTIONS(5621), 1, anon_sym_AMP_AMP, + ACTIONS(5623), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5629), 1, + anon_sym_AMP, + ACTIONS(5631), 1, anon_sym_CARET, + ACTIONS(5633), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, anon_sym_PERCENT, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5641), 1, + anon_sym_LT, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5645), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5647), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5643), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83624] = 3, + [86729] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 13, + ACTIONS(1845), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204712,7 +210107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 28, + ACTIONS(1847), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204741,11 +210136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83674] = 3, + [86779] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1759), 13, + ACTIONS(1805), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204759,7 +210154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1761), 28, + ACTIONS(1807), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204788,11 +210183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83724] = 3, + [86829] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 13, + ACTIONS(1748), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204806,7 +210201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1851), 28, + ACTIONS(1750), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204835,11 +210230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83774] = 3, + [86879] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(4779), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204853,7 +210248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 28, + ACTIONS(4781), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204882,34 +210277,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83824] = 3, + [86929] = 7, + ACTIONS(3522), 1, + anon_sym_EQ, + ACTIONS(4469), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1738), 13, + ACTIONS(4922), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4925), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1740), 28, - sym__automatic_semicolon, + ACTIONS(3384), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204929,1023 +210327,1153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83874] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, - anon_sym_AMP_AMP, - ACTIONS(5278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, - anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - ACTIONS(5582), 1, - anon_sym_COLON, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_implements, + [86987] = 9, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3961), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(1963), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5300), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83982] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4255), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, - anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, - anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1961), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87049] = 9, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3961), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(2003), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5458), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84090] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4257), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, - anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, - anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87111] = 9, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(1963), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, - anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1961), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87173] = 9, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87235] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5368), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5724), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5726), 2, + anon_sym_get, + anon_sym_set, + STATE(4597), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87299] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4735), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84198] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4737), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4283), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5462), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87349] = 9, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3958), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(1963), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1961), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87411] = 9, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3958), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87473] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4739), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84306] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4741), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4297), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5462), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87523] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(4749), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(4751), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84414] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87573] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4299), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5185), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1447), 1, + ACTIONS(5728), 1, + anon_sym_COLON, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5430), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84522] = 19, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + [87681] = 9, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3970), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1963), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1961), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87743] = 9, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3970), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2003), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87805] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(4835), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 13, + ACTIONS(4837), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [84604] = 14, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_satisfies, + [87855] = 8, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4289), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + ACTIONS(5099), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 12, + ACTIONS(4292), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4295), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4283), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 16, + ACTIONS(4287), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [84676] = 26, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_satisfies, + [87915] = 8, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(4243), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, - anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + ACTIONS(5093), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(4246), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2325), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1674), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 7, + ACTIONS(1678), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [84772] = 27, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87975] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5730), 1, + anon_sym_STAR, + ACTIONS(5734), 1, + anon_sym_get, + ACTIONS(5736), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5732), 2, + sym_number, + sym_private_property_identifier, + STATE(4545), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88041] = 5, + ACTIONS(1849), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(1841), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1845), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 6, + ACTIONS(1847), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [84870] = 17, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5450), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88095] = 5, + ACTIONS(1829), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(1821), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1825), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5448), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 15, + ACTIONS(1827), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [84948] = 23, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_satisfies, + [88149] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(4753), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 8, + ACTIONS(4755), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [85038] = 24, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5450), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88199] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5428), 2, + ACTIONS(4749), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 8, + ACTIONS(4751), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [85130] = 25, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88249] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5428), 2, + ACTIONS(4791), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 7, + ACTIONS(4209), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [85224] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(5450), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88299] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(4621), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -205954,841 +211482,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 15, + ACTIONS(4623), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [85300] = 17, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [88349] = 7, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4289), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 11, - anon_sym_STAR, - anon_sym_in, + ACTIONS(4295), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4292), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4283), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 14, + ACTIONS(4287), 24, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_RBRACK, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85378] = 21, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_satisfies, + [88407] = 7, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(4243), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, - anon_sym_in, + ACTIONS(2325), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4246), 3, anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4307), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4305), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [85464] = 28, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(5434), 1, - anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5444), 1, - anon_sym_CARET, - ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(1674), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 5, + ACTIONS(1678), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [85564] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4350), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5458), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5460), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85672] = 32, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4352), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, - anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, - anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [88465] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5738), 1, + anon_sym_STAR, + ACTIONS(5742), 1, + anon_sym_get, + ACTIONS(5744), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5458), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85780] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(5740), 2, + sym_number, + sym_private_property_identifier, + STATE(4532), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4370), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, - anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, - anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88531] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(4669), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85888] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4671), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4372), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5458), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5460), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85996] = 32, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(4374), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, - anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, - anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [88581] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(4665), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86104] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4667), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5458), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5460), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86212] = 32, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4053), 1, - anon_sym_RBRACK, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5434), 1, - anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, - anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [88631] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(5746), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5748), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3380), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86320] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4388), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5458), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5460), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86428] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88685] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1801), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1805), 13, + ACTIONS(4783), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206802,10 +211833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1807), 23, + ACTIONS(4785), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -206826,33 +211862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86480] = 13, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5587), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [88735] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4170), 12, + ACTIONS(4787), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206863,12 +211877,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 17, + ACTIONS(4789), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -206882,41 +211905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [86550] = 16, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5590), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [88785] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4199), 11, + ACTIONS(4661), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -206925,11 +211924,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 15, + ACTIONS(4663), 28, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -206943,19 +211952,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86626] = 6, - ACTIONS(3448), 1, - anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_in, - ACTIONS(3589), 1, - anon_sym_of, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88835] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 12, + ACTIONS(4749), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -206966,12 +211974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 26, + ACTIONS(4751), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -206993,106 +212003,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86682] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [88885] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(5750), 1, + anon_sym_STAR, + ACTIONS(5754), 1, + anon_sym_get, + ACTIONS(5756), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5752), 2, + sym_number, + sym_private_property_identifier, + STATE(4499), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4210), 1, - anon_sym_RBRACK, - ACTIONS(5434), 1, - anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, - anon_sym_AMP, - ACTIONS(5444), 1, - anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5464), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88951] = 9, + ACTIONS(3416), 1, + anon_sym_EQ, + ACTIONS(3536), 1, + anon_sym_COLON, + ACTIONS(4469), 1, + anon_sym_extends, + ACTIONS(4922), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5428), 2, + ACTIONS(4925), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5758), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3380), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5430), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5448), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(3384), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86790] = 12, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5593), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_satisfies, + [89013] = 5, + ACTIONS(1819), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 12, + ACTIONS(1811), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207103,12 +212131,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 19, + ACTIONS(1817), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -207124,13 +212158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [86858] = 3, + [89067] = 4, + ACTIONS(5602), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(5119), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -207143,14 +212181,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5121), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -207167,23 +212205,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [86908] = 5, + [89119] = 16, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(5338), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5596), 2, - anon_sym_EQ, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(5598), 3, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89195] = 15, + ACTIONS(241), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(5338), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(3400), 13, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89269] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4649), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207197,10 +212345,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(4651), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207221,18 +212374,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86962] = 5, + [89319] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5265), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5267), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3400), 13, + ACTIONS(4645), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207246,10 +212392,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(4647), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207270,105 +212421,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87016] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, - anon_sym_AMP_AMP, - ACTIONS(5278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, - anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - ACTIONS(5600), 1, - anon_sym_COLON, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5300), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87124] = 10, + [89369] = 11, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5602), 1, + ACTIONS(5762), 1, anon_sym_STAR, + ACTIONS(5766), 1, + anon_sym_get, + ACTIONS(5768), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5604), 2, + ACTIONS(5764), 2, sym_number, sym_private_property_identifier, - ACTIONS(5606), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, + STATE(4278), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -207400,13 +212476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87188] = 4, - ACTIONS(3448), 1, - anon_sym_EQ, + [89435] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(4632), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207420,13 +212494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 27, + ACTIONS(4634), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -207448,31 +212523,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87240] = 11, - ACTIONS(1594), 1, + [89485] = 11, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5602), 1, + ACTIONS(5770), 1, anon_sym_STAR, - ACTIONS(5608), 1, - anon_sym_async, + ACTIONS(5774), 1, + anon_sym_get, + ACTIONS(5776), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5610), 2, + ACTIONS(5772), 2, sym_number, sym_private_property_identifier, - ACTIONS(5612), 2, - anon_sym_get, - anon_sym_set, - STATE(2984), 3, + STATE(4289), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -207482,11 +212556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 20, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -207503,31 +212578,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87306] = 11, - ACTIONS(1594), 1, + [89551] = 11, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5542), 1, + ACTIONS(5778), 1, anon_sym_STAR, - ACTIONS(5614), 1, - anon_sym_async, + ACTIONS(5782), 1, + anon_sym_get, + ACTIONS(5784), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5616), 2, + ACTIONS(5780), 2, sym_number, sym_private_property_identifier, - ACTIONS(5618), 2, - anon_sym_get, - anon_sym_set, - STATE(2994), 3, + STATE(4489), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -207537,11 +212611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 20, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -207558,172 +212633,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87372] = 32, + [89617] = 28, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(5621), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, + ACTIONS(5623), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, + ACTIONS(5625), 1, anon_sym_GT_GT, - ACTIONS(5284), 1, + ACTIONS(5629), 1, anon_sym_AMP, - ACTIONS(5286), 1, + ACTIONS(5631), 1, anon_sym_CARET, - ACTIONS(5288), 1, + ACTIONS(5633), 1, anon_sym_PIPE, - ACTIONS(5292), 1, + ACTIONS(5637), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, + ACTIONS(5641), 1, anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - ACTIONS(5620), 1, - anon_sym_COLON, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(5617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5274), 2, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, + ACTIONS(5627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5290), 2, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + ACTIONS(5645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, + ACTIONS(5647), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5298), 3, + ACTIONS(5643), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87480] = 11, - ACTIONS(1594), 1, + ACTIONS(4249), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [89717] = 11, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5542), 1, + ACTIONS(5786), 1, anon_sym_STAR, - ACTIONS(5614), 1, + ACTIONS(5788), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5618), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5622), 2, + ACTIONS(5790), 2, sym_number, sym_private_property_identifier, - STATE(2956), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3607), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [87546] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5542), 1, - anon_sym_STAR, - ACTIONS(5614), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5618), 2, + ACTIONS(5792), 2, anon_sym_get, anon_sym_set, - ACTIONS(5624), 2, - sym_number, - sym_private_property_identifier, - STATE(2965), 3, + STATE(3474), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -207744,17 +212760,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87612] = 4, + [89783] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1839), 13, + ACTIONS(4547), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207768,10 +212778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1841), 23, + ACTIONS(4549), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207792,105 +212807,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87664] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [89833] = 15, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(702), 1, + anon_sym_RBRACE, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, - anon_sym_AMP_AMP, - ACTIONS(5278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, - anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, - anon_sym_PERCENT, - ACTIONS(5294), 1, - anon_sym_STAR_STAR, - ACTIONS(5296), 1, - anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - ACTIONS(5626), 1, + ACTIONS(5236), 1, + anon_sym_STAR, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, anon_sym_COLON, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89907] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(4617), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5274), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5290), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, + ACTIONS(4619), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87772] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89957] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5628), 1, + ACTIONS(5786), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5630), 2, + ACTIONS(5794), 2, sym_number, sym_private_property_identifier, - ACTIONS(5632), 2, + ACTIONS(5796), 2, anon_sym_get, anon_sym_set, - STATE(3880), 3, + STATE(4217), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -207922,45 +212967,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87836] = 11, - ACTIONS(1594), 1, + [90021] = 16, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(702), 1, + anon_sym_RBRACE, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5628), 1, + ACTIONS(5236), 1, anon_sym_STAR, - ACTIONS(5634), 1, - anon_sym_async, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5636), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(5638), 2, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90097] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5798), 1, + anon_sym_STAR, + ACTIONS(5802), 1, anon_sym_get, + ACTIONS(5804), 1, anon_sym_set, - STATE(3038), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5800), 2, + sym_number, + sym_private_property_identifier, + STATE(4299), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -207977,28 +213082,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87902] = 8, - ACTIONS(3454), 1, + [90163] = 7, + ACTIONS(3508), 1, anon_sym_EQ, - ACTIONS(4328), 1, - anon_sym_QMARK, - ACTIONS(4691), 1, + ACTIONS(4922), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4694), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4330), 3, + ACTIONS(4469), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3400), 11, + ACTIONS(4925), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -208006,10 +213108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(3384), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208029,113 +213133,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87962] = 5, - ACTIONS(5640), 1, - sym__automatic_semicolon, + [90221] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5806), 1, + anon_sym_STAR, + ACTIONS(5810), 1, + anon_sym_get, + ACTIONS(5812), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1769), 4, + ACTIONS(5808), 2, + sym_number, + sym_private_property_identifier, + STATE(4307), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1773), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1775), 23, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90287] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88016] = 21, - ACTIONS(235), 1, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(1935), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(5818), 1, + anon_sym_get, + ACTIONS(5820), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5816), 2, + sym_number, + sym_private_property_identifier, + STATE(4388), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90353] = 11, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5644), 1, + ACTIONS(5822), 1, + anon_sym_STAR, + ACTIONS(5826), 1, + anon_sym_get, + ACTIONS(5828), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5824), 2, + sym_number, + sym_private_property_identifier, + STATE(4421), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(5646), 1, - anon_sym_RBRACE, - ACTIONS(5648), 1, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(5652), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(5654), 1, anon_sym_readonly, - ACTIONS(5660), 1, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - STATE(2682), 1, - sym_accessibility_modifier, - STATE(2711), 1, - sym_override_modifier, - STATE(5089), 1, - aux_sym_object_repeat1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90419] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(4690), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5650), 2, + ACTIONS(5830), 2, sym_number, sym_private_property_identifier, - ACTIONS(5656), 2, + ACTIONS(5832), 2, anon_sym_get, anon_sym_set, - ACTIONS(5658), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3611), 3, + STATE(4514), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5086), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5642), 14, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -208143,40 +213352,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88102] = 7, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_QMARK_DOT, + [90483] = 5, + ACTIONS(1899), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3406), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3400), 11, + ACTIONS(1891), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1895), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(1897), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -208194,29 +213401,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88160] = 10, + [90537] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5834), 1, + anon_sym_STAR, + ACTIONS(5836), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5838), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5840), 2, + anon_sym_get, + anon_sym_set, + STATE(3470), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90603] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5662), 1, + ACTIONS(5524), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5664), 2, + ACTIONS(5842), 2, sym_number, sym_private_property_identifier, - ACTIONS(5666), 2, + ACTIONS(5844), 2, anon_sym_get, anon_sym_set, - STATE(3772), 3, + STATE(4245), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208248,36 +213510,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88224] = 5, + [90667] = 9, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4404), 4, + ACTIONS(1963), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1961), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90729] = 9, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2003), 6, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3400), 11, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90791] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4543), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 24, + ACTIONS(4545), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208297,65 +213663,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88278] = 7, - ACTIONS(4406), 1, - anon_sym_QMARK, + [90841] = 16, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(5336), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4881), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4878), 3, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90917] = 15, + ACTIONS(241), 1, anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4774), 11, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(5336), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90991] = 14, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5846), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 22, + ACTIONS(4249), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [88336] = 4, + [91063] = 5, + ACTIONS(1742), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1783), 2, + ACTIONS(1734), 2, anon_sym_else, anon_sym_while, - ACTIONS(1787), 13, + ACTIONS(1738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208369,8 +213863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 26, - sym__automatic_semicolon, + ACTIONS(1740), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -208396,17 +213889,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88388] = 4, + [91117] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1825), 5, - sym__automatic_semicolon, + ACTIONS(5849), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5851), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1829), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208420,7 +213914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1831), 23, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -208444,37 +213938,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88440] = 7, - ACTIONS(3542), 1, - anon_sym_EQ, - ACTIONS(4330), 1, - anon_sym_extends, + [91171] = 5, + ACTIONS(1889), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4691), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4694), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(1881), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1885), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 24, + ACTIONS(1887), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208494,69 +213987,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [88498] = 4, + [91225] = 21, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5637), 1, + anon_sym_PERCENT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5641), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1815), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5617), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5643), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4251), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 23, + ACTIONS(4249), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [88550] = 5, - ACTIONS(5668), 1, - sym__automatic_semicolon, + [91311] = 12, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5853), 1, + anon_sym_STAR, + ACTIONS(5855), 1, + anon_sym_async, + ACTIONS(5859), 1, + anon_sym_get, + ACTIONS(5861), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 4, + ACTIONS(5857), 2, + sym_number, + sym_private_property_identifier, + STATE(3422), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1759), 13, - anon_sym_STAR, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91379] = 17, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5846), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -208565,46 +214152,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1761), 23, + ACTIONS(4249), 14, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [91457] = 16, + ACTIONS(825), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [88604] = 5, - ACTIONS(5670), 1, - sym__automatic_semicolon, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5637), 1, + anon_sym_PERCENT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5846), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1849), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5617), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -208613,139 +214211,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1851), 23, + ACTIONS(4249), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [88658] = 3, + [91533] = 25, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5629), 1, + anon_sym_AMP, + ACTIONS(5631), 1, + anon_sym_CARET, + ACTIONS(5637), 1, + anon_sym_PERCENT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5641), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4665), 13, - anon_sym_STAR, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4251), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4667), 28, - sym__automatic_semicolon, + ACTIONS(5647), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5643), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [91627] = 24, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5629), 1, + anon_sym_AMP, + ACTIONS(5637), 1, anon_sym_PERCENT, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88708] = 3, + ACTIONS(5641), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4709), 13, - anon_sym_STAR, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4251), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4711), 28, - sym__automatic_semicolon, + ACTIONS(5647), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5643), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [88758] = 4, + [91719] = 5, + ACTIONS(1923), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1863), 13, + ACTIONS(1915), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1919), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208759,10 +214389,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 23, + ACTIONS(1921), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -208783,20 +214415,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88810] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1734), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1738), 13, + [91773] = 23, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5637), 1, + anon_sym_PERCENT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5641), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5617), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5645), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5647), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 3, anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5643), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [91863] = 6, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(5099), 1, + anon_sym_of, + ACTIONS(5863), 1, anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4283), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -208807,10 +214505,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1740), 23, + ACTIONS(4287), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -208831,65 +214532,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88862] = 3, + [91919] = 17, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5637), 1, + anon_sym_PERCENT, + ACTIONS(5639), 1, + anon_sym_STAR_STAR, + ACTIONS(5846), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5617), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5635), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4642), 28, - sym__automatic_semicolon, + ACTIONS(4249), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [88912] = 5, - ACTIONS(5672), 1, - sym__automatic_semicolon, + [91997] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1885), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1889), 13, + ACTIONS(4902), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208903,10 +214611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 23, + ACTIONS(4904), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -208927,38 +214640,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88966] = 7, - ACTIONS(3518), 1, - anon_sym_EQ, - ACTIONS(4691), 1, - anon_sym_LBRACK, + [92047] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4694), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(4894), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 24, + ACTIONS(4896), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208978,504 +214687,419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89024] = 32, + [92097] = 27, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(5621), 1, anon_sym_AMP_AMP, - ACTIONS(5278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, + ACTIONS(5625), 1, anon_sym_GT_GT, - ACTIONS(5284), 1, + ACTIONS(5629), 1, anon_sym_AMP, - ACTIONS(5286), 1, + ACTIONS(5631), 1, anon_sym_CARET, - ACTIONS(5288), 1, + ACTIONS(5633), 1, anon_sym_PIPE, - ACTIONS(5292), 1, + ACTIONS(5637), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, + ACTIONS(5641), 1, anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - ACTIONS(5674), 1, - anon_sym_COLON, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(5617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5274), 2, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5282), 2, + ACTIONS(5627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5290), 2, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, + ACTIONS(5645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 2, + ACTIONS(5647), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5298), 3, + ACTIONS(5643), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89132] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4249), 6, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4255), 1, anon_sym_of, - ACTIONS(5343), 1, - anon_sym_AMP_AMP, - ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, - anon_sym_GT_GT, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, - anon_sym_CARET, - ACTIONS(5355), 1, - anon_sym_PIPE, - ACTIONS(5359), 1, - anon_sym_PERCENT, - ACTIONS(5361), 1, - anon_sym_STAR_STAR, - ACTIONS(5363), 1, - anon_sym_LT, - ACTIONS(5371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_satisfies, + [92195] = 6, + ACTIONS(4638), 1, + anon_sym_EQ, + ACTIONS(5095), 1, + anon_sym_of, + ACTIONS(5866), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(4636), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5341), 2, - anon_sym_in, + anon_sym_BANG, anon_sym_GT, - ACTIONS(5349), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5357), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5365), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89240] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4640), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4257), 1, - anon_sym_of, - ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, - anon_sym_GT_GT, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5355), 1, - anon_sym_PIPE, - ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, - anon_sym_LT, - ACTIONS(5371), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5341), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5349), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5357), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5369), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5365), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89348] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92251] = 26, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4283), 1, - anon_sym_of, - ACTIONS(5343), 1, - anon_sym_AMP_AMP, - ACTIONS(5345), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(5625), 1, anon_sym_GT_GT, - ACTIONS(5351), 1, + ACTIONS(5629), 1, anon_sym_AMP, - ACTIONS(5353), 1, + ACTIONS(5631), 1, anon_sym_CARET, - ACTIONS(5355), 1, + ACTIONS(5633), 1, anon_sym_PIPE, - ACTIONS(5359), 1, + ACTIONS(5637), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, + ACTIONS(5641), 1, anon_sym_LT, - ACTIONS(5371), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, - sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(5617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5341), 2, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, + ACTIONS(5627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5357), 2, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + ACTIONS(5645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, + ACTIONS(5647), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5365), 3, + ACTIONS(5643), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89456] = 32, + ACTIONS(4249), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [92347] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4297), 1, + ACTIONS(4502), 1, anon_sym_of, - ACTIONS(5343), 1, + ACTIONS(5621), 1, anon_sym_AMP_AMP, - ACTIONS(5345), 1, + ACTIONS(5623), 1, anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, + ACTIONS(5625), 1, anon_sym_GT_GT, - ACTIONS(5351), 1, + ACTIONS(5629), 1, anon_sym_AMP, - ACTIONS(5353), 1, + ACTIONS(5631), 1, anon_sym_CARET, - ACTIONS(5355), 1, + ACTIONS(5633), 1, anon_sym_PIPE, - ACTIONS(5359), 1, + ACTIONS(5637), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, + ACTIONS(5641), 1, anon_sym_LT, - ACTIONS(5371), 1, + ACTIONS(5649), 1, anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, + ACTIONS(5651), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(5617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5341), 2, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, + ACTIONS(5627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5357), 2, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + ACTIONS(5645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, + ACTIONS(5647), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5365), 3, + ACTIONS(5643), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89564] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4299), 1, - anon_sym_of, - ACTIONS(5343), 1, - anon_sym_AMP_AMP, - ACTIONS(5345), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, - anon_sym_GT_GT, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, - anon_sym_CARET, - ACTIONS(5355), 1, - anon_sym_PIPE, - ACTIONS(5359), 1, - anon_sym_PERCENT, - ACTIONS(5361), 1, - anon_sym_STAR_STAR, - ACTIONS(5363), 1, - anon_sym_LT, - ACTIONS(5371), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [92455] = 6, + ACTIONS(4429), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(4856), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4853), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4757), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5341), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5357), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, + ACTIONS(4759), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5365), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89672] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92511] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5834), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5869), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5871), 2, + anon_sym_get, + anon_sym_set, + STATE(4552), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92575] = 19, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(5347), 1, + ACTIONS(5625), 1, anon_sym_GT_GT, - ACTIONS(5359), 1, + ACTIONS(5637), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, + ACTIONS(5641), 1, anon_sym_LT, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(5617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5349), 2, + ACTIONS(5627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5357), 2, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4307), 7, + ACTIONS(4251), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -209483,7 +215107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 13, + ACTIONS(4249), 13, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -209497,38 +215121,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [89754] = 14, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5361), 1, - anon_sym_STAR_STAR, - ACTIONS(5676), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [92657] = 6, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_of, + ACTIONS(5873), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 12, + ACTIONS(1674), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -209536,465 +215141,528 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 16, + ACTIONS(1678), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [89826] = 26, + [92713] = 15, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(5325), 1, + anon_sym_RBRACE, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92787] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4307), 1, + anon_sym_as, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(5347), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4209), 1, + anon_sym_of, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5625), 1, anon_sym_GT_GT, - ACTIONS(5351), 1, + ACTIONS(5629), 1, anon_sym_AMP, - ACTIONS(5353), 1, + ACTIONS(5631), 1, anon_sym_CARET, - ACTIONS(5355), 1, + ACTIONS(5633), 1, anon_sym_PIPE, - ACTIONS(5359), 1, + ACTIONS(5637), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, + ACTIONS(5641), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(5617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5341), 2, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, + ACTIONS(5627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5357), 2, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + ACTIONS(5645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, + ACTIONS(5647), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5365), 3, + ACTIONS(5643), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [89922] = 27, + [92895] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4307), 1, + anon_sym_as, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(5343), 1, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4199), 1, + anon_sym_of, + ACTIONS(5621), 1, anon_sym_AMP_AMP, - ACTIONS(5347), 1, + ACTIONS(5623), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5625), 1, anon_sym_GT_GT, - ACTIONS(5351), 1, + ACTIONS(5629), 1, anon_sym_AMP, - ACTIONS(5353), 1, + ACTIONS(5631), 1, anon_sym_CARET, - ACTIONS(5355), 1, + ACTIONS(5633), 1, anon_sym_PIPE, - ACTIONS(5359), 1, + ACTIONS(5637), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, + ACTIONS(5641), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(5617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5341), 2, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, + ACTIONS(5627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5357), 2, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + ACTIONS(5645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, + ACTIONS(5647), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5365), 3, + ACTIONS(5643), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [90020] = 17, + [93003] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4061), 1, + anon_sym_of, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(5359), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5625), 1, + anon_sym_GT_GT, + ACTIONS(5629), 1, + anon_sym_AMP, + ACTIONS(5631), 1, + anon_sym_CARET, + ACTIONS(5633), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - ACTIONS(5676), 1, + ACTIONS(5641), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(5617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5357), 2, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1757), 2, + ACTIONS(5645), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5647), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4307), 8, + ACTIONS(5643), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93111] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4890), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 15, + ACTIONS(4892), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [90098] = 23, + [93161] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5347), 1, - anon_sym_GT_GT, - ACTIONS(5359), 1, - anon_sym_PERCENT, - ACTIONS(5361), 1, - anon_sym_STAR_STAR, - ACTIONS(5363), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5341), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5349), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5357), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5369), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5365), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 8, - sym__ternary_qmark, anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4143), 1, anon_sym_of, + ACTIONS(5621), 1, anon_sym_AMP_AMP, + ACTIONS(5623), 1, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [90188] = 24, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5347), 1, + ACTIONS(5625), 1, anon_sym_GT_GT, - ACTIONS(5351), 1, + ACTIONS(5629), 1, anon_sym_AMP, - ACTIONS(5359), 1, + ACTIONS(5631), 1, + anon_sym_CARET, + ACTIONS(5633), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, + ACTIONS(5641), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5336), 2, + ACTIONS(5617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5341), 2, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, + ACTIONS(5627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5357), 2, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + ACTIONS(5645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, + ACTIONS(5647), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5365), 3, + ACTIONS(5643), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [90280] = 25, + [93269] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(5347), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4145), 1, + anon_sym_of, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5625), 1, anon_sym_GT_GT, - ACTIONS(5351), 1, + ACTIONS(5629), 1, anon_sym_AMP, - ACTIONS(5353), 1, + ACTIONS(5631), 1, anon_sym_CARET, - ACTIONS(5359), 1, + ACTIONS(5633), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, + ACTIONS(5639), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, + ACTIONS(5641), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(5649), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5651), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5336), 2, + ACTIONS(5617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5341), 2, + ACTIONS(5619), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, + ACTIONS(5627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5357), 2, + ACTIONS(5635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + ACTIONS(5645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, + ACTIONS(5647), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5365), 3, + ACTIONS(5643), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [90374] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5359), 1, - anon_sym_PERCENT, - ACTIONS(5361), 1, - anon_sym_STAR_STAR, - ACTIONS(5676), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [93377] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(4859), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -210003,862 +215671,782 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 15, + ACTIONS(4861), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [90450] = 17, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5361), 1, - anon_sym_STAR_STAR, - ACTIONS(5676), 1, + [93427] = 16, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(5325), 1, + anon_sym_RBRACE, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93503] = 6, + ACTIONS(4469), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 11, + ACTIONS(4925), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4922), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(3380), 11, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 14, + ACTIONS(3384), 24, sym__ternary_qmark, - anon_sym_of, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [90528] = 21, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5347), 1, - anon_sym_GT_GT, - ACTIONS(5359), 1, - anon_sym_PERCENT, - ACTIONS(5361), 1, - anon_sym_STAR_STAR, - ACTIONS(5363), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_satisfies, + [93559] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(4883), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5341), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5357), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5365), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4307), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 10, + ACTIONS(4885), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [90614] = 28, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, - anon_sym_GT_GT, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5355), 1, - anon_sym_PIPE, - ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93609] = 6, + ACTIONS(3480), 1, + anon_sym_EQ, + ACTIONS(3570), 1, + anon_sym_in, + ACTIONS(3573), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(3380), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5341), 2, - anon_sym_in, + anon_sym_BANG, anon_sym_GT, - ACTIONS(5349), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5357), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5365), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 5, + ACTIONS(3384), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [90714] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4350), 1, - anon_sym_of, - ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, - anon_sym_GT_GT, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5355), 1, - anon_sym_PIPE, - ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, - anon_sym_LT, - ACTIONS(5371), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93665] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(5296), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5298), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3380), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5341), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5357), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5365), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90822] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4352), 1, - anon_sym_of, - ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, - anon_sym_GT_GT, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5355), 1, - anon_sym_PIPE, - ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, - anon_sym_LT, - ACTIONS(5371), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5341), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5349), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5357), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5369), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5365), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [90930] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93719] = 32, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4370), 1, - anon_sym_of, - ACTIONS(5343), 1, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(5345), 1, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(5351), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(5353), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(5355), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(5359), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, + ACTIONS(5185), 1, anon_sym_LT, - ACTIONS(5371), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1447), 1, + ACTIONS(5876), 1, + anon_sym_COLON, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5341), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5357), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5365), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91038] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [93827] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4372), 1, - anon_sym_of, - ACTIONS(5343), 1, - anon_sym_AMP_AMP, - ACTIONS(5345), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, - anon_sym_GT_GT, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, - anon_sym_CARET, - ACTIONS(5355), 1, - anon_sym_PIPE, - ACTIONS(5359), 1, - anon_sym_PERCENT, - ACTIONS(5361), 1, - anon_sym_STAR_STAR, - ACTIONS(5363), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5878), 2, + sym_number, + sym_private_property_identifier, + STATE(4230), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5371), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93886] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(5880), 2, + sym_number, + sym_private_property_identifier, + STATE(4487), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93945] = 4, + ACTIONS(3522), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3380), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5341), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5357), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5365), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91146] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3384), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3971), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4374), 1, - anon_sym_of, - ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, - anon_sym_GT_GT, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5355), 1, - anon_sym_PIPE, - ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, - anon_sym_LT, - ACTIONS(5371), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [93996] = 13, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5325), 1, + anon_sym_RBRACE, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94065] = 6, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4031), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4540), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5341), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5349), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5357), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5365), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91254] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3384), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4376), 1, - anon_sym_of, - ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, - anon_sym_GT_GT, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5355), 1, - anon_sym_PIPE, - ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, - anon_sym_LT, - ACTIONS(5371), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94120] = 7, + ACTIONS(3416), 1, + anon_sym_EQ, + ACTIONS(4469), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(4922), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4925), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5341), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5357), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5365), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91362] = 32, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4053), 1, - anon_sym_of, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5343), 1, anon_sym_AMP_AMP, - ACTIONS(5345), 1, anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, - anon_sym_GT_GT, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5355), 1, - anon_sym_PIPE, - ACTIONS(5359), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, - anon_sym_LT, - ACTIONS(5371), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5341), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5349), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5357), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5369), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5365), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91470] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94177] = 31, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4388), 1, - anon_sym_of, - ACTIONS(5343), 1, + ACTIONS(5886), 1, anon_sym_AMP_AMP, - ACTIONS(5345), 1, + ACTIONS(5888), 1, anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, + ACTIONS(5890), 1, anon_sym_GT_GT, - ACTIONS(5351), 1, + ACTIONS(5894), 1, anon_sym_AMP, - ACTIONS(5353), 1, + ACTIONS(5896), 1, anon_sym_CARET, - ACTIONS(5355), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5359), 1, + ACTIONS(5902), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, + ACTIONS(5906), 1, anon_sym_LT, - ACTIONS(5371), 1, + ACTIONS(5914), 1, anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, + ACTIONS(5916), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5341), 2, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5357), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5365), 3, + ACTIONS(5908), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91578] = 5, + [94282] = 7, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5679), 2, - anon_sym_EQ, + ACTIONS(3422), 3, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - ACTIONS(5681), 3, + ACTIONS(3418), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3400), 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(3384), 20, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -210876,35 +216464,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91632] = 4, + [94339] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1895), 5, - sym__automatic_semicolon, + ACTIONS(4303), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4301), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1899), 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1901), 23, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -210924,33 +216512,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91684] = 13, + [94392] = 13, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(5683), 1, + ACTIONS(5918), 1, anon_sym_LT, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4170), 12, + ACTIONS(4263), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210963,10 +216551,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 17, + ACTIONS(4265), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -210981,168 +216568,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [91754] = 16, + [94461] = 31, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(5686), 1, + ACTIONS(5886), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5890), 1, + anon_sym_GT_GT, + ACTIONS(5894), 1, + anon_sym_AMP, + ACTIONS(5896), 1, + anon_sym_CARET, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_PERCENT, + ACTIONS(5904), 1, + anon_sym_STAR_STAR, + ACTIONS(5906), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(5914), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5916), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4199), 11, + ACTIONS(5882), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5892), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 15, - sym__ternary_qmark, - anon_sym_of, + ACTIONS(5912), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5908), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94566] = 31, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5886), 1, anon_sym_AMP_AMP, + ACTIONS(5888), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5890), 1, + anon_sym_GT_GT, + ACTIONS(5894), 1, + anon_sym_AMP, + ACTIONS(5896), 1, anon_sym_CARET, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, anon_sym_PERCENT, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5906), 1, + anon_sym_LT, + ACTIONS(5914), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5916), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5882), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5884), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5892), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5910), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5908), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91830] = 32, + [94671] = 31, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(4210), 1, - anon_sym_of, - ACTIONS(5343), 1, + ACTIONS(5886), 1, anon_sym_AMP_AMP, - ACTIONS(5345), 1, + ACTIONS(5888), 1, anon_sym_PIPE_PIPE, - ACTIONS(5347), 1, + ACTIONS(5890), 1, anon_sym_GT_GT, - ACTIONS(5351), 1, + ACTIONS(5894), 1, anon_sym_AMP, - ACTIONS(5353), 1, + ACTIONS(5896), 1, anon_sym_CARET, - ACTIONS(5355), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5359), 1, + ACTIONS(5902), 1, anon_sym_PERCENT, - ACTIONS(5361), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5363), 1, + ACTIONS(5906), 1, anon_sym_LT, - ACTIONS(5371), 1, + ACTIONS(5914), 1, anon_sym_QMARK_QMARK, - ACTIONS(5373), 1, + ACTIONS(5916), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5336), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5341), 2, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5349), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5357), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5367), 2, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 2, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5365), 3, + ACTIONS(5908), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91938] = 12, + [94776] = 16, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5921), 1, anon_sym_LT, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1757), 2, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(4230), 12, + ACTIONS(4508), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -211153,10 +216834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 19, + ACTIONS(4510), 14, sym__ternary_qmark, - anon_sym_as, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -211170,38 +216849,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [92006] = 4, - ACTIONS(3450), 1, + [94851] = 13, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4113), 1, anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94920] = 6, + ACTIONS(4922), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(4469), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4925), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 27, + ACTIONS(3384), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -211221,143 +216954,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92058] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4713), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [94975] = 31, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5886), 1, anon_sym_AMP_AMP, + ACTIONS(5888), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5890), 1, + anon_sym_GT_GT, + ACTIONS(5894), 1, + anon_sym_AMP, + ACTIONS(5896), 1, anon_sym_CARET, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, anon_sym_PERCENT, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5906), 1, + anon_sym_LT, + ACTIONS(5914), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92108] = 3, + ACTIONS(5916), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4717), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5882), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5892), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4350), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5908), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92158] = 11, - ACTIONS(1594), 1, + [95080] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5560), 1, - anon_sym_STAR, - ACTIONS(5692), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5694), 2, + ACTIONS(5830), 2, sym_number, sym_private_property_identifier, - ACTIONS(5696), 2, - anon_sym_get, - anon_sym_set, - STATE(3029), 3, + STATE(4514), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3607), 20, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -211370,310 +217079,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92224] = 32, + [95139] = 19, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, - anon_sym_AMP_AMP, - ACTIONS(5278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, + ACTIONS(5890), 1, anon_sym_GT_GT, - ACTIONS(5284), 1, - anon_sym_AMP, - ACTIONS(5286), 1, - anon_sym_CARET, - ACTIONS(5288), 1, - anon_sym_PIPE, - ACTIONS(5292), 1, + ACTIONS(5902), 1, anon_sym_PERCENT, - ACTIONS(5294), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5296), 1, + ACTIONS(5906), 1, anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5306), 1, - sym__ternary_qmark, - ACTIONS(5698), 1, - anon_sym_COLON, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5272), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5274), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5282), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5290), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5300), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5302), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5298), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [92332] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1889), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1891), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92382] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1899), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1901), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92432] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4626), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4628), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92482] = 5, - ACTIONS(1777), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1769), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1773), 13, - anon_sym_STAR, + ACTIONS(4251), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1775), 25, + ACTIONS(4249), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [92536] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, + [95220] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - ACTIONS(5109), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5924), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, + STATE(4415), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 21, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -211683,6 +217178,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -211695,54 +217192,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92610] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, + [95279] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - ACTIONS(5109), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5926), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, + STATE(4484), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 20, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -211755,106 +217243,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92686] = 3, + [95338] = 31, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5886), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5890), 1, + anon_sym_GT_GT, + ACTIONS(5894), 1, + anon_sym_AMP, + ACTIONS(5896), 1, + anon_sym_CARET, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_PERCENT, + ACTIONS(5904), 1, + anon_sym_STAR_STAR, + ACTIONS(5906), 1, + anon_sym_LT, + ACTIONS(5914), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5916), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4928), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5882), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5892), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4930), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5908), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92736] = 17, + [95443] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - ACTIONS(5644), 1, - anon_sym_COMMA, - ACTIONS(5700), 1, - anon_sym_RBRACE, - STATE(2719), 1, - sym_override_modifier, - STATE(5124), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5928), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, + STATE(4387), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 18, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -211862,35 +217368,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92813] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, + [95502] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5109), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5930), 2, sym_number, sym_private_property_identifier, - STATE(3788), 3, + STATE(4386), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -211918,30 +217419,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92882] = 4, + [95561] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2003), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5461), 2, sym_number, sym_private_property_identifier, - ACTIONS(3743), 11, + STATE(4203), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2001), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -211965,18 +217470,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92933] = 6, - ACTIONS(4678), 1, - anon_sym_EQ, - ACTIONS(4987), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4682), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4676), 13, + [95620] = 12, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5932), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4495), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211987,16 +217504,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4680), 23, + ACTIONS(4497), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212012,35 +217524,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [92988] = 8, + [95687] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5552), 2, + ACTIONS(5935), 2, sym_number, sym_private_property_identifier, - STATE(3767), 3, + STATE(4306), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2307), 23, anon_sym_export, anon_sym_type, @@ -212065,80 +217576,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93047] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, + [95746] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5937), 2, sym_number, sym_private_property_identifier, - STATE(3788), 3, + STATE(4302), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [93116] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5702), 2, - sym_number, - sym_private_property_identifier, - STATE(3366), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -212148,7 +217603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -212172,22 +217627,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93175] = 13, + [95805] = 13, ACTIONS(241), 1, anon_sym_COMMA, + ACTIONS(702), 1, + anon_sym_RBRACE, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5198), 1, - anon_sym_RBRACE, - STATE(4671), 1, + STATE(5988), 1, aux_sym_object_repeat1, - STATE(4672), 1, + STATE(5989), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -212195,11 +217650,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3788), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -212228,33 +217683,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93244] = 8, + [95874] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5526), 2, + ACTIONS(5939), 2, sym_number, sym_private_property_identifier, - STATE(3842), 3, + STATE(4485), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2307), 23, anon_sym_export, anon_sym_type, @@ -212279,25 +217734,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93303] = 7, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(2331), 1, - anon_sym_extends, + [95933] = 6, + ACTIONS(4853), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4417), 2, + ACTIONS(4429), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4856), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1724), 11, + ACTIONS(4757), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -212305,11 +217758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 23, + ACTIONS(4759), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -212329,24 +217783,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93360] = 8, + [95988] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5506), 2, + ACTIONS(5941), 2, sym_number, sym_private_property_identifier, - STATE(3747), 3, + STATE(4298), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -212380,24 +217834,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93419] = 8, + [96047] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 2, + ACTIONS(5943), 2, sym_number, sym_private_property_identifier, - STATE(3731), 3, + STATE(4297), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -212431,184 +217885,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93478] = 7, - ACTIONS(4392), 1, - anon_sym_extends, - ACTIONS(4440), 1, - anon_sym_EQ, + [96106] = 14, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5904), 1, + anon_sym_STAR_STAR, + ACTIONS(5945), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4444), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4447), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4438), 11, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4442), 23, + ACTIONS(4249), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [93535] = 6, - ACTIONS(4697), 1, + [96177] = 26, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(5890), 1, + anon_sym_GT_GT, + ACTIONS(5894), 1, + anon_sym_AMP, + ACTIONS(5896), 1, + anon_sym_CARET, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_PERCENT, + ACTIONS(5904), 1, + anon_sym_STAR_STAR, + ACTIONS(5906), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4700), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5882), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5884), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5892), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 24, - sym__automatic_semicolon, + ACTIONS(5912), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5908), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 6, sym__ternary_qmark, anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [96272] = 27, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, anon_sym_DOT, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, + ACTIONS(4251), 1, + anon_sym_BANG, + ACTIONS(5886), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5890), 1, + anon_sym_GT_GT, + ACTIONS(5894), 1, + anon_sym_AMP, + ACTIONS(5896), 1, anon_sym_CARET, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, anon_sym_PERCENT, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5906), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5882), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5884), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5892), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5910), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5908), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4249), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [93590] = 7, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(4330), 1, - anon_sym_extends, + [96369] = 17, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5902), 1, + anon_sym_PERCENT, + ACTIONS(5904), 1, + anon_sym_STAR_STAR, + ACTIONS(5945), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4691), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4694), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 11, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5882), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5900), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(4249), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [93647] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, + [96446] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5948), 2, sym_number, sym_private_property_identifier, - STATE(3788), 3, + STATE(4187), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -212636,318 +218192,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93716] = 13, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [96505] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5704), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4170), 12, - anon_sym_STAR, + ACTIONS(5950), 2, + sym_number, + sym_private_property_identifier, + STATE(4288), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4172), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [93785] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5707), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96564] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4199), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4201), 14, - sym__ternary_qmark, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [93860] = 31, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(5952), 2, + sym_number, + sym_private_property_identifier, + STATE(4287), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5714), 1, - anon_sym_AMP_AMP, - ACTIONS(5716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96623] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93965] = 12, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(5954), 2, + sym_number, + sym_private_property_identifier, + STATE(3730), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5746), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96682] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 12, - anon_sym_STAR, + ACTIONS(5956), 2, + sym_number, + sym_private_property_identifier, + STATE(4491), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4232), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [94032] = 7, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_QMARK_DOT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96741] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3406), 4, + ACTIONS(5083), 2, + sym_number, + sym_private_property_identifier, + STATE(3728), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3400), 11, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 20, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94089] = 5, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96800] = 7, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(4922), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4404), 4, + ACTIONS(4469), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3400), 11, + ACTIONS(4925), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -212955,10 +218473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -212978,98 +218497,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94142] = 31, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_LBRACK, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(4562), 1, - anon_sym_BANG, - ACTIONS(5714), 1, - anon_sym_AMP_AMP, - ACTIONS(5716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, - anon_sym_LT, - ACTIONS(5742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, - sym__ternary_qmark, - STATE(2519), 1, - sym_type_arguments, - STATE(4772), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2133), 2, - sym_template_string, - sym_arguments, - ACTIONS(5736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [94247] = 8, + [96857] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5958), 2, sym_number, sym_private_property_identifier, - STATE(3824), 3, + STATE(4275), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -213103,35 +218548,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94306] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(725), 1, - anon_sym_RBRACE, + [96916] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5960), 2, sym_number, sym_private_property_identifier, - STATE(3788), 3, + STATE(4274), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -213159,135 +218599,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94375] = 4, - ACTIONS(5107), 1, - sym_regex_flags, + [96975] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5103), 17, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(5105), 22, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(5510), 2, + sym_number, + sym_private_property_identifier, + STATE(4576), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [94426] = 31, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5714), 1, - anon_sym_AMP_AMP, - ACTIONS(5716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [94531] = 4, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97034] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4456), 2, + ACTIONS(4385), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4450), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213301,7 +218671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 25, + ACTIONS(4311), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -213327,83 +218697,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94582] = 16, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - STATE(2719), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5749), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94657] = 8, + [97085] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5468), 2, + ACTIONS(5962), 2, sym_number, sym_private_property_identifier, - STATE(3878), 3, + STATE(4406), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -213437,30 +218748,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94716] = 8, + [97144] = 13, + ACTIONS(241), 1, + anon_sym_COMMA, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, + ACTIONS(5338), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5381), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3854), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3921), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -213488,38 +218804,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94775] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, + [97213] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5200), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5435), 2, sym_number, sym_private_property_identifier, - STATE(3788), 3, + STATE(4343), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2307), 23, anon_sym_export, anon_sym_type, @@ -213544,24 +218855,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94844] = 8, + [97272] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5604), 2, + ACTIONS(5964), 2, sym_number, sym_private_property_identifier, - STATE(3822), 3, + STATE(4498), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -213595,37 +218906,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94903] = 7, - ACTIONS(4039), 1, - anon_sym_QMARK, - ACTIONS(4041), 1, - anon_sym_extends, + [97331] = 4, + ACTIONS(5123), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4697), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3400), 11, + ACTIONS(5119), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(5121), 22, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -213640,38 +218950,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + [97382] = 23, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5890), 1, + anon_sym_GT_GT, + ACTIONS(5902), 1, + anon_sym_PERCENT, + ACTIONS(5904), 1, + anon_sym_STAR_STAR, + ACTIONS(5906), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5882), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5884), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5892), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5910), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5912), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5908), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [94960] = 8, + [97471] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5630), 2, + ACTIONS(5966), 2, sym_number, sym_private_property_identifier, - STATE(3880), 3, + STATE(4510), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2307), 23, anon_sym_export, anon_sym_type, @@ -213696,33 +219070,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95019] = 8, + [97530] = 24, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5890), 1, + anon_sym_GT_GT, + ACTIONS(5894), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_PERCENT, + ACTIONS(5904), 1, + anon_sym_STAR_STAR, + ACTIONS(5906), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4251), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5882), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5884), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5892), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5910), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5912), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5908), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [97621] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5391), 2, + ACTIONS(5968), 2, sym_number, sym_private_property_identifier, - STATE(3734), 3, + STATE(4526), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2307), 23, anon_sym_export, anon_sym_type, @@ -213747,73 +219188,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95078] = 6, - ACTIONS(4691), 1, + [97680] = 25, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5890), 1, + anon_sym_GT_GT, + ACTIONS(5894), 1, + anon_sym_AMP, + ACTIONS(5896), 1, + anon_sym_CARET, + ACTIONS(5902), 1, + anon_sym_PERCENT, + ACTIONS(5904), 1, + anon_sym_STAR_STAR, + ACTIONS(5906), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4694), 3, - anon_sym_GT, - anon_sym_AMP, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4251), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(5882), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5884), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5892), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 24, - sym__automatic_semicolon, + ACTIONS(5912), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5908), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4249), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [95133] = 8, + [97773] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5532), 2, + ACTIONS(5970), 2, sym_number, sym_private_property_identifier, - STATE(3798), 3, + STATE(4540), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -213847,36 +219307,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95192] = 6, - ACTIONS(4878), 1, + [97832] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 2, + ACTIONS(5972), 2, + sym_number, + sym_private_property_identifier, + STATE(4544), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4881), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4774), 10, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97891] = 6, + ACTIONS(4638), 1, + anon_sym_EQ, + ACTIONS(5095), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4642), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4636), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 24, - sym__automatic_semicolon, + ACTIONS(4640), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -213896,15 +219407,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95247] = 4, + [97946] = 16, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(5902), 1, + anon_sym_PERCENT, + ACTIONS(5904), 1, + anon_sym_STAR_STAR, + ACTIONS(5945), 1, + anon_sym_LT, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4460), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4450), 13, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5882), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -213913,584 +219449,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 25, - sym__automatic_semicolon, + ACTIONS(4249), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [95298] = 31, + [98021] = 17, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(5714), 1, - anon_sym_AMP_AMP, - ACTIONS(5716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5734), 1, + ACTIONS(5945), 1, anon_sym_LT, - ACTIONS(5742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, - sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5710), 2, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(4251), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5738), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 2, + ACTIONS(4249), 13, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5736), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95403] = 31, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5714), 1, - anon_sym_AMP_AMP, - ACTIONS(5716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, - anon_sym_LT, - ACTIONS(5742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95508] = 31, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5714), 1, - anon_sym_AMP_AMP, - ACTIONS(5716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, - anon_sym_LT, - ACTIONS(5742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95613] = 31, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5714), 1, - anon_sym_AMP_AMP, - ACTIONS(5716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, - anon_sym_LT, - ACTIONS(5742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95718] = 31, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5714), 1, - anon_sym_AMP_AMP, - ACTIONS(5716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, - anon_sym_LT, - ACTIONS(5742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95823] = 19, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [98098] = 13, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(725), 1, + anon_sym_RBRACE, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4305), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [95904] = 14, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5752), 1, + anon_sym_COLON, anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4305), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [95975] = 23, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(3713), 1, - anon_sym_AT, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5755), 1, - anon_sym_STAR, - ACTIONS(5757), 1, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(5761), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(5763), 1, anon_sym_readonly, - ACTIONS(5767), 1, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(5769), 1, - anon_sym_abstract, - ACTIONS(5771), 1, - anon_sym_accessor, - STATE(2575), 1, - sym_method_definition, - STATE(2638), 1, - sym_accessibility_modifier, - STATE(2671), 1, - aux_sym_export_statement_repeat1, - STATE(2697), 1, - sym_decorator, - STATE(2699), 1, - sym_override_modifier, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98167] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5759), 2, + ACTIONS(5974), 2, sym_number, sym_private_property_identifier, - ACTIONS(5765), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3631), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2992), 3, + STATE(4224), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3607), 13, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -214498,501 +219633,504 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96064] = 26, + [98226] = 21, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5890), 1, anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, + ACTIONS(5902), 1, anon_sym_PERCENT, - ACTIONS(5732), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5734), 1, + ACTIONS(5906), 1, anon_sym_LT, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5710), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5712), 2, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5720), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5736), 3, + ACTIONS(5908), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 6, + ACTIONS(4251), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4249), 9, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [96159] = 27, + [98311] = 28, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4307), 1, + ACTIONS(4251), 1, anon_sym_BANG, - ACTIONS(5714), 1, + ACTIONS(5886), 1, anon_sym_AMP_AMP, - ACTIONS(5718), 1, + ACTIONS(5888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5890), 1, anon_sym_GT_GT, - ACTIONS(5722), 1, + ACTIONS(5894), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5896), 1, anon_sym_CARET, - ACTIONS(5726), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5730), 1, + ACTIONS(5902), 1, anon_sym_PERCENT, - ACTIONS(5732), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5734), 1, + ACTIONS(5906), 1, anon_sym_LT, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5710), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5712), 2, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5720), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5738), 2, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 2, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5736), 3, + ACTIONS(5908), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 5, + ACTIONS(4249), 4, sym__ternary_qmark, anon_sym_as, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [96256] = 17, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5752), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [98410] = 7, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(2325), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, + ACTIONS(4243), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4246), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1674), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5728), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 14, + ACTIONS(1678), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [96333] = 23, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_satisfies, + [98467] = 7, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, + ACTIONS(4289), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4292), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4283), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5738), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 7, + ACTIONS(4287), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [96422] = 24, + [98524] = 31, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(5718), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5886), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5890), 1, anon_sym_GT_GT, - ACTIONS(5722), 1, + ACTIONS(5894), 1, anon_sym_AMP, - ACTIONS(5730), 1, + ACTIONS(5896), 1, + anon_sym_CARET, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, anon_sym_PERCENT, - ACTIONS(5732), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5734), 1, + ACTIONS(5906), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(5914), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5916), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5710), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5712), 2, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5720), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5738), 2, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 2, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5736), 3, + ACTIONS(5908), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [96513] = 25, + [98629] = 31, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(5718), 1, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5886), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5890), 1, anon_sym_GT_GT, - ACTIONS(5722), 1, + ACTIONS(5894), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5896), 1, anon_sym_CARET, - ACTIONS(5730), 1, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, anon_sym_PERCENT, - ACTIONS(5732), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5734), 1, + ACTIONS(5906), 1, anon_sym_LT, - STATE(1447), 1, + ACTIONS(5914), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5916), 1, + sym__ternary_qmark, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4307), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5710), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5712), 2, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5720), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5738), 2, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 2, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5736), 3, + ACTIONS(5908), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4305), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [96606] = 16, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [98734] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5752), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 10, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4305), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [96681] = 17, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(5724), 2, + sym_number, + sym_private_property_identifier, + STATE(4597), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98793] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5976), 2, + sym_number, + sym_private_property_identifier, + STATE(4339), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5752), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98852] = 5, + ACTIONS(3416), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(4307), 11, + ACTIONS(3602), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3380), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -215001,323 +220139,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 13, + ACTIONS(3384), 23, sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [96758] = 21, - ACTIONS(825), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + anon_sym_satisfies, + [98905] = 7, + ACTIONS(3554), 1, + anon_sym_EQ, + ACTIONS(4922), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, + ACTIONS(4469), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4925), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4307), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4305), 9, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [96843] = 28, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4059), 1, anon_sym_QMARK_DOT, - ACTIONS(4307), 1, - anon_sym_BANG, - ACTIONS(5714), 1, anon_sym_AMP_AMP, - ACTIONS(5716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, anon_sym_PERCENT, - ACTIONS(5732), 1, anon_sym_STAR_STAR, - ACTIONS(5734), 1, - anon_sym_LT, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5740), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5736), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4305), 4, - sym__ternary_qmark, - anon_sym_as, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [96942] = 31, - ACTIONS(825), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, anon_sym_satisfies, - ACTIONS(5714), 1, - anon_sym_AMP_AMP, - ACTIONS(5716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, - anon_sym_LT, - ACTIONS(5742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, + [98962] = 17, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(5978), 1, + anon_sym_RBRACE, + STATE(3097), 1, + sym_override_modifier, + STATE(5899), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97047] = 31, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99039] = 31, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(5714), 1, + ACTIONS(5886), 1, anon_sym_AMP_AMP, - ACTIONS(5716), 1, + ACTIONS(5888), 1, anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, + ACTIONS(5890), 1, anon_sym_GT_GT, - ACTIONS(5722), 1, + ACTIONS(5894), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5896), 1, anon_sym_CARET, - ACTIONS(5726), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5730), 1, + ACTIONS(5902), 1, anon_sym_PERCENT, - ACTIONS(5732), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5734), 1, + ACTIONS(5906), 1, anon_sym_LT, - ACTIONS(5742), 1, + ACTIONS(5914), 1, anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, + ACTIONS(5916), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5710), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5712), 2, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5720), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5738), 2, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 2, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5736), 3, + ACTIONS(5908), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97152] = 8, + [99144] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5556), 2, + ACTIONS(5542), 2, sym_number, sym_private_property_identifier, - STATE(3808), 3, + STATE(4239), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -215351,400 +220401,1076 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97211] = 31, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, + [99203] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5714), 1, - anon_sym_AMP_AMP, - ACTIONS(5716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, - anon_sym_LT, - ACTIONS(5742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1757), 2, - sym_template_string, - sym_arguments, - ACTIONS(5736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97316] = 31, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(5558), 2, + sym_number, + sym_private_property_identifier, + STATE(4481), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5714), 1, - anon_sym_AMP_AMP, - ACTIONS(5716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, - anon_sym_GT_GT, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_CARET, - ACTIONS(5726), 1, - anon_sym_PIPE, - ACTIONS(5730), 1, - anon_sym_PERCENT, - ACTIONS(5732), 1, - anon_sym_STAR_STAR, - ACTIONS(5734), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, - sym__ternary_qmark, - STATE(1447), 1, - sym_type_arguments, - STATE(5080), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99262] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5980), 2, + sym_number, + sym_private_property_identifier, + STATE(4207), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99321] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5794), 2, + sym_number, + sym_private_property_identifier, + STATE(4217), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99380] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5982), 2, + sym_number, + sym_private_property_identifier, + STATE(4206), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99439] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5707), 2, + sym_number, + sym_private_property_identifier, + STATE(4394), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99498] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5984), 2, + sym_number, + sym_private_property_identifier, + STATE(4389), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99557] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5986), 2, + sym_number, + sym_private_property_identifier, + STATE(4205), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99616] = 16, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + STATE(3097), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5988), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99691] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5991), 2, + sym_number, + sym_private_property_identifier, + STATE(4209), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99750] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5993), 2, + sym_number, + sym_private_property_identifier, + STATE(4385), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99809] = 31, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5886), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5890), 1, + anon_sym_GT_GT, + ACTIONS(5894), 1, + anon_sym_AMP, + ACTIONS(5896), 1, + anon_sym_CARET, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_PERCENT, + ACTIONS(5904), 1, + anon_sym_STAR_STAR, + ACTIONS(5906), 1, + anon_sym_LT, + ACTIONS(5914), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5916), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5710), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5712), 2, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5720), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5738), 2, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 2, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5736), 3, + ACTIONS(5908), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97421] = 31, + [99914] = 31, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(5714), 1, + ACTIONS(5886), 1, anon_sym_AMP_AMP, - ACTIONS(5716), 1, + ACTIONS(5888), 1, anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, + ACTIONS(5890), 1, anon_sym_GT_GT, - ACTIONS(5722), 1, + ACTIONS(5894), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5896), 1, anon_sym_CARET, - ACTIONS(5726), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5730), 1, + ACTIONS(5902), 1, anon_sym_PERCENT, - ACTIONS(5732), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5734), 1, + ACTIONS(5906), 1, anon_sym_LT, - ACTIONS(5742), 1, + ACTIONS(5914), 1, anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, + ACTIONS(5916), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5710), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5712), 2, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5720), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5738), 2, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 2, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5736), 3, + ACTIONS(5908), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97526] = 31, + [100019] = 13, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(727), 1, + anon_sym_RBRACE, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100088] = 31, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(5714), 1, + ACTIONS(5886), 1, anon_sym_AMP_AMP, - ACTIONS(5716), 1, + ACTIONS(5888), 1, anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, + ACTIONS(5890), 1, anon_sym_GT_GT, - ACTIONS(5722), 1, + ACTIONS(5894), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5896), 1, anon_sym_CARET, - ACTIONS(5726), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5730), 1, + ACTIONS(5902), 1, anon_sym_PERCENT, - ACTIONS(5732), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5734), 1, + ACTIONS(5906), 1, anon_sym_LT, - ACTIONS(5742), 1, + ACTIONS(5914), 1, anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, + ACTIONS(5916), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5710), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5712), 2, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5720), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5738), 2, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 2, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5736), 3, + ACTIONS(5908), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100193] = 7, + ACTIONS(4029), 1, + anon_sym_QMARK, + ACTIONS(4031), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4540), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4537), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3380), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [97631] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100250] = 31, ACTIONS(825), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3987), 1, anon_sym_DOT, - ACTIONS(4051), 1, + ACTIONS(4059), 1, anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5886), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5890), 1, + anon_sym_GT_GT, + ACTIONS(5894), 1, + anon_sym_AMP, + ACTIONS(5896), 1, + anon_sym_CARET, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_PERCENT, + ACTIONS(5904), 1, + anon_sym_STAR_STAR, + ACTIONS(5906), 1, + anon_sym_LT, + ACTIONS(5914), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5916), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5882), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5884), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5892), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5910), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5912), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5908), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100355] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4315), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4309), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4311), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100406] = 31, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + ACTIONS(4101), 1, anon_sym_satisfies, - ACTIONS(5714), 1, + ACTIONS(5886), 1, anon_sym_AMP_AMP, - ACTIONS(5716), 1, + ACTIONS(5888), 1, anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, + ACTIONS(5890), 1, anon_sym_GT_GT, - ACTIONS(5722), 1, + ACTIONS(5894), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5896), 1, anon_sym_CARET, - ACTIONS(5726), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5730), 1, + ACTIONS(5902), 1, anon_sym_PERCENT, - ACTIONS(5732), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5734), 1, + ACTIONS(5906), 1, anon_sym_LT, - ACTIONS(5742), 1, + ACTIONS(5914), 1, anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, + ACTIONS(5916), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(1448), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5854), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5710), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5712), 2, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5720), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5738), 2, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 2, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(1714), 2, sym_template_string, sym_arguments, - ACTIONS(5736), 3, + ACTIONS(5908), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97736] = 8, + [100511] = 13, + ACTIONS(241), 1, + anon_sym_COMMA, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, + ACTIONS(5313), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5664), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3772), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3921), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -215772,33 +221498,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97795] = 8, + [100580] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5995), 2, sym_number, sym_private_property_identifier, - STATE(3914), 3, + STATE(4336), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2307), 23, anon_sym_export, anon_sym_type, @@ -215823,98 +221549,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97854] = 31, - ACTIONS(825), 1, + [100639] = 31, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(4517), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4051), 1, - anon_sym_as, - ACTIONS(4055), 1, + ACTIONS(4555), 1, anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_satisfies, - ACTIONS(5714), 1, + ACTIONS(5886), 1, anon_sym_AMP_AMP, - ACTIONS(5716), 1, + ACTIONS(5888), 1, anon_sym_PIPE_PIPE, - ACTIONS(5718), 1, + ACTIONS(5890), 1, anon_sym_GT_GT, - ACTIONS(5722), 1, + ACTIONS(5894), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5896), 1, anon_sym_CARET, - ACTIONS(5726), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5730), 1, + ACTIONS(5902), 1, anon_sym_PERCENT, - ACTIONS(5732), 1, + ACTIONS(5904), 1, anon_sym_STAR_STAR, - ACTIONS(5734), 1, + ACTIONS(5906), 1, anon_sym_LT, - ACTIONS(5742), 1, + ACTIONS(5914), 1, anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, + ACTIONS(5916), 1, sym__ternary_qmark, - STATE(1447), 1, + STATE(2584), 1, sym_type_arguments, - STATE(5080), 1, + STATE(5898), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 2, + ACTIONS(4099), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5710), 2, + ACTIONS(5882), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5712), 2, + ACTIONS(5884), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5720), 2, + ACTIONS(5892), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5738), 2, + ACTIONS(5910), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5740), 2, + ACTIONS(5912), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1757), 2, + STATE(2246), 2, sym_template_string, sym_arguments, - ACTIONS(5736), 3, + ACTIONS(5908), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97959] = 8, + [100744] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5566), 2, + ACTIONS(5869), 2, sym_number, sym_private_property_identifier, - STATE(3832), 3, + STATE(4552), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -215948,24 +221674,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98018] = 8, + [100803] = 31, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_as, + ACTIONS(4063), 1, + anon_sym_BANG, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4101), 1, + anon_sym_satisfies, + ACTIONS(5886), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5890), 1, + anon_sym_GT_GT, + ACTIONS(5894), 1, + anon_sym_AMP, + ACTIONS(5896), 1, + anon_sym_CARET, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_PERCENT, + ACTIONS(5904), 1, + anon_sym_STAR_STAR, + ACTIONS(5906), 1, + anon_sym_LT, + ACTIONS(5914), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5916), 1, + sym__ternary_qmark, + STATE(1448), 1, + sym_type_arguments, + STATE(5854), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5882), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5884), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5892), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5910), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5912), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1714), 2, + sym_template_string, + sym_arguments, + ACTIONS(5908), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100908] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5572), 2, + ACTIONS(5582), 2, sym_number, sym_private_property_identifier, - STATE(3834), 3, + STATE(4184), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -215999,24 +221799,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98077] = 8, - ACTIONS(1594), 1, + [100967] = 8, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4993), 2, + ACTIONS(5997), 2, sym_number, sym_private_property_identifier, - STATE(3277), 3, + STATE(4263), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -216026,7 +221826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216050,24 +221850,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98136] = 8, + [101026] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5773), 2, + ACTIONS(5999), 2, sym_number, sym_private_property_identifier, - STATE(3897), 3, + STATE(4265), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -216101,81 +221901,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98195] = 5, - ACTIONS(3402), 1, - anon_sym_EQ, + [101085] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 3, + ACTIONS(1963), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 11, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3400), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [98248] = 8, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1961), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101136] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5486), 2, + ACTIONS(5842), 2, sym_number, sym_private_property_identifier, - STATE(3843), 3, + STATE(4245), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2307), 23, anon_sym_export, anon_sym_type, @@ -216200,38 +221999,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98307] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, + [101195] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5536), 2, sym_number, sym_private_property_identifier, - STATE(3788), 3, + STATE(4482), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2307), 23, anon_sym_export, anon_sym_type, @@ -216256,33 +222050,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98376] = 8, + [101254] = 8, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5408), 2, + ACTIONS(5576), 2, sym_number, sym_private_property_identifier, - STATE(3757), 3, + STATE(4496), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2307), 23, anon_sym_export, anon_sym_type, @@ -216307,61 +222101,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98435] = 19, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(1935), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2275), 1, + [101313] = 23, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5779), 1, + ACTIONS(6001), 1, + anon_sym_STAR, + ACTIONS(6003), 1, anon_sym_async, - ACTIONS(5781), 1, + ACTIONS(6007), 1, anon_sym_static, - ACTIONS(5783), 1, + ACTIONS(6009), 1, anon_sym_readonly, - ACTIONS(5789), 1, - anon_sym_override, - STATE(2682), 1, + ACTIONS(6011), 1, + anon_sym_get, + ACTIONS(6013), 1, + anon_sym_set, + ACTIONS(6015), 1, + anon_sym_declare, + ACTIONS(6017), 1, + anon_sym_abstract, + ACTIONS(6019), 1, + anon_sym_accessor, + STATE(2917), 1, sym_accessibility_modifier, - STATE(2711), 1, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, + STATE(3114), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5650), 2, + ACTIONS(6005), 2, sym_number, sym_private_property_identifier, - ACTIONS(5777), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5785), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5787), 3, + ACTIONS(3633), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3611), 3, + STATE(3423), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5214), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5775), 14, + ACTIONS(3609), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -216369,37 +222166,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98516] = 7, - ACTIONS(3556), 1, - anon_sym_EQ, - ACTIONS(4691), 1, - anon_sym_LBRACK, + [101401] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 2, + ACTIONS(4904), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4694), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6021), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(6024), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -216419,37 +222212,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98573] = 7, - ACTIONS(3560), 1, + [101451] = 4, + ACTIONS(3532), 1, anon_sym_EQ, - ACTIONS(4691), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4694), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(3384), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -216469,33 +222258,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98630] = 4, - ACTIONS(3542), 1, + [101501] = 7, + ACTIONS(3478), 1, anon_sym_EQ, + ACTIONS(4922), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(4469), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4925), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3380), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 26, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -216515,51 +222307,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [98681] = 8, + [101557] = 15, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4599), 1, anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + STATE(3097), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5791), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3840), 3, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3921), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 23, + ACTIONS(2307), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -216567,34 +222364,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98740] = 8, - ACTIONS(2275), 1, + [101629] = 9, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, + ACTIONS(6031), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5544), 2, + ACTIONS(6029), 2, sym_number, sym_private_property_identifier, - STATE(3817), 3, + STATE(3771), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 9, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216618,38 +222415,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98799] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_readonly, - STATE(2754), 1, - sym_override_modifier, + [101689] = 6, + ACTIONS(4113), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5793), 2, + ACTIONS(3975), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1963), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3358), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(1961), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216658,12 +222448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -216671,15 +222463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98863] = 4, + [101743] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4794), 3, + ACTIONS(4725), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5797), 13, + ACTIONS(6033), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216693,7 +222485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5800), 23, + ACTIONS(6036), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -216717,114 +222509,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98913] = 7, - ACTIONS(3475), 1, + [101793] = 6, + ACTIONS(3498), 1, + anon_sym_RBRACK, + ACTIONS(3515), 1, + anon_sym_COMMA, + ACTIONS(3595), 1, anon_sym_EQ, - ACTIONS(4691), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4694), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [98969] = 6, - ACTIONS(4440), 1, - anon_sym_EQ, - ACTIONS(4761), 1, - anon_sym_RBRACK, - ACTIONS(4985), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4438), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4442), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99023] = 6, - ACTIONS(4678), 1, - anon_sym_EQ, - ACTIONS(4682), 1, - anon_sym_RBRACK, - ACTIONS(4987), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4676), 13, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216838,7 +222533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4680), 23, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -216862,17 +222557,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99077] = 12, + [101847] = 13, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(5236), 1, anon_sym_STAR, + ACTIONS(5978), 1, + anon_sym_RBRACE, + STATE(5899), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -216882,14 +222581,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - ACTIONS(5749), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3788), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -216916,97 +222612,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99143] = 6, - ACTIONS(1726), 1, + [101915] = 6, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(4747), 1, - anon_sym_RBRACK, - ACTIONS(4989), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1724), 13, + ACTIONS(3975), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2003), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1728), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99197] = 13, - ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5749), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -217019,30 +222660,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99265] = 11, - ACTIONS(1594), 1, + [101969] = 11, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5803), 1, + ACTIONS(6041), 1, anon_sym_readonly, - STATE(2728), 1, + STATE(3161), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4993), 2, + ACTIONS(6039), 2, sym_number, sym_private_property_identifier, - STATE(3277), 3, + STATE(3844), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -217050,7 +222691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 21, + ACTIONS(3609), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217072,30 +222713,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99329] = 11, - ACTIONS(1594), 1, + [102033] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1740), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6043), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6046), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102083] = 9, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5807), 1, - anon_sym_readonly, - STATE(2758), 1, - sym_override_modifier, + ACTIONS(5091), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5805), 2, + ACTIONS(5083), 2, sym_number, sym_private_property_identifier, - STATE(3371), 3, + STATE(3728), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -217103,7 +222786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 21, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217112,12 +222795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -217125,26 +222810,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99393] = 9, - ACTIONS(1594), 1, + [102143] = 11, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5001), 1, - anon_sym_abstract, + ACTIONS(6051), 1, + anon_sym_readonly, + STATE(3123), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4993), 2, + ACTIONS(6049), 2, sym_number, sym_private_property_identifier, - STATE(3277), 3, + STATE(3768), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -217152,7 +222841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217161,14 +222850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -217176,34 +222863,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99453] = 9, - ACTIONS(1594), 1, + [102207] = 6, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4625), 1, + anon_sym_RBRACK, + ACTIONS(5099), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4283), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4287), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102261] = 4, + ACTIONS(3508), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3380), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102311] = 12, + ACTIONS(2275), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5811), 1, - anon_sym_abstract, + ACTIONS(5236), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5809), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(3372), 3, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5988), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3921), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217213,8 +222999,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -217227,36 +223011,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99513] = 3, + [102377] = 13, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3133), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5988), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3131), 27, + ACTIONS(2307), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -217269,23 +223066,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, + [102445] = 6, + ACTIONS(4031), 1, anon_sym_extends, - [99561] = 6, - ACTIONS(4691), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4694), 2, + ACTIONS(4537), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4540), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4330), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3400), 11, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217297,9 +223090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -217320,35 +223114,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99615] = 6, - ACTIONS(4697), 1, - anon_sym_LBRACK, + [102499] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4041), 3, + ACTIONS(1797), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3400), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6053), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 22, + ACTIONS(6056), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -217368,29 +223160,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99669] = 3, + [102549] = 9, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(6061), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3125), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6059), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(3769), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3123), 27, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -217410,17 +223211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [99717] = 4, + [102609] = 6, + ACTIONS(4638), 1, + anon_sym_EQ, + ACTIONS(4642), 1, + anon_sym_RBRACK, + ACTIONS(5095), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4460), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4450), 13, + ACTIONS(4636), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217434,12 +223235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 24, + ACTIONS(4640), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -217459,15 +223259,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99767] = 4, + [102663] = 6, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(4583), 1, + anon_sym_RBRACK, + ACTIONS(5093), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1865), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5813), 13, + ACTIONS(1674), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217481,7 +223283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 23, + ACTIONS(1678), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -217505,33 +223307,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99817] = 4, + [102717] = 6, + ACTIONS(4537), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1740), 3, + ACTIONS(4540), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4031), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5819), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5822), 23, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -217551,15 +223355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99867] = 4, + [102771] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4930), 3, + ACTIONS(4896), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5825), 13, + ACTIONS(6063), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217573,7 +223377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5828), 23, + ACTIONS(6066), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -217597,65 +223401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99917] = 9, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5831), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5702), 2, - sym_number, - sym_private_property_identifier, - STATE(3366), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3607), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [99977] = 4, + [102821] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4456), 2, + ACTIONS(4315), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4450), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217669,7 +223422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4452), 24, + ACTIONS(4311), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -217694,15 +223447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100027] = 4, + [102871] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1901), 3, + ACTIONS(1807), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5833), 13, + ACTIONS(6069), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217716,7 +223469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5836), 23, + ACTIONS(6072), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -217740,64 +223493,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100077] = 9, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5841), 1, - anon_sym_abstract, + [102921] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5839), 2, - sym_number, - sym_private_property_identifier, - STATE(3255), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1750), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3607), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100137] = 4, - ACTIONS(3501), 1, - anon_sym_EQ, + ACTIONS(6075), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6078), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102971] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(4900), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6081), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217811,12 +223561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 25, - sym__automatic_semicolon, + ACTIONS(6084), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -217837,30 +223585,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100187] = 11, - ACTIONS(1594), 1, + [103021] = 11, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(3633), 1, + ACTIONS(3635), 1, anon_sym_override, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5845), 1, + ACTIONS(6087), 1, anon_sym_readonly, - STATE(2776), 1, + STATE(3211), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5843), 2, + ACTIONS(5083), 2, sym_number, sym_private_property_identifier, - STATE(3413), 3, + STATE(3728), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -217868,7 +223616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 21, + ACTIONS(3609), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217890,26 +223638,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100251] = 9, - ACTIONS(1594), 1, + [103085] = 9, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5849), 1, + ACTIONS(6091), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5847), 2, + ACTIONS(6089), 2, sym_number, sym_private_property_identifier, - STATE(3443), 3, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -217917,7 +223665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217941,77 +223689,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100311] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4725), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5851), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5854), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + [103145] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100361] = 6, - ACTIONS(4243), 1, - anon_sym_EQ, + ACTIONS(6095), 1, + anon_sym_readonly, + STATE(3224), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3959), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1993), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6093), 2, sym_number, sym_private_property_identifier, - ACTIONS(3743), 7, + STATE(3828), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1991), 23, + ACTIONS(3609), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218020,14 +223729,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -218035,15 +223742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100415] = 4, + [103209] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1831), 3, + ACTIONS(4385), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5857), 13, + anon_sym_extends, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218057,11 +223763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5860), 23, + ACTIONS(4311), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218081,20 +223788,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100465] = 6, - ACTIONS(4878), 1, + [103259] = 6, + ACTIONS(4853), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4881), 2, + ACTIONS(4856), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4408), 3, + ACTIONS(4429), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4774), 11, + ACTIONS(4757), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218106,7 +223813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 22, + ACTIONS(4759), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -218129,47 +223836,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100519] = 6, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3959), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2003), 6, - anon_sym_STAR, - anon_sym_LBRACK, + [103313] = 23, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2275), 1, anon_sym_DQUOTE, + ACTIONS(2277), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2001), 23, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6097), 1, anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(6099), 1, + anon_sym_STAR, + ACTIONS(6101), 1, + anon_sym_class, + ACTIONS(6103), 1, anon_sym_async, - anon_sym_new, - sym_identifier, + ACTIONS(6107), 1, anon_sym_static, + ACTIONS(6109), 1, anon_sym_readonly, + ACTIONS(6111), 1, anon_sym_get, + ACTIONS(6113), 1, anon_sym_set, - anon_sym_declare, + ACTIONS(6117), 1, + anon_sym_abstract, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, + STATE(3074), 1, + sym_accessibility_modifier, + STATE(3102), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6105), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6115), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, + STATE(4282), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 13, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -218177,33 +223901,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100573] = 4, + [103401] = 6, + ACTIONS(4922), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4926), 3, + ACTIONS(4925), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5863), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3380), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5866), 23, + ACTIONS(3384), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218223,56 +223949,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100623] = 15, - ACTIONS(2275), 1, + [103455] = 9, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4634), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - STATE(2719), 1, - sym_override_modifier, + ACTIONS(6119), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5954), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5869), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3788), 3, + STATE(3730), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 18, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -218280,88 +224000,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100695] = 6, - ACTIONS(4041), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4697), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4700), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3400), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100749] = 13, - ACTIONS(2275), 1, + [103515] = 11, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - ACTIONS(5644), 1, - anon_sym_COMMA, - ACTIONS(5700), 1, - anon_sym_RBRACE, - STATE(5124), 1, - aux_sym_object_repeat1, + ACTIONS(6121), 1, + anon_sym_readonly, + STATE(3228), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5954), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, + STATE(3730), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 21, + ACTIONS(3609), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218370,12 +224040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -218383,22 +224053,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100817] = 14, + [103579] = 14, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, ACTIONS(2309), 1, anon_sym_async, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - ACTIONS(5644), 1, + ACTIONS(4865), 1, anon_sym_COMMA, - ACTIONS(5700), 1, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(5978), 1, anon_sym_RBRACE, - STATE(5124), 1, + STATE(5899), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -218409,11 +224079,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2313), 2, anon_sym_get, anon_sym_set, - STATE(3788), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -218439,66 +224109,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100887] = 4, - ACTIONS(3518), 1, + [103649] = 6, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3400), 13, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(3570), 1, anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100937] = 6, - ACTIONS(3496), 1, - anon_sym_RBRACK, - ACTIONS(3514), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_EQ, + ACTIONS(3573), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(3380), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -218509,7 +224132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -218533,131 +224156,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100991] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5871), 1, - anon_sym_readonly, - STATE(2755), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5702), 2, - sym_number, - sym_private_property_identifier, - STATE(3366), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3607), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101055] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3129), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3127), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [101103] = 9, + [103702] = 9, ACTIONS(241), 1, anon_sym_COMMA, ACTIONS(702), 1, anon_sym_RBRACE, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5988), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2003), 6, + ACTIONS(1963), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2001), 23, + ACTIONS(1961), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218681,33 +224206,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101162] = 9, + [103761] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(5202), 1, + ACTIONS(5336), 1, anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1993), 6, + ACTIONS(2003), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1991), 23, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218731,24 +224256,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101221] = 8, - ACTIONS(1594), 1, + [103820] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5873), 2, + ACTIONS(6123), 2, sym_number, sym_private_property_identifier, - STATE(3365), 3, + STATE(3834), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -218756,7 +224281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218780,132 +224305,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101278] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4243), 1, + [103877] = 6, + ACTIONS(1676), 1, anon_sym_EQ, - ACTIONS(5198), 1, - anon_sym_RBRACE, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5093), 1, + anon_sym_of, + ACTIONS(5873), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2003), 6, + ACTIONS(1674), 12, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2001), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101337] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5875), 2, - sym_number, - sym_private_property_identifier, - STATE(3305), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3607), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101394] = 6, - ACTIONS(4440), 1, - anon_sym_EQ, - ACTIONS(4985), 1, - anon_sym_of, - ACTIONS(5395), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4438), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4442), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1678), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -218926,21 +224352,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101447] = 6, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4519), 1, - anon_sym_LPAREN, + [103930] = 6, + ACTIONS(4638), 1, + anon_sym_EQ, + ACTIONS(5095), 1, + anon_sym_of, + ACTIONS(5866), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2222), 2, - sym_template_string, - sym_arguments, - ACTIONS(4035), 13, + ACTIONS(4636), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -218951,9 +224375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4037), 21, + ACTIONS(4640), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -218972,19 +224397,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [101500] = 4, - ACTIONS(5107), 1, - sym_regex_flags, + [103983] = 6, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(5099), 1, + anon_sym_of, + ACTIONS(5863), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5103), 17, + ACTIONS(4283), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -218995,10 +224422,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(5105), 20, + ACTIONS(4287), 23, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -219015,22 +224441,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [101549] = 6, - ACTIONS(4678), 1, + anon_sym_satisfies, + [104036] = 8, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(6125), 1, + anon_sym_DOT, + ACTIONS(6127), 1, + anon_sym_LT, + STATE(3010), 1, + sym_arguments, + STATE(6125), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3490), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3488), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104093] = 4, + ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(4987), 1, - anon_sym_of, - ACTIONS(5398), 1, - anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4676), 12, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -219041,10 +224515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4680), 23, + ACTIONS(3384), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -219065,32 +224540,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101602] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + [104142] = 9, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5338), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5877), 2, - sym_number, - sym_private_property_identifier, - STATE(3309), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3921), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219114,24 +224590,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101659] = 8, - ACTIONS(1594), 1, + [104201] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5879), 2, + ACTIONS(6129), 2, sym_number, sym_private_property_identifier, - STATE(3383), 3, + STATE(3822), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219139,7 +224615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219163,32 +224639,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101716] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + [104258] = 9, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5338), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5881), 2, - sym_number, - sym_private_property_identifier, - STATE(3388), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3921), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(1963), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1961), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219212,24 +224689,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101773] = 8, - ACTIONS(1594), 1, + [104317] = 4, + ACTIONS(3554), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3380), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104366] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5883), 2, + ACTIONS(6131), 2, sym_number, sym_private_property_identifier, - STATE(3326), 3, + STATE(3846), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219237,7 +224759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219261,24 +224783,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101830] = 8, - ACTIONS(1594), 1, + [104423] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5885), 2, + ACTIONS(6133), 2, sym_number, sym_private_property_identifier, - STATE(3402), 3, + STATE(3794), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219286,7 +224808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219310,24 +224832,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101887] = 8, - ACTIONS(1594), 1, + [104480] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5887), 2, + ACTIONS(6135), 2, sym_number, sym_private_property_identifier, - STATE(3407), 3, + STATE(3709), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219335,7 +224857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219359,33 +224881,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101944] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, + [104537] = 4, + ACTIONS(5123), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1993), 6, + ACTIONS(5119), 17, anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5121), 20, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [104586] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, + ACTIONS(1586), 1, anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6137), 2, sym_number, sym_private_property_identifier, - ACTIONS(1991), 23, + STATE(3746), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219409,82 +224975,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102003] = 9, + [104643] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + ACTIONS(5336), 1, + anon_sym_RBRACE, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1993), 6, + ACTIONS(1963), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1991), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102062] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5889), 2, - sym_number, - sym_private_property_identifier, - STATE(3339), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(1961), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219508,21 +225025,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102119] = 9, + [104702] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(5202), 1, + ACTIONS(725), 1, anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -219558,68 +225075,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102178] = 6, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(4989), 1, - anon_sym_of, - ACTIONS(5401), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1724), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1728), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [102231] = 9, + [104761] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(725), 1, + ACTIONS(702), 1, anon_sym_RBRACE, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5988), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -219655,37 +225125,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102290] = 11, + [104820] = 10, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5869), 2, + ACTIONS(5988), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3788), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 21, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219695,6 +225162,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -219707,183 +225176,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102353] = 6, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_in, - ACTIONS(3589), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3400), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [102406] = 12, - ACTIONS(2275), 1, + [104881] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(4634), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(6139), 2, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5869), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3788), 3, + STATE(3780), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2307), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102471] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4243), 1, + ACTIONS(3921), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5200), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1993), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1991), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102530] = 9, - ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(5200), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2003), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2001), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219907,24 +225225,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102589] = 8, - ACTIONS(1594), 1, + [104938] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5891), 2, + ACTIONS(6141), 2, sym_number, sym_private_property_identifier, - STATE(3262), 3, + STATE(3839), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219932,7 +225250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219956,24 +225274,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102646] = 8, - ACTIONS(1594), 1, + [104995] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5893), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(3412), 3, + STATE(3865), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219981,7 +225299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220005,33 +225323,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102703] = 9, - ACTIONS(241), 1, + [105052] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(4865), 1, anon_sym_COMMA, - ACTIONS(727), 1, + ACTIONS(5978), 1, anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4671), 1, + STATE(5899), 1, aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2003), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2001), 23, + ACTIONS(2307), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220055,24 +225375,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102762] = 8, - ACTIONS(1594), 1, + [105115] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5895), 2, + ACTIONS(6145), 2, sym_number, sym_private_property_identifier, - STATE(3314), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -220080,7 +225400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220104,35 +225424,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102819] = 11, - ACTIONS(2275), 1, + [105172] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(5644), 1, - anon_sym_COMMA, - ACTIONS(5700), 1, - anon_sym_RBRACE, - STATE(5124), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(6147), 2, sym_number, sym_private_property_identifier, - STATE(3788), 3, + STATE(3727), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220156,24 +225473,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102882] = 8, - ACTIONS(1594), 1, + [105229] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5897), 2, + ACTIONS(6149), 2, sym_number, sym_private_property_identifier, - STATE(3420), 3, + STATE(3773), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -220181,7 +225498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220205,34 +225522,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102939] = 10, - ACTIONS(2275), 1, + [105286] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(2277), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4634), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(6151), 2, sym_number, sym_private_property_identifier, - ACTIONS(5749), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3788), 3, + STATE(3763), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, - anon_sym_LPAREN, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2307), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220256,78 +225571,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103000] = 4, - ACTIONS(3556), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3400), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [103049] = 9, + [105343] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(5198), 1, + ACTIONS(727), 1, anon_sym_RBRACE, - STATE(4671), 1, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, aux_sym_object_repeat1, - STATE(4672), 1, + STATE(5989), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1993), 6, + ACTIONS(1963), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1991), 23, + ACTIONS(1961), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220351,13 +225621,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103108] = 4, - ACTIONS(3560), 1, + [105402] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6153), 2, + sym_number, + sym_private_property_identifier, + STATE(3741), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 7, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [105459] = 6, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4517), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + STATE(2313), 2, + sym_template_string, + sym_arguments, + ACTIONS(4033), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220371,11 +225695,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 24, + ACTIONS(4035), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -220394,35 +225716,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [103157] = 9, + [105512] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(725), 1, + ACTIONS(727), 1, anon_sym_RBRACE, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1993), 6, + ACTIONS(2003), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1991), 23, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220446,24 +225767,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103216] = 8, - ACTIONS(1594), 1, + [105571] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5899), 2, + ACTIONS(6155), 2, sym_number, sym_private_property_identifier, - STATE(3316), 3, + STATE(3729), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -220471,7 +225792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220495,32 +225816,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103273] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + [105628] = 9, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5325), 1, + anon_sym_RBRACE, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5901), 2, - sym_number, - sym_private_property_identifier, - STATE(3297), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3921), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(1963), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1961), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220544,33 +225866,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103330] = 9, + [105687] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(5109), 1, + ACTIONS(5313), 1, anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1993), 6, + ACTIONS(2003), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1991), 23, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220594,33 +225916,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103389] = 9, + [105746] = 9, ACTIONS(241), 1, anon_sym_COMMA, - ACTIONS(4243), 1, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(5109), 1, + ACTIONS(5313), 1, anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, + STATE(5848), 1, aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2003), 6, + ACTIONS(1963), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2001), 23, + ACTIONS(1961), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220644,24 +225966,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103448] = 8, - ACTIONS(1594), 1, + [105805] = 8, + ACTIONS(1584), 1, anon_sym_DQUOTE, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_SQUOTE, - ACTIONS(4245), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5903), 2, + ACTIONS(6157), 2, sym_number, sym_private_property_identifier, - STATE(3321), 3, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 7, + ACTIONS(3921), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -220669,7 +225991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3607), 23, + ACTIONS(3609), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220693,25 +226015,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103505] = 4, - ACTIONS(5905), 1, - sym__automatic_semicolon, + [105862] = 9, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5325), 1, + anon_sym_RBRACE, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 11, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2003), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1873), 25, + ACTIONS(2001), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220735,26 +226065,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [103553] = 3, + [105921] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5909), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5907), 25, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220764,8 +226105,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -220778,27 +226117,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [103599] = 4, - ACTIONS(5911), 1, - sym__automatic_semicolon, + [105984] = 9, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(725), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1720), 11, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1963), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1722), 25, + ACTIONS(1961), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220822,37 +226167,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [103647] = 3, + [106043] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5913), 25, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2307), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -220865,13 +226220,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [103693] = 3, + [106108] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5919), 12, + ACTIONS(6161), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -220884,7 +226237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5917), 25, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220910,11 +226263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [103739] = 3, + [106154] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 12, + ACTIONS(6165), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -220927,7 +226280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1873), 25, + ACTIONS(6163), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220953,11 +226306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [103785] = 3, + [106200] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5909), 12, + ACTIONS(6169), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -220970,7 +226323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5907), 25, + ACTIONS(6167), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220996,12 +226349,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [103831] = 3, + [106246] = 4, + ACTIONS(3665), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3380), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106294] = 4, + ACTIONS(3653), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3380), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106342] = 4, + ACTIONS(3675), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3380), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106390] = 4, + ACTIONS(3677), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5909), 12, + ACTIONS(3380), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106438] = 4, + ACTIONS(6171), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1787), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -221013,7 +226543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5907), 25, + ACTIONS(1789), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221039,11 +226569,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [103877] = 3, + [106486] = 4, + ACTIONS(3681), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3380), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106534] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 12, + ACTIONS(6175), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221056,7 +226630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5921), 25, + ACTIONS(6173), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221082,85 +226656,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [103923] = 5, - ACTIONS(5929), 1, - anon_sym_SEMI, - ACTIONS(5932), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5927), 10, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, + [106580] = 20, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2275), 1, anon_sym_DQUOTE, + ACTIONS(2277), 1, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5925), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6099), 1, + anon_sym_STAR, + ACTIONS(6103), 1, anon_sym_async, - anon_sym_new, - sym_identifier, + ACTIONS(6107), 1, anon_sym_static, + ACTIONS(6109), 1, anon_sym_readonly, + ACTIONS(6111), 1, anon_sym_get, + ACTIONS(6113), 1, anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [103973] = 3, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, + STATE(3074), 1, + sym_accessibility_modifier, + STATE(3102), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5909), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6105), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5907), 25, + ACTIONS(6115), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4282), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -221168,13 +226716,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104019] = 3, + [106660] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5919), 12, + ACTIONS(6179), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221187,7 +226733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5917), 25, + ACTIONS(6177), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221213,11 +226759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104065] = 3, + [106706] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5936), 12, + ACTIONS(6183), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221230,7 +226776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5934), 25, + ACTIONS(6181), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221256,11 +226802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104111] = 3, + [106752] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 12, + ACTIONS(1857), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221273,7 +226819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5921), 25, + ACTIONS(1859), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221299,12 +226845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104157] = 3, + [106798] = 4, + ACTIONS(6185), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 12, - sym__automatic_semicolon, + ACTIONS(1670), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -221316,7 +226863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5913), 25, + ACTIONS(1672), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221342,55 +226889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104203] = 4, - ACTIONS(3687), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3400), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [104251] = 3, + [106846] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5940), 12, + ACTIONS(6189), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221403,7 +226906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5938), 25, + ACTIONS(6187), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221429,11 +226932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104297] = 3, + [106892] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5909), 12, + ACTIONS(1787), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221446,7 +226949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5907), 25, + ACTIONS(1789), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221472,11 +226975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104343] = 3, + [106938] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5944), 12, + ACTIONS(6193), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221489,7 +226992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5942), 25, + ACTIONS(6191), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221515,12 +227018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104389] = 3, + [106984] = 4, + ACTIONS(6195), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5948), 12, - sym__automatic_semicolon, + ACTIONS(1670), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -221532,7 +227036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5946), 25, + ACTIONS(1672), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221558,42 +227062,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104435] = 5, - ACTIONS(5954), 1, - anon_sym_SEMI, - ACTIONS(5957), 1, - sym__automatic_semicolon, + [107032] = 21, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6099), 1, + anon_sym_STAR, + ACTIONS(6103), 1, + anon_sym_async, + ACTIONS(6107), 1, + anon_sym_static, + ACTIONS(6109), 1, + anon_sym_readonly, + ACTIONS(6111), 1, + anon_sym_get, + ACTIONS(6113), 1, + anon_sym_set, + ACTIONS(6197), 1, + anon_sym_export, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, + STATE(3074), 1, + sym_accessibility_modifier, + STATE(3102), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5952), 10, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6105), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5950), 25, - anon_sym_export, + ACTIONS(6115), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4282), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 13, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -221601,15 +227123,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104485] = 4, - ACTIONS(3681), 1, + [107114] = 4, + ACTIONS(3703), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(3380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221623,7 +227143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3404), 23, + ACTIONS(3384), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -221647,11 +227167,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104533] = 3, + [107162] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 12, + ACTIONS(6201), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221664,7 +227184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5913), 25, + ACTIONS(6199), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221690,11 +227210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104579] = 3, + [107208] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5948), 12, + ACTIONS(6201), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221707,7 +227227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5946), 25, + ACTIONS(6199), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221733,11 +227253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104625] = 3, + [107254] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5936), 12, + ACTIONS(6205), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221750,7 +227270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5934), 25, + ACTIONS(6203), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221776,59 +227296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104671] = 4, - ACTIONS(3657), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3400), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [104719] = 3, + [107300] = 5, + ACTIONS(6211), 1, + anon_sym_SEMI, + ACTIONS(6214), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 12, - sym__automatic_semicolon, + ACTIONS(6209), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -221837,7 +227315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5921), 25, + ACTIONS(6207), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221863,55 +227341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104765] = 4, - ACTIONS(3667), 1, - anon_sym_EQ, + [107350] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [104813] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5961), 12, + ACTIONS(6218), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -221924,7 +227358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(6216), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221950,28 +227384,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104859] = 3, + [107396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5965), 12, - sym__automatic_semicolon, + ACTIONS(3564), 10, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5963), 25, + ACTIONS(3562), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, + anon_sym_class, anon_sym_async, anon_sym_new, sym_identifier, @@ -221993,11 +227427,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104905] = 3, + [107442] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5936), 12, + ACTIONS(6179), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222010,7 +227444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5934), 25, + ACTIONS(6177), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222036,11 +227470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104951] = 3, + [107488] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 12, + ACTIONS(6175), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222053,7 +227487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5967), 25, + ACTIONS(6173), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222079,11 +227513,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104997] = 3, + [107534] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5973), 12, + ACTIONS(6222), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222096,7 +227530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5971), 25, + ACTIONS(6220), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222122,11 +227556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105043] = 3, + [107580] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5944), 12, + ACTIONS(6222), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222139,7 +227573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5942), 25, + ACTIONS(6220), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222165,11 +227599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105089] = 3, + [107626] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 12, + ACTIONS(6222), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222182,7 +227616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5975), 25, + ACTIONS(6220), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222208,28 +227642,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105135] = 3, + [107672] = 4, + ACTIONS(3685), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3566), 10, + ACTIONS(3380), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [107720] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6222), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3564), 27, + ACTIONS(6220), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, - anon_sym_class, anon_sym_async, anon_sym_new, sym_identifier, @@ -222251,13 +227729,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105181] = 4, - ACTIONS(5979), 1, + [107766] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6222), 12, sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6220), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107812] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6222), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6220), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107858] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 11, + ACTIONS(6226), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -222269,7 +227832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1873), 25, + ACTIONS(6224), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222295,11 +227858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105229] = 3, + [107904] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 12, + ACTIONS(6222), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222312,7 +227875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5921), 25, + ACTIONS(6220), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222338,12 +227901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105275] = 9, + [107950] = 9, ACTIONS(2275), 1, anon_sym_DQUOTE, ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -222351,14 +227914,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - ACTIONS(5869), 2, + ACTIONS(6027), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3788), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3743), 4, + ACTIONS(3921), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -222387,11 +227950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105333] = 3, + [108008] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 12, + ACTIONS(6222), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222404,7 +227967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5913), 25, + ACTIONS(6220), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222430,11 +227993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105379] = 3, + [108054] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 12, + ACTIONS(6230), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222447,7 +228010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5913), 25, + ACTIONS(6228), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222473,11 +228036,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105425] = 3, + [108100] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, + ACTIONS(6234), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222490,7 +228053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(6232), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222516,11 +228079,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105471] = 3, + [108146] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 12, + ACTIONS(6238), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222533,7 +228096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5921), 25, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222559,13 +228122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105517] = 4, - ACTIONS(5985), 1, - sym__automatic_semicolon, + [108192] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1720), 11, + ACTIONS(6238), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -222577,7 +228139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1722), 25, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222603,55 +228165,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105565] = 4, - ACTIONS(3699), 1, - anon_sym_EQ, + [108238] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(6238), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105613] = 3, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6236), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [108284] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5944), 12, + ACTIONS(6242), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222664,7 +228225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5942), 25, + ACTIONS(6240), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222690,29 +228251,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105659] = 8, - ACTIONS(5987), 1, - anon_sym_LPAREN, - ACTIONS(5989), 1, - anon_sym_DOT, - ACTIONS(5991), 1, - anon_sym_LT, - STATE(2714), 1, - sym_arguments, - STATE(5408), 1, - sym_type_arguments, + [108330] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3490), 7, + ACTIONS(6242), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3488), 25, + ACTIONS(6240), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222738,11 +228294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105715] = 3, + [108376] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5948), 12, + ACTIONS(6242), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222755,7 +228311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5946), 25, + ACTIONS(6240), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222781,11 +228337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105761] = 3, + [108422] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5936), 12, + ACTIONS(6246), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222798,7 +228354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5934), 25, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222824,55 +228380,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105807] = 4, - ACTIONS(3701), 1, - anon_sym_EQ, + [108468] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(6246), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105855] = 3, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6244), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [108514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 12, + ACTIONS(6246), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222885,7 +228440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5913), 25, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222911,11 +228466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105901] = 3, + [108560] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5936), 12, + ACTIONS(6246), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -222928,7 +228483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5934), 25, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222954,99 +228509,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105947] = 4, - ACTIONS(3677), 1, - anon_sym_EQ, + [108606] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(6246), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105995] = 4, - ACTIONS(3685), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3400), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [106043] = 3, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6244), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [108652] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5944), 12, + ACTIONS(6246), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223059,7 +228569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5942), 25, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223085,11 +228595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106089] = 3, + [108698] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5944), 12, + ACTIONS(6250), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223102,7 +228612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5942), 25, + ACTIONS(6248), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223128,11 +228638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106135] = 3, + [108744] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 12, + ACTIONS(6250), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223145,7 +228655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5921), 25, + ACTIONS(6248), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223171,11 +228681,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106181] = 3, + [108790] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 12, + ACTIONS(6250), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223188,7 +228698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1753), 25, + ACTIONS(6248), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223214,11 +228724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106227] = 3, + [108836] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5948), 12, + ACTIONS(6246), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223231,7 +228741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5946), 25, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223257,11 +228767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106273] = 3, + [108882] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 12, + ACTIONS(6246), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223274,7 +228784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5913), 25, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223300,11 +228810,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106319] = 3, + [108928] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, + ACTIONS(6246), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223317,7 +228827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223343,11 +228853,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106365] = 3, + [108974] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 12, + ACTIONS(6246), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223360,7 +228870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5921), 25, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223386,55 +228896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106411] = 4, - ACTIONS(3691), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3400), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3404), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [106459] = 3, + [109020] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5948), 12, + ACTIONS(6246), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -223447,7 +228913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5946), 25, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223473,28 +228939,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106505] = 6, - ACTIONS(4243), 1, - anon_sym_EQ, + [109066] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5749), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2003), 6, + ACTIONS(6246), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(2001), 23, + anon_sym_AT, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223518,52 +228980,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106556] = 14, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - anon_sym_STAR, - ACTIONS(5995), 1, - anon_sym_async, - ACTIONS(5999), 1, - anon_sym_readonly, - STATE(2696), 1, - sym_override_modifier, + anon_sym_abstract, + anon_sym_accessor, + [109112] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6246), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6001), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 18, + anon_sym_AT, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -223571,11 +229023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106623] = 3, + anon_sym_abstract, + anon_sym_accessor, + [109158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 11, + ACTIONS(6165), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223587,7 +229042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1753), 25, + ACTIONS(6163), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223613,29 +229068,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106668] = 7, - ACTIONS(5644), 1, - anon_sym_COMMA, - ACTIONS(5700), 1, - anon_sym_RBRACE, - STATE(5124), 1, - aux_sym_object_repeat1, + [109204] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1993), 6, + ACTIONS(6238), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1991), 23, + anon_sym_AT, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223659,29 +229109,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106721] = 7, - ACTIONS(5644), 1, - anon_sym_COMMA, - ACTIONS(5700), 1, - anon_sym_RBRACE, - STATE(5124), 1, - aux_sym_object_repeat1, + anon_sym_abstract, + anon_sym_accessor, + [109250] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2003), 6, + ACTIONS(6246), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(2001), 23, + anon_sym_AT, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223705,11 +229152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106774] = 3, + anon_sym_abstract, + anon_sym_accessor, + [109296] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6005), 11, + ACTIONS(6246), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223721,7 +229171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6003), 25, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223747,11 +229197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106819] = 3, + [109342] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 11, + ACTIONS(6246), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223763,7 +229214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(6244), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223789,11 +229240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106864] = 3, + [109388] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 11, + ACTIONS(6254), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223805,7 +229257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6011), 25, + ACTIONS(6252), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223831,11 +229283,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106909] = 3, + [109434] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 11, + ACTIONS(6238), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223847,7 +229300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1873), 25, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223873,11 +229326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106954] = 3, + [109480] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6005), 11, + ACTIONS(6161), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223889,7 +229343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6003), 25, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223915,28 +229369,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106999] = 6, - ACTIONS(4243), 1, - anon_sym_EQ, + [109526] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5749), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1993), 6, + ACTIONS(6161), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1991), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223960,11 +229410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107050] = 3, + anon_sym_abstract, + anon_sym_accessor, + [109572] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6017), 11, + ACTIONS(6161), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -223976,7 +229429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6015), 25, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224002,33 +229455,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107095] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - anon_sym_STAR, + [109618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6001), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 21, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224038,6 +229482,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -224050,26 +229496,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107153] = 5, + anon_sym_abstract, + anon_sym_accessor, + [109664] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5869), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2003), 6, + ACTIONS(6161), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(2001), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224093,54 +229539,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107201] = 17, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4827), 1, - anon_sym_STAR, - ACTIONS(4831), 1, - anon_sym_async, - ACTIONS(4872), 1, - anon_sym_accessor, - ACTIONS(6019), 1, - anon_sym_static, - ACTIONS(6021), 1, - anon_sym_readonly, - ACTIONS(6023), 1, - anon_sym_declare, - ACTIONS(6025), 1, anon_sym_abstract, - STATE(2700), 1, - sym_override_modifier, + anon_sym_accessor, + [109710] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4833), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(4837), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 16, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -224148,43 +229582,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107273] = 11, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - anon_sym_STAR, - ACTIONS(5995), 1, - anon_sym_async, + anon_sym_abstract, + anon_sym_accessor, + [109756] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6001), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 20, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -224197,33 +229625,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107333] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6027), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [109802] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6029), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6031), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3725), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 21, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224233,6 +229654,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -224245,43 +229668,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107391] = 11, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6027), 1, - anon_sym_STAR, - ACTIONS(6033), 1, - anon_sym_async, + anon_sym_abstract, + anon_sym_accessor, + [109848] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6029), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6031), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3725), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 20, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -224294,30 +229711,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107451] = 9, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6035), 1, - anon_sym_EQ_GT, + anon_sym_abstract, + anon_sym_accessor, + [109894] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224341,54 +229754,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107507] = 17, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5167), 1, - anon_sym_STAR, - ACTIONS(5169), 1, - anon_sym_async, - ACTIONS(6039), 1, - anon_sym_static, - ACTIONS(6041), 1, - anon_sym_readonly, - ACTIONS(6043), 1, - anon_sym_declare, - ACTIONS(6045), 1, anon_sym_abstract, - ACTIONS(6047), 1, anon_sym_accessor, - STATE(2695), 1, - sym_override_modifier, + [109940] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5175), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6037), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(2989), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 16, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -224396,33 +229797,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107579] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6049), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [109986] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6051), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6053), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 21, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224432,6 +229826,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -224444,33 +229840,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107637] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6055), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [110032] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6057), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6059), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3852), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 21, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224480,6 +229869,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -224492,43 +229883,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107695] = 11, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6055), 1, - anon_sym_STAR, - ACTIONS(6061), 1, - anon_sym_async, + anon_sym_abstract, + anon_sym_accessor, + [110078] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6057), 2, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6059), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3852), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 20, + anon_sym_AT, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -224541,26 +229926,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107755] = 5, + anon_sym_abstract, + anon_sym_accessor, + [110124] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5869), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1993), 6, + ACTIONS(6161), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1991), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224584,28 +229969,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107803] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110170] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6063), 2, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224629,36 +230012,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107856] = 13, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4995), 1, - anon_sym_static, - ACTIONS(4997), 1, - anon_sym_readonly, - ACTIONS(4999), 1, anon_sym_abstract, - ACTIONS(5001), 1, anon_sym_accessor, - STATE(2728), 1, - sym_override_modifier, + [110216] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4993), 2, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3277), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 20, + anon_sym_AT, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224666,12 +230039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -224679,28 +230055,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107919] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110262] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5486), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3843), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224724,28 +230098,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107972] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110308] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6065), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3823), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224769,28 +230141,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108025] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110354] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5526), 2, + ACTIONS(6165), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3842), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6163), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224814,28 +230184,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108078] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110400] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5664), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3772), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224859,28 +230227,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108131] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110446] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6057), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3852), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224904,28 +230270,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108184] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110492] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6029), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3725), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224949,28 +230313,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108237] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110538] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224994,28 +230356,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108290] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110584] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5532), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3798), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225039,28 +230399,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108343] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110630] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3731), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225084,28 +230442,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108396] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110676] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5791), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3840), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225129,36 +230485,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108449] = 13, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6069), 1, - anon_sym_static, - ACTIONS(6071), 1, - anon_sym_readonly, - ACTIONS(6073), 1, anon_sym_abstract, - ACTIONS(6075), 1, anon_sym_accessor, - STATE(2762), 1, - sym_override_modifier, + [110722] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6067), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3381), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 20, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225166,12 +230512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -225179,28 +230528,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108512] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110768] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5552), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3767), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225224,28 +230571,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108565] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110814] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5556), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3808), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225269,28 +230614,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108618] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110860] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5562), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3914), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225314,28 +230657,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108671] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110906] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5566), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3832), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225359,28 +230700,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108724] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110952] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5572), 2, + ACTIONS(6230), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3834), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6228), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225404,28 +230743,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108777] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [110998] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6077), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3836), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225449,28 +230786,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108830] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [111044] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6051), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225494,28 +230829,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108883] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [111090] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5604), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225539,28 +230872,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108936] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [111136] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6079), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3905), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225584,28 +230915,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108989] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [111182] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5408), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3757), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225629,28 +230958,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109042] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [111228] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5544), 2, + ACTIONS(6234), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3817), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6232), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225674,28 +231001,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109095] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [111274] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5381), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3854), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225719,28 +231044,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109148] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [111320] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5468), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3878), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225764,28 +231087,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109201] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [111366] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6081), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3895), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225809,28 +231130,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109254] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [111412] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5630), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3880), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225854,24 +231173,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109307] = 6, - ACTIONS(6083), 1, - anon_sym_AT, - STATE(2671), 1, - aux_sym_export_statement_repeat1, - STATE(2697), 1, - sym_decorator, + anon_sym_abstract, + anon_sym_accessor, + [111458] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 6, + ACTIONS(6161), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3531), 25, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225897,28 +231218,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109356] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + [111504] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3773), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225942,28 +231259,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109409] = 9, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6088), 1, - anon_sym_RBRACE, - STATE(5481), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [111550] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225987,49 +231302,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109463] = 14, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, - anon_sym_STAR, - ACTIONS(5183), 1, - anon_sym_async, - ACTIONS(5187), 1, - anon_sym_readonly, - ACTIONS(6092), 1, - anon_sym_static, - STATE(2712), 1, - sym_override_modifier, + anon_sym_abstract, + anon_sym_accessor, + [111596] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5185), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5189), 2, - anon_sym_get, - anon_sym_set, - STATE(3057), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 17, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -226037,35 +231345,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109527] = 12, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6094), 1, - anon_sym_STAR, - ACTIONS(6098), 1, - anon_sym_readonly, - STATE(2713), 1, - sym_override_modifier, + anon_sym_abstract, + anon_sym_accessor, + [111642] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6096), 2, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6100), 2, - anon_sym_get, - anon_sym_set, - STATE(2969), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226074,10 +231373,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -226085,28 +231388,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109587] = 9, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6102), 1, - anon_sym_RBRACE, - STATE(4566), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [111688] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6104), 2, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226130,35 +231431,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109641] = 12, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5803), 1, - anon_sym_readonly, - ACTIONS(6106), 1, - anon_sym_STAR, - STATE(2707), 1, - sym_override_modifier, + anon_sym_abstract, + anon_sym_accessor, + [111734] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6108), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6110), 2, - anon_sym_get, - anon_sym_set, - STATE(2985), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226167,10 +231459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -226178,28 +231474,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109701] = 9, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6112), 1, - anon_sym_RBRACE, - STATE(5481), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [111780] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226223,28 +231517,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109755] = 9, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6114), 1, - anon_sym_RBRACE, - STATE(5481), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [111826] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(6258), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6256), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226268,165 +231560,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109809] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2339), 1, - anon_sym_type, - ACTIONS(2341), 1, - anon_sym_namespace, - ACTIONS(2343), 1, - anon_sym_import, - ACTIONS(2345), 1, - anon_sym_var, - ACTIONS(2347), 1, - anon_sym_let, - ACTIONS(2349), 1, - anon_sym_const, - ACTIONS(2351), 1, - anon_sym_class, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_function, - ACTIONS(2357), 1, - anon_sym_declare, - ACTIONS(2361), 1, anon_sym_abstract, - ACTIONS(2365), 1, - anon_sym_interface, - ACTIONS(2367), 1, - anon_sym_enum, - ACTIONS(3745), 1, - anon_sym_module, - ACTIONS(6116), 1, - anon_sym_default, - STATE(1244), 1, - sym_decorator, - STATE(3937), 1, - sym_declaration, - STATE(4333), 1, - aux_sym_export_statement_repeat1, - STATE(4343), 1, - sym_internal_module, + anon_sym_accessor, + [111872] = 4, + ACTIONS(3657), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4336), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [109889] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2339), 1, - anon_sym_type, - ACTIONS(2341), 1, - anon_sym_namespace, - ACTIONS(2343), 1, - anon_sym_import, - ACTIONS(2345), 1, - anon_sym_var, - ACTIONS(2347), 1, - anon_sym_let, - ACTIONS(2349), 1, - anon_sym_const, - ACTIONS(2351), 1, - anon_sym_class, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_function, - ACTIONS(2357), 1, - anon_sym_declare, - ACTIONS(2359), 1, - anon_sym_module, - ACTIONS(2361), 1, - anon_sym_abstract, - ACTIONS(2363), 1, - anon_sym_global, - ACTIONS(2365), 1, - anon_sym_interface, - ACTIONS(2367), 1, - anon_sym_enum, - STATE(1244), 1, - sym_decorator, - STATE(4333), 1, - aux_sym_export_statement_repeat1, - STATE(4343), 1, - sym_internal_module, - STATE(4369), 1, - sym_declaration, + ACTIONS(3380), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [111920] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4336), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [109969] = 14, - ACTIONS(2275), 1, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2277), 1, anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(2315), 1, - anon_sym_override, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, - ACTIONS(6118), 1, - anon_sym_static, - STATE(2719), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2285), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 17, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -226434,202 +231647,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110033] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2231), 1, - anon_sym_import, - ACTIONS(2233), 1, - anon_sym_var, - ACTIONS(2235), 1, - anon_sym_let, - ACTIONS(2237), 1, - anon_sym_const, - ACTIONS(2242), 1, - anon_sym_class, - ACTIONS(2244), 1, - anon_sym_async, - ACTIONS(2246), 1, - anon_sym_function, - ACTIONS(2255), 1, - anon_sym_abstract, - ACTIONS(2257), 1, - anon_sym_interface, - ACTIONS(2259), 1, - anon_sym_enum, - ACTIONS(2289), 1, - anon_sym_type, - ACTIONS(2293), 1, - anon_sym_global, - ACTIONS(2301), 1, - anon_sym_namespace, - ACTIONS(2303), 1, - anon_sym_declare, - ACTIONS(2317), 1, - anon_sym_module, - STATE(819), 1, - sym_declaration, - STATE(860), 1, - sym_internal_module, - STATE(1244), 1, - sym_decorator, - STATE(4270), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(861), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [110113] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2227), 1, - anon_sym_namespace, - ACTIONS(2231), 1, - anon_sym_import, - ACTIONS(2233), 1, - anon_sym_var, - ACTIONS(2235), 1, - anon_sym_let, - ACTIONS(2237), 1, - anon_sym_const, - ACTIONS(2242), 1, - anon_sym_class, - ACTIONS(2244), 1, - anon_sym_async, - ACTIONS(2246), 1, - anon_sym_function, - ACTIONS(2251), 1, - anon_sym_declare, - ACTIONS(2255), 1, - anon_sym_abstract, - ACTIONS(2257), 1, - anon_sym_interface, - ACTIONS(2259), 1, - anon_sym_enum, - ACTIONS(2289), 1, - anon_sym_type, - ACTIONS(2291), 1, - anon_sym_module, - ACTIONS(2293), 1, - anon_sym_global, - STATE(819), 1, - sym_declaration, - STATE(860), 1, - sym_internal_module, - STATE(1244), 1, - sym_decorator, - STATE(4270), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(861), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [110193] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2231), 1, - anon_sym_import, - ACTIONS(2233), 1, - anon_sym_var, - ACTIONS(2235), 1, - anon_sym_let, - ACTIONS(2237), 1, - anon_sym_const, - ACTIONS(2242), 1, - anon_sym_class, - ACTIONS(2244), 1, - anon_sym_async, - ACTIONS(2246), 1, - anon_sym_function, - ACTIONS(2255), 1, anon_sym_abstract, - ACTIONS(2257), 1, - anon_sym_interface, - ACTIONS(2259), 1, - anon_sym_enum, - ACTIONS(2289), 1, - anon_sym_type, - ACTIONS(2301), 1, - anon_sym_namespace, - ACTIONS(2303), 1, - anon_sym_declare, - ACTIONS(2305), 1, - anon_sym_module, - ACTIONS(6120), 1, - anon_sym_default, - STATE(860), 1, - sym_internal_module, - STATE(863), 1, - sym_declaration, - STATE(1244), 1, - sym_decorator, - STATE(4270), 1, - aux_sym_export_statement_repeat1, + anon_sym_accessor, + [111966] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(861), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [110273] = 9, - ACTIONS(1506), 1, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6122), 1, - anon_sym_RBRACE, - STATE(4820), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6124), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4023), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226653,49 +231690,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110327] = 14, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(3633), 1, - anon_sym_override, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4247), 1, - anon_sym_async, - ACTIONS(4251), 1, - anon_sym_readonly, - ACTIONS(6126), 1, - anon_sym_static, - STATE(2701), 1, - sym_override_modifier, + anon_sym_abstract, + anon_sym_accessor, + [112012] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(4253), 2, - anon_sym_get, - anon_sym_set, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 17, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -226703,28 +231733,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110391] = 9, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6128), 1, - anon_sym_RBRACE, - STATE(5481), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [112058] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226748,86 +231776,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110445] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2227), 1, - anon_sym_namespace, - ACTIONS(2231), 1, - anon_sym_import, - ACTIONS(2233), 1, - anon_sym_var, - ACTIONS(2235), 1, - anon_sym_let, - ACTIONS(2237), 1, - anon_sym_const, - ACTIONS(2242), 1, - anon_sym_class, - ACTIONS(2244), 1, - anon_sym_async, - ACTIONS(2246), 1, - anon_sym_function, - ACTIONS(2251), 1, - anon_sym_declare, - ACTIONS(2253), 1, - anon_sym_module, - ACTIONS(2255), 1, anon_sym_abstract, - ACTIONS(2257), 1, - anon_sym_interface, - ACTIONS(2259), 1, - anon_sym_enum, - ACTIONS(2289), 1, - anon_sym_type, - ACTIONS(6130), 1, - anon_sym_default, - STATE(860), 1, - sym_internal_module, - STATE(863), 1, - sym_declaration, - STATE(1244), 1, - sym_decorator, - STATE(4270), 1, - aux_sym_export_statement_repeat1, + anon_sym_accessor, + [112104] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(861), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [110525] = 9, - ACTIONS(1506), 1, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6132), 1, - anon_sym_RBRACE, - STATE(5481), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6090), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226851,86 +231819,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110579] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2227), 1, - anon_sym_namespace, - ACTIONS(2231), 1, - anon_sym_import, - ACTIONS(2233), 1, - anon_sym_var, - ACTIONS(2235), 1, - anon_sym_let, - ACTIONS(2237), 1, - anon_sym_const, - ACTIONS(2242), 1, - anon_sym_class, - ACTIONS(2244), 1, - anon_sym_async, - ACTIONS(2246), 1, - anon_sym_function, - ACTIONS(2251), 1, - anon_sym_declare, - ACTIONS(2253), 1, - anon_sym_module, - ACTIONS(2255), 1, anon_sym_abstract, - ACTIONS(2257), 1, - anon_sym_interface, - ACTIONS(2259), 1, - anon_sym_enum, - ACTIONS(2289), 1, - anon_sym_type, - ACTIONS(6134), 1, - anon_sym_default, - STATE(860), 1, - sym_internal_module, - STATE(863), 1, - sym_declaration, - STATE(1244), 1, - sym_decorator, - STATE(4270), 1, - aux_sym_export_statement_repeat1, + anon_sym_accessor, + [112150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(861), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [110659] = 9, - ACTIONS(1506), 1, + ACTIONS(6161), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1508), 1, anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6136), 1, - anon_sym_RBRACE, - STATE(5481), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6090), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6159), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226954,28 +231862,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110713] = 9, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6138), 1, - anon_sym_RBRACE, - STATE(5481), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [112196] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(6262), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6260), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226999,28 +231905,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110767] = 9, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6140), 1, - anon_sym_RBRACE, - STATE(5481), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [112242] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(6266), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6264), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227044,40 +231948,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110821] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5241), 1, - anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_async, - ACTIONS(6144), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [112288] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5249), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6142), 2, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(2976), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227090,40 +231991,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110878] = 11, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6055), 1, - anon_sym_STAR, - ACTIONS(6061), 1, - anon_sym_async, - ACTIONS(6146), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [112334] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6057), 2, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6059), 2, - anon_sym_get, - anon_sym_set, - STATE(3852), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 19, + anon_sym_AT, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227136,19 +232034,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110935] = 3, + anon_sym_abstract, + anon_sym_accessor, + [112380] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3578), 7, + ACTIONS(6270), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3576), 25, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227174,40 +232079,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110976] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4827), 1, - anon_sym_STAR, - ACTIONS(4831), 1, - anon_sym_async, - ACTIONS(4835), 1, - anon_sym_readonly, + [112426] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4833), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(4837), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227220,40 +232120,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111033] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5167), 1, - anon_sym_STAR, - ACTIONS(5169), 1, - anon_sym_async, - ACTIONS(6150), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [112472] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5175), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6148), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(2990), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227266,40 +232163,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111090] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5157), 1, - anon_sym_STAR, - ACTIONS(5159), 1, - anon_sym_async, - ACTIONS(5163), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [112518] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5161), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5165), 2, - anon_sym_get, - anon_sym_set, - STATE(2964), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227312,40 +232206,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111147] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - anon_sym_STAR, - ACTIONS(5313), 1, - anon_sym_async, - ACTIONS(5317), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [112564] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5315), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5319), 2, - anon_sym_get, - anon_sym_set, - STATE(3074), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227358,40 +232249,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111204] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, - anon_sym_STAR, - ACTIONS(5183), 1, - anon_sym_async, - ACTIONS(5187), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [112610] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5185), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5189), 2, - anon_sym_get, - anon_sym_set, - STATE(3057), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227404,19 +232292,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111261] = 3, + anon_sym_abstract, + anon_sym_accessor, + [112656] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3570), 7, + ACTIONS(6270), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3568), 25, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227442,19 +232337,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [111302] = 3, + [112702] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3490), 7, + ACTIONS(6270), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3488), 25, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227480,40 +232380,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [111343] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5530), 1, - anon_sym_STAR, - ACTIONS(5536), 1, - anon_sym_async, - ACTIONS(6152), 1, - anon_sym_readonly, + [112748] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5538), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5540), 2, - anon_sym_get, - anon_sym_set, - STATE(2966), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227526,40 +232421,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111400] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5542), 1, - anon_sym_STAR, - ACTIONS(5614), 1, - anon_sym_async, - ACTIONS(6156), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [112794] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5618), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6154), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(2959), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227572,29 +232464,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111457] = 9, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6158), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [112840] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5791), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6160), 2, - anon_sym_get, - anon_sym_set, - STATE(3840), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 21, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227604,6 +232493,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227616,40 +232507,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111510] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5241), 1, - anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_async, - ACTIONS(6164), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [112886] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5249), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6162), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(2968), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227662,19 +232550,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111567] = 3, + anon_sym_abstract, + anon_sym_accessor, + [112932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3540), 7, + ACTIONS(6270), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3538), 25, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227700,40 +232595,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [111608] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5560), 1, - anon_sym_STAR, - ACTIONS(5692), 1, - anon_sym_async, - ACTIONS(6166), 1, - anon_sym_readonly, + [112978] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5694), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5696), 2, - anon_sym_get, - anon_sym_set, - STATE(3029), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227746,40 +232636,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111665] = 11, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_async, - ACTIONS(2311), 1, - anon_sym_readonly, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5091), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [113024] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(2313), 2, - anon_sym_get, - anon_sym_set, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 19, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227792,40 +232679,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111722] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5255), 1, - anon_sym_STAR, - ACTIONS(5257), 1, - anon_sym_async, - ACTIONS(5261), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [113070] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5259), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5263), 2, - anon_sym_get, - anon_sym_set, - STATE(3039), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227838,29 +232722,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111779] = 9, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(6106), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [113116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5773), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6168), 2, - anon_sym_get, - anon_sym_set, - STATE(3897), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 21, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227870,6 +232751,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227882,19 +232765,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111832] = 3, + anon_sym_abstract, + anon_sym_accessor, + [113162] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3524), 7, + ACTIONS(6270), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3522), 25, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227920,40 +232810,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [111873] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5628), 1, - anon_sym_STAR, - ACTIONS(5634), 1, - anon_sym_async, - ACTIONS(6170), 1, - anon_sym_readonly, + [113208] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5636), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5638), 2, - anon_sym_get, - anon_sym_set, - STATE(3038), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227966,26 +232851,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111930] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - STATE(5481), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [113254] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228009,40 +232894,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111981] = 11, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4247), 1, - anon_sym_async, - ACTIONS(4251), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [113300] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(4253), 2, - anon_sym_get, - anon_sym_set, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 19, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -228055,22 +232937,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112038] = 4, + anon_sym_abstract, + anon_sym_accessor, + [113346] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2003), 6, + ACTIONS(6270), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(2001), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228094,40 +232980,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112081] = 11, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - anon_sym_STAR, - ACTIONS(5995), 1, - anon_sym_async, - ACTIONS(5999), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [113392] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6001), 2, - anon_sym_get, - anon_sym_set, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 19, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -228140,24 +233023,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112138] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113438] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5630), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3880), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228181,24 +233066,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112186] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113484] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6029), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3725), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228222,24 +233109,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112234] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113530] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5773), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3897), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228263,26 +233152,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112282] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6174), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [113576] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6172), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3291), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228291,6 +233180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -228305,24 +233195,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112332] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113622] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6176), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3324), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228346,24 +233238,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112380] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113668] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6178), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3293), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228387,24 +233281,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112428] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113714] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5532), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3798), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228428,24 +233324,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112476] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113760] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3773), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228469,26 +233367,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112524] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5871), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [113806] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5702), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3366), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228497,6 +233395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -228511,24 +233410,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112574] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5702), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3366), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228552,24 +233453,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112622] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113898] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5791), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3840), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228593,24 +233496,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112670] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113944] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5506), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3747), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228634,24 +233539,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112718] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113990] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3370), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228675,26 +233582,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112766] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6184), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [114036] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6182), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3374), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228703,6 +233610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -228717,24 +233625,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112816] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114082] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6186), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228758,26 +233668,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112864] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6190), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [114128] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6188), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3382), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228786,6 +233696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -228800,24 +233711,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112914] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114174] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4636), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3770), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228841,26 +233754,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112962] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6194), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [114220] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6192), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3391), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228869,6 +233782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -228883,24 +233797,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113012] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114266] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6196), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3392), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228924,24 +233840,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113060] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114312] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6065), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3823), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228965,24 +233883,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113108] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114358] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5552), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3767), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229006,26 +233926,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113156] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5803), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [114404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4993), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3277), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229034,6 +233954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -229048,24 +233969,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113206] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114450] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5556), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3808), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229089,24 +234012,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113254] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114496] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5562), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3914), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229130,24 +234055,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113302] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114542] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5566), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3832), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229171,24 +234098,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113350] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114588] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5391), 2, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3734), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229212,24 +234141,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113398] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114634] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5572), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3834), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229253,24 +234184,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113446] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114680] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6077), 2, + ACTIONS(6165), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3836), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6163), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229294,24 +234227,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113494] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114726] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4864), 2, + ACTIONS(6165), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3354), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6163), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229335,24 +234270,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113542] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114772] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5664), 2, + ACTIONS(6165), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3772), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6163), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229376,24 +234313,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113590] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114818] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5486), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3843), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229417,24 +234356,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113638] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114864] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4993), 2, - sym_number, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_private_property_identifier, - STATE(3277), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229458,24 +234399,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113686] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114910] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229499,24 +234442,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113734] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [114956] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6051), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229540,26 +234485,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113782] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115002] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6198), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3323), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229568,6 +234513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -229582,26 +234528,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113832] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6202), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115048] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5893), 2, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229610,6 +234556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -229624,24 +234571,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113882] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115094] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5893), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229665,24 +234614,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113930] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115140] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6079), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3905), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229706,26 +234657,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113978] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6206), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115186] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6204), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3387), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229734,6 +234685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -229748,24 +234700,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114028] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115232] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6208), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3390), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229789,26 +234743,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114076] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6212), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115278] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6210), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3258), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229817,6 +234771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -229831,24 +234786,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114126] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115324] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6214), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3274), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229872,26 +234829,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114174] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6218), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115370] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6216), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3296), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229900,6 +234857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -229914,24 +234872,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114224] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115416] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5526), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3842), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229955,24 +234915,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114272] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115462] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6220), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3340), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229996,24 +234958,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114320] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115508] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5385), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3824), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230037,26 +235001,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114368] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6224), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115554] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6222), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3446), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230065,6 +235029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -230079,24 +235044,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114418] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115600] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6226), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3447), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230120,26 +235087,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114466] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6230), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115646] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6228), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3302), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230148,6 +235115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -230162,24 +235130,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114516] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115692] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5408), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3757), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230203,24 +235173,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114564] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115738] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5544), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3817), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230244,24 +235216,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114612] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115784] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5381), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3854), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230285,24 +235259,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114660] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115830] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5468), 2, + ACTIONS(6274), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3878), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6272), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230326,24 +235302,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114708] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115876] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6081), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3895), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230367,24 +235345,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114756] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115922] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3731), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230408,24 +235388,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114804] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115968] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2285), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3788), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230449,26 +235431,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114852] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(6234), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [116014] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6232), 2, + ACTIONS(6270), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3393), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 22, + anon_sym_AT, + ACTIONS(6268), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230477,6 +235459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -230491,24 +235474,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114902] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(4245), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116060] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6236), 2, + ACTIONS(6278), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3396), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3607), 23, + anon_sym_AT, + ACTIONS(6276), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230532,24 +235517,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114950] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116106] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6057), 2, + ACTIONS(6169), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3852), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6167), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230573,24 +235560,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114998] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116152] = 4, + ACTIONS(6280), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6063), 2, + ACTIONS(1787), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(1789), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230614,24 +235604,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115046] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(4634), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116200] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5604), 2, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2307), 23, + anon_sym_AT, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230655,21 +235647,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115094] = 4, - ACTIONS(6238), 1, - sym_identifier, - STATE(5746), 1, - sym_mapped_type_clause, + anon_sym_abstract, + anon_sym_accessor, + [116246] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6240), 22, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6236), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_async, anon_sym_new, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -230686,43960 +235690,76823 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115129] = 9, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(6242), 1, - anon_sym_DOT, - ACTIONS(6244), 1, - anon_sym_QMARK_DOT, - ACTIONS(6246), 1, - anon_sym_LT, - STATE(2841), 1, - sym_arguments, - STATE(2865), 1, - sym_type_arguments, + anon_sym_abstract, + anon_sym_accessor, + [116292] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3979), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3981), 12, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [115170] = 9, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(6246), 1, - anon_sym_LT, - ACTIONS(6248), 1, - anon_sym_DOT, - ACTIONS(6250), 1, - anon_sym_QMARK_DOT, - STATE(2843), 1, - sym_arguments, - STATE(2866), 1, - sym_type_arguments, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6236), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116338] = 4, + ACTIONS(3673), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3985), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3987), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3380), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [115211] = 9, - ACTIONS(3438), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3384), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3440), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3442), 1, anon_sym_QMARK_DOT, - ACTIONS(6246), 1, - anon_sym_LT, - STATE(2829), 1, - sym_arguments, - STATE(2852), 1, - sym_type_arguments, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [116386] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3406), 12, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [115252] = 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6236), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116432] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4168), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115280] = 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6236), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116478] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4216), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4218), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(6165), 12, + sym__automatic_semicolon, + anon_sym_STAR, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115308] = 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6163), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116524] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4239), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115336] = 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6236), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116570] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4222), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115364] = 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6236), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116616] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4222), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115392] = 3, - ACTIONS(5), 2, - sym_html_comment, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116662] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116708] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116754] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116800] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116846] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116892] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116938] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [116984] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117030] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117076] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117122] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117168] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117214] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117260] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117306] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117352] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117398] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117444] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117490] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117536] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117582] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117628] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117674] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117720] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117766] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117812] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117858] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117904] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117950] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [117996] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118042] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118088] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118134] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118180] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118226] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118272] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118318] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118364] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6236), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118410] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118456] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118502] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118548] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118594] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118640] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118686] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118732] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118778] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118824] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118870] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118916] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118962] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119008] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119054] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119100] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119146] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119192] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119238] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119284] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119330] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119376] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119422] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6286), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119468] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119514] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119560] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119606] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6282), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119652] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6189), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6187), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119698] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6193), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6191), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119744] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6236), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119790] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6236), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119836] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6238), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6236), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119882] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6165), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6163), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119928] = 23, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2227), 1, + anon_sym_namespace, + ACTIONS(2231), 1, + anon_sym_import, + ACTIONS(2233), 1, + anon_sym_var, + ACTIONS(2235), 1, + anon_sym_let, + ACTIONS(2237), 1, + anon_sym_const, + ACTIONS(2242), 1, + anon_sym_class, + ACTIONS(2244), 1, + anon_sym_async, + ACTIONS(2246), 1, + anon_sym_function, + ACTIONS(2251), 1, + anon_sym_declare, + ACTIONS(2253), 1, + anon_sym_module, + ACTIONS(2255), 1, + anon_sym_abstract, + ACTIONS(2257), 1, + anon_sym_interface, + ACTIONS(2259), 1, + anon_sym_enum, + ACTIONS(2289), 1, + anon_sym_type, + ACTIONS(6290), 1, + anon_sym_default, + STATE(780), 1, + sym_declaration, + STATE(855), 1, + sym_internal_module, + STATE(3068), 1, + sym_decorator, + STATE(5203), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(844), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [120013] = 23, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2339), 1, + anon_sym_type, + ACTIONS(2341), 1, + anon_sym_namespace, + ACTIONS(2343), 1, + anon_sym_import, + ACTIONS(2345), 1, + anon_sym_var, + ACTIONS(2347), 1, + anon_sym_let, + ACTIONS(2349), 1, + anon_sym_const, + ACTIONS(2351), 1, + anon_sym_class, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_function, + ACTIONS(2357), 1, + anon_sym_declare, + ACTIONS(2361), 1, + anon_sym_abstract, + ACTIONS(2365), 1, + anon_sym_interface, + ACTIONS(2367), 1, + anon_sym_enum, + ACTIONS(3923), 1, + anon_sym_module, + ACTIONS(6292), 1, + anon_sym_default, + STATE(3068), 1, + sym_decorator, + STATE(5084), 1, + sym_declaration, + STATE(5238), 1, + sym_internal_module, + STATE(5282), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(5245), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [120098] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1787), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1789), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120143] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1857), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1859), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120188] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6296), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6294), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120233] = 6, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5988), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(2001), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120284] = 6, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5988), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1963), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1961), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120335] = 7, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(5978), 1, + anon_sym_RBRACE, + STATE(5899), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1963), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1961), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120388] = 7, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(5978), 1, + anon_sym_RBRACE, + STATE(5899), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(2001), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120441] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3849), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6298), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120486] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6302), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6300), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120531] = 14, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6304), 1, + anon_sym_STAR, + ACTIONS(6306), 1, + anon_sym_async, + ACTIONS(6310), 1, + anon_sym_readonly, + STATE(3099), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6308), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6312), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4321), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120598] = 15, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6314), 1, + anon_sym_STAR, + ACTIONS(6316), 1, + anon_sym_async, + ACTIONS(6320), 1, + anon_sym_readonly, + ACTIONS(6322), 1, + anon_sym_get, + ACTIONS(6324), 1, + anon_sym_set, + STATE(3116), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6318), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4334), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120667] = 15, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6326), 1, + anon_sym_STAR, + ACTIONS(6328), 1, + anon_sym_async, + ACTIONS(6332), 1, + anon_sym_readonly, + ACTIONS(6334), 1, + anon_sym_get, + ACTIONS(6336), 1, + anon_sym_set, + STATE(3110), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6330), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4362), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120736] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6338), 1, + anon_sym_STAR, + ACTIONS(6342), 1, + anon_sym_get, + ACTIONS(6344), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6340), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4267), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120796] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6346), 1, + anon_sym_STAR, + ACTIONS(6350), 1, + anon_sym_get, + ACTIONS(6352), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6348), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4488), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120856] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6354), 1, + anon_sym_STAR, + ACTIONS(6356), 1, + anon_sym_async, + ACTIONS(6360), 1, + anon_sym_get, + ACTIONS(6362), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6358), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4479), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120918] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6364), 1, + anon_sym_STAR, + ACTIONS(6368), 1, + anon_sym_get, + ACTIONS(6370), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6366), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4253), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120978] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6372), 1, + anon_sym_STAR, + ACTIONS(6376), 1, + anon_sym_get, + ACTIONS(6378), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6374), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4186), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121038] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6380), 1, + anon_sym_STAR, + ACTIONS(6382), 1, + anon_sym_async, + ACTIONS(6386), 1, + anon_sym_get, + ACTIONS(6388), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6384), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4202), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121100] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6390), 1, + anon_sym_STAR, + ACTIONS(6394), 1, + anon_sym_get, + ACTIONS(6396), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6392), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121160] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6398), 1, + anon_sym_STAR, + ACTIONS(6402), 1, + anon_sym_get, + ACTIONS(6404), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6400), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4402), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121220] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6406), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6408), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6410), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4397), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121278] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_STAR, + ACTIONS(6416), 1, + anon_sym_get, + ACTIONS(6418), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6414), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4543), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121338] = 18, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(6420), 1, + anon_sym_STAR, + ACTIONS(6422), 1, + anon_sym_async, + ACTIONS(6426), 1, + anon_sym_static, + ACTIONS(6428), 1, + anon_sym_readonly, + ACTIONS(6430), 1, + anon_sym_get, + ACTIONS(6432), 1, + anon_sym_set, + ACTIONS(6434), 1, + anon_sym_declare, + ACTIONS(6436), 1, + anon_sym_abstract, + ACTIONS(6438), 1, + anon_sym_accessor, + STATE(3115), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6424), 2, + sym_number, + sym_private_property_identifier, + STATE(3426), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121412] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6440), 1, + anon_sym_STAR, + ACTIONS(6442), 1, + anon_sym_async, + ACTIONS(6446), 1, + anon_sym_get, + ACTIONS(6448), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6444), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4325), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121474] = 6, + ACTIONS(6450), 1, + anon_sym_AT, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3542), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3540), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121524] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6453), 1, + anon_sym_STAR, + ACTIONS(6457), 1, + anon_sym_get, + ACTIONS(6459), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6455), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4539), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121584] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6304), 1, + anon_sym_STAR, + ACTIONS(6306), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6308), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6312), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4321), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121644] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6304), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6308), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6312), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4321), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121702] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6461), 1, + anon_sym_STAR, + ACTIONS(6463), 1, + anon_sym_async, + ACTIONS(6467), 1, + anon_sym_get, + ACTIONS(6469), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6465), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4373), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121764] = 9, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6471), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6308), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4321), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121820] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6473), 1, + anon_sym_STAR, + ACTIONS(6475), 1, + anon_sym_async, + ACTIONS(6479), 1, + anon_sym_get, + ACTIONS(6481), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6477), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4594), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121882] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6483), 1, + anon_sym_STAR, + ACTIONS(6487), 1, + anon_sym_get, + ACTIONS(6489), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6485), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4326), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121942] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6495), 1, + anon_sym_get, + ACTIONS(6497), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6493), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4322), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122002] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6499), 1, + anon_sym_STAR, + ACTIONS(6501), 1, + anon_sym_async, + ACTIONS(6505), 1, + anon_sym_get, + ACTIONS(6507), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6503), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4464), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122064] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6509), 1, + anon_sym_STAR, + ACTIONS(6511), 1, + anon_sym_async, + ACTIONS(6515), 1, + anon_sym_get, + ACTIONS(6517), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6513), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4564), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122126] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6519), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6521), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6523), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4548), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122184] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6519), 1, + anon_sym_STAR, + ACTIONS(6525), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6521), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6523), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4548), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122244] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6527), 1, + anon_sym_STAR, + ACTIONS(6531), 1, + anon_sym_get, + ACTIONS(6533), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6529), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4559), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122304] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6535), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6537), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6539), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4502), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122362] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6541), 1, + anon_sym_STAR, + ACTIONS(6543), 1, + anon_sym_async, + ACTIONS(6547), 1, + anon_sym_get, + ACTIONS(6549), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6545), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4303), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122424] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6551), 1, + anon_sym_STAR, + ACTIONS(6555), 1, + anon_sym_get, + ACTIONS(6557), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6553), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122484] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(2001), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122532] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6559), 1, + anon_sym_STAR, + ACTIONS(6563), 1, + anon_sym_get, + ACTIONS(6565), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6561), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4592), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122592] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6567), 1, + anon_sym_STAR, + ACTIONS(6571), 1, + anon_sym_get, + ACTIONS(6573), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6569), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4517), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122652] = 17, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(4690), 1, + anon_sym_STAR, + ACTIONS(4694), 1, + anon_sym_async, + ACTIONS(4713), 1, + anon_sym_accessor, + ACTIONS(6575), 1, + anon_sym_static, + ACTIONS(6577), 1, + anon_sym_readonly, + ACTIONS(6579), 1, + anon_sym_declare, + ACTIONS(6581), 1, + anon_sym_abstract, + STATE(3094), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4696), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4700), 2, + anon_sym_get, + anon_sym_set, + STATE(3410), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122724] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1963), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1961), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122772] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6535), 1, + anon_sym_STAR, + ACTIONS(6583), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6537), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6539), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4502), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122832] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6585), 1, + anon_sym_STAR, + ACTIONS(6589), 1, + anon_sym_get, + ACTIONS(6591), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6587), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4426), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122892] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6593), 1, + anon_sym_STAR, + ACTIONS(6597), 1, + anon_sym_get, + ACTIONS(6599), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6595), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4305), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122952] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6601), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4395), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123005] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6603), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4222), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123058] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6605), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4531), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123111] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6607), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4528), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123164] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5435), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4343), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123217] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6609), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4516), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123270] = 13, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_static, + ACTIONS(6615), 1, + anon_sym_readonly, + ACTIONS(6617), 1, + anon_sym_abstract, + ACTIONS(6619), 1, + anon_sym_accessor, + STATE(3177), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6611), 2, + sym_number, + sym_private_property_identifier, + STATE(3744), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123333] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6621), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4511), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123386] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6623), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4185), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123439] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4406), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123492] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6625), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123545] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6627), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4476), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123598] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6629), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4452), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123651] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6631), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4430), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123704] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6633), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4450), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123757] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5510), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4576), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123810] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6635), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4376), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123863] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6637), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4600), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123916] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6639), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4595), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123969] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6641), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4228), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124022] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6643), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4419), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124075] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4296), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124128] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6647), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4294), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124181] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6649), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4258), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124234] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6651), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4257), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124287] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6653), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4281), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124340] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6655), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4360), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124393] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6657), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4358), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124446] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6659), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4561), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124499] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6661), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4295), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124552] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6663), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4293), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124605] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5576), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4496), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124658] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5707), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4394), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124711] = 13, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5085), 1, + anon_sym_static, + ACTIONS(5087), 1, + anon_sym_readonly, + ACTIONS(5089), 1, + anon_sym_abstract, + ACTIONS(5091), 1, + anon_sym_accessor, + STATE(3211), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5083), 2, + sym_number, + sym_private_property_identifier, + STATE(3728), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124774] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6665), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4359), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124827] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5582), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4184), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124880] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6667), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4437), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124933] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6669), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4439), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124986] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6671), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4458), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125039] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6521), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4548), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125092] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6673), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4566), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125145] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6675), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4463), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125198] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4459), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125251] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5558), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4481), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125304] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6679), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4575), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125357] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6681), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4556), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125410] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4554), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125463] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6685), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4323), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125516] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6308), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4321), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125569] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6687), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4461), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125622] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6689), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4272), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125675] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6691), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4271), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125728] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5536), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4482), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125781] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5461), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4203), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125834] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6693), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4538), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125887] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6408), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4397), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125940] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6695), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125993] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6697), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4242), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126046] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6699), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4241), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126099] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4581), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126152] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6703), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4238), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126205] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6705), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4316), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126258] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6707), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4399), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126311] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6709), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4246), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126364] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4200), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126417] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6713), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4237), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126470] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3579), 8, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3577), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [126513] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6715), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4247), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126566] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6717), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4424), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126619] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6719), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4433), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126672] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6721), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4446), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126725] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6723), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126778] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6725), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4374), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126831] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6727), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4562), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126884] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6729), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4563), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126937] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3583), 8, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3581), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [126980] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6731), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4189), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127033] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6733), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4188), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127086] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6735), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4183), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127139] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6737), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4436), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127192] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5724), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4597), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127245] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6739), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127298] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4375), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127351] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6743), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4377), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127404] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6745), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4580), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127457] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6747), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4444), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127510] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6749), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4442), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127563] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6751), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4291), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127616] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6753), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4393), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127669] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6755), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4567), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127722] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6757), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4565), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127775] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6759), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4365), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127828] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4324), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127881] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6763), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4550), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127934] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6765), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4549), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127987] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6767), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4417), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128040] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5794), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4217), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128093] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6769), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4337), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128146] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6771), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4533), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128199] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6773), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4384), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128252] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6775), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4428), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128305] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5842), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4245), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128358] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6777), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4425), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128411] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6779), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4530), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128464] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6781), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4378), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128517] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6783), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4370), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128570] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6785), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4341), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128623] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6787), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4227), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128676] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6789), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4344), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128729] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6791), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4240), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128782] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6793), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4229), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128835] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6795), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4418), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128888] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5869), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4552), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128941] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6797), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4256), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128994] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6799), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4268), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129047] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6801), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129100] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6803), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4357), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129153] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6805), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4283), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129206] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6807), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4411), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129259] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6809), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4312), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129312] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6811), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4328), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129365] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6537), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4502), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129418] = 9, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_RBRACE, + STATE(7039), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6815), 2, + sym_number, + sym_private_property_identifier, + STATE(5436), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129472] = 9, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6817), 1, + anon_sym_RBRACE, + STATE(7039), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6815), 2, + sym_number, + sym_private_property_identifier, + STATE(5436), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129526] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3568), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3566), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [129568] = 9, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6819), 1, + anon_sym_RBRACE, + STATE(5704), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6821), 2, + sym_number, + sym_private_property_identifier, + STATE(4999), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129622] = 14, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(6823), 1, + anon_sym_static, + STATE(3097), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129686] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3591), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3589), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [129728] = 14, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4121), 1, + anon_sym_readonly, + ACTIONS(6825), 1, + anon_sym_static, + STATE(3111), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129792] = 14, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5303), 1, + anon_sym_STAR, + ACTIONS(5305), 1, + anon_sym_async, + ACTIONS(5309), 1, + anon_sym_readonly, + ACTIONS(6827), 1, + anon_sym_static, + STATE(3095), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5307), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5311), 2, + anon_sym_get, + anon_sym_set, + STATE(3451), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129856] = 15, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2315), 1, + anon_sym_override, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6829), 1, + anon_sym_STAR, + ACTIONS(6831), 1, + anon_sym_async, + ACTIONS(6835), 1, + anon_sym_static, + ACTIONS(6837), 1, + anon_sym_readonly, + ACTIONS(6839), 1, + anon_sym_get, + ACTIONS(6841), 1, + anon_sym_set, + STATE(3108), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6833), 2, + sym_number, + sym_private_property_identifier, + STATE(4478), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129922] = 9, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6843), 1, + anon_sym_RBRACE, + STATE(7039), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6815), 2, + sym_number, + sym_private_property_identifier, + STATE(5436), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129976] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2231), 1, + anon_sym_import, + ACTIONS(2233), 1, + anon_sym_var, + ACTIONS(2235), 1, + anon_sym_let, + ACTIONS(2237), 1, + anon_sym_const, + ACTIONS(2242), 1, + anon_sym_class, + ACTIONS(2244), 1, + anon_sym_async, + ACTIONS(2246), 1, + anon_sym_function, + ACTIONS(2255), 1, + anon_sym_abstract, + ACTIONS(2257), 1, + anon_sym_interface, + ACTIONS(2259), 1, + anon_sym_enum, + ACTIONS(2289), 1, + anon_sym_type, + ACTIONS(2293), 1, + anon_sym_global, + ACTIONS(2301), 1, + anon_sym_namespace, + ACTIONS(2303), 1, + anon_sym_declare, + ACTIONS(2337), 1, + anon_sym_module, + STATE(756), 1, + sym_declaration, + STATE(855), 1, + sym_internal_module, + STATE(3068), 1, + sym_decorator, + STATE(5203), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(844), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [130056] = 12, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(6087), 1, + anon_sym_readonly, + ACTIONS(6845), 1, + anon_sym_STAR, + STATE(3107), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6847), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6849), 2, + anon_sym_get, + anon_sym_set, + STATE(3429), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130116] = 9, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6851), 1, + anon_sym_RBRACE, + STATE(7039), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6815), 2, + sym_number, + sym_private_property_identifier, + STATE(5436), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130170] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2339), 1, + anon_sym_type, + ACTIONS(2341), 1, + anon_sym_namespace, + ACTIONS(2343), 1, + anon_sym_import, + ACTIONS(2345), 1, + anon_sym_var, + ACTIONS(2347), 1, + anon_sym_let, + ACTIONS(2349), 1, + anon_sym_const, + ACTIONS(2351), 1, + anon_sym_class, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_function, + ACTIONS(2357), 1, + anon_sym_declare, + ACTIONS(2361), 1, + anon_sym_abstract, + ACTIONS(2365), 1, + anon_sym_interface, + ACTIONS(2367), 1, + anon_sym_enum, + ACTIONS(3923), 1, + anon_sym_module, + ACTIONS(6292), 1, + anon_sym_default, + STATE(3068), 1, + sym_decorator, + STATE(5084), 1, + sym_declaration, + STATE(5238), 1, + sym_internal_module, + STATE(5282), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5245), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [130250] = 9, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6853), 1, + anon_sym_RBRACE, + STATE(5568), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6855), 2, + sym_number, + sym_private_property_identifier, + STATE(4988), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130304] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2227), 1, + anon_sym_namespace, + ACTIONS(2231), 1, + anon_sym_import, + ACTIONS(2233), 1, + anon_sym_var, + ACTIONS(2235), 1, + anon_sym_let, + ACTIONS(2237), 1, + anon_sym_const, + ACTIONS(2242), 1, + anon_sym_class, + ACTIONS(2244), 1, + anon_sym_async, + ACTIONS(2246), 1, + anon_sym_function, + ACTIONS(2251), 1, + anon_sym_declare, + ACTIONS(2253), 1, + anon_sym_module, + ACTIONS(2255), 1, + anon_sym_abstract, + ACTIONS(2257), 1, + anon_sym_interface, + ACTIONS(2259), 1, + anon_sym_enum, + ACTIONS(2289), 1, + anon_sym_type, + ACTIONS(6857), 1, + anon_sym_default, + STATE(780), 1, + sym_declaration, + STATE(855), 1, + sym_internal_module, + STATE(3068), 1, + sym_decorator, + STATE(5203), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(844), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [130384] = 9, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6859), 1, + anon_sym_RBRACE, + STATE(7039), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6815), 2, + sym_number, + sym_private_property_identifier, + STATE(5436), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130438] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2231), 1, + anon_sym_import, + ACTIONS(2233), 1, + anon_sym_var, + ACTIONS(2235), 1, + anon_sym_let, + ACTIONS(2237), 1, + anon_sym_const, + ACTIONS(2242), 1, + anon_sym_class, + ACTIONS(2244), 1, + anon_sym_async, + ACTIONS(2246), 1, + anon_sym_function, + ACTIONS(2255), 1, + anon_sym_abstract, + ACTIONS(2257), 1, + anon_sym_interface, + ACTIONS(2259), 1, + anon_sym_enum, + ACTIONS(2289), 1, + anon_sym_type, + ACTIONS(2301), 1, + anon_sym_namespace, + ACTIONS(2303), 1, + anon_sym_declare, + ACTIONS(2305), 1, + anon_sym_module, + ACTIONS(6861), 1, + anon_sym_default, + STATE(780), 1, + sym_declaration, + STATE(855), 1, + sym_internal_module, + STATE(3068), 1, + sym_decorator, + STATE(5203), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(844), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [130518] = 9, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6863), 1, + anon_sym_RBRACE, + STATE(7039), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6815), 2, + sym_number, + sym_private_property_identifier, + STATE(5436), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130572] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3490), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3488), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [130614] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2339), 1, + anon_sym_type, + ACTIONS(2341), 1, + anon_sym_namespace, + ACTIONS(2343), 1, + anon_sym_import, + ACTIONS(2345), 1, + anon_sym_var, + ACTIONS(2347), 1, + anon_sym_let, + ACTIONS(2349), 1, + anon_sym_const, + ACTIONS(2351), 1, + anon_sym_class, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_function, + ACTIONS(2357), 1, + anon_sym_declare, + ACTIONS(2359), 1, + anon_sym_module, + ACTIONS(2361), 1, + anon_sym_abstract, + ACTIONS(2363), 1, + anon_sym_global, + ACTIONS(2365), 1, + anon_sym_interface, + ACTIONS(2367), 1, + anon_sym_enum, + STATE(3068), 1, + sym_decorator, + STATE(5213), 1, + sym_declaration, + STATE(5238), 1, + sym_internal_module, + STATE(5282), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5245), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [130694] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2227), 1, + anon_sym_namespace, + ACTIONS(2231), 1, + anon_sym_import, + ACTIONS(2233), 1, + anon_sym_var, + ACTIONS(2235), 1, + anon_sym_let, + ACTIONS(2237), 1, + anon_sym_const, + ACTIONS(2242), 1, + anon_sym_class, + ACTIONS(2244), 1, + anon_sym_async, + ACTIONS(2246), 1, + anon_sym_function, + ACTIONS(2251), 1, + anon_sym_declare, + ACTIONS(2253), 1, + anon_sym_module, + ACTIONS(2255), 1, + anon_sym_abstract, + ACTIONS(2257), 1, + anon_sym_interface, + ACTIONS(2259), 1, + anon_sym_enum, + ACTIONS(2289), 1, + anon_sym_type, + ACTIONS(6290), 1, + anon_sym_default, + STATE(780), 1, + sym_declaration, + STATE(855), 1, + sym_internal_module, + STATE(3068), 1, + sym_decorator, + STATE(5203), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(844), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [130774] = 12, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_override, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_STAR, + ACTIONS(6869), 1, + anon_sym_readonly, + STATE(3100), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6867), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6871), 2, + anon_sym_get, + anon_sym_set, + STATE(3416), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130834] = 9, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6873), 1, + anon_sym_RBRACE, + STATE(7039), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6815), 2, + sym_number, + sym_private_property_identifier, + STATE(5436), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130888] = 9, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6875), 1, + anon_sym_RBRACE, + STATE(7039), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6815), 2, + sym_number, + sym_private_property_identifier, + STATE(5436), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130942] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2227), 1, + anon_sym_namespace, + ACTIONS(2231), 1, + anon_sym_import, + ACTIONS(2233), 1, + anon_sym_var, + ACTIONS(2235), 1, + anon_sym_let, + ACTIONS(2237), 1, + anon_sym_const, + ACTIONS(2242), 1, + anon_sym_class, + ACTIONS(2244), 1, + anon_sym_async, + ACTIONS(2246), 1, + anon_sym_function, + ACTIONS(2251), 1, + anon_sym_declare, + ACTIONS(2255), 1, + anon_sym_abstract, + ACTIONS(2257), 1, + anon_sym_interface, + ACTIONS(2259), 1, + anon_sym_enum, + ACTIONS(2289), 1, + anon_sym_type, + ACTIONS(2291), 1, + anon_sym_module, + ACTIONS(2293), 1, + anon_sym_global, + STATE(756), 1, + sym_declaration, + STATE(855), 1, + sym_internal_module, + STATE(3068), 1, + sym_decorator, + STATE(5203), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(844), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [131022] = 12, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(6877), 1, + anon_sym_STAR, + ACTIONS(6879), 1, + anon_sym_async, + ACTIONS(6883), 1, + anon_sym_readonly, + ACTIONS(6885), 1, + anon_sym_get, + ACTIONS(6887), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6881), 2, + sym_number, + sym_private_property_identifier, + STATE(3447), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131081] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(4690), 1, + anon_sym_STAR, + ACTIONS(4694), 1, + anon_sym_async, + ACTIONS(4698), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4696), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4700), 2, + anon_sym_get, + anon_sym_set, + STATE(3410), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131138] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5262), 1, + anon_sym_STAR, + ACTIONS(5264), 1, + anon_sym_async, + ACTIONS(5268), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5266), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5270), 2, + anon_sym_get, + anon_sym_set, + STATE(3431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131195] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5315), 1, + anon_sym_STAR, + ACTIONS(5317), 1, + anon_sym_async, + ACTIONS(5321), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5319), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5323), 2, + anon_sym_get, + anon_sym_set, + STATE(3534), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131252] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1963), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1961), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131295] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6304), 1, + anon_sym_STAR, + ACTIONS(6306), 1, + anon_sym_async, + ACTIONS(6310), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6308), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6312), 2, + anon_sym_get, + anon_sym_set, + STATE(4321), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131352] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5580), 1, + anon_sym_STAR, + ACTIONS(5604), 1, + anon_sym_async, + ACTIONS(6889), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5606), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5608), 2, + anon_sym_get, + anon_sym_set, + STATE(3525), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131409] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6519), 1, + anon_sym_STAR, + ACTIONS(6525), 1, + anon_sym_async, + ACTIONS(6891), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6521), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6523), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131466] = 9, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6845), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5948), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6893), 2, + anon_sym_get, + anon_sym_set, + STATE(4187), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131519] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4111), 1, + anon_sym_STAR, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(4117), 1, + anon_sym_async, + ACTIONS(4121), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4123), 2, + anon_sym_get, + anon_sym_set, + STATE(3469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131576] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6895), 1, + anon_sym_STAR, + ACTIONS(6897), 1, + anon_sym_async, + ACTIONS(6901), 1, + anon_sym_readonly, + ACTIONS(6903), 1, + anon_sym_get, + ACTIONS(6905), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6899), 2, + sym_number, + sym_private_property_identifier, + STATE(4497), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131635] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5834), 1, + anon_sym_STAR, + ACTIONS(5836), 1, + anon_sym_async, + ACTIONS(6907), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5838), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5840), 2, + anon_sym_get, + anon_sym_set, + STATE(3470), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131692] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5303), 1, + anon_sym_STAR, + ACTIONS(5305), 1, + anon_sym_async, + ACTIONS(5309), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5307), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5311), 2, + anon_sym_get, + anon_sym_set, + STATE(3451), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131749] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, + anon_sym_async, + ACTIONS(6909), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5501), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5503), 2, + anon_sym_get, + anon_sym_set, + STATE(3441), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131806] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + STATE(7039), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6815), 2, + sym_number, + sym_private_property_identifier, + STATE(5436), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131857] = 9, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6911), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6913), 2, + anon_sym_get, + anon_sym_set, + STATE(4406), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131910] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6915), 1, + anon_sym_STAR, + ACTIONS(6917), 1, + anon_sym_async, + ACTIONS(6921), 1, + anon_sym_readonly, + ACTIONS(6923), 1, + anon_sym_get, + ACTIONS(6925), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6919), 2, + sym_number, + sym_private_property_identifier, + STATE(4311), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131969] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2003), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(2001), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132012] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6927), 1, + anon_sym_STAR, + ACTIONS(6929), 1, + anon_sym_async, + ACTIONS(6933), 1, + anon_sym_readonly, + ACTIONS(6935), 1, + anon_sym_get, + ACTIONS(6937), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6931), 2, + sym_number, + sym_private_property_identifier, + STATE(4347), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132071] = 11, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5368), 1, + anon_sym_STAR, + ACTIONS(5370), 1, + anon_sym_async, + ACTIONS(5374), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5372), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5376), 2, + anon_sym_get, + anon_sym_set, + STATE(3498), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132128] = 12, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(6939), 1, + anon_sym_STAR, + ACTIONS(6941), 1, + anon_sym_async, + ACTIONS(6945), 1, + anon_sym_readonly, + ACTIONS(6947), 1, + anon_sym_get, + ACTIONS(6949), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6943), 2, + sym_number, + sym_private_property_identifier, + STATE(3409), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132187] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(2309), 1, + anon_sym_async, + ACTIONS(2311), 1, + anon_sym_readonly, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2313), 2, + anon_sym_get, + anon_sym_set, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132244] = 12, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(6951), 1, + anon_sym_STAR, + ACTIONS(6953), 1, + anon_sym_async, + ACTIONS(6957), 1, + anon_sym_readonly, + ACTIONS(6959), 1, + anon_sym_get, + ACTIONS(6961), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6955), 2, + sym_number, + sym_private_property_identifier, + STATE(3425), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132303] = 12, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(6963), 1, + anon_sym_STAR, + ACTIONS(6965), 1, + anon_sym_async, + ACTIONS(6969), 1, + anon_sym_readonly, + ACTIONS(6971), 1, + anon_sym_get, + ACTIONS(6973), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6967), 2, + sym_number, + sym_private_property_identifier, + STATE(3411), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132362] = 12, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(6975), 1, + anon_sym_STAR, + ACTIONS(6977), 1, + anon_sym_async, + ACTIONS(6981), 1, + anon_sym_readonly, + ACTIONS(6983), 1, + anon_sym_get, + ACTIONS(6985), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6979), 2, + sym_number, + sym_private_property_identifier, + STATE(4340), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132421] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6987), 2, + sym_number, + sym_private_property_identifier, + STATE(4441), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132469] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5794), 2, + sym_number, + sym_private_property_identifier, + STATE(4217), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132517] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6751), 2, + sym_number, + sym_private_property_identifier, + STATE(4291), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132565] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6989), 2, + sym_number, + sym_private_property_identifier, + STATE(4372), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132613] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6991), 2, + sym_number, + sym_private_property_identifier, + STATE(4455), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132661] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6993), 2, + sym_number, + sym_private_property_identifier, + STATE(3836), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132709] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(6997), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6995), 2, + sym_number, + sym_private_property_identifier, + STATE(3837), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132759] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6999), 2, + sym_number, + sym_private_property_identifier, + STATE(3732), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132809] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(7005), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7003), 2, + sym_number, + sym_private_property_identifier, + STATE(3772), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132859] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7007), 2, + sym_number, + sym_private_property_identifier, + STATE(4587), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132907] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7009), 2, + sym_number, + sym_private_property_identifier, + STATE(4469), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132955] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7011), 2, + sym_number, + sym_private_property_identifier, + STATE(4249), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133003] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7013), 2, + sym_number, + sym_private_property_identifier, + STATE(4596), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133051] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7015), 2, + sym_number, + sym_private_property_identifier, + STATE(3774), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133099] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7017), 2, + sym_number, + sym_private_property_identifier, + STATE(3784), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133147] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7019), 2, + sym_number, + sym_private_property_identifier, + STATE(4392), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133195] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7021), 2, + sym_number, + sym_private_property_identifier, + STATE(4422), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133243] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7023), 2, + sym_number, + sym_private_property_identifier, + STATE(4269), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133291] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5542), 2, + sym_number, + sym_private_property_identifier, + STATE(4239), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133339] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7025), 2, + sym_number, + sym_private_property_identifier, + STATE(4182), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133387] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(6087), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5083), 2, + sym_number, + sym_private_property_identifier, + STATE(3728), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133437] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5724), 2, + sym_number, + sym_private_property_identifier, + STATE(4597), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133485] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5536), 2, + sym_number, + sym_private_property_identifier, + STATE(4482), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133533] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7027), 2, + sym_number, + sym_private_property_identifier, + STATE(4443), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133581] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7029), 2, + sym_number, + sym_private_property_identifier, + STATE(4579), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133629] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7031), 2, + sym_number, + sym_private_property_identifier, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133677] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5461), 2, + sym_number, + sym_private_property_identifier, + STATE(4203), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133725] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7033), 2, + sym_number, + sym_private_property_identifier, + STATE(4557), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133773] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7035), 2, + sym_number, + sym_private_property_identifier, + STATE(4199), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133821] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6408), 2, + sym_number, + sym_private_property_identifier, + STATE(4397), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133869] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7037), 2, + sym_number, + sym_private_property_identifier, + STATE(4215), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133917] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7039), 2, + sym_number, + sym_private_property_identifier, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133965] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6147), 2, + sym_number, + sym_private_property_identifier, + STATE(3727), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134013] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5558), 2, + sym_number, + sym_private_property_identifier, + STATE(4481), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134061] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7041), 2, + sym_number, + sym_private_property_identifier, + STATE(4236), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134109] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7043), 2, + sym_number, + sym_private_property_identifier, + STATE(4204), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134157] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7045), 2, + sym_number, + sym_private_property_identifier, + STATE(4232), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134205] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7047), 2, + sym_number, + sym_private_property_identifier, + STATE(4353), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134253] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7049), 2, + sym_number, + sym_private_property_identifier, + STATE(4409), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134301] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7051), 2, + sym_number, + sym_private_property_identifier, + STATE(4534), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134349] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7053), 2, + sym_number, + sym_private_property_identifier, + STATE(4346), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134397] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7055), 2, + sym_number, + sym_private_property_identifier, + STATE(4213), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134445] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7057), 2, + sym_number, + sym_private_property_identifier, + STATE(4251), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134493] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7059), 2, + sym_number, + sym_private_property_identifier, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134541] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(7063), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7061), 2, + sym_number, + sym_private_property_identifier, + STATE(3713), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134591] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7065), 2, + sym_number, + sym_private_property_identifier, + STATE(4416), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134639] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7067), 2, + sym_number, + sym_private_property_identifier, + STATE(3764), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134687] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7069), 2, + sym_number, + sym_private_property_identifier, + STATE(4379), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134735] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2285), 2, + sym_number, + sym_private_property_identifier, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134783] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7071), 2, + sym_number, + sym_private_property_identifier, + STATE(4555), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134831] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7073), 2, + sym_number, + sym_private_property_identifier, + STATE(4383), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134879] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134927] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7075), 2, + sym_number, + sym_private_property_identifier, + STATE(4490), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134975] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7077), 2, + sym_number, + sym_private_property_identifier, + STATE(4506), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135023] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7079), 2, + sym_number, + sym_private_property_identifier, + STATE(4537), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135071] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7081), 2, + sym_number, + sym_private_property_identifier, + STATE(4553), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135119] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(7085), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7083), 2, + sym_number, + sym_private_property_identifier, + STATE(3786), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135169] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7087), 2, + sym_number, + sym_private_property_identifier, + STATE(4588), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135217] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7089), 2, + sym_number, + sym_private_property_identifier, + STATE(4558), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135265] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5083), 2, + sym_number, + sym_private_property_identifier, + STATE(3728), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135313] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(7093), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7091), 2, + sym_number, + sym_private_property_identifier, + STATE(3785), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135363] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7095), 2, + sym_number, + sym_private_property_identifier, + STATE(4180), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135411] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6308), 2, + sym_number, + sym_private_property_identifier, + STATE(4321), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135459] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7097), 2, + sym_number, + sym_private_property_identifier, + STATE(4356), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135507] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7099), 2, + sym_number, + sym_private_property_identifier, + STATE(4536), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135555] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4705), 2, + sym_number, + sym_private_property_identifier, + STATE(3867), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135603] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6521), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135651] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6623), 2, + sym_number, + sym_private_property_identifier, + STATE(4185), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135699] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5582), 2, + sym_number, + sym_private_property_identifier, + STATE(4184), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135747] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7101), 2, + sym_number, + sym_private_property_identifier, + STATE(4400), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135795] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5948), 2, + sym_number, + sym_private_property_identifier, + STATE(4187), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135843] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5707), 2, + sym_number, + sym_private_property_identifier, + STATE(4394), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135891] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5842), 2, + sym_number, + sym_private_property_identifier, + STATE(4245), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135939] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5576), 2, + sym_number, + sym_private_property_identifier, + STATE(4496), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135987] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7103), 2, + sym_number, + sym_private_property_identifier, + STATE(4423), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136035] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7105), 2, + sym_number, + sym_private_property_identifier, + STATE(4355), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136083] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7107), 2, + sym_number, + sym_private_property_identifier, + STATE(4523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136131] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7109), 2, + sym_number, + sym_private_property_identifier, + STATE(4560), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136179] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7111), 2, + sym_number, + sym_private_property_identifier, + STATE(4254), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136227] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5830), 2, + sym_number, + sym_private_property_identifier, + STATE(4514), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136275] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7113), 2, + sym_number, + sym_private_property_identifier, + STATE(3715), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136323] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7115), 2, + sym_number, + sym_private_property_identifier, + STATE(4568), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136371] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7117), 2, + sym_number, + sym_private_property_identifier, + STATE(4225), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136419] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7119), 2, + sym_number, + sym_private_property_identifier, + STATE(4260), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136467] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5435), 2, + sym_number, + sym_private_property_identifier, + STATE(4343), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136515] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7121), 2, + sym_number, + sym_private_property_identifier, + STATE(4292), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136563] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5510), 2, + sym_number, + sym_private_property_identifier, + STATE(4576), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136611] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7123), 2, + sym_number, + sym_private_property_identifier, + STATE(4333), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136659] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7125), 2, + sym_number, + sym_private_property_identifier, + STATE(4335), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136707] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7127), 2, + sym_number, + sym_private_property_identifier, + STATE(4310), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136755] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7129), 2, + sym_number, + sym_private_property_identifier, + STATE(4427), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136803] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6801), 2, + sym_number, + sym_private_property_identifier, + STATE(4361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136851] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6537), 2, + sym_number, + sym_private_property_identifier, + STATE(4502), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136899] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5869), 2, + sym_number, + sym_private_property_identifier, + STATE(4552), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136947] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(6121), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5954), 2, + sym_number, + sym_private_property_identifier, + STATE(3730), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136997] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5954), 2, + sym_number, + sym_private_property_identifier, + STATE(3730), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137045] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(7133), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7131), 2, + sym_number, + sym_private_property_identifier, + STATE(3747), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137095] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7135), 2, + sym_number, + sym_private_property_identifier, + STATE(4453), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137143] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7137), 2, + sym_number, + sym_private_property_identifier, + STATE(3751), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137191] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4601), 2, + sym_number, + sym_private_property_identifier, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137239] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7139), 2, + sym_number, + sym_private_property_identifier, + STATE(4432), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137287] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7141), 2, + sym_number, + sym_private_property_identifier, + STATE(4218), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137335] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 2, + sym_number, + sym_private_property_identifier, + STATE(4406), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137383] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6627), 2, + sym_number, + sym_private_property_identifier, + STATE(4476), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137431] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7143), 2, + sym_number, + sym_private_property_identifier, + STATE(4309), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137479] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7145), 2, + sym_number, + sym_private_property_identifier, + STATE(4301), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137527] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7147), 2, + sym_number, + sym_private_property_identifier, + STATE(4290), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137575] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(7151), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7149), 2, + sym_number, + sym_private_property_identifier, + STATE(3766), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137625] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7153), 2, + sym_number, + sym_private_property_identifier, + STATE(4285), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137673] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7155), 2, + sym_number, + sym_private_property_identifier, + STATE(3852), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137721] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7157), 2, + sym_number, + sym_private_property_identifier, + STATE(4231), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137769] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(7159), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6147), 2, + sym_number, + sym_private_property_identifier, + STATE(3727), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137819] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(7163), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7161), 2, + sym_number, + sym_private_property_identifier, + STATE(3738), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137869] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7165), 2, + sym_number, + sym_private_property_identifier, + STATE(3736), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137917] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(7169), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7167), 2, + sym_number, + sym_private_property_identifier, + STATE(3761), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137967] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(7173), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7171), 2, + sym_number, + sym_private_property_identifier, + STATE(3859), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138017] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7175), 2, + sym_number, + sym_private_property_identifier, + STATE(3856), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3609), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138065] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7177), 2, + sym_number, + sym_private_property_identifier, + STATE(4280), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138113] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7179), 2, + sym_number, + sym_private_property_identifier, + STATE(4519), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2307), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138161] = 4, + ACTIONS(7181), 1, + sym_identifier, + STATE(7207), 1, + sym_mapped_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7183), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138196] = 9, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(7185), 1, + anon_sym_DOT, + ACTIONS(7187), 1, + anon_sym_QMARK_DOT, + ACTIONS(7189), 1, + anon_sym_LT, + STATE(3286), 1, + sym_arguments, + STATE(3376), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3993), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3995), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138237] = 9, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7191), 1, + anon_sym_DOT, + ACTIONS(7193), 1, + anon_sym_QMARK_DOT, + STATE(3287), 1, + sym_arguments, + STATE(3375), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3999), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4001), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138278] = 9, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, + ACTIONS(7189), 1, + anon_sym_LT, + STATE(3288), 1, + sym_arguments, + STATE(3373), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3422), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3418), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138319] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4191), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4193), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138347] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4191), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4193), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138375] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4233), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138403] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4201), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4203), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138431] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4053), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4055), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138459] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4053), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4055), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138487] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4159), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4161), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138515] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4155), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4157), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138543] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4159), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4161), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138571] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4053), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4055), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138599] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4159), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4161), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138627] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4191), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4193), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138655] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4227), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4229), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138683] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4187), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4189), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138711] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4163), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4165), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138739] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4163), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4165), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138767] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4155), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4157), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138795] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4163), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4165), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138823] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4187), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4189), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138851] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4155), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4157), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138879] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4187), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4189), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138907] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4227), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4229), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138935] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4233), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138963] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4235), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4237), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138991] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4239), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4241), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139019] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4235), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4237), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139047] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4169), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4171), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139075] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4239), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4241), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139103] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4253), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4255), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139131] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4259), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4261), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139159] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4279), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4281), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139187] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4275), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4277), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139215] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4253), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4255), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139243] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4259), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4261), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139271] = 3, + ACTIONS(1781), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1779), 17, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [139298] = 6, + ACTIONS(4005), 1, + anon_sym_EQ, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7195), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3476), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [139331] = 3, + ACTIONS(1777), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1775), 17, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [139358] = 18, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7199), 1, + anon_sym_EQ, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7203), 1, + anon_sym_COMMA, + ACTIONS(7205), 1, + anon_sym_COLON, + ACTIONS(7207), 1, + anon_sym_GT, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7212), 1, + anon_sym_DOT, + ACTIONS(7214), 1, + anon_sym_SLASH_GT, + ACTIONS(7216), 1, + anon_sym_extends, + STATE(3776), 1, + sym_type_arguments, + STATE(3788), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + STATE(5459), 1, + sym_constraint, + STATE(6123), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139415] = 18, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7199), 1, + anon_sym_EQ, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7203), 1, + anon_sym_COMMA, + ACTIONS(7205), 1, + anon_sym_COLON, + ACTIONS(7207), 1, + anon_sym_GT, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7212), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + anon_sym_extends, + ACTIONS(7218), 1, + anon_sym_SLASH_GT, + STATE(3873), 1, + sym_type_arguments, + STATE(3884), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + STATE(5459), 1, + sym_constraint, + STATE(6123), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [139472] = 14, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(7220), 1, + sym_identifier, + ACTIONS(7222), 1, + anon_sym_STAR, + ACTIONS(7224), 1, + anon_sym_type, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7228), 1, + anon_sym_typeof, + STATE(5299), 1, + sym_string, + STATE(5304), 1, + sym_import_require_clause, + STATE(6384), 1, + sym__import_identifier, + STATE(6444), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7516), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7230), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [139521] = 4, + ACTIONS(1831), 1, + anon_sym_DOT, + ACTIONS(4345), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4347), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [139549] = 9, + ACTIONS(3436), 1, + anon_sym_LPAREN, + ACTIONS(3993), 1, + anon_sym_PIPE, + ACTIONS(7232), 1, + anon_sym_DOT, + ACTIONS(7234), 1, + anon_sym_QMARK_DOT, + ACTIONS(7236), 1, + anon_sym_LT, + STATE(3459), 1, + sym_arguments, + STATE(3613), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3995), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [139587] = 3, + ACTIONS(4337), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4339), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [139613] = 3, + ACTIONS(3605), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3378), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [139639] = 3, + ACTIONS(3607), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3400), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [139665] = 4, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(4345), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4347), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [139693] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4453), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4455), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [139719] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4375), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4377), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [139745] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4383), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4385), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [139771] = 7, + ACTIONS(4005), 1, + anon_sym_EQ, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7195), 1, + anon_sym_DOT, + ACTIONS(7238), 1, + anon_sym_is, + STATE(3335), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3476), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [139805] = 3, + ACTIONS(4329), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4331), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [139831] = 3, + ACTIONS(4321), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4323), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [139857] = 9, + ACTIONS(3436), 1, + anon_sym_LPAREN, + ACTIONS(3999), 1, + anon_sym_PIPE, + ACTIONS(7236), 1, + anon_sym_LT, + ACTIONS(7240), 1, + anon_sym_DOT, + ACTIONS(7242), 1, + anon_sym_QMARK_DOT, + STATE(3481), 1, + sym_arguments, + STATE(3641), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4001), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [139895] = 9, + ACTIONS(3422), 1, + anon_sym_PIPE, + ACTIONS(3436), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_DOT, + ACTIONS(3440), 1, + anon_sym_QMARK_DOT, + ACTIONS(7236), 1, + anon_sym_LT, + STATE(3499), 1, + sym_arguments, + STATE(3645), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3418), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [139933] = 3, + ACTIONS(4479), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4481), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, + anon_sym_extends, + [139959] = 3, + ACTIONS(4483), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4485), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, + anon_sym_extends, + [139985] = 3, + ACTIONS(4487), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4489), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, + anon_sym_extends, + [140011] = 5, + ACTIONS(7244), 1, + anon_sym_DOT, + ACTIONS(7246), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4445), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4447), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140041] = 5, + ACTIONS(4013), 1, + anon_sym_EQ, + ACTIONS(7189), 1, + anon_sym_LT, + STATE(3330), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4015), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [140071] = 3, + ACTIONS(4333), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4335), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [140097] = 5, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3422), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3418), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140127] = 6, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(7248), 1, + anon_sym_DOT, + STATE(3306), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4025), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140158] = 4, + ACTIONS(4461), 1, + anon_sym_EQ, + ACTIONS(7250), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4463), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [140185] = 3, + ACTIONS(4037), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4039), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_is, + [140210] = 3, + ACTIONS(1664), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1662), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_is, + [140235] = 3, + ACTIONS(4313), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4315), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [140260] = 3, + ACTIONS(4387), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4389), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [140285] = 3, + ACTIONS(4259), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [140309] = 3, + ACTIONS(4239), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4241), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [140333] = 3, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4193), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [140357] = 3, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4193), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [140381] = 3, + ACTIONS(4019), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4021), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [140405] = 3, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4193), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [140429] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7252), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [140451] = 3, + ACTIONS(4053), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4055), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [140475] = 3, + ACTIONS(4053), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4055), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [140499] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [140521] = 7, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7258), 1, + sym_number, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7427), 2, + sym_string, + sym_predefined_type, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [140553] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7262), 1, + sym_number, + STATE(7421), 1, + sym_predefined_type, + STATE(7422), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [140587] = 8, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(7266), 1, + anon_sym_DOT, + ACTIONS(7268), 1, + anon_sym_QMARK_DOT, + ACTIONS(7270), 1, + anon_sym_LT, + STATE(3601), 1, + sym_arguments, + STATE(3797), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3995), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140621] = 3, + ACTIONS(4435), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4437), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [140645] = 8, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(7270), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_DOT, + ACTIONS(7274), 1, + anon_sym_QMARK_DOT, + STATE(3603), 1, + sym_arguments, + STATE(3793), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4001), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140679] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7276), 1, + sym_number, + STATE(7178), 1, + sym_string, + STATE(7419), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [140713] = 7, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7278), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7544), 2, + sym_string, + sym_predefined_type, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [140745] = 8, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(7270), 1, + anon_sym_LT, + ACTIONS(7280), 1, + anon_sym_DOT, + ACTIONS(7282), 1, + anon_sym_QMARK_DOT, + STATE(3606), 1, + sym_arguments, + STATE(3789), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3418), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140779] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7284), 1, + sym_number, + STATE(7538), 1, + sym_predefined_type, + STATE(7540), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [140813] = 3, + ACTIONS(4053), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4055), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [140837] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7286), 1, + sym_number, + STATE(7527), 1, + sym_predefined_type, + STATE(7528), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [140871] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7288), 1, + sym_number, + STATE(7523), 1, + sym_predefined_type, + STATE(7524), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [140905] = 3, + ACTIONS(4201), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4203), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [140929] = 3, + ACTIONS(4391), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4393), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [140953] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7290), 1, + sym_number, + STATE(7415), 1, + sym_predefined_type, + STATE(7417), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [140987] = 4, + ACTIONS(4399), 1, + anon_sym_EQ, + ACTIONS(7292), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4401), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141013] = 5, + ACTIONS(4411), 1, + anon_sym_EQ, + ACTIONS(7292), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4413), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [141041] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7294), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [141063] = 3, + ACTIONS(4423), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4425), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141087] = 3, + ACTIONS(4427), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4429), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141111] = 3, + ACTIONS(4303), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4301), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141135] = 3, + ACTIONS(4187), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4189), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [141159] = 3, + ACTIONS(4151), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4153), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141183] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7296), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [141205] = 3, + ACTIONS(4187), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4189), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [141229] = 3, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4369), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141253] = 3, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4229), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [141277] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7298), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [141299] = 3, + ACTIONS(4231), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4233), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [141323] = 3, + ACTIONS(4471), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4473), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141347] = 3, + ACTIONS(4013), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4015), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141371] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7300), 1, + sym_number, + STATE(7307), 1, + sym_predefined_type, + STATE(7308), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [141405] = 3, + ACTIONS(4467), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4469), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141429] = 3, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4295), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141453] = 3, + ACTIONS(4029), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4031), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141477] = 3, + ACTIONS(4441), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4443), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141501] = 7, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7302), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7318), 2, + sym_string, + sym_predefined_type, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [141533] = 3, + ACTIONS(4415), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141557] = 4, + ACTIONS(4415), 1, + anon_sym_EQ, + ACTIONS(7292), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141583] = 3, + ACTIONS(4457), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4459), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141607] = 3, + ACTIONS(4169), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4171), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [141631] = 3, + ACTIONS(4211), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4213), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141655] = 3, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4229), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [141679] = 3, + ACTIONS(4219), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4221), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141703] = 3, + ACTIONS(4231), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4233), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [141727] = 3, + ACTIONS(4223), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4225), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141751] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7304), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [141773] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7306), 1, + sym_number, + STATE(7260), 1, + sym_string, + STATE(7261), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [141807] = 3, + ACTIONS(4163), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4165), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [141831] = 3, + ACTIONS(4183), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4185), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141855] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7308), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [141877] = 3, + ACTIONS(4163), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4165), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [141901] = 3, + ACTIONS(4235), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4237), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [141925] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7310), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [141947] = 3, + ACTIONS(4179), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4181), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141971] = 3, + ACTIONS(4173), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4175), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [141995] = 3, + ACTIONS(4379), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4381), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142019] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7312), 1, + sym_number, + STATE(7257), 1, + sym_string, + STATE(7258), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [142053] = 3, + ACTIONS(4371), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4373), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142077] = 3, + ACTIONS(4363), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4365), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142101] = 3, + ACTIONS(4239), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4241), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142125] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7314), 1, + sym_number, + STATE(7254), 1, + sym_string, + STATE(7255), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [142159] = 7, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7316), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7264), 2, + sym_string, + sym_predefined_type, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [142191] = 3, + ACTIONS(4235), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4237), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142215] = 3, + ACTIONS(4163), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4165), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142239] = 3, + ACTIONS(4359), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4361), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142263] = 3, + ACTIONS(4159), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4161), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142287] = 3, + ACTIONS(4159), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4161), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142311] = 3, + ACTIONS(4355), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4357), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142335] = 7, + ACTIONS(4005), 1, + anon_sym_PIPE, + ACTIONS(7236), 1, + anon_sym_LT, + ACTIONS(7318), 1, + anon_sym_DOT, + ACTIONS(7320), 1, + anon_sym_is, + STATE(3663), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3476), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142367] = 3, + ACTIONS(4159), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4161), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142391] = 3, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4343), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142415] = 3, + ACTIONS(4187), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4189), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142439] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7322), 1, + sym_number, + STATE(7354), 1, + sym_predefined_type, + STATE(7355), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [142473] = 3, + ACTIONS(4317), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4319), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142497] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7324), 1, + sym_number, + STATE(7358), 1, + sym_predefined_type, + STATE(7359), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [142531] = 3, + ACTIONS(4205), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4207), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142555] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4255), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142579] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7326), 1, + sym_number, + STATE(7362), 1, + sym_predefined_type, + STATE(7364), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [142613] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7328), 1, + sym_number, + STATE(7314), 1, + sym_predefined_type, + STATE(7315), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [142647] = 7, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7330), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7366), 2, + sym_string, + sym_predefined_type, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [142679] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4255), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142703] = 3, + ACTIONS(4155), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4157), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142727] = 3, + ACTIONS(4259), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142751] = 3, + ACTIONS(4297), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4299), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142775] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(7260), 1, + anon_sym_unique, + ACTIONS(7332), 1, + sym_number, + STATE(7310), 1, + sym_predefined_type, + STATE(7311), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [142809] = 3, + ACTIONS(4155), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4157), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142833] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7334), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [142855] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4281), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142879] = 3, + ACTIONS(4275), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4277), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142903] = 3, + ACTIONS(4155), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4157), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142927] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3958), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(4123), 1, + sym_formal_parameters, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + STATE(7115), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [142966] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7340), 1, + anon_sym_BANG, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7346), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(5166), 1, + sym_type_annotation, + STATE(5554), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7067), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143009] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7350), 1, + anon_sym_BANG, + ACTIONS(7352), 1, + anon_sym_LPAREN, + ACTIONS(7354), 1, + anon_sym_QMARK, + STATE(3804), 1, + sym_formal_parameters, + STATE(4179), 1, + sym__call_signature, + STATE(5197), 1, + sym_type_annotation, + STATE(5527), 1, + sym__initializer, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7348), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143052] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7356), 1, + anon_sym_BANG, + ACTIONS(7358), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(4902), 1, + sym_type_annotation, + STATE(5593), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7016), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143095] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7360), 1, + anon_sym_BANG, + ACTIONS(7362), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(4897), 1, + sym_type_annotation, + STATE(5594), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(6917), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143138] = 6, + ACTIONS(218), 1, + anon_sym_unique, + STATE(3610), 1, + sym_type_predicate, + STATE(7394), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7364), 2, + sym_identifier, + sym_this, + ACTIONS(220), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [143167] = 6, + ACTIONS(4005), 1, + anon_sym_PIPE, + ACTIONS(7236), 1, + anon_sym_LT, + ACTIONS(7318), 1, + anon_sym_DOT, + STATE(3663), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3476), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [143196] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3961), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(4123), 1, + sym_formal_parameters, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + STATE(7115), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [143235] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7350), 1, + anon_sym_BANG, + ACTIONS(7366), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(5197), 1, + sym_type_annotation, + STATE(5501), 1, + sym__initializer, + STATE(5522), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7348), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143278] = 4, + ACTIONS(4013), 1, + anon_sym_EQ, + ACTIONS(7368), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4015), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [143303] = 6, + ACTIONS(218), 1, + anon_sym_unique, + STATE(3311), 1, + sym_type_predicate, + STATE(7271), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7370), 2, + sym_identifier, + sym_this, + ACTIONS(220), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [143332] = 6, + ACTIONS(3436), 1, + anon_sym_LPAREN, + ACTIONS(4023), 1, + anon_sym_PIPE, + ACTIONS(7372), 1, + anon_sym_DOT, + STATE(3556), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4025), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [143361] = 4, + ACTIONS(4029), 1, + anon_sym_EQ, + ACTIONS(7238), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4031), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [143386] = 6, + ACTIONS(218), 1, + anon_sym_unique, + STATE(1899), 1, + sym_type_predicate, + STATE(7448), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7374), 2, + sym_identifier, + sym_this, + ACTIONS(220), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [143415] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7378), 1, + anon_sym_BANG, + ACTIONS(7380), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(5210), 1, + sym_type_annotation, + STATE(5779), 1, + sym__initializer, + STATE(6614), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143458] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7384), 1, + anon_sym_BANG, + ACTIONS(7386), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_annotation, + STATE(5498), 1, + sym__initializer, + STATE(6385), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7382), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143501] = 6, + ACTIONS(218), 1, + anon_sym_unique, + STATE(1467), 1, + sym_type_predicate, + STATE(7337), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7388), 2, + sym_identifier, + sym_this, + ACTIONS(220), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [143530] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7392), 1, + anon_sym_BANG, + ACTIONS(7394), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(4722), 1, + sym_type_annotation, + STATE(5525), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7160), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143573] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7396), 1, + anon_sym_BANG, + ACTIONS(7398), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(4712), 1, + sym_type_annotation, + STATE(5524), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7161), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143616] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7400), 1, + anon_sym_BANG, + ACTIONS(7402), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(4628), 1, + sym_type_annotation, + STATE(5517), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7170), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143659] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7404), 1, + anon_sym_BANG, + ACTIONS(7406), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(4636), 1, + sym_type_annotation, + STATE(5516), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7177), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143702] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7410), 1, + anon_sym_BANG, + ACTIONS(7412), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(4972), 1, + sym_type_annotation, + STATE(5514), 1, + sym__call_signature, + STATE(5515), 1, + sym__initializer, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143745] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7352), 1, + anon_sym_LPAREN, + ACTIONS(7416), 1, + anon_sym_BANG, + ACTIONS(7418), 1, + anon_sym_QMARK, + STATE(3804), 1, + sym_formal_parameters, + STATE(4380), 1, + sym__call_signature, + STATE(4694), 1, + sym_type_annotation, + STATE(5606), 1, + sym__initializer, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7414), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143788] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7352), 1, + anon_sym_LPAREN, + ACTIONS(7410), 1, + anon_sym_BANG, + ACTIONS(7420), 1, + anon_sym_QMARK, + STATE(3804), 1, + sym_formal_parameters, + STATE(4445), 1, + sym__call_signature, + STATE(4972), 1, + sym_type_annotation, + STATE(5503), 1, + sym__initializer, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143831] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7352), 1, + anon_sym_LPAREN, + ACTIONS(7424), 1, + anon_sym_BANG, + ACTIONS(7426), 1, + anon_sym_QMARK, + STATE(3804), 1, + sym_formal_parameters, + STATE(4457), 1, + sym__call_signature, + STATE(4649), 1, + sym_type_annotation, + STATE(5887), 1, + sym__initializer, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7422), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143874] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7428), 1, + anon_sym_BANG, + ACTIONS(7430), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(5187), 1, + sym_type_annotation, + STATE(5549), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7074), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143917] = 5, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1707), 2, + sym_template_string, + sym_arguments, + ACTIONS(4381), 10, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143944] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7434), 1, + anon_sym_BANG, + ACTIONS(7436), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(4708), 1, + sym_type_annotation, + STATE(5613), 1, + sym__initializer, + STATE(6873), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143987] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7438), 1, + anon_sym_BANG, + ACTIONS(7440), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(4868), 1, + sym_type_annotation, + STATE(5692), 1, + sym__initializer, + STATE(6680), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144030] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7442), 1, + anon_sym_BANG, + ACTIONS(7444), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(5062), 1, + sym_type_annotation, + STATE(5584), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7047), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144073] = 6, + ACTIONS(218), 1, + anon_sym_unique, + STATE(3878), 1, + sym_type_predicate, + STATE(7548), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7446), 2, + sym_identifier, + sym_this, + ACTIONS(220), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [144102] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7448), 1, + anon_sym_BANG, + ACTIONS(7450), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(5004), 1, + sym_type_annotation, + STATE(5585), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7043), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144145] = 6, + ACTIONS(218), 1, + anon_sym_unique, + STATE(3311), 1, + sym_type_predicate, + STATE(7244), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7452), 2, + sym_identifier, + sym_this, + ACTIONS(220), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [144174] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7352), 1, + anon_sym_LPAREN, + ACTIONS(7456), 1, + anon_sym_BANG, + ACTIONS(7458), 1, + anon_sym_QMARK, + STATE(3804), 1, + sym_formal_parameters, + STATE(4194), 1, + sym__call_signature, + STATE(5202), 1, + sym_type_annotation, + STATE(5543), 1, + sym__initializer, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7454), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144217] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(4123), 1, + sym_formal_parameters, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + STATE(7115), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [144256] = 6, + ACTIONS(218), 1, + anon_sym_unique, + STATE(3311), 1, + sym_type_predicate, + STATE(7281), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7460), 2, + sym_identifier, + sym_this, + ACTIONS(220), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [144285] = 9, + ACTIONS(4005), 1, + anon_sym_extends, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7195), 1, + anon_sym_DOT, + ACTIONS(7462), 1, + sym_identifier, + ACTIONS(7466), 1, + anon_sym_GT, + STATE(3335), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7464), 3, + anon_sym_LBRACE, + sym_jsx_identifier, + anon_sym_SLASH_GT, + ACTIONS(3476), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [144320] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7469), 1, + anon_sym_BANG, + ACTIONS(7471), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(4811), 1, + sym_type_annotation, + STATE(5666), 1, + sym__initializer, + STATE(6694), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144363] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(4123), 1, + sym_formal_parameters, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + STATE(7115), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [144402] = 13, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7473), 1, + anon_sym_BANG, + ACTIONS(7475), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(4821), 1, + sym_type_annotation, + STATE(5670), 1, + sym__initializer, + STATE(6690), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144445] = 14, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(7222), 1, + anon_sym_STAR, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7477), 1, + sym_identifier, + ACTIONS(7479), 1, + anon_sym_type, + ACTIONS(7481), 1, + anon_sym_COMMA, + ACTIONS(7483), 1, + anon_sym_from, + STATE(5006), 1, + sym_import_require_clause, + STATE(5007), 1, + sym_string, + STATE(6154), 1, + sym_import_clause, + STATE(6384), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7516), 2, + sym_namespace_import, + sym_named_imports, + [144490] = 4, + ACTIONS(4019), 1, + anon_sym_EQ, + ACTIONS(7238), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4021), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [144515] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3970), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(4123), 1, + sym_formal_parameters, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + STATE(7115), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [144554] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7487), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(4737), 1, + sym__call_signature, + STATE(4742), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7485), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144590] = 6, + ACTIONS(4129), 1, + anon_sym_EQ, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [144618] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4189), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [144638] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4189), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [144658] = 13, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7212), 1, + anon_sym_DOT, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(7497), 1, + anon_sym_GT, + ACTIONS(7499), 1, + anon_sym_SLASH_GT, + STATE(3860), 1, + sym_type_arguments, + STATE(3861), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [144700] = 3, + ACTIONS(4333), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4335), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144722] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7501), 1, + anon_sym_LBRACE, + ACTIONS(7505), 1, + sym_html_character_reference, + ACTIONS(7507), 1, + anon_sym_LT_SLASH, + ACTIONS(7509), 1, + anon_sym_LT, + STATE(2270), 1, + sym_jsx_closing_element, + STATE(3467), 1, + sym_jsx_opening_element, + ACTIONS(7503), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3568), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [144758] = 6, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4379), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1707), 2, + sym_template_string, + sym_arguments, + ACTIONS(4381), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144786] = 3, + ACTIONS(4453), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4455), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144808] = 3, + ACTIONS(4329), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4331), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144830] = 3, + ACTIONS(4321), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4323), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144852] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4193), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [144872] = 6, + ACTIONS(4147), 1, + anon_sym_EQ, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4149), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [144900] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4229), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [144920] = 6, + ACTIONS(7270), 1, + anon_sym_LT, + ACTIONS(7511), 1, + anon_sym_DOT, + ACTIONS(7513), 1, + anon_sym_is, + STATE(3817), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3476), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [144948] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7517), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(5244), 1, + sym__call_signature, + STATE(5246), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7515), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144984] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7501), 1, + anon_sym_LBRACE, + ACTIONS(7509), 1, + anon_sym_LT, + ACTIONS(7519), 1, + sym_html_character_reference, + ACTIONS(7521), 1, + anon_sym_LT_SLASH, + STATE(3467), 1, + sym_jsx_opening_element, + STATE(4472), 1, + sym_jsx_closing_element, + ACTIONS(7503), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3523), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [145020] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7525), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(4093), 1, + sym__call_signature, + STATE(4635), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7523), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145056] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7527), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(3996), 1, + sym__call_signature, + STATE(4742), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7485), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145092] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7531), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(4171), 1, + sym__call_signature, + STATE(4904), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7529), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145128] = 3, + ACTIONS(3605), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3378), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145150] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7501), 1, + anon_sym_LBRACE, + ACTIONS(7509), 1, + anon_sym_LT, + ACTIONS(7533), 1, + sym_html_character_reference, + ACTIONS(7535), 1, + anon_sym_LT_SLASH, + STATE(1662), 1, + sym_jsx_closing_element, + STATE(3467), 1, + sym_jsx_opening_element, + ACTIONS(7503), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3514), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [145186] = 3, + ACTIONS(3333), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3335), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145208] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7537), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(4634), 1, + sym__call_signature, + STATE(4635), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7523), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145244] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4189), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145264] = 3, + ACTIONS(4483), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4485), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145286] = 3, + ACTIONS(4487), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4489), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145308] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4233), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145328] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7501), 1, + anon_sym_LBRACE, + ACTIONS(7507), 1, + anon_sym_LT_SLASH, + ACTIONS(7509), 1, + anon_sym_LT, + ACTIONS(7539), 1, + sym_html_character_reference, + STATE(2252), 1, + sym_jsx_closing_element, + STATE(3467), 1, + sym_jsx_opening_element, + ACTIONS(7503), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3457), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [145364] = 3, + ACTIONS(3337), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3339), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145386] = 3, + ACTIONS(4375), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4377), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145408] = 3, + ACTIONS(4337), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4339), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145430] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4229), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145450] = 6, + ACTIONS(4215), 1, + anon_sym_EQ, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [145478] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4171), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145498] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4165), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145518] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4165), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145538] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4203), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145558] = 13, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7212), 1, + anon_sym_DOT, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(7497), 1, + anon_sym_GT, + ACTIONS(7541), 1, + anon_sym_SLASH_GT, + STATE(3760), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3877), 1, + sym_type_arguments, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [145600] = 5, + ACTIONS(4013), 1, + anon_sym_PIPE, + ACTIONS(7236), 1, + anon_sym_LT, + STATE(3660), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4015), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145626] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4055), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145646] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4055), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145666] = 6, + ACTIONS(4139), 1, + anon_sym_EQ, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4141), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [145694] = 3, + ACTIONS(3362), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3364), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145716] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4165), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145736] = 6, + ACTIONS(4419), 1, + anon_sym_EQ, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4421), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [145764] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4055), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145784] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7545), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(4091), 1, + sym__call_signature, + STATE(4858), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7543), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145820] = 3, + ACTIONS(4383), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4385), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145842] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4161), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145862] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4193), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145882] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4161), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145902] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4161), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [145922] = 6, + ACTIONS(4205), 1, + anon_sym_EQ, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4207), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [145950] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7547), 1, + anon_sym_COLON, + ACTIONS(7549), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(4049), 1, + sym__call_signature, + STATE(5246), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7515), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145986] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4157), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146006] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4193), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146026] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4157), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146046] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4233), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146066] = 5, + ACTIONS(4445), 1, + anon_sym_PIPE, + ACTIONS(7551), 1, + anon_sym_DOT, + ACTIONS(7553), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4447), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [146092] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4281), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146112] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4277), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146132] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7501), 1, + anon_sym_LBRACE, + ACTIONS(7505), 1, + sym_html_character_reference, + ACTIONS(7509), 1, + anon_sym_LT, + ACTIONS(7555), 1, + anon_sym_LT_SLASH, + STATE(3467), 1, + sym_jsx_opening_element, + STATE(4747), 1, + sym_jsx_closing_element, + ACTIONS(7503), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3568), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [146168] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7501), 1, + anon_sym_LBRACE, + ACTIONS(7505), 1, + sym_html_character_reference, + ACTIONS(7509), 1, + anon_sym_LT, + ACTIONS(7535), 1, + anon_sym_LT_SLASH, + STATE(1682), 1, + sym_jsx_closing_element, + STATE(3467), 1, + sym_jsx_opening_element, + ACTIONS(7503), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3568), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [146204] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4157), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146224] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146244] = 5, + ACTIONS(3422), 1, + anon_sym_PIPE, + ACTIONS(3438), 1, + anon_sym_DOT, + ACTIONS(3440), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3418), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [146270] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4237), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146290] = 4, + ACTIONS(4431), 1, + anon_sym_EQ, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4433), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_extends, + [146314] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4255), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146334] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146354] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4241), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146374] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7501), 1, + anon_sym_LBRACE, + ACTIONS(7505), 1, + sym_html_character_reference, + ACTIONS(7509), 1, + anon_sym_LT, + ACTIONS(7521), 1, + anon_sym_LT_SLASH, + STATE(3467), 1, + sym_jsx_opening_element, + STATE(4522), 1, + sym_jsx_closing_element, + ACTIONS(7503), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3568), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [146410] = 4, + ACTIONS(4405), 1, + anon_sym_EQ, + ACTIONS(7557), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4407), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + [146434] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7559), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(4903), 1, + sym__call_signature, + STATE(4904), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7529), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146470] = 3, + ACTIONS(3607), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3400), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [146492] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4237), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146512] = 4, + ACTIONS(4305), 1, + anon_sym_EQ, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4307), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_extends, + [146536] = 3, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4481), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [146558] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7501), 1, + anon_sym_LBRACE, + ACTIONS(7509), 1, + anon_sym_LT, + ACTIONS(7555), 1, + anon_sym_LT_SLASH, + ACTIONS(7561), 1, + sym_html_character_reference, + STATE(3467), 1, + sym_jsx_opening_element, + STATE(4703), 1, + sym_jsx_closing_element, + ACTIONS(7503), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3513), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [146594] = 4, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(4345), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4347), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [146618] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4241), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146638] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4255), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [146658] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7563), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(4858), 1, + sym_type_annotation, + STATE(4867), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7543), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146694] = 6, + ACTIONS(4341), 1, + anon_sym_EQ, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4343), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [146722] = 4, + ACTIONS(1831), 1, + anon_sym_DOT, + ACTIONS(4345), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4347), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [146746] = 12, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7565), 1, + anon_sym_GT, + ACTIONS(7567), 1, + anon_sym_DOT, + ACTIONS(7569), 1, + anon_sym_SLASH_GT, + STATE(3862), 1, + sym_type_arguments, + STATE(3863), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [146785] = 3, + ACTIONS(1664), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1662), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [146806] = 8, + ACTIONS(3459), 1, + anon_sym_COLON, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7195), 1, + anon_sym_DOT, + ACTIONS(7571), 1, + anon_sym_QMARK, + STATE(3335), 1, + sym_type_arguments, + STATE(7164), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3476), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [146837] = 9, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3685), 1, + sym_formal_parameters, + STATE(4853), 1, + sym_type_annotation, + STATE(4855), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7574), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146870] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(4817), 1, + sym_type_annotation, + STATE(5668), 1, + sym__initializer, + STATE(6691), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146907] = 12, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7565), 1, + anon_sym_GT, + ACTIONS(7567), 1, + anon_sym_DOT, + ACTIONS(7578), 1, + anon_sym_SLASH_GT, + STATE(3792), 1, + sym_type_arguments, + STATE(3796), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [146946] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1775), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [146965] = 5, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(7580), 1, + anon_sym_DOT, + STATE(3700), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4025), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [146990] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(4884), 1, + sym_type_annotation, + STATE(5596), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(6914), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147027] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4448), 1, + sym__call_signature, + STATE(4906), 1, + sym_type_annotation, + STATE(5505), 1, + sym__initializer, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7584), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147064] = 4, + ACTIONS(4029), 1, + anon_sym_PIPE, + ACTIONS(7320), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4031), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [147087] = 4, + ACTIONS(4013), 1, + anon_sym_PIPE, + ACTIONS(7586), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4015), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [147110] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3685), 1, + sym_formal_parameters, + STATE(4906), 1, + sym_type_annotation, + STATE(5511), 1, + sym__call_signature, + STATE(5512), 1, + sym__initializer, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7584), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147147] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(5152), 1, + sym_type_annotation, + STATE(5560), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7061), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147184] = 7, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [147213] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(4809), 1, + sym_type_annotation, + STATE(5832), 1, + sym__initializer, + STATE(6460), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147250] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(4908), 1, + sym_type_annotation, + STATE(5591), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7038), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147287] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(5305), 1, + sym_type_annotation, + STATE(6069), 1, + sym__initializer, + STATE(6407), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147324] = 9, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3685), 1, + sym_formal_parameters, + STATE(4900), 1, + sym__call_signature, + STATE(4901), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7592), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147357] = 3, + ACTIONS(4387), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4389), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [147378] = 8, + ACTIONS(7185), 1, + anon_sym_DOT, + ACTIONS(7187), 1, + anon_sym_QMARK_DOT, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7594), 1, + anon_sym_LPAREN, + STATE(3286), 1, + sym_arguments, + STATE(3376), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3995), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147409] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4391), 1, + sym__call_signature, + STATE(4692), 1, + sym_type_annotation, + STATE(5602), 1, + sym__initializer, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7596), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147446] = 8, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7191), 1, + anon_sym_DOT, + ACTIONS(7193), 1, + anon_sym_QMARK_DOT, + ACTIONS(7594), 1, + anon_sym_LPAREN, + STATE(3287), 1, + sym_arguments, + STATE(3375), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4001), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147477] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(4825), 1, + sym_type_annotation, + STATE(5673), 1, + sym__initializer, + STATE(6685), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147514] = 9, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3685), 1, + sym_formal_parameters, + STATE(4012), 1, + sym__call_signature, + STATE(5289), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147547] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(5069), 1, + sym_type_annotation, + STATE(5717), 1, + sym__initializer, + STATE(6637), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147584] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4456), 1, + sym__call_signature, + STATE(5059), 1, + sym_type_annotation, + STATE(5711), 1, + sym__initializer, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7600), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147621] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1779), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [147640] = 9, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3685), 1, + sym_formal_parameters, + STATE(4092), 1, + sym__call_signature, + STATE(4853), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7574), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147673] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(4699), 1, + sym_type_annotation, + STATE(5609), 1, + sym__initializer, + STATE(6879), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147710] = 4, + ACTIONS(4461), 1, + anon_sym_PIPE, + ACTIONS(7602), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4463), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [147733] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7604), 1, + anon_sym_LBRACE, + ACTIONS(7610), 1, + sym_html_character_reference, + ACTIONS(7613), 1, + anon_sym_LT_SLASH, + ACTIONS(7615), 1, + anon_sym_LT, + STATE(3467), 1, + sym_jsx_opening_element, + ACTIONS(7607), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3568), 5, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [147766] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(4894), 1, + sym_type_annotation, + STATE(5697), 1, + sym__initializer, + STATE(6667), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147803] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4198), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_annotation, + STATE(5490), 1, + sym__initializer, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7618), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147840] = 9, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3685), 1, + sym_formal_parameters, + STATE(5289), 1, + sym_type_annotation, + STATE(5290), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147873] = 9, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3685), 1, + sym_formal_parameters, + STATE(4614), 1, + sym_type_annotation, + STATE(5254), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7620), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147906] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(4883), 1, + sym_type_annotation, + STATE(5694), 1, + sym__initializer, + STATE(6677), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147943] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(4711), 1, + sym_type_annotation, + STATE(5615), 1, + sym__initializer, + STATE(6869), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147980] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4210), 1, + sym__call_signature, + STATE(5234), 1, + sym_type_annotation, + STATE(5540), 1, + sym__initializer, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148017] = 9, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3685), 1, + sym_formal_parameters, + STATE(3997), 1, + sym__call_signature, + STATE(4768), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7624), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148050] = 12, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7565), 1, + anon_sym_GT, + ACTIONS(7567), 1, + anon_sym_DOT, + ACTIONS(7626), 1, + anon_sym_SLASH_GT, + STATE(3718), 1, + sym_type_arguments, + STATE(3810), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [148089] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3685), 1, + sym_formal_parameters, + STATE(5234), 1, + sym_type_annotation, + STATE(5547), 1, + sym__call_signature, + STATE(5548), 1, + sym__initializer, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148126] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(4657), 1, + sym_type_annotation, + STATE(5521), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7163), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7628), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148163] = 9, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3685), 1, + sym_formal_parameters, + STATE(4104), 1, + sym__call_signature, + STATE(4614), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7620), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148196] = 7, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3970), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [148225] = 9, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3685), 1, + sym_formal_parameters, + STATE(4168), 1, + sym__call_signature, + STATE(4901), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7592), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148258] = 3, + ACTIONS(4313), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4315), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148279] = 12, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7565), 1, + anon_sym_GT, + ACTIONS(7567), 1, + anon_sym_DOT, + ACTIONS(7630), 1, + anon_sym_SLASH_GT, + STATE(3888), 1, + sym_type_arguments, + STATE(3890), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [148318] = 4, + ACTIONS(4019), 1, + anon_sym_PIPE, + ACTIONS(7320), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4021), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148341] = 8, + ACTIONS(3424), 1, + anon_sym_DOT, + ACTIONS(3428), 1, + anon_sym_QMARK_DOT, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7594), 1, + anon_sym_LPAREN, + STATE(3288), 1, + sym_arguments, + STATE(3373), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3418), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [148372] = 9, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3685), 1, + sym_formal_parameters, + STATE(4755), 1, + sym__call_signature, + STATE(4768), 1, + sym_type_annotation, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7624), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148405] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(5206), 1, + sym_type_annotation, + STATE(5774), 1, + sym__initializer, + STATE(6619), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148442] = 7, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3958), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [148471] = 7, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3961), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [148500] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(4123), 1, + sym_formal_parameters, + STATE(7115), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3975), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3921), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [148531] = 5, + ACTIONS(7270), 1, + anon_sym_LT, + ACTIONS(7511), 1, + anon_sym_DOT, + STATE(3817), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3476), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [148556] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(5215), 1, + sym_type_annotation, + STATE(5782), 1, + sym__initializer, + STATE(6611), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148593] = 12, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(7222), 1, + anon_sym_STAR, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7477), 1, + sym_identifier, + ACTIONS(7479), 1, + anon_sym_type, + STATE(5006), 1, + sym_import_require_clause, + STATE(5007), 1, + sym_string, + STATE(6154), 1, + sym_import_clause, + STATE(6384), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7516), 2, + sym_namespace_import, + sym_named_imports, + [148632] = 7, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [148661] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(5183), 1, + sym_type_annotation, + STATE(5551), 1, + sym__initializer, + STATE(6901), 1, + sym_type_parameters, + STATE(7069), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148698] = 3, + ACTIONS(4037), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4039), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [148719] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4335), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [148737] = 3, + ACTIONS(4297), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4299), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148757] = 3, + ACTIONS(4317), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4319), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148777] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4455), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [148795] = 3, + ACTIONS(4457), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4459), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148815] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4377), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [148833] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3378), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [148851] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3400), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [148869] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4385), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [148887] = 3, + ACTIONS(2323), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2321), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148907] = 4, + ACTIONS(7270), 1, + anon_sym_LT, + STATE(3815), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4015), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [148929] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3339), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [148947] = 3, + ACTIONS(4019), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4021), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148967] = 11, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(7632), 1, + sym_identifier, + ACTIONS(7634), 1, + anon_sym_type, + ACTIONS(7636), 1, + anon_sym_COMMA, + ACTIONS(7638), 1, + anon_sym_RBRACE, + ACTIONS(7640), 1, + anon_sym_typeof, + STATE(6002), 1, + sym_import_specifier, + STATE(6167), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7423), 2, + sym__module_export_name, + sym_string, + [149003] = 3, + ACTIONS(4211), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4213), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149023] = 3, + ACTIONS(4363), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4365), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149043] = 3, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4347), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [149063] = 3, + ACTIONS(4205), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4207), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149083] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_PIPE, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [149107] = 3, + ACTIONS(4183), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4185), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149127] = 6, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7195), 1, + anon_sym_DOT, + ACTIONS(7648), 1, + anon_sym_is, + STATE(3335), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3476), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [149153] = 3, + ACTIONS(4179), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4181), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149173] = 3, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4175), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149193] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_PIPE, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4207), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [149217] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4339), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [149235] = 4, + ACTIONS(4399), 1, + anon_sym_PIPE, + ACTIONS(7650), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4401), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149257] = 3, + ACTIONS(2331), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2329), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149277] = 4, + ACTIONS(7652), 1, + anon_sym_DOT, + ACTIONS(7654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4447), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [149299] = 4, + ACTIONS(4415), 1, + anon_sym_PIPE, + ACTIONS(7650), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149321] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4331), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [149339] = 3, + ACTIONS(4219), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4221), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149359] = 3, + ACTIONS(4367), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4369), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149379] = 4, + ACTIONS(7280), 1, + anon_sym_DOT, + ACTIONS(7282), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3418), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [149401] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(4123), 1, + sym_formal_parameters, + STATE(7115), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [149427] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_PIPE, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4141), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [149451] = 3, + ACTIONS(4359), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4361), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149471] = 4, + ACTIONS(4405), 1, + anon_sym_PIPE, + ACTIONS(7656), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4407), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [149493] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_PIPE, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [149517] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_PIPE, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4343), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [149541] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3364), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [149559] = 3, + ACTIONS(4415), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149579] = 3, + ACTIONS(2327), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2325), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149599] = 3, + ACTIONS(4223), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4225), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149619] = 3, + ACTIONS(4371), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4373), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149639] = 5, + ACTIONS(4415), 1, + anon_sym_PIPE, + ACTIONS(7650), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(4413), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149663] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4323), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [149681] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3335), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [149699] = 3, + ACTIONS(4379), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4381), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149719] = 4, + ACTIONS(4305), 1, + anon_sym_PIPE, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4307), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149741] = 3, + ACTIONS(4441), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4443), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149761] = 3, + ACTIONS(4341), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4343), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149781] = 3, + ACTIONS(2319), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2317), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149801] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5670), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [149819] = 3, + ACTIONS(1831), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4347), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [149839] = 3, + ACTIONS(4151), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4153), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149859] = 3, + ACTIONS(4439), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4295), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149879] = 3, + ACTIONS(4029), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4031), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149899] = 3, + ACTIONS(4355), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4357), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149919] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [149937] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_PIPE, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4149), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [149961] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_PIPE, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4421), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [149985] = 3, + ACTIONS(4467), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4469), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150005] = 3, + ACTIONS(4391), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4393), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150025] = 3, + ACTIONS(4435), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4437), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150045] = 3, + ACTIONS(4013), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4015), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150065] = 3, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4425), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150085] = 4, + ACTIONS(4431), 1, + anon_sym_PIPE, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4433), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150107] = 3, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4473), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150127] = 3, + ACTIONS(4303), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4301), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150147] = 3, + ACTIONS(4427), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4429), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150167] = 3, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2333), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150187] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7658), 1, + sym_identifier, + ACTIONS(7660), 1, + anon_sym_LBRACE, + ACTIONS(7662), 1, + anon_sym_extends, + ACTIONS(7664), 1, + anon_sym_implements, + STATE(1671), 1, + sym_class_body, + STATE(4022), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6352), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150222] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7662), 1, + anon_sym_extends, + ACTIONS(7664), 1, + anon_sym_implements, + ACTIONS(7666), 1, + sym_identifier, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2268), 1, + sym_class_body, + STATE(4046), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6148), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150257] = 4, + ACTIONS(7672), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4529), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7670), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150278] = 10, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(7497), 1, + anon_sym_GT, + ACTIONS(7499), 1, + anon_sym_SLASH_GT, + STATE(3858), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150311] = 10, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7214), 1, + anon_sym_SLASH_GT, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(7497), 1, + anon_sym_GT, + STATE(3712), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150344] = 9, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(7674), 1, + sym_identifier, + ACTIONS(7678), 1, + anon_sym_COMMA, + ACTIONS(7680), 1, + anon_sym_RBRACE, + STATE(5915), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7676), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5935), 2, + sym__module_export_name, + sym_string, + [150375] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7662), 1, + anon_sym_extends, + ACTIONS(7664), 1, + anon_sym_implements, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7682), 1, + sym_identifier, + STATE(2227), 1, + sym_class_body, + STATE(4007), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6290), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150410] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7660), 1, + anon_sym_LBRACE, + ACTIONS(7662), 1, + anon_sym_extends, + ACTIONS(7664), 1, + anon_sym_implements, + ACTIONS(7684), 1, + sym_identifier, + STATE(2519), 1, + sym_class_body, + STATE(4038), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6232), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150445] = 5, + ACTIONS(3492), 1, + anon_sym_LPAREN, + ACTIONS(7248), 1, + anon_sym_DOT, + STATE(3306), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4025), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [150468] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7660), 1, + anon_sym_LBRACE, + ACTIONS(7662), 1, + anon_sym_extends, + ACTIONS(7664), 1, + anon_sym_implements, + ACTIONS(7686), 1, + sym_identifier, + STATE(1673), 1, + sym_class_body, + STATE(4134), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6262), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150503] = 4, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3975), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3921), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [150524] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7662), 1, + anon_sym_extends, + ACTIONS(7664), 1, + anon_sym_implements, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7688), 1, + sym_identifier, + STATE(2227), 1, + sym_class_body, + STATE(4007), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6290), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150559] = 5, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2313), 2, + sym_template_string, + sym_arguments, + ACTIONS(4381), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150582] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7662), 1, + anon_sym_extends, + ACTIONS(7664), 1, + anon_sym_implements, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7690), 1, + sym_identifier, + STATE(2268), 1, + sym_class_body, + STATE(4046), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6148), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150617] = 9, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(7632), 1, + sym_identifier, + ACTIONS(7692), 1, + anon_sym_type, + ACTIONS(7694), 1, + anon_sym_as, + STATE(6215), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7481), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7327), 2, + sym__module_export_name, + sym_string, + [150648] = 3, + ACTIONS(7513), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4021), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150667] = 4, + ACTIONS(7672), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4473), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7696), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150688] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7662), 1, + anon_sym_extends, + ACTIONS(7664), 1, + anon_sym_implements, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7698), 1, + sym_identifier, + STATE(2227), 1, + sym_class_body, + STATE(4007), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6290), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150723] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7662), 1, + anon_sym_extends, + ACTIONS(7664), 1, + anon_sym_implements, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7700), 1, + sym_identifier, + STATE(2227), 1, + sym_class_body, + STATE(4007), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6290), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150758] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(7632), 1, + sym_identifier, + ACTIONS(7634), 1, + anon_sym_type, + ACTIONS(7640), 1, + anon_sym_typeof, + ACTIONS(7702), 1, + anon_sym_RBRACE, + STATE(6167), 1, + sym__import_identifier, + STATE(7049), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7423), 2, + sym__module_export_name, + sym_string, + [150791] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7706), 1, + anon_sym_BANG, + STATE(4935), 1, + sym_type_annotation, + STATE(6010), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7708), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7704), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150820] = 8, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7706), 1, + anon_sym_BANG, + ACTIONS(7710), 1, + anon_sym_EQ, + STATE(4935), 1, + sym_type_annotation, + STATE(5141), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7708), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7704), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150849] = 10, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(7632), 1, + sym_identifier, + ACTIONS(7634), 1, + anon_sym_type, + ACTIONS(7640), 1, + anon_sym_typeof, + ACTIONS(7712), 1, + anon_sym_RBRACE, + STATE(6167), 1, + sym__import_identifier, + STATE(7049), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7423), 2, + sym__module_export_name, + sym_string, + [150882] = 10, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(7497), 1, + anon_sym_GT, + ACTIONS(7541), 1, + anon_sym_SLASH_GT, + STATE(3781), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150915] = 3, + ACTIONS(7714), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4463), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150934] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7662), 1, + anon_sym_extends, + ACTIONS(7664), 1, + anon_sym_implements, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7716), 1, + sym_identifier, + STATE(2268), 1, + sym_class_body, + STATE(4046), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6148), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150969] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4039), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [150986] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1662), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [151003] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4315), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151020] = 11, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7662), 1, + anon_sym_extends, + ACTIONS(7664), 1, + anon_sym_implements, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + sym_identifier, + STATE(2268), 1, + sym_class_body, + STATE(4046), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6148), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151055] = 6, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7195), 1, + anon_sym_DOT, + ACTIONS(7720), 1, + anon_sym_is, + STATE(3335), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3476), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151080] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4389), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151097] = 3, + ACTIONS(7513), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4031), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151116] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_PIPE, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7722), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151139] = 10, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7218), 1, + anon_sym_SLASH_GT, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(7497), 1, + anon_sym_GT, + STATE(3872), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [151172] = 3, + ACTIONS(7724), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4015), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151191] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7726), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [151207] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4469), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151223] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4031), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151239] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151255] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + anon_sym_BANG, + ACTIONS(7730), 1, + anon_sym_QMARK, + STATE(4726), 1, + sym_type_annotation, + STATE(5622), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151283] = 3, + ACTIONS(7732), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151301] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4459), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151317] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7734), 1, + anon_sym_GT, + ACTIONS(7736), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [151347] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7738), 1, + anon_sym_BANG, + ACTIONS(7740), 1, + anon_sym_QMARK, + STATE(4717), 1, + sym_type_annotation, + STATE(5626), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151375] = 7, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(727), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [151401] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7742), 1, + anon_sym_BANG, + ACTIONS(7744), 1, + anon_sym_QMARK, + STATE(4733), 1, + sym_type_annotation, + STATE(5627), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151429] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2170), 1, + sym_class_body, + STATE(4013), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6224), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151461] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4015), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151477] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7750), 1, + anon_sym_GT, + ACTIONS(7752), 1, + anon_sym_SLASH_GT, + STATE(3826), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [151507] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4473), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151523] = 9, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(7632), 1, + sym_identifier, + ACTIONS(7634), 1, + anon_sym_type, + ACTIONS(7640), 1, + anon_sym_typeof, + STATE(6167), 1, + sym__import_identifier, + STATE(7049), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7423), 2, + sym__module_export_name, + sym_string, + [151553] = 9, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(6127), 1, + anon_sym_LT, + STATE(5380), 1, + sym_type_arguments, + STATE(6357), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1714), 2, + sym_template_string, + sym_arguments, + [151583] = 7, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5325), 1, + anon_sym_RBRACE, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [151609] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7754), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [151625] = 5, + ACTIONS(7248), 1, + anon_sym_DOT, + ACTIONS(7594), 1, + anon_sym_LPAREN, + STATE(3306), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4025), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151647] = 4, + ACTIONS(7756), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5087), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7670), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [151667] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7758), 1, + anon_sym_DOT, + STATE(1714), 1, + sym_template_string, + STATE(2004), 1, + sym_arguments, + STATE(5380), 1, + sym_type_arguments, + STATE(6357), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151699] = 7, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4694), 1, + sym_type_annotation, + STATE(5604), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7416), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7414), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151725] = 7, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4972), 1, + sym_type_annotation, + STATE(5509), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7410), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151751] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7760), 1, + anon_sym_BANG, + ACTIONS(7762), 1, + anon_sym_QMARK, + STATE(4750), 1, + sym_type_annotation, + STATE(5631), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151779] = 7, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5202), 1, + sym_type_annotation, + STATE(5544), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7456), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7454), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151805] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(4172), 1, + sym_type_parameters, + STATE(4959), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(7083), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151837] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7766), 1, + anon_sym_BANG, + ACTIONS(7768), 1, + anon_sym_QMARK, + STATE(4837), 1, + sym_type_annotation, + STATE(5682), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151865] = 7, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4935), 1, + sym_type_annotation, + STATE(6030), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7708), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7704), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151891] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2325), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151907] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(748), 1, + sym_class_body, + STATE(4039), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6174), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151939] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7770), 1, + anon_sym_BANG, + ACTIONS(7772), 1, + anon_sym_QMARK, + STATE(5123), 1, + sym_type_annotation, + STATE(5565), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151967] = 7, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7710), 1, + anon_sym_EQ, + STATE(4935), 1, + sym_type_annotation, + STATE(5143), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7708), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7704), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151993] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7774), 1, + anon_sym_BANG, + ACTIONS(7776), 1, + anon_sym_QMARK, + STATE(5131), 1, + sym_type_annotation, + STATE(5564), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152021] = 9, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(6127), 1, + anon_sym_LT, + STATE(5385), 1, + sym_type_arguments, + STATE(6234), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2246), 2, + sym_template_string, + sym_arguments, + [152051] = 7, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5338), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [152077] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7778), 1, + anon_sym_BANG, + ACTIONS(7780), 1, + anon_sym_QMARK, + STATE(5174), 1, + sym_type_annotation, + STATE(5811), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152105] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2278), 1, + sym_class_body, + STATE(4004), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6336), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152137] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7782), 1, + anon_sym_BANG, + ACTIONS(7784), 1, + anon_sym_QMARK, + STATE(4616), 1, + sym_type_annotation, + STATE(5518), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152165] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7786), 1, + anon_sym_BANG, + ACTIONS(7788), 1, + anon_sym_QMARK, + STATE(5105), 1, + sym_type_annotation, + STATE(5573), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152193] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7660), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2524), 1, + sym_class_body, + STATE(4090), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(7058), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152225] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7792), 1, + anon_sym_BANG, + ACTIONS(7794), 1, + anon_sym_QMARK, + STATE(5225), 1, + sym_type_annotation, + STATE(5991), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7790), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152253] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7796), 1, + anon_sym_BANG, + ACTIONS(7798), 1, + anon_sym_QMARK, + STATE(4633), 1, + sym_type_annotation, + STATE(5519), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152281] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4443), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152297] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4295), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152313] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4437), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152329] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7800), 1, + anon_sym_BANG, + ACTIONS(7802), 1, + anon_sym_QMARK, + STATE(4637), 1, + sym_type_annotation, + STATE(5484), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152357] = 3, + ACTIONS(7804), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4433), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [152375] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4301), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152391] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2284), 1, + sym_class_body, + STATE(4084), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6960), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152423] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4429), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152439] = 5, + ACTIONS(7804), 1, + anon_sym_AMP, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4421), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [152461] = 4, + ACTIONS(7732), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4413), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [152481] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7497), 1, + anon_sym_GT, + ACTIONS(7541), 1, + anon_sym_SLASH_GT, + STATE(3812), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [152511] = 3, + ACTIONS(7810), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4407), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [152529] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7812), 1, + anon_sym_GT, + ACTIONS(7814), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [152559] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7816), 1, + anon_sym_BANG, + ACTIONS(7818), 1, + anon_sym_QMARK, + STATE(5094), 1, + sym_type_annotation, + STATE(5574), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152587] = 3, + ACTIONS(7732), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4401), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152605] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7820), 1, + anon_sym_BANG, + ACTIONS(7822), 1, + anon_sym_QMARK, + STATE(5274), 1, + sym_type_annotation, + STATE(5800), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152633] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7824), 1, + anon_sym_BANG, + ACTIONS(7826), 1, + anon_sym_QMARK, + STATE(5258), 1, + sym_type_annotation, + STATE(5796), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152661] = 5, + ACTIONS(7804), 1, + anon_sym_AMP, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [152683] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7828), 1, + anon_sym_BANG, + ACTIONS(7830), 1, + anon_sym_QMARK, + STATE(5247), 1, + sym_type_annotation, + STATE(5795), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152711] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1779), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152727] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7832), 1, + anon_sym_BANG, + ACTIONS(7834), 1, + anon_sym_QMARK, + STATE(4770), 1, + sym_type_annotation, + STATE(5641), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152755] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7836), 1, + anon_sym_BANG, + ACTIONS(7838), 1, + anon_sym_QMARK, + STATE(4772), 1, + sym_type_annotation, + STATE(5642), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152783] = 5, + ACTIONS(7804), 1, + anon_sym_AMP, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4141), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [152805] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7840), 1, + anon_sym_BANG, + ACTIONS(7842), 1, + anon_sym_QMARK, + STATE(5137), 1, + sym_type_annotation, + STATE(5598), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152833] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7844), 1, + anon_sym_BANG, + ACTIONS(7846), 1, + anon_sym_QMARK, + STATE(4774), 1, + sym_type_annotation, + STATE(5643), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152861] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7848), 1, + anon_sym_BANG, + ACTIONS(7850), 1, + anon_sym_QMARK, + STATE(5232), 1, + sym_type_annotation, + STATE(5790), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152889] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7854), 1, + anon_sym_QMARK, + STATE(4776), 1, + sym_type_annotation, + STATE(5644), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152917] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7218), 1, + anon_sym_SLASH_GT, + ACTIONS(7497), 1, + anon_sym_GT, + STATE(3891), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [152947] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7856), 1, + anon_sym_GT, + ACTIONS(7858), 1, + anon_sym_SLASH_GT, + STATE(3795), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [152977] = 7, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7860), 1, + anon_sym_DQUOTE, + ACTIONS(7862), 1, + anon_sym_SQUOTE, + ACTIONS(7864), 1, + anon_sym_LT, + STATE(3530), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5335), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [153003] = 7, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7860), 1, + anon_sym_DQUOTE, + ACTIONS(7862), 1, + anon_sym_SQUOTE, + ACTIONS(7864), 1, + anon_sym_LT, + STATE(3530), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5334), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [153029] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4489), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153045] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7866), 1, + anon_sym_BANG, + ACTIONS(7868), 1, + anon_sym_QMARK, + STATE(4839), 1, + sym_type_annotation, + STATE(5683), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153073] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7734), 1, + anon_sym_GT, + ACTIONS(7870), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153103] = 7, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5336), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [153129] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1775), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153145] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_BANG, + ACTIONS(7874), 1, + anon_sym_QMARK, + STATE(4832), 1, + sym_type_annotation, + STATE(5678), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153173] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7876), 1, + anon_sym_BANG, + ACTIONS(7878), 1, + anon_sym_QMARK, + STATE(4789), 1, + sym_type_annotation, + STATE(5654), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153201] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_BANG, + ACTIONS(7882), 1, + anon_sym_QMARK, + STATE(4831), 1, + sym_type_annotation, + STATE(5677), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153229] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2317), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153245] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7812), 1, + anon_sym_GT, + ACTIONS(7884), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153275] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4381), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153291] = 8, + ACTIONS(7886), 1, + sym_identifier, + ACTIONS(7889), 1, + anon_sym_LBRACE, + ACTIONS(7894), 1, + sym_jsx_identifier, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7892), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153319] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7897), 1, + anon_sym_BANG, + ACTIONS(7899), 1, + anon_sym_QMARK, + STATE(5336), 1, + sym_type_annotation, + STATE(6090), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7790), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153347] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7750), 1, + anon_sym_GT, + ACTIONS(7901), 1, + anon_sym_SLASH_GT, + STATE(3799), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153377] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4373), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153393] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7903), 1, + anon_sym_BANG, + ACTIONS(7905), 1, + anon_sym_QMARK, + STATE(4793), 1, + sym_type_annotation, + STATE(5655), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153421] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7907), 1, + anon_sym_GT, + ACTIONS(7909), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153451] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7911), 1, + anon_sym_GT, + ACTIONS(7913), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153481] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4365), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153497] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4369), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153513] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7915), 1, + anon_sym_GT, + ACTIONS(7917), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153543] = 7, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(702), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5988), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [153569] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4361), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153585] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7919), 1, + anon_sym_BANG, + ACTIONS(7921), 1, + anon_sym_QMARK, + STATE(4830), 1, + sym_type_annotation, + STATE(5676), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153613] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7923), 1, + anon_sym_GT, + ACTIONS(7925), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153643] = 4, + ACTIONS(7756), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5194), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7696), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [153663] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4357), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153679] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7927), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [153695] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7929), 1, + anon_sym_LBRACE, + STATE(840), 1, + sym_class_body, + STATE(4000), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6477), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153727] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(7236), 1, + anon_sym_LT, + STATE(1714), 1, + sym_template_string, + STATE(2007), 1, + sym_arguments, + STATE(3458), 1, + sym_type_arguments, + STATE(6357), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153759] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(7189), 1, + anon_sym_LT, + STATE(1601), 1, + sym_arguments, + STATE(1714), 1, + sym_template_string, + STATE(3434), 1, + sym_type_arguments, + STATE(6357), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153791] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7911), 1, + anon_sym_GT, + ACTIONS(7931), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153821] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4343), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153837] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7923), 1, + anon_sym_GT, + ACTIONS(7933), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153867] = 5, + ACTIONS(7804), 1, + anon_sym_AMP, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4343), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [153889] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7935), 1, + anon_sym_DOT, + STATE(1714), 1, + sym_template_string, + STATE(2538), 1, + sym_arguments, + STATE(5380), 1, + sym_type_arguments, + STATE(6357), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153921] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4393), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153937] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7937), 1, + anon_sym_DOT, + STATE(1537), 1, + sym_arguments, + STATE(1714), 1, + sym_template_string, + STATE(5380), 1, + sym_type_arguments, + STATE(6357), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153969] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4425), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153985] = 10, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7939), 1, + anon_sym_DOT, + STATE(1923), 1, + sym_arguments, + STATE(2246), 1, + sym_template_string, + STATE(5385), 1, + sym_type_arguments, + STATE(6234), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154017] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(7937), 1, + anon_sym_DOT, + STATE(1714), 1, + sym_template_string, + STATE(1890), 1, + sym_arguments, + STATE(5380), 1, + sym_type_arguments, + STATE(6357), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154049] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2176), 1, + sym_class_body, + STATE(4056), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6186), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154081] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4319), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154097] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7941), 1, + anon_sym_BANG, + ACTIONS(7943), 1, + anon_sym_QMARK, + STATE(5171), 1, + sym_type_annotation, + STATE(5762), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154125] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2178), 1, + sym_class_body, + STATE(4148), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6205), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154157] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7907), 1, + anon_sym_GT, + ACTIONS(7945), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154187] = 3, + ACTIONS(7804), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4307), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [154205] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7915), 1, + anon_sym_GT, + ACTIONS(7947), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154235] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4299), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154251] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7949), 1, + anon_sym_BANG, + ACTIONS(7951), 1, + anon_sym_QMARK, + STATE(4827), 1, + sym_type_annotation, + STATE(5675), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154279] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7915), 1, + anon_sym_GT, + ACTIONS(7953), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154309] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4485), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154325] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(7189), 1, + anon_sym_LT, + STATE(1714), 1, + sym_template_string, + STATE(1877), 1, + sym_arguments, + STATE(3434), 1, + sym_type_arguments, + STATE(6357), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154357] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7907), 1, + anon_sym_GT, + ACTIONS(7955), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154387] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2333), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154403] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7957), 1, + anon_sym_BANG, + ACTIONS(7959), 1, + anon_sym_QMARK, + STATE(5142), 1, + sym_type_annotation, + STATE(5753), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154431] = 6, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(7961), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7722), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [154455] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7963), 1, + anon_sym_BANG, + ACTIONS(7965), 1, + anon_sym_QMARK, + STATE(5135), 1, + sym_type_annotation, + STATE(5750), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154483] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7967), 1, + anon_sym_BANG, + ACTIONS(7969), 1, + anon_sym_QMARK, + STATE(5134), 1, + sym_type_annotation, + STATE(5749), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154511] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7971), 1, + anon_sym_LBRACE, + STATE(216), 1, + sym_class_body, + STATE(3949), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6794), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154543] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7973), 1, + anon_sym_BANG, + ACTIONS(7975), 1, + anon_sym_QMARK, + STATE(5121), 1, + sym_type_annotation, + STATE(5745), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154571] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(7674), 1, + sym_identifier, + ACTIONS(7977), 1, + anon_sym_RBRACE, + STATE(6800), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7676), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5935), 2, + sym__module_export_name, + sym_string, + [154599] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(729), 1, + sym_class_body, + STATE(4051), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6855), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154631] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7979), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [154647] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7214), 1, + anon_sym_SLASH_GT, + ACTIONS(7497), 1, + anon_sym_GT, + STATE(3803), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154677] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7981), 1, + anon_sym_BANG, + ACTIONS(7983), 1, + anon_sym_QMARK, + STATE(5144), 1, + sym_type_annotation, + STATE(5563), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154705] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7985), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [154721] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7987), 1, + anon_sym_BANG, + ACTIONS(7989), 1, + anon_sym_QMARK, + STATE(5101), 1, + sym_type_annotation, + STATE(5728), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154749] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(3972), 1, + sym_type_parameters, + STATE(5077), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6356), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154781] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7991), 1, + anon_sym_BANG, + ACTIONS(7993), 1, + anon_sym_QMARK, + STATE(4970), 1, + sym_type_annotation, + STATE(5586), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154809] = 5, + ACTIONS(7804), 1, + anon_sym_AMP, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4149), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [154831] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7995), 1, + anon_sym_BANG, + ACTIONS(7997), 1, + anon_sym_QMARK, + STATE(5088), 1, + sym_type_annotation, + STATE(5575), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154859] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7497), 1, + anon_sym_GT, + ACTIONS(7499), 1, + anon_sym_SLASH_GT, + STATE(3864), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154889] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7999), 1, + anon_sym_BANG, + ACTIONS(8001), 1, + anon_sym_QMARK, + STATE(5157), 1, + sym_type_annotation, + STATE(5557), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154917] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4153), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154933] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7660), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(1787), 1, + sym_class_body, + STATE(3969), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6358), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154965] = 7, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5313), 1, + anon_sym_RBRACE, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [154991] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(8003), 1, + anon_sym_BANG, + ACTIONS(8005), 1, + anon_sym_QMARK, + STATE(4929), 1, + sym_type_annotation, + STATE(5588), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155019] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7971), 1, + anon_sym_LBRACE, + STATE(244), 1, + sym_class_body, + STATE(4164), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6117), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155051] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7734), 1, + anon_sym_GT, + ACTIONS(8007), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155081] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(8009), 1, + anon_sym_BANG, + ACTIONS(8011), 1, + anon_sym_QMARK, + STATE(4938), 1, + sym_type_annotation, + STATE(5587), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155109] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7856), 1, + anon_sym_GT, + ACTIONS(8013), 1, + anon_sym_SLASH_GT, + STATE(3895), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155139] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7812), 1, + anon_sym_GT, + ACTIONS(8015), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155169] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7750), 1, + anon_sym_GT, + ACTIONS(8017), 1, + anon_sym_SLASH_GT, + STATE(3897), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155199] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7911), 1, + anon_sym_GT, + ACTIONS(8019), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155229] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7923), 1, + anon_sym_GT, + ACTIONS(8021), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155259] = 7, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5066), 1, + sym_type_annotation, + STATE(5709), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8025), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155285] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(8027), 1, + anon_sym_DOT, + STATE(1537), 1, + sym_arguments, + STATE(1714), 1, + sym_template_string, + STATE(5380), 1, + sym_type_arguments, + STATE(6357), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155317] = 7, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5197), 1, + sym_type_annotation, + STATE(5526), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7350), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7348), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155343] = 8, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(7674), 1, + sym_identifier, + ACTIONS(8029), 1, + anon_sym_RBRACE, + STATE(6800), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7676), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5935), 2, + sym__module_export_name, + sym_string, + [155371] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(8031), 1, + anon_sym_DOT, + STATE(1714), 1, + sym_template_string, + STATE(1890), 1, + sym_arguments, + STATE(5380), 1, + sym_type_arguments, + STATE(6357), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155403] = 10, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(7189), 1, + anon_sym_LT, + STATE(1714), 1, + sym_template_string, + STATE(2545), 1, + sym_arguments, + STATE(3434), 1, + sym_type_arguments, + STATE(6357), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155435] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7660), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(1759), 1, + sym_class_body, + STATE(4169), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(7119), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155467] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7734), 1, + anon_sym_GT, + ACTIONS(8033), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155497] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7856), 1, + anon_sym_GT, + ACTIONS(8035), 1, + anon_sym_SLASH_GT, + STATE(3832), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155527] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7929), 1, + anon_sym_LBRACE, + STATE(760), 1, + sym_class_body, + STATE(3959), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(7165), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155559] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2321), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155575] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4481), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155591] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7856), 1, + anon_sym_GT, + ACTIONS(8037), 1, + anon_sym_SLASH_GT, + STATE(3824), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155621] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4021), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155637] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4225), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155653] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2329), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155669] = 5, + ACTIONS(7804), 1, + anon_sym_AMP, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4207), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [155691] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4207), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155707] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4213), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155723] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7812), 1, + anon_sym_GT, + ACTIONS(8039), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155753] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4175), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155769] = 5, + ACTIONS(7804), 1, + anon_sym_AMP, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [155791] = 8, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(8041), 1, + anon_sym_BANG, + ACTIONS(8043), 1, + anon_sym_QMARK, + STATE(4822), 1, + sym_type_annotation, + STATE(5671), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155819] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7750), 1, + anon_sym_GT, + ACTIONS(8045), 1, + anon_sym_SLASH_GT, + STATE(3829), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155849] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4181), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155865] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7911), 1, + anon_sym_GT, + ACTIONS(8047), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155895] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7923), 1, + anon_sym_GT, + ACTIONS(8049), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155925] = 10, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(7189), 1, + anon_sym_LT, + STATE(2079), 1, + sym_arguments, + STATE(2246), 1, + sym_template_string, + STATE(3681), 1, + sym_type_arguments, + STATE(6234), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155957] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4185), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155973] = 10, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(8051), 1, + anon_sym_DOT, + STATE(2246), 1, + sym_template_string, + STATE(2498), 1, + sym_arguments, + STATE(5385), 1, + sym_type_arguments, + STATE(6234), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156005] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7907), 1, + anon_sym_GT, + ACTIONS(8053), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [156035] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(4098), 1, + sym_type_parameters, + STATE(5013), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6910), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156067] = 9, + ACTIONS(7197), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_LBRACE, + ACTIONS(7210), 1, + sym_jsx_identifier, + ACTIONS(7915), 1, + anon_sym_GT, + ACTIONS(8055), 1, + anon_sym_SLASH_GT, + STATE(3790), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4824), 2, + sym_jsx_expression, + sym_jsx_attribute, + [156097] = 10, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4067), 1, + anon_sym_QMARK_DOT, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4521), 1, + anon_sym_DOT, + ACTIONS(7189), 1, + anon_sym_LT, + STATE(2246), 1, + sym_template_string, + STATE(2451), 1, + sym_arguments, + STATE(3681), 1, + sym_type_arguments, + STATE(6234), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156129] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(4061), 1, + sym_type_parameters, + STATE(5031), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6896), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156161] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4221), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156177] = 7, + ACTIONS(241), 1, + anon_sym_COMMA, + ACTIONS(725), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_EQ, + STATE(5848), 1, + aux_sym_object_repeat1, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [156203] = 10, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2367), 1, + sym_class_body, + STATE(4079), 1, + sym_type_parameters, + STATE(5865), 1, + sym_extends_clause, + STATE(6907), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156235] = 7, + ACTIONS(8057), 1, + sym_escape_sequence, + ACTIONS(8059), 1, + anon_sym_BQUOTE, + ACTIONS(8061), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8063), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4319), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4931), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [156260] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(8065), 1, + sym_identifier, + ACTIONS(8067), 1, + sym_this, + STATE(1435), 1, + sym__type_query_subscript_expression, + STATE(1436), 1, + sym__type_query_member_expression, + STATE(1574), 1, + sym__type_query_instantiation_expression, + STATE(1575), 1, + sym__type_query_call_expression, + STATE(5343), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156289] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(8069), 1, + sym_identifier, + ACTIONS(8071), 1, + sym_this, + STATE(3297), 1, + sym__type_query_call_expression, + STATE(3352), 1, + sym__type_query_instantiation_expression, + STATE(3557), 1, + sym__type_query_subscript_expression, + STATE(3559), 1, + sym__type_query_member_expression, + STATE(5418), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156318] = 7, + ACTIONS(3317), 1, + sym_identifier, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + anon_sym_LBRACK, + ACTIONS(8073), 1, + anon_sym_enum, + STATE(5344), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3986), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [156343] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(8071), 1, + sym_this, + ACTIONS(8075), 1, + sym_identifier, + STATE(3237), 1, + sym__type_query_subscript_expression, + STATE(3238), 1, + sym__type_query_member_expression, + STATE(3297), 1, + sym__type_query_call_expression, + STATE(3352), 1, + sym__type_query_instantiation_expression, + STATE(5458), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156372] = 6, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(8077), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8079), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8081), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5147), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [156395] = 6, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(8077), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8079), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8081), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5051), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [156418] = 5, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(8085), 1, + anon_sym_DOT, + STATE(4896), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1702), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [156439] = 5, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(8087), 1, + anon_sym_DOT, + STATE(4896), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1702), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [156460] = 6, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(8077), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8079), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8081), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5132), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [156483] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_PIPE, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8089), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [156504] = 9, + ACTIONS(8091), 1, + sym_identifier, + ACTIONS(8093), 1, + anon_sym_const, + ACTIONS(8095), 1, + anon_sym_GT, + ACTIONS(8097), 1, + sym_jsx_identifier, + ACTIONS(8099), 1, + anon_sym_SLASH_GT, + STATE(3584), 1, + sym_nested_identifier, + STATE(3775), 1, + sym_jsx_namespace_name, + STATE(5867), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156533] = 7, + ACTIONS(3317), 1, + sym_identifier, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + anon_sym_LBRACK, + ACTIONS(8101), 1, + anon_sym_enum, + STATE(5394), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3986), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [156558] = 3, + ACTIONS(7648), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4021), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [156575] = 3, + ACTIONS(7648), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4031), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [156592] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(8103), 1, + sym_identifier, + ACTIONS(8105), 1, + sym_this, + STATE(3281), 1, + sym__type_query_subscript_expression, + STATE(3292), 1, + sym__type_query_member_expression, + STATE(3510), 1, + sym__type_query_call_expression, + STATE(3647), 1, + sym__type_query_instantiation_expression, + STATE(5383), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156621] = 3, + ACTIONS(8107), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4015), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [156638] = 6, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(8077), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8079), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8081), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5199), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [156661] = 7, + ACTIONS(8061), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8063), 1, + sym__template_chars, + ACTIONS(8109), 1, + sym_escape_sequence, + ACTIONS(8111), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4279), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(5256), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [156686] = 6, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(8077), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8079), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8081), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4688), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [156709] = 9, + ACTIONS(8093), 1, + anon_sym_const, + ACTIONS(8095), 1, + anon_sym_GT, + ACTIONS(8113), 1, + sym_identifier, + ACTIONS(8115), 1, + sym_jsx_identifier, + ACTIONS(8117), 1, + anon_sym_SLASH_GT, + STATE(3542), 1, + sym_nested_identifier, + STATE(3843), 1, + sym_jsx_namespace_name, + STATE(5867), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156738] = 7, + ACTIONS(8061), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8063), 1, + sym__template_chars, + ACTIONS(8109), 1, + sym_escape_sequence, + ACTIONS(8119), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4279), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4931), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [156763] = 7, + ACTIONS(8061), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8063), 1, + sym__template_chars, + ACTIONS(8109), 1, + sym_escape_sequence, + ACTIONS(8121), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4279), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4931), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [156788] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3335), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156803] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_PIPE, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8123), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [156824] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3339), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156839] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_PIPE, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8125), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [156860] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3364), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156875] = 6, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(8077), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8079), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8081), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4685), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [156898] = 6, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(8077), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8079), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8081), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4683), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [156921] = 5, + ACTIONS(7804), 1, + anon_sym_AMP, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7722), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [156942] = 7, + ACTIONS(8057), 1, + sym_escape_sequence, + ACTIONS(8061), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8063), 1, + sym__template_chars, + ACTIONS(8127), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4319), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4931), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [156967] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(8129), 1, + sym_identifier, + ACTIONS(8131), 1, + sym_this, + STATE(3319), 1, + sym__type_query_subscript_expression, + STATE(3321), 1, + sym__type_query_member_expression, + STATE(3625), 1, + sym__type_query_call_expression, + STATE(3748), 1, + sym__type_query_instantiation_expression, + STATE(5393), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156996] = 7, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(7706), 1, + anon_sym_BANG, + STATE(4935), 1, + sym_type_annotation, + STATE(6010), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7704), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157021] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(8133), 1, + sym_identifier, + ACTIONS(8135), 1, + sym_this, + STATE(1693), 1, + sym__type_query_subscript_expression, + STATE(1700), 1, + sym__type_query_member_expression, + STATE(1948), 1, + sym__type_query_call_expression, + STATE(1949), 1, + sym__type_query_instantiation_expression, + STATE(5402), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157050] = 7, + ACTIONS(8061), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8063), 1, + sym__template_chars, + ACTIONS(8109), 1, + sym_escape_sequence, + ACTIONS(8137), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4279), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4931), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [157075] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(7674), 1, + sym_identifier, + STATE(6800), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7676), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5935), 2, + sym__module_export_name, + sym_string, + [157100] = 6, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(8077), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8079), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8081), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5056), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157123] = 7, + ACTIONS(8061), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8063), 1, + sym__template_chars, + ACTIONS(8109), 1, + sym_escape_sequence, + ACTIONS(8139), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4279), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4931), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [157148] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1833), 2, + anon_sym_while, + sym_identifier, + ACTIONS(1831), 6, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + [157165] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1837), 2, + anon_sym_while, + sym_identifier, + ACTIONS(1835), 6, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + [157182] = 7, + ACTIONS(8061), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8063), 1, + sym__template_chars, + ACTIONS(8109), 1, + sym_escape_sequence, + ACTIONS(8141), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4279), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4931), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [157207] = 6, + ACTIONS(7344), 1, + anon_sym_COLON, + ACTIONS(8077), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8079), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8081), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5057), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157230] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5122), 1, + sym_type_annotation, + STATE(5746), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157252] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(8143), 1, + sym_identifier, + ACTIONS(8145), 1, + anon_sym_DOT, + STATE(706), 1, + sym_nested_identifier, + STATE(721), 1, + sym_string, + STATE(758), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157278] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8147), 1, + sym_identifier, + ACTIONS(8149), 1, + anon_sym_STAR, + STATE(4505), 1, + sym_formal_parameters, + STATE(6260), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157304] = 8, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7971), 1, + anon_sym_LBRACE, + STATE(217), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(7167), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157330] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4823), 1, + sym_type_annotation, + STATE(5672), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157352] = 6, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, + sym_identifier, + STATE(5344), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3986), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [157374] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5306), 1, + sym_type_annotation, + STATE(6057), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157396] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5086), 1, + sym_type_annotation, + STATE(5576), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157418] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8153), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [157432] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5155), 1, + sym_type_annotation, + STATE(5559), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157454] = 3, + ACTIONS(4487), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4489), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + anon_sym_BQUOTE, + [157470] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5081), 1, + sym_type_annotation, + STATE(5577), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157492] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5078), 1, + sym_type_annotation, + STATE(5579), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157514] = 8, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7929), 1, + anon_sym_LBRACE, + STATE(853), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(7037), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157540] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4815), 1, + sym_type_annotation, + STATE(5667), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157562] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5073), 1, + sym_type_annotation, + STATE(5580), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157584] = 6, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, + sym_identifier, + STATE(5350), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3986), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [157606] = 5, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4343), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [157626] = 3, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4307), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [157642] = 5, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4149), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [157662] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8161), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [157676] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5162), 1, + sym_type_annotation, + STATE(5895), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8163), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157698] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5259), 1, + sym_type_annotation, + STATE(5500), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7618), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157720] = 8, + ACTIONS(7660), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(1618), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(7157), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157746] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5270), 1, + sym_type_annotation, + STATE(6011), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8165), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157768] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5268), 1, + sym_type_annotation, + STATE(6000), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8165), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157790] = 8, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(5014), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6909), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157816] = 5, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4141), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [157836] = 5, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [157856] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1835), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [157870] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6130), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8167), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [157888] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8169), 1, + anon_sym_COLON, + ACTIONS(8171), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6169), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157914] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7985), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [157928] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5308), 1, + sym_type_annotation, + STATE(6058), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157950] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7979), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [157964] = 3, + ACTIONS(4483), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4485), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + anon_sym_BQUOTE, + [157980] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + sym_identifier, + ACTIONS(8175), 1, + anon_sym_STAR, + STATE(4505), 1, + sym_formal_parameters, + STATE(6260), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158006] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6103), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8177), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158024] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6334), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8179), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158042] = 3, + ACTIONS(4479), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4481), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + anon_sym_BQUOTE, + [158058] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4935), 1, + sym_type_annotation, + STATE(6030), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7704), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158080] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5185), 1, + sym_type_annotation, + STATE(5550), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158102] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8181), 1, + sym_identifier, + ACTIONS(8183), 1, + anon_sym_STAR, + STATE(4505), 1, + sym_formal_parameters, + STATE(6120), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158128] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5260), 1, + sym_type_annotation, + STATE(5957), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8165), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158150] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5255), 1, + sym_type_annotation, + STATE(6086), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158172] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5257), 1, + sym_type_annotation, + STATE(5955), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8165), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158194] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1831), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [158208] = 3, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3515), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [158224] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6857), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8188), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158242] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3515), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [158256] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6214), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8188), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158274] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6859), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8190), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158292] = 7, + ACTIONS(3459), 1, + anon_sym_COLON, + ACTIONS(8192), 1, + anon_sym_EQ, + ACTIONS(8196), 1, + anon_sym_QMARK, + STATE(5442), 1, + sym_type_annotation, + STATE(6640), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8194), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [158316] = 8, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_COMMA, + ACTIONS(8202), 1, + anon_sym_DOT, + ACTIONS(8204), 1, + anon_sym_LT, + ACTIONS(8206), 1, + anon_sym_LBRACE_PIPE, + STATE(5359), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5892), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158342] = 8, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7929), 1, + anon_sym_LBRACE, + STATE(749), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(7172), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158368] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4808), 1, + sym_type_annotation, + STATE(5660), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158390] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5059), 1, + sym_type_annotation, + STATE(5707), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7600), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158412] = 3, + ACTIONS(8208), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3515), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [158428] = 8, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2369), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6363), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158454] = 7, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(7632), 1, + sym_identifier, + ACTIONS(7692), 1, + anon_sym_type, + STATE(6215), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7327), 2, + sym__module_export_name, + sym_string, + [158478] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4806), 1, + sym_type_annotation, + STATE(5659), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158500] = 8, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2322), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6119), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158526] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4913), 1, + sym_type_annotation, + STATE(5589), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158548] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5068), 1, + sym_type_annotation, + STATE(5715), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158570] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8211), 1, + sym_identifier, + ACTIONS(8213), 1, + anon_sym_STAR, + STATE(4505), 1, + sym_formal_parameters, + STATE(6120), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158596] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4801), 1, + sym_type_annotation, + STATE(5657), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158618] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6225), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8215), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158636] = 8, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2159), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6203), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158662] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6605), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8217), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158680] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6607), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8215), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158698] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5193), 1, + sym_type_annotation, + STATE(5929), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158720] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8219), 1, + sym_identifier, + ACTIONS(8221), 1, + anon_sym_STAR, + STATE(4505), 1, + sym_formal_parameters, + STATE(6120), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158746] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4887), 1, + sym_type_annotation, + STATE(5595), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158768] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5200), 1, + sym_type_annotation, + STATE(5930), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158790] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5093), 1, + sym_type_annotation, + STATE(5723), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158812] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5098), 1, + sym_type_annotation, + STATE(5724), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158834] = 8, + ACTIONS(7660), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(1734), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6908), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158860] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8171), 1, + anon_sym_QMARK, + ACTIONS(8223), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(6169), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158886] = 4, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4873), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8225), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158904] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5102), 1, + sym_type_annotation, + STATE(5730), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158926] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5103), 1, + sym_type_annotation, + STATE(5731), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158948] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5316), 1, + sym_type_annotation, + STATE(6066), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158970] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5104), 1, + sym_type_annotation, + STATE(5733), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158992] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5107), 1, + sym_type_annotation, + STATE(5734), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159014] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5318), 1, + sym_type_annotation, + STATE(6067), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159036] = 4, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4851), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8227), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [159054] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8229), 1, + sym_identifier, + ACTIONS(8231), 1, + anon_sym_STAR, + STATE(4505), 1, + sym_formal_parameters, + STATE(6120), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159080] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5112), 1, + sym_type_annotation, + STATE(5738), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159102] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5113), 1, + sym_type_annotation, + STATE(5739), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159124] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4834), 1, + sym_type_annotation, + STATE(5679), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159146] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4796), 1, + sym_type_annotation, + STATE(5656), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159168] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4732), 1, + sym_type_annotation, + STATE(5680), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159190] = 8, + ACTIONS(7660), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2513), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(7059), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159216] = 8, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(720), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6839), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159242] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8233), 1, + sym_identifier, + ACTIONS(8235), 1, + anon_sym_STAR, + STATE(4505), 1, + sym_formal_parameters, + STATE(6341), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159268] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4778), 1, + sym_type_annotation, + STATE(5651), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159290] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5127), 1, + sym_type_annotation, + STATE(5747), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159312] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4777), 1, + sym_type_annotation, + STATE(5645), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159334] = 3, + ACTIONS(8237), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4015), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [159350] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4848), 1, + sym_type_annotation, + STATE(5684), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159372] = 8, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2380), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6796), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159398] = 3, + ACTIONS(7720), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4031), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [159414] = 6, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(6127), 1, + anon_sym_LT, + STATE(1686), 1, + sym_arguments, + STATE(6347), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8239), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [159436] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6185), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8241), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [159454] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4852), 1, + sym_type_annotation, + STATE(5685), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159476] = 8, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(716), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(7156), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159502] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5138), 1, + sym_type_annotation, + STATE(5751), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159524] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5139), 1, + sym_type_annotation, + STATE(5752), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159546] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5670), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [159560] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5209), 1, + sym_type_annotation, + STATE(5974), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159582] = 8, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2187), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6172), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159608] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5218), 1, + sym_type_annotation, + STATE(5981), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159630] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8243), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [159644] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5148), 1, + sym_type_annotation, + STATE(5754), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159666] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5158), 1, + sym_type_annotation, + STATE(5755), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159688] = 8, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(4973), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(7085), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159714] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5160), 1, + sym_type_annotation, + STATE(5757), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159736] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5164), 1, + sym_type_annotation, + STATE(5758), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159758] = 3, + ACTIONS(7720), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4021), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [159774] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8245), 1, + sym_identifier, + ACTIONS(8247), 1, + anon_sym_STAR, + STATE(4505), 1, + sym_formal_parameters, + STATE(6260), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159800] = 8, + ACTIONS(222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1540), 1, + anon_sym_LBRACE, + ACTIONS(8249), 1, + anon_sym_LT, + ACTIONS(8251), 1, + anon_sym_extends, + STATE(821), 1, + sym_object_type, + STATE(4804), 1, + sym_type_parameters, + STATE(6100), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159826] = 8, + ACTIONS(1026), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1576), 1, + anon_sym_LBRACE, + ACTIONS(8249), 1, + anon_sym_LT, + ACTIONS(8251), 1, + anon_sym_extends, + STATE(5116), 1, + sym_object_type, + STATE(5327), 1, + sym_type_parameters, + STATE(5826), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159852] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5178), 1, + sym_type_annotation, + STATE(5763), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159874] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5179), 1, + sym_type_annotation, + STATE(5764), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159896] = 8, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(8253), 1, + sym_identifier, + ACTIONS(8255), 1, + anon_sym_DOT, + STATE(3911), 1, + sym_nested_identifier, + STATE(4157), 1, + sym_string, + STATE(5211), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159922] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4767), 1, + sym_type_annotation, + STATE(5636), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159944] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5188), 1, + sym_type_annotation, + STATE(5766), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159966] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5119), 1, + sym_type_annotation, + STATE(5570), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159988] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5189), 1, + sym_type_annotation, + STATE(5857), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160010] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5115), 1, + sym_type_annotation, + STATE(5571), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160032] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5320), 1, + sym_type_annotation, + STATE(6075), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160054] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5325), 1, + sym_type_annotation, + STATE(6076), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160076] = 8, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(8145), 1, + anon_sym_DOT, + ACTIONS(8257), 1, + sym_identifier, + STATE(721), 1, + sym_string, + STATE(758), 1, + sym__module, + STATE(5479), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160102] = 8, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2130), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(7084), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160128] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4765), 1, + sym_type_annotation, + STATE(5635), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160150] = 3, + ACTIONS(8259), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4407), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + [160166] = 5, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4421), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [160186] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5240), 1, + sym_type_annotation, + STATE(5993), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160208] = 8, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2297), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(7101), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160234] = 3, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4433), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [160250] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5243), 1, + sym_type_annotation, + STATE(5999), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160272] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5253), 1, + sym_type_annotation, + STATE(6005), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160294] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7155), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8261), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160312] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7153), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8263), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160330] = 8, + ACTIONS(7660), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2540), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(7093), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160356] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6218), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8263), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160374] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6217), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8261), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160392] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6235), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8265), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160410] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4757), 1, + sym_type_annotation, + STATE(5633), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160432] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4838), 1, + sym_type_annotation, + STATE(5632), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160454] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5093), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [160468] = 5, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(5978), 1, + anon_sym_RBRACE, + STATE(5899), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3921), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [160488] = 8, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(4956), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(7082), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160514] = 5, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [160534] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8267), 1, + sym_identifier, + ACTIONS(8269), 1, + anon_sym_STAR, + STATE(4505), 1, + sym_formal_parameters, + STATE(6284), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160560] = 5, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4207), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [160580] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5099), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [160594] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4856), 1, + sym_type_annotation, + STATE(5687), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160616] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6223), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8271), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160634] = 6, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, + sym_identifier, + STATE(5901), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3986), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [160656] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4860), 1, + sym_type_annotation, + STATE(5688), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160678] = 8, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8275), 1, + anon_sym_STAR, + STATE(4505), 1, + sym_formal_parameters, + STATE(6260), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160704] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6851), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8265), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160722] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6853), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8271), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160740] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4745), 1, + sym_type_annotation, + STATE(5629), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160762] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5264), 1, + sym_type_annotation, + STATE(6022), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160784] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7754), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [160798] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5266), 1, + sym_type_annotation, + STATE(6023), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160820] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5204), 1, + sym_type_annotation, + STATE(5773), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160842] = 6, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(6127), 1, + anon_sym_LT, + STATE(2298), 1, + sym_arguments, + STATE(6128), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8239), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [160864] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5328), 1, + sym_type_annotation, + STATE(6087), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160886] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5234), 1, + sym_type_annotation, + STATE(5539), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160908] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4740), 1, + sym_type_annotation, + STATE(5661), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160930] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4731), 1, + sym_type_annotation, + STATE(5624), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160952] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4728), 1, + sym_type_annotation, + STATE(5623), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160974] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7927), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [160988] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5330), 1, + sym_type_annotation, + STATE(6089), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161010] = 4, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4729), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8277), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161028] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5214), 1, + sym_type_annotation, + STATE(5781), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161050] = 6, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + anon_sym_LBRACK, + ACTIONS(8279), 1, + sym_identifier, + STATE(5350), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3737), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [161072] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5217), 1, + sym_type_annotation, + STATE(5785), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161094] = 6, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + anon_sym_LBRACK, + ACTIONS(8281), 1, + sym_identifier, + STATE(5344), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3733), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [161116] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5223), 1, + sym_type_annotation, + STATE(5786), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161138] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4647), 1, + sym_type_annotation, + STATE(5618), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161160] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5233), 1, + sym_type_annotation, + STATE(5792), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161182] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4714), 1, + sym_type_annotation, + STATE(5617), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161204] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5236), 1, + sym_type_annotation, + STATE(5793), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161226] = 5, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(8283), 1, + sym_identifier, + ACTIONS(8285), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8287), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [161246] = 8, + ACTIONS(7660), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(1638), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6340), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161272] = 6, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, + sym_identifier, + STATE(5396), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(4237), 2, + STATE(3986), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [161294] = 6, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4239), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5262), 1, + sym_type_annotation, + STATE(5797), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, + [161316] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115420] = 3, + STATE(5273), 1, + sym_type_annotation, + STATE(5798), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 2, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161338] = 6, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4222), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4638), 1, + sym_type_annotation, + STATE(5520), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7628), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, + [161360] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115448] = 3, + STATE(5319), 1, + sym_type_annotation, + STATE(6098), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 2, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161382] = 6, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4226), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5284), 1, + sym_type_annotation, + STATE(6029), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, + [161404] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115476] = 3, + STATE(4871), 1, + sym_type_annotation, + STATE(5693), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 2, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161426] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7726), 7, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4277), 17, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115504] = 3, + [161440] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5295), 1, + sym_type_annotation, + STATE(6031), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4279), 2, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161462] = 6, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4281), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5276), 1, + sym_type_annotation, + STATE(5801), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, + [161484] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115532] = 3, + STATE(4710), 1, + sym_type_annotation, + STATE(5614), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4279), 2, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161506] = 6, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4281), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4891), 1, + sym_type_annotation, + STATE(5696), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, + [161528] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + STATE(5281), 1, + sym_type_annotation, + STATE(5802), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161550] = 8, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, anon_sym_extends, - [115560] = 3, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(2286), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6950), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4279), 2, + [161576] = 6, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4281), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(7344), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115588] = 3, + STATE(5300), 1, + sym_type_annotation, + STATE(5804), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 2, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161598] = 6, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4287), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5307), 1, + sym_type_annotation, + STATE(5805), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, + [161620] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115616] = 3, + STATE(5314), 1, + sym_type_annotation, + STATE(6099), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 2, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161642] = 6, + ACTIONS(7199), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4287), 17, - anon_sym_as, - anon_sym_LBRACE, + STATE(5434), 1, + sym_constraint, + STATE(6393), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8289), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + ACTIONS(8291), 2, + anon_sym_COLON, anon_sym_extends, - [115644] = 3, + [161664] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4692), 1, + sym_type_annotation, + STATE(5601), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 2, + ACTIONS(7596), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161686] = 6, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4295), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4686), 1, + sym_type_annotation, + STATE(5812), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, + [161708] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115672] = 3, + STATE(5064), 1, + sym_type_annotation, + STATE(5814), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4511), 2, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161730] = 6, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4513), 17, - anon_sym_as, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5052), 1, + sym_type_annotation, + STATE(5816), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161752] = 4, + ACTIONS(8083), 1, anon_sym_LBRACE, + STATE(4896), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1702), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115700] = 3, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161770] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, + ACTIONS(5095), 7, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4148), 17, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, + [161784] = 6, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115728] = 3, + ACTIONS(8151), 1, + sym_identifier, + STATE(5394), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4152), 17, - anon_sym_as, + STATE(3986), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [161806] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8293), 7, + sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115756] = 3, + anon_sym_PIPE_RBRACE, + [161820] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4882), 1, + sym_type_annotation, + STATE(5817), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4156), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(7588), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, + [161842] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115784] = 3, + STATE(4698), 1, + sym_type_annotation, + STATE(5608), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 2, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161864] = 6, + ACTIONS(7199), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4152), 17, - anon_sym_as, - anon_sym_LBRACE, + STATE(5459), 1, + sym_constraint, + STATE(6123), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7203), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + ACTIONS(8291), 2, + anon_sym_COLON, anon_sym_extends, - [115812] = 3, + [161886] = 8, + ACTIONS(7746), 1, + anon_sym_extends, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7971), 1, + anon_sym_LBRACE, + STATE(242), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6247), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 2, + [161912] = 6, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4156), 17, - anon_sym_as, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4906), 1, + sym_type_annotation, + STATE(5504), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7584), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161934] = 4, + ACTIONS(2429), 1, anon_sym_LBRACE, + STATE(7036), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8295), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115840] = 3, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161952] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7034), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4158), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4160), 17, - anon_sym_as, + ACTIONS(8297), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161970] = 4, + ACTIONS(2429), 1, anon_sym_LBRACE, + STATE(6221), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8295), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161988] = 8, + ACTIONS(7660), 1, + anon_sym_LBRACE, + ACTIONS(7746), 1, anon_sym_extends, - [115868] = 3, + ACTIONS(7748), 1, + anon_sym_implements, + STATE(1679), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6912), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 2, + [162014] = 6, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4164), 17, - anon_sym_as, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(4813), 1, + sym_type_annotation, + STATE(5831), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162036] = 4, + ACTIONS(2429), 1, anon_sym_LBRACE, + STATE(6219), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8297), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162054] = 8, + ACTIONS(7746), 1, anon_sym_extends, - [115896] = 3, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(4917), 1, + sym_class_body, + STATE(5865), 1, + sym_extends_clause, + STATE(6895), 1, + sym_class_heritage, + STATE(7492), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4158), 2, + [162080] = 4, + ACTIONS(4113), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4160), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5988), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3921), 4, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, - anon_sym_extends, - [115924] = 3, + anon_sym_QMARK, + [162098] = 6, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5298), 1, + sym_type_annotation, + STATE(6102), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4164), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(7590), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, + [162120] = 4, + ACTIONS(7344), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [115952] = 3, + STATE(4905), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 2, + ACTIONS(8299), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162138] = 3, + ACTIONS(8301), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4168), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3536), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, + anon_sym_QMARK, + [162154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8303), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [162169] = 7, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(7493), 1, anon_sym_extends, - [115980] = 3, + ACTIONS(8305), 1, + anon_sym_COMMA, + ACTIONS(8307), 1, + anon_sym_GT, + STATE(6093), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4179), 17, - anon_sym_as, + [162192] = 4, + ACTIONS(8309), 1, anon_sym_LBRACE, + STATE(2616), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8188), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [162209] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, + ACTIONS(8311), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6821), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162232] = 6, + ACTIONS(8155), 1, anon_sym_AMP, + ACTIONS(8157), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(8159), 1, anon_sym_extends, - [116008] = 3, + ACTIONS(8315), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4179), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(8313), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [162253] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [116036] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8317), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6627), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4226), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [162276] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8319), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6820), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162299] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [116064] = 3, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(8321), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(4899), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 2, - anon_sym_EQ, + [162322] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(8323), 1, anon_sym_QMARK, - ACTIONS(4295), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(3685), 1, + sym_formal_parameters, + STATE(5607), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162345] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8325), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6949), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162368] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [116092] = 3, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(8327), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(5510), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 2, - anon_sym_EQ, + [162391] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8329), 1, anon_sym_QMARK, - ACTIONS(4295), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4505), 1, + sym_formal_parameters, + STATE(6626), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162414] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, + ACTIONS(8331), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6625), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162437] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(8253), 1, + sym_identifier, + STATE(3911), 1, + sym_nested_identifier, + STATE(4157), 1, + sym_string, + STATE(5211), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162460] = 7, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(7493), 1, anon_sym_extends, - [116120] = 3, + ACTIONS(8333), 1, + anon_sym_LBRACE, + ACTIONS(8335), 1, + anon_sym_COMMA, + STATE(5791), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162483] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6227), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162506] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 2, + ACTIONS(3921), 6, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4226), 17, - anon_sym_as, + [162519] = 4, + ACTIONS(8309), 1, anon_sym_LBRACE, + STATE(2704), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8297), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162536] = 4, + ACTIONS(4107), 1, anon_sym_COMMA, + STATE(4366), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8339), 4, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [162553] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [116148] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8341), 1, + sym_identifier, + STATE(4505), 1, + sym_formal_parameters, + STATE(6342), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4239), 17, - anon_sym_as, + [162576] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8343), 1, + sym_identifier, + STATE(4505), 1, + sym_formal_parameters, + STATE(6378), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162599] = 4, + ACTIONS(8309), 1, anon_sym_LBRACE, + STATE(2618), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8190), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [162616] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8345), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6623), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162639] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [116176] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8347), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6833), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 2, - anon_sym_EQ, + [162662] = 7, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8349), 1, + anon_sym_export, + ACTIONS(8351), 1, + anon_sym_class, + ACTIONS(8353), 1, + anon_sym_abstract, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162685] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8355), 1, anon_sym_QMARK, - ACTIONS(4287), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6929), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162708] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8357), 1, + anon_sym_QMARK, + STATE(3804), 1, + sym_formal_parameters, + STATE(4586), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162731] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [116204] = 18, - ACTIONS(5991), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8359), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6953), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162754] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6254), 1, - anon_sym_EQ, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6258), 1, - anon_sym_COMMA, - ACTIONS(6260), 1, - anon_sym_COLON, - ACTIONS(6262), 1, - anon_sym_GT, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6267), 1, - anon_sym_DOT, - ACTIONS(6269), 1, - anon_sym_SLASH_GT, - ACTIONS(6271), 1, - anon_sym_extends, - STATE(3376), 1, - sym_type_arguments, - STATE(3377), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, - STATE(4540), 1, - sym_constraint, - STATE(5495), 1, - sym_default_type, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8361), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6621), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162777] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8363), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6638), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162800] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8365), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6639), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [116261] = 3, - ACTIONS(1919), 1, - anon_sym_PIPE, + [162823] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8367), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6104), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1917), 17, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_AMP, + [162846] = 7, + ACTIONS(2525), 1, anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8369), 1, anon_sym_QMARK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116288] = 18, - ACTIONS(5991), 1, - anon_sym_LT, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6254), 1, - anon_sym_EQ, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6258), 1, - anon_sym_COMMA, - ACTIONS(6260), 1, - anon_sym_COLON, - ACTIONS(6262), 1, - anon_sym_GT, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6267), 1, - anon_sym_DOT, - ACTIONS(6271), 1, - anon_sym_extends, - ACTIONS(6273), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - sym_type_arguments, - STATE(3448), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, - STATE(4540), 1, - sym_constraint, - STATE(5495), 1, - sym_default_type, + STATE(4505), 1, + sym_formal_parameters, + STATE(6620), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [116345] = 3, - ACTIONS(1823), 1, - anon_sym_PIPE, + [162869] = 4, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2698), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1821), 17, + ACTIONS(8295), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116372] = 14, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(6275), 1, + [162886] = 3, + ACTIONS(8371), 1, sym_identifier, - ACTIONS(6277), 1, - anon_sym_STAR, - ACTIONS(6279), 1, - anon_sym_type, - ACTIONS(6281), 1, - anon_sym_LBRACE, - ACTIONS(6283), 1, - anon_sym_typeof, - STATE(4257), 1, - sym_string, - STATE(4285), 1, - sym_import_require_clause, - STATE(5220), 1, - sym_import_clause, - STATE(5247), 1, - sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5580), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6285), 5, + ACTIONS(7230), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [116421] = 6, - ACTIONS(4007), 1, - anon_sym_EQ, - ACTIONS(6246), 1, - anon_sym_LT, - ACTIONS(6287), 1, + [162901] = 6, + ACTIONS(8202), 1, anon_sym_DOT, - STATE(2856), 1, + ACTIONS(8204), 1, + anon_sym_LT, + ACTIONS(8373), 1, + anon_sym_LBRACE, + STATE(5892), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(8375), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_LBRACE_PIPE, + [162922] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8377), 1, anon_sym_QMARK, - anon_sym_extends, - [116454] = 3, - ACTIONS(4122), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6816), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + [162945] = 6, + ACTIONS(3459), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [116480] = 4, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(4097), 1, + ACTIONS(8192), 1, anon_sym_EQ, + STATE(5482), 1, + sym_type_annotation, + STATE(6230), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 15, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(8379), 2, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [162966] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - [116508] = 9, - ACTIONS(3408), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(3410), 1, - anon_sym_DOT, - ACTIONS(3414), 1, - anon_sym_QMARK_DOT, - ACTIONS(3418), 1, - anon_sym_PIPE, - ACTIONS(6289), 1, - anon_sym_LT, - STATE(3020), 1, - sym_arguments, - STATE(3189), 1, - sym_type_arguments, + ACTIONS(8381), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6616), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162989] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 10, + ACTIONS(3679), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8383), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116546] = 5, - ACTIONS(4025), 1, - anon_sym_EQ, - ACTIONS(6246), 1, + [163006] = 7, + ACTIONS(2525), 1, anon_sym_LT, - STATE(2861), 1, - sym_type_arguments, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(8385), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [163029] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8387), 1, anon_sym_QMARK, - anon_sym_extends, - [116576] = 3, + STATE(4505), 1, + sym_formal_parameters, + STATE(6165), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4454), 2, - anon_sym_EQ, + [163052] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8389), 1, anon_sym_QMARK, - ACTIONS(4456), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [116602] = 3, - ACTIONS(3598), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6615), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3382), 16, - anon_sym_as, + [163075] = 7, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + ACTIONS(8253), 1, + sym_identifier, + STATE(3911), 1, + sym_nested_identifier, + STATE(4157), 1, + sym_string, + STATE(4893), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163098] = 4, + ACTIONS(8309), 1, anon_sym_LBRACE, + STATE(2617), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8188), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [163115] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8391), 1, anon_sym_QMARK, - anon_sym_extends, - [116628] = 5, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_QMARK_DOT, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6945), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3418), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3406), 13, - anon_sym_as, + [163138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8393), 6, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [116658] = 9, - ACTIONS(3408), 1, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [163153] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(6289), 1, + ACTIONS(8395), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6613), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163176] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6291), 1, - anon_sym_DOT, - ACTIONS(6293), 1, - anon_sym_QMARK_DOT, - STATE(3021), 1, - sym_arguments, - STATE(3196), 1, - sym_type_arguments, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8397), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6641), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3981), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116696] = 5, - ACTIONS(6295), 1, - anon_sym_DOT, - ACTIONS(6297), 1, - anon_sym_QMARK_DOT, + [163199] = 5, + ACTIONS(8399), 1, + anon_sym_BQUOTE, + ACTIONS(8401), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 2, - anon_sym_EQ, + ACTIONS(8109), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4279), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [163218] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8403), 1, anon_sym_QMARK, - ACTIONS(4380), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [116726] = 3, - ACTIONS(3596), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6643), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [163241] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8405), 1, anon_sym_QMARK, - anon_sym_extends, - [116752] = 4, - ACTIONS(1797), 1, - anon_sym_DOT, - ACTIONS(4097), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6732), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [163264] = 7, + ACTIONS(2525), 1, anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8407), 1, anon_sym_QMARK, - anon_sym_extends, - [116780] = 3, - ACTIONS(4118), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6644), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4120), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [163287] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8409), 1, anon_sym_QMARK, - anon_sym_extends, - [116806] = 3, - ACTIONS(4114), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6612), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4116), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [163310] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8411), 1, anon_sym_QMARK, - anon_sym_extends, - [116832] = 3, - ACTIONS(4126), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6645), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4128), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [163333] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8413), 1, anon_sym_QMARK, - anon_sym_extends, - [116858] = 9, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, - anon_sym_PIPE, - ACTIONS(6289), 1, - anon_sym_LT, - ACTIONS(6299), 1, - anon_sym_DOT, - ACTIONS(6301), 1, - anon_sym_QMARK_DOT, - STATE(3023), 1, - sym_arguments, - STATE(3206), 1, - sym_type_arguments, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6939), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3987), 10, + ACTIONS(8161), 6, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116896] = 7, - ACTIONS(4007), 1, - anon_sym_EQ, - ACTIONS(6246), 1, - anon_sym_LT, - ACTIONS(6287), 1, - anon_sym_DOT, - ACTIONS(6303), 1, - anon_sym_is, - STATE(2856), 1, - sym_type_arguments, + anon_sym_COLON, + [163369] = 4, + ACTIONS(8415), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 12, + ACTIONS(7670), 2, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [116930] = 3, + STATE(6134), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [163386] = 4, + ACTIONS(8417), 1, + sym_identifier, + ACTIONS(8419), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4480), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4482), 15, - anon_sym_as, + ACTIONS(8421), 4, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [116956] = 3, - ACTIONS(4142), 1, - anon_sym_EQ, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [163403] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8423), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6609), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [163426] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BQUOTE, + ACTIONS(8425), 1, anon_sym_QMARK, - anon_sym_extends, - [116982] = 3, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6962), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4488), 2, - anon_sym_EQ, + [163449] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8427), 1, anon_sym_QMARK, - ACTIONS(4490), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [117008] = 3, - ACTIONS(4332), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6608), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [163472] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BQUOTE, + ACTIONS(8429), 1, anon_sym_QMARK, - anon_sym_extends, - [117034] = 3, - ACTIONS(4470), 1, - anon_sym_EQ, + STATE(3685), 1, + sym_formal_parameters, + STATE(4725), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4472), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [163495] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BQUOTE, + ACTIONS(8431), 1, anon_sym_QMARK, - anon_sym_extends, - [117060] = 6, - ACTIONS(3438), 1, + STATE(4505), 1, + sym_formal_parameters, + STATE(6601), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163518] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(4019), 1, - anon_sym_EQ, - ACTIONS(6305), 1, - anon_sym_DOT, - STATE(2847), 1, - sym_arguments, + ACTIONS(8433), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6938), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4021), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [117091] = 3, - ACTIONS(4466), 1, - anon_sym_EQ, + [163541] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8435), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6937), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4468), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + [163564] = 4, + STATE(4216), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3663), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8439), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [163596] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + ACTIONS(8441), 1, anon_sym_QMARK, - anon_sym_extends, - [117116] = 3, - ACTIONS(4458), 1, - anon_sym_EQ, + STATE(3804), 1, + sym_formal_parameters, + STATE(4396), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4460), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [163619] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8443), 1, anon_sym_QMARK, - anon_sym_extends, - [117141] = 3, - ACTIONS(4045), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6834), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [163642] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8445), 1, anon_sym_QMARK, - anon_sym_extends, - anon_sym_is, - [117166] = 4, - ACTIONS(4336), 1, - anon_sym_EQ, - ACTIONS(6307), 1, - anon_sym_DOT, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6963), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + [163665] = 5, + ACTIONS(8447), 1, + anon_sym_default, + ACTIONS(8449), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8451), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4583), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [163684] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8453), 1, anon_sym_QMARK, - anon_sym_extends, - [117193] = 3, - ACTIONS(1652), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6835), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1650), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + [163707] = 7, + ACTIONS(8095), 1, anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8455), 1, + sym_identifier, + ACTIONS(8457), 1, + sym_jsx_identifier, + ACTIONS(8459), 1, + anon_sym_SLASH_GT, + STATE(3577), 1, + sym_nested_identifier, + STATE(3758), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163730] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8461), 1, anon_sym_QMARK, - anon_sym_extends, - anon_sym_is, - [117218] = 3, - ACTIONS(4476), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6934), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4478), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [163753] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8463), 1, + sym_identifier, + STATE(4505), 1, + sym_formal_parameters, + STATE(6378), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163776] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8465), 1, anon_sym_QMARK, - anon_sym_extends, - [117242] = 3, - ACTIONS(4259), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6964), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4261), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [163799] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8467), 1, anon_sym_QMARK, - anon_sym_extends, - [117266] = 3, - ACTIONS(4263), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6468), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4265), 14, - anon_sym_as, + [163822] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8153), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [163835] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8469), 1, anon_sym_QMARK, - anon_sym_extends, - [117290] = 3, - ACTIONS(4013), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6650), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [163858] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8471), 1, anon_sym_QMARK, - anon_sym_extends, - [117314] = 3, - ACTIONS(4410), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6467), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [163881] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8473), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6466), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163904] = 7, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(8475), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8477), 1, + anon_sym_DOT, + STATE(3010), 1, + sym_arguments, + STATE(6125), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163927] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8479), 1, anon_sym_QMARK, - anon_sym_extends, - [117338] = 3, - ACTIONS(4301), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6464), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4303), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + [163950] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8481), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6463), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163973] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3663), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163990] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8483), 1, anon_sym_QMARK, - anon_sym_extends, - [117362] = 5, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(6309), 1, - anon_sym_LBRACK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6462), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 3, + [164013] = 7, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, + ACTIONS(7493), 1, anon_sym_extends, - ACTIONS(4426), 10, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(8485), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(8487), 1, anon_sym_GT, - anon_sym_EQ_GT, + STATE(5702), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164036] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8489), 1, anon_sym_QMARK, - [117390] = 3, - ACTIONS(4271), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6461), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + [164059] = 5, + ACTIONS(8491), 1, + anon_sym_default, + ACTIONS(8494), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8496), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4266), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [164078] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8499), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6933), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164101] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8501), 1, anon_sym_QMARK, - anon_sym_extends, - [117414] = 4, - ACTIONS(4434), 1, - anon_sym_EQ, - ACTIONS(6309), 1, - anon_sym_LBRACK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6651), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4436), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [164124] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8503), 1, anon_sym_QMARK, - anon_sym_extends, - [117440] = 3, - ACTIONS(4462), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6652), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4464), 14, - anon_sym_as, + [164147] = 4, + ACTIONS(8309), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [117464] = 8, - ACTIONS(6311), 1, - anon_sym_LPAREN, - ACTIONS(6313), 1, - anon_sym_DOT, - ACTIONS(6315), 1, - anon_sym_QMARK_DOT, - ACTIONS(6317), 1, - anon_sym_LT, - STATE(3185), 1, - sym_arguments, - STATE(3394), 1, - sym_type_arguments, + STATE(2636), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 9, + ACTIONS(8297), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [117498] = 8, - ACTIONS(6311), 1, + [164164] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6317), 1, + ACTIONS(8505), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6932), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164187] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6319), 1, - anon_sym_DOT, - ACTIONS(6321), 1, - anon_sym_QMARK_DOT, - STATE(3200), 1, - sym_arguments, - STATE(3399), 1, - sym_type_arguments, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8507), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6931), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164210] = 4, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2635), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3981), 9, + ACTIONS(8295), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [117532] = 8, - ACTIONS(6311), 1, + [164227] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6317), 1, + ACTIONS(8509), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6668), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164250] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6323), 1, - anon_sym_DOT, - ACTIONS(6325), 1, - anon_sym_QMARK_DOT, - STATE(3202), 1, - sym_arguments, - STATE(3404), 1, - sym_type_arguments, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8511), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6669), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3987), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + [164273] = 7, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, + ACTIONS(7493), 1, anon_sym_extends, - [117566] = 3, - ACTIONS(4484), 1, - anon_sym_EQ, + ACTIONS(8513), 1, + anon_sym_COMMA, + ACTIONS(8515), 1, + anon_sym_GT, + STATE(5961), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4486), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + [164296] = 4, + STATE(4262), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8519), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + ACTIONS(8517), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164313] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8521), 1, anon_sym_QMARK, - anon_sym_extends, - [117590] = 3, - ACTIONS(4492), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6670), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4494), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [164336] = 5, + ACTIONS(8401), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8525), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8523), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4318), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [164355] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8527), 1, anon_sym_QMARK, - anon_sym_extends, - [117614] = 7, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6329), 1, - sym_number, - ACTIONS(6331), 1, - anon_sym_unique, + STATE(4505), 1, + sym_formal_parameters, + STATE(6671), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5710), 2, - sym_string, - sym_predefined_type, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [117646] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6333), 1, - sym_number, - STATE(5713), 1, - sym_string, - STATE(5716), 1, - sym_predefined_type, + [164378] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8529), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6944), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [117680] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6335), 1, - sym_number, - STATE(5724), 1, - sym_string, - STATE(5727), 1, - sym_predefined_type, + [164401] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8531), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6191), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [117714] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6337), 1, - sym_number, - STATE(5731), 1, - sym_string, - STATE(5732), 1, - sym_predefined_type, + [164424] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8533), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6673), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [117748] = 3, - ACTIONS(4496), 1, - anon_sym_EQ, + [164447] = 4, + STATE(4308), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4498), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(8537), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + ACTIONS(8535), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164464] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8539), 1, anon_sym_QMARK, - anon_sym_extends, - [117772] = 3, - ACTIONS(4500), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6675), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4502), 14, - anon_sym_as, + [164487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8541), 6, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [164502] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8543), 1, anon_sym_QMARK, - anon_sym_extends, - [117796] = 3, - ACTIONS(4504), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6678), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4506), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [164525] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8545), 1, anon_sym_QMARK, - anon_sym_extends, - [117820] = 3, - ACTIONS(4104), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6679), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [164548] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8547), 1, anon_sym_QMARK, - anon_sym_extends, - [117844] = 2, + STATE(4505), 1, + sym_formal_parameters, + STATE(6681), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6339), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [117866] = 3, - ACTIONS(4130), 1, - anon_sym_EQ, + [164571] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8549), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6682), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [164594] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8551), 1, anon_sym_QMARK, - anon_sym_extends, - [117890] = 3, - ACTIONS(4138), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6604), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4140), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [164617] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8553), 1, anon_sym_QMARK, - anon_sym_extends, - [117914] = 2, + STATE(4505), 1, + sym_formal_parameters, + STATE(6451), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6341), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [117936] = 7, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6343), 1, - sym_number, + [164640] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8555), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7105), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5766), 2, - sym_string, - sym_predefined_type, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [117968] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6345), 1, - sym_number, - STATE(5833), 1, - sym_string, - STATE(5917), 1, - sym_predefined_type, + [164663] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8557), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6450), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118002] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6347), 1, - sym_number, - STATE(5570), 1, - sym_string, - STATE(5665), 1, - sym_predefined_type, + [164686] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8559), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7106), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118036] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6349), 1, - sym_number, - STATE(5748), 1, - sym_string, - STATE(5755), 1, - sym_predefined_type, + [164709] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6449), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118070] = 3, - ACTIONS(4324), 1, - anon_sym_EQ, + [164732] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8563), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6686), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [164755] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8565), 1, anon_sym_QMARK, - anon_sym_extends, - [118094] = 2, + STATE(4505), 1, + sym_formal_parameters, + STATE(6687), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6351), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [118116] = 3, - ACTIONS(4025), 1, - anon_sym_EQ, + [164778] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8567), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6666), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 14, - anon_sym_as, + [164801] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8569), 3, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [164820] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8571), 1, anon_sym_QMARK, - anon_sym_extends, - [118140] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6353), 1, - sym_number, - STATE(5864), 1, - sym_string, - STATE(5868), 1, - sym_predefined_type, + STATE(4505), 1, + sym_formal_parameters, + STATE(6689), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118174] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6355), 1, - sym_number, - STATE(5878), 1, - sym_string, - STATE(5881), 1, - sym_predefined_type, + [164843] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8573), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6692), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118208] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6357), 1, - sym_number, - STATE(5543), 1, - sym_predefined_type, - STATE(5901), 1, - sym_string, + [164866] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8575), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7107), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118242] = 3, - ACTIONS(4328), 1, - anon_sym_EQ, + [164889] = 4, + STATE(4317), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3667), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + ACTIONS(8577), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164906] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8579), 1, anon_sym_QMARK, - anon_sym_extends, - [118266] = 3, - ACTIONS(4039), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7108), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [164929] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8581), 1, anon_sym_QMARK, - anon_sym_extends, - [118290] = 2, + STATE(4505), 1, + sym_formal_parameters, + STATE(6693), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6359), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [118312] = 7, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6361), 1, - sym_number, + [164952] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8583), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6695), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5918), 2, - sym_string, - sym_predefined_type, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118344] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6363), 1, - sym_number, - STATE(5749), 1, - sym_predefined_type, - STATE(5921), 1, - sym_string, + [164975] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118378] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6365), 1, - sym_number, - STATE(5807), 1, - sym_string, - STATE(5838), 1, - sym_predefined_type, + ACTIONS(3667), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8577), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164992] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8585), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6696), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118412] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6367), 1, - sym_number, - STATE(5534), 1, - sym_string, - STATE(5924), 1, - sym_predefined_type, + [165015] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8587), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7109), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118446] = 3, - ACTIONS(4342), 1, - anon_sym_EQ, + [165038] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8589), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7110), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [165061] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8591), 1, anon_sym_QMARK, - anon_sym_extends, - [118470] = 4, - ACTIONS(4342), 1, - anon_sym_EQ, - ACTIONS(6309), 1, - anon_sym_LBRACK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6698), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 13, - anon_sym_as, + [165084] = 3, + ACTIONS(7462), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7464), 5, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [118496] = 2, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [165099] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8593), 1, + sym_identifier, + STATE(4505), 1, + sym_formal_parameters, + STATE(6121), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6369), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [118518] = 2, + [165122] = 7, + ACTIONS(8095), 1, + anon_sym_GT, + ACTIONS(8595), 1, + sym_identifier, + ACTIONS(8597), 1, + sym_jsx_identifier, + ACTIONS(8599), 1, + anon_sym_SLASH_GT, + STATE(3537), 1, + sym_nested_identifier, + STATE(3851), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6371), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [118540] = 2, + [165145] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8601), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7113), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6373), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [118562] = 7, - ACTIONS(4007), 1, - anon_sym_PIPE, - ACTIONS(6289), 1, - anon_sym_LT, - ACTIONS(6375), 1, - anon_sym_DOT, - ACTIONS(6377), 1, - anon_sym_is, - STATE(3194), 1, - sym_type_arguments, + [165168] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 10, + ACTIONS(3669), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8603), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118594] = 7, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6379), 1, - sym_number, + [165185] = 5, + ACTIONS(8608), 1, + anon_sym_BQUOTE, + ACTIONS(8610), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5822), 2, - sym_string, - sym_predefined_type, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118626] = 3, - ACTIONS(4366), 1, - anon_sym_EQ, + ACTIONS(8605), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4318), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [165204] = 5, + ACTIONS(8401), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8613), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(8523), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4318), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [165223] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8618), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + ACTIONS(8615), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165240] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8620), 1, anon_sym_QMARK, - anon_sym_extends, - [118650] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6381), 1, - sym_number, - STATE(5843), 1, - sym_string, - STATE(5851), 1, - sym_predefined_type, + STATE(4505), 1, + sym_formal_parameters, + STATE(6858), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165263] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8622), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6815), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118684] = 3, - ACTIONS(4384), 1, - anon_sym_EQ, + [165286] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8624), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7114), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [165309] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8626), 1, anon_sym_QMARK, - anon_sym_extends, - [118708] = 3, - ACTIONS(4511), 1, - anon_sym_PIPE, + STATE(4505), 1, + sym_formal_parameters, + STATE(6814), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4513), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [165332] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(8628), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7117), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165355] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118732] = 3, - ACTIONS(4390), 1, - anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8630), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7122), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 14, - anon_sym_as, + [165378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8632), 6, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [165393] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8634), 1, anon_sym_QMARK, - anon_sym_extends, - [118756] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6383), 1, - sym_number, - STATE(5581), 1, - sym_string, - STATE(5583), 1, - sym_predefined_type, + STATE(4505), 1, + sym_formal_parameters, + STATE(6699), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118790] = 3, - ACTIONS(4146), 1, - anon_sym_PIPE, + [165416] = 4, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2664), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4148), 14, + ACTIONS(8167), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [165433] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118814] = 3, - ACTIONS(4150), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8636), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6965), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4152), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118838] = 3, - ACTIONS(4154), 1, - anon_sym_PIPE, + [165456] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(6027), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3921), 4, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_COLON, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118862] = 3, - ACTIONS(4150), 1, - anon_sym_PIPE, + anon_sym_QMARK, + [165471] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8638), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7050), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4152), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [165494] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118886] = 3, - ACTIONS(4154), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8640), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6436), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [165517] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118910] = 3, - ACTIONS(4158), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8642), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7121), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4160), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [165540] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118934] = 3, - ACTIONS(4394), 1, - anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8644), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6700), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [165563] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8646), 1, anon_sym_QMARK, - anon_sym_extends, - [118958] = 3, - ACTIONS(4162), 1, - anon_sym_PIPE, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7169), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [165586] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118982] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6385), 1, - sym_number, - STATE(5641), 1, - sym_string, - STATE(5657), 1, - sym_predefined_type, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8648), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6433), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [119016] = 3, - ACTIONS(4402), 1, - anon_sym_EQ, + [165609] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 14, + ACTIONS(2329), 6, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [119040] = 2, + [165622] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8650), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7168), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6387), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119062] = 3, - ACTIONS(4181), 1, - anon_sym_EQ, + [165645] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8652), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6966), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [165668] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8654), 1, anon_sym_QMARK, - anon_sym_extends, - [119086] = 3, - ACTIONS(4185), 1, - anon_sym_EQ, + STATE(4505), 1, + sym_formal_parameters, + STATE(6432), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165691] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 14, + ACTIONS(2321), 6, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [119110] = 3, - ACTIONS(4158), 1, - anon_sym_PIPE, + [165704] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(8656), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(4874), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4160), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [165727] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(8658), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6813), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165750] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119134] = 3, - ACTIONS(4406), 1, - anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8660), 1, + sym_identifier, + STATE(4505), 1, + sym_formal_parameters, + STATE(6664), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [165773] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8662), 1, anon_sym_QMARK, - anon_sym_extends, - [119158] = 3, - ACTIONS(4162), 1, - anon_sym_PIPE, + STATE(4505), 1, + sym_formal_parameters, + STATE(6860), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [165796] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119182] = 3, - ACTIONS(4206), 1, - anon_sym_EQ, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8664), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7137), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + [165819] = 5, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(7493), 1, anon_sym_extends, - [119206] = 3, - ACTIONS(4212), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(8666), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [119230] = 3, - ACTIONS(4166), 1, - anon_sym_PIPE, - ACTIONS(5), 2, + [165838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8668), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [165853] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4168), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8670), 6, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119254] = 3, - ACTIONS(4177), 1, - anon_sym_PIPE, + [165868] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8672), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6861), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119278] = 3, - ACTIONS(4166), 1, - anon_sym_PIPE, + [165891] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4168), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2333), 6, + anon_sym_as, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119302] = 3, - ACTIONS(4177), 1, anon_sym_PIPE, + anon_sym_extends, + [165904] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8674), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7123), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [165927] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119326] = 3, - ACTIONS(4216), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8676), 1, + sym_identifier, + STATE(4505), 1, + sym_formal_parameters, + STATE(6121), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [165950] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119350] = 3, - ACTIONS(4220), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8678), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6579), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [165973] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119374] = 3, - ACTIONS(4220), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8680), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6423), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [165996] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119398] = 3, - ACTIONS(4220), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8682), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6422), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166019] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119422] = 3, - ACTIONS(4224), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8684), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6578), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166042] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119446] = 3, - ACTIONS(4224), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8686), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6421), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166065] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119470] = 3, - ACTIONS(4224), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8688), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6577), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166088] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119494] = 3, - ACTIONS(4237), 1, - anon_sym_PIPE, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(8690), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(5249), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166111] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119518] = 3, - ACTIONS(4237), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8692), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6862), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 14, - sym__automatic_semicolon, - anon_sym_EQ, + [166134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8632), 6, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119542] = 3, - ACTIONS(4237), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, + [166149] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8694), 6, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119566] = 3, - ACTIONS(4275), 1, - anon_sym_PIPE, + [166164] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8696), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6819), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + [166187] = 4, + ACTIONS(8698), 1, anon_sym_COMMA, + STATE(4366), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4451), 4, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [166204] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119590] = 3, - ACTIONS(4279), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8701), 1, + sym_identifier, + STATE(4505), 1, + sym_formal_parameters, + STATE(6121), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 14, - sym__automatic_semicolon, - anon_sym_EQ, + [166227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8703), 6, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119614] = 2, + [166242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8632), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [166257] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8705), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6865), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6389), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119636] = 3, - ACTIONS(4279), 1, - anon_sym_PIPE, + [166280] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2317), 6, + anon_sym_as, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119660] = 3, - ACTIONS(4279), 1, anon_sym_PIPE, + anon_sym_extends, + [166293] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8707), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6415), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166316] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119684] = 3, - ACTIONS(4285), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8709), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6872), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166339] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119708] = 3, - ACTIONS(4285), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8711), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6414), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166362] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119732] = 3, - ACTIONS(4285), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8713), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6920), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166385] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119756] = 3, - ACTIONS(4293), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8715), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6413), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166408] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119780] = 3, - ACTIONS(4293), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8717), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6921), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166431] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119804] = 3, - ACTIONS(4293), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8719), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6866), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166454] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119828] = 7, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(6331), 1, - anon_sym_unique, - ACTIONS(6391), 1, - sym_number, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8721), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6411), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5857), 2, - sym_string, - sym_predefined_type, - ACTIONS(6327), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [119860] = 6, - ACTIONS(218), 1, - anon_sym_unique, - STATE(2855), 1, - sym_type_predicate, - STATE(5590), 1, - sym_predefined_type, + [166477] = 4, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2610), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6393), 2, - sym_identifier, - sym_this, - ACTIONS(220), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [119889] = 14, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(6277), 1, - anon_sym_STAR, - ACTIONS(6281), 1, - anon_sym_LBRACE, - ACTIONS(6395), 1, - sym_identifier, - ACTIONS(6397), 1, - anon_sym_type, - ACTIONS(6399), 1, + ACTIONS(8265), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - ACTIONS(6401), 1, - anon_sym_from, - STATE(4230), 1, - sym_string, - STATE(4231), 1, - sym_import_require_clause, - STATE(5247), 1, - sym__import_identifier, - STATE(5503), 1, - sym_import_clause, + anon_sym_SEMI, + [166494] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8723), 1, + sym_identifier, + STATE(4505), 1, + sym_formal_parameters, + STATE(6378), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5580), 2, - sym_namespace_import, - sym_named_imports, - [119934] = 13, - ACTIONS(2581), 1, + [166517] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6407), 1, - anon_sym_BANG, - ACTIONS(6409), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6413), 1, + ACTIONS(8725), 1, anon_sym_QMARK, - STATE(3320), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3871), 1, + STATE(6283), 1, sym__call_signature, - STATE(4314), 1, - sym_type_annotation, - STATE(4988), 1, - sym__initializer, - STATE(5342), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6405), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [119977] = 13, - ACTIONS(2581), 1, + [166540] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6417), 1, - anon_sym_BANG, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6421), 1, + ACTIONS(8727), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3932), 1, - sym_type_annotation, - STATE(4927), 1, - sym__initializer, - STATE(5233), 1, + STATE(6867), 1, sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120020] = 6, - ACTIONS(4007), 1, - anon_sym_PIPE, - ACTIONS(6289), 1, + [166563] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6375), 1, - anon_sym_DOT, - STATE(3194), 1, - sym_type_arguments, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8729), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7132), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120049] = 6, - ACTIONS(3408), 1, + [166586] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(4019), 1, - anon_sym_PIPE, - ACTIONS(6423), 1, - anon_sym_DOT, - STATE(3087), 1, - sym_arguments, + ACTIONS(8731), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6409), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4021), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120078] = 13, - ACTIONS(2581), 1, + [166609] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6425), 1, - anon_sym_BANG, - ACTIONS(6427), 1, + ACTIONS(8733), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3951), 1, - sym_type_annotation, - STATE(4634), 1, - sym__initializer, - STATE(5313), 1, + STATE(6870), 1, sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120121] = 6, - ACTIONS(218), 1, - anon_sym_unique, - STATE(3161), 1, - sym_type_predicate, - STATE(5609), 1, - sym_predefined_type, + [166632] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8735), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6871), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6429), 2, - sym_identifier, - sym_this, - ACTIONS(220), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120150] = 11, - ACTIONS(2581), 1, + [166655] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3740), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(3575), 1, + ACTIONS(8737), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - STATE(5374), 1, + STATE(6875), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, + [166678] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8739), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [120189] = 6, - ACTIONS(218), 1, - anon_sym_unique, - STATE(1550), 1, - sym_type_predicate, - STATE(5774), 1, - sym_predefined_type, + STATE(4505), 1, + sym_formal_parameters, + STATE(6408), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6431), 2, - sym_identifier, - sym_this, - ACTIONS(220), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120218] = 11, - ACTIONS(2581), 1, + [166701] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3817), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(3575), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - STATE(5374), 1, + STATE(6622), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 5, + [166724] = 4, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2612), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8271), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + [166741] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8743), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [120257] = 13, - ACTIONS(2581), 1, + STATE(4505), 1, + sym_formal_parameters, + STATE(6876), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166764] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6409), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6435), 1, - anon_sym_BANG, - ACTIONS(6437), 1, + ACTIONS(8745), 1, anon_sym_QMARK, - STATE(3320), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3805), 1, + STATE(6711), 1, sym__call_signature, - STATE(4305), 1, - sym_type_annotation, - STATE(4972), 1, - sym__initializer, - STATE(5342), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120300] = 13, - ACTIONS(2581), 1, + [166787] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7352), 1, anon_sym_LPAREN, - ACTIONS(6439), 1, - anon_sym_BANG, - ACTIONS(6441), 1, + ACTIONS(8747), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(3804), 1, sym_formal_parameters, - STATE(4010), 1, - sym_type_annotation, - STATE(4737), 1, - sym__initializer, - STATE(5302), 1, + STATE(4474), 1, sym__call_signature, - STATE(5349), 1, + STATE(6168), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120343] = 13, - ACTIONS(2581), 1, + [166810] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6409), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6445), 1, - anon_sym_BANG, - ACTIONS(6447), 1, + ACTIONS(8749), 1, anon_sym_QMARK, - STATE(3320), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3864), 1, + STATE(6712), 1, sym__call_signature, - STATE(4080), 1, - sym_type_annotation, - STATE(5010), 1, - sym__initializer, - STATE(5342), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6443), 3, + [166833] = 4, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2887), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8265), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120386] = 13, - ACTIONS(2581), 1, + [166850] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6451), 1, - anon_sym_BANG, - ACTIONS(6453), 1, + ACTIONS(8751), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4043), 1, - sym_type_annotation, - STATE(4862), 1, - sym__initializer, - STATE(5349), 1, - sym_type_parameters, - STATE(5472), 1, + STATE(6850), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166873] = 4, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2888), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(8271), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120429] = 13, - ACTIONS(2581), 1, + [166890] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_BANG, - ACTIONS(6457), 1, + ACTIONS(8753), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4092), 1, - sym_type_annotation, - STATE(5057), 1, - sym__initializer, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, - STATE(5372), 1, + STATE(7134), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120472] = 13, - ACTIONS(2581), 1, + [166913] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6461), 1, - anon_sym_BANG, - ACTIONS(6463), 1, + ACTIONS(8755), 1, anon_sym_QMARK, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4163), 1, - sym_type_annotation, - STATE(4732), 1, + STATE(6713), 1, sym__call_signature, - STATE(4733), 1, - sym__initializer, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6459), 3, + [166936] = 4, + STATE(4412), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8759), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120515] = 4, - ACTIONS(4039), 1, - anon_sym_EQ, - ACTIONS(6303), 1, - anon_sym_is, + [166953] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8761), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7092), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + [166976] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2325), 6, + anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [120540] = 13, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(6465), 1, - anon_sym_BANG, - ACTIONS(6467), 1, - anon_sym_QMARK, - STATE(3742), 1, - sym_formal_parameters, - STATE(4340), 1, - sym_type_annotation, - STATE(5051), 1, - sym__initializer, - STATE(5349), 1, - sym_type_parameters, - STATE(5378), 1, - sym__call_signature, + [166989] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(8293), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [120583] = 6, - ACTIONS(218), 1, - anon_sym_unique, - STATE(1937), 1, - sym_type_predicate, - STATE(5813), 1, - sym_predefined_type, + anon_sym_COLON, + [167002] = 7, + ACTIONS(8200), 1, + anon_sym_COMMA, + ACTIONS(8204), 1, + anon_sym_LT, + ACTIONS(8763), 1, + anon_sym_LBRACE, + ACTIONS(8765), 1, + anon_sym_LBRACE_PIPE, + STATE(5360), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5893), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6469), 2, - sym_identifier, - sym_this, - ACTIONS(220), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120612] = 11, - ACTIONS(2581), 1, + [167025] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3829), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(3575), 1, + ACTIONS(8767), 1, + anon_sym_QMARK, + STATE(3685), 1, sym_formal_parameters, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - STATE(5374), 1, + STATE(5546), 1, + sym__call_signature, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 5, + [167048] = 7, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(8477), 1, + anon_sym_DOT, + ACTIONS(8769), 1, + anon_sym_RPAREN, + STATE(3010), 1, + sym_arguments, + STATE(6125), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167071] = 4, + STATE(4420), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3651), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8771), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [120651] = 13, - ACTIONS(2581), 1, + [167088] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6471), 1, - anon_sym_BANG, - ACTIONS(6473), 1, + ACTIONS(8773), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4380), 1, - sym_type_annotation, - STATE(5104), 1, - sym__initializer, - STATE(5349), 1, + STATE(6778), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5439), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8775), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [167126] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8777), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6674), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167149] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(3651), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8771), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120694] = 9, - ACTIONS(4007), 1, + [167166] = 7, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, anon_sym_extends, - ACTIONS(6246), 1, - anon_sym_LT, - ACTIONS(6287), 1, - anon_sym_DOT, - ACTIONS(6475), 1, - sym_identifier, - ACTIONS(6479), 1, + ACTIONS(8779), 1, + anon_sym_COMMA, + ACTIONS(8781), 1, anon_sym_GT, - STATE(2856), 1, - sym_type_arguments, + STATE(5566), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6477), 3, + [167189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8783), 6, anon_sym_LBRACE, - sym_jsx_identifier, - anon_sym_SLASH_GT, - ACTIONS(3461), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [120729] = 13, - ACTIONS(2581), 1, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + [167204] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6482), 1, - anon_sym_BANG, - ACTIONS(6484), 1, + ACTIONS(8785), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3962), 1, - sym_type_annotation, - STATE(4804), 1, - sym__initializer, - STATE(5349), 1, - sym_type_parameters, - STATE(5414), 1, + STATE(6881), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120772] = 13, - ACTIONS(2581), 1, + [167227] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6486), 1, - anon_sym_BANG, - ACTIONS(6488), 1, + ACTIONS(8787), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3965), 1, - sym_type_annotation, - STATE(4852), 1, - sym__initializer, - STATE(5349), 1, - sym_type_parameters, - STATE(5515), 1, + STATE(6397), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120815] = 6, - ACTIONS(218), 1, - anon_sym_unique, - STATE(2855), 1, - sym_type_predicate, - STATE(5649), 1, - sym_predefined_type, + [167250] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8789), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6396), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 2, - sym_identifier, - sym_this, - ACTIONS(220), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120844] = 11, - ACTIONS(2581), 1, + [167273] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(3575), 1, + ACTIONS(8791), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, - STATE(5374), 1, + STATE(6394), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [120883] = 13, - ACTIONS(2581), 1, + [167296] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6409), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6461), 1, - anon_sym_BANG, - ACTIONS(6492), 1, + ACTIONS(8793), 1, anon_sym_QMARK, - STATE(3320), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3799), 1, + STATE(6731), 1, sym__call_signature, - STATE(4163), 1, - sym_type_annotation, - STATE(4713), 1, - sym__initializer, - STATE(5342), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6459), 3, + [167319] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3683), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8795), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120926] = 13, - ACTIONS(2581), 1, + [167336] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6496), 1, - anon_sym_BANG, - ACTIONS(6498), 1, + ACTIONS(8797), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4165), 1, - sym_type_annotation, - STATE(4716), 1, - sym__initializer, - STATE(5279), 1, + STATE(6882), 1, sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120969] = 11, - ACTIONS(2581), 1, + [167359] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3838), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(3575), 1, + ACTIONS(8799), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5374), 1, + STATE(6883), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, + [167382] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8801), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [121008] = 6, - ACTIONS(218), 1, - anon_sym_unique, - STATE(3364), 1, - sym_type_predicate, - STATE(5825), 1, - sym_predefined_type, + STATE(4505), 1, + sym_formal_parameters, + STATE(6276), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 2, - sym_identifier, - sym_this, - ACTIONS(220), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121037] = 13, - ACTIONS(2581), 1, + [167405] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6409), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6504), 1, - anon_sym_BANG, - ACTIONS(6506), 1, + ACTIONS(8803), 1, anon_sym_QMARK, - STATE(3320), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3912), 1, + STATE(6776), 1, sym__call_signature, - STATE(4338), 1, - sym_type_annotation, - STATE(5059), 1, - sym__initializer, - STATE(5342), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6502), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121080] = 13, - ACTIONS(2581), 1, + [167428] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6435), 1, - anon_sym_BANG, - ACTIONS(6508), 1, + ACTIONS(8805), 1, anon_sym_QMARK, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4305), 1, - sym_type_annotation, - STATE(4994), 1, + STATE(6275), 1, sym__call_signature, - STATE(4995), 1, - sym__initializer, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121123] = 13, - ACTIONS(2581), 1, + [167451] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6512), 1, - anon_sym_BANG, - ACTIONS(6514), 1, + ACTIONS(8807), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4316), 1, - sym_type_annotation, - STATE(5001), 1, - sym__initializer, - STATE(5336), 1, + STATE(6733), 1, sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121166] = 13, - ACTIONS(2581), 1, + [167474] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6516), 1, - anon_sym_BANG, - ACTIONS(6518), 1, + ACTIONS(8809), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4318), 1, - sym_type_annotation, - STATE(5007), 1, - sym__initializer, - STATE(5340), 1, + STATE(6734), 1, sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121209] = 5, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + [167497] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, + ACTIONS(8811), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6274), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1626), 2, - sym_template_string, - sym_arguments, - ACTIONS(4478), 10, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + [167520] = 7, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(8257), 1, + sym_identifier, + STATE(721), 1, + sym_string, + STATE(758), 1, + sym__module, + STATE(5479), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167543] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8813), 1, anon_sym_QMARK, - anon_sym_extends, - [121236] = 13, - ACTIONS(2581), 1, + STATE(4505), 1, + sym_formal_parameters, + STATE(6737), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167566] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6520), 1, - anon_sym_BANG, - ACTIONS(6522), 1, + ACTIONS(8815), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4339), 1, - sym_type_annotation, - STATE(5048), 1, - sym__initializer, - STATE(5349), 1, + STATE(6738), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5373), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167589] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8817), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6739), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121279] = 13, - ACTIONS(2581), 1, + [167612] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6524), 1, - anon_sym_BANG, - ACTIONS(6526), 1, + ACTIONS(8819), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4341), 1, - sym_type_annotation, - STATE(5054), 1, - sym__initializer, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, - STATE(5382), 1, + STATE(6969), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121322] = 6, - ACTIONS(218), 1, - anon_sym_unique, - STATE(2855), 1, - sym_type_predicate, - STATE(5730), 1, - sym_predefined_type, + [167635] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8821), 1, + sym_identifier, + STATE(4505), 1, + sym_formal_parameters, + STATE(6121), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6528), 2, - sym_identifier, - sym_this, - ACTIONS(220), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121351] = 13, - ACTIONS(2581), 1, + [167658] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_BANG, - ACTIONS(6534), 1, + ACTIONS(8823), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4184), 1, - sym_type_annotation, - STATE(4760), 1, - sym__initializer, - STATE(5184), 1, + STATE(6885), 1, sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121394] = 4, - ACTIONS(4013), 1, - anon_sym_EQ, - ACTIONS(6303), 1, - anon_sym_is, + [167681] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8825), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6886), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [121419] = 13, - ACTIONS(2581), 1, + [167704] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6536), 1, - anon_sym_BANG, - ACTIONS(6538), 1, + ACTIONS(8827), 1, anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4367), 1, - sym_type_annotation, - STATE(5084), 1, - sym__initializer, - STATE(5349), 1, - sym_type_parameters, - STATE(5422), 1, + STATE(6751), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167727] = 4, + STATE(4599), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(8831), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8829), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121462] = 4, - ACTIONS(4025), 1, - anon_sym_EQ, - ACTIONS(6540), 1, - anon_sym_is, + [167744] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8833), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6752), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + [167767] = 7, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, + ACTIONS(7493), 1, anon_sym_extends, - [121487] = 2, + ACTIONS(8835), 1, + anon_sym_COMMA, + ACTIONS(8837), 1, + anon_sym_GT, + STATE(5956), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [167790] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [121507] = 10, - ACTIONS(3), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8839), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6372), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [167813] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8841), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6371), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(6546), 1, - sym_html_character_reference, - ACTIONS(6548), 1, - anon_sym_LT_SLASH, - ACTIONS(6550), 1, + sym_comment, + [167836] = 7, + ACTIONS(2525), 1, anon_sym_LT, - STATE(3070), 1, - sym_jsx_opening_element, - STATE(4260), 1, - sym_jsx_closing_element, - ACTIONS(6544), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(2998), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [121543] = 10, - ACTIONS(3), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8843), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6887), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [167859] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8845), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6370), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(6542), 1, + sym_comment, + [167882] = 4, + ACTIONS(8309), 1, anon_sym_LBRACE, - ACTIONS(6548), 1, - anon_sym_LT_SLASH, - ACTIONS(6550), 1, - anon_sym_LT, - ACTIONS(6552), 1, - sym_html_character_reference, - STATE(3070), 1, - sym_jsx_opening_element, - STATE(4280), 1, - sym_jsx_closing_element, - ACTIONS(6544), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3134), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [121579] = 3, - ACTIONS(4470), 1, - anon_sym_PIPE, + STATE(2604), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4472), 12, + ACTIONS(8263), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121601] = 6, - ACTIONS(4356), 1, - anon_sym_EQ, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, + [167899] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8847), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6970), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [121629] = 6, - ACTIONS(4360), 1, - anon_sym_EQ, - ACTIONS(6554), 1, + [167922] = 3, + ACTIONS(8849), 1, anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4433), 5, + anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [121657] = 2, + anon_sym_PIPE, + anon_sym_extends, + [167937] = 4, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2606), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 13, + ACTIONS(8261), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [167954] = 5, + ACTIONS(8849), 1, anon_sym_AMP, + ACTIONS(8851), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(8853), 1, anon_sym_extends, - [121677] = 5, - ACTIONS(3410), 1, - anon_sym_DOT, - ACTIONS(3414), 1, - anon_sym_QMARK_DOT, - ACTIONS(3418), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(4421), 3, + anon_sym_as, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121703] = 6, - ACTIONS(6317), 1, + anon_sym_RBRACK, + [167973] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6560), 1, - anon_sym_DOT, - ACTIONS(6562), 1, - anon_sym_is, - STATE(3300), 1, - sym_type_arguments, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8855), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6494), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + [167996] = 3, + ACTIONS(8857), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4407), 5, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [121731] = 5, - ACTIONS(4378), 1, - anon_sym_PIPE, - ACTIONS(6564), 1, - anon_sym_DOT, - ACTIONS(6566), 1, - anon_sym_QMARK_DOT, + [168011] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8859), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6495), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168034] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8861), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6496), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168057] = 4, + STATE(4467), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 10, + ACTIONS(8865), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8863), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121757] = 6, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, + [168074] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8867), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6753), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 9, + [168097] = 4, + ACTIONS(8309), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [121785] = 3, - ACTIONS(3127), 1, - anon_sym_PIPE, + STATE(2597), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3129), 12, + ACTIONS(8215), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121807] = 2, + [168114] = 4, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2607), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 13, + ACTIONS(8241), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [121827] = 10, - ACTIONS(2581), 1, + [168131] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6570), 1, + ACTIONS(8869), 1, anon_sym_QMARK, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3639), 1, + STATE(6758), 1, sym__call_signature, - STATE(4220), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6568), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [121863] = 2, + [168154] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + ACTIONS(8871), 1, + anon_sym_QMARK, + STATE(3804), 1, + sym_formal_parameters, + STATE(4480), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [168177] = 5, + ACTIONS(3187), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(8873), 1, + sym_identifier, + ACTIONS(8875), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [121883] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + STATE(7053), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [168196] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [121903] = 3, - ACTIONS(3131), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8877), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6550), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3133), 12, - sym__automatic_semicolon, - anon_sym_EQ, + [168219] = 4, + ACTIONS(8309), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121925] = 2, + STATE(2622), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 13, + ACTIONS(8261), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [168236] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [121945] = 6, - ACTIONS(4420), 1, - anon_sym_EQ, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8879), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6759), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4422), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [121973] = 3, - ACTIONS(4332), 1, - anon_sym_PIPE, + [168259] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8881), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6760), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168282] = 4, + STATE(4477), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 12, + ACTIONS(3693), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8883), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121995] = 13, - ACTIONS(5991), 1, + [168299] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6267), 1, - anon_sym_DOT, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(6574), 1, - anon_sym_GT, - ACTIONS(6576), 1, - anon_sym_SLASH_GT, - STATE(3273), 1, - sym_type_arguments, - STATE(3279), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8885), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6777), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [122037] = 4, - ACTIONS(4134), 1, - anon_sym_EQ, - ACTIONS(6554), 1, - anon_sym_AMP, + [168322] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 11, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3693), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_extends, - [122061] = 3, - ACTIONS(3123), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3125), 12, + anon_sym_PIPE_RBRACE, + ACTIONS(8883), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122083] = 6, - ACTIONS(4309), 1, - anon_sym_EQ, - ACTIONS(6554), 1, + [168339] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(8887), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(3994), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168362] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8889), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7136), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168385] = 5, + ACTIONS(8849), 1, anon_sym_AMP, - ACTIONS(6556), 1, + ACTIONS(8851), 1, anon_sym_PIPE, - ACTIONS(6558), 1, + ACTIONS(8853), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4311), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4149), 3, + anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [122111] = 3, - ACTIONS(4454), 1, - anon_sym_PIPE, - ACTIONS(5), 2, + [168404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(4745), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [168419] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4456), 12, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4679), 6, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122133] = 3, - ACTIONS(4480), 1, - anon_sym_PIPE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [168434] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4482), 12, + ACTIONS(8891), 6, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [122155] = 2, + [168447] = 4, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2809), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 13, + ACTIONS(8217), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [168464] = 7, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(8257), 1, + sym_identifier, + STATE(721), 1, + sym_string, + STATE(794), 1, + sym__module, + STATE(5479), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168487] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [122175] = 3, - ACTIONS(4488), 1, - anon_sym_PIPE, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(8893), 1, + anon_sym_QMARK, + STATE(3685), 1, + sym_formal_parameters, + STATE(3983), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4490), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122197] = 2, + [168510] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, + ACTIONS(3695), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8895), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [168527] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [122217] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8897), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6946), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [168550] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [122237] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8899), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6971), 1, + sym__call_signature, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(6542), 1, + sym_comment, + [168573] = 4, + ACTIONS(8309), 1, anon_sym_LBRACE, - ACTIONS(6550), 1, - anon_sym_LT, - ACTIONS(6578), 1, - sym_html_character_reference, - ACTIONS(6580), 1, - anon_sym_LT_SLASH, - STATE(1633), 1, - sym_jsx_closing_element, - STATE(3070), 1, - sym_jsx_opening_element, - ACTIONS(6544), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3037), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [122273] = 2, + STATE(2725), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 13, + ACTIONS(8177), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [122293] = 10, - ACTIONS(2581), 1, + [168590] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6584), 1, + ACTIONS(8901), 1, anon_sym_QMARK, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4204), 1, + STATE(5292), 1, sym__call_signature, - STATE(4205), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6582), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122329] = 10, - ACTIONS(2581), 1, + [168613] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6588), 1, + ACTIONS(8903), 1, anon_sym_QMARK, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(3520), 1, + STATE(4014), 1, sym__call_signature, - STATE(4041), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6586), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122365] = 2, + [168636] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 13, + ACTIONS(8243), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_COLON, + [168649] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [122385] = 4, - ACTIONS(1797), 1, - anon_sym_DOT, - ACTIONS(4097), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8905), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6880), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + [168672] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122409] = 3, - ACTIONS(3596), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8907), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6915), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [168695] = 7, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(8143), 1, + sym_identifier, + STATE(706), 1, + sym_nested_identifier, + STATE(721), 1, + sym_string, + STATE(758), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168718] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122431] = 2, + ACTIONS(8909), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6916), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [168741] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8911), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6761), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168764] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [122451] = 3, - ACTIONS(4142), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8913), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6918), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [168787] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122473] = 3, - ACTIONS(3598), 1, - anon_sym_PIPE, + ACTIONS(8915), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6798), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3382), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [168810] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122495] = 4, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(4097), 1, - anon_sym_PIPE, + ACTIONS(8917), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7040), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 11, - sym__automatic_semicolon, - anon_sym_EQ, + [168833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4931), 6, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122519] = 10, + [168848] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6542), 1, + ACTIONS(4935), 6, anon_sym_LBRACE, - ACTIONS(6550), 1, - anon_sym_LT, - ACTIONS(6552), 1, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, sym_html_character_reference, - ACTIONS(6580), 1, anon_sym_LT_SLASH, - STATE(1678), 1, - sym_jsx_closing_element, - STATE(3070), 1, - sym_jsx_opening_element, - ACTIONS(6544), 2, + anon_sym_LT, + [168863] = 4, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2726), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8179), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8919), 6, + anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(3134), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [122555] = 10, - ACTIONS(2581), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [168895] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6590), 1, + ACTIONS(8921), 1, anon_sym_QMARK, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(4040), 1, + STATE(4108), 1, sym__call_signature, - STATE(4041), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6586), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122591] = 10, - ACTIONS(2581), 1, + [168918] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8923), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7091), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168941] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6594), 1, + ACTIONS(8925), 1, anon_sym_QMARK, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4026), 1, + STATE(6901), 1, + sym_type_parameters, + STATE(7042), 1, sym__call_signature, - STATE(4032), 1, - sym_type_annotation, - STATE(5404), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168964] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8927), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, sym_type_parameters, + STATE(6989), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6592), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122627] = 2, + [168987] = 3, + ACTIONS(8929), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(7230), 5, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, - anon_sym_extends, - [122647] = 2, + anon_sym_BQUOTE, + [169002] = 7, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(8143), 1, + sym_identifier, + STATE(706), 1, + sym_nested_identifier, + STATE(721), 1, + sym_string, + STATE(794), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [169025] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8931), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7033), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169048] = 7, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8353), 1, + anon_sym_abstract, + ACTIONS(8933), 1, + anon_sym_export, + ACTIONS(8935), 1, + anon_sym_class, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169071] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [122667] = 3, - ACTIONS(4114), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8937), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6762), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4116), 12, - sym__automatic_semicolon, - anon_sym_EQ, + [169094] = 4, + ACTIONS(8415), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7696), 2, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_EQ_GT, + STATE(6229), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [169111] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(8939), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7051), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169134] = 7, + ACTIONS(7489), 1, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122689] = 3, - ACTIONS(4118), 1, + ACTIONS(7491), 1, anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(8941), 1, + anon_sym_COMMA, + ACTIONS(8943), 1, + anon_sym_GT, + STATE(5866), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4120), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + [169157] = 5, + ACTIONS(8849), 1, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122711] = 3, - ACTIONS(4122), 1, + ACTIONS(8851), 1, anon_sym_PIPE, + ACTIONS(8853), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4207), 3, + anon_sym_as, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, + [169176] = 5, + ACTIONS(8849), 1, anon_sym_AMP, + ACTIONS(8851), 1, + anon_sym_PIPE, + ACTIONS(8853), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122733] = 13, - ACTIONS(5991), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [169195] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6267), 1, - anon_sym_DOT, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(6574), 1, - anon_sym_GT, - ACTIONS(6596), 1, - anon_sym_SLASH_GT, - STATE(3362), 1, - sym_type_arguments, - STATE(3368), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8945), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7062), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [122775] = 3, - ACTIONS(4126), 1, - anon_sym_PIPE, + [169218] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8947), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6529), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4128), 12, - sym__automatic_semicolon, - anon_sym_EQ, + [169241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4661), 6, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122797] = 5, - ACTIONS(4025), 1, - anon_sym_PIPE, - ACTIONS(6289), 1, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - STATE(3180), 1, - sym_type_arguments, + [169256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4665), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [169271] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + ACTIONS(8949), 1, + anon_sym_QMARK, + STATE(3804), 1, + sym_formal_parameters, + STATE(4221), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169294] = 4, + STATE(4524), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 10, + ACTIONS(8953), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8951), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122823] = 2, + [169311] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8955), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6530), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [169334] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(8957), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6531), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169357] = 5, + ACTIONS(3187), 1, + anon_sym_LBRACE, + ACTIONS(8875), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [122843] = 10, - ACTIONS(2581), 1, + ACTIONS(8959), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5528), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [169376] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6598), 1, - anon_sym_COLON, - ACTIONS(6600), 1, + ACTIONS(8961), 1, anon_sym_QMARK, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3642), 1, + STATE(6532), 1, sym__call_signature, - STATE(4205), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6582), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122879] = 4, - ACTIONS(4398), 1, - anon_sym_EQ, - ACTIONS(6554), 1, - anon_sym_AMP, + [169399] = 4, + STATE(4535), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 11, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3699), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_extends, - [122903] = 10, + anon_sym_PIPE_RBRACE, + ACTIONS(8963), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169416] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6542), 1, + ACTIONS(4775), 6, anon_sym_LBRACE, - ACTIONS(6550), 1, - anon_sym_LT, - ACTIONS(6602), 1, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, sym_html_character_reference, - ACTIONS(6604), 1, anon_sym_LT_SLASH, - STATE(2342), 1, - sym_jsx_closing_element, - STATE(3070), 1, - sym_jsx_opening_element, - ACTIONS(6544), 2, + anon_sym_LT, + [169431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4761), 6, + anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(3062), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [122939] = 6, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [169446] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(4476), 1, - anon_sym_PIPE, + ACTIONS(8965), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7022), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1626), 2, - sym_template_string, - sym_arguments, - ACTIONS(4478), 8, + [169469] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3699), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8963), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122967] = 2, + [169486] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4513), 13, + ACTIONS(8967), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + [169499] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [122987] = 6, - ACTIONS(4195), 1, - anon_sym_EQ, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8969), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7064), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [123015] = 2, + [169522] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4148), 13, + ACTIONS(8971), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + [169535] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123035] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8973), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6535), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169558] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 13, + ACTIONS(8975), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + [169571] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123055] = 10, - ACTIONS(2581), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8977), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7021), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169594] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8979), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6536), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169617] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8981), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7065), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169640] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8983), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7020), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169663] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6608), 1, + ACTIONS(8985), 1, anon_sym_QMARK, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4360), 1, + STATE(6537), 1, sym__call_signature, - STATE(4361), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6606), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123091] = 2, + [169686] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4152), 13, + ACTIONS(3689), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8987), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [169703] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123111] = 6, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8989), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7017), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [123139] = 2, + [169726] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8991), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7066), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [169749] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123159] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8993), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6770), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4152), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [169772] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123179] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(8995), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6972), 1, + sym__call_signature, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(6550), 1, - anon_sym_LT, - ACTIONS(6552), 1, - sym_html_character_reference, - ACTIONS(6604), 1, - anon_sym_LT_SLASH, - STATE(2378), 1, - sym_jsx_closing_element, - STATE(3070), 1, - sym_jsx_opening_element, - ACTIONS(6544), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3134), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [123215] = 10, - ACTIONS(2581), 1, + sym_comment, + [169795] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6610), 1, + ACTIONS(8997), 1, anon_sym_QMARK, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4218), 1, - sym__call_signature, - STATE(4220), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, + STATE(7071), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6568), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123251] = 2, + [169818] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 13, + ACTIONS(3659), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8999), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [169835] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123271] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9001), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6771), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4160), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [169858] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123291] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9003), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6772), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [169881] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123311] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9005), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7073), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4160), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [169904] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(9007), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7075), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169927] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123331] = 4, - ACTIONS(4428), 1, - anon_sym_EQ, - ACTIONS(6612), 1, - anon_sym_extends, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9009), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6948), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4430), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - [123355] = 2, + [169950] = 5, + ACTIONS(8401), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9011), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8057), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4319), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [169969] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123375] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9013), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7152), 1, + sym__call_signature, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(6550), 1, + sym_comment, + [169992] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6614), 1, - sym_html_character_reference, - ACTIONS(6616), 1, - anon_sym_LT_SLASH, - STATE(3070), 1, - sym_jsx_opening_element, - STATE(3726), 1, - sym_jsx_closing_element, - ACTIONS(6544), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3075), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [123411] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9015), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7015), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4168), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [170015] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123431] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9017), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7014), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [170038] = 7, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(7493), 1, anon_sym_extends, - [123451] = 2, + ACTIONS(9019), 1, + anon_sym_COMMA, + ACTIONS(9021), 1, + anon_sym_GT, + STATE(5858), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [170061] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123471] = 10, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6618), 1, + ACTIONS(9023), 1, anon_sym_QMARK, - STATE(3229), 1, + STATE(3685), 1, sym_formal_parameters, - STATE(3681), 1, + STATE(4167), 1, sym__call_signature, - STATE(4032), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6592), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123507] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(6550), 1, + [170084] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6552), 1, - sym_html_character_reference, - ACTIONS(6616), 1, - anon_sym_LT_SLASH, - STATE(3070), 1, - sym_jsx_opening_element, - STATE(3887), 1, - sym_jsx_closing_element, - ACTIONS(6544), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3134), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [123543] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9025), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7076), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4168), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [170107] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123563] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9027), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7078), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [170130] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123583] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9029), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7006), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [170153] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123603] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9031), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7079), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [170176] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123623] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9033), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6973), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [170199] = 7, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [123643] = 10, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(9035), 1, anon_sym_QMARK, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3572), 1, - sym__call_signature, - STATE(4361), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, + STATE(7080), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6606), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123679] = 9, - ACTIONS(2581), 1, + [170222] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3229), 1, + ACTIONS(9037), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(4037), 1, - sym__call_signature, - STATE(4038), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, + STATE(7005), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123712] = 9, - ACTIONS(2581), 1, + [170245] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3229), 1, + ACTIONS(9039), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(3500), 1, - sym__call_signature, - STATE(4311), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, + STATE(7149), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6624), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123745] = 3, - ACTIONS(4045), 1, - anon_sym_PIPE, + [170268] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9041), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7148), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_is, - anon_sym_PIPE_RBRACE, - [123766] = 11, - ACTIONS(2581), 1, + [170291] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3229), 1, + ACTIONS(9043), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(4306), 1, - sym_type_annotation, - STATE(4990), 1, - sym__call_signature, - STATE(4991), 1, - sym__initializer, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, + STATE(6976), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6626), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123803] = 3, - ACTIONS(4458), 1, - anon_sym_PIPE, + [170314] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9045), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6977), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4460), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123824] = 3, - ACTIONS(4466), 1, - anon_sym_PIPE, + [170337] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9047), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7004), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4468), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123845] = 12, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(6277), 1, - anon_sym_STAR, - ACTIONS(6281), 1, - anon_sym_LBRACE, - ACTIONS(6395), 1, - sym_identifier, - ACTIONS(6397), 1, - anon_sym_type, - STATE(4230), 1, - sym_string, - STATE(4231), 1, - sym_import_require_clause, - STATE(5247), 1, - sym__import_identifier, - STATE(5503), 1, - sym_import_clause, + [170360] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9049), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7003), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5580), 2, - sym_namespace_import, - sym_named_imports, - [123884] = 11, - ACTIONS(2581), 1, + [170383] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + ACTIONS(9051), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(4265), 1, - sym_type_annotation, - STATE(4914), 1, - sym__initializer, - STATE(5242), 1, - sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, + STATE(7147), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123921] = 11, - ACTIONS(2581), 1, + [170406] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + ACTIONS(9053), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(3948), 1, - sym_type_annotation, - STATE(4891), 1, - sym__initializer, - STATE(5200), 1, - sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, + STATE(7002), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123958] = 11, - ACTIONS(2581), 1, + [170429] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6409), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3320), 1, + ACTIONS(9055), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(3743), 1, - sym__call_signature, - STATE(4171), 1, - sym_type_annotation, - STATE(4739), 1, - sym__initializer, - STATE(5342), 1, + STATE(6901), 1, sym_type_parameters, + STATE(7144), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6632), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123995] = 9, - ACTIONS(2581), 1, + [170452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4749), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4753), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4749), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4783), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4787), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4749), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(3205), 1, + [170542] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3229), 1, + ACTIONS(9057), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(3641), 1, + STATE(6549), 1, sym__call_signature, - STATE(4035), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6634), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124028] = 9, - ACTIONS(2581), 1, + [170565] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7352), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3229), 1, + ACTIONS(9059), 1, + anon_sym_QMARK, + STATE(3804), 1, sym_formal_parameters, - STATE(3607), 1, + STATE(4270), 1, sym__call_signature, - STATE(4216), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6168), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6636), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124061] = 11, - ACTIONS(2581), 1, + [170588] = 5, + ACTIONS(3187), 1, + anon_sym_LBRACE, + ACTIONS(8875), 1, + anon_sym_LBRACK, + ACTIONS(9061), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5414), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [170607] = 5, + ACTIONS(8849), 1, + anon_sym_AMP, + ACTIONS(8851), 1, + anon_sym_PIPE, + ACTIONS(8853), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4141), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [170626] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + ACTIONS(9063), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(3970), 1, - sym_type_annotation, - STATE(5182), 1, - sym__initializer, - STATE(5208), 1, + STATE(6901), 1, + sym_type_parameters, + STATE(6978), 1, sym__call_signature, - STATE(5349), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [170649] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9065), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, sym_type_parameters, + STATE(6992), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124098] = 11, - ACTIONS(2581), 1, + [170672] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + ACTIONS(9067), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(3960), 1, - sym_type_annotation, - STATE(4784), 1, - sym__initializer, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, - STATE(5367), 1, + STATE(6991), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124135] = 4, - ACTIONS(4013), 1, + [170695] = 5, + ACTIONS(8849), 1, + anon_sym_AMP, + ACTIONS(8851), 1, anon_sym_PIPE, - ACTIONS(6377), 1, - anon_sym_is, + ACTIONS(8853), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(4343), 3, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, + [170714] = 5, + ACTIONS(8447), 1, + anon_sym_default, + ACTIONS(8451), 1, + anon_sym_case, + ACTIONS(9069), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4266), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [170733] = 3, + ACTIONS(8849), 1, anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4307), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124158] = 3, - ACTIONS(1652), 1, + [170748] = 5, + ACTIONS(8849), 1, + anon_sym_AMP, + ACTIONS(8851), 1, anon_sym_PIPE, + ACTIONS(8853), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1650), 11, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4131), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [170767] = 4, + ACTIONS(8309), 1, anon_sym_LBRACE, + STATE(2623), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8263), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_is, - anon_sym_PIPE_RBRACE, - [124179] = 11, - ACTIONS(2581), 1, + [170784] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + ACTIONS(9071), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(4018), 1, - sym_type_annotation, - STATE(4783), 1, - sym__initializer, - STATE(5349), 1, + STATE(6701), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5397), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [170807] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9073), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6551), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124216] = 12, - ACTIONS(5991), 1, + [170830] = 7, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8351), 1, + anon_sym_class, + ACTIONS(8353), 1, + anon_sym_abstract, + ACTIONS(9075), 1, + anon_sym_export, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [170853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4883), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, + [170868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4890), 6, anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6640), 1, - anon_sym_GT, - ACTIONS(6642), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_SLASH_GT, - STATE(3378), 1, - sym_type_arguments, - STATE(3379), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170883] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9077), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7143), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [124255] = 12, - ACTIONS(5991), 1, + [170906] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6252), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9079), 1, sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6640), 1, - anon_sym_GT, - ACTIONS(6642), 1, - anon_sym_DOT, - ACTIONS(6646), 1, - anon_sym_SLASH_GT, - STATE(3386), 1, - sym_type_arguments, - STATE(3424), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + STATE(4505), 1, + sym_formal_parameters, + STATE(6378), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [124294] = 4, - ACTIONS(4039), 1, - anon_sym_PIPE, - ACTIONS(6377), 1, - anon_sym_is, + [170929] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9081), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7142), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124317] = 11, - ACTIONS(2581), 1, + [170952] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + ACTIONS(9083), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(4160), 1, - sym_type_annotation, - STATE(4706), 1, - sym__initializer, - STATE(5245), 1, + STATE(6901), 1, + sym_type_parameters, + STATE(7141), 1, sym__call_signature, - STATE(5349), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [170975] = 7, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + ACTIONS(9085), 1, + anon_sym_QMARK, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, sym_type_parameters, + STATE(6993), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124354] = 9, - ACTIONS(2581), 1, + [170998] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(3193), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3229), 1, + ACTIONS(9087), 1, + anon_sym_QMARK, + STATE(3685), 1, sym_formal_parameters, - STATE(4034), 1, + STATE(4089), 1, sym__call_signature, - STATE(4035), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6292), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6634), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + [171021] = 4, + STATE(4541), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3655), 2, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124387] = 7, - ACTIONS(3737), 1, + ACTIONS(9089), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3838), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [171038] = 4, + STATE(4320), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 7, + ACTIONS(3655), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9089), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124416] = 11, - ACTIONS(2581), 1, + [171055] = 7, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + ACTIONS(9091), 1, + anon_sym_QMARK, + STATE(4505), 1, sym_formal_parameters, - STATE(4167), 1, - sym_type_annotation, - STATE(4722), 1, - sym__initializer, - STATE(5287), 1, - sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, + STATE(7140), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [171078] = 4, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2810), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(8215), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124453] = 11, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(4371), 1, - sym_type_annotation, - STATE(5088), 1, - sym__initializer, - STATE(5349), 1, - sym_type_parameters, - STATE(5428), 1, - sym__call_signature, + [171095] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(2751), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [171107] = 6, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(9093), 1, anon_sym_SEMI, - [124490] = 11, - ACTIONS(2581), 1, + ACTIONS(9095), 1, + sym__automatic_semicolon, + ACTIONS(9097), 1, + sym__function_signature_automatic_semicolon, + STATE(744), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [171127] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6409), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3320), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3901), 1, + STATE(6553), 1, sym__call_signature, - STATE(4197), 1, - sym_type_annotation, - STATE(4649), 1, - sym__initializer, - STATE(5342), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6650), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124527] = 12, - ACTIONS(5991), 1, + [171147] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6640), 1, - anon_sym_GT, - ACTIONS(6642), 1, - anon_sym_DOT, - ACTIONS(6652), 1, - anon_sym_SLASH_GT, - STATE(3406), 1, - sym_type_arguments, - STATE(3418), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6556), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [124566] = 2, + [171167] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6952), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1821), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - [124585] = 9, - ACTIONS(2581), 1, + [171187] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3574), 1, + STATE(6366), 1, sym__call_signature, - STATE(4365), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6654), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124618] = 11, - ACTIONS(2581), 1, + [171207] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6409), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3320), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3759), 1, + STATE(6581), 1, sym__call_signature, - STATE(4083), 1, - sym_type_annotation, - STATE(5061), 1, - sym__initializer, - STATE(5342), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6656), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [171227] = 5, + ACTIONS(9101), 1, anon_sym_SEMI, - [124655] = 4, - ACTIONS(4025), 1, - anon_sym_PIPE, - ACTIONS(6658), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4027), 10, + ACTIONS(9103), 1, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124678] = 4, - ACTIONS(4336), 1, - anon_sym_PIPE, - ACTIONS(6660), 1, - anon_sym_DOT, + STATE(6994), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124701] = 11, - ACTIONS(2581), 1, + ACTIONS(9099), 2, + anon_sym_with, + anon_sym_assert, + [171245] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6409), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3320), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3777), 1, + STATE(6548), 1, sym__call_signature, - STATE(4277), 1, - sym_type_annotation, - STATE(4970), 1, - sym__initializer, - STATE(5342), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6662), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124738] = 11, - ACTIONS(2581), 1, + [171265] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4209), 1, - sym_type_annotation, - STATE(4808), 1, - sym__initializer, - STATE(5349), 1, - sym_type_parameters, - STATE(5452), 1, + STATE(6558), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124775] = 11, - ACTIONS(2581), 1, + [171285] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4328), 1, - sym_type_annotation, - STATE(5031), 1, - sym__initializer, - STATE(5337), 1, + STATE(6546), 1, sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124812] = 11, - ACTIONS(2581), 1, + [171305] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6409), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3320), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(6544), 1, sym__call_signature, - STATE(4306), 1, - sym_type_annotation, - STATE(4975), 1, - sym__initializer, - STATE(5342), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6626), 3, + [171325] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9105), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124849] = 11, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [171337] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5467), 5, anon_sym_EQ, - ACTIONS(6411), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(3938), 1, - sym_type_annotation, - STATE(5100), 1, + anon_sym_QMARK, + [171349] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5572), 1, sym__initializer, - STATE(5349), 1, - sym_type_parameters, - STATE(5423), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9107), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124886] = 9, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3229), 1, - sym_formal_parameters, - STATE(4310), 1, - sym__call_signature, - STATE(4311), 1, - sym_type_annotation, - STATE(5404), 1, - sym_type_parameters, + [171365] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6624), 5, + ACTIONS(8271), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124919] = 11, - ACTIONS(2581), 1, + [171377] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4091), 1, - sym_type_annotation, - STATE(5097), 1, - sym__initializer, - STATE(5349), 1, + STATE(6539), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5420), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [171397] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(5296), 1, sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124956] = 7, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + [171417] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5424), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124985] = 2, + [171429] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1917), 12, - anon_sym_as, + ACTIONS(5424), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_QMARK, - anon_sym_extends, - [125004] = 11, - ACTIONS(2581), 1, + [171441] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4197), 1, - sym_type_annotation, - STATE(5178), 1, + STATE(6534), 1, sym__call_signature, - STATE(5179), 1, - sym__initializer, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6650), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [125041] = 7, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3740), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + [171461] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5424), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [125070] = 11, - ACTIONS(2581), 1, + [171473] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4057), 1, - sym_type_annotation, - STATE(4928), 1, - sym__initializer, - STATE(5225), 1, + STATE(6528), 1, sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [125107] = 8, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_QMARK_DOT, - ACTIONS(6246), 1, + [171493] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6666), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(2829), 1, - sym_arguments, - STATE(2852), 1, - sym_type_arguments, + STATE(4505), 1, + sym_formal_parameters, + STATE(6526), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125138] = 8, - ACTIONS(6242), 1, - anon_sym_DOT, - ACTIONS(6244), 1, - anon_sym_QMARK_DOT, - ACTIONS(6246), 1, + [171513] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6666), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(2841), 1, - sym_arguments, - STATE(2865), 1, - sym_type_arguments, + STATE(4505), 1, + sym_formal_parameters, + STATE(6524), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3981), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125169] = 11, - ACTIONS(2581), 1, + [171533] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4022), 1, - sym_type_annotation, - STATE(4797), 1, - sym__initializer, - STATE(5349), 1, - sym_type_parameters, - STATE(5425), 1, + STATE(6560), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [171553] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5561), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9107), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125206] = 9, - ACTIONS(2581), 1, + [171569] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4215), 1, + STATE(6519), 1, sym__call_signature, - STATE(4216), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6636), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125239] = 11, - ACTIONS(2581), 1, + [171589] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4362), 1, - sym_type_annotation, - STATE(5079), 1, - sym__initializer, - STATE(5349), 1, - sym_type_parameters, - STATE(5391), 1, + STATE(6517), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [125276] = 8, - ACTIONS(6246), 1, + [171609] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6248), 1, - anon_sym_DOT, - ACTIONS(6250), 1, - anon_sym_QMARK_DOT, - ACTIONS(6666), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(2843), 1, - sym_arguments, - STATE(2866), 1, - sym_type_arguments, + STATE(4505), 1, + sym_formal_parameters, + STATE(6515), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3987), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125307] = 9, - ACTIONS(2581), 1, + [171629] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(4364), 1, + STATE(6775), 1, sym__call_signature, - STATE(4365), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6654), 5, + [171649] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5578), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9107), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171665] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8265), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125340] = 7, - ACTIONS(3737), 1, + [171677] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9109), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3817), 1, anon_sym_RBRACE, - ACTIONS(4243), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [171689] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + STATE(5553), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 7, + ACTIONS(9107), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [125369] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6668), 1, - anon_sym_LBRACE, - ACTIONS(6674), 1, - sym_html_character_reference, - ACTIONS(6677), 1, - anon_sym_LT_SLASH, - ACTIONS(6679), 1, - anon_sym_LT, - STATE(3070), 1, - sym_jsx_opening_element, - ACTIONS(6671), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3134), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [125402] = 11, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6403), 1, + [171705] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(4359), 1, - sym_type_annotation, - STATE(5067), 1, + STATE(5581), 1, sym__initializer, - STATE(5349), 1, - sym_type_parameters, - STATE(5406), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9107), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125439] = 7, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3829), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, + [171721] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + STATE(5582), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 7, + ACTIONS(9111), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + [171737] = 6, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [125468] = 12, - ACTIONS(5991), 1, - anon_sym_LT, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6640), 1, - anon_sym_GT, - ACTIONS(6642), 1, - anon_sym_DOT, - ACTIONS(6682), 1, - anon_sym_SLASH_GT, - STATE(3286), 1, - sym_type_arguments, - STATE(3287), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6360), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [125507] = 5, - ACTIONS(6311), 1, + [171757] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6684), 1, - anon_sym_DOT, - STATE(3241), 1, - sym_arguments, + STATE(4505), 1, + sym_formal_parameters, + STATE(6361), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4021), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125532] = 9, - ACTIONS(2581), 1, + [171777] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3229), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3682), 1, + STATE(6362), 1, sym__call_signature, - STATE(4038), 1, - sym_type_annotation, - STATE(5404), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6622), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125565] = 8, - ACTIONS(2581), 1, + [171797] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(3575), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5374), 1, + STATE(6506), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3959), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3743), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [125596] = 5, - ACTIONS(6317), 1, + [171817] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6560), 1, - anon_sym_DOT, - STATE(3300), 1, - sym_type_arguments, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6503), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125621] = 8, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(6246), 1, + [171837] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6287), 1, - anon_sym_DOT, - ACTIONS(6686), 1, - anon_sym_QMARK, - STATE(2856), 1, - sym_type_arguments, - STATE(5509), 1, - sym_type_annotation, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6364), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125652] = 3, - ACTIONS(4138), 1, - anon_sym_PIPE, + [171857] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6501), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4140), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125672] = 2, + [171877] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6365), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4116), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125690] = 3, - ACTIONS(1797), 1, - anon_sym_DOT, + [171897] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5722), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 10, + ACTIONS(9113), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + [171913] = 6, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [125710] = 4, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(6689), 1, - anon_sym_LBRACK, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6498), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4436), 9, - sym__automatic_semicolon, + [171933] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125732] = 2, + STATE(5499), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4120), 11, + ACTIONS(9115), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125750] = 2, + [171949] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6368), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [171969] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125768] = 3, - ACTIONS(4324), 1, - anon_sym_PIPE, + STATE(4505), 1, + sym_formal_parameters, + STATE(6493), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125788] = 4, - ACTIONS(4342), 1, - anon_sym_PIPE, - ACTIONS(6689), 1, - anon_sym_LBRACK, + [171989] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6369), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125810] = 2, + [172009] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6367), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4128), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [172029] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125828] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6693), 1, - anon_sym_PIPE, - ACTIONS(6695), 1, - anon_sym_extends, + STATE(4505), 1, + sym_formal_parameters, + STATE(6489), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [125852] = 2, + [172049] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6373), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3129), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125870] = 3, - ACTIONS(4366), 1, - anon_sym_PIPE, + [172069] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 10, + ACTIONS(8265), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [125890] = 3, - ACTIONS(4384), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4386), 10, - sym__automatic_semicolon, + [172081] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125910] = 4, - ACTIONS(6697), 1, - anon_sym_DOT, - ACTIONS(6699), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4380), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125932] = 3, - ACTIONS(1855), 1, - anon_sym_DOT, + STATE(5583), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 10, + ACTIONS(9111), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + [172097] = 6, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_extends, - [125952] = 3, - ACTIONS(4500), 1, - anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6374), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4502), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125972] = 3, - ACTIONS(4039), 1, - anon_sym_PIPE, + [172117] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6375), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125992] = 3, - ACTIONS(4328), 1, - anon_sym_PIPE, + [172137] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6376), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126012] = 3, - ACTIONS(4013), 1, - anon_sym_PIPE, + [172157] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6377), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126032] = 6, - ACTIONS(2581), 1, + [172177] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3575), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5374), 1, + STATE(6379), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [126058] = 3, - ACTIONS(4504), 1, - anon_sym_PIPE, + [172197] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6380), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4506), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126078] = 3, - ACTIONS(4390), 1, - anon_sym_PIPE, + [172217] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6381), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126098] = 3, - ACTIONS(4394), 1, - anon_sym_PIPE, + [172237] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6382), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126118] = 3, - ACTIONS(2333), 1, - anon_sym_PIPE, + [172257] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6383), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2331), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126138] = 11, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6701), 1, - sym_identifier, - ACTIONS(6703), 1, - anon_sym_type, - ACTIONS(6705), 1, - anon_sym_COMMA, - ACTIONS(6707), 1, - anon_sym_RBRACE, - ACTIONS(6709), 1, - anon_sym_typeof, - STATE(4858), 1, - sym_import_specifier, - STATE(5188), 1, - sym__import_identifier, + [172277] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6386), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5579), 2, - sym__module_export_name, - sym_string, - [126174] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6693), 1, - anon_sym_PIPE, - ACTIONS(6695), 1, - anon_sym_extends, + [172297] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6387), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [126198] = 3, - ACTIONS(4181), 1, - anon_sym_PIPE, + [172317] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6388), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126218] = 3, - ACTIONS(4185), 1, - anon_sym_PIPE, + [172337] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6480), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126238] = 3, - ACTIONS(4130), 1, - anon_sym_PIPE, + [172357] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6389), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126258] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6693), 1, - anon_sym_PIPE, - ACTIONS(6695), 1, - anon_sym_extends, + [172377] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6476), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [126282] = 3, - ACTIONS(4206), 1, - anon_sym_PIPE, + [172397] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6390), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126302] = 3, - ACTIONS(4212), 1, - anon_sym_PIPE, + [172417] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6473), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126322] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6693), 1, - anon_sym_PIPE, - ACTIONS(6695), 1, - anon_sym_extends, + [172437] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6391), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [126346] = 4, - ACTIONS(4134), 1, - anon_sym_PIPE, - ACTIONS(6691), 1, - anon_sym_AMP, + [172457] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6398), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126368] = 4, - ACTIONS(4398), 1, - anon_sym_PIPE, - ACTIONS(6691), 1, - anon_sym_AMP, + [172477] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6399), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126390] = 2, + [172497] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6400), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [172517] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126408] = 2, + STATE(4505), 1, + sym_formal_parameters, + STATE(6401), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3382), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [172537] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126426] = 3, - ACTIONS(4462), 1, - anon_sym_PIPE, + STATE(4505), 1, + sym_formal_parameters, + STATE(6402), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4464), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126446] = 2, + [172557] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6403), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5477), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + [172577] = 6, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [126464] = 2, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(5545), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3125), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126482] = 2, + [172597] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 11, + ACTIONS(9117), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [126500] = 6, - ACTIONS(6246), 1, + [172609] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6287), 1, - anon_sym_DOT, - ACTIONS(6711), 1, - anon_sym_is, - STATE(2856), 1, - sym_type_arguments, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [126526] = 2, + [172629] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4456), 11, + ACTIONS(9119), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126544] = 3, - ACTIONS(2337), 1, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + [172641] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6055), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2335), 10, + ACTIONS(9121), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126564] = 3, - ACTIONS(4402), 1, - anon_sym_PIPE, + [172657] = 3, + ACTIONS(5485), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(1841), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [126584] = 3, - ACTIONS(4406), 1, - anon_sym_PIPE, + [172671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 10, + ACTIONS(9123), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [126604] = 3, - ACTIONS(4476), 1, - anon_sym_PIPE, + [172683] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4601), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4478), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126624] = 3, - ACTIONS(4259), 1, - anon_sym_PIPE, + [172703] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6404), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4261), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126644] = 3, - ACTIONS(4263), 1, - anon_sym_PIPE, + [172723] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6405), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4265), 10, - sym__automatic_semicolon, + [172743] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126664] = 3, - ACTIONS(4271), 1, - anon_sym_PIPE, + STATE(5706), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 10, + ACTIONS(9125), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126684] = 3, - ACTIONS(2329), 1, - anon_sym_PIPE, + [172759] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6406), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2327), 10, - sym__automatic_semicolon, + [172779] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126704] = 3, - ACTIONS(4410), 1, - anon_sym_PIPE, + STATE(5708), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 10, + ACTIONS(9127), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126724] = 3, - ACTIONS(4025), 1, - anon_sym_PIPE, + [172795] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6922), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 10, - sym__automatic_semicolon, + [172815] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(5712), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [172835] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6412), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [172855] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126744] = 3, - ACTIONS(4484), 1, - anon_sym_PIPE, + STATE(5713), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4486), 10, + ACTIONS(9113), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126764] = 3, - ACTIONS(2321), 1, - anon_sym_PIPE, + [172871] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5714), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2319), 10, + ACTIONS(9113), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126784] = 4, - ACTIONS(6317), 1, + [172887] = 6, + ACTIONS(2525), 1, anon_sym_LT, - STATE(3301), 1, - sym_type_arguments, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6572), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126806] = 4, - ACTIONS(6313), 1, - anon_sym_DOT, - ACTIONS(6315), 1, - anon_sym_QMARK_DOT, + [172907] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6416), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126828] = 2, + [172927] = 3, + ACTIONS(4745), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4482), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4747), 4, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126846] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6693), 1, - anon_sym_PIPE, - ACTIONS(6695), 1, - anon_sym_extends, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [172941] = 3, + ACTIONS(4679), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 8, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4681), 4, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [126870] = 2, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [172955] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6574), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4490), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126888] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6693), 1, - anon_sym_PIPE, - ACTIONS(6695), 1, - anon_sym_extends, + [172975] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6418), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4422), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [126912] = 5, - ACTIONS(4342), 1, - anon_sym_PIPE, - ACTIONS(6689), 1, - anon_sym_LBRACK, + [172995] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6419), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(4426), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126936] = 3, - ACTIONS(4342), 1, - anon_sym_PIPE, + [173015] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6576), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 10, - sym__automatic_semicolon, + [173035] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126956] = 3, - ACTIONS(4492), 1, - anon_sym_PIPE, + STATE(5718), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4494), 10, + ACTIONS(9129), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126976] = 4, - ACTIONS(4428), 1, - anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_extends, + [173051] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6420), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4430), 9, - sym__automatic_semicolon, + [173071] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE_RBRACE, - [126998] = 3, - ACTIONS(4104), 1, - anon_sym_PIPE, + STATE(5719), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 10, + ACTIONS(9113), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127018] = 2, + [173087] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5720), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3133), 11, + ACTIONS(9113), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127036] = 3, - ACTIONS(4301), 1, - anon_sym_PIPE, + [173103] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5592), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4303), 10, + ACTIONS(9107), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127056] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6693), 1, - anon_sym_PIPE, - ACTIONS(6695), 1, - anon_sym_extends, + [173119] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6589), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4311), 8, - sym__automatic_semicolon, + [173139] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [127080] = 3, - ACTIONS(4496), 1, - anon_sym_PIPE, + STATE(5721), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4498), 10, + ACTIONS(9113), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127100] = 3, - ACTIONS(2325), 1, - anon_sym_PIPE, + [173155] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6425), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2323), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127120] = 8, - ACTIONS(6403), 1, + [173175] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6584), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [173195] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6717), 1, - anon_sym_BANG, - STATE(4267), 1, - sym_type_annotation, - STATE(4918), 1, + STATE(5732), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6719), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6715), 3, + ACTIONS(9129), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127149] = 10, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(6574), 1, - anon_sym_GT, - ACTIONS(6576), 1, - anon_sym_SLASH_GT, - STATE(3270), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [173211] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6586), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [127182] = 10, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6273), 1, - anon_sym_SLASH_GT, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(6574), 1, - anon_sym_GT, - STATE(3430), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [173231] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6426), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [127215] = 10, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(6574), 1, - anon_sym_GT, - ACTIONS(6596), 1, - anon_sym_SLASH_GT, - STATE(3357), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [173251] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6427), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [127248] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6701), 1, - sym_identifier, - ACTIONS(6703), 1, - anon_sym_type, - ACTIONS(6709), 1, - anon_sym_typeof, - ACTIONS(6721), 1, - anon_sym_RBRACE, - STATE(5185), 1, - sym_import_specifier, - STATE(5188), 1, - sym__import_identifier, + [173271] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6428), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5579), 2, - sym__module_export_name, - sym_string, - [127281] = 11, - ACTIONS(2581), 1, + [173291] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5597), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9107), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173307] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6723), 1, - sym_identifier, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_extends, - ACTIONS(6729), 1, - anon_sym_implements, - STATE(2338), 1, - sym_class_body, - STATE(3525), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6429), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5396), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127316] = 11, - ACTIONS(2581), 1, + [173327] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_extends, - ACTIONS(6729), 1, - anon_sym_implements, - ACTIONS(6731), 1, - sym_identifier, - STATE(2128), 1, - sym_class_body, - STATE(3512), 1, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(4878), 1, + sym__call_signature, + STATE(6292), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5205), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127351] = 2, + [173347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1650), 10, + ACTIONS(8188), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_is, - [127368] = 11, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_extends, - ACTIONS(6729), 1, - anon_sym_implements, - ACTIONS(6733), 1, - sym_identifier, - STATE(2338), 1, - sym_class_body, - STATE(3525), 1, - sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5396), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [127403] = 3, - ACTIONS(6735), 1, - anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [173359] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5725), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 9, + ACTIONS(9129), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127422] = 11, - ACTIONS(2581), 1, + [173375] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_extends, - ACTIONS(6729), 1, - anon_sym_implements, - ACTIONS(6737), 1, - sym_identifier, - STATE(2128), 1, - sym_class_body, - STATE(3512), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6410), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5205), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127457] = 3, - ACTIONS(6562), 1, - anon_sym_is, + [173395] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5726), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 9, + ACTIONS(9113), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127476] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6693), 1, - anon_sym_PIPE, - ACTIONS(6695), 1, - anon_sym_extends, + [173411] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6739), 7, + ACTIONS(9131), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127499] = 3, - ACTIONS(6741), 1, - anon_sym_is, + [173423] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6431), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127518] = 5, - ACTIONS(5987), 1, - anon_sym_LPAREN, - ACTIONS(6305), 1, - anon_sym_DOT, - STATE(2847), 1, - sym_arguments, + [173443] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5727), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4021), 7, + ACTIONS(9113), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [127541] = 4, - ACTIONS(6745), 1, - anon_sym_COLON, + anon_sym_SEMI, + [173459] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5810), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3730), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6743), 6, + ACTIONS(9113), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127562] = 4, - ACTIONS(4243), 1, + [173475] = 4, + ACTIONS(7336), 1, anon_sym_EQ, + STATE(5735), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3959), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3743), 7, + ACTIONS(9129), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + [173491] = 6, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127583] = 11, - ACTIONS(2581), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6437), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [173511] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_extends, - ACTIONS(6729), 1, - anon_sym_implements, - ACTIONS(6747), 1, - sym_identifier, - STATE(2128), 1, - sym_class_body, - STATE(3512), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5205), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + STATE(6985), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127618] = 9, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6701), 1, - sym_identifier, - ACTIONS(6749), 1, - anon_sym_type, - ACTIONS(6751), 1, - anon_sym_as, - STATE(5330), 1, - sym__import_identifier, + [173531] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6595), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6399), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5830), 2, - sym__module_export_name, - sym_string, - [127649] = 4, - ACTIONS(6745), 1, - anon_sym_COLON, + [173551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3729), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6753), 6, + ACTIONS(8188), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127670] = 11, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_extends, - ACTIONS(6729), 1, - anon_sym_implements, - ACTIONS(6755), 1, + [173563] = 3, + ACTIONS(4661), 1, sym_identifier, - STATE(2338), 1, - sym_class_body, - STATE(3525), 1, - sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5396), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127705] = 11, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6725), 1, + ACTIONS(4663), 4, anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_extends, - ACTIONS(6729), 1, - anon_sym_implements, - ACTIONS(6757), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [173577] = 3, + ACTIONS(4665), 1, sym_identifier, - STATE(2128), 1, - sym_class_body, - STATE(3512), 1, - sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5205), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127740] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4519), 1, - anon_sym_LPAREN, + ACTIONS(4667), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [173591] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5736), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2222), 2, - sym_template_string, - sym_arguments, - ACTIONS(4478), 6, + ACTIONS(9113), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127763] = 10, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6701), 1, - sym_identifier, - ACTIONS(6703), 1, - anon_sym_type, - ACTIONS(6709), 1, - anon_sym_typeof, - ACTIONS(6759), 1, - anon_sym_RBRACE, - STATE(5185), 1, - sym_import_specifier, - STATE(5188), 1, - sym__import_identifier, + anon_sym_SEMI, + [173607] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6597), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5579), 2, - sym__module_export_name, - sym_string, - [127796] = 2, + [173627] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 10, + ACTIONS(9133), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_is, - [127813] = 2, + anon_sym_PIPE_RBRACE, + [173639] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6599), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4460), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127830] = 11, - ACTIONS(2581), 1, + [173659] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6727), 1, - anon_sym_extends, - ACTIONS(6729), 1, - anon_sym_implements, - ACTIONS(6761), 1, - sym_identifier, - ACTIONS(6763), 1, - anon_sym_LBRACE, - STATE(1648), 1, - sym_class_body, - STATE(3515), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6491), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5280), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127865] = 2, + [173679] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5737), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4468), 10, + ACTIONS(9113), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127882] = 10, - ACTIONS(6252), 1, + [173695] = 3, + ACTIONS(4775), 1, sym_identifier, - ACTIONS(6256), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4777), 4, anon_sym_LBRACE, - ACTIONS(6265), 1, + anon_sym_GT, sym_jsx_identifier, - ACTIONS(6269), 1, anon_sym_SLASH_GT, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(6574), 1, + [173709] = 3, + ACTIONS(4761), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4763), 4, + anon_sym_LBRACE, anon_sym_GT, - STATE(3373), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [173723] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6439), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [127915] = 3, - ACTIONS(6562), 1, - anon_sym_is, + [173743] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6440), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 9, + [173763] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5740), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9129), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127934] = 11, - ACTIONS(2581), 1, + [173779] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6727), 1, - anon_sym_extends, - ACTIONS(6729), 1, - anon_sym_implements, - ACTIONS(6763), 1, - anon_sym_LBRACE, - ACTIONS(6765), 1, - sym_identifier, - STATE(1683), 1, - sym_class_body, - STATE(3617), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6441), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5292), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127969] = 9, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6767), 1, - sym_identifier, - ACTIONS(6771), 1, + [173799] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8618), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6773), 1, anon_sym_RBRACE, - STATE(5020), 1, - sym_export_specifier, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173811] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6856), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6769), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5022), 2, - sym__module_export_name, - sym_string, - [128000] = 11, - ACTIONS(2581), 1, + [173831] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_extends, - ACTIONS(6729), 1, - anon_sym_implements, - ACTIONS(6775), 1, - sym_identifier, - STATE(2338), 1, - sym_class_body, - STATE(3525), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6438), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5396), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128035] = 11, - ACTIONS(2581), 1, + [173851] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8190), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173863] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6727), 1, - anon_sym_extends, - ACTIONS(6729), 1, - anon_sym_implements, - ACTIONS(6763), 1, - anon_sym_LBRACE, - ACTIONS(6777), 1, - sym_identifier, - STATE(2499), 1, - sym_class_body, - STATE(3703), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6442), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5265), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128070] = 8, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6717), 1, - anon_sym_BANG, - ACTIONS(6779), 1, + [173883] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - STATE(4141), 1, + STATE(5742), 1, sym__initializer, - STATE(4267), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6719), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6715), 3, + ACTIONS(9113), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128099] = 6, - ACTIONS(6246), 1, + [173899] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(9137), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9135), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [173917] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6287), 1, - anon_sym_DOT, - ACTIONS(6781), 1, - anon_sym_is, - STATE(2856), 1, - sym_type_arguments, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6443), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128124] = 7, - ACTIONS(6256), 1, + [173937] = 6, + ACTIONS(8083), 1, anon_sym_LBRACE, - ACTIONS(6783), 1, - anon_sym_DQUOTE, - ACTIONS(6785), 1, - anon_sym_SQUOTE, - ACTIONS(6787), 1, + ACTIONS(9139), 1, + anon_sym_SEMI, + ACTIONS(9141), 1, + sym__automatic_semicolon, + ACTIONS(9143), 1, + sym__function_signature_automatic_semicolon, + STATE(743), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [173957] = 6, + ACTIONS(2525), 1, anon_sym_LT, - STATE(2997), 1, - sym_jsx_opening_element, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6854), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4239), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [128150] = 2, + [173977] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4603), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 9, + [173997] = 3, + ACTIONS(5483), 1, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1821), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128166] = 9, - ACTIONS(6252), 1, + anon_sym_PIPE_RBRACE, + [174011] = 5, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(9145), 1, sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6789), 1, - anon_sym_GT, - ACTIONS(6791), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128196] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6793), 1, - anon_sym_GT, - ACTIONS(6795), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + STATE(6808), 2, + sym__module_export_name, + sym_string, + [174029] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5743), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128226] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(6246), 1, + ACTIONS(9113), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174045] = 6, + ACTIONS(2525), 1, anon_sym_LT, - STATE(2133), 1, - sym_template_string, - STATE(2416), 1, - sym_arguments, - STATE(3236), 1, - sym_type_arguments, - STATE(5183), 1, - sym_optional_chain, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6987), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128258] = 8, - ACTIONS(6403), 1, + [174065] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6797), 1, - anon_sym_BANG, - ACTIONS(6799), 1, - anon_sym_QMARK, - STATE(4416), 1, - sym_type_annotation, - STATE(5175), 1, + STATE(5744), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(9113), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128286] = 2, + [174081] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 9, + ACTIONS(9147), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128302] = 2, + anon_sym_PIPE_RBRACE, + [174093] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6446), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128318] = 8, - ACTIONS(6403), 1, + [174113] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6801), 1, - anon_sym_BANG, - ACTIONS(6803), 1, - anon_sym_QMARK, - STATE(4417), 1, - sym_type_annotation, - STATE(5181), 1, + STATE(5748), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(9129), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128346] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(5991), 1, + [174129] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6805), 1, - anon_sym_DOT, - STATE(2133), 1, - sym_template_string, - STATE(2428), 1, - sym_arguments, - STATE(4470), 1, - sym_type_arguments, - STATE(5183), 1, - sym_optional_chain, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6447), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128378] = 5, - ACTIONS(6807), 1, - anon_sym_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE, - ACTIONS(6811), 1, - anon_sym_extends, + [174149] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5767), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 6, + ACTIONS(9129), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [128400] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(6246), 1, + [174165] = 6, + ACTIONS(2525), 1, anon_sym_LT, - STATE(1757), 1, - sym_template_string, - STATE(2493), 1, - sym_arguments, - STATE(2988), 1, - sym_type_arguments, - STATE(5393), 1, - sym_optional_chain, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6448), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128432] = 8, - ACTIONS(6403), 1, + [174185] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6815), 1, - anon_sym_BANG, - ACTIONS(6817), 1, - anon_sym_QMARK, - STATE(4278), 1, - sym_type_annotation, - STATE(4936), 1, + STATE(5756), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6813), 3, + ACTIONS(9129), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128460] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5991), 1, + [174201] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6819), 1, - anon_sym_DOT, - STATE(1757), 1, - sym_template_string, - STATE(2488), 1, - sym_arguments, - STATE(4436), 1, - sym_type_arguments, - STATE(5393), 1, - sym_optional_chain, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4942), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128492] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(6289), 1, - anon_sym_LT, - STATE(1757), 1, - sym_template_string, - STATE(1967), 1, - sym_arguments, - STATE(3052), 1, - sym_type_arguments, - STATE(5393), 1, - sym_optional_chain, + [174221] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5759), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128524] = 2, + ACTIONS(9129), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174237] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5760), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4261), 9, + ACTIONS(9113), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128540] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(5991), 1, - anon_sym_LT, - ACTIONS(6821), 1, - anon_sym_DOT, - STATE(1757), 1, - sym_template_string, - STATE(1966), 1, - sym_arguments, - STATE(4436), 1, - sym_type_arguments, - STATE(5393), 1, - sym_optional_chain, + [174253] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5761), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128572] = 7, - ACTIONS(241), 1, + ACTIONS(9113), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [174269] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6606), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, + [174289] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_COLON, + STATE(4505), 1, + sym_formal_parameters, + STATE(6452), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [174309] = 6, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_QMARK, - [128598] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6453), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4265), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128614] = 2, + [174329] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6990), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128630] = 9, - ACTIONS(6252), 1, + [174349] = 3, + ACTIONS(4749), 1, sym_identifier, - ACTIONS(6256), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4751), 4, anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6823), 1, anon_sym_GT, - ACTIONS(6825), 1, + sym_jsx_identifier, anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [174363] = 3, + ACTIONS(4753), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128660] = 2, + ACTIONS(4755), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [174377] = 3, + ACTIONS(4749), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2327), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4751), 4, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128676] = 2, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [174391] = 3, + ACTIONS(4783), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4785), 4, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128692] = 9, - ACTIONS(6252), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [174405] = 3, + ACTIONS(4787), 1, sym_identifier, - ACTIONS(6256), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4789), 4, anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6827), 1, anon_sym_GT, - ACTIONS(6829), 1, + sym_jsx_identifier, anon_sym_SLASH_GT, - STATE(3304), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [174419] = 3, + ACTIONS(4749), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128722] = 8, - ACTIONS(6403), 1, + ACTIONS(4751), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [174433] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, + STATE(5765), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9129), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174449] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6998), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [174469] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6456), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [174489] = 4, + ACTIONS(8415), 1, anon_sym_COLON, - ACTIONS(6831), 1, - anon_sym_BANG, - ACTIONS(6833), 1, - anon_sym_QMARK, - STATE(3916), 1, + ACTIONS(9149), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(6229), 3, sym_type_annotation, - STATE(4944), 1, + sym_asserts_annotation, + sym_type_predicate_annotation, + [174505] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5768), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(9129), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128750] = 10, - ACTIONS(2581), 1, + [174521] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6763), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2501), 1, - sym_class_body, - STATE(3589), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6457), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5192), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128782] = 2, + [174541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 9, + ACTIONS(9152), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128798] = 7, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [174553] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4305), 1, - sym_type_annotation, - STATE(4985), 1, + STATE(5769), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6435), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6433), 3, + ACTIONS(9113), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128824] = 2, + [174569] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7001), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6839), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [128840] = 9, - ACTIONS(6252), 1, + [174589] = 3, + ACTIONS(4883), 1, sym_identifier, - ACTIONS(6256), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4885), 4, anon_sym_LBRACE, - ACTIONS(6265), 1, + anon_sym_GT, sym_jsx_identifier, - ACTIONS(6841), 1, + anon_sym_SLASH_GT, + [174603] = 3, + ACTIONS(4890), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4892), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(6843), 1, + sym_jsx_identifier, anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [174617] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6458), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128870] = 2, + [174637] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5770), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 9, + ACTIONS(9113), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128886] = 3, - ACTIONS(6845), 1, - anon_sym_LBRACK, + [174653] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6459), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128904] = 2, + [174673] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6975), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4303), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [174693] = 6, + ACTIONS(222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1540), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8251), 1, anon_sym_extends, - [128920] = 7, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(5991), 1, - anon_sym_LT, - ACTIONS(6847), 1, - anon_sym_DOT, - STATE(1194), 1, - sym_arguments, - STATE(5478), 1, - sym_type_arguments, + STATE(839), 1, + sym_object_type, + STATE(5705), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3490), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [128946] = 5, - ACTIONS(6807), 1, - anon_sym_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE, - ACTIONS(6811), 1, - anon_sym_extends, + [174713] = 4, + ACTIONS(8415), 1, + anon_sym_COLON, + ACTIONS(9154), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4311), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [128968] = 2, + STATE(6134), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [174729] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5771), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 9, + ACTIONS(9113), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128984] = 9, - ACTIONS(6252), 1, + [174745] = 3, + ACTIONS(9157), 1, sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6849), 1, - anon_sym_GT, - ACTIONS(6851), 1, - anon_sym_SLASH_GT, - STATE(3312), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129014] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, + ACTIONS(9159), 4, anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6853), 1, anon_sym_GT, - ACTIONS(6855), 1, + sym_jsx_identifier, anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129044] = 8, - ACTIONS(6403), 1, + [174759] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6857), 1, - anon_sym_BANG, - ACTIONS(6859), 1, - anon_sym_QMARK, - STATE(4323), 1, - sym_type_annotation, - STATE(5015), 1, + STATE(5772), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 3, + ACTIONS(9113), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129072] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6861), 1, - anon_sym_GT, - ACTIONS(6863), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [174775] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6045), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129102] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5991), 1, + ACTIONS(9121), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174791] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6865), 1, - anon_sym_DOT, - STATE(1757), 1, - sym_template_string, - STATE(1815), 1, - sym_arguments, - STATE(4436), 1, - sym_type_arguments, - STATE(5393), 1, - sym_optional_chain, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6465), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129134] = 8, - ACTIONS(6403), 1, + [174811] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6867), 1, - anon_sym_BANG, - ACTIONS(6869), 1, - anon_sym_QMARK, - STATE(4325), 1, - sym_type_annotation, - STATE(5024), 1, + STATE(5776), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 3, + ACTIONS(9129), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129162] = 2, + [174827] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(9161), 5, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_LPAREN, anon_sym_extends, - [129178] = 8, - ACTIONS(6403), 1, + anon_sym_implements, + [174839] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6871), 1, - anon_sym_BANG, - ACTIONS(6873), 1, - anon_sym_QMARK, - STATE(4326), 1, - sym_type_annotation, - STATE(5028), 1, + STATE(6046), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129206] = 10, - ACTIONS(2581), 1, + [174855] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2333), 1, - sym_class_body, - STATE(3660), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6505), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5229), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [129238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6875), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [129254] = 8, - ACTIONS(6403), 1, + [174875] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6877), 1, - anon_sym_BANG, - ACTIONS(6879), 1, - anon_sym_QMARK, - STATE(3924), 1, - sym_type_annotation, - STATE(4592), 1, + STATE(5777), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(9113), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129282] = 8, - ACTIONS(6403), 1, + [174891] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6511), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [174911] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6881), 1, - anon_sym_BANG, - ACTIONS(6883), 1, - anon_sym_QMARK, - STATE(3926), 1, - sym_type_annotation, - STATE(4627), 1, + STATE(5778), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(9113), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129310] = 10, - ACTIONS(2581), 1, + [174927] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2263), 1, - sym_class_body, - STATE(3710), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6512), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5209), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129342] = 2, + [174947] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6430), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + [174967] = 5, + ACTIONS(7642), 1, anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7646), 1, anon_sym_extends, - [129358] = 2, + ACTIONS(9137), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 9, + ACTIONS(9163), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129374] = 2, + [174985] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5784), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4464), 9, + ACTIONS(9129), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129390] = 8, - ACTIONS(6403), 1, + [175001] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6885), 1, - anon_sym_BANG, - ACTIONS(6887), 1, - anon_sym_QMARK, - STATE(3981), 1, - sym_type_annotation, - STATE(5131), 1, + STATE(5787), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(9129), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129418] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(5991), 1, - anon_sym_LT, - ACTIONS(6889), 1, - anon_sym_DOT, - STATE(2021), 1, - sym_arguments, - STATE(2133), 1, - sym_template_string, - STATE(4470), 1, - sym_type_arguments, - STATE(5183), 1, - sym_optional_chain, + [175017] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5788), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129450] = 9, - ACTIONS(6252), 1, + ACTIONS(9113), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175033] = 3, + ACTIONS(9165), 1, sym_identifier, - ACTIONS(6256), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9167), 4, anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6789), 1, anon_sym_GT, - ACTIONS(6891), 1, + sym_jsx_identifier, anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [175047] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5789), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129480] = 8, - ACTIONS(6403), 1, + ACTIONS(9113), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175063] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6610), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175083] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6893), 1, - anon_sym_BANG, - ACTIONS(6895), 1, - anon_sym_QMARK, - STATE(3984), 1, - sym_type_annotation, - STATE(4574), 1, + STATE(5794), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(9129), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129508] = 9, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(5991), 1, - anon_sym_LT, - STATE(4470), 1, - sym_type_arguments, - STATE(5183), 1, - sym_optional_chain, + [175099] = 3, + ACTIONS(4935), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2133), 2, - sym_template_string, - sym_arguments, - [129538] = 2, + ACTIONS(4937), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [175113] = 3, + ACTIONS(4931), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1917), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4933), 4, anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [175127] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5799), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9129), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129554] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4243), 1, + [175143] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(5200), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + STATE(5803), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [129580] = 7, - ACTIONS(6403), 1, + ACTIONS(9129), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175159] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4084), 1, - sym_type_annotation, - STATE(5058), 1, + STATE(5806), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6899), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6897), 3, + ACTIONS(9129), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129606] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6827), 1, - anon_sym_GT, - ACTIONS(6901), 1, - anon_sym_SLASH_GT, - STATE(3349), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [175175] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6617), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129636] = 2, + [175195] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5807), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1821), 9, + ACTIONS(9113), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129652] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6793), 1, - anon_sym_GT, - ACTIONS(6903), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [175211] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6618), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129682] = 2, + [175231] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2331), 9, + ACTIONS(2807), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129698] = 8, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [175243] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6905), 1, - anon_sym_BANG, - ACTIONS(6907), 1, - anon_sym_QMARK, - STATE(4382), 1, - sym_type_annotation, - STATE(5107), 1, + STATE(5815), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(9129), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129726] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4243), 1, + [175259] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + STATE(5741), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [129752] = 8, - ACTIONS(6403), 1, + ACTIONS(9113), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175275] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6909), 1, - anon_sym_BANG, - ACTIONS(6911), 1, - anon_sym_QMARK, - STATE(4112), 1, - sym_type_annotation, - STATE(5177), 1, + STATE(5818), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 3, + ACTIONS(9129), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129780] = 5, - ACTIONS(6807), 1, - anon_sym_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE, - ACTIONS(6811), 1, - anon_sym_extends, + [175291] = 6, + ACTIONS(1706), 1, + anon_sym_LBRACE, + ACTIONS(9139), 1, + anon_sym_SEMI, + ACTIONS(9141), 1, + sym__automatic_semicolon, + ACTIONS(9143), 1, + sym__function_signature_automatic_semicolon, + STATE(246), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [129802] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5991), 1, + [175311] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6913), 1, - anon_sym_DOT, - STATE(1603), 1, - sym_arguments, - STATE(1757), 1, - sym_template_string, - STATE(4436), 1, - sym_type_arguments, - STATE(5393), 1, - sym_optional_chain, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6392), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129834] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(725), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + [175331] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4943), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [129860] = 4, - ACTIONS(6915), 1, - anon_sym_COLON, + [175351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4379), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6743), 5, + ACTIONS(2775), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [129880] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6917), 1, - anon_sym_BANG, - ACTIONS(6919), 1, - anon_sym_QMARK, - STATE(4128), 1, - sym_type_annotation, - STATE(4609), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [175363] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6587), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 3, + ACTIONS(2719), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [129908] = 10, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2230), 1, - sym_class_body, - STATE(3505), 1, - sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5359), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + anon_sym_PIPE_RBRACE, + [175395] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129940] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6921), 1, - anon_sym_BANG, - ACTIONS(6923), 1, - anon_sym_QMARK, - STATE(4133), 1, - sym_type_annotation, - STATE(4626), 1, - sym__initializer, + ACTIONS(2703), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175407] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 3, + ACTIONS(2667), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [129968] = 8, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [175419] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6925), 1, - anon_sym_BANG, - ACTIONS(6927), 1, - anon_sym_QMARK, - STATE(4134), 1, - sym_type_annotation, - STATE(4629), 1, + STATE(5821), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 3, + ACTIONS(9113), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129996] = 2, + [175435] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6624), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175455] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7009), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175475] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 9, + ACTIONS(9169), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130012] = 8, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [175487] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6929), 1, - anon_sym_BANG, - ACTIONS(6931), 1, - anon_sym_QMARK, - STATE(4137), 1, - sym_type_annotation, - STATE(4640), 1, + STATE(5822), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 3, + ACTIONS(9113), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130040] = 2, + [175503] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 9, + ACTIONS(9171), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130056] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(6246), 1, + anon_sym_PIPE_RBRACE, + [175515] = 6, + ACTIONS(2525), 1, anon_sym_LT, - STATE(1757), 1, - sym_template_string, - STATE(1817), 1, - sym_arguments, - STATE(2988), 1, - sym_type_arguments, - STATE(5393), 1, - sym_optional_chain, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7011), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130088] = 2, + [175535] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 9, + ACTIONS(8261), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130104] = 3, - ACTIONS(6807), 1, - anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [175547] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5827), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 8, + ACTIONS(9113), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [130122] = 2, + [175563] = 5, + ACTIONS(9173), 1, + anon_sym_BQUOTE, + ACTIONS(9175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9177), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4931), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [175581] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 9, + ACTIONS(9179), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130138] = 5, - ACTIONS(6305), 1, - anon_sym_DOT, - ACTIONS(6666), 1, - anon_sym_LPAREN, - STATE(2847), 1, - sym_arguments, + anon_sym_PIPE_RBRACE, + [175593] = 3, + ACTIONS(5479), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4021), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130160] = 6, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(6933), 1, + ACTIONS(1915), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175607] = 4, + ACTIONS(7336), 1, anon_sym_EQ, + STATE(5829), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6739), 5, - anon_sym_LBRACE, + ACTIONS(9113), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [130184] = 9, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + anon_sym_SEMI, + [175623] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5991), 1, + STATE(4505), 1, + sym_formal_parameters, + STATE(6628), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175643] = 6, + ACTIONS(2525), 1, anon_sym_LT, - STATE(4436), 1, - sym_type_arguments, - STATE(5393), 1, - sym_optional_chain, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6630), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1757), 2, - sym_template_string, - sym_arguments, - [130214] = 2, + [175663] = 5, + ACTIONS(9175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9181), 1, + anon_sym_BQUOTE, + ACTIONS(9183), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(5256), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [175681] = 6, + ACTIONS(8083), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(9185), 1, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130230] = 2, + ACTIONS(9187), 1, + sym__automatic_semicolon, + ACTIONS(9189), 1, + sym__function_signature_automatic_semicolon, + STATE(4763), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130246] = 5, - ACTIONS(6807), 1, - anon_sym_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE, - ACTIONS(6811), 1, - anon_sym_extends, + [175701] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(4166), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4422), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [130268] = 4, - ACTIONS(6845), 1, - anon_sym_LBRACK, + [175721] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6631), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4426), 5, + [175741] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8263), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [130288] = 8, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [175753] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6935), 1, - anon_sym_BANG, - ACTIONS(6937), 1, - anon_sym_QMARK, - STATE(4243), 1, - sym_type_annotation, - STATE(4870), 1, + STATE(5833), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6813), 3, + ACTIONS(9129), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130316] = 8, - ACTIONS(6403), 1, + [175769] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6632), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175789] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7013), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175809] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6939), 1, - anon_sym_BANG, - ACTIONS(6941), 1, - anon_sym_QMARK, - STATE(3958), 1, - sym_type_annotation, - STATE(4717), 1, + STATE(5834), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(9113), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130344] = 7, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6783), 1, - anon_sym_DQUOTE, - ACTIONS(6785), 1, - anon_sym_SQUOTE, - ACTIONS(6787), 1, + [175825] = 6, + ACTIONS(2525), 1, anon_sym_LT, - STATE(2997), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4238), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [130370] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6767), 1, - sym_identifier, - ACTIONS(6943), 1, - anon_sym_RBRACE, - STATE(5415), 1, - sym_export_specifier, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6633), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6769), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5022), 2, - sym__module_export_name, - sym_string, - [130398] = 2, + [175845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2323), 9, + ACTIONS(9191), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130414] = 3, - ACTIONS(6945), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [175857] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4430), 8, + ACTIONS(8263), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [130432] = 8, - ACTIONS(6947), 1, + anon_sym_PIPE_RBRACE, + [175869] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(4895), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175889] = 3, + ACTIONS(9193), 1, sym_identifier, - ACTIONS(6950), 1, - anon_sym_LBRACE, - ACTIONS(6955), 1, - sym_jsx_identifier, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6953), 2, + ACTIONS(9195), 4, + anon_sym_LBRACE, anon_sym_GT, + sym_jsx_identifier, anon_sym_SLASH_GT, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130460] = 3, - ACTIONS(6845), 1, - anon_sym_LBRACK, + [175903] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6145), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4436), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130478] = 9, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6701), 1, - sym_identifier, - ACTIONS(6703), 1, - anon_sym_type, - ACTIONS(6709), 1, - anon_sym_typeof, - STATE(5185), 1, - sym_import_specifier, - STATE(5188), 1, - sym__import_identifier, + [175923] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5579), 2, - sym__module_export_name, - sym_string, - [130508] = 10, - ACTIONS(2581), 1, + ACTIONS(8261), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175935] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2267), 1, - sym_class_body, - STATE(3523), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6147), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5476), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130540] = 9, - ACTIONS(6252), 1, + [175955] = 5, + ACTIONS(9197), 1, sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6789), 1, - anon_sym_GT, - ACTIONS(6958), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + ACTIONS(9199), 1, + anon_sym_LPAREN, + STATE(2559), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130570] = 10, - ACTIONS(2581), 1, + STATE(3085), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [175973] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6960), 1, - anon_sym_LBRACE, - STATE(233), 1, - sym_class_body, - STATE(3698), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6152), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5387), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [130602] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6962), 9, + [175993] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [130618] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6574), 1, - anon_sym_GT, - ACTIONS(6576), 1, - anon_sym_SLASH_GT, - STATE(3289), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + STATE(6047), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130648] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6793), 1, - anon_sym_GT, - ACTIONS(6964), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + ACTIONS(9121), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176009] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5836), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130678] = 7, - ACTIONS(6403), 1, + ACTIONS(9113), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176025] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4163), 1, - sym_type_annotation, - STATE(4725), 1, + STATE(5700), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6461), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6459), 3, + ACTIONS(9201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130704] = 10, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, + [176041] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7646), 1, anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2206), 1, - sym_class_body, - STATE(3549), 1, - sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5413), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [130736] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6574), 1, - anon_sym_GT, - ACTIONS(6596), 1, - anon_sym_SLASH_GT, - STATE(3432), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + ACTIONS(9137), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130766] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6823), 1, - anon_sym_GT, - ACTIONS(6966), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + ACTIONS(9203), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [176059] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130796] = 8, - ACTIONS(6403), 1, + ACTIONS(5851), 5, anon_sym_EQ, - ACTIONS(6411), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6968), 1, - anon_sym_BANG, - ACTIONS(6970), 1, anon_sym_QMARK, - STATE(4413), 1, - sym_type_annotation, - STATE(5167), 1, + [176071] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5699), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(9201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130824] = 2, + [176087] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6634), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130840] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6269), 1, - anon_sym_SLASH_GT, - ACTIONS(6574), 1, - anon_sym_GT, - STATE(3380), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [176107] = 4, + ACTIONS(8415), 1, + anon_sym_COLON, + ACTIONS(9205), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130870] = 8, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6767), 1, - sym_identifier, - ACTIONS(6972), 1, - anon_sym_RBRACE, - STATE(5415), 1, - sym_export_specifier, + STATE(6134), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [176123] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6635), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6769), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5022), 2, - sym__module_export_name, - sym_string, - [130898] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6827), 1, - anon_sym_GT, - ACTIONS(6974), 1, - anon_sym_SLASH_GT, - STATE(3252), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [176143] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5837), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130928] = 10, - ACTIONS(2581), 1, + ACTIONS(9113), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176159] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6976), 1, - anon_sym_LBRACE, - STATE(3621), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6636), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(3943), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5316), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130960] = 2, + [176179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 9, + ACTIONS(1764), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130976] = 8, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [176191] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6978), 1, - anon_sym_BANG, - ACTIONS(6980), 1, - anon_sym_QMARK, - STATE(4148), 1, - sym_type_annotation, - STATE(4678), 1, + STATE(5839), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 3, + ACTIONS(9113), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176207] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8295), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176219] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1783), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131004] = 7, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [176231] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4080), 1, - sym_type_annotation, - STATE(5117), 1, + STATE(5698), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6445), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6443), 3, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131030] = 10, - ACTIONS(2581), 1, + [176247] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6763), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(1687), 1, - sym_class_body, - STATE(3624), 1, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(4617), 1, + sym__call_signature, + STATE(6292), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5339), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131062] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6841), 1, - anon_sym_GT, - ACTIONS(6982), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [176267] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131092] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6273), 1, - anon_sym_SLASH_GT, - ACTIONS(6574), 1, - anon_sym_GT, - STATE(3435), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + ACTIONS(8297), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176279] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131122] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6984), 1, - anon_sym_BANG, - ACTIONS(6986), 1, - anon_sym_QMARK, - STATE(4335), 1, - sym_type_annotation, - STATE(5043), 1, - sym__initializer, + ACTIONS(8295), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176291] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(9210), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131150] = 8, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [176303] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6988), 1, - anon_sym_BANG, - ACTIONS(6990), 1, - anon_sym_QMARK, - STATE(4397), 1, - sym_type_annotation, - STATE(5122), 1, + STATE(5695), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131178] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6992), 1, - anon_sym_BANG, - ACTIONS(6994), 1, - anon_sym_QMARK, - STATE(4415), 1, - sym_type_annotation, - STATE(5174), 1, - sym__initializer, + [176319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(8297), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131206] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6823), 1, - anon_sym_GT, - ACTIONS(6996), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + anon_sym_PIPE_RBRACE, + [176331] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131236] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6998), 1, - anon_sym_BANG, - ACTIONS(7000), 1, - anon_sym_QMARK, - STATE(3949), 1, - sym_type_annotation, - STATE(5137), 1, - sym__initializer, + ACTIONS(9212), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176343] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(9214), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131264] = 8, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [176355] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7002), 1, - anon_sym_BANG, - ACTIONS(7004), 1, - anon_sym_QMARK, - STATE(3963), 1, - sym_type_annotation, - STATE(4715), 1, + STATE(5542), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(9216), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131292] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6827), 1, - anon_sym_GT, - ACTIONS(7006), 1, - anon_sym_SLASH_GT, - STATE(3408), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [176371] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_class, + ACTIONS(9220), 1, + anon_sym_abstract, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131322] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6841), 1, - anon_sym_GT, - ACTIONS(7008), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [176391] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5691), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131352] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6849), 1, - anon_sym_GT, - ACTIONS(7010), 1, - anon_sym_SLASH_GT, - STATE(3409), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + ACTIONS(9201), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176407] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131382] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6853), 1, - anon_sym_GT, - ACTIONS(7012), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + ACTIONS(5298), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176419] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6642), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131412] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6861), 1, - anon_sym_GT, - ACTIONS(7014), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [176439] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6333), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131442] = 8, - ACTIONS(6403), 1, + [176459] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7019), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176479] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7016), 1, - anon_sym_BANG, - ACTIONS(7018), 1, - anon_sym_QMARK, - STATE(4070), 1, - sym_type_annotation, - STATE(5002), 1, + STATE(5690), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(9201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131470] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7020), 1, - anon_sym_BANG, - ACTIONS(7022), 1, - anon_sym_QMARK, - STATE(4127), 1, - sym_type_annotation, - STATE(5172), 1, - sym__initializer, + [176495] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6646), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + [176515] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6647), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176535] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1791), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131498] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7024), 1, - anon_sym_BANG, - ACTIONS(7026), 1, - anon_sym_QMARK, - STATE(4161), 1, - sym_type_annotation, - STATE(4707), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [176547] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2831), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(2847), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131526] = 10, - ACTIONS(2581), 1, + anon_sym_PIPE_RBRACE, + [176571] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6976), 1, - anon_sym_LBRACE, - STATE(3640), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6648), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(3986), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5454), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131558] = 2, + [176591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2335), 9, + ACTIONS(2507), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131574] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6849), 1, - anon_sym_GT, - ACTIONS(7028), 1, - anon_sym_SLASH_GT, - STATE(3353), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + anon_sym_PIPE_RBRACE, + [176603] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131604] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7030), 1, - anon_sym_BANG, - ACTIONS(7032), 1, - anon_sym_QMARK, - STATE(4388), 1, - sym_type_annotation, - STATE(5120), 1, - sym__initializer, + ACTIONS(2499), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(2619), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131632] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7034), 1, - anon_sym_BANG, - ACTIONS(7036), 1, - anon_sym_QMARK, - STATE(4172), 1, - sym_type_annotation, - STATE(4741), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [176627] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 3, + ACTIONS(2659), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131660] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7038), 1, - anon_sym_BANG, - ACTIONS(7040), 1, - anon_sym_QMARK, - STATE(4414), 1, - sym_type_annotation, - STATE(5168), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [176639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(2887), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131688] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7042), 1, - anon_sym_BANG, - ACTIONS(7044), 1, - anon_sym_QMARK, - STATE(4389), 1, - sym_type_annotation, - STATE(5123), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [176651] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(2699), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131716] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7046), 1, - anon_sym_BANG, - ACTIONS(7048), 1, - anon_sym_QMARK, - STATE(4418), 1, - sym_type_annotation, - STATE(5180), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [176663] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(2675), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131744] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, + anon_sym_PIPE_RBRACE, + [176675] = 4, + ACTIONS(8415), 1, anon_sym_COLON, - ACTIONS(7050), 1, - anon_sym_BANG, - ACTIONS(7052), 1, - anon_sym_QMARK, - STATE(3923), 1, + ACTIONS(9222), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(6229), 3, sym_type_annotation, - STATE(4568), 1, - sym__initializer, + sym_asserts_annotation, + sym_type_predicate_annotation, + [176691] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6649), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131772] = 8, - ACTIONS(6403), 1, + [176711] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7054), 1, - anon_sym_BANG, - ACTIONS(7056), 1, - anon_sym_QMARK, - STATE(4179), 1, - sym_type_annotation, - STATE(4750), 1, + STATE(5689), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 3, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131800] = 2, + [176727] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7024), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4478), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131816] = 10, - ACTIONS(825), 1, + [176747] = 5, + ACTIONS(9175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(9227), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5272), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [176765] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5991), 1, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7027), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176785] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6865), 1, - anon_sym_DOT, - STATE(1603), 1, - sym_arguments, - STATE(1757), 1, - sym_template_string, - STATE(4436), 1, - sym_type_arguments, - STATE(5393), 1, - sym_optional_chain, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6769), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176805] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6653), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131848] = 8, - ACTIONS(6403), 1, + [176825] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7058), 1, - anon_sym_BANG, - ACTIONS(7060), 1, - anon_sym_QMARK, - STATE(4181), 1, - sym_type_annotation, - STATE(4755), 1, + STATE(5902), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 3, + ACTIONS(9229), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131876] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(4243), 1, - anon_sym_EQ, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + [176841] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6654), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, + [176861] = 6, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_QMARK, - [131902] = 10, - ACTIONS(2581), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6655), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176881] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5686), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9208), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176897] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6976), 1, - anon_sym_LBRACE, - STATE(717), 1, - sym_class_body, - STATE(3709), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6767), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176917] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6656), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5432), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131934] = 2, + [176937] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7175), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4486), 9, + [176957] = 6, + ACTIONS(4041), 1, + anon_sym_LBRACE, + ACTIONS(9231), 1, + anon_sym_SEMI, + ACTIONS(9233), 1, sym__automatic_semicolon, + ACTIONS(9235), 1, sym__function_signature_automatic_semicolon, + STATE(2171), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176977] = 6, + ACTIONS(1706), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(9093), 1, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131950] = 10, - ACTIONS(2581), 1, + ACTIONS(9095), 1, + sym__automatic_semicolon, + ACTIONS(9097), 1, + sym__function_signature_automatic_semicolon, + STATE(229), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176997] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2135), 1, - sym_class_body, - STATE(3650), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6317), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5497), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131982] = 10, - ACTIONS(2581), 1, + [177017] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6976), 1, - anon_sym_LBRACE, - STATE(3653), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6315), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(4007), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5513), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132014] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7062), 1, - anon_sym_BANG, - ACTIONS(7064), 1, - anon_sym_QMARK, - STATE(4187), 1, - sym_type_annotation, - STATE(4765), 1, - sym__initializer, + [177037] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6665), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132042] = 10, - ACTIONS(2581), 1, + [177057] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6763), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(1715), 1, - sym_class_body, - STATE(3654), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6312), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5201), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132074] = 2, + [177077] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4494), 9, + ACTIONS(2811), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132090] = 2, + anon_sym_PIPE_RBRACE, + [177089] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6672), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4498), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132106] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6849), 1, - anon_sym_GT, - ACTIONS(7066), 1, - anon_sym_SLASH_GT, - STATE(3253), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [177109] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6629), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132136] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7068), 1, - anon_sym_BANG, - ACTIONS(7070), 1, - anon_sym_QMARK, - STATE(4194), 1, - sym_type_annotation, - STATE(4782), 1, - sym__initializer, + [177129] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6676), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132164] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6789), 1, - anon_sym_GT, - ACTIONS(7072), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [177149] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6683), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132194] = 9, - ACTIONS(6252), 1, + [177169] = 6, + ACTIONS(9237), 1, sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6793), 1, + ACTIONS(9239), 1, anon_sym_GT, - ACTIONS(7074), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, + ACTIONS(9241), 1, + sym_jsx_identifier, + STATE(6204), 1, + sym_nested_identifier, + STATE(7456), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132224] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(4525), 1, - anon_sym_DOT, - ACTIONS(6246), 1, + [177189] = 6, + ACTIONS(2525), 1, anon_sym_LT, - STATE(2081), 1, - sym_arguments, - STATE(2133), 1, - sym_template_string, - STATE(3236), 1, - sym_type_arguments, - STATE(5183), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132256] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(3973), 1, - anon_sym_DOT, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(6246), 1, - anon_sym_LT, - STATE(1593), 1, - sym_arguments, - STATE(1757), 1, - sym_template_string, - STATE(2988), 1, - sym_type_arguments, - STATE(5393), 1, - sym_optional_chain, + STATE(4505), 1, + sym_formal_parameters, + STATE(6684), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132288] = 7, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4338), 1, - sym_type_annotation, - STATE(5046), 1, - sym__initializer, + [177209] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6504), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6502), 3, + ACTIONS(2615), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [132314] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7076), 1, - anon_sym_BANG, - ACTIONS(7078), 1, - anon_sym_QMARK, - STATE(3964), 1, - sym_type_annotation, - STATE(4827), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [177221] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(1744), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [132342] = 10, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6976), 1, - anon_sym_LBRACE, - STATE(3662), 1, - sym_type_parameters, - STATE(4073), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5231), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132374] = 4, - ACTIONS(6915), 1, - anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [177233] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3936), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6753), 5, + ACTIONS(1801), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [132394] = 2, + anon_sym_PIPE_RBRACE, + [177245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4502), 9, + ACTIONS(1811), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132410] = 2, + anon_sym_PIPE_RBRACE, + [177257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4506), 9, + ACTIONS(2535), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132426] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6853), 1, - anon_sym_GT, - ACTIONS(7080), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + anon_sym_PIPE_RBRACE, + [177269] = 6, + ACTIONS(3921), 1, + anon_sym_COLON, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5344), 1, + anon_sym_COMMA, + ACTIONS(9243), 1, + anon_sym_RBRACE, + STATE(5847), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132456] = 2, + [177289] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 9, + ACTIONS(2543), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132472] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7082), 1, - anon_sym_BANG, - ACTIONS(7084), 1, - anon_sym_QMARK, - STATE(4400), 1, - sym_type_annotation, - STATE(5138), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [177301] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(2543), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [132500] = 5, - ACTIONS(6807), 1, - anon_sym_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE, - ACTIONS(6811), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [177313] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7029), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [132522] = 10, - ACTIONS(2581), 1, + [177333] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6976), 1, - anon_sym_LBRACE, - STATE(716), 1, - sym_class_body, - STATE(3545), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6697), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5194), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132554] = 2, + [177353] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6300), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7086), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [132570] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6853), 1, - anon_sym_GT, - ACTIONS(7088), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + [177373] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7031), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132600] = 5, - ACTIONS(6807), 1, - anon_sym_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE, - ACTIONS(6811), 1, - anon_sym_extends, + [177393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 6, + ACTIONS(2783), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - [132622] = 5, - ACTIONS(6807), 1, - anon_sym_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE, - ACTIONS(6811), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [177405] = 5, + ACTIONS(9245), 1, + anon_sym_SEMI, + ACTIONS(9247), 1, + sym__automatic_semicolon, + STATE(6220), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9099), 2, + anon_sym_with, + anon_sym_assert, + [177423] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 6, + ACTIONS(2791), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - [132644] = 2, + anon_sym_PIPE_RBRACE, + [177435] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5681), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 9, + ACTIONS(9208), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132660] = 3, - ACTIONS(6807), 1, - anon_sym_AMP, + [177451] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(5228), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [177471] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5541), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 8, + ACTIONS(9249), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [132678] = 2, + [177487] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4140), 9, + ACTIONS(2483), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132694] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6823), 1, - anon_sym_GT, - ACTIONS(7090), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + anon_sym_PIPE_RBRACE, + [177499] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132724] = 2, + ACTIONS(2695), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177511] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4472), 9, + ACTIONS(2575), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132740] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6861), 1, - anon_sym_GT, - ACTIONS(7092), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + anon_sym_PIPE_RBRACE, + [177523] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6298), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132770] = 10, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6960), 1, - anon_sym_LBRACE, - STATE(240), 1, - sym_class_body, - STATE(3671), 1, - sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5400), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + [177543] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132802] = 2, + ACTIONS(2639), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177555] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2319), 9, + ACTIONS(2639), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [177567] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2639), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177579] = 5, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, + ACTIONS(7493), 1, anon_sym_extends, - [132818] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6861), 1, - anon_sym_GT, - ACTIONS(7094), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132848] = 10, - ACTIONS(2581), 1, + ACTIONS(9251), 2, + anon_sym_COMMA, + anon_sym_GT, + [177597] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(7096), 1, - anon_sym_LBRACE, - STATE(779), 1, - sym_class_body, - STATE(3531), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6296), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5343), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132880] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(5198), 1, - anon_sym_RBRACE, - STATE(4671), 1, - aux_sym_object_repeat1, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, + [177617] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6688), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, + [177637] = 6, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_QMARK, - [132906] = 2, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6801), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7098), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [132922] = 10, - ACTIONS(2581), 1, + [177657] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(7096), 1, - anon_sym_LBRACE, - STATE(824), 1, - sym_class_body, - STATE(3720), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6863), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(5071), 1, - sym_extends_clause, - STATE(5258), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132954] = 2, + [177677] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6864), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132970] = 7, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6779), 1, - anon_sym_EQ, - STATE(4144), 1, - sym__initializer, - STATE(4267), 1, - sym_type_annotation, + [177697] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6719), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6715), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132996] = 7, - ACTIONS(6403), 1, + ACTIONS(9253), 5, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4267), 1, - sym_type_annotation, - STATE(4926), 1, - sym__initializer, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [177709] = 4, + ACTIONS(1835), 1, + anon_sym_DOT, + ACTIONS(4345), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6719), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6715), 3, - sym__automatic_semicolon, + ACTIONS(4347), 3, anon_sym_COMMA, - anon_sym_SEMI, - [133022] = 8, - ACTIONS(6403), 1, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [177725] = 6, + ACTIONS(8192), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7100), 1, - anon_sym_BANG, - ACTIONS(7102), 1, - anon_sym_QMARK, - STATE(3966), 1, - sym_type_annotation, - STATE(4860), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6415), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133050] = 7, - ACTIONS(241), 1, + ACTIONS(9255), 1, anon_sym_COMMA, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(5109), 1, + ACTIONS(9257), 1, anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - STATE(5156), 1, - aux_sym_object_repeat1, + STATE(5507), 1, + aux_sym_enum_body_repeat1, + STATE(7171), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, + [177745] = 6, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_QMARK, - [133076] = 10, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(4059), 1, - anon_sym_QMARK_DOT, - ACTIONS(5991), 1, - anon_sym_LT, - ACTIONS(7104), 1, - anon_sym_DOT, - STATE(1757), 1, - sym_template_string, - STATE(1815), 1, - sym_arguments, - STATE(4436), 1, - sym_type_arguments, - STATE(5393), 1, - sym_optional_chain, + STATE(4505), 1, + sym_formal_parameters, + STATE(6868), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133108] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7106), 1, - anon_sym_BANG, - ACTIONS(7108), 1, - anon_sym_QMARK, - STATE(3969), 1, - sym_type_annotation, - STATE(4902), 1, - sym__initializer, + [177765] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(9137), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, + ACTIONS(9259), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [133136] = 8, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7110), 1, - anon_sym_BANG, - ACTIONS(7112), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_type_annotation, - STATE(4974), 1, - sym__initializer, + [177783] = 4, + ACTIONS(1831), 1, + anon_sym_DOT, + ACTIONS(4345), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 3, - sym__automatic_semicolon, + ACTIONS(4347), 3, anon_sym_COMMA, - anon_sym_SEMI, - [133164] = 9, - ACTIONS(6252), 1, - sym_identifier, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_jsx_identifier, - ACTIONS(6841), 1, - anon_sym_GT, - ACTIONS(7114), 1, - anon_sym_SLASH_GT, - STATE(3345), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3826), 1, - sym_jsx_namespace_name, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [177799] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6287), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4391), 2, - sym_jsx_expression, - sym_jsx_attribute, - [133194] = 9, - ACTIONS(7116), 1, - sym_identifier, - ACTIONS(7118), 1, - anon_sym_const, - ACTIONS(7120), 1, - anon_sym_GT, - ACTIONS(7122), 1, - sym_jsx_identifier, - ACTIONS(7124), 1, - anon_sym_SLASH_GT, - STATE(3100), 1, - sym_nested_identifier, - STATE(3369), 1, - sym_jsx_namespace_name, - STATE(4744), 1, - sym_type_parameter, + [177819] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6877), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133223] = 7, - ACTIONS(7126), 1, - sym_escape_sequence, - ACTIONS(7128), 1, - anon_sym_BQUOTE, - ACTIONS(7130), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7132), 1, - sym__template_chars, + [177839] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6285), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3783), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4347), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133248] = 7, - ACTIONS(3335), 1, - sym_identifier, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(7134), 1, - anon_sym_enum, - STATE(4442), 1, - sym_variable_declarator, + [177859] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6878), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3661), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [133273] = 9, - ACTIONS(7118), 1, - anon_sym_const, - ACTIONS(7120), 1, - anon_sym_GT, - ACTIONS(7136), 1, - sym_identifier, - ACTIONS(7138), 1, - sym_jsx_identifier, - ACTIONS(7140), 1, - anon_sym_SLASH_GT, - STATE(3099), 1, - sym_nested_identifier, - STATE(3360), 1, - sym_jsx_namespace_name, - STATE(4744), 1, - sym_type_parameter, + [177879] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6281), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133302] = 7, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(6717), 1, - anon_sym_BANG, - STATE(4267), 1, - sym_type_annotation, - STATE(4918), 1, - sym__initializer, + [177899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6715), 3, + ACTIONS(2559), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [133327] = 5, - ACTIONS(6807), 1, - anon_sym_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE, - ACTIONS(6811), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [177911] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(5324), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6739), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + [177931] = 6, + ACTIONS(8192), 1, + anon_sym_EQ, + ACTIONS(9261), 1, anon_sym_COMMA, - anon_sym_SEMI, - [133348] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6767), 1, - sym_identifier, - STATE(5415), 1, - sym_export_specifier, + ACTIONS(9263), 1, + anon_sym_RBRACE, + STATE(5488), 1, + aux_sym_enum_body_repeat1, + STATE(7171), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6769), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5022), 2, - sym__module_export_name, - sym_string, - [133373] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6693), 1, - anon_sym_PIPE, - ACTIONS(6695), 1, - anon_sym_extends, + [177951] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6278), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7142), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133394] = 9, - ACTIONS(133), 1, - anon_sym_import, - ACTIONS(7144), 1, - sym_identifier, - ACTIONS(7146), 1, - sym_this, - STATE(2782), 1, - sym__type_query_member_expression, - STATE(2783), 1, - sym__type_query_subscript_expression, - STATE(2833), 1, - sym__type_query_call_expression, - STATE(2905), 1, - sym__type_query_instantiation_expression, - STATE(4450), 1, - sym_import, + [177971] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6273), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133423] = 7, - ACTIONS(7130), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7132), 1, - sym__template_chars, - ACTIONS(7148), 1, - sym_escape_sequence, - ACTIONS(7150), 1, - anon_sym_BQUOTE, + [177991] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6884), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3858), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4347), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133448] = 9, - ACTIONS(133), 1, - anon_sym_import, - ACTIONS(7152), 1, - sym_identifier, - ACTIONS(7154), 1, - sym_this, - STATE(2863), 1, - sym__type_query_member_expression, - STATE(2864), 1, - sym__type_query_subscript_expression, - STATE(3156), 1, - sym__type_query_call_expression, - STATE(3325), 1, - sym__type_query_instantiation_expression, - STATE(4524), 1, - sym_import, + [178011] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6271), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133477] = 7, - ACTIONS(7126), 1, - sym_escape_sequence, - ACTIONS(7130), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7132), 1, - sym__template_chars, - ACTIONS(7156), 1, - anon_sym_BQUOTE, + [178031] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5674), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3783), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4347), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133502] = 9, - ACTIONS(133), 1, - anon_sym_import, - ACTIONS(7158), 1, - sym_identifier, - ACTIONS(7160), 1, - sym_this, - STATE(2832), 1, - sym__type_query_member_expression, - STATE(2839), 1, - sym__type_query_subscript_expression, - STATE(3005), 1, - sym__type_query_call_expression, - STATE(3155), 1, - sym__type_query_instantiation_expression, - STATE(4543), 1, - sym_import, + ACTIONS(9208), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178047] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6269), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133531] = 6, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7162), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7164), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7166), 1, - anon_sym_QMARK_COLON, + [178067] = 4, + STATE(6212), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4372), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133554] = 9, - ACTIONS(133), 1, - anon_sym_import, - ACTIONS(7168), 1, - sym_identifier, - ACTIONS(7170), 1, - sym_this, - STATE(1692), 1, - sym__type_query_member_expression, - STATE(1693), 1, - sym__type_query_subscript_expression, - STATE(1985), 1, - sym__type_query_call_expression, - STATE(1987), 1, - sym__type_query_instantiation_expression, - STATE(4495), 1, - sym_import, + ACTIONS(9099), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(9265), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [178083] = 4, + STATE(6211), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133583] = 3, + ACTIONS(9099), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(9267), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [178099] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6889), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 2, - anon_sym_while, - sym_identifier, - ACTIONS(1797), 6, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, + [178119] = 6, + ACTIONS(2525), 1, anon_sym_LT, - [133600] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6890), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1857), 2, - anon_sym_while, - sym_identifier, - ACTIONS(1855), 6, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, + [178139] = 6, + ACTIONS(2525), 1, anon_sym_LT, - [133617] = 9, - ACTIONS(133), 1, - anon_sym_import, - ACTIONS(7172), 1, - sym_identifier, - ACTIONS(7174), 1, - sym_this, - STATE(1431), 1, - sym__type_query_member_expression, - STATE(1432), 1, - sym__type_query_subscript_expression, - STATE(1576), 1, - sym__type_query_call_expression, - STATE(1577), 1, - sym__type_query_instantiation_expression, - STATE(4478), 1, - sym_import, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6891), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133646] = 7, - ACTIONS(7130), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7132), 1, - sym__template_chars, - ACTIONS(7148), 1, - sym_escape_sequence, - ACTIONS(7176), 1, - anon_sym_BQUOTE, + [178159] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6892), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3858), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4347), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133671] = 7, - ACTIONS(7126), 1, - sym_escape_sequence, - ACTIONS(7130), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7132), 1, - sym__template_chars, - ACTIONS(7178), 1, - anon_sym_BQUOTE, + [178179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3783), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4347), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133696] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6693), 1, - anon_sym_PIPE, - ACTIONS(6695), 1, - anon_sym_extends, + ACTIONS(2531), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178191] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178203] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1881), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178215] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1891), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178227] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7180), 5, + ACTIONS(2607), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [133717] = 3, - ACTIONS(6711), 1, - anon_sym_is, + [178239] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 7, + ACTIONS(2587), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [133734] = 3, - ACTIONS(6711), 1, - anon_sym_is, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 7, + ACTIONS(2587), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [133751] = 3, - ACTIONS(7182), 1, - anon_sym_is, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178263] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 7, + ACTIONS(5748), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [133768] = 6, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7162), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7164), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7166), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4081), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133791] = 6, - ACTIONS(6411), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(7162), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7164), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7166), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4082), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133814] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6693), 1, - anon_sym_PIPE, - ACTIONS(6695), 1, - anon_sym_extends, + anon_sym_QMARK, + [178275] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7184), 5, + ACTIONS(2819), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [133835] = 2, + [178287] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3133), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133850] = 7, - ACTIONS(7126), 1, - sym_escape_sequence, - ACTIONS(7130), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7132), 1, - sym__template_chars, - ACTIONS(7186), 1, - anon_sym_BQUOTE, + ACTIONS(2771), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178299] = 3, + ACTIONS(8919), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3783), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4347), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133875] = 7, - ACTIONS(7126), 1, - sym_escape_sequence, - ACTIONS(7130), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7132), 1, - sym__template_chars, - ACTIONS(7188), 1, - anon_sym_BQUOTE, + ACTIONS(9269), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [178313] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6913), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3783), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4347), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133900] = 2, + [178333] = 4, + ACTIONS(3459), 1, + anon_sym_COLON, + STATE(7164), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3125), 8, - anon_sym_as, - anon_sym_LBRACK, + ACTIONS(3515), 3, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133915] = 2, + [178349] = 4, + ACTIONS(8415), 1, + anon_sym_COLON, + ACTIONS(9271), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3129), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133930] = 6, - ACTIONS(6411), 1, + STATE(6229), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [178365] = 4, + ACTIONS(8415), 1, anon_sym_COLON, - ACTIONS(7162), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7164), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7166), 1, - anon_sym_QMARK_COLON, + ACTIONS(9274), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4301), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, + STATE(6134), 3, sym_type_annotation, - [133953] = 5, - ACTIONS(7190), 1, - anon_sym_LBRACE, - ACTIONS(7192), 1, - anon_sym_DOT, - STATE(4349), 1, - sym_statement_block, + sym_asserts_annotation, + sym_type_predicate_annotation, + [178381] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6252), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178401] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1712), 5, + ACTIONS(2759), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [133974] = 5, - ACTIONS(7190), 1, - anon_sym_LBRACE, - ACTIONS(7194), 1, - anon_sym_DOT, - STATE(4349), 1, - sym_statement_block, + [178413] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1712), 5, + ACTIONS(2795), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [133995] = 6, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7162), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7164), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7166), 1, - anon_sym_QMARK_COLON, + [178425] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4223), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134018] = 6, - ACTIONS(6411), 1, + ACTIONS(2859), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178437] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2799), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178449] = 4, + ACTIONS(8415), 1, anon_sym_COLON, - ACTIONS(7162), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7164), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7166), 1, - anon_sym_QMARK_COLON, + ACTIONS(9277), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4226), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, + STATE(6134), 3, sym_type_annotation, - [134041] = 7, - ACTIONS(7126), 1, - sym_escape_sequence, - ACTIONS(7130), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7132), 1, - sym__template_chars, - ACTIONS(7196), 1, - anon_sym_BQUOTE, + sym_asserts_annotation, + sym_type_predicate_annotation, + [178465] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6765), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3783), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4110), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134066] = 6, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7162), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7164), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7166), 1, - anon_sym_QMARK_COLON, + [178485] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6248), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4221), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134089] = 7, - ACTIONS(3335), 1, + [178505] = 5, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(9280), 1, sym_identifier, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(7198), 1, - anon_sym_enum, - STATE(4506), 1, - sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3661), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134114] = 6, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7162), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7164), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7166), 1, - anon_sym_QMARK_COLON, + STATE(7162), 2, + sym__module_export_name, + sym_string, + [178523] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7054), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4214), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134137] = 6, - ACTIONS(6411), 1, - anon_sym_COLON, - ACTIONS(7162), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7164), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7166), 1, - anon_sym_QMARK_COLON, + [178543] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6244), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4217), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134160] = 9, - ACTIONS(133), 1, - anon_sym_import, - ACTIONS(7146), 1, - sym_this, - ACTIONS(7200), 1, - sym_identifier, - STATE(2833), 1, - sym__type_query_call_expression, - STATE(2905), 1, - sym__type_query_instantiation_expression, - STATE(3127), 1, - sym__type_query_member_expression, - STATE(3131), 1, - sym__type_query_subscript_expression, - STATE(4517), 1, - sym_import, + [178563] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7060), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134189] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4118), 1, - sym_type_annotation, - STATE(4588), 1, - sym__initializer, + [178583] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7158), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134211] = 7, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(7202), 1, - anon_sym_EQ, - ACTIONS(7206), 1, - anon_sym_QMARK, - STATE(4510), 1, - sym_type_annotation, - STATE(5453), 1, - sym__initializer, + [178603] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 2, + ACTIONS(2551), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [134235] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4291), 1, - sym_type_annotation, - STATE(4960), 1, - sym__initializer, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(2551), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134257] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5345), 1, - sym_statement_block, + anon_sym_PIPE_RBRACE, + [178627] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 5, + ACTIONS(2551), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134275] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4249), 1, - sym_type_annotation, - STATE(4881), 1, - sym__initializer, + [178639] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6951), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178659] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(9137), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9282), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [134297] = 2, + [178677] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7154), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178697] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7077), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178717] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7151), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178737] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7081), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178757] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7146), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178777] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4273), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178797] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 7, + ACTIONS(9284), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [134311] = 6, - ACTIONS(6403), 1, + [178809] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3934), 1, - sym_type_annotation, - STATE(4965), 1, + STATE(6048), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134333] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5360), 1, - sym_statement_block, + [178825] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7139), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178845] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4494), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178865] = 6, + ACTIONS(8849), 1, + anon_sym_AMP, + ACTIONS(8851), 1, + anon_sym_PIPE, + ACTIONS(8853), 1, + anon_sym_extends, + ACTIONS(9286), 1, + anon_sym_as, + ACTIONS(9288), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7212), 5, + [178885] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9290), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134351] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5364), 1, - sym_statement_block, + [178897] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 5, + ACTIONS(9292), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134369] = 6, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(7214), 1, - sym_identifier, - STATE(4452), 1, - sym_variable_declarator, + [178909] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7086), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3441), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134391] = 6, - ACTIONS(6403), 1, + [178929] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4253), 1, - sym_type_annotation, - STATE(4894), 1, + STATE(5894), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9294), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134413] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4254), 1, - sym_type_annotation, - STATE(4899), 1, - sym__initializer, + [178945] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(2735), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134435] = 4, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4042), 1, - sym_type_annotation, + anon_sym_PIPE_RBRACE, + [178957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7216), 5, + ACTIONS(2487), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134453] = 8, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2277), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5273), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134479] = 6, - ACTIONS(6403), 1, + [178969] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4264), 1, - sym_type_annotation, - STATE(4913), 1, + STATE(5669), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134501] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(7218), 1, - sym_identifier, - ACTIONS(7220), 1, - anon_sym_DOT, - STATE(711), 1, - sym_nested_identifier, - STATE(741), 1, - sym_string, - STATE(825), 1, - sym__module, + [178985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134527] = 6, - ACTIONS(6403), 1, + ACTIONS(5095), 5, anon_sym_EQ, - ACTIONS(6411), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4016), 1, - sym_type_annotation, - STATE(4745), 1, + [178997] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6050), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134549] = 6, - ACTIONS(6403), 1, + [179013] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6206), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [179033] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4306), 1, - sym_type_annotation, - STATE(4973), 1, + STATE(5896), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6626), 3, + ACTIONS(9296), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134571] = 6, - ACTIONS(6403), 1, + [179049] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7035), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [179069] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4139), 1, - sym_type_annotation, - STATE(4643), 1, + STATE(5905), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134593] = 6, - ACTIONS(6403), 1, + [179085] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4142), 1, - sym_type_annotation, - STATE(4646), 1, + STATE(5906), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134615] = 8, - ACTIONS(6725), 1, + [179101] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6189), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [179121] = 6, + ACTIONS(4041), 1, anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2224), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5398), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + ACTIONS(9093), 1, + anon_sym_SEMI, + ACTIONS(9095), 1, + sym__automatic_semicolon, + ACTIONS(9097), 1, + sym__function_signature_automatic_semicolon, + STATE(2318), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [179141] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134641] = 6, - ACTIONS(6403), 1, + ACTIONS(2539), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179153] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4373), 1, - sym_type_annotation, - STATE(5091), 1, + STATE(5665), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134663] = 2, + [179169] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5477), 7, - anon_sym_EQ, + ACTIONS(2539), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [134677] = 8, - ACTIONS(6763), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(1745), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5259), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179181] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134703] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4145), 1, - sym_type_annotation, - STATE(4654), 1, - sym__initializer, + ACTIONS(2539), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179193] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(2539), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134725] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4146), 1, - sym_type_annotation, - STATE(4657), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [179205] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(1901), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134747] = 6, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [179217] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3959), 1, - sym_type_annotation, - STATE(4757), 1, + STATE(5664), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134769] = 6, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(7222), 1, - sym_identifier, - STATE(4506), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3442), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134791] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5533), 1, - sym_statement_block, + [179233] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 5, + ACTIONS(2491), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134809] = 6, - ACTIONS(6403), 1, + [179245] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7135), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [179265] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4277), 1, - sym_type_annotation, - STATE(4917), 1, + STATE(5663), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6662), 3, + ACTIONS(9201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134831] = 2, + [179281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6962), 7, + ACTIONS(2539), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [134845] = 8, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2321), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5526), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134871] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5484), 1, - sym_statement_block, + anon_sym_PIPE_RBRACE, + [179293] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7226), 5, + ACTIONS(2539), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134889] = 8, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2142), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5436), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + [179305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134915] = 8, - ACTIONS(2581), 1, + ACTIONS(2583), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179317] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7228), 1, - sym_identifier, - ACTIONS(7230), 1, - anon_sym_STAR, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5281), 1, + STATE(6852), 1, sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134941] = 2, + [179337] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5662), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4987), 7, + ACTIONS(9201), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [134955] = 8, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(7232), 1, - sym_identifier, - ACTIONS(7234), 1, - anon_sym_DOT, - STATE(3483), 1, - sym_nested_identifier, - STATE(3697), 1, - sym_string, - STATE(4370), 1, - sym__module, + [179353] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134981] = 8, - ACTIONS(1040), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1586), 1, + ACTIONS(8975), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7236), 1, - anon_sym_LT, - ACTIONS(7238), 1, - anon_sym_extends, - STATE(3921), 1, - sym_object_type, - STATE(3995), 1, - sym_type_parameters, - STATE(4647), 1, - sym_extends_type_clause, + anon_sym_COMMA, + anon_sym_SEMI, + [179365] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5701), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135007] = 8, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7240), 1, - sym_identifier, - ACTIONS(7242), 1, - anon_sym_STAR, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5441), 1, - sym__call_signature, + ACTIONS(9208), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179381] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135033] = 8, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(7096), 1, + ACTIONS(8971), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(815), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5210), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + anon_sym_COMMA, + anon_sym_SEMI, + [179393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135059] = 8, - ACTIONS(7244), 1, + ACTIONS(8967), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7246), 1, anon_sym_COMMA, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7250), 1, + anon_sym_SEMI, + [179405] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(7252), 1, - anon_sym_LBRACE_PIPE, - STATE(4471), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5094), 1, - sym_type_arguments, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7131), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [179425] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7129), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135085] = 6, - ACTIONS(6403), 1, + [179445] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4197), 1, - sym_type_annotation, - STATE(5173), 1, + STATE(5921), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6650), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135107] = 6, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(5991), 1, - anon_sym_LT, - STATE(1676), 1, - sym_arguments, - STATE(5224), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7254), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [135129] = 6, - ACTIONS(6403), 1, + [179461] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4368), 1, - sym_type_annotation, - STATE(5085), 1, + STATE(5658), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135151] = 4, - ACTIONS(4243), 1, - anon_sym_EQ, + [179477] = 3, + ACTIONS(5532), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5749), 2, + ACTIONS(1861), 4, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [135169] = 4, - ACTIONS(2437), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179491] = 3, + ACTIONS(8541), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9298), 4, anon_sym_LBRACE, - STATE(5494), 1, - sym_statement_block, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [179505] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7126), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7256), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135187] = 6, - ACTIONS(6403), 1, + [179525] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4135), 1, - sym_type_annotation, - STATE(4631), 1, + STATE(5928), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135209] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4136), 1, - sym_type_annotation, - STATE(4632), 1, - sym__initializer, + [179541] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7128), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135231] = 6, - ACTIONS(6403), 1, + [179561] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6943), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [179581] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4236), 1, - sym_type_annotation, - STATE(4846), 1, + STATE(5934), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9300), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135253] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5504), 1, - sym_statement_block, + [179597] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5950), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7258), 5, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135271] = 6, - ACTIONS(6403), 1, + [179613] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4312), 1, - sym_type_annotation, - STATE(4987), 1, + STATE(5951), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7260), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135293] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5323), 1, - sym_statement_block, + [179629] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5952), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7262), 5, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135311] = 6, - ACTIONS(6403), 1, + [179645] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4327), 1, - sym_type_annotation, - STATE(5029), 1, + STATE(5653), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 3, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135333] = 8, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6976), 1, - anon_sym_LBRACE, - STATE(736), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5421), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + [179661] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6173), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135359] = 6, - ACTIONS(6403), 1, + [179681] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4269), 1, - sym_type_annotation, - STATE(4930), 1, + STATE(5954), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135381] = 3, - ACTIONS(4332), 1, - sym_identifier, + [179697] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4864), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 6, - anon_sym_LBRACE, + [179717] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - anon_sym_BQUOTE, - [135397] = 6, - ACTIONS(6403), 1, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7112), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [179737] = 3, + ACTIONS(9302), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4149), 1, - sym_type_annotation, - STATE(4680), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, - sym__automatic_semicolon, + ACTIONS(3536), 4, anon_sym_COMMA, - anon_sym_SEMI, - [135419] = 8, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2249), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5355), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [179751] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6522), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135445] = 6, - ACTIONS(6403), 1, + [179771] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4045), 1, - sym_type_annotation, - STATE(4896), 1, + STATE(5963), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135467] = 6, - ACTIONS(6403), 1, + [179787] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4150), 1, - sym_type_annotation, - STATE(4684), 1, + STATE(5965), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135489] = 2, + [179803] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7264), 7, + ACTIONS(2763), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [135503] = 6, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(7266), 1, - sym_identifier, - STATE(4433), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3661), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [135525] = 6, - ACTIONS(6403), 1, + [179815] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4315), 1, - sym_type_annotation, - STATE(4993), 1, + STATE(5640), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7260), 3, + ACTIONS(9201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135547] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4345), 1, - sym_type_annotation, - STATE(5045), 1, - sym__initializer, + [179831] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, + ACTIONS(2731), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135569] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4152), 1, - sym_type_annotation, - STATE(4687), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [179843] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(2711), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135591] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4156), 1, - sym_type_annotation, - STATE(4689), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [179855] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6845), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135613] = 6, - ACTIONS(6403), 1, + [179875] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4356), 1, - sym_type_annotation, - STATE(5064), 1, + STATE(5638), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135635] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5477), 1, - sym_statement_block, + [179891] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(4109), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7268), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135653] = 2, + [179911] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5983), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7270), 7, + ACTIONS(9300), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [135667] = 6, - ACTIONS(6403), 1, + [179927] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4157), 1, - sym_type_annotation, - STATE(4704), 1, + STATE(5985), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135689] = 6, - ACTIONS(6403), 1, + [179943] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3994), 1, - sym_type_annotation, - STATE(4639), 1, + STATE(5637), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135711] = 2, + [179959] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6926), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7086), 7, - sym__automatic_semicolon, + [179979] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7104), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [179999] = 4, + ACTIONS(8415), 1, + anon_sym_COLON, + ACTIONS(9304), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(6134), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [180015] = 4, + ACTIONS(7336), 1, anon_sym_EQ, + STATE(5990), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9121), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, + [180031] = 4, + ACTIONS(8415), 1, anon_sym_COLON, - [135725] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4272), 1, + ACTIONS(9307), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(6229), 3, sym_type_annotation, - STATE(4931), 1, - sym__initializer, + sym_asserts_annotation, + sym_type_predicate_annotation, + [180047] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6928), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135747] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3971), 1, - sym_type_annotation, - STATE(4833), 1, - sym__initializer, + [180067] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(7102), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135769] = 6, - ACTIONS(6403), 1, + [180087] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4019), 1, - sym_type_annotation, - STATE(4719), 1, + STATE(5634), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135791] = 2, + [180103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1797), 7, + ACTIONS(9310), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, anon_sym_PIPE_RBRACE, - [135805] = 8, - ACTIONS(2581), 1, + [180115] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7272), 1, - sym_identifier, - ACTIONS(7274), 1, - anon_sym_STAR, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, - STATE(5442), 1, + STATE(6930), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135831] = 6, - ACTIONS(6403), 1, + [180135] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4281), 1, - sym_type_annotation, - STATE(4937), 1, + STATE(6003), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9300), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180151] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6018), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9300), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135853] = 8, - ACTIONS(2581), 1, + [180167] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7276), 1, - sym_identifier, - ACTIONS(7278), 1, - anon_sym_STAR, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5441), 1, + STATE(6479), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135879] = 6, - ACTIONS(6403), 1, + [180187] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4321), 1, - sym_type_annotation, - STATE(5013), 1, + STATE(5630), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7260), 3, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135901] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5384), 1, - sym_statement_block, + [180203] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6020), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7268), 5, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135919] = 2, + [180219] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6021), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 7, + ACTIONS(9121), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [135933] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5468), 1, - sym_statement_block, + [180235] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6980), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [180255] = 4, + ACTIONS(9314), 1, + anon_sym_in, + ACTIONS(9316), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7280), 5, + ACTIONS(9312), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135951] = 4, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4358), 1, - sym_type_annotation, + [180271] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6024), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7282), 5, + ACTIONS(9300), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135969] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4322), 1, - sym_type_annotation, - STATE(5014), 1, - sym__initializer, + [180287] = 4, + ACTIONS(9318), 1, + anon_sym_in, + ACTIONS(9320), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7260), 3, + ACTIONS(9312), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135991] = 6, - ACTIONS(6403), 1, + [180303] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4162), 1, - sym_type_annotation, - STATE(4711), 1, + STATE(5625), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136013] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, + [180319] = 4, + ACTIONS(8415), 1, anon_sym_COLON, - STATE(4186), 1, + ACTIONS(9322), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(6229), 3, sym_type_annotation, - STATE(4749), 1, - sym__initializer, + sym_asserts_annotation, + sym_type_predicate_annotation, + [180335] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6843), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [180355] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, + ACTIONS(9325), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136035] = 6, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [180367] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4228), 1, - sym_type_annotation, - STATE(4809), 1, + STATE(6025), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136057] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4242), 1, - sym_type_annotation, - STATE(4841), 1, - sym__initializer, + [180383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, + ACTIONS(2871), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136079] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3927), 1, - sym_type_annotation, - STATE(4638), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [180395] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(2879), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136101] = 8, - ACTIONS(2581), 1, + anon_sym_PIPE_RBRACE, + [180407] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7284), 1, - sym_identifier, - ACTIONS(7286), 1, - anon_sym_STAR, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5442), 1, + STATE(6841), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136127] = 6, - ACTIONS(6403), 1, + [180427] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4282), 1, - sym_type_annotation, - STATE(4939), 1, + STATE(5621), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136149] = 6, - ACTIONS(6403), 1, + [180443] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5099), 5, anon_sym_EQ, - ACTIONS(6411), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4166), 1, - sym_type_annotation, - STATE(4718), 1, + [180455] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6837), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [180475] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5620), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136171] = 3, - ACTIONS(6781), 1, - anon_sym_is, + [180491] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136187] = 6, - ACTIONS(6403), 1, + ACTIONS(5093), 5, anon_sym_EQ, - ACTIONS(6411), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4168), 1, - sym_type_annotation, - STATE(4726), 1, + [180503] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5619), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136209] = 6, - ACTIONS(6403), 1, + [180519] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4169), 1, - sym_type_annotation, - STATE(4727), 1, + STATE(6026), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136231] = 3, - ACTIONS(7288), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3514), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [136247] = 8, - ACTIONS(6763), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2490), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5310), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136273] = 3, - ACTIONS(7291), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4027), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136289] = 8, - ACTIONS(2581), 1, + [180535] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7293), 1, - sym_identifier, - ACTIONS(7295), 1, - anon_sym_STAR, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, - STATE(5441), 1, + STATE(6936), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136315] = 6, - ACTIONS(6403), 1, + [180555] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4173), 1, - sym_type_annotation, - STATE(4743), 1, + STATE(6027), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136337] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5321), 1, - sym_statement_block, + [180571] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7297), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136355] = 6, - ACTIONS(6403), 1, + ACTIONS(5612), 5, anon_sym_EQ, - ACTIONS(6411), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4176), 1, - sym_type_annotation, - STATE(4747), 1, + anon_sym_QMARK, + [180583] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6016), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9327), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136377] = 6, - ACTIONS(6403), 1, + [180599] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4329), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [180619] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4374), 1, - sym_type_annotation, - STATE(5093), 1, + STATE(6028), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136399] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5329), 1, - sym_statement_block, + [180635] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6941), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [180655] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5616), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7299), 5, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136417] = 6, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(5991), 1, + [180671] = 6, + ACTIONS(2525), 1, anon_sym_LT, - STATE(2260), 1, - sym_arguments, - STATE(5483), 1, - sym_type_arguments, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6181), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7254), 3, - anon_sym_LBRACK, + [180691] = 5, + ACTIONS(9329), 1, sym_identifier, - sym_private_property_identifier, - [136439] = 2, + ACTIONS(9331), 1, + anon_sym_LPAREN, + STATE(1179), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6839), 7, - sym__automatic_semicolon, - anon_sym_EQ, + STATE(1260), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [180709] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6961), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [180729] = 5, + ACTIONS(8204), 1, + anon_sym_LT, + ACTIONS(9333), 1, + anon_sym_LBRACE, + STATE(5893), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9335), 2, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [136453] = 6, - ACTIONS(6403), 1, + anon_sym_LBRACE_PIPE, + [180747] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3925), 1, - sym_type_annotation, - STATE(4598), 1, + STATE(6032), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, + ACTIONS(9300), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136475] = 8, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(7220), 1, - anon_sym_DOT, - ACTIONS(7301), 1, - sym_identifier, - STATE(741), 1, - sym_string, - STATE(825), 1, - sym__module, - STATE(4429), 1, - sym_nested_identifier, + [180763] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(4015), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136501] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5506), 1, - sym_statement_block, + [180783] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136519] = 6, - ACTIONS(6403), 1, + ACTIONS(5388), 5, anon_sym_EQ, - ACTIONS(6411), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4237), 1, - sym_type_annotation, - STATE(4847), 1, + anon_sym_QMARK, + [180795] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6056), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9300), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136541] = 6, - ACTIONS(6403), 1, + [180811] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5388), 5, anon_sym_EQ, - ACTIONS(6411), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - STATE(3917), 1, - sym_type_annotation, - STATE(5106), 1, - sym__initializer, + anon_sym_QMARK, + [180823] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136563] = 6, - ACTIONS(6403), 1, + ACTIONS(5388), 5, anon_sym_EQ, - ACTIONS(6411), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4021), 1, - sym_type_annotation, - STATE(4792), 1, - sym__initializer, + anon_sym_QMARK, + [180835] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4462), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136585] = 6, - ACTIONS(6403), 1, + [180855] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3967), 1, - sym_type_annotation, - STATE(4855), 1, + STATE(6034), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136607] = 3, - ACTIONS(7303), 1, + [180871] = 4, + ACTIONS(7336), 1, anon_sym_EQ, + STATE(6035), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 6, + ACTIONS(9121), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [136623] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5334), 1, - sym_statement_block, + anon_sym_SEMI, + [180887] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7297), 5, + ACTIONS(2723), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136641] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4183), 1, - sym_type_annotation, - STATE(4758), 1, - sym__initializer, + [180899] = 5, + ACTIONS(9175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9227), 1, + sym__template_chars, + ACTIONS(9337), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136663] = 3, - ACTIONS(4470), 1, - sym_identifier, + STATE(5272), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [180917] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6832), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4472), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - anon_sym_BQUOTE, - [136679] = 3, - ACTIONS(7305), 1, + [180937] = 4, + ACTIONS(7336), 1, anon_sym_EQ, + STATE(5612), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3514), 6, + ACTIONS(9201), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [136695] = 8, - ACTIONS(2581), 1, + anon_sym_SEMI, + [180953] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7308), 1, - anon_sym_COLON, - ACTIONS(7310), 1, - anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5471), 1, + STATE(6830), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136721] = 6, - ACTIONS(6403), 1, + [180973] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4185), 1, - sym_type_annotation, - STATE(4762), 1, + STATE(5611), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136743] = 6, - ACTIONS(6403), 1, + [180989] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6828), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [181009] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3919), 1, - sym_type_annotation, - STATE(4641), 1, + STATE(5610), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9208), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136765] = 6, - ACTIONS(6403), 1, + [181025] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3985), 1, - sym_type_annotation, - STATE(4596), 1, + STATE(6036), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136787] = 6, - ACTIONS(6403), 1, + [181041] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4244), 1, - sym_type_annotation, - STATE(4871), 1, + STATE(6037), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136809] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3992), 1, - sym_type_annotation, - STATE(4613), 1, - sym__initializer, + [181057] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(2647), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136831] = 8, - ACTIONS(6763), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(1723), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5501), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + anon_sym_PIPE_RBRACE, + [181069] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(3984), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136857] = 3, - ACTIONS(7312), 1, - anon_sym_AMP, + [181089] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6894), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [136873] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, + [181109] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6015), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4422), 4, + ACTIONS(9339), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [136893] = 3, - ACTIONS(7318), 1, - anon_sym_extends, + anon_sym_SEMI, + [181125] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4430), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - [136909] = 8, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6976), 1, + ACTIONS(8891), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(4006), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5502), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + anon_sym_COMMA, + anon_sym_SEMI, + [181137] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(5605), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136935] = 8, - ACTIONS(222), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1498), 1, - anon_sym_LBRACE, - ACTIONS(7236), 1, + [181157] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(7238), 1, - anon_sym_extends, - STATE(857), 1, - sym_object_type, - STATE(4419), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6823), 1, + sym__call_signature, + STATE(6901), 1, sym_type_parameters, - STATE(4766), 1, - sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136961] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, + [181177] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5506), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 4, + ACTIONS(9341), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [136981] = 8, - ACTIONS(6763), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(1758), 1, - sym_class_body, + anon_sym_SEMI, + [181193] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, STATE(5071), 1, - sym_extends_clause, - STATE(5524), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137007] = 3, - ACTIONS(7312), 1, - anon_sym_AMP, + [181213] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 6, + ACTIONS(9343), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [137023] = 6, - ACTIONS(6403), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181225] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4188), 1, - sym_type_annotation, - STATE(4767), 1, + STATE(6014), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137045] = 4, - ACTIONS(6411), 1, + [181241] = 4, + ACTIONS(8415), 1, anon_sym_COLON, - STATE(4000), 1, - sym_type_annotation, + ACTIONS(9345), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7320), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137063] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4240), 1, + STATE(6134), 3, sym_type_annotation, - STATE(4864), 1, + sym_asserts_annotation, + sym_type_predicate_annotation, + [181257] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5603), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9348), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137085] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4358), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137105] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4362), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137125] = 4, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4044), 1, - sym_type_annotation, + [181273] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8353), 1, + anon_sym_abstract, + ACTIONS(9350), 1, + anon_sym_class, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7322), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137143] = 6, - ACTIONS(6403), 1, + [181293] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4189), 1, - sym_type_annotation, - STATE(4769), 1, + STATE(6038), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137165] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4190), 1, - sym_type_annotation, - STATE(4774), 1, - sym__initializer, + [181309] = 5, + ACTIONS(9175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9227), 1, + sym__template_chars, + ACTIONS(9352), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137187] = 6, - ACTIONS(6403), 1, + STATE(5272), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [181327] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4191), 1, - sym_type_annotation, - STATE(4775), 1, + STATE(6039), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137209] = 2, + [181343] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6359), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7324), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [137223] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4198), 1, - sym_type_annotation, - STATE(4564), 1, - sym__initializer, + [181363] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(3976), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137245] = 6, - ACTIONS(6403), 1, + [181383] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4199), 1, - sym_type_annotation, - STATE(4785), 1, + STATE(6013), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137267] = 2, + [181399] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6033), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7098), 7, + ACTIONS(9300), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [137281] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5351), 1, - sym_statement_block, + [181415] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7299), 5, + ACTIONS(2527), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137299] = 8, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6976), 1, - anon_sym_LBRACE, - STATE(4062), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5213), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + [181427] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4760), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137325] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5198), 1, - sym_statement_block, + [181447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7258), 5, + ACTIONS(2511), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137343] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5204), 1, - sym_statement_block, + [181459] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6085), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7326), 5, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137361] = 6, - ACTIONS(6403), 1, + [181475] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4200), 1, - sym_type_annotation, - STATE(4789), 1, + STATE(6083), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137383] = 6, - ACTIONS(6403), 1, + [181491] = 5, + ACTIONS(2275), 1, + anon_sym_DQUOTE, + ACTIONS(2277), 1, + anon_sym_SQUOTE, + ACTIONS(9354), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(6019), 2, + sym__module_export_name, + sym_string, + [181509] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4201), 1, - sym_type_annotation, - STATE(4790), 1, + STATE(6071), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137405] = 6, - ACTIONS(6403), 1, + [181525] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4390), 1, - sym_type_annotation, - STATE(5125), 1, + STATE(6012), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137427] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, + [181541] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8353), 1, + anon_sym_abstract, + ACTIONS(8935), 1, + anon_sym_class, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137447] = 6, - ACTIONS(6403), 1, + [181561] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6757), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [181581] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6956), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [181601] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6818), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [181621] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4286), 1, - sym_type_annotation, - STATE(4943), 1, + STATE(6049), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137469] = 3, - ACTIONS(6781), 1, - anon_sym_is, + [181637] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6755), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [137485] = 6, - ACTIONS(6403), 1, + [181657] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4208), 1, - sym_type_annotation, - STATE(4805), 1, + STATE(5998), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9356), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137507] = 8, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2201), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5230), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + [181673] = 5, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + ACTIONS(9358), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137533] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, + STATE(7350), 2, + sym__module_export_name, + sym_string, + [181691] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6958), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137553] = 6, - ACTIONS(6254), 1, - anon_sym_EQ, - STATE(4540), 1, - sym_constraint, - STATE(5495), 1, - sym_default_type, + [181711] = 6, + ACTIONS(4041), 1, + anon_sym_LBRACE, + ACTIONS(9185), 1, + anon_sym_SEMI, + ACTIONS(9187), 1, + sym__automatic_semicolon, + ACTIONS(9189), 1, + sym__function_signature_automatic_semicolon, + STATE(2179), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6258), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(7328), 2, - anon_sym_COLON, - anon_sym_extends, - [137575] = 8, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6976), 1, - anon_sym_LBRACE, - STATE(4076), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5237), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + [181731] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(5241), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137601] = 8, - ACTIONS(6763), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(1628), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5249), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + [181751] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8351), 1, + anon_sym_class, + ACTIONS(8353), 1, + anon_sym_abstract, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137627] = 6, - ACTIONS(6403), 1, + [181771] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4083), 1, - sym_type_annotation, - STATE(5055), 1, + STATE(5523), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6656), 3, + ACTIONS(9360), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137649] = 2, + [181787] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6097), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4989), 7, + ACTIONS(9300), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [137663] = 6, - ACTIONS(6403), 1, + [181803] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3929), 1, - sym_type_annotation, - STATE(4714), 1, + STATE(6094), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137685] = 6, - ACTIONS(6254), 1, - anon_sym_EQ, - STATE(4456), 1, - sym_constraint, - STATE(5346), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7328), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7330), 2, - anon_sym_COMMA, - anon_sym_GT, - [137707] = 5, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(7332), 1, - sym_identifier, - ACTIONS(7334), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7336), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [137727] = 8, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2341), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5530), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137753] = 6, - ACTIONS(6403), 1, + [181819] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4267), 1, - sym_type_annotation, - STATE(4926), 1, + STATE(5628), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6715), 3, + ACTIONS(9362), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137775] = 8, - ACTIONS(6835), 1, + [181835] = 5, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7646), 1, anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6976), 1, - anon_sym_LBRACE, - STATE(4106), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5289), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137801] = 8, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7338), 1, - sym_identifier, - ACTIONS(7340), 1, - anon_sym_STAR, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5442), 1, - sym__call_signature, + ACTIONS(9137), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137827] = 6, - ACTIONS(6403), 1, + ACTIONS(9364), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [181853] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4395), 1, - sym_type_annotation, - STATE(5127), 1, + STATE(6092), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137849] = 8, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7310), 1, - anon_sym_QMARK, - ACTIONS(7342), 1, - anon_sym_COLON, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5471), 1, - sym__call_signature, + [181869] = 6, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(9368), 1, + anon_sym_GT, + ACTIONS(9370), 1, + sym_jsx_identifier, + STATE(6131), 1, + sym_nested_identifier, + STATE(7356), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137875] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, + [181889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4311), 4, + ACTIONS(1871), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137895] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4287), 1, - sym_type_annotation, - STATE(4946), 1, - sym__initializer, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181901] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(2839), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137917] = 6, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [181913] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4288), 1, - sym_type_annotation, - STATE(4950), 1, + STATE(5987), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137939] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4985), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + [181929] = 6, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(9231), 1, anon_sym_SEMI, - anon_sym_COLON, - [137953] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4401), 1, - sym_type_annotation, - STATE(5142), 1, - sym__initializer, + ACTIONS(9233), 1, + sym__automatic_semicolon, + ACTIONS(9235), 1, + sym__function_signature_automatic_semicolon, + STATE(4859), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137975] = 8, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6960), 1, - anon_sym_LBRACE, - STATE(234), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5350), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + [181949] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4398), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138001] = 6, - ACTIONS(6403), 1, + [181969] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4087), 1, - sym_type_annotation, - STATE(5072), 1, + STATE(5986), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138023] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4406), 1, - sym_type_annotation, - STATE(5143), 1, - sym__initializer, + [181985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(8241), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138045] = 2, + anon_sym_PIPE_RBRACE, + [181997] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6875), 7, + ACTIONS(1871), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [138059] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4241), 1, - sym_type_annotation, - STATE(4865), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [182009] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9372), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138081] = 6, - ACTIONS(6403), 1, + anon_sym_PIPE_RBRACE, + [182021] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4407), 1, - sym_type_annotation, - STATE(5146), 1, + STATE(6080), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9300), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138103] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4245), 1, - sym_type_annotation, - STATE(4873), 1, - sym__initializer, + [182037] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(8167), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138125] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5267), 1, - sym_statement_block, + anon_sym_PIPE_RBRACE, + [182049] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7344), 5, + ACTIONS(8177), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138143] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5269), 1, - sym_statement_block, + [182061] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(5248), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7346), 5, + [182081] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8179), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138161] = 6, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(7266), 1, - sym_identifier, - STATE(4442), 1, - sym_variable_declarator, + [182093] = 3, + ACTIONS(4571), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3661), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [138183] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5352), 1, - sym_statement_block, + ACTIONS(5452), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [182107] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5984), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7346), 5, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138201] = 4, - ACTIONS(2437), 1, - anon_sym_LBRACE, - STATE(5383), 1, - sym_statement_block, + [182123] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7344), 5, + ACTIONS(8271), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138219] = 6, - ACTIONS(6403), 1, + [182135] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4384), 1, - sym_type_annotation, - STATE(5111), 1, + STATE(5982), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138241] = 6, - ACTIONS(6403), 1, + [182151] = 5, + ACTIONS(9175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9227), 1, + sym__template_chars, + ACTIONS(9374), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5272), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [182169] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4104), 1, - sym_type_annotation, - STATE(5118), 1, + STATE(5922), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138263] = 6, - ACTIONS(6403), 1, + [182185] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4247), 1, - sym_type_annotation, - STATE(4876), 1, + STATE(6074), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9300), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138285] = 6, - ACTIONS(6403), 1, + [182201] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4108), 1, - sym_type_annotation, - STATE(5147), 1, + STATE(5513), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9378), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138307] = 6, - ACTIONS(6403), 1, + [182217] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4289), 1, - sym_type_annotation, - STATE(4952), 1, + STATE(5923), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138329] = 6, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(7266), 1, - sym_identifier, - STATE(4452), 1, - sym_variable_declarator, + [182233] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3661), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [138351] = 6, - ACTIONS(6403), 1, + ACTIONS(9380), 5, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4171), 1, - sym_type_annotation, - STATE(4736), 1, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [182245] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6073), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6632), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138373] = 8, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7348), 1, - sym_identifier, - ACTIONS(7350), 1, - anon_sym_STAR, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5442), 1, - sym__call_signature, + [182261] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138399] = 6, - ACTIONS(6403), 1, + ACTIONS(9382), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [182279] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4129), 1, - sym_type_annotation, - STATE(4612), 1, + STATE(5978), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138421] = 6, - ACTIONS(6403), 1, + [182295] = 6, + ACTIONS(9384), 1, + sym_identifier, + ACTIONS(9386), 1, + anon_sym_GT, + ACTIONS(9388), 1, + sym_jsx_identifier, + STATE(6350), 1, + sym_nested_identifier, + STATE(7515), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [182315] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4409), 1, - sym_type_annotation, - STATE(5149), 1, + STATE(5969), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138443] = 6, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, + [182331] = 4, + ACTIONS(7292), 1, anon_sym_LBRACK, - ACTIONS(7266), 1, - sym_identifier, - STATE(4506), 1, - sym_variable_declarator, + ACTIONS(9390), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3661), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [138465] = 8, - ACTIONS(2581), 1, + ACTIONS(4417), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [182347] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5926), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182363] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7352), 1, - sym_identifier, - ACTIONS(7354), 1, - anon_sym_STAR, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5441), 1, + STATE(6750), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138491] = 3, - ACTIONS(4142), 1, - sym_identifier, + [182383] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5927), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 6, - anon_sym_LBRACE, + ACTIONS(9376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182399] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, + STATE(4505), 1, + sym_formal_parameters, + STATE(6748), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [182419] = 5, + ACTIONS(9392), 1, anon_sym_BQUOTE, - [138507] = 5, - ACTIONS(5644), 1, + ACTIONS(9394), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9397), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5272), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [182437] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6068), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9121), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5700), 1, - anon_sym_RBRACE, - STATE(5124), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [182453] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6065), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(9300), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182469] = 6, + ACTIONS(2525), 1, anon_sym_LT, - anon_sym_QMARK, - [138527] = 4, - ACTIONS(7190), 1, - anon_sym_LBRACE, - STATE(4349), 1, - sym_statement_block, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6746), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [182489] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(6064), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1712), 5, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138545] = 8, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6960), 1, - anon_sym_LBRACE, - STATE(216), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5256), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + [182505] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6812), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138571] = 8, - ACTIONS(2581), 1, + [182525] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7356), 1, - sym_identifier, - ACTIONS(7358), 1, - anon_sym_STAR, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5304), 1, + STATE(6741), 1, sym__call_signature, - STATE(5349), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138597] = 2, + [182545] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6810), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3514), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [138611] = 6, - ACTIONS(6403), 1, + [182565] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6901), 1, + sym_type_parameters, + STATE(6968), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [182585] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4113), 1, - sym_type_annotation, - STATE(4570), 1, + STATE(6061), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138633] = 6, - ACTIONS(6403), 1, + [182601] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(9220), 1, + anon_sym_abstract, + ACTIONS(9400), 1, + anon_sym_class, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [182621] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6736), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [182641] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3993), 1, - sym_type_annotation, - STATE(4633), 1, + STATE(5968), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138655] = 8, - ACTIONS(6763), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2473), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5203), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + [182657] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6807), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138681] = 7, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(6701), 1, + [182677] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7230), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [182689] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3804), 1, + sym_formal_parameters, + STATE(4840), 1, + sym__call_signature, + STATE(6168), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [182709] = 6, + ACTIONS(9402), 1, sym_identifier, - ACTIONS(6749), 1, - anon_sym_type, - STATE(5330), 1, - sym__import_identifier, + ACTIONS(9404), 1, + anon_sym_GT, + ACTIONS(9406), 1, + sym_jsx_identifier, + STATE(6108), 1, + sym_nested_identifier, + STATE(7403), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5830), 2, - sym__module_export_name, - sym_string, - [138705] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4114), 1, - sym_type_annotation, - STATE(4573), 1, - sym__initializer, + [182729] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9408), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138727] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4115), 1, - sym_type_annotation, - STATE(4576), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [182741] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(8215), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138749] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, + anon_sym_PIPE_RBRACE, + [182753] = 6, + ACTIONS(3921), 1, anon_sym_COLON, - STATE(4116), 1, - sym_type_annotation, - STATE(4584), 1, - sym__initializer, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5344), 1, + anon_sym_COMMA, + ACTIONS(9410), 1, + anon_sym_RBRACE, + STATE(5989), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138771] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4130), 1, - sym_type_annotation, - STATE(4615), 1, - sym__initializer, + [182773] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(8217), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138793] = 8, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(6976), 1, - anon_sym_LBRACE, - STATE(719), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5266), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + anon_sym_PIPE_RBRACE, + [182785] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_formal_parameters, + STATE(5251), 1, + sym__call_signature, + STATE(6292), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138819] = 8, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - STATE(2228), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5234), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + [182805] = 4, + ACTIONS(8415), 1, + anon_sym_COLON, + ACTIONS(9412), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138845] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3974), 1, + STATE(6229), 3, sym_type_annotation, - STATE(5044), 1, + sym_asserts_annotation, + sym_type_predicate_annotation, + [182821] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5967), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138867] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4229), 1, - sym_type_annotation, - STATE(4837), 1, - sym__initializer, + [182837] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7360), 3, + ACTIONS(8215), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138889] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4290), 1, - sym_type_annotation, - STATE(4959), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [182849] = 5, + ACTIONS(9175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9415), 1, + anon_sym_BQUOTE, + ACTIONS(9417), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138911] = 6, - ACTIONS(6403), 1, + STATE(5205), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [182867] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3930), 1, - sym_type_annotation, - STATE(4764), 1, + STATE(5966), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138933] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4246), 1, - sym_type_annotation, - STATE(4875), 1, - sym__initializer, + [182883] = 4, + STATE(6164), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9099), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(9419), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [138955] = 6, - ACTIONS(6403), 1, + [182899] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4119), 1, - sym_type_annotation, - STATE(4589), 1, + STATE(6060), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6648), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138977] = 6, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(7266), 1, - sym_identifier, - STATE(4813), 1, - sym_variable_declarator, + [182915] = 5, + ACTIONS(9175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9421), 1, + anon_sym_BQUOTE, + ACTIONS(9423), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3661), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [138999] = 6, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4248), 1, - sym_type_annotation, - STATE(4880), 1, - sym__initializer, + STATE(5329), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [182933] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6803), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [182953] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6773), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [182973] = 4, + STATE(6163), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 3, + ACTIONS(9099), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(9425), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [139021] = 6, - ACTIONS(6403), 1, + [182989] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3973), 1, - sym_type_annotation, - STATE(5019), 1, + STATE(5962), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139043] = 8, - ACTIONS(6835), 1, - anon_sym_extends, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(7096), 1, - anon_sym_LBRACE, - STATE(845), 1, - sym_class_body, - STATE(5071), 1, - sym_extends_clause, - STATE(5500), 1, - sym_class_heritage, - STATE(5674), 1, - sym_implements_clause, + [183005] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5931), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139069] = 6, - ACTIONS(6403), 1, + ACTIONS(9339), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183021] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4385), 1, - sym_type_annotation, - STATE(5113), 1, + STATE(6059), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139091] = 6, - ACTIONS(6403), 1, + [183037] = 4, + ACTIONS(7336), 1, anon_sym_EQ, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(3928), 1, - sym_type_annotation, - STATE(4685), 1, + STATE(5936), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6638), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139113] = 5, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(7362), 1, - sym_identifier, - ACTIONS(7364), 1, - anon_sym_LBRACK, + [183053] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6795), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4535), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [139132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4753), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139147] = 7, - ACTIONS(2581), 1, + [183073] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7366), 1, - anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5508), 1, + STATE(6706), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4640), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + [183093] = 6, + ACTIONS(2525), 1, anon_sym_LT, - [139185] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6730), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7368), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139200] = 7, - ACTIONS(2581), 1, + sym_comment, + [183113] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7370), 1, - sym_identifier, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5448), 1, + STATE(6708), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139223] = 2, + [183133] = 5, + ACTIONS(9175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9427), 1, + anon_sym_BQUOTE, + ACTIONS(9429), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7372), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139236] = 2, + STATE(5181), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [183151] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5960), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 6, + ACTIONS(9339), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139249] = 7, - ACTIONS(2581), 1, + [183167] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6409), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_QMARK, - STATE(3320), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3795), 1, + STATE(6710), 1, sym__call_signature, - STATE(5342), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139272] = 2, + [183187] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5937), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7324), 6, + ACTIONS(9339), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [139285] = 7, - ACTIONS(2581), 1, + [183203] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7378), 1, - sym_identifier, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5448), 1, + STATE(6728), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139308] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7380), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [183223] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5938), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139331] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, + ACTIONS(9339), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183239] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5958), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3669), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7382), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139348] = 4, - STATE(3766), 1, - aux_sym_object_type_repeat1, + [183255] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5940), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3665), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7384), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139365] = 7, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(7386), 1, - anon_sym_COMMA, - ACTIONS(7388), 1, - anon_sym_GT, - STATE(4571), 1, - aux_sym_implements_clause_repeat1, + [183271] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6715), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139388] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, + [183291] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6787), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7390), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [139407] = 2, + [183311] = 6, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6785), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2331), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [139420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7392), 6, + [183331] = 6, + ACTIONS(4041), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139435] = 3, - ACTIONS(3), 1, + ACTIONS(9139), 1, + anon_sym_SEMI, + ACTIONS(9141), 1, + sym__automatic_semicolon, + ACTIONS(9143), 1, + sym__function_signature_automatic_semicolon, + STATE(2376), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [183351] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5941), 1, + sym__initializer, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7394), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + sym_comment, + ACTIONS(9339), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183367] = 6, + ACTIONS(2525), 1, anon_sym_LT, - [139450] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6726), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6743), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5232), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [139467] = 4, - ACTIONS(7398), 1, + [183387] = 6, + ACTIONS(1026), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1576), 1, anon_sym_LBRACE, - STATE(2596), 1, - sym_statement_block, + ACTIONS(8251), 1, + anon_sym_extends, + STATE(5029), 1, + sym_object_type, + STATE(5569), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183407] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5942), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7280), 4, + ACTIONS(9339), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139484] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [183423] = 5, + ACTIONS(9175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9227), 1, + sym__template_chars, + ACTIONS(9431), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7368), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139499] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, + sym_comment, + STATE(5272), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [183441] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5946), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3649), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7400), 3, + ACTIONS(9339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7402), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + [183457] = 6, + ACTIONS(2525), 1, anon_sym_LT, - [139531] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7404), 1, - anon_sym_QMARK, - STATE(3320), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(3882), 1, + STATE(6780), 1, sym__call_signature, - STATE(5342), 1, + STATE(6901), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139554] = 4, - ACTIONS(7406), 1, - anon_sym_COMMA, - STATE(3748), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4322), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [139571] = 7, - ACTIONS(2581), 1, + [183477] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7409), 1, - sym_identifier, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5498), 1, + STATE(6718), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139594] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, + [183497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7411), 3, - anon_sym_LBRACE, + ACTIONS(5327), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [139613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [183509] = 3, + ACTIONS(9433), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7413), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139628] = 4, - ACTIONS(7398), 1, + sym_comment, + ACTIONS(9435), 4, anon_sym_LBRACE, - STATE(2586), 1, - sym_statement_block, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [183523] = 3, + ACTIONS(9437), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7226), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139645] = 4, - STATE(3821), 1, - aux_sym_object_type_repeat1, + ACTIONS(9439), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [183537] = 4, + ACTIONS(7336), 1, + anon_sym_EQ, + STATE(5953), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7417), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7415), 3, + ACTIONS(9356), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7368), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7419), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + [183553] = 6, + ACTIONS(2525), 1, anon_sym_LT, - [139692] = 7, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(7421), 1, - anon_sym_COMMA, - ACTIONS(7423), 1, - anon_sym_GT, - STATE(4683), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_formal_parameters, + STATE(6720), 1, + sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139715] = 7, - ACTIONS(2581), 1, + [183573] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7425), 1, - anon_sym_QMARK, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5523), 1, + STATE(6783), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139738] = 7, - ACTIONS(2581), 1, + [183593] = 6, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7427), 1, - sym_identifier, - STATE(3742), 1, + STATE(4505), 1, sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5411), 1, + STATE(6722), 1, sym__call_signature, + STATE(6901), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139761] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_statement_block, + [183613] = 5, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, + ACTIONS(9441), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139778] = 2, + [183630] = 5, + ACTIONS(8093), 1, + anon_sym_const, + ACTIONS(9443), 1, + sym_identifier, + ACTIONS(9445), 1, + anon_sym_GT, + STATE(6454), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, + [183647] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9447), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183664] = 5, + ACTIONS(3983), 1, anon_sym_LPAREN, + ACTIONS(9449), 1, anon_sym_LT, - anon_sym_QMARK, - [139791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + STATE(1557), 1, + sym_type_arguments, + STATE(1558), 1, + sym_arguments, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7429), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139806] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2587), 1, - sym_statement_block, + sym_comment, + [183681] = 4, + ACTIONS(9451), 1, + anon_sym_COMMA, + STATE(5439), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7256), 4, + ACTIONS(9453), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [139823] = 3, + [183696] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4800), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, + ACTIONS(9455), 1, sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139838] = 3, + ACTIONS(9457), 1, + anon_sym_SQUOTE, + ACTIONS(9459), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(5444), 1, + aux_sym__jsx_string_repeat2, + [183715] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4804), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, + ACTIONS(9457), 1, + anon_sym_DQUOTE, + ACTIONS(9461), 1, sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139853] = 3, - ACTIONS(3), 1, + ACTIONS(9463), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(5448), 1, + aux_sym__jsx_string_repeat1, + [183734] = 5, + ACTIONS(1690), 1, + anon_sym_COMMA, + ACTIONS(9465), 1, + anon_sym_EQ, + ACTIONS(9467), 1, + anon_sym_RBRACK, + STATE(6084), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [183751] = 5, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, + ACTIONS(9469), 1, + anon_sym_QMARK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(4800), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [139868] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, + sym_comment, + [183768] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9471), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3655), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7431), 3, - sym__automatic_semicolon, + [183785] = 4, + ACTIONS(9451), 1, anon_sym_COMMA, + STATE(5437), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9473), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [139885] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7433), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(3998), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [183800] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9475), 1, + anon_sym_DQUOTE, + STATE(5445), 1, + aux_sym_string_repeat1, + ACTIONS(9477), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183817] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139908] = 3, + ACTIONS(9479), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [183828] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4815), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + ACTIONS(9475), 1, + anon_sym_SQUOTE, + STATE(5446), 1, + aux_sym_string_repeat2, + ACTIONS(9481), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183845] = 5, + ACTIONS(2525), 1, anon_sym_LT, - [139923] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(6997), 1, + sym_type_parameters, + STATE(7401), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6753), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5405), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [139940] = 7, - ACTIONS(2581), 1, + [183862] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9483), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183879] = 5, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7435), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(3559), 1, - sym__call_signature, - STATE(5404), 1, + STATE(6999), 1, sym_type_parameters, + STATE(7391), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139963] = 4, - STATE(3810), 1, - aux_sym_object_type_repeat1, + [183896] = 5, + ACTIONS(9485), 1, + sym_identifier, + STATE(5170), 1, + sym_nested_type_identifier, + STATE(5535), 1, + sym_generic_type, + STATE(7208), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7439), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7437), 3, - sym__automatic_semicolon, + [183913] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9487), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183930] = 5, + ACTIONS(8200), 1, anon_sym_COMMA, - anon_sym_SEMI, - [139980] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - ACTIONS(7441), 1, - anon_sym_QMARK, - STATE(3320), 1, - sym_formal_parameters, - STATE(3886), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + ACTIONS(9489), 1, + anon_sym_LBRACE, + ACTIONS(9491), 1, + anon_sym_LBRACE_PIPE, + STATE(5441), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140003] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7443), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(4332), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [183947] = 5, + ACTIONS(8200), 1, + anon_sym_COMMA, + ACTIONS(9493), 1, + anon_sym_LBRACE, + ACTIONS(9495), 1, + anon_sym_LBRACE_PIPE, + STATE(5441), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140026] = 5, - ACTIONS(7445), 1, - anon_sym_default, - ACTIONS(7448), 1, - anon_sym_RBRACE, - ACTIONS(7450), 1, - anon_sym_case, + [183964] = 5, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(9497), 1, + anon_sym_class, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3774), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [140045] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7453), 1, - sym_identifier, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5498), 1, - sym__call_signature, + [183981] = 5, + ACTIONS(8200), 1, + anon_sym_COMMA, + ACTIONS(9493), 1, + anon_sym_LBRACE, + ACTIONS(9495), 1, + anon_sym_LBRACE_PIPE, + STATE(5441), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140068] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, + [183998] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9499), 1, + anon_sym_DQUOTE, + STATE(5372), 1, + aux_sym_string_repeat1, + ACTIONS(9501), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184015] = 4, + ACTIONS(9451), 1, + anon_sym_COMMA, + STATE(5483), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7458), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7455), 3, + ACTIONS(9503), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140085] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2565), 1, - sym_statement_block, + [184030] = 4, + ACTIONS(9451), 1, + anon_sym_COMMA, + STATE(5483), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7297), 4, + ACTIONS(9505), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140102] = 3, + [184045] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4819), 6, + ACTIONS(9499), 1, + anon_sym_SQUOTE, + STATE(5375), 1, + aux_sym_string_repeat2, + ACTIONS(9507), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184062] = 4, + ACTIONS(9509), 1, + anon_sym_COMMA, + STATE(5367), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8569), 2, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [140117] = 5, - ACTIONS(7460), 1, - anon_sym_BQUOTE, - ACTIONS(7462), 1, - anon_sym_DOLLAR_LBRACE, + anon_sym_GT, + [184077] = 5, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, + ACTIONS(9512), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7148), 2, - sym__template_chars, + [184094] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9514), 1, + anon_sym_SQUOTE, + STATE(5446), 1, + aux_sym_string_repeat2, + ACTIONS(9481), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - STATE(3858), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140136] = 3, + [184111] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4800), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [140151] = 5, - ACTIONS(7467), 1, - anon_sym_BQUOTE, - ACTIONS(7469), 1, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9514), 1, + anon_sym_DQUOTE, + STATE(5445), 1, + aux_sym_string_repeat1, + ACTIONS(9477), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184128] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9516), 1, + anon_sym_SQUOTE, + STATE(5369), 1, + aux_sym_string_repeat2, + ACTIONS(9518), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184145] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9520), 1, + anon_sym_DQUOTE, + STATE(5445), 1, + aux_sym_string_repeat1, + ACTIONS(9477), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184162] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9516), 1, + anon_sym_DQUOTE, + STATE(5370), 1, + aux_sym_string_repeat1, + ACTIONS(9522), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184179] = 4, + ACTIONS(9524), 1, + anon_sym_from, + STATE(6353), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7464), 2, - sym__template_chars, + ACTIONS(4655), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184194] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9520), 1, + anon_sym_SQUOTE, + STATE(5446), 1, + aux_sym_string_repeat2, + ACTIONS(9481), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - STATE(3781), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140170] = 3, - ACTIONS(7472), 1, + [184211] = 5, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9526), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [184228] = 3, + ACTIONS(9390), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 3, + anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [140185] = 5, - ACTIONS(7462), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7476), 1, - anon_sym_BQUOTE, + [184241] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9528), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7474), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3781), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140204] = 5, - ACTIONS(7472), 1, + [184258] = 5, + ACTIONS(8155), 1, anon_sym_AMP, - ACTIONS(7478), 1, + ACTIONS(8157), 1, anon_sym_PIPE, - ACTIONS(7480), 1, + ACTIONS(8159), 1, anon_sym_extends, + ACTIONS(9530), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4422), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140223] = 3, - ACTIONS(7482), 1, - anon_sym_extends, + [184275] = 4, + ACTIONS(825), 1, + anon_sym_BQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4430), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(1707), 2, + sym_template_string, + sym_arguments, + [184290] = 5, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, - [140238] = 4, - STATE(3745), 1, - aux_sym_object_type_repeat1, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9532), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3651), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7484), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140255] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [184307] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3665), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7384), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140272] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9534), 1, + anon_sym_DQUOTE, + STATE(5408), 1, + aux_sym_string_repeat1, + ACTIONS(9536), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184324] = 5, + ACTIONS(3436), 1, anon_sym_LPAREN, - ACTIONS(7486), 1, - anon_sym_QMARK, - STATE(3742), 1, - sym_formal_parameters, - STATE(5341), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(7236), 1, + anon_sym_LT, + STATE(3499), 1, + sym_arguments, + STATE(3645), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140295] = 2, + [184341] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9534), 1, + anon_sym_SQUOTE, + STATE(5409), 1, + aux_sym_string_repeat2, + ACTIONS(9538), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184358] = 4, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4517), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2335), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [140308] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_statement_block, + STATE(2313), 2, + sym_template_string, + sym_arguments, + [184373] = 5, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(4031), 1, + sym_formal_parameters, + STATE(7057), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7344), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [184390] = 4, + ACTIONS(4553), 1, anon_sym_COMMA, - anon_sym_SEMI, - [140325] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2589), 1, - sym_statement_block, + STATE(5466), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7262), 4, + ACTIONS(8339), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [184405] = 4, + ACTIONS(9542), 1, + anon_sym_COMMA, + STATE(5388), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(4650), 6, + sym_comment, + ACTIONS(9540), 2, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [140357] = 3, + anon_sym_implements, + [184420] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4654), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [140372] = 3, + ACTIONS(9545), 1, + anon_sym_SQUOTE, + STATE(5446), 1, + aux_sym_string_repeat2, + ACTIONS(9481), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184437] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7488), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [140387] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2569), 1, - sym_statement_block, + ACTIONS(9545), 1, + anon_sym_DQUOTE, + STATE(5445), 1, + aux_sym_string_repeat1, + ACTIONS(9477), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184454] = 5, + ACTIONS(1690), 1, + anon_sym_COMMA, + ACTIONS(9465), 1, + anon_sym_EQ, + ACTIONS(9547), 1, + anon_sym_RBRACK, + STATE(5840), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7346), 4, + [184471] = 4, + ACTIONS(9524), 1, + anon_sym_from, + STATE(6150), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4916), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140404] = 7, - ACTIONS(7120), 1, - anon_sym_GT, - ACTIONS(7490), 1, - sym_identifier, - ACTIONS(7492), 1, - sym_jsx_identifier, - ACTIONS(7494), 1, - anon_sym_SLASH_GT, - STATE(3137), 1, - sym_nested_identifier, - STATE(3352), 1, - sym_jsx_namespace_name, + [184486] = 5, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(7270), 1, + anon_sym_LT, + STATE(3606), 1, + sym_arguments, + STATE(3789), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140427] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7496), 1, - sym_identifier, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5448), 1, - sym__call_signature, + [184503] = 4, + ACTIONS(9451), 1, + anon_sym_COMMA, + STATE(5364), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140450] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - anon_sym_QMARK, - STATE(3320), 1, - sym_formal_parameters, - STATE(3875), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + ACTIONS(9549), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184518] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9551), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140473] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2588), 1, - sym_statement_block, + [184535] = 4, + ACTIONS(9451), 1, + anon_sym_COMMA, + STATE(5365), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7268), 4, + ACTIONS(9553), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140490] = 7, - ACTIONS(7246), 1, - anon_sym_COMMA, - ACTIONS(7250), 1, + [184550] = 5, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(7500), 1, - anon_sym_LBRACE, - ACTIONS(7502), 1, - anon_sym_LBRACE_PIPE, - STATE(4473), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5098), 1, - sym_type_arguments, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(6455), 1, + sym_type_parameters, + STATE(7522), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140513] = 7, - ACTIONS(2581), 1, + [184567] = 5, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7504), 1, - sym_identifier, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, + STATE(7041), 1, sym_type_parameters, - STATE(5498), 1, - sym__call_signature, + STATE(7283), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140536] = 4, - STATE(3849), 1, - aux_sym_object_type_repeat1, + [184584] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9555), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7508), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7506), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140553] = 4, - ACTIONS(4267), 1, - anon_sym_COMMA, - STATE(3748), 1, - aux_sym_sequence_expression_repeat1, + [184601] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9557), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7510), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [140570] = 4, - STATE(3872), 1, - aux_sym_object_type_repeat1, + [184618] = 3, + ACTIONS(6471), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3673), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7512), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140587] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2605), 1, - sym_statement_block, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [184631] = 5, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(9559), 1, + anon_sym_LT, + STATE(1961), 1, + sym_arguments, + STATE(2069), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7346), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140604] = 7, - ACTIONS(7120), 1, - anon_sym_GT, - ACTIONS(7514), 1, - sym_identifier, - ACTIONS(7516), 1, - sym_jsx_identifier, - ACTIONS(7518), 1, - anon_sym_SLASH_GT, - STATE(3108), 1, - sym_nested_identifier, - STATE(3356), 1, - sym_jsx_namespace_name, + [184648] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9561), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140627] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2574), 1, - sym_statement_block, + [184665] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9563), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7344), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140644] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7520), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(3679), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [184682] = 3, + ACTIONS(9565), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140667] = 4, - STATE(3825), 1, - aux_sym_object_type_repeat1, + ACTIONS(3921), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [184695] = 4, + ACTIONS(9524), 1, + anon_sym_from, + STATE(6192), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3697), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7522), 3, + ACTIONS(9567), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140684] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, + [184710] = 4, + ACTIONS(9524), 1, + anon_sym_from, + STATE(6328), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3697), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7522), 3, + ACTIONS(9569), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140701] = 3, + [184725] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7524), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [140716] = 5, - ACTIONS(7472), 1, + ACTIONS(9571), 1, + anon_sym_DQUOTE, + STATE(5445), 1, + aux_sym_string_repeat1, + ACTIONS(9477), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184742] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9571), 1, + anon_sym_SQUOTE, + STATE(5446), 1, + aux_sym_string_repeat2, + ACTIONS(9481), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184759] = 5, + ACTIONS(7489), 1, anon_sym_AMP, - ACTIONS(7478), 1, + ACTIONS(7491), 1, anon_sym_PIPE, - ACTIONS(7480), 1, + ACTIONS(7493), 1, anon_sym_extends, + ACTIONS(9573), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140735] = 3, - ACTIONS(7472), 1, - anon_sym_AMP, - ACTIONS(5), 2, + [184776] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(9575), 1, + anon_sym_SQUOTE, + STATE(5389), 1, + aux_sym_string_repeat2, + ACTIONS(9577), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184793] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4136), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9575), 1, + anon_sym_DQUOTE, + STATE(5390), 1, + aux_sym_string_repeat1, + ACTIONS(9579), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184810] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, + ACTIONS(7493), 1, anon_sym_extends, - [140750] = 5, - ACTIONS(7526), 1, - anon_sym_AT, - STATE(1244), 1, - sym_decorator, - STATE(3814), 1, - aux_sym_export_statement_repeat1, + ACTIONS(9581), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [140769] = 3, + [184827] = 4, + ACTIONS(9583), 1, + anon_sym_EQ, + STATE(7094), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7708), 2, + anon_sym_in, + anon_sym_of, + [184842] = 5, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(6799), 1, + sym_type_parameters, + STATE(7277), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [184859] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4910), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [140784] = 3, + ACTIONS(9585), 1, + anon_sym_DQUOTE, + STATE(5426), 1, + aux_sym_string_repeat1, + ACTIONS(9587), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184876] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4918), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + ACTIONS(9585), 1, + anon_sym_SQUOTE, + STATE(5427), 1, + aux_sym_string_repeat2, + ACTIONS(9589), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184893] = 5, + ACTIONS(7189), 1, anon_sym_LT, - [140799] = 7, - ACTIONS(2581), 1, + ACTIONS(7594), 1, + anon_sym_LPAREN, + STATE(3288), 1, + sym_arguments, + STATE(3373), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [184910] = 5, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7529), 1, - anon_sym_QMARK, - STATE(3742), 1, + STATE(6662), 1, + sym_type_parameters, + STATE(7233), 1, sym_formal_parameters, - STATE(5243), 1, - sym__call_signature, - STATE(5349), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [184927] = 5, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(6893), 1, sym_type_parameters, + STATE(7443), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140822] = 7, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(7218), 1, - sym_identifier, - STATE(711), 1, - sym_nested_identifier, - STATE(741), 1, - sym_string, - STATE(855), 1, - sym__module, + [184944] = 3, + ACTIONS(9591), 1, + sym_escape_sequence, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9593), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [184957] = 5, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(6900), 1, + sym_type_parameters, + STATE(7266), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [184974] = 5, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(6513), 1, + sym_type_parameters, + STATE(7568), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140845] = 5, - ACTIONS(7472), 1, + [184991] = 5, + ACTIONS(7489), 1, anon_sym_AMP, - ACTIONS(7478), 1, + ACTIONS(7491), 1, anon_sym_PIPE, - ACTIONS(7480), 1, + ACTIONS(7493), 1, anon_sym_extends, + ACTIONS(9596), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140864] = 5, - ACTIONS(7472), 1, + [185008] = 5, + ACTIONS(8155), 1, anon_sym_AMP, - ACTIONS(7478), 1, + ACTIONS(8157), 1, anon_sym_PIPE, - ACTIONS(7480), 1, + ACTIONS(8159), 1, anon_sym_extends, + ACTIONS(9598), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 3, - anon_sym_as, - anon_sym_LBRACK, + [185025] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9600), 1, + anon_sym_DQUOTE, + STATE(5445), 1, + aux_sym_string_repeat1, + ACTIONS(9477), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185042] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9600), 1, + anon_sym_SQUOTE, + STATE(5446), 1, + aux_sym_string_repeat2, + ACTIONS(9481), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185059] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9602), 1, anon_sym_RBRACK, - [140883] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3673), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7512), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140900] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - ACTIONS(7531), 1, - anon_sym_QMARK, - STATE(3320), 1, - sym_formal_parameters, - STATE(3873), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + [185076] = 5, + ACTIONS(8093), 1, + anon_sym_const, + ACTIONS(9443), 1, + sym_identifier, + ACTIONS(9604), 1, + anon_sym_GT, + STATE(6454), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140923] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - ACTIONS(7533), 1, + [185093] = 5, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, + ACTIONS(9606), 1, anon_sym_QMARK, - STATE(3320), 1, - sym_formal_parameters, - STATE(3762), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140946] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7535), 1, - anon_sym_QMARK, - STATE(3742), 1, - sym_formal_parameters, - STATE(5335), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + [185110] = 5, + ACTIONS(8200), 1, + anon_sym_COMMA, + ACTIONS(8763), 1, + anon_sym_LBRACE, + ACTIONS(8765), 1, + anon_sym_LBRACE_PIPE, + STATE(5362), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140969] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, + [185127] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3659), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7537), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140986] = 4, - ACTIONS(7539), 1, + ACTIONS(9608), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [185138] = 5, + ACTIONS(8093), 1, + anon_sym_const, + ACTIONS(9443), 1, sym_identifier, - ACTIONS(7541), 1, - anon_sym_EQ, + ACTIONS(9610), 1, + anon_sym_GT, + STATE(6454), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7543), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [141003] = 6, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(7202), 1, + [185155] = 4, + ACTIONS(7199), 1, anon_sym_EQ, - STATE(4502), 1, - sym_type_annotation, - STATE(5257), 1, - sym__initializer, + STATE(7174), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7545), 2, + ACTIONS(9612), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [141024] = 5, - ACTIONS(7472), 1, - anon_sym_AMP, - ACTIONS(7478), 1, - anon_sym_PIPE, - ACTIONS(7480), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4197), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141043] = 5, - ACTIONS(7472), 1, - anon_sym_AMP, - ACTIONS(7478), 1, - anon_sym_PIPE, - ACTIONS(7480), 1, - anon_sym_extends, + anon_sym_GT, + [185170] = 4, + ACTIONS(7222), 1, + anon_sym_STAR, + ACTIONS(7226), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141062] = 4, - STATE(3787), 1, - aux_sym_object_type_repeat1, + STATE(7317), 2, + sym_namespace_import, + sym_named_imports, + [185185] = 4, + ACTIONS(8192), 1, + anon_sym_EQ, + STATE(7171), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7549), 2, + ACTIONS(9614), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7547), 3, - sym__automatic_semicolon, + [185200] = 4, + ACTIONS(9451), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141079] = 4, - STATE(3867), 1, - aux_sym_object_type_repeat1, + STATE(5483), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3695), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7551), 3, + ACTIONS(9616), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [141096] = 7, - ACTIONS(2581), 1, + [185215] = 5, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7553), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(3596), 1, - sym__call_signature, - STATE(5404), 1, + STATE(7176), 1, sym_type_parameters, + STATE(7180), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141119] = 7, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(7555), 1, - anon_sym_LBRACE, - ACTIONS(7557), 1, + [185232] = 4, + ACTIONS(9451), 1, anon_sym_COMMA, - STATE(5116), 1, - aux_sym_implements_clause_repeat1, + STATE(5483), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141142] = 7, - ACTIONS(2581), 1, + ACTIONS(9618), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185247] = 5, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7559), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(3499), 1, - sym__call_signature, - STATE(5404), 1, + STATE(6888), 1, sym_type_parameters, + STATE(7454), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141165] = 2, + [185264] = 5, + ACTIONS(9620), 1, + anon_sym_LBRACE, + ACTIONS(9622), 1, + anon_sym_COMMA, + ACTIONS(9625), 1, + anon_sym_LBRACE_PIPE, + STATE(5441), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [141178] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7561), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(3537), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [185281] = 4, + ACTIONS(8192), 1, + anon_sym_EQ, + STATE(6231), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141201] = 5, - ACTIONS(7472), 1, - anon_sym_AMP, - ACTIONS(7478), 1, - anon_sym_PIPE, - ACTIONS(7480), 1, - anon_sym_extends, + ACTIONS(9627), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [185296] = 4, + ACTIONS(9629), 1, + anon_sym_COMMA, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4311), 3, - anon_sym_as, - anon_sym_LBRACK, + ACTIONS(5073), 2, + anon_sym_RPAREN, anon_sym_RBRACK, - [141220] = 3, + [185311] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7563), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, + ACTIONS(9632), 1, sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [141235] = 7, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(7565), 1, - anon_sym_COMMA, - ACTIONS(7567), 1, - anon_sym_GT, - STATE(4655), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(9634), 1, + anon_sym_SQUOTE, + ACTIONS(9636), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(5464), 1, + aux_sym__jsx_string_repeat2, + [185330] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9638), 1, + anon_sym_DQUOTE, + STATE(5445), 1, + aux_sym_string_repeat1, + ACTIONS(9640), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185347] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9643), 1, + anon_sym_SQUOTE, + STATE(5446), 1, + aux_sym_string_repeat2, + ACTIONS(9645), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9648), 1, + anon_sym_DQUOTE, + STATE(5451), 1, + aux_sym_string_repeat1, + ACTIONS(9650), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185381] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9634), 1, + anon_sym_DQUOTE, + ACTIONS(9652), 1, + sym_html_character_reference, + ACTIONS(9654), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(5463), 1, + aux_sym__jsx_string_repeat1, + [185400] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9648), 1, + anon_sym_SQUOTE, + STATE(5452), 1, + aux_sym_string_repeat2, + ACTIONS(9656), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185417] = 5, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(9658), 1, + anon_sym_class, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141258] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7569), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(5163), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [185434] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9660), 1, + anon_sym_DQUOTE, + STATE(5445), 1, + aux_sym_string_repeat1, + ACTIONS(9477), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9660), 1, + anon_sym_SQUOTE, + STATE(5446), 1, + aux_sym_string_repeat2, + ACTIONS(9481), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185468] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141281] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7571), 1, - sym_identifier, - STATE(3742), 1, - sym_formal_parameters, - STATE(5284), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(6214), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185479] = 5, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(9662), 1, + anon_sym_export, + STATE(2919), 1, + aux_sym_export_statement_repeat1, + STATE(3068), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141304] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7573), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(4307), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [185496] = 4, + ACTIONS(9666), 1, + anon_sym_COMMA, + STATE(5465), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141327] = 7, - ACTIONS(2581), 1, + ACTIONS(9664), 2, + anon_sym_LBRACE, + anon_sym_implements, + [185511] = 5, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(7575), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(4213), 1, - sym__call_signature, - STATE(5404), 1, + STATE(6318), 1, sym_type_parameters, + STATE(7297), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141350] = 7, - ACTIONS(3438), 1, + [185528] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9668), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [185545] = 5, + ACTIONS(3420), 1, anon_sym_LPAREN, - ACTIONS(5991), 1, + ACTIONS(7189), 1, anon_sym_LT, - ACTIONS(6847), 1, - anon_sym_DOT, - ACTIONS(7577), 1, - anon_sym_RPAREN, - STATE(1194), 1, + STATE(3288), 1, sym_arguments, - STATE(5478), 1, + STATE(3373), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [185562] = 4, + ACTIONS(7199), 1, + anon_sym_EQ, + STATE(6434), 1, + sym_default_type, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7579), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [141388] = 2, + sym_comment, + ACTIONS(9670), 2, + anon_sym_COMMA, + anon_sym_GT, + [185577] = 5, + ACTIONS(8093), 1, + anon_sym_const, + ACTIONS(9443), 1, + sym_identifier, + ACTIONS(9672), 1, + anon_sym_GT, + STATE(6454), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2319), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [185594] = 5, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, + ACTIONS(7493), 1, anon_sym_extends, - [141401] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2572), 1, - sym_statement_block, + ACTIONS(9674), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7297), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141418] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7581), 1, - anon_sym_export, - ACTIONS(7583), 1, - anon_sym_class, - ACTIONS(7585), 1, - anon_sym_abstract, - STATE(1244), 1, - sym_decorator, - STATE(3814), 1, - aux_sym_export_statement_repeat1, + [185611] = 5, + ACTIONS(9676), 1, + sym_identifier, + STATE(4405), 1, + sym_nested_type_identifier, + STATE(5431), 1, + sym_generic_type, + STATE(7208), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141441] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [185628] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7551), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141458] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7587), 1, - anon_sym_QMARK, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5510), 1, - sym__call_signature, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [141481] = 3, + ACTIONS(9678), 1, + sym_html_character_reference, + ACTIONS(9681), 1, + anon_sym_DQUOTE, + ACTIONS(9683), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(5463), 1, + aux_sym__jsx_string_repeat1, + [185647] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4888), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, + ACTIONS(9686), 1, sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [141496] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7589), 1, - anon_sym_QMARK, - STATE(3742), 1, - sym_formal_parameters, - STATE(5270), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(9689), 1, + anon_sym_SQUOTE, + ACTIONS(9691), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(5464), 1, + aux_sym__jsx_string_repeat2, + [185666] = 4, + ACTIONS(9666), 1, + anon_sym_COMMA, + STATE(5388), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141519] = 7, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(7218), 1, - sym_identifier, - STATE(711), 1, - sym_nested_identifier, - STATE(741), 1, - sym_string, - STATE(825), 1, - sym__module, + ACTIONS(9694), 2, + anon_sym_LBRACE, + anon_sym_implements, + [185681] = 4, + ACTIONS(9696), 1, + anon_sym_COMMA, + STATE(5466), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141542] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7591), 1, - anon_sym_QMARK, - STATE(3742), 1, - sym_formal_parameters, - STATE(5298), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(4451), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185696] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9699), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141565] = 3, + [185713] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4902), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [141580] = 2, + ACTIONS(9701), 1, + anon_sym_SQUOTE, + STATE(5353), 1, + aux_sym_string_repeat2, + ACTIONS(9703), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185730] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2323), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(9705), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [185741] = 5, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, + ACTIONS(7493), 1, anon_sym_extends, - [141593] = 2, + ACTIONS(9707), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2327), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [185758] = 4, + ACTIONS(3921), 1, + anon_sym_COLON, + ACTIONS(4113), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9709), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [185773] = 5, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, + ACTIONS(7493), 1, anon_sym_extends, - [141606] = 5, - ACTIONS(7462), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7593), 1, - anon_sym_BQUOTE, + ACTIONS(9711), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7474), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3781), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [141625] = 6, - ACTIONS(7312), 1, + [185790] = 5, + ACTIONS(7489), 1, anon_sym_AMP, - ACTIONS(7314), 1, + ACTIONS(7491), 1, anon_sym_PIPE, - ACTIONS(7316), 1, + ACTIONS(7493), 1, anon_sym_extends, - ACTIONS(7597), 1, - anon_sym_QMARK, + ACTIONS(9713), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7595), 2, - anon_sym_COMMA, + [185807] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9701), 1, + anon_sym_DQUOTE, + STATE(5351), 1, + aux_sym_string_repeat1, + ACTIONS(9715), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185824] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9717), 1, anon_sym_RBRACK, - [141646] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7585), 1, - anon_sym_abstract, - ACTIONS(7599), 1, - anon_sym_export, - ACTIONS(7601), 1, - anon_sym_class, - STATE(1244), 1, - sym_decorator, - STATE(3814), 1, - aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141669] = 2, + [185841] = 5, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7070), 1, + sym_type_parameters, + STATE(7343), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7264), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [185858] = 5, + ACTIONS(1702), 1, + anon_sym_while, + ACTIONS(2429), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [141682] = 6, - ACTIONS(7248), 1, + ACTIONS(7212), 1, anon_sym_DOT, - ACTIONS(7250), 1, - anon_sym_LT, - ACTIONS(7603), 1, - anon_sym_LBRACE, - STATE(5094), 1, - sym_type_arguments, + STATE(795), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7605), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [141703] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7585), 1, - anon_sym_abstract, - ACTIONS(7601), 1, - anon_sym_class, - ACTIONS(7607), 1, - anon_sym_export, - STATE(1244), 1, - sym_decorator, - STATE(3814), 1, - aux_sym_export_statement_repeat1, + [185875] = 5, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, + ACTIONS(9719), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141726] = 4, - ACTIONS(7398), 1, + [185892] = 5, + ACTIONS(1702), 1, + anon_sym_while, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2567), 1, + ACTIONS(7567), 1, + anon_sym_DOT, + STATE(795), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141743] = 5, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(7364), 1, - anon_sym_LBRACK, - ACTIONS(7609), 1, - sym_identifier, + [185909] = 5, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7072), 1, + sym_type_parameters, + STATE(7335), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4692), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [141762] = 5, - ACTIONS(7611), 1, - anon_sym_default, - ACTIONS(7613), 1, - anon_sym_RBRACE, - ACTIONS(7615), 1, - anon_sym_case, + [185926] = 5, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7491), 1, + anon_sym_PIPE, + ACTIONS(7493), 1, + anon_sym_extends, + ACTIONS(9721), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3774), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [141781] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, + [185943] = 4, + ACTIONS(8192), 1, + anon_sym_EQ, + STATE(7055), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3653), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7617), 3, - sym__automatic_semicolon, + ACTIONS(9723), 2, anon_sym_COMMA, - anon_sym_SEMI, - [141798] = 5, - ACTIONS(7462), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7619), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7126), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3783), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [141817] = 3, - ACTIONS(7621), 1, - sym_identifier, + anon_sym_RPAREN, + [185958] = 4, + ACTIONS(9725), 1, + anon_sym_COMMA, + STATE(5483), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6285), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [141832] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, + ACTIONS(9728), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3651), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7484), 3, + ACTIONS(9730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141849] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2571), 1, - sym_statement_block, + [185983] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(5079), 1, + anon_sym_RPAREN, + STATE(5703), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7326), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [185997] = 4, + ACTIONS(2901), 1, + anon_sym_RBRACK, + ACTIONS(9732), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141866] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, + STATE(5533), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3689), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7623), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141883] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2559), 1, - sym_statement_block, + [186011] = 4, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_EQ, + STATE(7199), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7299), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [186025] = 4, + ACTIONS(9736), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141900] = 4, - STATE(3909), 1, - aux_sym_object_type_repeat1, + ACTIONS(9738), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7627), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7625), 3, - sym__automatic_semicolon, + [186039] = 4, + ACTIONS(9740), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141917] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2606), 1, - sym_statement_block, + ACTIONS(9742), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 4, + [186053] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9744), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141934] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7629), 1, + [186063] = 4, + ACTIONS(9746), 1, sym_identifier, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5448), 1, - sym__call_signature, + ACTIONS(9748), 1, + anon_sym_LBRACK, + ACTIONS(9750), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141957] = 3, + [186077] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5869), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3743), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [141972] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7631), 1, - anon_sym_QMARK, - STATE(3742), 1, - sym_formal_parameters, - STATE(5318), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(9752), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [186087] = 4, + ACTIONS(9754), 1, + sym_identifier, + ACTIONS(9756), 1, + anon_sym_LBRACK, + ACTIONS(9758), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141995] = 7, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(7633), 1, - anon_sym_COMMA, - ACTIONS(7635), 1, - anon_sym_GT, - STATE(4703), 1, - aux_sym_implements_clause_repeat1, + [186101] = 4, + ACTIONS(8093), 1, + anon_sym_const, + ACTIONS(9443), 1, + sym_identifier, + STATE(6454), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142018] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7637), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(4029), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [186115] = 4, + ACTIONS(9760), 1, + sym_identifier, + ACTIONS(9762), 1, + anon_sym_LBRACK, + ACTIONS(9764), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142041] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(7232), 1, + [186129] = 4, + ACTIONS(9766), 1, sym_identifier, - STATE(3483), 1, - sym_nested_identifier, - STATE(3697), 1, - sym_string, - STATE(4346), 1, - sym__module, + ACTIONS(9768), 1, + anon_sym_LBRACK, + ACTIONS(9770), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142064] = 4, - ACTIONS(7398), 1, + [186143] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9772), 3, anon_sym_LBRACE, - STATE(2600), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_implements, + [186153] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7268), 4, + ACTIONS(9774), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4709), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [142096] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7639), 1, - sym_identifier, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5498), 1, - sym__call_signature, + [186163] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142119] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2583), 1, - sym_statement_block, + ACTIONS(9776), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186173] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 4, + ACTIONS(9744), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142136] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2584), 1, - sym_statement_block, + [186183] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7212), 4, + ACTIONS(9778), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [186193] = 4, + ACTIONS(2891), 1, + anon_sym_RBRACK, + ACTIONS(9780), 1, + anon_sym_COMMA, + STATE(5533), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(4713), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [142168] = 2, + sym_comment, + [186207] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7270), 6, + ACTIONS(9782), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [142181] = 7, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(7641), 1, + [186217] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9784), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7643), 1, - anon_sym_GT, - STATE(4595), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [186227] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142204] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7645), 1, - anon_sym_QMARK, - STATE(3742), 1, - sym_formal_parameters, - STATE(5338), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(9784), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142227] = 7, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(7647), 1, + ACTIONS(9786), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7649), 1, - anon_sym_GT, - STATE(4625), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [186247] = 4, + ACTIONS(9788), 1, + anon_sym_COMMA, + ACTIONS(9790), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142250] = 7, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - ACTIONS(7232), 1, - sym_identifier, - STATE(3483), 1, - sym_nested_identifier, - STATE(3697), 1, - sym_string, - STATE(4370), 1, - sym__module, + [186261] = 4, + ACTIONS(9792), 1, + anon_sym_COMMA, + ACTIONS(9794), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142273] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2597), 1, - sym_statement_block, + [186275] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7258), 4, + ACTIONS(9782), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142290] = 3, - ACTIONS(6475), 1, - sym_identifier, + [186285] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6477), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [142305] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7651), 1, - anon_sym_QMARK, - STATE(3742), 1, - sym_formal_parameters, - STATE(5320), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(9796), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186295] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142328] = 2, + ACTIONS(9798), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7653), 6, + ACTIONS(9784), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142341] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7655), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(4989), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [186315] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142364] = 7, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(5991), 1, - anon_sym_LT, - ACTIONS(6847), 1, - anon_sym_DOT, - ACTIONS(7657), 1, - anon_sym_RPAREN, - STATE(1194), 1, - sym_arguments, - STATE(5478), 1, - sym_type_arguments, + ACTIONS(9800), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186325] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142387] = 3, - ACTIONS(7659), 1, - sym_identifier, + ACTIONS(9796), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186335] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6285), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [142402] = 2, + ACTIONS(9782), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186345] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7661), 6, + ACTIONS(9730), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142415] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2563), 1, - sym_statement_block, + [186355] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7258), 4, + ACTIONS(9730), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142432] = 5, - ACTIONS(3199), 1, - anon_sym_LBRACE, - ACTIONS(7364), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - sym_identifier, + [186365] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5532), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [142451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7665), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [142466] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - ACTIONS(7667), 1, - anon_sym_QMARK, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5362), 1, - sym__call_signature, + ACTIONS(9730), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186375] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142489] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7669), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(5062), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + ACTIONS(9730), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186385] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142512] = 7, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(7671), 1, + ACTIONS(9802), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7673), 1, - anon_sym_GT, - STATE(4823), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [186395] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142535] = 4, - STATE(3735), 1, - aux_sym_object_type_repeat1, + ACTIONS(9802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186405] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3661), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7675), 3, + ACTIONS(9804), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142552] = 7, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(7301), 1, - sym_identifier, - STATE(741), 1, - sym_string, - STATE(855), 1, - sym__module, - STATE(4429), 1, - sym_nested_identifier, + [186415] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142575] = 4, - STATE(3776), 1, - aux_sym_object_type_repeat1, + ACTIONS(9806), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186425] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3661), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7675), 3, + ACTIONS(9730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142592] = 7, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(7301), 1, - sym_identifier, - STATE(741), 1, - sym_string, - STATE(825), 1, - sym__module, - STATE(4429), 1, - sym_nested_identifier, + [186435] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142615] = 4, - STATE(3870), 1, - aux_sym_object_type_repeat1, + ACTIONS(9730), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186445] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7677), 3, + ACTIONS(9778), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142632] = 4, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2566), 1, - sym_statement_block, + [186455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7299), 4, + ACTIONS(9778), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142649] = 5, - ACTIONS(7611), 1, - anon_sym_default, - ACTIONS(7615), 1, - anon_sym_case, - ACTIONS(7681), 1, - anon_sym_RBRACE, + [186465] = 4, + ACTIONS(3459), 1, + anon_sym_COLON, + ACTIONS(9808), 1, + anon_sym_RPAREN, + STATE(7205), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3866), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [142668] = 7, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(7683), 1, - anon_sym_QMARK, - STATE(3229), 1, - sym_formal_parameters, - STATE(3601), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [186479] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142691] = 4, - ACTIONS(7396), 1, + ACTIONS(8293), 3, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(7685), 1, anon_sym_EQ_GT, + [186489] = 4, + ACTIONS(1548), 1, + anon_sym_DQUOTE, + ACTIONS(1550), 1, + anon_sym_SQUOTE, + STATE(7203), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5232), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [142707] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4665), 1, - sym__initializer, + [186503] = 4, + ACTIONS(9810), 1, + anon_sym_COMMA, + ACTIONS(9813), 1, + anon_sym_RBRACE, + STATE(5531), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142723] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4666), 1, - sym__initializer, + [186517] = 4, + ACTIONS(7479), 1, + anon_sym_type, + ACTIONS(9815), 1, + sym_identifier, + STATE(7099), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, - sym__automatic_semicolon, + [186531] = 4, + ACTIONS(9817), 1, anon_sym_COMMA, - anon_sym_SEMI, - [142739] = 3, - ACTIONS(4539), 1, - anon_sym_in, + ACTIONS(9820), 1, + anon_sym_RBRACK, + STATE(5533), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5421), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [142753] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4670), 1, - sym__initializer, + [186545] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142769] = 2, + ACTIONS(9822), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [186555] = 3, + ACTIONS(9333), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2859), 5, - sym__automatic_semicolon, + ACTIONS(9335), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [186567] = 4, + ACTIONS(9824), 1, anon_sym_COMMA, + ACTIONS(9827), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142781] = 2, + STATE(5536), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2863), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142793] = 2, + [186581] = 4, + ACTIONS(7479), 1, + anon_sym_type, + ACTIONS(9829), 1, + sym_identifier, + STATE(7100), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2867), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142805] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4667), 1, - sym__initializer, + [186595] = 4, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8157), 1, + anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142821] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4686), 1, - sym__initializer, + [186609] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(9831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142837] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4673), 1, - sym__initializer, + [186619] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, + ACTIONS(9831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142853] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4696), 1, - sym__initializer, + [186629] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(9833), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142869] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4697), 1, - sym__initializer, + [186639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142885] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4699), 1, - sym__initializer, + [186649] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9837), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142901] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4700), 1, - sym__initializer, + [186659] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9837), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142917] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4702), 1, - sym__initializer, + [186669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9839), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142933] = 3, - ACTIONS(7394), 1, - sym_identifier, + [186679] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7696), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [142947] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4708), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7688), 3, + ACTIONS(9841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142963] = 2, + [186689] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7653), 5, + ACTIONS(9839), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [142975] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4709), 1, - sym__initializer, + [186699] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142991] = 2, + [186709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7661), 5, + ACTIONS(9843), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [143003] = 2, + [186719] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7372), 5, + ACTIONS(9845), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [143015] = 2, + [186729] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2875), 5, + ACTIONS(9845), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143027] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4710), 1, - sym__initializer, + [186739] = 4, + ACTIONS(9847), 1, + anon_sym_LPAREN, + ACTIONS(9849), 1, + anon_sym_await, + STATE(50), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143043] = 2, + [186753] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 5, + ACTIONS(9851), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143055] = 2, + [186763] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 5, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143067] = 2, + [186773] = 3, + ACTIONS(9853), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2879), 5, + ACTIONS(9855), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143079] = 2, + [186785] = 3, + ACTIONS(9857), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2883), 5, + ACTIONS(9859), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143091] = 2, + [186797] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 5, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143103] = 2, + [186807] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9861), 1, + sym__glimmer_template_content, + ACTIONS(9863), 1, + sym_glimmer_closing_tag, + STATE(5861), 1, + aux_sym_glimmer_template_repeat1, + [186823] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 5, + ACTIONS(9845), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143115] = 2, + [186833] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 5, + ACTIONS(9845), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143127] = 2, + [186843] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 5, + ACTIONS(9851), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143139] = 2, + [186853] = 4, + ACTIONS(9524), 1, + anon_sym_from, + ACTIONS(9865), 1, + anon_sym_as, + STATE(6216), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 5, + [186867] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143151] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4688), 1, - sym__initializer, + [186877] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143167] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5145), 1, - sym__initializer, + [186887] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143183] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(3847), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + [186897] = 4, + ACTIONS(3163), 1, + anon_sym_GT, + ACTIONS(9867), 1, + anon_sym_COMMA, + STATE(5367), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143203] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4724), 1, - sym__initializer, + [186911] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(9869), 1, + anon_sym_RPAREN, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, - sym__automatic_semicolon, + [186925] = 4, + ACTIONS(9871), 1, anon_sym_COMMA, - anon_sym_SEMI, - [143219] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7698), 1, - anon_sym_EQ_GT, + ACTIONS(9873), 1, + anon_sym_RBRACE, + STATE(5508), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5232), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [143235] = 2, + [186939] = 4, + ACTIONS(1026), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1576), 1, + anon_sym_LBRACE, + STATE(4948), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4987), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [143247] = 2, + [186953] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2511), 5, + ACTIONS(9845), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143259] = 2, + [186963] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2515), 5, + ACTIONS(9845), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143271] = 2, + [186973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2519), 5, + ACTIONS(9851), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143283] = 5, - ACTIONS(7701), 1, - sym_identifier, - ACTIONS(7703), 1, - anon_sym_LPAREN, - STATE(1183), 1, - sym_decorator_member_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1228), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [143301] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4729), 1, - sym__initializer, + [186983] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143317] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4731), 1, - sym__initializer, + [186993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143333] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4738), 1, - sym__initializer, + [187003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143349] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, + [187013] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7705), 2, + ACTIONS(9845), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [143367] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4787), 1, - sym__initializer, + anon_sym_SEMI, + [187023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(9845), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143383] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5159), 1, - sym__initializer, + [187033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(9851), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143399] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4748), 1, - sym__initializer, + [187043] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(9845), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143415] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4816), 1, - sym__initializer, + [187053] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(9845), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143431] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4763), 1, - sym__initializer, + [187063] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(9851), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143447] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4822), 1, - sym__initializer, + [187073] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, + ACTIONS(9875), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143463] = 2, + [187083] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7707), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [143475] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4773), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7688), 3, + ACTIONS(9875), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143491] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4825), 1, - sym__initializer, + [187093] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143507] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5160), 1, - sym__initializer, + [187103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143523] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4776), 1, - sym__initializer, + [187113] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143539] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4777), 1, - sym__initializer, + [187123] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143555] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4778), 1, - sym__initializer, + [187133] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143571] = 2, + [187143] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2583), 5, + ACTIONS(9845), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143583] = 6, - ACTIONS(7709), 1, - sym_identifier, - ACTIONS(7711), 1, - anon_sym_GT, - ACTIONS(7713), 1, - sym_jsx_identifier, - STATE(5253), 1, - sym_nested_identifier, - STATE(5802), 1, - sym_jsx_namespace_name, + [187153] = 4, + ACTIONS(7594), 1, + anon_sym_LPAREN, + ACTIONS(9877), 1, + anon_sym_DOT, + STATE(3305), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143603] = 2, + [187167] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2583), 5, + ACTIONS(9845), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143615] = 2, + [187177] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2583), 5, + ACTIONS(9851), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143627] = 2, + [187187] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7344), 5, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143639] = 6, - ACTIONS(7202), 1, - anon_sym_EQ, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(7717), 1, - anon_sym_RBRACE, - STATE(4895), 1, - aux_sym_enum_body_repeat1, - STATE(5219), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143659] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4788), 1, - sym__initializer, + [187197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143675] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(4027), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [187207] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143695] = 6, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(5113), 1, + ACTIONS(9845), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7719), 1, - anon_sym_RBRACE, - STATE(4672), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143715] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4795), 1, - sym__initializer, + anon_sym_SEMI, + [187217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(9845), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143731] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4796), 1, - sym__initializer, + [187227] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9851), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143747] = 2, + [187237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2587), 5, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143759] = 2, + [187247] = 4, + ACTIONS(9879), 1, + anon_sym_COMMA, + ACTIONS(9882), 1, + anon_sym_RBRACE, + STATE(5599), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2591), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143771] = 2, + [187261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2595), 5, + ACTIONS(9884), 3, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_from, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143783] = 2, + [187271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2599), 5, + ACTIONS(9886), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143795] = 5, - ACTIONS(7721), 1, - anon_sym_BQUOTE, - ACTIONS(7723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7725), 1, - sym__template_chars, + [187281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4017), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143813] = 6, - ACTIONS(4029), 1, - anon_sym_LBRACE, - ACTIONS(7727), 1, - anon_sym_SEMI, - ACTIONS(7729), 1, + ACTIONS(9886), 3, sym__automatic_semicolon, - ACTIONS(7731), 1, - sym__function_signature_automatic_semicolon, - STATE(2385), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143833] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4800), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_SEMI, + [187291] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9888), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143849] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4801), 1, - sym__initializer, + [187301] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9890), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143865] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4802), 1, - sym__initializer, + [187311] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9892), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143881] = 6, - ACTIONS(1040), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1586), 1, - anon_sym_LBRACE, - ACTIONS(7238), 1, - anon_sym_extends, - STATE(3988), 1, - sym_object_type, - STATE(4818), 1, - sym_extends_type_clause, + [187321] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143901] = 3, - ACTIONS(7563), 1, - sym_identifier, + ACTIONS(9890), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187331] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7733), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [143915] = 5, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(7735), 1, - sym_identifier, + ACTIONS(9894), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187341] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5419), 2, - sym__module_export_name, - sym_string, - [143933] = 2, + ACTIONS(9896), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7346), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143945] = 2, + [187361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2623), 5, + ACTIONS(9898), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143957] = 2, + [187371] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7737), 5, + ACTIONS(9900), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143969] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7739), 1, - anon_sym_EQ_GT, + [187381] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5232), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [143985] = 2, + ACTIONS(9900), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187391] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2627), 5, + ACTIONS(9902), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143997] = 2, + [187401] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2627), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144009] = 2, + [187411] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2635), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144021] = 2, + [187421] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1801), 5, + ACTIONS(9898), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144033] = 2, + [187431] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144045] = 2, + [187441] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1825), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144057] = 2, + [187451] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2647), 5, + ACTIONS(9898), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144069] = 6, - ACTIONS(7190), 1, - anon_sym_LBRACE, - ACTIONS(7742), 1, anon_sym_SEMI, - ACTIONS(7744), 1, - sym__automatic_semicolon, - ACTIONS(7746), 1, - sym__function_signature_automatic_semicolon, - STATE(4031), 1, - sym_statement_block, + [187461] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144089] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4810), 1, - sym__initializer, + ACTIONS(9900), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187471] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(9900), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144105] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6695), 1, - anon_sym_extends, - ACTIONS(7750), 1, - anon_sym_PIPE, + [187481] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7748), 2, + ACTIONS(9902), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [144123] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(4090), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + [187491] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144143] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5430), 1, - sym__call_signature, + ACTIONS(9896), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144163] = 6, - ACTIONS(7190), 1, - anon_sym_LBRACE, - ACTIONS(7727), 1, - anon_sym_SEMI, - ACTIONS(7729), 1, + ACTIONS(9896), 3, sym__automatic_semicolon, - ACTIONS(7731), 1, - sym__function_signature_automatic_semicolon, - STATE(746), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_SEMI, + [187511] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144183] = 2, + ACTIONS(9898), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187521] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2667), 5, + ACTIONS(9902), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144195] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4811), 1, - sym__initializer, + [187531] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9902), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144211] = 5, - ACTIONS(7723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7752), 1, - anon_sym_BQUOTE, - ACTIONS(7754), 1, - sym__template_chars, + [187541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4233), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [144229] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4814), 1, - sym__initializer, + ACTIONS(9904), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144245] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5161), 1, - sym__initializer, + [187561] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, + ACTIONS(9898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144261] = 6, - ACTIONS(4029), 1, - anon_sym_LBRACE, - ACTIONS(7756), 1, - anon_sym_SEMI, - ACTIONS(7758), 1, - sym__automatic_semicolon, - ACTIONS(7760), 1, - sym__function_signature_automatic_semicolon, - STATE(2196), 1, - sym_statement_block, + [187571] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144281] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4815), 1, - sym__initializer, + ACTIONS(9902), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187581] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144297] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4817), 1, - sym__initializer, + [187591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144313] = 6, - ACTIONS(7202), 1, - anon_sym_EQ, - ACTIONS(7762), 1, - anon_sym_COMMA, - ACTIONS(7764), 1, - anon_sym_RBRACE, - STATE(4893), 1, - aux_sym_enum_body_repeat1, - STATE(5219), 1, - sym__initializer, + [187601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144333] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7766), 1, - anon_sym_EQ_GT, + ACTIONS(9898), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187611] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5232), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144349] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7769), 1, - anon_sym_EQ_GT, + ACTIONS(9896), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187621] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5405), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144365] = 2, + ACTIONS(9896), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187631] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7346), 5, + ACTIONS(9898), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144377] = 2, + [187641] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7258), 5, + ACTIONS(9900), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144389] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(4211), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [187651] = 4, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(9906), 1, + sym_identifier, + STATE(5392), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144409] = 2, + [187665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 5, + ACTIONS(9900), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144421] = 6, - ACTIONS(7190), 1, - anon_sym_LBRACE, - ACTIONS(7772), 1, anon_sym_SEMI, - ACTIONS(7774), 1, - sym__automatic_semicolon, - ACTIONS(7776), 1, - sym__function_signature_automatic_semicolon, - STATE(4050), 1, - sym_statement_block, + [187675] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144441] = 3, - ACTIONS(5640), 1, + ACTIONS(9902), 3, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1769), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144455] = 2, + [187685] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7778), 5, + ACTIONS(9902), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144467] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6695), 1, - anon_sym_extends, - ACTIONS(7750), 1, - anon_sym_PIPE, + [187695] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7780), 2, + ACTIONS(9902), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [144485] = 2, + [187705] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7258), 5, + ACTIONS(9902), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144497] = 2, + [187715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7782), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144509] = 6, - ACTIONS(2581), 1, + [187725] = 4, + ACTIONS(2525), 1, anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(3678), 1, - sym__call_signature, - STATE(5404), 1, + ACTIONS(9908), 1, + anon_sym_EQ, + STATE(7446), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144529] = 2, + [187739] = 4, + ACTIONS(5344), 1, + anon_sym_COMMA, + ACTIONS(9910), 1, + anon_sym_RBRACE, + STATE(6072), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7344), 5, - sym__automatic_semicolon, + [187753] = 4, + ACTIONS(4865), 1, anon_sym_COMMA, + ACTIONS(9912), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144541] = 2, + STATE(5992), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7784), 5, - sym__automatic_semicolon, + [187767] = 4, + ACTIONS(4865), 1, anon_sym_COMMA, + ACTIONS(9912), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144553] = 4, - ACTIONS(3477), 1, - anon_sym_COLON, - STATE(5509), 1, - sym_type_annotation, + STATE(5994), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3514), 3, - anon_sym_EQ, + [187781] = 4, + ACTIONS(5344), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [144569] = 2, + ACTIONS(9910), 1, + anon_sym_RBRACE, + STATE(5995), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [187795] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144581] = 2, + [187805] = 3, + ACTIONS(9914), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9916), 2, + anon_sym_COMMA, + anon_sym_from, + [187817] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7786), 5, + ACTIONS(9898), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144593] = 2, + [187827] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7788), 5, + ACTIONS(9902), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144605] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5074), 1, - sym__initializer, + [187837] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(9902), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144621] = 2, + [187847] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7790), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144633] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5075), 1, - sym__initializer, + [187857] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144649] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7792), 1, - anon_sym_EQ_GT, + [187867] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5405), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144665] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6695), 1, - anon_sym_extends, - ACTIONS(7750), 1, - anon_sym_PIPE, + ACTIONS(9898), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187877] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7795), 2, + ACTIONS(9896), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [144683] = 2, + [187887] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6285), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [144695] = 2, + ACTIONS(9896), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187897] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2695), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144707] = 3, - ACTIONS(5668), 1, - sym__automatic_semicolon, + [187907] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 4, + ACTIONS(9900), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144721] = 3, - ACTIONS(5670), 1, + [187917] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9900), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187927] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 4, + ACTIONS(9900), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144735] = 2, + [187937] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2695), 5, + ACTIONS(9900), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144747] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(3541), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [187947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144767] = 2, + ACTIONS(9902), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2695), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144779] = 2, + [187967] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2699), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144791] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7797), 1, - anon_sym_EQ_GT, + [187977] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5405), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144807] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5077), 1, - sym__initializer, + ACTIONS(9898), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187987] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, + ACTIONS(9902), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144823] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6695), 1, - anon_sym_extends, - ACTIONS(7750), 1, - anon_sym_PIPE, + [187997] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7800), 2, + ACTIONS(9902), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [144841] = 2, + [188007] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2703), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144853] = 3, - ACTIONS(5672), 1, + [188017] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9896), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188027] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1885), 4, + ACTIONS(9898), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144867] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(3593), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [188037] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144887] = 2, + ACTIONS(9902), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188047] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2707), 5, + ACTIONS(9902), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144899] = 2, + [188057] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2711), 5, + ACTIONS(9902), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144911] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(3495), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [188067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144931] = 2, + ACTIONS(9902), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188077] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2715), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144943] = 2, + [188087] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2719), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144955] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(3524), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [188097] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144975] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(3543), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + ACTIONS(9898), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144995] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5475), 1, - sym__call_signature, + ACTIONS(9902), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188117] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145015] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5083), 1, - sym__initializer, + ACTIONS(9902), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188127] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145031] = 2, + [188137] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2727), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145043] = 2, + [188147] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2727), 5, + ACTIONS(9898), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145055] = 2, + [188157] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2739), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145067] = 2, + [188167] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145079] = 2, + [188177] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 5, + ACTIONS(9898), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145091] = 2, + [188187] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1734), 5, + ACTIONS(9900), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145103] = 2, + [188197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2755), 5, + ACTIONS(9900), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145115] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5488), 1, - sym__call_signature, + [188207] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145135] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(3752), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + ACTIONS(9902), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145155] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4981), 1, - sym__initializer, + ACTIONS(9896), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188227] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7802), 3, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145171] = 2, + [188237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7804), 5, + ACTIONS(9898), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145183] = 2, + [188247] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7806), 5, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145195] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4836), 1, - sym__initializer, + [188257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7808), 3, + ACTIONS(9896), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145211] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4840), 1, - sym__initializer, + [188267] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7810), 3, + ACTIONS(9898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145227] = 5, - ACTIONS(7812), 1, - sym_identifier, - ACTIONS(7814), 1, - anon_sym_LPAREN, - STATE(2601), 1, - sym_decorator_member_expression, + [188277] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2704), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [145245] = 5, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(7816), 1, - sym_identifier, + ACTIONS(9900), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188287] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5260), 2, - sym__module_export_name, - sym_string, - [145263] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4842), 1, - sym__initializer, + ACTIONS(9900), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188297] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145279] = 3, - ACTIONS(7820), 1, - anon_sym_EQ, + [188307] = 4, + ACTIONS(3151), 1, + anon_sym_GT, + ACTIONS(9918), 1, + anon_sym_COMMA, + STATE(5367), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [188321] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(9920), 1, + anon_sym_RPAREN, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 4, + [188335] = 4, + ACTIONS(9922), 1, anon_sym_COMMA, + ACTIONS(9924), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [145293] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5263), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + STATE(5489), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145313] = 6, - ACTIONS(7190), 1, + [188349] = 4, + ACTIONS(222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1540), 1, anon_sym_LBRACE, - ACTIONS(7756), 1, - anon_sym_SEMI, - ACTIONS(7758), 1, - sym__automatic_semicolon, - ACTIONS(7760), 1, - sym__function_signature_automatic_semicolon, - STATE(748), 1, - sym_statement_block, + STATE(845), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145333] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4843), 1, - sym__initializer, + [188363] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9926), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145349] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5090), 1, - sym__initializer, + [188373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(9928), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145365] = 6, - ACTIONS(7822), 1, - sym_identifier, - ACTIONS(7824), 1, - anon_sym_GT, - ACTIONS(7826), 1, - sym_jsx_identifier, - STATE(5516), 1, - sym_nested_identifier, - STATE(5890), 1, - sym_jsx_namespace_name, + [188383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145385] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6695), 1, - anon_sym_extends, - ACTIONS(7750), 1, - anon_sym_PIPE, + ACTIONS(9930), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7828), 2, + ACTIONS(9932), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [145403] = 2, + [188403] = 4, + ACTIONS(9934), 1, + anon_sym_COMMA, + ACTIONS(9937), 1, + anon_sym_GT, + STATE(5710), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [188417] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2779), 5, + ACTIONS(9928), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145415] = 2, + [188427] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2783), 5, + ACTIONS(9939), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145427] = 2, + [188437] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2787), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145439] = 2, + [188447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2791), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145451] = 5, - ACTIONS(7723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7830), 1, - anon_sym_BQUOTE, - ACTIONS(7832), 1, - sym__template_chars, + [188457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4110), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145469] = 6, - ACTIONS(4029), 1, - anon_sym_LBRACE, - ACTIONS(7742), 1, - anon_sym_SEMI, - ACTIONS(7744), 1, + ACTIONS(9943), 3, sym__automatic_semicolon, - ACTIONS(7746), 1, - sym__function_signature_automatic_semicolon, - STATE(2326), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_SEMI, + [188467] = 4, + ACTIONS(8849), 1, + anon_sym_AMP, + ACTIONS(8851), 1, + anon_sym_PIPE, + ACTIONS(8853), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145489] = 2, + [188481] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2795), 5, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145501] = 2, + [188491] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2799), 5, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145513] = 2, + [188501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2803), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145525] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4844), 1, - sym__initializer, + [188511] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145541] = 2, + [188521] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2815), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145553] = 2, + [188531] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2819), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145565] = 2, + [188541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1895), 5, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145577] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4845), 1, - sym__initializer, + [188551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145593] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5268), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145613] = 5, - ACTIONS(7723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7754), 1, - sym__template_chars, - ACTIONS(7834), 1, - anon_sym_BQUOTE, + [188561] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4233), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145631] = 6, - ACTIONS(4029), 1, - anon_sym_LBRACE, - ACTIONS(7772), 1, - anon_sym_SEMI, - ACTIONS(7774), 1, + ACTIONS(9945), 3, sym__automatic_semicolon, - ACTIONS(7776), 1, - sym__function_signature_automatic_semicolon, - STATE(2336), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_SEMI, + [188571] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145651] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4849), 1, - sym__initializer, + ACTIONS(9941), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188581] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145667] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4850), 1, - sym__initializer, + [188591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145683] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4851), 1, - sym__initializer, + [188601] = 4, + ACTIONS(5129), 1, + anon_sym_extends, + ACTIONS(9949), 1, + anon_sym_AMP, + ACTIONS(9951), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [188615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145699] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4854), 1, - sym__initializer, + [188625] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145715] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4856), 1, - sym__initializer, + [188635] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145731] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5271), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + [188645] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145751] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4859), 1, - sym__initializer, + ACTIONS(9943), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188655] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145767] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4863), 1, - sym__initializer, + [188665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145783] = 2, + [188675] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2831), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145795] = 2, + [188685] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2835), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145807] = 2, + [188695] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2839), 5, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145819] = 2, + [188705] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2843), 5, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145831] = 2, + [188715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2851), 5, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145843] = 6, - ACTIONS(7838), 1, - sym_identifier, - ACTIONS(7840), 1, - anon_sym_GT, - ACTIONS(7842), 1, - sym_jsx_identifier, - STATE(5221), 1, - sym_nested_identifier, - STATE(5887), 1, - sym_jsx_namespace_name, + [188725] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145863] = 5, - ACTIONS(7723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7844), 1, - anon_sym_BQUOTE, - ACTIONS(7846), 1, - sym__template_chars, + ACTIONS(9941), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4131), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145881] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4693), 1, - sym__initializer, + ACTIONS(9941), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145897] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4866), 1, - sym__initializer, + [188755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145913] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4867), 1, - sym__initializer, + [188765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145929] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4868), 1, - sym__initializer, + [188775] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145945] = 5, - ACTIONS(7723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7754), 1, - sym__template_chars, - ACTIONS(7848), 1, - anon_sym_BQUOTE, + [188785] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4233), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145963] = 3, - ACTIONS(7850), 1, - sym_identifier, + ACTIONS(9943), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188795] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7852), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [145977] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4874), 1, - sym__initializer, + ACTIONS(9945), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188805] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145993] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4877), 1, - sym__initializer, + [188815] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146009] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4878), 1, - sym__initializer, + [188825] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146025] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4879), 1, - sym__initializer, + [188835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146041] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4882), 1, - sym__initializer, + [188845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146057] = 5, - ACTIONS(7723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7854), 1, - anon_sym_BQUOTE, - ACTIONS(7856), 1, - sym__template_chars, + [188855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4143), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146075] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4883), 1, - sym__initializer, + ACTIONS(9943), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188865] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146091] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5202), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + [188875] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146111] = 4, - ACTIONS(7860), 1, - anon_sym_in, - ACTIONS(7862), 1, - anon_sym_of, + ACTIONS(9945), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7858), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146127] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4884), 1, - sym__initializer, + [188895] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146143] = 5, - ACTIONS(7723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7754), 1, - sym__template_chars, - ACTIONS(7864), 1, - anon_sym_BQUOTE, + [188905] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4233), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146161] = 4, - ACTIONS(7866), 1, - anon_sym_in, - ACTIONS(7868), 1, - anon_sym_of, + ACTIONS(9945), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188915] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7858), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146177] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4885), 1, - sym__initializer, + [188925] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146193] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4886), 1, - sym__initializer, + [188935] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146209] = 2, + [188945] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5518), 5, - anon_sym_EQ, + ACTIONS(9943), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146221] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4900), 1, - sym__initializer, + anon_sym_SEMI, + [188955] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146237] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4901), 1, - sym__initializer, + [188965] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146253] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4904), 1, - sym__initializer, + [188975] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146269] = 2, + [188985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5522), 5, - anon_sym_EQ, + ACTIONS(9945), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146281] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4905), 1, - sym__initializer, + anon_sym_SEMI, + [188995] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146297] = 2, + [189005] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5522), 5, - anon_sym_EQ, + ACTIONS(9941), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146309] = 2, + anon_sym_SEMI, + [189015] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5522), 5, - anon_sym_EQ, + ACTIONS(9941), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146321] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(3790), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + anon_sym_SEMI, + [189025] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146341] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4908), 1, - sym__initializer, + ACTIONS(9941), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189035] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146357] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4909), 1, - sym__initializer, + [189045] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146373] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5353), 1, - sym__call_signature, + [189055] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146393] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, + ACTIONS(9943), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189065] = 4, + ACTIONS(3492), 1, anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5354), 1, - sym__call_signature, + ACTIONS(9877), 1, + anon_sym_DOT, + STATE(3305), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146413] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4911), 1, - sym__initializer, + [189079] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146429] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4786), 1, - sym__initializer, + [189089] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146445] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4807), 1, - sym__initializer, + [189099] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146461] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4977), 1, - sym__initializer, + [189109] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7870), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146477] = 5, - ACTIONS(7874), 1, - anon_sym_SEMI, - ACTIONS(7876), 1, - sym__automatic_semicolon, - STATE(5412), 1, - sym_import_attribute, + [189119] = 4, + ACTIONS(2447), 1, + anon_sym_while, + ACTIONS(9953), 1, + anon_sym_else, + STATE(814), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7872), 2, - anon_sym_with, - anon_sym_assert, - [146495] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4915), 1, - sym__initializer, + [189133] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146511] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4916), 1, - sym__initializer, + [189143] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146527] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4920), 1, - sym__initializer, + [189153] = 4, + ACTIONS(9955), 1, + anon_sym_COMMA, + ACTIONS(9957), 1, + anon_sym_RBRACK, + STATE(5502), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [189167] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146543] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4922), 1, - sym__initializer, + [189177] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146559] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4924), 1, - sym__initializer, + [189187] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146575] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(3991), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + [189197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146595] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4992), 1, - sym__initializer, + ACTIONS(9945), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189207] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7878), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146611] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4932), 1, - sym__initializer, + [189217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146627] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4933), 1, - sym__initializer, + [189227] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146643] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7585), 1, - anon_sym_abstract, - ACTIONS(7601), 1, - anon_sym_class, - STATE(1244), 1, - sym_decorator, - STATE(3814), 1, - aux_sym_export_statement_repeat1, + [189237] = 4, + ACTIONS(8335), 1, + anon_sym_COMMA, + ACTIONS(9959), 1, + anon_sym_LBRACE, + STATE(5367), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146663] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(4009), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + [189251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146683] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4934), 1, - sym__initializer, + ACTIONS(9943), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146699] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5348), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + [189271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146719] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5344), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(9945), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146739] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4942), 1, - sym__initializer, + ACTIONS(9947), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189291] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146755] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(4020), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + [189301] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146775] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4947), 1, - sym__initializer, + ACTIONS(9943), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189311] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146791] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5424), 1, - sym__call_signature, + [189321] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146811] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4948), 1, - sym__initializer, + ACTIONS(9945), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189331] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146827] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5033), 1, - sym__initializer, + [189341] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7880), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146843] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4949), 1, - sym__initializer, + [189351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146859] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4819), 1, - sym__initializer, + [189361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146875] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4953), 1, - sym__initializer, + [189371] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146891] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4955), 1, - sym__initializer, + [189381] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146907] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4956), 1, - sym__initializer, + [189391] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146923] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4957), 1, - sym__initializer, + [189401] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146939] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4958), 1, - sym__initializer, + [189411] = 3, + ACTIONS(8087), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9961), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [146955] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(4030), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + [189423] = 3, + ACTIONS(8085), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146975] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5520), 1, - sym__call_signature, + ACTIONS(9961), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [189435] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146995] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4961), 1, - sym__initializer, + ACTIONS(9941), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189445] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147011] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5525), 1, - sym__call_signature, + [189455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147031] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5528), 1, - sym__call_signature, + ACTIONS(9943), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189465] = 4, + ACTIONS(9963), 1, + sym_identifier, + STATE(4407), 1, + sym_decorator_member_expression, + STATE(7510), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147051] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4869), 1, - sym__initializer, + [189479] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7882), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147067] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4962), 1, - sym__initializer, + [189489] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147083] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4966), 1, - sym__initializer, + [189499] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147099] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4967), 1, - sym__initializer, + [189509] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147115] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4968), 1, - sym__initializer, + [189519] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147131] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5252), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + [189529] = 4, + ACTIONS(7212), 1, + anon_sym_DOT, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(9965), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147151] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5212), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + [189543] = 4, + ACTIONS(8093), 1, + anon_sym_const, + ACTIONS(9443), 1, + sym_identifier, + STATE(5860), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147171] = 2, + [189557] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7326), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147183] = 2, + [189567] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7884), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147195] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5241), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + [189577] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147215] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5246), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(8161), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [189587] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(5033), 1, + anon_sym_RPAREN, + STATE(5443), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [189601] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(5033), 1, + anon_sym_RPAREN, + STATE(5567), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [189615] = 4, + ACTIONS(1026), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1576), 1, + anon_sym_LBRACE, + STATE(5030), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147235] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4969), 1, - sym__initializer, + [189629] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7818), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147251] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4971), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7818), 3, - sym__automatic_semicolon, + [189639] = 4, + ACTIONS(9967), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147267] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5294), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(9969), 1, + anon_sym_RPAREN, + STATE(6044), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147287] = 2, + [189653] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7297), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147299] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(4303), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [189663] = 4, + ACTIONS(9445), 1, + anon_sym_GT, + ACTIONS(9971), 1, + anon_sym_COMMA, + STATE(5710), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147319] = 2, + [189677] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7299), 5, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147331] = 2, + [189687] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7886), 5, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147343] = 2, + [189697] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7297), 5, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147355] = 2, + [189707] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7888), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147367] = 2, + [189717] = 4, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(9973), 1, + anon_sym_DOT, + STATE(1997), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [189731] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7890), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147379] = 2, + [189741] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7299), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147391] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5317), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + [189751] = 4, + ACTIONS(1690), 1, + anon_sym_COMMA, + ACTIONS(9467), 1, + anon_sym_RBRACK, + STATE(6084), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147411] = 2, + [189765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7892), 5, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147423] = 2, + [189775] = 4, + ACTIONS(1690), 1, + anon_sym_COMMA, + ACTIONS(9975), 1, + anon_sym_RBRACK, + STATE(6088), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7894), 5, - sym__automatic_semicolon, + [189789] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147435] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5319), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(9977), 1, + anon_sym_RBRACK, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147455] = 2, + [189803] = 4, + ACTIONS(1648), 1, + anon_sym_RPAREN, + ACTIONS(9979), 1, + anon_sym_COMMA, + STATE(5897), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7896), 5, - sym__automatic_semicolon, + [189817] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147467] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5326), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(5035), 1, + anon_sym_RBRACK, + STATE(6081), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147487] = 6, - ACTIONS(7898), 1, + [189831] = 4, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(9981), 1, sym_identifier, - ACTIONS(7900), 1, - anon_sym_GT, - ACTIONS(7902), 1, - sym_jsx_identifier, - STATE(5361), 1, - sym_nested_identifier, - STATE(5577), 1, - sym_jsx_namespace_name, + STATE(5374), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147507] = 2, + [189845] = 4, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(9983), 1, + anon_sym_RBRACE, + STATE(5994), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7904), 5, - sym__automatic_semicolon, + [189859] = 4, + ACTIONS(5344), 1, anon_sym_COMMA, + ACTIONS(9985), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147519] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, + STATE(5995), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, + [189873] = 4, + ACTIONS(5344), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [147537] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4826), 1, - sym__initializer, + ACTIONS(9987), 1, + anon_sym_RBRACE, + STATE(5995), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, - sym__automatic_semicolon, + [189887] = 4, + ACTIONS(4865), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147553] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4980), 1, - sym__initializer, + ACTIONS(9989), 1, + anon_sym_RBRACE, + STATE(5994), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7908), 3, - sym__automatic_semicolon, + [189901] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147569] = 4, - STATE(5301), 1, - sym_import_attribute, + ACTIONS(5035), 1, + anon_sym_RBRACK, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7872), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7910), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [147585] = 4, - STATE(5303), 1, - sym_import_attribute, + [189915] = 4, + ACTIONS(1690), 1, + anon_sym_COMMA, + ACTIONS(9467), 1, + anon_sym_RBRACK, + STATE(6088), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7872), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7912), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [147601] = 4, - ACTIONS(6309), 1, - anon_sym_LBRACK, - ACTIONS(7914), 1, - anon_sym_RBRACE, + [189929] = 4, + ACTIONS(9524), 1, + anon_sym_from, + ACTIONS(9865), 1, + anon_sym_as, + STATE(6325), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 3, + [189943] = 4, + ACTIONS(7489), 1, anon_sym_AMP, + ACTIONS(7491), 1, anon_sym_PIPE, + ACTIONS(7493), 1, anon_sym_extends, - [147617] = 5, - ACTIONS(7916), 1, - anon_sym_BQUOTE, - ACTIONS(7918), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7921), 1, - sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4233), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [147635] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(3791), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + [189957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147655] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, + ACTIONS(8243), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [189967] = 4, + ACTIONS(9991), 1, + sym_identifier, + ACTIONS(9993), 1, + anon_sym_LBRACK, + ACTIONS(9995), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [189981] = 3, + ACTIONS(4479), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4481), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [189993] = 4, + ACTIONS(9997), 1, anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(3885), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + ACTIONS(9999), 1, + anon_sym_await, + STATE(55), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147675] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4982), 1, - sym__initializer, + [190007] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147691] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4983), 1, - sym__initializer, + [190017] = 4, + ACTIONS(3131), 1, + anon_sym_GT, + ACTIONS(10001), 1, + anon_sym_COMMA, + STATE(5367), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + [190031] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147707] = 3, - ACTIONS(7926), 1, - sym_identifier, + ACTIONS(10003), 1, + anon_sym_RPAREN, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7928), 4, - anon_sym_LBRACE, + [190045] = 4, + ACTIONS(10005), 1, + anon_sym_COMMA, + ACTIONS(10007), 1, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [147721] = 3, - ACTIONS(7930), 1, + STATE(5830), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [190059] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10009), 1, + sym__glimmer_template_content, + ACTIONS(10011), 1, + sym_glimmer_closing_tag, + STATE(6096), 1, + aux_sym_glimmer_template_repeat1, + [190075] = 4, + ACTIONS(8093), 1, + anon_sym_const, + ACTIONS(9443), 1, sym_identifier, + STATE(5867), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7932), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [147735] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4984), 1, - sym__initializer, + [190089] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(5077), 1, + anon_sym_RPAREN, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + [190103] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147751] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4986), 1, - sym__initializer, + ACTIONS(5077), 1, + anon_sym_RPAREN, + STATE(5859), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + [190117] = 4, + ACTIONS(7748), 1, + anon_sym_implements, + ACTIONS(10013), 1, + anon_sym_LBRACE, + STATE(7378), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [190131] = 4, + ACTIONS(3159), 1, + anon_sym_GT, + ACTIONS(10015), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147767] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4853), 1, - sym__initializer, + STATE(5367), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, - sym__automatic_semicolon, + [190145] = 4, + ACTIONS(10017), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147783] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4996), 1, - sym__initializer, + ACTIONS(10019), 1, + anon_sym_GT, + STATE(6101), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, + [190159] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147799] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4997), 1, - sym__initializer, + ACTIONS(10021), 1, + anon_sym_RPAREN, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + [190173] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10009), 1, + sym__glimmer_template_content, + ACTIONS(10023), 1, + sym_glimmer_closing_tag, + STATE(6096), 1, + aux_sym_glimmer_template_repeat1, + [190189] = 4, + ACTIONS(1690), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147815] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4998), 1, - sym__initializer, + ACTIONS(9547), 1, + anon_sym_RBRACK, + STATE(6088), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + [190203] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147831] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4999), 1, - sym__initializer, + ACTIONS(5041), 1, + anon_sym_RBRACK, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + [190217] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147847] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5000), 1, - sym__initializer, + ACTIONS(5041), 1, + anon_sym_RBRACK, + STATE(5841), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + [190231] = 4, + ACTIONS(1690), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147863] = 4, - ACTIONS(6403), 1, + ACTIONS(9547), 1, + anon_sym_RBRACK, + STATE(5840), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [190245] = 3, + ACTIONS(10025), 1, anon_sym_EQ, - STATE(5003), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + ACTIONS(3515), 2, anon_sym_COMMA, - anon_sym_SEMI, - [147879] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5004), 1, - sym__initializer, + anon_sym_RBRACK, + [190257] = 4, + ACTIONS(10028), 1, + anon_sym_COMMA, + ACTIONS(10030), 1, + anon_sym_RPAREN, + STATE(5842), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + [190271] = 4, + ACTIONS(4865), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147895] = 2, + ACTIONS(10032), 1, + anon_sym_RBRACE, + STATE(5900), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7936), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [147907] = 5, - ACTIONS(7938), 1, - anon_sym_SEMI, - ACTIONS(7940), 1, - sym__automatic_semicolon, - STATE(5380), 1, - sym_import_attribute, + [190285] = 4, + ACTIONS(5344), 1, + anon_sym_COMMA, + ACTIONS(10034), 1, + anon_sym_RBRACE, + STATE(5995), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7872), 2, - anon_sym_with, - anon_sym_assert, - [147925] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(4100), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + [190299] = 4, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(10032), 1, + anon_sym_RBRACE, + STATE(5994), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147945] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5005), 1, - sym__initializer, + [190313] = 4, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(10036), 1, + anon_sym_RBRACE, + STATE(5994), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + [190327] = 4, + ACTIONS(4865), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147961] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5006), 1, - sym__initializer, + ACTIONS(10036), 1, + anon_sym_RBRACE, + STATE(5845), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + [190341] = 4, + ACTIONS(10038), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147977] = 6, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(5113), 1, + ACTIONS(10040), 1, + anon_sym_RPAREN, + STATE(5903), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [190355] = 4, + ACTIONS(10042), 1, + sym_identifier, + STATE(4259), 1, + sym_decorator_member_expression, + STATE(7341), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [190369] = 4, + ACTIONS(5344), 1, anon_sym_COMMA, - ACTIONS(7942), 1, + ACTIONS(10034), 1, anon_sym_RBRACE, - STATE(5157), 1, + STATE(5846), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147997] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7944), 1, - anon_sym_class, - ACTIONS(7946), 1, - anon_sym_abstract, - STATE(1244), 1, - sym_decorator, - STATE(3814), 1, - aux_sym_export_statement_repeat1, + [190383] = 4, + ACTIONS(10044), 1, + anon_sym_COMMA, + ACTIONS(10046), 1, + anon_sym_RBRACK, + STATE(5486), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148017] = 4, - STATE(5218), 1, - sym_import_attribute, + [190397] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(5017), 1, + anon_sym_RPAREN, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7872), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7948), 2, + [190411] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(5017), 1, + anon_sym_RPAREN, + STATE(5868), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [190425] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(10048), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [148033] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(4111), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + [190435] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148053] = 3, - ACTIONS(4753), 1, + ACTIONS(8239), 3, + anon_sym_LBRACK, sym_identifier, + sym_private_property_identifier, + [190445] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10050), 1, + sym__glimmer_template_content, + ACTIONS(10052), 1, + sym_glimmer_closing_tag, + STATE(5869), 1, + aux_sym_glimmer_template_repeat1, + [190461] = 3, + ACTIONS(4487), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4755), 4, + ACTIONS(4489), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [190473] = 3, + ACTIONS(4483), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148067] = 3, - ACTIONS(4640), 1, - sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4642), 4, + ACTIONS(4485), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [190485] = 3, + ACTIONS(4423), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148081] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5365), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148101] = 2, + ACTIONS(4425), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [190497] = 3, + ACTIONS(4391), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5193), 5, - anon_sym_EQ, + ACTIONS(4393), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148113] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5466), 1, - sym__call_signature, + anon_sym_LBRACE_PIPE, + [190509] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148133] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5008), 1, - sym__initializer, + ACTIONS(10054), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190519] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148149] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5009), 1, - sym__initializer, + [190529] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(10058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148165] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7950), 1, - anon_sym_EQ_GT, + [190539] = 4, + ACTIONS(10060), 1, + anon_sym_COMMA, + ACTIONS(10063), 1, + anon_sym_RPAREN, + STATE(5897), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5405), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [148181] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4798), 1, - sym__initializer, + [190553] = 4, + ACTIONS(10065), 1, + sym_identifier, + ACTIONS(10067), 1, + anon_sym_LBRACK, + ACTIONS(10069), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [190567] = 4, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, + anon_sym_RBRACE, + STATE(5994), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7953), 3, + [190581] = 4, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(10073), 1, + anon_sym_RBRACE, + STATE(5994), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [190595] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9728), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148197] = 2, + [190605] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5580), 5, - anon_sym_EQ, + ACTIONS(10075), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [190615] = 4, + ACTIONS(1646), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148209] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5011), 1, - sym__initializer, + ACTIONS(10077), 1, + anon_sym_COMMA, + STATE(5897), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [190629] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(10079), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148225] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7585), 1, - anon_sym_abstract, - ACTIONS(7955), 1, - anon_sym_class, - STATE(1244), 1, - sym_decorator, - STATE(3814), 1, - aux_sym_export_statement_repeat1, + [190639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148245] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5505), 1, - sym__call_signature, + ACTIONS(10081), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190649] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148265] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5012), 1, - sym__initializer, + ACTIONS(10081), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190659] = 3, + ACTIONS(8087), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(10083), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [148281] = 2, + [190671] = 3, + ACTIONS(8085), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5332), 5, - anon_sym_EQ, + ACTIONS(10083), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [190683] = 4, + ACTIONS(7712), 1, + anon_sym_RBRACE, + ACTIONS(10085), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148293] = 2, + STATE(5531), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5332), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148305] = 3, - ACTIONS(4888), 1, + [190697] = 4, + ACTIONS(1584), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 1, + anon_sym_SQUOTE, + STATE(5469), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [190711] = 4, + ACTIONS(7479), 1, + anon_sym_type, + ACTIONS(10087), 1, sym_identifier, + STATE(7048), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4890), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148319] = 3, - ACTIONS(4902), 1, + [190725] = 4, + ACTIONS(7479), 1, + anon_sym_type, + ACTIONS(10089), 1, sym_identifier, + STATE(7046), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4904), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148333] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5047), 1, - sym__initializer, + [190739] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7957), 3, + ACTIONS(10091), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [148349] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5016), 1, - sym__initializer, + [190749] = 4, + ACTIONS(3436), 1, + anon_sym_LPAREN, + ACTIONS(10093), 1, + anon_sym_DOT, + STATE(3583), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, + [190763] = 4, + ACTIONS(10095), 1, anon_sym_COMMA, - anon_sym_SEMI, - [148365] = 3, - ACTIONS(4709), 1, - sym_identifier, + ACTIONS(10097), 1, + anon_sym_RBRACE, + STATE(6009), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4711), 4, + [190777] = 3, + ACTIONS(10099), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148379] = 3, - ACTIONS(4713), 1, - sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4715), 4, + ACTIONS(9380), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [190789] = 3, + ACTIONS(10101), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7481), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [190801] = 3, + ACTIONS(10103), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148393] = 4, - ACTIONS(6403), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9253), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [190813] = 3, + ACTIONS(10105), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9161), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [190825] = 3, + ACTIONS(8301), 1, anon_sym_EQ, - STATE(5017), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(3573), 2, + anon_sym_in, + anon_sym_of, + [190837] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148409] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5021), 1, - sym__initializer, + [190847] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(10107), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148425] = 5, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - ACTIONS(7959), 1, - sym_identifier, + [190857] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5545), 2, - sym__module_export_name, - sym_string, - [148443] = 2, + ACTIONS(10107), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190867] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, + anon_sym_RPAREN, + STATE(5959), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5332), 5, - anon_sym_EQ, + [190881] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, + ACTIONS(5075), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148455] = 4, - STATE(5222), 1, - sym_import_attribute, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7872), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7961), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [148471] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5023), 1, - sym__initializer, + [190895] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(10107), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148487] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5026), 1, - sym__initializer, + [190905] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(10107), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148503] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5027), 1, - sym__initializer, + [190915] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148519] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5034), 1, - sym__initializer, + [190925] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(10109), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148535] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5035), 1, - sym__initializer, + [190935] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(10109), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148551] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5036), 1, - sym__initializer, + [190945] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148567] = 3, - ACTIONS(4800), 1, - sym_identifier, + [190955] = 4, + ACTIONS(2899), 1, + anon_sym_RBRACK, + ACTIONS(10113), 1, + anon_sym_COMMA, + STATE(5533), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4802), 4, - anon_sym_LBRACE, + [190969] = 4, + ACTIONS(7212), 1, + anon_sym_DOT, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(10115), 1, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148581] = 3, - ACTIONS(4804), 1, - sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4806), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148595] = 3, - ACTIONS(4800), 1, - sym_identifier, + [190983] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4802), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148609] = 3, - ACTIONS(4815), 1, - sym_identifier, + ACTIONS(10117), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190993] = 3, + ACTIONS(10119), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4817), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148623] = 2, + ACTIONS(10121), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [191005] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5598), 5, - anon_sym_EQ, + ACTIONS(10111), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148635] = 3, - ACTIONS(4819), 1, - sym_identifier, + anon_sym_SEMI, + [191015] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4821), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148649] = 6, - ACTIONS(7472), 1, - anon_sym_AMP, - ACTIONS(7478), 1, - anon_sym_PIPE, - ACTIONS(7480), 1, - anon_sym_extends, - ACTIONS(7963), 1, - anon_sym_as, - ACTIONS(7965), 1, - anon_sym_RBRACK, + ACTIONS(10111), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191025] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148669] = 3, - ACTIONS(4800), 1, + ACTIONS(10111), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191035] = 4, + ACTIONS(10123), 1, sym_identifier, + ACTIONS(10125), 1, + anon_sym_LBRACK, + ACTIONS(10127), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4802), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148683] = 2, + [191049] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5267), 5, - anon_sym_EQ, + ACTIONS(10111), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148695] = 2, + anon_sym_SEMI, + [191059] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7967), 5, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148707] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(3893), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148727] = 2, + [191069] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 5, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148739] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(4330), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [191079] = 4, + ACTIONS(2447), 1, + anon_sym_while, + ACTIONS(10129), 1, + anon_sym_else, + STATE(814), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148759] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5119), 1, - sym__initializer, + [191093] = 4, + ACTIONS(10131), 1, + anon_sym_COMMA, + ACTIONS(10133), 1, + anon_sym_RBRACK, + STATE(5979), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7969), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148775] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5121), 1, - sym__initializer, + [191107] = 4, + ACTIONS(10135), 1, + sym_identifier, + ACTIONS(10137), 1, + anon_sym_LBRACK, + ACTIONS(10139), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7971), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148791] = 2, + [191121] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7212), 5, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148803] = 3, - ACTIONS(4910), 1, + [191131] = 4, + ACTIONS(10141), 1, sym_identifier, + ACTIONS(10143), 1, + anon_sym_LBRACK, + ACTIONS(10145), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4912), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148817] = 3, - ACTIONS(4918), 1, + [191145] = 4, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7646), 1, + anon_sym_extends, + ACTIONS(9137), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191159] = 4, + ACTIONS(10147), 1, sym_identifier, + ACTIONS(10149), 1, + anon_sym_LBRACK, + ACTIONS(10151), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4920), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148831] = 2, + [191173] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 5, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148843] = 2, + [191183] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7973), 5, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148855] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5038), 1, - sym__initializer, + [191193] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7975), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148871] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(5135), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [191203] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148891] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4740), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7977), 3, + ACTIONS(10153), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148907] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5040), 1, - sym__initializer, + [191213] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7975), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148923] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4978), 1, - sym__initializer, + [191223] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7979), 3, + ACTIONS(10155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148939] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7583), 1, - anon_sym_class, - ACTIONS(7585), 1, - anon_sym_abstract, - STATE(1244), 1, - sym_decorator, - STATE(3814), 1, - aux_sym_export_statement_repeat1, + [191233] = 4, + ACTIONS(3149), 1, + anon_sym_GT, + ACTIONS(10157), 1, + anon_sym_COMMA, + STATE(5367), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148959] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5115), 1, - sym__initializer, + [191247] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7979), 3, + ACTIONS(10155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148975] = 3, - ACTIONS(4650), 1, - sym_identifier, + [191257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4652), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148989] = 3, - ACTIONS(4654), 1, - sym_identifier, + ACTIONS(10111), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191267] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(10159), 1, + anon_sym_RPAREN, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4656), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149003] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5041), 1, - sym__initializer, + [191281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7975), 3, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149019] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5042), 1, - sym__initializer, + [191291] = 4, + ACTIONS(3161), 1, + anon_sym_GT, + ACTIONS(10161), 1, + anon_sym_COMMA, + STATE(5367), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7975), 3, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149035] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4806), 1, - sym__initializer, + [191315] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7979), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149051] = 5, - ACTIONS(2275), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_SQUOTE, - ACTIONS(7981), 1, - sym_identifier, + [191325] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(10163), 1, + anon_sym_RPAREN, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4658), 2, - sym__module_export_name, - sym_string, - [149069] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4780), 1, - sym__initializer, + [191339] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7979), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149085] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4910), 1, - sym__initializer, + [191349] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7979), 3, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149101] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4935), 1, - sym__initializer, + [191359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7983), 3, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149117] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4976), 1, - sym__initializer, + [191369] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7983), 3, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149133] = 2, + [191379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7985), 5, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149145] = 2, + [191389] = 4, + ACTIONS(7804), 1, + anon_sym_AMP, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7226), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149157] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(4334), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + [191403] = 4, + ACTIONS(10165), 1, + sym_identifier, + ACTIONS(10167), 1, + anon_sym_LBRACK, + ACTIONS(10169), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149177] = 2, + [191417] = 3, + ACTIONS(9465), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7256), 5, - sym__automatic_semicolon, + ACTIONS(10171), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149189] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7946), 1, - anon_sym_abstract, - ACTIONS(7987), 1, - anon_sym_class, - STATE(1244), 1, - sym_decorator, - STATE(3814), 1, - aux_sym_export_statement_repeat1, + [191429] = 4, + ACTIONS(10173), 1, + sym_identifier, + ACTIONS(10175), 1, + anon_sym_LBRACK, + ACTIONS(10177), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149209] = 2, + [191443] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7262), 5, + ACTIONS(10109), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149221] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5095), 1, - sym__initializer, + [191453] = 4, + ACTIONS(10179), 1, + sym_identifier, + ACTIONS(10181), 1, + anon_sym_LBRACK, + ACTIONS(10183), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, - sym__automatic_semicolon, + [191467] = 4, + ACTIONS(10185), 1, anon_sym_COMMA, - anon_sym_SEMI, - [149237] = 2, + ACTIONS(10187), 1, + anon_sym_RBRACK, + STATE(5932), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1783), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149249] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(4014), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + [191481] = 4, + ACTIONS(10189), 1, + sym_identifier, + ACTIONS(10191), 1, + anon_sym_LBRACK, + ACTIONS(10193), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149269] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5056), 1, - sym__initializer, + [191495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7989), 3, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149285] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4608), 1, - sym__initializer, + [191505] = 4, + ACTIONS(2895), 1, + anon_sym_RBRACK, + ACTIONS(10195), 1, + anon_sym_COMMA, + STATE(5533), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7979), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149301] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4599), 1, - sym__initializer, + [191519] = 4, + ACTIONS(10197), 1, + anon_sym_LPAREN, + ACTIONS(10199), 1, + anon_sym_await, + STATE(47), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191533] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(10109), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149317] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5063), 1, - sym__initializer, + [191543] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7979), 3, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149333] = 2, + [191553] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2871), 5, + ACTIONS(10117), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149345] = 2, + [191563] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1783), 5, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149357] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7991), 1, - anon_sym_EQ_GT, + [191573] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5232), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149373] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5096), 1, - sym__initializer, + ACTIONS(10081), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191583] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149389] = 2, + [191593] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 5, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149401] = 5, - ACTIONS(7723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7754), 1, - sym__template_chars, - ACTIONS(7994), 1, - anon_sym_BQUOTE, + [191603] = 4, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(10201), 1, + anon_sym_RBRACE, + STATE(5994), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4233), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [149419] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5443), 1, - sym__call_signature, + [191617] = 4, + ACTIONS(5344), 1, + anon_sym_COMMA, + ACTIONS(10203), 1, + anon_sym_RBRACE, + STATE(5995), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149439] = 2, + [191631] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1779), 5, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149451] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(5065), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149471] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7996), 1, - anon_sym_EQ_GT, + [191641] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5232), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149487] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(7999), 1, - anon_sym_EQ_GT, + ACTIONS(10205), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191651] = 4, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(10207), 1, + anon_sym_RBRACE, + STATE(5994), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5405), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149503] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5349), 1, - sym_type_parameters, - STATE(5462), 1, - sym__call_signature, + [191665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149523] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(3979), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + ACTIONS(10109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191675] = 4, + ACTIONS(10209), 1, + anon_sym_COMMA, + ACTIONS(10212), 1, + anon_sym_RBRACE, + STATE(5994), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149543] = 4, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(8002), 1, - anon_sym_EQ_GT, + [191689] = 4, + ACTIONS(10214), 1, + anon_sym_COMMA, + ACTIONS(10217), 1, + anon_sym_RBRACE, + STATE(5995), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5405), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149559] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5066), 1, - sym__initializer, + sym_html_comment, + sym_comment, + [191703] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, - sym__automatic_semicolon, + ACTIONS(7481), 3, anon_sym_COMMA, - anon_sym_SEMI, - [149575] = 2, + anon_sym_RBRACE, + anon_sym_from, + [191713] = 3, + ACTIONS(10219), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7268), 5, - sym__automatic_semicolon, + ACTIONS(9916), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149587] = 2, + anon_sym_from, + [191725] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8005), 5, + ACTIONS(10153), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149599] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5068), 1, - sym__initializer, + [191735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(10109), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149615] = 2, + [191745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7268), 5, + ACTIONS(10155), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149627] = 2, + [191755] = 3, + ACTIONS(10221), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8007), 5, - sym__automatic_semicolon, + ACTIONS(9916), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149639] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__initializer, + [191767] = 4, + ACTIONS(10223), 1, + anon_sym_COMMA, + ACTIONS(10225), 1, + anon_sym_RBRACE, + STATE(5909), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7694), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149655] = 2, + [191781] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7458), 5, + ACTIONS(10117), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149667] = 2, + [191791] = 4, + ACTIONS(10227), 1, + sym_identifier, + ACTIONS(10229), 1, + anon_sym_require, + STATE(5907), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191805] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7280), 5, + ACTIONS(10109), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149679] = 2, + [191815] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(5004), 1, + anon_sym_RPAREN, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8009), 5, - sym__automatic_semicolon, + [191829] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149691] = 5, - ACTIONS(7723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8011), 1, - anon_sym_BQUOTE, - ACTIONS(8013), 1, - sym__template_chars, + ACTIONS(5004), 1, + anon_sym_RPAREN, + STATE(5964), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4347), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [149709] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5103), 1, - sym__initializer, + [191843] = 4, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(10231), 1, + anon_sym_DOT, + STATE(3697), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, - sym__automatic_semicolon, + [191857] = 4, + ACTIONS(7977), 1, + anon_sym_RBRACE, + ACTIONS(10233), 1, anon_sym_COMMA, - anon_sym_SEMI, - [149725] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5105), 1, - sym__initializer, + STATE(5599), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149741] = 2, + [191871] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2723), 5, + ACTIONS(9312), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149753] = 2, + [191881] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2743), 5, + ACTIONS(10155), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149765] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5108), 1, - sym__initializer, + [191891] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149781] = 2, + [191901] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8015), 5, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149793] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5109), 1, - sym__initializer, + [191911] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149809] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5112), 1, - sym__initializer, + [191921] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(10111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149825] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(4408), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + [191931] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149845] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_formal_parameters, - STATE(4378), 1, - sym__call_signature, - STATE(5342), 1, - sym_type_parameters, + ACTIONS(10235), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191941] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149865] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5217), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + ACTIONS(10237), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [191951] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149885] = 6, - ACTIONS(1716), 1, - anon_sym_LBRACE, - ACTIONS(7727), 1, - anon_sym_SEMI, - ACTIONS(7729), 1, + ACTIONS(10117), 3, sym__automatic_semicolon, - ACTIONS(7731), 1, - sym__function_signature_automatic_semicolon, - STATE(221), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_SEMI, + [191961] = 3, + ACTIONS(10239), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149905] = 2, + ACTIONS(10241), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [191973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 5, + ACTIONS(10081), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [149917] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4793), 1, - sym__initializer, + [191983] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149933] = 2, + [191993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2535), 5, + ACTIONS(10109), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149945] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5162), 1, - sym__initializer, + [192003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(10109), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149961] = 2, + [192013] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2547), 5, + ACTIONS(10117), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149973] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5164), 1, - sym__initializer, + [192023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149989] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5169), 1, - sym__initializer, + [192033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150005] = 4, - ACTIONS(1797), 1, - anon_sym_DOT, - ACTIONS(4097), 1, - anon_sym_LBRACE, + [192043] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 3, + ACTIONS(10081), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [150021] = 4, - ACTIONS(1855), 1, - anon_sym_DOT, - ACTIONS(4097), 1, - anon_sym_LBRACE, + anon_sym_SEMI, + [192053] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 3, + ACTIONS(10081), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [150037] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4575), 1, - sym__initializer, + anon_sym_SEMI, + [192063] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(10109), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150053] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4585), 1, - sym__initializer, + [192073] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(9312), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150069] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4586), 1, - sym__initializer, + [192083] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(10109), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150085] = 3, - ACTIONS(8017), 1, - sym_identifier, + [192093] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8019), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [150099] = 3, - ACTIONS(8021), 1, - sym_identifier, + ACTIONS(10117), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [150113] = 5, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6695), 1, - anon_sym_extends, - ACTIONS(7750), 1, - anon_sym_PIPE, + ACTIONS(10117), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192113] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8025), 2, + ACTIONS(10081), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [150131] = 5, - ACTIONS(7703), 1, - anon_sym_LPAREN, - ACTIONS(8027), 1, - sym_identifier, - STATE(3283), 1, - sym_decorator_member_expression, + [192123] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1228), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [150149] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4587), 1, - sym__initializer, + ACTIONS(10081), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192133] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150165] = 5, - ACTIONS(7250), 1, - anon_sym_LT, - ACTIONS(8029), 1, - anon_sym_LBRACE, - STATE(5098), 1, - sym_type_arguments, + [192143] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8031), 2, + ACTIONS(10081), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [150183] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5114), 1, - sym__initializer, + anon_sym_SEMI, + [192153] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150199] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5186), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + [192163] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150219] = 2, + ACTIONS(10081), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192173] = 4, + ACTIONS(7212), 1, + anon_sym_DOT, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(10243), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5681), 5, - anon_sym_EQ, + [192187] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, + ACTIONS(5079), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [150231] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4600), 1, - sym__initializer, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150247] = 4, - ACTIONS(6403), 1, + [192201] = 3, + ACTIONS(10245), 1, anon_sym_EQ, - STATE(4601), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150263] = 2, + ACTIONS(3573), 2, + anon_sym_in, + anon_sym_of, + [192213] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4989), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(8153), 3, + anon_sym_LBRACE, anon_sym_COLON, - [150275] = 2, + anon_sym_EQ_GT, + [192223] = 4, + ACTIONS(1638), 1, + anon_sym_RPAREN, + ACTIONS(10247), 1, + anon_sym_COMMA, + STATE(5897), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4985), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [150287] = 2, + [192237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2639), 5, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150299] = 2, + [192247] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2643), 5, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150311] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4604), 1, - sym__initializer, + [192257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150327] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4605), 1, - sym__initializer, + [192267] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150343] = 6, - ACTIONS(1716), 1, - anon_sym_LBRACE, - ACTIONS(7756), 1, - anon_sym_SEMI, - ACTIONS(7758), 1, - sym__automatic_semicolon, - ACTIONS(7760), 1, - sym__function_signature_automatic_semicolon, - STATE(219), 1, - sym_statement_block, + [192277] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150363] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4607), 1, - sym__initializer, + ACTIONS(10081), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192287] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150379] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(3742), 1, - sym_formal_parameters, - STATE(5328), 1, - sym__call_signature, - STATE(5349), 1, - sym_type_parameters, + [192297] = 4, + ACTIONS(2903), 1, + anon_sym_RBRACK, + ACTIONS(10249), 1, + anon_sym_COMMA, + STATE(5533), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150399] = 6, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, + [192311] = 4, + ACTIONS(2429), 1, + anon_sym_LBRACE, + ACTIONS(10251), 1, anon_sym_LPAREN, - STATE(3229), 1, - sym_formal_parameters, - STATE(5050), 1, - sym__call_signature, - STATE(5404), 1, - sym_type_parameters, + STATE(722), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150419] = 2, + [192325] = 4, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(10253), 1, + anon_sym_DOT, + STATE(1562), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8033), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [150431] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4617), 1, - sym__initializer, + [192339] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(6214), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150447] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5053), 1, - sym__initializer, + [192349] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150463] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(5132), 1, - sym__initializer, + [192359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(10117), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150479] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4635), 1, - sym__initializer, + [192369] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(10109), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150495] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4648), 1, - sym__initializer, + [192379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7688), 3, + ACTIONS(10109), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150511] = 4, - ACTIONS(6403), 1, - anon_sym_EQ, - STATE(4630), 1, - sym__initializer, + [192389] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 3, + ACTIONS(10081), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150527] = 6, - ACTIONS(222), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1498), 1, - anon_sym_LBRACE, - ACTIONS(7238), 1, - anon_sym_extends, - STATE(781), 1, - sym_object_type, - STATE(5110), 1, - sym_extends_type_clause, + [192399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150547] = 4, - ACTIONS(8035), 1, + ACTIONS(10081), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4560), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_SEMI, + [192409] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8037), 2, + ACTIONS(10081), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [150562] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8039), 1, - anon_sym_DQUOTE, - STATE(4486), 1, - aux_sym_string_repeat1, - ACTIONS(8041), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150579] = 4, - ACTIONS(8043), 1, + [192419] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, - STATE(4422), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(5103), 1, + anon_sym_RPAREN, + STATE(6091), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [150594] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5325), 1, - sym_type_parameters, - STATE(5693), 1, - sym_formal_parameters, + [192433] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(5103), 1, + anon_sym_RPAREN, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150611] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5327), 1, - sym_type_parameters, - STATE(5814), 1, - sym_formal_parameters, + [192447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150628] = 3, - ACTIONS(6035), 1, - anon_sym_EQ_GT, + ACTIONS(10081), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [150641] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8046), 1, - anon_sym_DQUOTE, - STATE(4430), 1, - aux_sym_string_repeat1, - ACTIONS(8048), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150658] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8046), 1, - anon_sym_SQUOTE, - STATE(4431), 1, - aux_sym_string_repeat2, - ACTIONS(8050), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150675] = 5, - ACTIONS(1712), 1, - anon_sym_while, - ACTIONS(2437), 1, - anon_sym_LBRACE, - ACTIONS(6267), 1, - anon_sym_DOT, - STATE(862), 1, - sym_statement_block, + ACTIONS(10117), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192467] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150692] = 5, - ACTIONS(1712), 1, - anon_sym_while, - ACTIONS(2437), 1, - anon_sym_LBRACE, - ACTIONS(6642), 1, - anon_sym_DOT, - STATE(862), 1, - sym_statement_block, + ACTIONS(10109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150709] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8052), 1, - anon_sym_DQUOTE, - STATE(4480), 1, - aux_sym_string_repeat1, - ACTIONS(8054), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150726] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8052), 1, - anon_sym_SQUOTE, - STATE(4493), 1, - aux_sym_string_repeat2, - ACTIONS(8056), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150743] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8058), 1, - anon_sym_RBRACK, + ACTIONS(10109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192487] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150760] = 4, - ACTIONS(8035), 1, + ACTIONS(10081), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4531), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_SEMI, + [192497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8060), 2, + ACTIONS(10109), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [150775] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8062), 1, + [192507] = 4, + ACTIONS(7212), 1, + anon_sym_DOT, + ACTIONS(7495), 1, anon_sym_COLON, + ACTIONS(10255), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150792] = 4, - ACTIONS(8064), 1, - anon_sym_from, - STATE(5417), 1, - sym__from_clause, + [192521] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4674), 2, + ACTIONS(10081), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [150807] = 4, - ACTIONS(825), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1626), 2, - sym_template_string, - sym_arguments, - [150822] = 3, - ACTIONS(7914), 1, + [192531] = 4, + ACTIONS(5344), 1, + anon_sym_COMMA, + ACTIONS(10257), 1, anon_sym_RBRACE, + STATE(5995), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [150835] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8066), 1, - anon_sym_DQUOTE, - STATE(4463), 1, - aux_sym_string_repeat1, - ACTIONS(8068), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150852] = 4, - ACTIONS(8072), 1, - anon_sym_COMMA, - STATE(4498), 1, - aux_sym_extends_clause_repeat1, + [192545] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8070), 2, - anon_sym_LBRACE, - anon_sym_implements, - [150867] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8066), 1, - anon_sym_SQUOTE, - STATE(4465), 1, - aux_sym_string_repeat2, - ACTIONS(8074), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150884] = 4, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(4243), 1, - anon_sym_EQ, + ACTIONS(10081), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192555] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [150899] = 4, - ACTIONS(8035), 1, + ACTIONS(10117), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4533), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_SEMI, + [192565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8078), 2, + ACTIONS(10109), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [150914] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8080), 1, - anon_sym_DQUOTE, - STATE(4457), 1, - aux_sym_string_repeat1, - ACTIONS(8082), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150931] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, - ACTIONS(8084), 1, - anon_sym_QMARK, + [192575] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150948] = 4, - ACTIONS(8086), 1, + ACTIONS(10109), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4445), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [192585] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7411), 2, - anon_sym_LBRACE, - anon_sym_GT, - [150963] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8089), 1, + ACTIONS(5073), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_RBRACK, + [192595] = 4, + ACTIONS(10259), 1, + anon_sym_COMMA, + ACTIONS(10261), 1, + anon_sym_RBRACK, + STATE(6051), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150980] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8091), 1, - sym_html_character_reference, - ACTIONS(8093), 1, - anon_sym_DQUOTE, - ACTIONS(8095), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4522), 1, - aux_sym__jsx_string_repeat1, - [150999] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8097), 1, - anon_sym_export, - STATE(1244), 1, - sym_decorator, - STATE(3814), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151016] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8093), 1, - anon_sym_SQUOTE, - ACTIONS(8099), 1, - sym_html_character_reference, - ACTIONS(8101), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4523), 1, - aux_sym__jsx_string_repeat2, - [151035] = 5, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(6246), 1, - anon_sym_LT, - STATE(2829), 1, - sym_arguments, - STATE(2852), 1, - sym_type_arguments, + [192609] = 3, + ACTIONS(9465), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151052] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8080), 1, - anon_sym_SQUOTE, - STATE(4459), 1, - aux_sym_string_repeat2, - ACTIONS(8103), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151069] = 4, - ACTIONS(8035), 1, + ACTIONS(10263), 2, anon_sym_COMMA, - STATE(4420), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RBRACK, + [192621] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 2, + ACTIONS(10117), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [151084] = 5, - ACTIONS(7246), 1, + [192631] = 4, + ACTIONS(1937), 1, anon_sym_COMMA, - ACTIONS(7500), 1, - anon_sym_LBRACE, - ACTIONS(7502), 1, - anon_sym_LBRACE_PIPE, - STATE(4474), 1, - aux_sym_extends_type_clause_repeat1, + ACTIONS(10265), 1, + anon_sym_RBRACK, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151101] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8107), 1, - anon_sym_DQUOTE, - STATE(4518), 1, - aux_sym_string_repeat1, - ACTIONS(8109), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151118] = 5, - ACTIONS(6554), 1, + [192645] = 4, + ACTIONS(4137), 1, + anon_sym_extends, + ACTIONS(10267), 1, anon_sym_AMP, - ACTIONS(6556), 1, + ACTIONS(10269), 1, anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8111), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151135] = 4, - ACTIONS(6254), 1, - anon_sym_EQ, - STATE(5189), 1, - sym_default_type, + [192659] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8113), 2, + ACTIONS(10081), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [151150] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8115), 1, - anon_sym_DQUOTE, - STATE(4480), 1, - aux_sym_string_repeat1, - ACTIONS(8054), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151167] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8117), 1, - anon_sym_class, - STATE(1244), 1, - sym_decorator, - STATE(3814), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151184] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8115), 1, - anon_sym_SQUOTE, - STATE(4493), 1, - aux_sym_string_repeat2, - ACTIONS(8056), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151201] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5395), 1, - sym_type_parameters, - STATE(5671), 1, - sym_formal_parameters, + anon_sym_SEMI, + [192669] = 4, + ACTIONS(1690), 1, + anon_sym_COMMA, + ACTIONS(10271), 1, + anon_sym_RBRACK, + STATE(6088), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151218] = 5, - ACTIONS(7118), 1, - anon_sym_const, - ACTIONS(8119), 1, - sym_identifier, - ACTIONS(8121), 1, - anon_sym_GT, - STATE(5223), 1, - sym_type_parameter, + [192683] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151235] = 2, + ACTIONS(10081), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192693] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8123), 4, + ACTIONS(10109), 3, sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, + anon_sym_COMMA, anon_sym_SEMI, - [151246] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8125), 1, - anon_sym_DQUOTE, - STATE(4480), 1, - aux_sym_string_repeat1, - ACTIONS(8054), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151263] = 2, + [192703] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5932), 4, + ACTIONS(10109), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151274] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8125), 1, - anon_sym_SQUOTE, - STATE(4493), 1, - aux_sym_string_repeat2, - ACTIONS(8056), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151291] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8127), 1, + [192713] = 4, + ACTIONS(10263), 1, anon_sym_RBRACK, + ACTIONS(10273), 1, + anon_sym_COMMA, + STATE(6088), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151308] = 5, - ACTIONS(7118), 1, - anon_sym_const, - ACTIONS(8119), 1, - sym_identifier, - ACTIONS(8129), 1, - anon_sym_GT, - STATE(5223), 1, - sym_type_parameter, + [192727] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151325] = 5, - ACTIONS(1700), 1, + ACTIONS(10109), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8131), 1, - anon_sym_EQ, - ACTIONS(8133), 1, - anon_sym_RBRACK, - STATE(4594), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [192737] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151342] = 5, - ACTIONS(8135), 1, - sym_identifier, - STATE(4396), 1, - sym_nested_type_identifier, - STATE(5133), 1, - sym_generic_type, - STATE(5801), 1, - sym_nested_identifier, + ACTIONS(10205), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192747] = 4, + ACTIONS(1937), 1, + anon_sym_COMMA, + ACTIONS(10276), 1, + anon_sym_RPAREN, + STATE(5443), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151359] = 4, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4519), 1, - anon_sym_LPAREN, + [192761] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2222), 2, - sym_template_string, - sym_arguments, - [151374] = 5, - ACTIONS(7246), 1, + ACTIONS(10081), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8137), 1, - anon_sym_LBRACE, - ACTIONS(8139), 1, - anon_sym_LBRACE_PIPE, - STATE(4528), 1, - aux_sym_extends_type_clause_repeat1, + anon_sym_SEMI, + [192771] = 4, + ACTIONS(3135), 1, + anon_sym_GT, + ACTIONS(10278), 1, + anon_sym_COMMA, + STATE(5367), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151391] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5403), 1, - sym_type_parameters, - STATE(5770), 1, - sym_formal_parameters, + [192785] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151408] = 5, - ACTIONS(7246), 1, + ACTIONS(10081), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8141), 1, - anon_sym_LBRACE, - ACTIONS(8143), 1, - anon_sym_LBRACE_PIPE, - STATE(4528), 1, - aux_sym_extends_type_clause_repeat1, + anon_sym_SEMI, + [192795] = 4, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(9877), 1, + anon_sym_DOT, + STATE(3305), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151425] = 5, - ACTIONS(7246), 1, - anon_sym_COMMA, - ACTIONS(8141), 1, - anon_sym_LBRACE, - ACTIONS(8143), 1, - anon_sym_LBRACE_PIPE, - STATE(4528), 1, - aux_sym_extends_type_clause_repeat1, + [192809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10280), 1, + sym__glimmer_template_content, + ACTIONS(10283), 1, + sym_glimmer_closing_tag, + STATE(6096), 1, + aux_sym_glimmer_template_repeat1, + [192825] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151442] = 4, - ACTIONS(6277), 1, - anon_sym_STAR, - ACTIONS(6281), 1, - anon_sym_LBRACE, + ACTIONS(10117), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5642), 2, - sym_namespace_import, - sym_named_imports, - [151457] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8145), 1, - anon_sym_COLON, + ACTIONS(10109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151474] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, - ACTIONS(8147), 1, - anon_sym_QMARK, + ACTIONS(10109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192855] = 4, + ACTIONS(222), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1540), 1, + anon_sym_LBRACE, + STATE(861), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151491] = 5, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(8149), 1, - anon_sym_LT, - STATE(1601), 1, - sym_arguments, - STATE(1602), 1, - sym_type_arguments, + [192869] = 4, + ACTIONS(9672), 1, + anon_sym_GT, + ACTIONS(10285), 1, + anon_sym_COMMA, + STATE(5710), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151508] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5410), 1, - sym_type_parameters, - STATE(5578), 1, - sym_formal_parameters, + [192883] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151525] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8151), 1, - anon_sym_DQUOTE, - STATE(4480), 1, - aux_sym_string_repeat1, - ACTIONS(8153), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151542] = 4, - ACTIONS(8072), 1, + ACTIONS(10109), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4439), 1, - aux_sym_extends_clause_repeat1, + anon_sym_SEMI, + [192893] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8156), 2, + ACTIONS(6262), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [192902] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - anon_sym_implements, - [151557] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8158), 1, - anon_sym_COLON, + STATE(2792), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151574] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8160), 1, - anon_sym_RPAREN, + [192913] = 3, + ACTIONS(10287), 1, + anon_sym_LPAREN, + STATE(719), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151591] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5235), 1, - sym_type_parameters, - STATE(5550), 1, - sym_formal_parameters, + [192924] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(783), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151608] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8162), 1, + [192935] = 3, + ACTIONS(7495), 1, anon_sym_COLON, + ACTIONS(10255), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151625] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8164), 1, - anon_sym_DQUOTE, - STATE(4480), 1, - aux_sym_string_repeat1, - ACTIONS(8054), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151642] = 3, - ACTIONS(8166), 1, - anon_sym_EQ_GT, + [192946] = 3, + ACTIONS(7567), 1, + anon_sym_DOT, + ACTIONS(10289), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3743), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [151655] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8168), 1, - sym_html_character_reference, - ACTIONS(8171), 1, - anon_sym_DQUOTE, - ACTIONS(8173), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4488), 1, - aux_sym__jsx_string_repeat1, - [151674] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5379), 1, - sym_type_parameters, - STATE(5612), 1, - sym_formal_parameters, + [192957] = 3, + ACTIONS(10291), 1, + sym_identifier, + ACTIONS(10293), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151691] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8176), 1, - sym_html_character_reference, - ACTIONS(8179), 1, - anon_sym_SQUOTE, - ACTIONS(8181), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4490), 1, - aux_sym__jsx_string_repeat2, - [151710] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5240), 1, - sym_type_parameters, - STATE(5779), 1, - sym_formal_parameters, + [192968] = 3, + ACTIONS(10295), 1, + sym_identifier, + ACTIONS(10297), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151727] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5527), 1, - sym_type_parameters, - STATE(5907), 1, - sym_formal_parameters, + [192979] = 3, + ACTIONS(10299), 1, + sym_identifier, + ACTIONS(10301), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151744] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8184), 1, - anon_sym_SQUOTE, - STATE(4493), 1, - aux_sym_string_repeat2, - ACTIONS(8186), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151761] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8189), 1, - anon_sym_RBRACK, + [192990] = 3, + ACTIONS(10303), 1, + sym_identifier, + ACTIONS(10305), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151778] = 5, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(8191), 1, - anon_sym_LT, - STATE(2046), 1, - sym_arguments, - STATE(2049), 1, - sym_type_arguments, + [193001] = 3, + ACTIONS(10307), 1, + sym_identifier, + ACTIONS(10309), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151795] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8193), 1, - anon_sym_COLON, + [193012] = 3, + ACTIONS(10311), 1, + sym_identifier, + ACTIONS(10313), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151812] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8195), 1, - anon_sym_RPAREN, + [193023] = 3, + ACTIONS(10315), 1, + sym_identifier, + ACTIONS(10317), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151829] = 4, - ACTIONS(8199), 1, - anon_sym_COMMA, - STATE(4498), 1, - aux_sym_extends_clause_repeat1, + [193034] = 3, + ACTIONS(10319), 1, + sym_identifier, + ACTIONS(10321), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8197), 2, + [193045] = 3, + ACTIONS(7971), 1, anon_sym_LBRACE, - anon_sym_implements, - [151844] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8202), 1, - anon_sym_class, - STATE(1244), 1, - sym_decorator, - STATE(3814), 1, - aux_sym_export_statement_repeat1, + STATE(243), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151861] = 4, - ACTIONS(8064), 1, - anon_sym_from, - STATE(5456), 1, - sym__from_clause, + [193056] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7287), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8204), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151876] = 4, - ACTIONS(8035), 1, - anon_sym_COMMA, - STATE(4560), 1, - aux_sym_variable_declaration_repeat1, + [193067] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2232), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8206), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151891] = 4, - ACTIONS(7202), 1, - anon_sym_EQ, - STATE(5191), 1, - sym__initializer, + [193078] = 3, + ACTIONS(4041), 1, + anon_sym_LBRACE, + STATE(2234), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8208), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [151906] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8164), 1, - anon_sym_SQUOTE, - STATE(4493), 1, - aux_sym_string_repeat2, - ACTIONS(8056), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151923] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8210), 1, - anon_sym_DQUOTE, - STATE(4508), 1, - aux_sym_string_repeat1, - ACTIONS(8212), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151940] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8210), 1, - anon_sym_SQUOTE, - STATE(4509), 1, - aux_sym_string_repeat2, - ACTIONS(8214), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151957] = 4, - ACTIONS(8035), 1, - anon_sym_COMMA, - STATE(4501), 1, - aux_sym_variable_declaration_repeat1, + [193089] = 3, + ACTIONS(4041), 1, + anon_sym_LBRACE, + STATE(2275), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8216), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151972] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8218), 1, - anon_sym_SQUOTE, - STATE(4493), 1, - aux_sym_string_repeat2, - ACTIONS(8056), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151989] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [193100] = 3, + ACTIONS(3139), 1, + sym_jsx_identifier, + ACTIONS(10323), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8220), 1, - anon_sym_DQUOTE, - STATE(4480), 1, - aux_sym_string_repeat1, - ACTIONS(8054), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152006] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8220), 1, - anon_sym_SQUOTE, - STATE(4493), 1, - aux_sym_string_repeat2, - ACTIONS(8056), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152023] = 4, - ACTIONS(7202), 1, - anon_sym_EQ, - STATE(5261), 1, - sym__initializer, + [193111] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8222), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [152038] = 4, - ACTIONS(8224), 1, + ACTIONS(10325), 2, anon_sym_COMMA, - STATE(4511), 1, - aux_sym_array_repeat1, + anon_sym_GT, + [193120] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5011), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [152053] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8039), 1, - anon_sym_SQUOTE, - STATE(4503), 1, - aux_sym_string_repeat2, - ACTIONS(8227), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152070] = 4, - ACTIONS(4757), 1, + ACTIONS(10263), 2, anon_sym_COMMA, - STATE(4422), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_RBRACK, + [193129] = 3, + ACTIONS(3420), 1, + anon_sym_LPAREN, + STATE(3019), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7510), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152085] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8229), 1, - anon_sym_RBRACK, + [193140] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152102] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(3205), 1, + ACTIONS(6246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193149] = 3, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3631), 1, + STATE(5026), 1, sym_formal_parameters, - STATE(5418), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152119] = 4, - ACTIONS(8064), 1, - anon_sym_from, - STATE(5305), 1, - sym__from_clause, + [193160] = 3, + ACTIONS(4517), 1, + anon_sym_LPAREN, + STATE(2397), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152134] = 5, - ACTIONS(6246), 1, - anon_sym_LT, - ACTIONS(6666), 1, - anon_sym_LPAREN, - STATE(2829), 1, - sym_arguments, - STATE(2852), 1, - sym_type_arguments, + [193171] = 3, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(10243), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152151] = 5, - ACTIONS(3), 1, + [193182] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(6254), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193191] = 3, + ACTIONS(7567), 1, + anon_sym_DOT, + ACTIONS(10327), 1, + anon_sym_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8218), 1, - anon_sym_DQUOTE, - STATE(4480), 1, - aux_sym_string_repeat1, - ACTIONS(8054), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152168] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5458), 1, - sym_type_parameters, - STATE(5658), 1, - sym_formal_parameters, + sym_comment, + [193202] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152185] = 3, - ACTIONS(8231), 1, - sym_escape_sequence, + ACTIONS(8967), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [193211] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8233), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152198] = 4, - ACTIONS(8064), 1, - anon_sym_from, - STATE(5491), 1, - sym__from_clause, + ACTIONS(8971), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [193220] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8236), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152213] = 6, - ACTIONS(3), 1, + ACTIONS(8975), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [193229] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(6246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193238] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8238), 1, - sym_html_character_reference, - ACTIONS(8240), 1, - anon_sym_DQUOTE, - ACTIONS(8242), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4488), 1, - aux_sym__jsx_string_repeat1, - [152232] = 6, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + ACTIONS(6246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193247] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8240), 1, - anon_sym_SQUOTE, - ACTIONS(8244), 1, - sym_html_character_reference, - ACTIONS(8246), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4490), 1, - aux_sym__jsx_string_repeat2, - [152251] = 5, - ACTIONS(6311), 1, - anon_sym_LPAREN, - ACTIONS(6317), 1, - anon_sym_LT, - STATE(3185), 1, - sym_arguments, - STATE(3394), 1, - sym_type_arguments, + sym_comment, + ACTIONS(6246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152268] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8248), 1, - anon_sym_RPAREN, + ACTIONS(6246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193265] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152285] = 5, - ACTIONS(8250), 1, - sym_identifier, - STATE(3800), 1, - sym_nested_type_identifier, - STATE(4453), 1, - sym_generic_type, - STATE(5801), 1, - sym_nested_identifier, + ACTIONS(6246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193274] = 3, + ACTIONS(10329), 1, + anon_sym_LBRACE, + STATE(822), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152302] = 5, - ACTIONS(7118), 1, - anon_sym_const, - ACTIONS(8119), 1, - sym_identifier, - ACTIONS(8252), 1, - anon_sym_GT, - STATE(5223), 1, - sym_type_parameter, + [193285] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152319] = 5, - ACTIONS(8254), 1, - anon_sym_LBRACE, - ACTIONS(8256), 1, + ACTIONS(6246), 2, anon_sym_COMMA, - ACTIONS(8259), 1, - anon_sym_LBRACE_PIPE, - STATE(4528), 1, - aux_sym_extends_type_clause_repeat1, + anon_sym_RBRACE, + [193294] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152336] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5297), 1, - sym_type_parameters, - STATE(5647), 1, - sym_formal_parameters, + ACTIONS(6246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193303] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152353] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5299), 1, - sym_type_parameters, - STATE(5685), 1, - sym_formal_parameters, + ACTIONS(6246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193312] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152370] = 4, - ACTIONS(8035), 1, + ACTIONS(6246), 2, anon_sym_COMMA, - STATE(4560), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RBRACE, + [193321] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6208), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8261), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152385] = 4, - ACTIONS(7202), 1, - anon_sym_EQ, - STATE(5219), 1, - sym__initializer, + [193332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8263), 2, + ACTIONS(6250), 2, anon_sym_COMMA, anon_sym_RBRACE, - [152400] = 4, - ACTIONS(8035), 1, + [193341] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6209), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [193352] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2381), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [193363] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6250), 2, anon_sym_COMMA, - STATE(4560), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RBRACE, + [193372] = 3, + ACTIONS(10331), 1, + anon_sym_SEMI, + ACTIONS(10333), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [193383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8265), 2, + ACTIONS(10335), 2, sym__automatic_semicolon, anon_sym_SEMI, - [152415] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8267), 1, - anon_sym_RBRACK, + [193392] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6210), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152432] = 4, - ACTIONS(8269), 1, - anon_sym_EQ, - STATE(5309), 1, - sym__initializer, + [193403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6719), 2, - anon_sym_in, - anon_sym_of, - [152447] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8271), 1, - anon_sym_COLON, + ACTIONS(6250), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193412] = 3, + ACTIONS(9524), 1, + anon_sym_from, + STATE(4609), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152464] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8273), 1, - anon_sym_RBRACK, + [193423] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152481] = 5, - ACTIONS(3), 1, + ACTIONS(6246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193432] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(6246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193441] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8275), 1, - anon_sym_DQUOTE, - STATE(4547), 1, - aux_sym_string_repeat1, - ACTIONS(8277), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152498] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + ACTIONS(6246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193450] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8275), 1, - anon_sym_SQUOTE, - STATE(4552), 1, - aux_sym_string_repeat2, - ACTIONS(8279), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152515] = 4, - ACTIONS(6254), 1, - anon_sym_EQ, - STATE(5486), 1, - sym_default_type, + sym_comment, + ACTIONS(6246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193459] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8281), 2, + ACTIONS(6246), 2, anon_sym_COMMA, - anon_sym_GT, - [152530] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8283), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, + [193468] = 3, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5904), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152547] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, - ACTIONS(8285), 1, - anon_sym_QMARK, + [193479] = 3, + ACTIONS(10337), 1, + sym_identifier, + STATE(5907), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152564] = 5, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(6289), 1, - anon_sym_LT, - STATE(3020), 1, - sym_arguments, - STATE(3189), 1, - sym_type_arguments, + [193490] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152581] = 5, - ACTIONS(1700), 1, + ACTIONS(6161), 2, anon_sym_COMMA, - ACTIONS(8131), 1, - anon_sym_EQ, - ACTIONS(8287), 1, - anon_sym_RBRACK, - STATE(4622), 1, - aux_sym_array_pattern_repeat1, + anon_sym_RBRACE, + [193499] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152598] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, - ACTIONS(8289), 1, - anon_sym_QMARK, + ACTIONS(9265), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [193508] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152615] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8291), 1, - anon_sym_RBRACK, + ACTIONS(10339), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [193517] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2624), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152632] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [193528] = 3, + ACTIONS(10341), 1, + anon_sym_LBRACE, + STATE(6222), 1, + sym_object, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8293), 1, - anon_sym_DQUOTE, - STATE(4480), 1, - aux_sym_string_repeat1, - ACTIONS(8054), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152649] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, - ACTIONS(8295), 1, - anon_sym_QMARK, + sym_comment, + [193539] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152666] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8297), 1, - anon_sym_RBRACK, + ACTIONS(10343), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193548] = 3, + ACTIONS(7352), 1, + anon_sym_LPAREN, + STATE(3725), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152683] = 5, - ACTIONS(7118), 1, - anon_sym_const, - ACTIONS(8119), 1, - sym_identifier, - ACTIONS(8299), 1, - anon_sym_GT, - STATE(5223), 1, - sym_type_parameter, + [193559] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6185), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152700] = 2, + [193570] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8301), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [152711] = 5, - ACTIONS(3), 1, + ACTIONS(10212), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193579] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(10217), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193588] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2204), 1, + sym_class_body, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8293), 1, - anon_sym_SQUOTE, - STATE(4493), 1, - aux_sym_string_repeat2, - ACTIONS(8056), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152728] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8303), 1, - anon_sym_RBRACK, + sym_comment, + [193599] = 3, + ACTIONS(4041), 1, + anon_sym_LBRACE, + STATE(2199), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152745] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5519), 1, - sym_type_parameters, - STATE(5638), 1, - sym_formal_parameters, + [193610] = 3, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(728), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152762] = 5, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(6419), 1, + [193621] = 3, + ACTIONS(10345), 1, anon_sym_LPAREN, - STATE(5522), 1, - sym_type_parameters, - STATE(5655), 1, - sym_formal_parameters, + STATE(48), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152779] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, - ACTIONS(8305), 1, - anon_sym_QMARK, + [193632] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152796] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8307), 1, - anon_sym_RPAREN, + ACTIONS(10171), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193641] = 3, + ACTIONS(10347), 1, + sym_identifier, + ACTIONS(10349), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152813] = 5, - ACTIONS(3), 1, + [193652] = 3, + ACTIONS(10351), 1, + sym_identifier, + ACTIONS(10353), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [193663] = 3, + ACTIONS(10355), 1, + sym_identifier, + ACTIONS(10357), 1, + sym_private_property_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8107), 1, - anon_sym_SQUOTE, - STATE(4507), 1, - aux_sym_string_repeat2, - ACTIONS(8309), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152830] = 2, + sym_comment, + [193674] = 3, + ACTIONS(10359), 1, + sym_identifier, + ACTIONS(10361), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152841] = 4, - ACTIONS(8313), 1, - anon_sym_COMMA, - STATE(4560), 1, - aux_sym_variable_declaration_repeat1, + [193685] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6859), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152856] = 5, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, - ACTIONS(8318), 1, - anon_sym_QMARK, + [193696] = 3, + ACTIONS(10363), 1, + sym_identifier, + ACTIONS(10365), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152873] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8320), 1, - anon_sym_RBRACK, + [193707] = 3, + ACTIONS(10367), 1, + sym_identifier, + ACTIONS(10369), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152890] = 5, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, - ACTIONS(8322), 1, - anon_sym_COLON, + [193718] = 3, + ACTIONS(10165), 1, + sym_identifier, + ACTIONS(10169), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152907] = 2, + [193729] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152917] = 4, - ACTIONS(5644), 1, + ACTIONS(6183), 2, anon_sym_COMMA, - ACTIONS(8326), 1, anon_sym_RBRACE, - STATE(4691), 1, - aux_sym_object_repeat1, + [193738] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2185), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152931] = 4, - ACTIONS(8328), 1, - anon_sym_COMMA, - ACTIONS(8330), 1, - anon_sym_RBRACE, - STATE(4897), 1, - aux_sym_enum_body_repeat1, + [193749] = 3, + ACTIONS(10345), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152945] = 4, - ACTIONS(6691), 1, - anon_sym_AMP, - ACTIONS(6695), 1, - anon_sym_extends, - ACTIONS(7750), 1, - anon_sym_PIPE, + [193760] = 3, + ACTIONS(10371), 1, + sym_identifier, + ACTIONS(10373), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152959] = 2, + [193771] = 3, + ACTIONS(4041), 1, + anon_sym_LBRACE, + STATE(2180), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152969] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(8334), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + [193782] = 3, + ACTIONS(10375), 1, + sym_identifier, + ACTIONS(10377), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152983] = 2, + [193793] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6923), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [193804] = 3, + ACTIONS(10379), 1, anon_sym_SEMI, - [152993] = 4, - ACTIONS(3175), 1, - anon_sym_GT, - ACTIONS(8336), 1, - anon_sym_COMMA, - STATE(4445), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(10381), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153007] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(4977), 1, - anon_sym_RPAREN, - STATE(4581), 1, - aux_sym_array_repeat1, + [193815] = 3, + ACTIONS(10383), 1, + sym_identifier, + ACTIONS(10385), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153021] = 2, + [193826] = 3, + ACTIONS(10387), 1, + sym_identifier, + ACTIONS(10389), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153031] = 2, + [193837] = 3, + ACTIONS(10147), 1, + sym_identifier, + ACTIONS(10151), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [193848] = 3, + ACTIONS(10391), 1, anon_sym_SEMI, - [153041] = 2, + ACTIONS(10393), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153051] = 2, + [193859] = 3, + ACTIONS(10395), 1, + sym_identifier, + ACTIONS(10397), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153061] = 4, - ACTIONS(8342), 1, + [193870] = 3, + ACTIONS(10399), 1, sym_identifier, - ACTIONS(8344), 1, - anon_sym_LBRACK, - ACTIONS(8346), 1, + ACTIONS(10401), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153075] = 4, - ACTIONS(8348), 1, + [193881] = 3, + ACTIONS(10403), 1, sym_identifier, - ACTIONS(8350), 1, - anon_sym_LBRACK, - ACTIONS(8352), 1, + ACTIONS(10405), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153089] = 4, - ACTIONS(8354), 1, + [193892] = 3, + ACTIONS(10407), 1, sym_identifier, - ACTIONS(8356), 1, - anon_sym_LBRACK, - ACTIONS(8358), 1, - sym_private_property_identifier, + ACTIONS(10409), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153103] = 4, - ACTIONS(8360), 1, + [193903] = 3, + ACTIONS(10411), 1, sym_identifier, - ACTIONS(8362), 1, - anon_sym_LBRACK, - ACTIONS(8364), 1, + ACTIONS(10413), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153117] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(8366), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + [193914] = 3, + ACTIONS(10415), 1, + anon_sym_LPAREN, + STATE(44), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153131] = 4, - ACTIONS(2901), 1, - anon_sym_RBRACK, - ACTIONS(8368), 1, - anon_sym_COMMA, - STATE(5101), 1, - aux_sym_tuple_type_repeat1, + [193925] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2177), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153145] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(4977), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + [193936] = 3, + ACTIONS(7567), 1, + anon_sym_DOT, + ACTIONS(10417), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153159] = 2, + [193947] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2287), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153169] = 2, + [193958] = 3, + ACTIONS(4041), 1, + anon_sym_LBRACE, + STATE(2285), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, + [193969] = 3, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(10115), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [193980] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6242), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153179] = 2, + anon_sym_RBRACE, + [193989] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, + ACTIONS(6242), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153189] = 2, + anon_sym_RBRACE, + [193998] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, + ACTIONS(6242), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153199] = 2, + anon_sym_RBRACE, + [194007] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(10419), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [153209] = 2, + [194016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(10421), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [153219] = 3, - ACTIONS(8372), 1, - anon_sym_LBRACE, + [194025] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7707), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [153231] = 4, - ACTIONS(1638), 1, - anon_sym_RPAREN, - ACTIONS(8374), 1, + ACTIONS(6246), 2, anon_sym_COMMA, - STATE(4921), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_RBRACE, + [194034] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153245] = 2, + ACTIONS(6201), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [194043] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, + ACTIONS(10423), 2, anon_sym_COMMA, + anon_sym_RBRACE, + [194052] = 3, + ACTIONS(10425), 1, anon_sym_SEMI, - [153255] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(8376), 1, - anon_sym_RBRACK, - STATE(4511), 1, - aux_sym_array_repeat1, + ACTIONS(10427), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153269] = 4, - ACTIONS(1700), 1, - anon_sym_COMMA, - ACTIONS(8378), 1, - anon_sym_RBRACK, - STATE(4674), 1, - aux_sym_array_pattern_repeat1, + [194063] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153283] = 4, - ACTIONS(3155), 1, - anon_sym_GT, - ACTIONS(8380), 1, + ACTIONS(6179), 2, anon_sym_COMMA, - STATE(4445), 1, - aux_sym_implements_clause_repeat1, + anon_sym_RBRACE, + [194072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153297] = 2, + ACTIONS(6175), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [194081] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, + ACTIONS(6234), 2, anon_sym_COMMA, + anon_sym_RBRACE, + [194090] = 3, + ACTIONS(10429), 1, anon_sym_SEMI, - [153307] = 4, - ACTIONS(6397), 1, - anon_sym_type, - ACTIONS(8384), 1, - sym_identifier, - STATE(5274), 1, - sym__import_identifier, + ACTIONS(10431), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153321] = 2, + [194101] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, + ACTIONS(6230), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153331] = 2, + anon_sym_RBRACE, + [194110] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, + ACTIONS(10433), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [153341] = 2, + [194119] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, + ACTIONS(6193), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153351] = 2, + anon_sym_RBRACE, + [194128] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2157), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, + [194139] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6169), 2, anon_sym_COMMA, + anon_sym_RBRACE, + [194148] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4597), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [153361] = 4, - ACTIONS(6397), 1, - anon_sym_type, - ACTIONS(8390), 1, - sym_identifier, - STATE(5275), 1, - sym__import_identifier, + [194157] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6857), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153375] = 4, - ACTIONS(5644), 1, + [194168] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(10063), 2, anon_sym_COMMA, - ACTIONS(8392), 1, - anon_sym_RBRACE, - STATE(4636), 1, - aux_sym_object_repeat1, + anon_sym_RPAREN, + [194177] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153389] = 2, + ACTIONS(8891), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [194186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, + ACTIONS(10435), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153399] = 2, + anon_sym_RPAREN, + [194195] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, + ACTIONS(10437), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153409] = 4, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(8394), 1, - anon_sym_DOT, - STATE(1594), 1, - sym_arguments, + anon_sym_RPAREN, + [194204] = 3, + ACTIONS(7660), 1, + anon_sym_LBRACE, + STATE(2537), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153423] = 2, + [194215] = 3, + ACTIONS(4692), 1, + anon_sym_LBRACE, + STATE(2897), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153433] = 2, + [194226] = 3, + ACTIONS(10065), 1, + sym_identifier, + ACTIONS(10069), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8396), 3, - sym__automatic_semicolon, + [194237] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6189), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153443] = 2, + anon_sym_RBRACE, + [194246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, + ACTIONS(4920), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [153453] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(5029), 1, - anon_sym_RPAREN, - STATE(4623), 1, - aux_sym_array_repeat1, + [194255] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153467] = 4, - ACTIONS(1931), 1, + ACTIONS(6161), 2, anon_sym_COMMA, - ACTIONS(5029), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [194264] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153481] = 2, + ACTIONS(6161), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [194273] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + ACTIONS(6161), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153491] = 2, + anon_sym_RBRACE, + [194282] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, + ACTIONS(6161), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153501] = 4, - ACTIONS(8400), 1, + anon_sym_RBRACE, + [194291] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6161), 2, anon_sym_COMMA, - ACTIONS(8403), 1, anon_sym_RBRACE, - STATE(4614), 1, - aux_sym_named_imports_repeat1, + [194300] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153515] = 2, + ACTIONS(6161), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [194309] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + ACTIONS(6258), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153525] = 4, - ACTIONS(6267), 1, - anon_sym_DOT, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(8405), 1, - anon_sym_GT, + anon_sym_RBRACE, + [194318] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6159), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153539] = 2, + [194329] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, + ACTIONS(6258), 2, anon_sym_COMMA, + anon_sym_RBRACE, + [194338] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4908), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [153549] = 4, - ACTIONS(4519), 1, - anon_sym_LPAREN, - ACTIONS(8407), 1, - anon_sym_DOT, - STATE(2032), 1, - sym_arguments, + [194347] = 3, + ACTIONS(7971), 1, + anon_sym_LBRACE, + STATE(228), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153563] = 4, - ACTIONS(8409), 1, - anon_sym_COMMA, - ACTIONS(8411), 1, - anon_sym_RBRACK, - STATE(4628), 1, - aux_sym_tuple_type_repeat1, + [194358] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6158), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153577] = 4, - ACTIONS(4112), 1, - anon_sym_extends, - ACTIONS(8413), 1, - anon_sym_AMP, - ACTIONS(8415), 1, - anon_sym_PIPE, + [194369] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153591] = 4, - ACTIONS(5113), 1, + ACTIONS(6258), 2, anon_sym_COMMA, - ACTIONS(8417), 1, anon_sym_RBRACE, - STATE(4698), 1, - aux_sym_object_pattern_repeat1, + [194378] = 3, + ACTIONS(10439), 1, + sym_identifier, + ACTIONS(10441), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153605] = 4, - ACTIONS(1700), 1, - anon_sym_COMMA, - ACTIONS(8419), 1, - anon_sym_RBRACK, - STATE(4674), 1, - aux_sym_array_pattern_repeat1, + [194389] = 3, + ACTIONS(10329), 1, + anon_sym_LBRACE, + STATE(830), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153619] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(8421), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + [194400] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6157), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153633] = 4, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - anon_sym_SQUOTE, - STATE(5640), 1, - sym_string, + [194411] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153647] = 4, - ACTIONS(3153), 1, - anon_sym_GT, - ACTIONS(8423), 1, + ACTIONS(6161), 2, anon_sym_COMMA, - STATE(4445), 1, - aux_sym_implements_clause_repeat1, + anon_sym_RBRACE, + [194420] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153661] = 2, + ACTIONS(6161), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [194429] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, - sym__automatic_semicolon, + ACTIONS(6161), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153671] = 2, + anon_sym_RBRACE, + [194438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, + ACTIONS(6161), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153681] = 4, - ACTIONS(2907), 1, - anon_sym_RBRACK, - ACTIONS(8425), 1, + anon_sym_RBRACE, + [194447] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6161), 2, anon_sym_COMMA, - STATE(5101), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [194456] = 3, + ACTIONS(3459), 1, + anon_sym_COLON, + STATE(7164), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153695] = 2, + [194467] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(815), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153705] = 2, + [194478] = 3, + ACTIONS(4041), 1, + anon_sym_LBRACE, + STATE(2342), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153715] = 2, + [194489] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + ACTIONS(6161), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153725] = 2, + anon_sym_RBRACE, + [194498] = 3, + ACTIONS(7660), 1, + anon_sym_LBRACE, + STATE(1637), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153735] = 2, + [194509] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, + ACTIONS(6161), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153745] = 2, + anon_sym_RBRACE, + [194518] = 3, + ACTIONS(10443), 1, + sym_identifier, + ACTIONS(10445), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153755] = 2, + [194529] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153765] = 4, - ACTIONS(5644), 1, + ACTIONS(6161), 2, anon_sym_COMMA, - ACTIONS(8427), 1, anon_sym_RBRACE, - STATE(4691), 1, - aux_sym_object_repeat1, + [194538] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153779] = 4, - ACTIONS(8129), 1, - anon_sym_GT, - ACTIONS(8429), 1, + ACTIONS(6161), 2, anon_sym_COMMA, - STATE(4938), 1, - aux_sym_type_parameters_repeat1, + anon_sym_RBRACE, + [194547] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153793] = 2, + ACTIONS(6161), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [194556] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, + ACTIONS(6258), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153803] = 2, + anon_sym_RBRACE, + [194565] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6156), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153813] = 2, + [194576] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, - sym__automatic_semicolon, + ACTIONS(6258), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153823] = 2, + anon_sym_RBRACE, + [194585] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6155), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, + [194596] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6258), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153833] = 4, - ACTIONS(6311), 1, - anon_sym_LPAREN, - ACTIONS(8431), 1, - anon_sym_DOT, - STATE(3239), 1, - sym_arguments, + anon_sym_RBRACE, + [194605] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6126), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153847] = 2, + [194616] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6153), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153857] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(5035), 1, - anon_sym_RPAREN, - STATE(4653), 1, - aux_sym_array_repeat1, + [194627] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6149), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153871] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(5035), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + [194638] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6146), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153885] = 2, + [194649] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + ACTIONS(6258), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153895] = 4, - ACTIONS(1040), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1586), 1, + anon_sym_RBRACE, + [194658] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(3987), 1, - sym_object_type, + STATE(6144), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153909] = 2, + [194669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, + ACTIONS(6161), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153919] = 2, + anon_sym_RBRACE, + [194678] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153929] = 4, - ACTIONS(8435), 1, + ACTIONS(6258), 2, anon_sym_COMMA, - ACTIONS(8437), 1, - anon_sym_RBRACK, - STATE(4663), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [194687] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6143), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153943] = 4, - ACTIONS(6807), 1, - anon_sym_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE, - ACTIONS(6811), 1, - anon_sym_extends, + [194698] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153957] = 4, - ACTIONS(1931), 1, + ACTIONS(6258), 2, anon_sym_COMMA, - ACTIONS(5015), 1, - anon_sym_RPAREN, - STATE(4821), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [194707] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2691), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153971] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(8439), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + [194718] = 3, + ACTIONS(4049), 1, + anon_sym_LBRACE, + STATE(1645), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153985] = 2, + [194729] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6142), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153995] = 4, - ACTIONS(3163), 1, - anon_sym_GT, - ACTIONS(8441), 1, - anon_sym_COMMA, - STATE(4445), 1, - aux_sym_implements_clause_repeat1, + [194740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154009] = 4, - ACTIONS(1931), 1, + ACTIONS(6258), 2, anon_sym_COMMA, - ACTIONS(5015), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [194749] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6213), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154023] = 2, + [194760] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + ACTIONS(6161), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154033] = 3, - ACTIONS(8443), 1, - anon_sym_as, + anon_sym_RBRACE, + [194769] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8445), 2, + ACTIONS(6161), 2, anon_sym_COMMA, anon_sym_RBRACE, - [154045] = 4, - ACTIONS(8447), 1, - sym_identifier, - ACTIONS(8449), 1, - anon_sym_LBRACK, - ACTIONS(8451), 1, - sym_private_property_identifier, + [194778] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2349), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154059] = 4, - ACTIONS(8453), 1, - sym_identifier, - ACTIONS(8455), 1, - anon_sym_LBRACK, - ACTIONS(8457), 1, - sym_private_property_identifier, + [194789] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154073] = 4, - ACTIONS(8459), 1, - sym_identifier, - ACTIONS(8461), 1, - anon_sym_LBRACK, - ACTIONS(8463), 1, - sym_private_property_identifier, + ACTIONS(6161), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [194798] = 3, + ACTIONS(3193), 1, + anon_sym_LPAREN, + STATE(3671), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154087] = 4, - ACTIONS(8465), 1, + [194809] = 3, + ACTIONS(10447), 1, sym_identifier, - ACTIONS(8467), 1, - anon_sym_LBRACK, - ACTIONS(8469), 1, + ACTIONS(10449), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154101] = 4, - ACTIONS(2893), 1, - anon_sym_RBRACK, - ACTIONS(8471), 1, + [194820] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6161), 2, anon_sym_COMMA, - STATE(5101), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [194829] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154115] = 2, + ACTIONS(6258), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [194838] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6141), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8473), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [154125] = 2, + [194849] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, + ACTIONS(6258), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154135] = 2, + anon_sym_RBRACE, + [194858] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6139), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154145] = 2, + [194869] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, + ACTIONS(6258), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154155] = 4, - ACTIONS(6972), 1, anon_sym_RBRACE, - ACTIONS(8475), 1, - anon_sym_COMMA, - STATE(5081), 1, - aux_sym_export_clause_repeat1, + [194878] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6138), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154169] = 2, + [194889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7264), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [154179] = 2, + ACTIONS(6161), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [194898] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154189] = 4, - ACTIONS(5644), 1, + ACTIONS(6161), 2, anon_sym_COMMA, - ACTIONS(8477), 1, anon_sym_RBRACE, - STATE(4691), 1, - aux_sym_object_repeat1, + [194907] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154203] = 4, - ACTIONS(5113), 1, + ACTIONS(6161), 2, anon_sym_COMMA, - ACTIONS(8479), 1, anon_sym_RBRACE, - STATE(4698), 1, - aux_sym_object_pattern_repeat1, + [194916] = 3, + ACTIONS(8083), 1, + anon_sym_LBRACE, + STATE(5117), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154217] = 2, + [194927] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154227] = 4, - ACTIONS(8483), 1, + ACTIONS(6161), 2, anon_sym_COMMA, - ACTIONS(8486), 1, - anon_sym_RBRACK, - STATE(4674), 1, - aux_sym_array_pattern_repeat1, + anon_sym_RBRACE, + [194936] = 3, + ACTIONS(10345), 1, + anon_sym_LPAREN, + STATE(62), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154241] = 3, - ACTIONS(8131), 1, - anon_sym_EQ, + [194947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8488), 2, + ACTIONS(6161), 2, anon_sym_COMMA, anon_sym_RBRACE, - [154253] = 4, - ACTIONS(1931), 1, + [194956] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6161), 2, anon_sym_COMMA, - ACTIONS(5041), 1, - anon_sym_RPAREN, - STATE(4681), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [194965] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154267] = 4, - ACTIONS(1931), 1, + ACTIONS(6258), 2, anon_sym_COMMA, - ACTIONS(5041), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [194974] = 3, + ACTIONS(10345), 1, + anon_sym_LPAREN, + STATE(63), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [194985] = 3, + ACTIONS(10451), 1, + anon_sym_LBRACE, + STATE(5114), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154281] = 2, + [194996] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6137), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, - sym__automatic_semicolon, + [195007] = 3, + ACTIONS(10345), 1, + anon_sym_LPAREN, + STATE(41), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [195018] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6258), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154291] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [195027] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6136), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [195038] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8490), 1, - sym__glimmer_template_content, - ACTIONS(8492), 1, - sym_glimmer_closing_tag, - STATE(4925), 1, - aux_sym_glimmer_template_repeat1, - [154307] = 2, + sym_comment, + ACTIONS(6258), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [195047] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6135), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [195058] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7181), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154317] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(8494), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + [195069] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154331] = 4, - ACTIONS(5644), 1, + ACTIONS(6161), 2, anon_sym_COMMA, - ACTIONS(8392), 1, anon_sym_RBRACE, - STATE(4691), 1, - aux_sym_object_repeat1, + [195078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154345] = 4, - ACTIONS(3167), 1, - anon_sym_GT, - ACTIONS(8496), 1, + ACTIONS(6161), 2, anon_sym_COMMA, - STATE(4445), 1, - aux_sym_implements_clause_repeat1, + anon_sym_RBRACE, + [195087] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154359] = 2, + ACTIONS(6161), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [195096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + ACTIONS(6161), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154369] = 2, + anon_sym_RBRACE, + [195105] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, + ACTIONS(6161), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154379] = 2, + anon_sym_RBRACE, + [195114] = 3, + ACTIONS(10453), 1, + sym_identifier, + ACTIONS(10455), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [195125] = 3, + ACTIONS(10457), 1, anon_sym_SEMI, - [154389] = 2, + ACTIONS(10459), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154399] = 2, + [195136] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, + ACTIONS(6161), 2, anon_sym_COMMA, + anon_sym_RBRACE, + [195145] = 3, + ACTIONS(10461), 1, anon_sym_SEMI, - [154409] = 2, + ACTIONS(10463), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [195156] = 3, + ACTIONS(10465), 1, anon_sym_SEMI, - [154419] = 4, - ACTIONS(8498), 1, - anon_sym_LPAREN, - ACTIONS(8500), 1, - anon_sym_await, - STATE(35), 1, - sym__for_header, + ACTIONS(10467), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [195167] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154433] = 4, - ACTIONS(8502), 1, + ACTIONS(6161), 2, anon_sym_COMMA, - ACTIONS(8505), 1, anon_sym_RBRACE, - STATE(4691), 1, - aux_sym_object_repeat1, + [195176] = 3, + ACTIONS(10469), 1, + sym_identifier, + ACTIONS(10471), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154447] = 4, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(8507), 1, - anon_sym_RPAREN, - STATE(5721), 1, - sym_type_annotation, + [195187] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154461] = 2, + ACTIONS(10473), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [195196] = 3, + ACTIONS(9524), 1, + anon_sym_from, + STATE(6327), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154471] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(5043), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + [195207] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6130), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [195218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154485] = 4, - ACTIONS(1931), 1, + ACTIONS(6266), 2, anon_sym_COMMA, - ACTIONS(5043), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [195227] = 3, + ACTIONS(10451), 1, + anon_sym_LBRACE, + STATE(5060), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154499] = 2, + [195238] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2358), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154509] = 2, + [195249] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, + ACTIONS(4591), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [154519] = 4, - ACTIONS(8509), 1, - anon_sym_COMMA, - ACTIONS(8512), 1, - anon_sym_RBRACE, - STATE(4698), 1, - aux_sym_object_pattern_repeat1, + [195258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154533] = 2, + ACTIONS(4589), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [195267] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, + ACTIONS(10475), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [154543] = 2, + [195276] = 3, + ACTIONS(7660), 1, + anon_sym_LBRACE, + STATE(1660), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154553] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(8514), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + [195287] = 3, + ACTIONS(4049), 1, + anon_sym_LBRACE, + STATE(1663), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154567] = 2, + [195298] = 3, + ACTIONS(4049), 1, + anon_sym_LBRACE, + STATE(1672), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154577] = 4, - ACTIONS(3161), 1, - anon_sym_GT, - ACTIONS(8516), 1, - anon_sym_COMMA, - STATE(4445), 1, - aux_sym_implements_clause_repeat1, + [195309] = 3, + ACTIONS(10477), 1, + sym_identifier, + ACTIONS(10479), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [195320] = 3, + ACTIONS(10415), 1, + anon_sym_LPAREN, + STATE(64), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154591] = 2, + [195331] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(10481), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [154601] = 4, - ACTIONS(6267), 1, - anon_sym_DOT, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(8518), 1, - anon_sym_GT, + [195340] = 3, + ACTIONS(3492), 1, + anon_sym_LPAREN, + STATE(1275), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154615] = 2, + [195351] = 3, + ACTIONS(3983), 1, + anon_sym_LPAREN, + STATE(1719), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154625] = 2, + [195362] = 3, + ACTIONS(10415), 1, + anon_sym_LPAREN, + STATE(43), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154635] = 2, + [195373] = 3, + ACTIONS(7495), 1, + anon_sym_COLON, + ACTIONS(9965), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154645] = 2, + [195384] = 3, + ACTIONS(7567), 1, + anon_sym_DOT, + ACTIONS(10483), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154655] = 2, + [195395] = 3, + ACTIONS(10485), 1, + anon_sym_LBRACE, + STATE(860), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154665] = 2, + [195406] = 3, + ACTIONS(7660), 1, + anon_sym_LBRACE, + STATE(1729), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [195417] = 3, + ACTIONS(10487), 1, anon_sym_SEMI, - [154675] = 4, - ACTIONS(8520), 1, - anon_sym_LPAREN, - ACTIONS(8522), 1, - anon_sym_await, - STATE(31), 1, - sym__for_header, + ACTIONS(10489), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154689] = 2, + [195428] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8524), 3, + ACTIONS(10491), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [154699] = 2, + [195437] = 3, + ACTIONS(10493), 1, + sym_identifier, + ACTIONS(10495), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154709] = 2, + [195448] = 3, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(5015), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154719] = 2, + [195459] = 3, + ACTIONS(9991), 1, + sym_identifier, + ACTIONS(9995), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154729] = 2, + [195470] = 3, + ACTIONS(7660), 1, + anon_sym_LBRACE, + STATE(1751), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154739] = 2, + [195481] = 3, + ACTIONS(4049), 1, + anon_sym_LBRACE, + STATE(1758), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154749] = 2, + [195492] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2640), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154759] = 4, - ACTIONS(8064), 1, - anon_sym_from, - ACTIONS(8526), 1, - anon_sym_as, - STATE(5460), 1, - sym__from_clause, + [195503] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2641), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154773] = 4, - ACTIONS(2229), 1, + [195514] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - ACTIONS(8528), 1, - sym_identifier, - STATE(4516), 1, - sym_export_clause, + STATE(2642), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154787] = 2, + [195525] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2335), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154797] = 5, - ACTIONS(3), 1, + [195536] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2643), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [195547] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8530), 1, - sym__glimmer_template_content, - ACTIONS(8533), 1, - sym_glimmer_closing_tag, - STATE(4723), 1, - aux_sym_glimmer_template_repeat1, - [154813] = 2, + sym_comment, + [195558] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2645), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154823] = 2, + [195569] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2646), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8524), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154833] = 2, + [195580] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2647), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154843] = 2, + [195591] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2648), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154853] = 3, - ACTIONS(8535), 1, - anon_sym_as, + [195602] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2649), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6399), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [154865] = 2, + [195613] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2650), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154875] = 4, - ACTIONS(7118), 1, - anon_sym_const, - ACTIONS(8119), 1, - sym_identifier, - STATE(5032), 1, - sym_type_parameter, + [195624] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2651), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154889] = 2, + [195635] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2652), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154899] = 2, + [195646] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2653), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8537), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154909] = 2, + [195657] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2654), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8524), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154919] = 4, - ACTIONS(6397), 1, - anon_sym_type, - ACTIONS(8539), 1, - sym_identifier, - STATE(5451), 1, - sym__import_identifier, + [195668] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2655), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154933] = 4, - ACTIONS(8541), 1, - sym_identifier, - STATE(3898), 1, - sym_decorator_member_expression, - STATE(5611), 1, - sym_decorator_call_expression, + [195679] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2656), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154947] = 2, + [195690] = 3, + ACTIONS(4041), 1, + anon_sym_LBRACE, + STATE(2145), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8543), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154957] = 2, + [195701] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2657), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154967] = 2, + [195712] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2658), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154977] = 2, + [195723] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2661), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8543), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154987] = 2, + [195734] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2662), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8545), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154997] = 2, + [195745] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2663), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, - sym__automatic_semicolon, + [195756] = 3, + ACTIONS(10497), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155007] = 4, - ACTIONS(6397), 1, - anon_sym_type, - ACTIONS(8547), 1, - sym_identifier, - STATE(5493), 1, - sym__import_identifier, + ACTIONS(10499), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155021] = 2, + [195767] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2620), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155031] = 4, - ACTIONS(8549), 1, - anon_sym_COMMA, - ACTIONS(8551), 1, - anon_sym_GT, - STATE(5171), 1, - aux_sym_type_parameters_repeat1, + [195778] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2666), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155045] = 2, + [195789] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2667), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155055] = 4, - ACTIONS(6759), 1, - anon_sym_RBRACE, - ACTIONS(8553), 1, - anon_sym_COMMA, - STATE(4614), 1, - aux_sym_named_imports_repeat1, + [195800] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2668), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155069] = 2, + [195811] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2669), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155079] = 2, + [195822] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2670), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155089] = 2, + [195833] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2671), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155099] = 2, + [195844] = 3, + ACTIONS(1706), 1, + anon_sym_LBRACE, + STATE(234), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155109] = 4, - ACTIONS(2473), 1, - anon_sym_while, - ACTIONS(8555), 1, - anon_sym_else, - STATE(764), 1, - sym_else_clause, + [195855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155123] = 3, - ACTIONS(7192), 1, - anon_sym_DOT, + ACTIONS(10501), 2, + anon_sym_COMMA, + anon_sym_GT, + [195864] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2672), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8557), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [155135] = 4, - ACTIONS(5987), 1, + [195875] = 3, + ACTIONS(7342), 1, anon_sym_LPAREN, - ACTIONS(8559), 1, - anon_sym_DOT, - STATE(2848), 1, - sym_arguments, + STATE(7519), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155149] = 3, - ACTIONS(7192), 1, - anon_sym_DOT, + [195886] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2673), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8561), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [155161] = 2, + [195897] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2674), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155171] = 3, - ACTIONS(7194), 1, - anon_sym_DOT, + [195908] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2675), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8561), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [155183] = 2, + [195919] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2676), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155193] = 2, + [195930] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2677), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155203] = 4, - ACTIONS(5113), 1, - anon_sym_COMMA, - ACTIONS(8563), 1, - anon_sym_RBRACE, - STATE(4698), 1, - aux_sym_object_pattern_repeat1, + [195941] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2678), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155217] = 2, + [195952] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2680), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155227] = 3, - ACTIONS(8567), 1, + [195963] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, + STATE(2683), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8033), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [155239] = 2, + [195974] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2684), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155249] = 2, + [195985] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2686), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155259] = 2, + [195996] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2687), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155269] = 2, + [196007] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2688), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155279] = 4, - ACTIONS(222), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1498), 1, + [196018] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(780), 1, - sym_object_type, + STATE(2689), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155293] = 2, + [196029] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2690), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155303] = 3, - ACTIONS(7194), 1, - anon_sym_DOT, + [196040] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2711), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8557), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [155315] = 2, + [196051] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2692), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155325] = 4, - ACTIONS(8569), 1, - anon_sym_COMMA, - ACTIONS(8571), 1, - anon_sym_RBRACK, - STATE(4872), 1, - aux_sym_tuple_type_repeat1, + [196062] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2693), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155339] = 2, + [196073] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2694), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8573), 3, + [196084] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [155349] = 4, - ACTIONS(8575), 1, - sym_identifier, - ACTIONS(8577), 1, - anon_sym_LBRACK, - ACTIONS(8579), 1, - sym_private_property_identifier, + STATE(2695), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155363] = 2, + [196095] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2696), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155373] = 2, + [196106] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2697), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155383] = 2, + [196117] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155393] = 2, + anon_sym_RBRACE, + [196126] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2699), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155403] = 2, + [196137] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2700), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155413] = 2, + [196148] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2701), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155423] = 4, - ACTIONS(7118), 1, - anon_sym_const, - ACTIONS(8119), 1, - sym_identifier, - STATE(4744), 1, - sym_type_parameter, + [196159] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2702), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155437] = 2, + [196170] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2703), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155447] = 4, - ACTIONS(5087), 1, - anon_sym_extends, - ACTIONS(8581), 1, - anon_sym_AMP, - ACTIONS(8583), 1, - anon_sym_PIPE, + [196181] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2705), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155461] = 2, + [196192] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4889), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155471] = 2, + [196203] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2706), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155481] = 2, + [196214] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2707), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155491] = 2, + [196225] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2708), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155501] = 2, + [196236] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2709), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155511] = 2, + [196247] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2710), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155521] = 2, + [196258] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2753), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155531] = 2, + [196269] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2712), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155541] = 2, + [196280] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2715), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155551] = 4, - ACTIONS(7472), 1, - anon_sym_AMP, - ACTIONS(7478), 1, - anon_sym_PIPE, - ACTIONS(7480), 1, - anon_sym_extends, + [196291] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2716), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155565] = 2, + [196302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, + ACTIONS(10503), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155575] = 2, + anon_sym_GT, + [196311] = 3, + ACTIONS(10505), 1, + sym_identifier, + STATE(5808), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155585] = 2, + [196322] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2717), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155595] = 2, + [196333] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2595), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155605] = 2, + [196344] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2719), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155615] = 2, + [196355] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2720), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155625] = 2, + [196366] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2721), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155635] = 4, - ACTIONS(8589), 1, - sym_identifier, - ACTIONS(8591), 1, - anon_sym_LBRACK, - ACTIONS(8593), 1, - sym_private_property_identifier, + [196377] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2722), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155649] = 2, + [196388] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2723), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155659] = 2, + [196399] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2724), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155669] = 2, + [196410] = 3, + ACTIONS(9524), 1, + anon_sym_from, + STATE(4968), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155679] = 4, - ACTIONS(8595), 1, + [196421] = 3, + ACTIONS(10507), 1, sym_identifier, - ACTIONS(8597), 1, - anon_sym_LBRACK, - ACTIONS(8599), 1, + ACTIONS(10509), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155693] = 2, + [196432] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2729), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155703] = 2, + [196443] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2730), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155713] = 2, + [196454] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2731), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155723] = 2, + [196465] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2732), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155733] = 2, + [196476] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2733), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155743] = 2, + [196487] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2734), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155753] = 2, + [196498] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2735), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155763] = 2, + [196509] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2736), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, + [196520] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9937), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155773] = 4, - ACTIONS(8601), 1, - sym_identifier, - ACTIONS(8603), 1, - anon_sym_LBRACK, - ACTIONS(8605), 1, - sym_private_property_identifier, + anon_sym_GT, + [196529] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7545), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155787] = 2, + [196540] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2737), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155797] = 2, + [196551] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2738), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155807] = 2, + [196562] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2739), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155817] = 2, + [196573] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2740), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155827] = 2, + [196584] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2741), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155837] = 4, - ACTIONS(1040), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1586), 1, + [196595] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(4063), 1, - sym_object_type, + STATE(2742), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155851] = 2, + [196606] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2743), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155861] = 4, - ACTIONS(8607), 1, - anon_sym_COMMA, - ACTIONS(8609), 1, - anon_sym_RBRACE, - STATE(4898), 1, - aux_sym_enum_body_repeat1, + [196617] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2744), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155875] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(8611), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + [196628] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2745), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155889] = 2, + [196639] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2746), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155899] = 4, - ACTIONS(3171), 1, - anon_sym_GT, - ACTIONS(8613), 1, - anon_sym_COMMA, - STATE(4445), 1, - aux_sym_implements_clause_repeat1, + [196650] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2747), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155913] = 4, - ACTIONS(8615), 1, - sym_identifier, - ACTIONS(8617), 1, - anon_sym_LBRACK, - ACTIONS(8619), 1, - sym_private_property_identifier, + [196661] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2748), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155927] = 2, + [196672] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2749), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155937] = 2, + [196683] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155947] = 2, + anon_sym_RBRACE, + [196692] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155957] = 3, - ACTIONS(8621), 1, - anon_sym_EQ, + anon_sym_RBRACE, + [196701] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8623), 2, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_from, - [155969] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [196710] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(6274), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [196719] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6237), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8625), 1, - sym__glimmer_template_content, - ACTIONS(8627), 1, - sym_glimmer_closing_tag, - STATE(5176), 1, - aux_sym_glimmer_template_repeat1, - [155985] = 4, - ACTIONS(8629), 1, - sym_identifier, - STATE(3844), 1, - sym_decorator_member_expression, - STATE(5775), 1, - sym_decorator_call_expression, + sym_comment, + [196730] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4805), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155999] = 2, + [196741] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6399), 3, + ACTIONS(6274), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_from, - [156009] = 3, - ACTIONS(8631), 1, - anon_sym_EQ, + [196750] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6238), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8623), 2, - anon_sym_COMMA, - anon_sym_from, - [156021] = 2, + [196761] = 3, + ACTIONS(7929), 1, + anon_sym_LBRACE, + STATE(811), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156031] = 4, - ACTIONS(5113), 1, - anon_sym_COMMA, - ACTIONS(8633), 1, - anon_sym_RBRACE, - STATE(5158), 1, - aux_sym_object_pattern_repeat1, + [196772] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156045] = 4, - ACTIONS(5644), 1, + ACTIONS(6274), 2, anon_sym_COMMA, - ACTIONS(8635), 1, anon_sym_RBRACE, - STATE(4565), 1, - aux_sym_object_repeat1, + [196781] = 3, + ACTIONS(8083), 1, + anon_sym_LBRACE, + STATE(4687), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156059] = 2, + [196792] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6239), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8637), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156069] = 2, + [196803] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156079] = 4, - ACTIONS(2905), 1, - anon_sym_RBRACK, - ACTIONS(8641), 1, + ACTIONS(6270), 2, anon_sym_COMMA, - STATE(5101), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [196812] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156093] = 4, - ACTIONS(5644), 1, + ACTIONS(6270), 2, anon_sym_COMMA, - ACTIONS(8635), 1, anon_sym_RBRACE, - STATE(4691), 1, - aux_sym_object_repeat1, + [196821] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156107] = 2, + ACTIONS(6270), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [196830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8643), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156117] = 2, + anon_sym_RBRACE, + [196839] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156127] = 2, + anon_sym_RBRACE, + [196848] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156137] = 2, + anon_sym_RBRACE, + [196857] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156147] = 2, + anon_sym_RBRACE, + [196866] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156157] = 2, + anon_sym_RBRACE, + [196875] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6240), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156167] = 2, + [196886] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156177] = 2, + anon_sym_RBRACE, + [196895] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6241), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156187] = 4, - ACTIONS(5113), 1, + [196906] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6274), 2, anon_sym_COMMA, - ACTIONS(8633), 1, anon_sym_RBRACE, - STATE(4698), 1, - aux_sym_object_pattern_repeat1, + [196915] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6242), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156201] = 2, + [196926] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6243), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8649), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156211] = 2, + [196937] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6245), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156221] = 2, + [196948] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6249), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156231] = 2, + [196959] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156241] = 2, + anon_sym_RBRACE, + [196968] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6253), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156251] = 2, + [196979] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156261] = 2, + anon_sym_RBRACE, + [196988] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156271] = 2, + anon_sym_RBRACE, + [196997] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6254), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156281] = 3, - ACTIONS(8651), 1, - anon_sym_as, + [197008] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8623), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [156293] = 4, - ACTIONS(8653), 1, + ACTIONS(6274), 2, anon_sym_COMMA, - ACTIONS(8655), 1, anon_sym_RBRACE, - STATE(4746), 1, - aux_sym_named_imports_repeat1, + [197017] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6255), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156307] = 2, + [197028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156317] = 2, + anon_sym_RBRACE, + [197037] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2750), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156327] = 4, - ACTIONS(5113), 1, - anon_sym_COMMA, - ACTIONS(8563), 1, - anon_sym_RBRACE, - STATE(4621), 1, - aux_sym_object_pattern_repeat1, + [197048] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6256), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156341] = 2, + [197059] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156351] = 2, + anon_sym_RBRACE, + [197068] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156361] = 2, + anon_sym_RBRACE, + [197077] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156371] = 2, + anon_sym_RBRACE, + [197086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156381] = 2, + anon_sym_RBRACE, + [197095] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2751), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8649), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156391] = 2, + [197106] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2752), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156401] = 2, + [197117] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7546), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156411] = 2, + [197128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8657), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156421] = 2, + anon_sym_RBRACE, + [197137] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6257), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8659), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156431] = 2, + [197148] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156441] = 4, - ACTIONS(2891), 1, - anon_sym_RBRACK, - ACTIONS(8661), 1, + ACTIONS(6274), 2, anon_sym_COMMA, - STATE(5101), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [197157] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6261), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156455] = 2, + [197168] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156465] = 2, + anon_sym_RBRACE, + [197177] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6263), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8649), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156475] = 2, + [197188] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156485] = 2, + anon_sym_RBRACE, + [197197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156495] = 2, + anon_sym_RBRACE, + [197206] = 3, + ACTIONS(8083), 1, + anon_sym_LBRACE, + STATE(5095), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8649), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156505] = 2, + [197217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156515] = 2, + anon_sym_RBRACE, + [197226] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6265), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156525] = 2, + [197237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156535] = 2, + anon_sym_RBRACE, + [197246] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6266), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, - sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156545] = 2, + sym_comment, + [197257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8649), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156555] = 2, + anon_sym_RBRACE, + [197266] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6267), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156565] = 2, + [197277] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6268), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156575] = 2, + [197288] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6270), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156585] = 2, + [197299] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6272), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156595] = 4, - ACTIONS(7118), 1, - anon_sym_const, - ACTIONS(8119), 1, - sym_identifier, - STATE(5223), 1, - sym_type_parameter, + [197310] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6277), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156609] = 4, - ACTIONS(8663), 1, - sym_identifier, - ACTIONS(8665), 1, - anon_sym_require, - STATE(4768), 1, - sym_nested_identifier, + [197321] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156623] = 4, - ACTIONS(8667), 1, + ACTIONS(6274), 2, anon_sym_COMMA, - ACTIONS(8669), 1, - anon_sym_RBRACK, - STATE(4582), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [197330] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6279), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156637] = 4, - ACTIONS(8671), 1, - anon_sym_COMMA, - ACTIONS(8673), 1, - anon_sym_RPAREN, - STATE(5070), 1, - aux_sym_formal_parameters_repeat1, + [197341] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6280), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156651] = 2, + [197352] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6282), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156661] = 4, - ACTIONS(8675), 1, - anon_sym_COMMA, - ACTIONS(8677), 1, - anon_sym_RPAREN, - STATE(4591), 1, - aux_sym_formal_parameters_repeat1, + [197363] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6286), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [197374] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156675] = 4, - ACTIONS(8679), 1, + ACTIONS(6274), 2, anon_sym_COMMA, - ACTIONS(8681), 1, anon_sym_RBRACE, - STATE(5141), 1, - aux_sym_enum_body_repeat1, + [197383] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6288), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156689] = 2, + [197394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156699] = 4, - ACTIONS(8683), 1, + ACTIONS(6270), 2, anon_sym_COMMA, - ACTIONS(8685), 1, anon_sym_RBRACE, - STATE(5141), 1, - aux_sym_enum_body_repeat1, + [197403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156713] = 2, + ACTIONS(6270), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [197412] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156723] = 4, - ACTIONS(8687), 1, + ACTIONS(6270), 2, anon_sym_COMMA, - ACTIONS(8689), 1, anon_sym_RBRACE, - STATE(5141), 1, - aux_sym_enum_body_repeat1, + [197421] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156737] = 4, - ACTIONS(8691), 1, + ACTIONS(6274), 2, anon_sym_COMMA, - ACTIONS(8693), 1, anon_sym_RBRACE, - STATE(5141), 1, - aux_sym_enum_body_repeat1, + [197430] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6162), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156751] = 2, + [197441] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156761] = 2, + anon_sym_RBRACE, + [197450] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6291), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8649), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156771] = 2, + [197461] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156781] = 2, + anon_sym_RBRACE, + [197470] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6294), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156791] = 4, - ACTIONS(6666), 1, - anon_sym_LPAREN, - ACTIONS(8559), 1, - anon_sym_DOT, - STATE(2848), 1, - sym_arguments, + [197481] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6295), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156805] = 2, + [197492] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6297), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156815] = 2, + [197503] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6299), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156825] = 4, - ACTIONS(1700), 1, - anon_sym_COMMA, - ACTIONS(8133), 1, - anon_sym_RBRACK, - STATE(4594), 1, - aux_sym_array_pattern_repeat1, + [197514] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156839] = 4, - ACTIONS(1931), 1, + ACTIONS(6274), 2, anon_sym_COMMA, - ACTIONS(5013), 1, - anon_sym_RBRACK, - STATE(4593), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [197523] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6301), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156853] = 2, + [197534] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156863] = 2, + anon_sym_RBRACE, + [197543] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156873] = 2, + anon_sym_RBRACE, + [197552] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6302), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156883] = 2, + [197563] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156893] = 4, - ACTIONS(1931), 1, + ACTIONS(6274), 2, anon_sym_COMMA, - ACTIONS(5013), 1, - anon_sym_RBRACK, - STATE(4511), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [197572] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6303), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156907] = 2, + [197583] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156917] = 2, + anon_sym_RBRACE, + [197592] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6289), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156927] = 2, + [197603] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8649), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156937] = 2, + anon_sym_RBRACE, + [197612] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156947] = 2, + anon_sym_RBRACE, + [197621] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8695), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156957] = 2, + anon_sym_RBRACE, + [197630] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7858), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156967] = 2, + anon_sym_RBRACE, + [197639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [156977] = 2, + ACTIONS(6270), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [197648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156987] = 4, - ACTIONS(8697), 1, + ACTIONS(6270), 2, anon_sym_COMMA, - ACTIONS(8700), 1, - anon_sym_RPAREN, - STATE(4921), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_RBRACE, + [197657] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157001] = 2, + ACTIONS(6270), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [197666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157011] = 4, - ACTIONS(1700), 1, + ACTIONS(6270), 2, anon_sym_COMMA, - ACTIONS(8133), 1, - anon_sym_RBRACK, - STATE(4674), 1, - aux_sym_array_pattern_repeat1, + anon_sym_RBRACE, + [197675] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157025] = 2, + ACTIONS(6270), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [197684] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157035] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8702), 1, - sym__glimmer_template_content, - ACTIONS(8704), 1, - sym_glimmer_closing_tag, - STATE(4723), 1, - aux_sym_glimmer_template_repeat1, - [157051] = 2, + anon_sym_RBRACE, + [197693] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7858), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157061] = 2, + anon_sym_RBRACE, + [197702] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6305), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157071] = 2, + [197713] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157081] = 2, + anon_sym_RBRACE, + [197722] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6307), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8706), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [157091] = 2, + [197733] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157101] = 2, + anon_sym_RBRACE, + [197742] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6308), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157111] = 2, + [197753] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6309), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8649), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157121] = 2, + [197764] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6314), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157131] = 2, + [197775] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6316), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157141] = 2, + [197786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8708), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157151] = 2, + anon_sym_RBRACE, + [197795] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6319), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8659), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157161] = 2, + [197806] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157171] = 4, - ACTIONS(8710), 1, + anon_sym_RBRACE, + [197815] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6274), 2, anon_sym_COMMA, - ACTIONS(8713), 1, - anon_sym_GT, - STATE(4938), 1, - aux_sym_type_parameters_repeat1, + anon_sym_RBRACE, + [197824] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6320), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157185] = 2, + [197835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157195] = 3, - ACTIONS(4332), 1, + anon_sym_RBRACE, + [197844] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, + STATE(6321), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [157207] = 4, - ACTIONS(1594), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - STATE(4462), 1, - sym_string, + [197855] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2822), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157221] = 2, + [197866] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8649), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157231] = 2, + anon_sym_RBRACE, + [197875] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6322), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157241] = 2, + [197886] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157251] = 3, - ACTIONS(8715), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, + [197895] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7936), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [157263] = 2, + ACTIONS(6270), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [197904] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157273] = 2, + anon_sym_RBRACE, + [197913] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8649), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157283] = 2, + anon_sym_RBRACE, + [197922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157293] = 2, + anon_sym_RBRACE, + [197931] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6323), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157303] = 2, + [197942] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157313] = 4, - ACTIONS(8064), 1, - anon_sym_from, - ACTIONS(8526), 1, - anon_sym_as, - STATE(5283), 1, - sym__from_clause, + anon_sym_RBRACE, + [197951] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6326), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157327] = 2, + [197962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6274), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157337] = 2, + anon_sym_RBRACE, + [197971] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6329), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8649), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157347] = 4, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(8717), 1, - anon_sym_EQ, - STATE(5582), 1, - sym_type_parameters, + [197982] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157361] = 2, + ACTIONS(6270), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [197991] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2754), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157371] = 2, + [198002] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157381] = 2, + anon_sym_RBRACE, + [198011] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, + ACTIONS(6270), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157391] = 2, + anon_sym_RBRACE, + [198020] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6103), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157401] = 2, + [198031] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, + ACTIONS(6278), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157411] = 2, + anon_sym_RBRACE, + [198040] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6334), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8647), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157421] = 2, + [198051] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8649), 3, - sym__automatic_semicolon, + ACTIONS(6169), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157431] = 2, + anon_sym_RBRACE, + [198060] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2755), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157441] = 3, - ACTIONS(8719), 1, - anon_sym_EQ, + [198071] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2756), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3589), 2, - anon_sym_in, - anon_sym_of, - [157453] = 3, - ACTIONS(8721), 1, - sym_identifier, + [198082] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2757), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [157465] = 2, + [198093] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2758), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157475] = 2, + [198104] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2759), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157485] = 2, + [198115] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2760), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157495] = 2, + [198126] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2761), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157505] = 2, + [198137] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2762), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157515] = 2, + [198148] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2763), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8695), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157525] = 2, + [198159] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2764), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157535] = 2, + [198170] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2765), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157545] = 2, + [198181] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2766), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157555] = 2, + [198192] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2767), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157565] = 2, + [198203] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2768), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157575] = 2, + [198214] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2769), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8708), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157585] = 2, + [198225] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2770), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8729), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157595] = 2, + [198236] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2771), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157605] = 2, + [198247] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2772), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5011), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [157615] = 2, + [198258] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2773), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157625] = 2, + [198269] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2774), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157635] = 2, + [198280] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2775), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157645] = 2, + [198291] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2776), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157655] = 2, + [198302] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2778), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157665] = 2, + [198313] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2782), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157675] = 2, + [198324] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2783), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157685] = 2, + [198335] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2784), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8737), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157695] = 2, + [198346] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2785), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8739), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157705] = 2, + [198357] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2786), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8741), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157715] = 2, + [198368] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2788), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8743), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157725] = 2, + [198379] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2789), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157735] = 2, + [198390] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2790), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8745), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157745] = 2, + [198401] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2791), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8737), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157755] = 2, + [198412] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8741), 3, - sym__automatic_semicolon, + ACTIONS(10511), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157765] = 2, + anon_sym_RPAREN, + [198421] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2793), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157775] = 2, + [198432] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2794), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157785] = 2, + [198443] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2795), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157795] = 2, + [198454] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2796), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157805] = 2, + [198465] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2797), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157815] = 2, + [198476] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2798), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157825] = 2, + [198487] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2799), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157835] = 2, + [198498] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2800), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157845] = 2, + [198509] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2801), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157855] = 2, + [198520] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2802), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157865] = 2, + [198531] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2803), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157875] = 2, + [198542] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2804), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157885] = 2, + [198553] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2805), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157895] = 2, + [198564] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2806), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157905] = 2, + [198575] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2807), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157915] = 2, + [198586] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2808), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8751), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157925] = 2, + [198597] = 3, + ACTIONS(10345), 1, + anon_sym_LPAREN, + STATE(53), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157935] = 2, + [198608] = 3, + ACTIONS(9524), 1, + anon_sym_from, + STATE(6196), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157945] = 2, + [198619] = 3, + ACTIONS(10513), 1, + sym_identifier, + ACTIONS(10515), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8737), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157955] = 2, + [198630] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7240), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8737), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157965] = 2, + [198641] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(5126), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157975] = 2, + [198652] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7265), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157985] = 2, + [198663] = 3, + ACTIONS(10517), 1, + sym_identifier, + ACTIONS(10519), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157995] = 2, + [198674] = 3, + ACTIONS(4049), 1, + anon_sym_LBRACE, + STATE(1772), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [158005] = 2, + [198685] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2821), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158015] = 4, - ACTIONS(8755), 1, - anon_sym_COMMA, - ACTIONS(8757), 1, - anon_sym_RBRACE, - STATE(4668), 1, - aux_sym_export_clause_repeat1, + [198696] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2844), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158029] = 2, + [198707] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2823), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158039] = 3, - ACTIONS(8759), 1, - anon_sym_as, + [198718] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2824), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8761), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [158051] = 2, + [198729] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2825), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158061] = 2, + [198740] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2826), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158071] = 3, - ACTIONS(4470), 1, + [198751] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, + STATE(2827), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4472), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158083] = 2, + [198762] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2828), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158093] = 2, + [198773] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2829), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158103] = 2, + [198784] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2830), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158113] = 2, + [198795] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2831), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158123] = 4, - ACTIONS(6267), 1, - anon_sym_DOT, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(8765), 1, - anon_sym_GT, + [198806] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2832), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158137] = 2, + [198817] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2833), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158147] = 4, - ACTIONS(8767), 1, - anon_sym_COMMA, - ACTIONS(8769), 1, - anon_sym_GT, - STATE(4637), 1, - aux_sym_type_parameters_repeat1, + [198828] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2834), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158161] = 2, + [198839] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2835), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8771), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158171] = 2, + [198850] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2836), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158181] = 2, + [198861] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2837), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158191] = 2, + [198872] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2838), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158201] = 2, + [198883] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2839), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7324), 3, + [198894] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [158211] = 2, + STATE(2840), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8773), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158221] = 4, - ACTIONS(2581), 1, - anon_sym_LT, - ACTIONS(8775), 1, - anon_sym_EQ, - STATE(5608), 1, - sym_type_parameters, + [198905] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2841), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158235] = 2, + [198916] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2842), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8773), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158245] = 2, + [198927] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2843), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8773), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158255] = 2, + [198938] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2857), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8773), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158265] = 2, + [198949] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2845), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158275] = 2, + [198960] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2846), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158285] = 2, + [198971] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2847), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158295] = 2, + [198982] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2848), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8777), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158305] = 2, + [198993] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2849), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158315] = 2, + [199004] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2850), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158325] = 4, - ACTIONS(8781), 1, - anon_sym_COMMA, - ACTIONS(8783), 1, - anon_sym_RBRACK, - STATE(4838), 1, - aux_sym_tuple_type_repeat1, + [199015] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2851), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158339] = 2, + [199026] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2852), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8785), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158349] = 2, + [199037] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2853), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158359] = 2, + [199048] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2854), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5932), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158369] = 2, + [199059] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2855), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158379] = 2, + [199070] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2856), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158389] = 2, + [199081] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6552), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8787), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158399] = 2, + [199092] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8789), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158409] = 2, + anon_sym_RBRACE, + [199101] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158419] = 2, + anon_sym_RBRACE, + [199110] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8791), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158429] = 2, + anon_sym_RBRACE, + [199119] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8777), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158439] = 4, - ACTIONS(7312), 1, - anon_sym_AMP, - ACTIONS(7314), 1, - anon_sym_PIPE, - ACTIONS(7316), 1, - anon_sym_extends, + anon_sym_RBRACE, + [199128] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6469), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158453] = 2, + [199139] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8787), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158463] = 2, + anon_sym_RBRACE, + [199148] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6470), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8793), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158473] = 2, + [199159] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8396), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158483] = 2, + anon_sym_RBRACE, + [199168] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6471), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158493] = 2, + [199179] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6472), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8795), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158503] = 2, + [199190] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6475), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158513] = 2, + [199201] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6478), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158523] = 2, + [199212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158533] = 2, + anon_sym_RBRACE, + [199221] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6481), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7270), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [158543] = 4, - ACTIONS(1648), 1, - anon_sym_RPAREN, - ACTIONS(8797), 1, + [199232] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6284), 2, anon_sym_COMMA, - STATE(4921), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_RBRACE, + [199241] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158557] = 4, - ACTIONS(6837), 1, - anon_sym_implements, - ACTIONS(8799), 1, + ACTIONS(6288), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199250] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5726), 1, - sym_implements_clause, + STATE(6482), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158571] = 2, + [199261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158581] = 2, + anon_sym_RBRACE, + [199270] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6483), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7254), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [158591] = 2, + [199281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158601] = 2, + anon_sym_RBRACE, + [199290] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6484), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158611] = 4, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6556), 1, - anon_sym_PIPE, - ACTIONS(6558), 1, - anon_sym_extends, + [199301] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158625] = 2, + ACTIONS(6284), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199310] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158635] = 2, + anon_sym_RBRACE, + [199319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8801), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [158645] = 2, + ACTIONS(6288), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199328] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6485), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158655] = 4, - ACTIONS(8803), 1, - sym_identifier, - ACTIONS(8805), 1, - anon_sym_LBRACK, - ACTIONS(8807), 1, - sym_private_property_identifier, + [199339] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158669] = 4, - ACTIONS(8809), 1, + ACTIONS(6288), 2, anon_sym_COMMA, - ACTIONS(8812), 1, anon_sym_RBRACE, - STATE(5081), 1, - aux_sym_export_clause_repeat1, + [199348] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6417), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158683] = 3, - ACTIONS(4142), 1, - anon_sym_LBRACE, + [199359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 2, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158695] = 2, + anon_sym_RBRACE, + [199368] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6487), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158705] = 2, + [199379] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6488), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158715] = 2, + [199390] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6490), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158725] = 4, - ACTIONS(5644), 1, - anon_sym_COMMA, - ACTIONS(8814), 1, - anon_sym_RBRACE, - STATE(5126), 1, - aux_sym_object_repeat1, + [199401] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6492), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158739] = 4, - ACTIONS(3438), 1, - anon_sym_LPAREN, - ACTIONS(8559), 1, - anon_sym_DOT, - STATE(2848), 1, - sym_arguments, + [199412] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6497), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158753] = 2, + [199423] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158763] = 4, - ACTIONS(5644), 1, + ACTIONS(6288), 2, anon_sym_COMMA, - ACTIONS(8814), 1, anon_sym_RBRACE, - STATE(4691), 1, - aux_sym_object_repeat1, + [199432] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6499), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158777] = 2, + [199443] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6500), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158787] = 2, + [199454] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6502), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158797] = 4, - ACTIONS(8816), 1, - anon_sym_COMMA, - ACTIONS(8818), 1, - anon_sym_RPAREN, - STATE(5130), 1, - aux_sym_formal_parameters_repeat1, + [199465] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6504), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158811] = 2, + [199476] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158821] = 3, - ACTIONS(4410), 1, + anon_sym_RBRACE, + [199485] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, + STATE(6507), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [199496] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 2, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158833] = 2, + anon_sym_RBRACE, + [199505] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158843] = 2, + anon_sym_RBRACE, + [199514] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158853] = 2, + anon_sym_RBRACE, + [199523] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158863] = 3, - ACTIONS(4462), 1, + anon_sym_RBRACE, + [199532] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, + STATE(6508), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4464), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158875] = 2, + [199543] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158885] = 2, + anon_sym_RBRACE, + [199552] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6509), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158895] = 4, - ACTIONS(8820), 1, + [199563] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 2, anon_sym_COMMA, - ACTIONS(8823), 1, - anon_sym_RBRACK, - STATE(5101), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [199572] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6510), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158909] = 2, + [199583] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6514), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8825), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [158919] = 2, + [199594] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6516), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158929] = 2, + [199605] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6518), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158939] = 2, + [199616] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158949] = 2, + anon_sym_RBRACE, + [199625] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6520), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158959] = 2, + [199636] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158969] = 2, + anon_sym_RBRACE, + [199645] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6521), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158979] = 2, + [199656] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6523), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158989] = 4, - ACTIONS(222), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1498), 1, + [199667] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(816), 1, - sym_object_type, + STATE(6525), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159003] = 2, + [199678] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6527), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159013] = 2, + [199689] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6533), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159023] = 2, + [199700] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6538), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159033] = 2, + [199711] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159043] = 2, + anon_sym_RBRACE, + [199720] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8396), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159053] = 4, - ACTIONS(7557), 1, - anon_sym_COMMA, - ACTIONS(8827), 1, + anon_sym_RBRACE, + [199729] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(4445), 1, - aux_sym_implements_clause_repeat1, + STATE(6540), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159067] = 2, + [199740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8751), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159077] = 2, + anon_sym_RBRACE, + [199749] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6541), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159087] = 2, + [199760] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8829), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159097] = 2, + anon_sym_RBRACE, + [199769] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6542), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159107] = 2, + [199780] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6543), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8831), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159117] = 2, + [199791] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6486), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159127] = 2, + [199802] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6547), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159137] = 4, - ACTIONS(5644), 1, - anon_sym_COMMA, - ACTIONS(8833), 1, - anon_sym_RBRACE, - STATE(4691), 1, - aux_sym_object_repeat1, + [199813] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6566), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159151] = 2, + [199824] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159161] = 4, - ACTIONS(5644), 1, + ACTIONS(6288), 2, anon_sym_COMMA, - ACTIONS(8835), 1, anon_sym_RBRACE, - STATE(4691), 1, - aux_sym_object_repeat1, + [199833] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6554), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159175] = 2, + [199844] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6555), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159185] = 3, - ACTIONS(8131), 1, - anon_sym_EQ, + [199855] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6557), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8486), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [159197] = 4, - ACTIONS(8837), 1, - anon_sym_LPAREN, - ACTIONS(8839), 1, - anon_sym_await, - STATE(61), 1, - sym__for_header, + [199866] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6559), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159211] = 4, - ACTIONS(1636), 1, - anon_sym_RPAREN, - ACTIONS(8841), 1, + [199877] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 2, anon_sym_COMMA, - STATE(4921), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_RBRACE, + [199886] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6561), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159225] = 2, + [199897] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159235] = 2, + anon_sym_RBRACE, + [199906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159245] = 3, - ACTIONS(8029), 1, + anon_sym_RBRACE, + [199915] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, + STATE(6562), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8031), 2, + [199926] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159257] = 4, - ACTIONS(2473), 1, - anon_sym_while, - ACTIONS(8843), 1, - anon_sym_else, - STATE(764), 1, - sym_else_clause, + anon_sym_RBRACE, + [199935] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6563), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159271] = 2, + [199946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8845), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159281] = 4, - ACTIONS(2229), 1, + anon_sym_RBRACE, + [199955] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - ACTIONS(8847), 1, - sym_identifier, - STATE(4435), 1, - sym_export_clause, + STATE(6564), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159295] = 2, + [199966] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159305] = 2, + anon_sym_RBRACE, + [199975] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159315] = 4, - ACTIONS(3408), 1, - anon_sym_LPAREN, - ACTIONS(8849), 1, - anon_sym_DOT, - STATE(3086), 1, - sym_arguments, + anon_sym_RBRACE, + [199984] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159329] = 3, - ACTIONS(8851), 1, - sym_identifier, + ACTIONS(6284), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8853), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159341] = 4, - ACTIONS(8855), 1, + ACTIONS(6284), 2, anon_sym_COMMA, - ACTIONS(8858), 1, anon_sym_RBRACE, - STATE(5141), 1, - aux_sym_enum_body_repeat1, + [200002] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159355] = 2, + ACTIONS(6288), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200011] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(5201), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159365] = 2, + [200022] = 3, + ACTIONS(7971), 1, + anon_sym_LBRACE, + STATE(227), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159375] = 3, - ACTIONS(8860), 1, - anon_sym_EQ, + [200033] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6565), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3514), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [159387] = 2, + [200044] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2136), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159397] = 2, + [200055] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159407] = 2, + anon_sym_RBRACE, + [200064] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2820), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159417] = 4, - ACTIONS(1700), 1, - anon_sym_COMMA, - ACTIONS(8287), 1, - anon_sym_RBRACK, - STATE(4622), 1, - aux_sym_array_pattern_repeat1, + [200075] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7275), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159431] = 2, + [200086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, + ACTIONS(9882), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159441] = 4, - ACTIONS(2437), 1, + anon_sym_RBRACE, + [200095] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - ACTIONS(8863), 1, - anon_sym_LPAREN, - STATE(731), 1, + STATE(2858), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159455] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(5027), 1, - anon_sym_RPAREN, - STATE(4569), 1, - aux_sym_array_repeat1, + [200106] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159469] = 4, - ACTIONS(1931), 1, + ACTIONS(6288), 2, anon_sym_COMMA, - ACTIONS(5064), 1, - anon_sym_RBRACK, - STATE(5170), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [200115] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6567), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159483] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(5027), 1, - anon_sym_RPAREN, - STATE(4511), 1, - aux_sym_array_repeat1, + [200126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159497] = 3, - ACTIONS(7303), 1, - anon_sym_EQ, + ACTIONS(6284), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200135] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3589), 2, - anon_sym_in, - anon_sym_of, - [159509] = 4, - ACTIONS(1931), 1, + ACTIONS(6284), 2, anon_sym_COMMA, - ACTIONS(5064), 1, - anon_sym_RBRACK, - STATE(4511), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [200144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159523] = 4, - ACTIONS(5644), 1, + ACTIONS(6288), 2, anon_sym_COMMA, - ACTIONS(8865), 1, anon_sym_RBRACE, - STATE(4691), 1, - aux_sym_object_repeat1, + [200153] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6568), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159537] = 4, - ACTIONS(5113), 1, + [200164] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(10521), 2, anon_sym_COMMA, - ACTIONS(8867), 1, anon_sym_RBRACE, - STATE(4698), 1, - aux_sym_object_pattern_repeat1, + [200173] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159551] = 4, - ACTIONS(5113), 1, + ACTIONS(6288), 2, anon_sym_COMMA, - ACTIONS(8869), 1, anon_sym_RBRACE, - STATE(4698), 1, - aux_sym_object_pattern_repeat1, + [200182] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6569), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159565] = 2, + [200193] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159575] = 2, + anon_sym_RBRACE, + [200202] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6570), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159585] = 2, + [200213] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6571), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8481), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159595] = 2, + [200224] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6573), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159605] = 2, + [200235] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6575), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8871), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159615] = 2, + [200246] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6580), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159625] = 4, - ACTIONS(1700), 1, - anon_sym_COMMA, - ACTIONS(8287), 1, - anon_sym_RBRACK, - STATE(4674), 1, - aux_sym_array_pattern_repeat1, + [200257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159639] = 4, - ACTIONS(6267), 1, - anon_sym_DOT, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(8873), 1, - anon_sym_GT, + ACTIONS(6288), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200266] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6582), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159653] = 2, + [200277] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6583), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159663] = 2, + [200288] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6585), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159673] = 2, + [200299] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6588), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159683] = 4, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(8875), 1, - anon_sym_RBRACK, - STATE(4511), 1, - aux_sym_array_repeat1, + [200310] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159697] = 4, - ACTIONS(8299), 1, - anon_sym_GT, - ACTIONS(8877), 1, + ACTIONS(6288), 2, anon_sym_COMMA, - STATE(4938), 1, - aux_sym_type_parameters_repeat1, + anon_sym_RBRACE, + [200319] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6590), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159711] = 2, + [200330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159721] = 2, + anon_sym_RBRACE, + [200339] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8433), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159731] = 2, + anon_sym_RBRACE, + [200348] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, + ACTIONS(6284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159741] = 2, + anon_sym_RBRACE, + [200357] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159751] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8702), 1, - sym__glimmer_template_content, - ACTIONS(8879), 1, - sym_glimmer_closing_tag, - STATE(4723), 1, - aux_sym_glimmer_template_repeat1, - [159767] = 2, + anon_sym_RBRACE, + [200366] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6591), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159777] = 2, + [200377] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8845), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159787] = 2, + anon_sym_RBRACE, + [200386] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6592), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159797] = 2, + [200397] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8332), 3, - sym__automatic_semicolon, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159807] = 2, + anon_sym_RBRACE, + [200406] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6593), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159817] = 2, + [200417] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6594), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159827] = 3, - ACTIONS(8575), 1, - sym_identifier, - ACTIONS(8579), 1, - sym_private_property_identifier, + [200428] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6596), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159838] = 3, - ACTIONS(7398), 1, + [200439] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2571), 1, + STATE(6598), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159849] = 2, + [200450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 2, + ACTIONS(6288), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159858] = 3, - ACTIONS(1716), 1, + [200459] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(241), 1, + STATE(6600), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159869] = 3, - ACTIONS(8881), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, + [200470] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159880] = 2, + ACTIONS(6284), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200479] = 3, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(746), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8883), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [159889] = 2, + [200490] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8885), 2, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_GT, - [159898] = 3, - ACTIONS(8887), 1, - sym_identifier, - STATE(4768), 1, - sym_nested_identifier, + anon_sym_RBRACE, + [200499] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6545), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159909] = 2, + [200510] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8889), 2, + ACTIONS(6288), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [159918] = 3, - ACTIONS(6763), 1, + anon_sym_RBRACE, + [200519] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2489), 1, - sym_class_body, + STATE(6602), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159929] = 3, - ACTIONS(8891), 1, - sym_identifier, - ACTIONS(8893), 1, - sym_private_property_identifier, + [200530] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159940] = 3, - ACTIONS(6976), 1, + ACTIONS(6288), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200539] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(718), 1, - sym_class_body, + STATE(6603), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159951] = 3, - ACTIONS(8895), 1, - sym_identifier, - ACTIONS(8897), 1, - sym_private_property_identifier, + [200550] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159962] = 3, - ACTIONS(8899), 1, - sym_identifier, - ACTIONS(8901), 1, - sym_private_property_identifier, + ACTIONS(6284), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159973] = 2, + ACTIONS(6284), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200568] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8488), 2, + ACTIONS(6284), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159982] = 2, + [200577] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 2, + ACTIONS(6284), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159991] = 3, - ACTIONS(8903), 1, - sym_identifier, - ACTIONS(8905), 1, - sym_private_property_identifier, + [200586] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6605), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160002] = 3, - ACTIONS(7398), 1, + [200597] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6189), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200606] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2602), 1, + STATE(6607), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160013] = 3, - ACTIONS(6763), 1, - anon_sym_LBRACE, - STATE(1623), 1, - sym_class_body, + [200617] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160024] = 3, - ACTIONS(2437), 1, + ACTIONS(6193), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200626] = 3, + ACTIONS(8083), 1, anon_sym_LBRACE, - STATE(5468), 1, + STATE(736), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160035] = 3, - ACTIONS(6763), 1, + [200637] = 3, + ACTIONS(7764), 1, anon_sym_LBRACE, - STATE(2491), 1, + STATE(735), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160046] = 2, + [200648] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7155), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [200659] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5940), 2, + ACTIONS(6201), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160055] = 3, - ACTIONS(6725), 1, + [200668] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2223), 1, - sym_class_body, + STATE(7153), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160066] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, + [200679] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160077] = 3, - ACTIONS(8907), 1, - sym_identifier, - ACTIONS(8909), 1, - sym_private_property_identifier, + ACTIONS(6205), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200688] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7150), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160088] = 3, - ACTIONS(7398), 1, + [200699] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2613), 1, + STATE(7145), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160099] = 3, - ACTIONS(6725), 1, + [200710] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2227), 1, - sym_class_body, + STATE(7138), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160110] = 3, - ACTIONS(7096), 1, + [200721] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(837), 1, - sym_class_body, + STATE(2860), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160121] = 2, + [200732] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2861), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4721), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160130] = 3, - ACTIONS(4029), 1, + [200743] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2216), 1, + STATE(2862), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160141] = 3, - ACTIONS(6976), 1, + [200754] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(4097), 1, - sym_class_body, + STATE(2863), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160152] = 2, + [200765] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2864), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8505), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160161] = 3, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(8405), 1, - anon_sym_GT, + [200776] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2865), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160172] = 3, - ACTIONS(8911), 1, + [200787] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(5381), 1, - sym_object, + STATE(2866), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160183] = 3, - ACTIONS(1716), 1, + [200798] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(235), 1, + STATE(2867), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160194] = 2, + [200809] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2868), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8913), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160203] = 2, + [200820] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7130), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8915), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160212] = 3, - ACTIONS(8064), 1, - anon_sym_from, - STATE(4251), 1, - sym__from_clause, + [200831] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2869), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160223] = 3, - ACTIONS(6642), 1, - anon_sym_DOT, - ACTIONS(8917), 1, - anon_sym_GT, + [200842] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7449), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160234] = 2, + [200853] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2870), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7912), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160243] = 2, + [200864] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2871), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8713), 2, - anon_sym_COMMA, - anon_sym_GT, - [160252] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(1774), 1, - sym_arguments, + [200875] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2872), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160263] = 3, - ACTIONS(7398), 1, + [200886] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2574), 1, + STATE(2873), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160274] = 3, - ACTIONS(2437), 1, + [200897] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(856), 1, + STATE(2874), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160285] = 2, + [200908] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2875), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8512), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160294] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5554), 1, - sym_formal_parameters, + [200919] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2876), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160305] = 3, - ACTIONS(6725), 1, + [200930] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2340), 1, - sym_class_body, + STATE(2877), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160316] = 3, - ACTIONS(6725), 1, + [200941] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2218), 1, - sym_class_body, + STATE(2878), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160327] = 3, - ACTIONS(6976), 1, + [200952] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(4105), 1, - sym_class_body, + STATE(2879), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160338] = 2, + [200963] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2880), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [160347] = 3, - ACTIONS(7398), 1, + [200974] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2579), 1, + STATE(2881), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160358] = 3, - ACTIONS(6725), 1, + [200985] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2273), 1, - sym_class_body, + STATE(2882), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160369] = 3, - ACTIONS(6419), 1, + [200996] = 3, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(5777), 1, + STATE(7444), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160380] = 3, - ACTIONS(8919), 1, - sym_identifier, - ACTIONS(8921), 1, - sym_private_property_identifier, + [201007] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2883), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160391] = 3, - ACTIONS(6976), 1, + [201018] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(4107), 1, - sym_class_body, + STATE(2884), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160402] = 3, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4794), 1, - sym_type_annotation, + [201029] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2885), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160413] = 3, - ACTIONS(8923), 1, - sym_identifier, - ACTIONS(8925), 1, - sym_private_property_identifier, + [201040] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2886), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160424] = 3, - ACTIONS(6419), 1, + [201051] = 3, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(5630), 1, + STATE(7428), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160435] = 3, - ACTIONS(7398), 1, + [201062] = 3, + ACTIONS(4041), 1, anon_sym_LBRACE, - STATE(2597), 1, + STATE(2317), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160446] = 3, - ACTIONS(7398), 1, + [201073] = 3, + ACTIONS(7764), 1, anon_sym_LBRACE, - STATE(2615), 1, - sym_statement_block, + STATE(4843), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160457] = 3, - ACTIONS(7398), 1, + [201084] = 3, + ACTIONS(7764), 1, anon_sym_LBRACE, - STATE(2606), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160468] = 3, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(8518), 1, - anon_sym_GT, + STATE(4974), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160479] = 3, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2556), 1, - sym_statement_block, + [201095] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(5032), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160490] = 3, - ACTIONS(4189), 1, - anon_sym_LBRACE, - STATE(1645), 1, - sym_statement_block, + [201106] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160501] = 3, - ACTIONS(8927), 1, + ACTIONS(6238), 2, anon_sym_COMMA, - ACTIONS(8929), 1, - anon_sym_from, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160512] = 3, - ACTIONS(8931), 1, + anon_sym_RBRACE, + [201115] = 3, + ACTIONS(10523), 1, sym_identifier, - ACTIONS(8933), 1, + ACTIONS(10525), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160523] = 3, - ACTIONS(6763), 1, - anon_sym_LBRACE, - STATE(1704), 1, - sym_class_body, + [201126] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7292), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160534] = 3, - ACTIONS(8935), 1, - sym_identifier, - ACTIONS(8937), 1, - sym_private_property_identifier, + [201137] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(4234), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160545] = 2, + [201148] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8700), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160554] = 3, - ACTIONS(4029), 1, - anon_sym_LBRACE, - STATE(2229), 1, - sym_statement_block, + ACTIONS(4559), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201157] = 3, + ACTIONS(10345), 1, + anon_sym_LPAREN, + STATE(46), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160565] = 3, - ACTIONS(6642), 1, - anon_sym_DOT, - ACTIONS(8939), 1, - anon_sym_GT, + [201168] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160576] = 3, - ACTIONS(8064), 1, - anon_sym_from, - STATE(5445), 1, - sym__from_clause, + ACTIONS(10527), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201177] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(684), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160587] = 3, - ACTIONS(8881), 1, + [201188] = 3, + ACTIONS(10345), 1, anon_sym_LPAREN, - STATE(40), 1, + STATE(33), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160598] = 3, - ACTIONS(6960), 1, + [201199] = 3, + ACTIONS(7668), 1, anon_sym_LBRACE, - STATE(242), 1, + STATE(2282), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160609] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8941), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160618] = 3, - ACTIONS(7096), 1, + [201210] = 3, + ACTIONS(7660), 1, anon_sym_LBRACE, - STATE(844), 1, + STATE(1730), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160629] = 3, - ACTIONS(6763), 1, + [201221] = 3, + ACTIONS(7764), 1, anon_sym_LBRACE, - STATE(1708), 1, + STATE(4958), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160640] = 2, + [201232] = 3, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(4957), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8943), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160649] = 2, + [201243] = 3, + ACTIONS(10529), 1, + sym_identifier, + ACTIONS(10531), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8945), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160658] = 3, - ACTIONS(8947), 1, + [201254] = 3, + ACTIONS(7660), 1, anon_sym_LBRACE, - STATE(760), 1, - sym_enum_body, + STATE(1642), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160669] = 3, - ACTIONS(7190), 1, + [201265] = 3, + ACTIONS(4049), 1, anon_sym_LBRACE, - STATE(724), 1, + STATE(1635), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160680] = 3, - ACTIONS(8881), 1, - anon_sym_LPAREN, - STATE(41), 1, - sym_parenthesized_expression, + [201276] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2892), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160691] = 3, - ACTIONS(6763), 1, + [201287] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2504), 1, - sym_class_body, + STATE(2891), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160702] = 3, - ACTIONS(6976), 1, + [201298] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(728), 1, - sym_class_body, + STATE(2890), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160713] = 2, + [201309] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2889), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5948), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160722] = 3, - ACTIONS(2437), 1, + [201320] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(5504), 1, + STATE(2859), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160733] = 2, + [201331] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(734), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160742] = 3, - ACTIONS(2437), 1, + [201342] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5506), 1, + STATE(7127), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160753] = 3, - ACTIONS(4029), 1, + [201353] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2382), 1, + STATE(7125), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160764] = 3, - ACTIONS(8881), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym_parenthesized_expression, + [201364] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7124), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160775] = 3, - ACTIONS(6725), 1, - anon_sym_LBRACE, - STATE(2383), 1, - sym_class_body, + [201375] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160786] = 2, + ACTIONS(6218), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8949), 2, + ACTIONS(6165), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160795] = 2, + [201393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8951), 2, + ACTIONS(6238), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160804] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(4056), 1, - sym_formal_parameters, + [201402] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6702), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160815] = 3, - ACTIONS(8953), 1, - sym_identifier, - ACTIONS(8955), 1, - sym_private_property_identifier, + [201413] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160826] = 3, - ACTIONS(8957), 1, - sym_identifier, - ACTIONS(8959), 1, - sym_private_property_identifier, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201422] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6703), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160837] = 3, - ACTIONS(7398), 1, + [201433] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2566), 1, + STATE(6729), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160848] = 3, - ACTIONS(6763), 1, + [201444] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(1744), 1, - sym_class_body, + STATE(6704), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160859] = 3, - ACTIONS(4189), 1, + [201455] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(1711), 1, + STATE(6705), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160870] = 3, - ACTIONS(8961), 1, - sym_identifier, - ACTIONS(8963), 1, - anon_sym_STAR, + [201466] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6707), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160881] = 3, - ACTIONS(8965), 1, - anon_sym_SEMI, - ACTIONS(8967), 1, - sym__automatic_semicolon, + [201477] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6709), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160892] = 3, - ACTIONS(4189), 1, + [201488] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(1718), 1, + STATE(6714), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160903] = 3, - ACTIONS(8969), 1, - sym_identifier, - ACTIONS(8971), 1, - sym_private_property_identifier, + [201499] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160914] = 3, - ACTIONS(8973), 1, - sym_identifier, - ACTIONS(8975), 1, - sym_private_property_identifier, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201508] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6716), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160925] = 3, - ACTIONS(7398), 1, + [201519] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2561), 1, + STATE(6717), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160936] = 3, - ACTIONS(8977), 1, - sym_identifier, - ACTIONS(8979), 1, - sym_private_property_identifier, + [201530] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6719), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160947] = 3, - ACTIONS(6976), 1, + [201541] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(4124), 1, - sym_class_body, + STATE(6721), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160958] = 3, - ACTIONS(8064), 1, - anon_sym_from, - STATE(5490), 1, - sym__from_clause, + [201552] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201561] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6723), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160969] = 2, + [201572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4680), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160978] = 3, - ACTIONS(6763), 1, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201581] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(1784), 1, - sym_class_body, + STATE(6724), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160989] = 3, - ACTIONS(2437), 1, + [201592] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(686), 1, + STATE(6725), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161000] = 3, - ACTIONS(7398), 1, + [201603] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2572), 1, + STATE(6727), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161011] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5788), 1, - sym_formal_parameters, + [201614] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7111), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161022] = 3, - ACTIONS(8981), 1, + [201625] = 3, + ACTIONS(10533), 1, sym_identifier, - ACTIONS(8983), 1, + ACTIONS(10535), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161033] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5677), 1, - sym_formal_parameters, + [201636] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6831), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161044] = 3, - ACTIONS(7398), 1, + [201647] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2559), 1, + STATE(6735), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161055] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5847), 1, - sym_formal_parameters, + [201658] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2288), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161066] = 3, - ACTIONS(4829), 1, + [201669] = 3, + ACTIONS(4041), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(2290), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161077] = 2, + [201680] = 3, + ACTIONS(4041), 1, + anon_sym_LBRACE, + STATE(2295), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8985), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161086] = 3, - ACTIONS(7398), 1, + [201691] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2603), 1, + STATE(6740), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161097] = 2, + [201702] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8987), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161106] = 3, - ACTIONS(4189), 1, + ACTIONS(6165), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201711] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201720] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(1753), 1, + STATE(6742), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161117] = 3, - ACTIONS(8989), 1, - anon_sym_SEMI, - ACTIONS(8991), 1, - sym__automatic_semicolon, + [201731] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161128] = 2, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201740] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6743), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8993), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161137] = 2, + [201751] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8995), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161146] = 3, - ACTIONS(8997), 1, - anon_sym_LPAREN, - STATE(43), 1, - sym__for_header, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201760] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2296), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161157] = 3, - ACTIONS(7860), 1, - anon_sym_in, - ACTIONS(7862), 1, - anon_sym_of, + [201771] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6744), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161168] = 3, - ACTIONS(6763), 1, + [201782] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2494), 1, - sym_class_body, + STATE(6745), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161179] = 3, - ACTIONS(2437), 1, + [201793] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(722), 1, + STATE(6747), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161190] = 2, + [201804] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6749), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8999), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161199] = 3, - ACTIONS(7398), 1, + [201815] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2585), 1, + STATE(6754), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161210] = 3, - ACTIONS(9001), 1, - anon_sym_in, - ACTIONS(9003), 1, - anon_sym_COLON, + [201826] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6756), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161221] = 2, + [201837] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1728), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161230] = 3, - ACTIONS(6976), 1, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201846] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(4005), 1, - sym_class_body, + STATE(6763), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161241] = 3, - ACTIONS(7398), 1, + [201857] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2583), 1, + STATE(6764), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161252] = 3, - ACTIONS(7398), 1, + [201868] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2584), 1, + STATE(6766), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161263] = 3, - ACTIONS(7398), 1, + [201879] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2586), 1, + STATE(6768), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161274] = 3, - ACTIONS(7398), 1, + [201890] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2587), 1, + STATE(6774), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161285] = 2, + [201901] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6779), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5909), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161294] = 3, - ACTIONS(8997), 1, - anon_sym_LPAREN, - STATE(48), 1, - sym__for_header, + [201912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161305] = 2, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201921] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6781), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161314] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5747), 1, - sym_formal_parameters, + [201932] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6782), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161325] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5808), 1, - sym_formal_parameters, + [201943] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6784), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161336] = 3, - ACTIONS(7398), 1, + [201954] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2589), 1, + STATE(6786), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161347] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5915), 1, - sym_formal_parameters, + [201965] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161358] = 3, - ACTIONS(2437), 1, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201974] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5345), 1, + STATE(6788), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161369] = 2, + [201985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5919), 2, + ACTIONS(6165), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161378] = 2, + [201994] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9005), 2, + ACTIONS(6165), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161387] = 2, + [202003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4729), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161396] = 2, + ACTIONS(6165), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202012] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4733), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161405] = 3, - ACTIONS(9007), 1, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202021] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(3956), 1, - sym_enum_body, + STATE(6789), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161416] = 2, + [202032] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5909), 2, + ACTIONS(6238), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161425] = 3, - ACTIONS(7398), 1, + [202041] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2600), 1, + STATE(6790), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161436] = 3, - ACTIONS(7398), 1, - anon_sym_LBRACE, - STATE(2588), 1, - sym_statement_block, + [202052] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161447] = 3, - ACTIONS(7398), 1, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202061] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2596), 1, + STATE(2812), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161458] = 3, - ACTIONS(2437), 1, + [202072] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5360), 1, + STATE(6791), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161469] = 3, - ACTIONS(6763), 1, + [202083] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(1646), 1, - sym_class_body, + STATE(6792), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161480] = 3, - ACTIONS(7398), 1, + [202094] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2573), 1, + STATE(6797), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161491] = 3, - ACTIONS(2437), 1, + [202105] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5477), 1, + STATE(6802), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161502] = 3, - ACTIONS(6409), 1, - anon_sym_LPAREN, - STATE(3415), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161513] = 3, - ACTIONS(7096), 1, - anon_sym_LBRACE, - STATE(814), 1, - sym_class_body, + [202116] = 3, + ACTIONS(10537), 1, + anon_sym_SEMI, + ACTIONS(10539), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161524] = 3, - ACTIONS(4189), 1, - anon_sym_LBRACE, - STATE(1763), 1, - sym_statement_block, + [202127] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7395), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161535] = 2, + [202138] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 2, + ACTIONS(6238), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161544] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(9009), 2, - anon_sym_COMMA, - anon_sym_GT, - [161553] = 3, - ACTIONS(6419), 1, + [202147] = 3, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(5666), 1, + STATE(7393), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161564] = 3, - ACTIONS(2437), 1, + [202158] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5484), 1, + STATE(6804), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161575] = 3, - ACTIONS(6419), 1, + [202169] = 3, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(3769), 1, + STATE(7368), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161586] = 3, - ACTIONS(6960), 1, - anon_sym_LBRACE, - STATE(230), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161597] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5919), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161606] = 2, + [202180] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5915), 2, + ACTIONS(6238), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161615] = 3, - ACTIONS(4029), 1, + [202189] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2274), 1, + STATE(6805), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161626] = 3, - ACTIONS(4029), 1, + [202200] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2275), 1, + STATE(6806), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161637] = 3, - ACTIONS(6725), 1, + [202211] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2139), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161648] = 3, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(8765), 1, - anon_sym_GT, + STATE(6809), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161659] = 3, - ACTIONS(8947), 1, + [202222] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(858), 1, - sym_enum_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161670] = 3, - ACTIONS(8881), 1, - anon_sym_LPAREN, - STATE(5371), 1, - sym_parenthesized_expression, + STATE(6811), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161681] = 3, - ACTIONS(6725), 1, + [202233] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2276), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161692] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5965), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161701] = 3, - ACTIONS(6642), 1, - anon_sym_DOT, - ACTIONS(9011), 1, - anon_sym_GT, + STATE(6817), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161712] = 3, - ACTIONS(2437), 1, + [202244] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5494), 1, + STATE(6822), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161723] = 3, - ACTIONS(9013), 1, - sym_identifier, - ACTIONS(9015), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161734] = 2, + [202255] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 2, + ACTIONS(6165), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161743] = 3, - ACTIONS(4029), 1, - anon_sym_LBRACE, - STATE(2337), 1, - sym_statement_block, + [202264] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161754] = 3, - ACTIONS(8342), 1, - sym_identifier, - ACTIONS(8346), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161765] = 3, - ACTIONS(7398), 1, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202273] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2592), 1, + STATE(6824), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161776] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(4025), 1, - sym_formal_parameters, + [202284] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161787] = 3, - ACTIONS(7190), 1, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202293] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(3920), 1, + STATE(6825), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161798] = 3, - ACTIONS(9017), 1, - sym_identifier, - ACTIONS(9019), 1, - anon_sym_STAR, + [202304] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161809] = 3, - ACTIONS(9021), 1, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202313] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(796), 1, - sym_switch_body, + STATE(6826), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161820] = 3, - ACTIONS(7398), 1, + [202324] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2577), 1, + STATE(6827), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161831] = 3, - ACTIONS(7398), 1, + [202335] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2609), 1, + STATE(6829), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161842] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3627), 1, - sym_formal_parameters, + [202346] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2819), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161853] = 3, - ACTIONS(9007), 1, + [202357] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(3922), 1, - sym_enum_body, + STATE(6836), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161864] = 3, - ACTIONS(9023), 1, - sym_identifier, - ACTIONS(9025), 1, - anon_sym_STAR, + [202368] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161875] = 3, - ACTIONS(3477), 1, - anon_sym_COLON, - STATE(5509), 1, - sym_type_annotation, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202377] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6838), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161886] = 3, - ACTIONS(7398), 1, + [202388] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2594), 1, + STATE(6840), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161897] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5888), 1, - sym_formal_parameters, + [202399] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6842), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161908] = 3, - ACTIONS(9027), 1, - anon_sym_SEMI, - ACTIONS(9029), 1, - sym__automatic_semicolon, + [202410] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6844), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161919] = 2, + [202421] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9031), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161928] = 3, - ACTIONS(7398), 1, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202430] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2610), 1, + STATE(6846), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161939] = 2, + [202441] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5948), 2, + ACTIONS(6165), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161948] = 2, + [202450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5944), 2, + ACTIONS(6238), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161957] = 2, + [202459] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6847), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4850), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161966] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5692), 1, - sym_formal_parameters, + [202470] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161977] = 3, - ACTIONS(6960), 1, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202479] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(237), 1, - sym_class_body, + STATE(6848), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161988] = 3, - ACTIONS(9033), 1, - sym_identifier, - ACTIONS(9035), 1, - sym_private_property_identifier, + [202490] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161999] = 3, - ACTIONS(8881), 1, - anon_sym_LPAREN, - STATE(37), 1, - sym_parenthesized_expression, + ACTIONS(6238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202499] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6849), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162010] = 3, - ACTIONS(9037), 1, - sym_identifier, - STATE(4756), 1, - sym_nested_identifier, + [202510] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162021] = 3, - ACTIONS(7398), 1, + ACTIONS(6165), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202519] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2578), 1, + STATE(6851), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162032] = 3, - ACTIONS(9039), 1, - sym_identifier, - ACTIONS(9041), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162043] = 3, - ACTIONS(8803), 1, - sym_identifier, - ACTIONS(8807), 1, - sym_private_property_identifier, + [202530] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162054] = 3, - ACTIONS(9043), 1, - sym_identifier, - ACTIONS(9045), 1, - sym_private_property_identifier, + ACTIONS(6234), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202539] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6853), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162065] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5769), 1, - sym_formal_parameters, + [202550] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162076] = 3, - ACTIONS(6725), 1, + ACTIONS(6230), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202559] = 3, + ACTIONS(7929), 1, anon_sym_LBRACE, - STATE(2141), 1, + STATE(834), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162087] = 3, - ACTIONS(7398), 1, + [202570] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2616), 1, + STATE(2818), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162098] = 3, - ACTIONS(6725), 1, - anon_sym_LBRACE, - STATE(2388), 1, - sym_class_body, + [202581] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162109] = 3, - ACTIONS(9047), 1, - sym_identifier, - ACTIONS(9049), 1, - sym_private_property_identifier, + ACTIONS(10541), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202590] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2817), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162120] = 3, - ACTIONS(6960), 1, - anon_sym_LBRACE, - STATE(229), 1, - sym_class_body, + [202601] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7278), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162131] = 3, - ACTIONS(9051), 1, - sym_identifier, - ACTIONS(9053), 1, - sym_private_property_identifier, + [202612] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2816), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162142] = 3, - ACTIONS(9055), 1, - sym_identifier, - ACTIONS(9057), 1, - sym_private_property_identifier, + [202623] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2814), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162153] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5806), 1, - sym_formal_parameters, + [202634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162164] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, + ACTIONS(9820), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [202643] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162175] = 2, + ACTIONS(10543), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [202652] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7372), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [162184] = 3, - ACTIONS(7398), 1, + ACTIONS(10545), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202661] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2563), 1, + STATE(2813), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162195] = 3, - ACTIONS(9059), 1, - sym_identifier, - ACTIONS(9061), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162206] = 3, - ACTIONS(5987), 1, - anon_sym_LPAREN, - STATE(2709), 1, - sym_arguments, + [202672] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162217] = 3, - ACTIONS(9063), 1, - sym_identifier, - ACTIONS(9065), 1, - sym_private_property_identifier, + ACTIONS(10547), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202681] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162228] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5650), 1, - sym_formal_parameters, + ACTIONS(9813), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202690] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2625), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162239] = 3, - ACTIONS(4189), 1, + [202701] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(1767), 1, + STATE(2787), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162250] = 3, - ACTIONS(9067), 1, - anon_sym_SEMI, - ACTIONS(9069), 1, - sym__automatic_semicolon, + [202712] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162261] = 3, - ACTIONS(6725), 1, - anon_sym_LBRACE, - STATE(2247), 1, - sym_class_body, + ACTIONS(1678), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202721] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162272] = 3, - ACTIONS(7398), 1, + ACTIONS(7708), 2, + anon_sym_in, + anon_sym_of, + [202730] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2614), 1, + STATE(2781), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162283] = 2, + [202741] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8812), 2, + ACTIONS(10549), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [162292] = 3, - ACTIONS(9071), 1, - sym_identifier, - ACTIONS(9073), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162303] = 3, - ACTIONS(9075), 1, - anon_sym_SEMI, - ACTIONS(9077), 1, - sym__automatic_semicolon, + anon_sym_RPAREN, + [202750] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7282), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162314] = 3, - ACTIONS(3205), 1, + [202761] = 3, + ACTIONS(3193), 1, anon_sym_LPAREN, - STATE(3504), 1, + STATE(4175), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162325] = 2, + [202772] = 3, + ACTIONS(7660), 1, + anon_sym_LBRACE, + STATE(2539), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9079), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162334] = 3, - ACTIONS(7398), 1, + [202783] = 3, + ACTIONS(7660), 1, anon_sym_LBRACE, - STATE(2565), 1, - sym_statement_block, + STATE(2541), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162345] = 3, - ACTIONS(6976), 1, + [202794] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(723), 1, - sym_class_body, + STATE(2780), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162356] = 3, - ACTIONS(7398), 1, + [202805] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2567), 1, + STATE(2779), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162367] = 3, - ACTIONS(7398), 1, + [202816] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2581), 1, + STATE(2777), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162378] = 3, - ACTIONS(4029), 1, + [202827] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2197), 1, + STATE(738), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162389] = 3, - ACTIONS(7398), 1, + [202838] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2611), 1, + STATE(2728), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162400] = 2, + [202849] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2727), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9081), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162409] = 3, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9085), 1, - sym_private_property_identifier, + [202860] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2714), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162420] = 3, - ACTIONS(7398), 1, + [202871] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2568), 1, + STATE(2713), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162431] = 3, - ACTIONS(9087), 1, - sym_identifier, - ACTIONS(9089), 1, - sym_private_property_identifier, + [202882] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7338), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162442] = 3, - ACTIONS(7190), 1, + [202893] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(735), 1, + STATE(2685), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162453] = 3, - ACTIONS(8589), 1, - sym_identifier, - ACTIONS(8593), 1, - sym_private_property_identifier, + [202904] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7336), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162464] = 3, - ACTIONS(6976), 1, + [202915] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(715), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162475] = 3, - ACTIONS(9091), 1, - sym_identifier, - ACTIONS(9093), 1, - sym_private_property_identifier, + STATE(2682), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162486] = 3, - ACTIONS(6419), 1, + [202926] = 3, + ACTIONS(7342), 1, anon_sym_LPAREN, - STATE(4046), 1, + STATE(7319), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162497] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5794), 1, - sym_formal_parameters, + [202937] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2681), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162508] = 3, - ACTIONS(6725), 1, + [202948] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2158), 1, - sym_class_body, + STATE(2679), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162519] = 3, - ACTIONS(9095), 1, - sym_identifier, - ACTIONS(9097), 1, - sym_private_property_identifier, + [202959] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2665), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162530] = 3, - ACTIONS(9099), 1, - sym_identifier, - ACTIONS(9101), 1, - sym_private_property_identifier, + [202970] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162541] = 3, - ACTIONS(7398), 1, + [202981] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2595), 1, + STATE(2659), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162552] = 3, - ACTIONS(9103), 1, - sym_identifier, - ACTIONS(9105), 1, - sym_private_property_identifier, + [202992] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2639), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162563] = 3, - ACTIONS(4029), 1, + [203003] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2160), 1, + STATE(2638), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162574] = 3, - ACTIONS(4029), 1, + [203014] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2145), 1, + STATE(2637), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162585] = 3, - ACTIONS(7190), 1, + [203025] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(4051), 1, + STATE(2596), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162596] = 3, - ACTIONS(9107), 1, - sym_identifier, - ACTIONS(9109), 1, - sym_private_property_identifier, + [203036] = 3, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(4916), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162607] = 3, - ACTIONS(9111), 1, - anon_sym_SEMI, - ACTIONS(9113), 1, - sym__automatic_semicolon, + [203047] = 3, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(4918), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162618] = 2, + [203058] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2225), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9115), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162627] = 2, + [203069] = 3, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(4924), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8823), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162636] = 3, - ACTIONS(4029), 1, + [203080] = 3, + ACTIONS(4041), 1, anon_sym_LBRACE, - STATE(2169), 1, + STATE(2230), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162647] = 3, - ACTIONS(9117), 1, - sym_identifier, - ACTIONS(9119), 1, - sym_private_property_identifier, + [203091] = 3, + ACTIONS(10345), 1, + anon_sym_LPAREN, + STATE(6351), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [203102] = 3, + ACTIONS(10345), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162658] = 2, + [203113] = 3, + ACTIONS(10551), 1, + anon_sym_in, + ACTIONS(10553), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4852), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162667] = 2, + [203124] = 3, + ACTIONS(10555), 1, + sym_identifier, + ACTIONS(10557), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9121), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162676] = 3, - ACTIONS(7398), 1, + [203135] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2562), 1, + STATE(7103), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162687] = 2, + [203146] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6988), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9123), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [162696] = 3, - ACTIONS(6976), 1, + [203157] = 3, + ACTIONS(7660), 1, anon_sym_LBRACE, - STATE(4059), 1, + STATE(2532), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162707] = 3, - ACTIONS(9125), 1, + [203168] = 3, + ACTIONS(9314), 1, + anon_sym_in, + ACTIONS(9316), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [203179] = 3, + ACTIONS(10559), 1, sym_identifier, - ACTIONS(9127), 1, + ACTIONS(10561), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162718] = 3, - ACTIONS(9129), 1, - anon_sym_SEMI, - ACTIONS(9131), 1, + [203190] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4640), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [203199] = 3, + ACTIONS(10563), 1, + sym_identifier, + ACTIONS(10565), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162729] = 3, - ACTIONS(9133), 1, + [203210] = 3, + ACTIONS(10567), 1, sym_identifier, - ACTIONS(9135), 1, + ACTIONS(10569), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162740] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5607), 1, - sym_formal_parameters, + [203221] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162751] = 3, - ACTIONS(9137), 1, - sym_identifier, - ACTIONS(9139), 1, - sym_private_property_identifier, + ACTIONS(10571), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203230] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162762] = 3, - ACTIONS(9141), 1, - anon_sym_SEMI, - ACTIONS(9143), 1, - sym__automatic_semicolon, + ACTIONS(10573), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203239] = 3, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(2224), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162773] = 3, - ACTIONS(8447), 1, - sym_identifier, - ACTIONS(8451), 1, - sym_private_property_identifier, + [203250] = 3, + ACTIONS(4041), 1, + anon_sym_LBRACE, + STATE(2223), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [203261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162784] = 3, - ACTIONS(7190), 1, + ACTIONS(6222), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203270] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(4060), 1, + STATE(6924), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162795] = 3, - ACTIONS(3145), 1, - sym_jsx_identifier, - ACTIONS(9145), 1, - sym_identifier, + [203281] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6925), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162806] = 3, - ACTIONS(9147), 1, - sym_identifier, - ACTIONS(9149), 1, - sym_private_property_identifier, + [203292] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6927), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162817] = 3, - ACTIONS(9151), 1, - sym_identifier, - ACTIONS(9153), 1, - sym_private_property_identifier, + [203303] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6898), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162828] = 3, - ACTIONS(4029), 1, + [203314] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2343), 1, + STATE(6935), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162839] = 3, - ACTIONS(9155), 1, - sym_identifier, - ACTIONS(9157), 1, - sym_private_property_identifier, + [203325] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6940), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162850] = 2, + [203336] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6942), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162859] = 3, - ACTIONS(9159), 1, - sym_identifier, - ACTIONS(9161), 1, - sym_private_property_identifier, + [203347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162870] = 3, - ACTIONS(8881), 1, - anon_sym_LPAREN, - STATE(60), 1, - sym_parenthesized_expression, + ACTIONS(6222), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203356] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6954), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162881] = 3, - ACTIONS(2437), 1, + [203367] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5204), 1, + STATE(6955), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162892] = 3, - ACTIONS(7398), 1, + [203378] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2605), 1, + STATE(6957), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162903] = 3, - ACTIONS(8881), 1, + [203389] = 3, + ACTIONS(3193), 1, anon_sym_LPAREN, - STATE(62), 1, - sym_parenthesized_expression, + STATE(4024), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162914] = 3, - ACTIONS(9163), 1, + [203400] = 3, + ACTIONS(10575), 1, sym_identifier, - ACTIONS(9165), 1, - sym_private_property_identifier, + ACTIONS(10577), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162925] = 3, - ACTIONS(2437), 1, + [203411] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5267), 1, + STATE(6959), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162936] = 3, - ACTIONS(6725), 1, + [203422] = 3, + ACTIONS(9766), 1, + sym_identifier, + ACTIONS(9770), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [203433] = 3, + ACTIONS(7660), 1, anon_sym_LBRACE, - STATE(2304), 1, + STATE(1688), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162947] = 2, + [203444] = 3, + ACTIONS(10579), 1, + sym_identifier, + ACTIONS(10581), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5944), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162956] = 3, - ACTIONS(3438), 1, - anon_sym_LPAREN, - STATE(1203), 1, - sym_arguments, + [203455] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6967), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162967] = 3, - ACTIONS(8997), 1, - anon_sym_LPAREN, - STATE(63), 1, - sym__for_header, + [203466] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6974), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162978] = 3, - ACTIONS(9167), 1, - sym_identifier, - ACTIONS(9169), 1, - sym_private_property_identifier, + [203477] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6979), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162989] = 2, + [203488] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9171), 2, + ACTIONS(6226), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162998] = 2, + [203497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4759), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163007] = 3, - ACTIONS(4519), 1, - anon_sym_LPAREN, - STATE(2219), 1, - sym_arguments, + ACTIONS(6222), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203506] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6981), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163018] = 2, + [203517] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 2, + ACTIONS(6222), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163027] = 2, + [203526] = 3, + ACTIONS(4049), 1, + anon_sym_LBRACE, + STATE(1695), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9173), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163036] = 2, + [203537] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6982), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9175), 2, - anon_sym_COMMA, - anon_sym_GT, - [163045] = 2, + [203548] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7653), 2, + ACTIONS(6222), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203557] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [163054] = 3, - ACTIONS(2437), 1, + STATE(6983), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [203568] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5323), 1, + STATE(6984), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163065] = 3, - ACTIONS(8881), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, + [203579] = 3, + ACTIONS(10583), 1, + sym_identifier, + ACTIONS(10585), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163076] = 3, - ACTIONS(9177), 1, - anon_sym_SEMI, - ACTIONS(9179), 1, - sym__automatic_semicolon, + [203590] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6986), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163087] = 3, - ACTIONS(9181), 1, - anon_sym_SEMI, - ACTIONS(9183), 1, - sym__automatic_semicolon, + [203601] = 3, + ACTIONS(4049), 1, + anon_sym_LBRACE, + STATE(1706), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163098] = 2, + [203612] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(6996), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7661), 2, + [203623] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [163107] = 2, + STATE(7000), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9185), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163116] = 2, + [203634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5973), 2, + ACTIONS(6222), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163125] = 2, + [203643] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7007), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9187), 2, - anon_sym_COMMA, - anon_sym_GT, - [163134] = 3, - ACTIONS(9189), 1, - anon_sym_LPAREN, - STATE(732), 1, - sym_parenthesized_expression, + [203654] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7008), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163145] = 3, - ACTIONS(6725), 1, + [203665] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2200), 1, - sym_class_body, + STATE(7010), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163156] = 3, - ACTIONS(4029), 1, + [203676] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(2257), 1, + STATE(7012), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163167] = 3, - ACTIONS(2437), 1, + [203687] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(772), 1, + STATE(7018), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163178] = 3, - ACTIONS(7096), 1, + [203698] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(853), 1, - sym_class_body, + STATE(7023), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163189] = 3, - ACTIONS(6763), 1, - anon_sym_LBRACE, - STATE(1785), 1, - sym_class_body, + [203709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163200] = 3, - ACTIONS(6976), 1, + ACTIONS(6222), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203718] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(4074), 1, - sym_class_body, + STATE(7025), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163211] = 3, - ACTIONS(8064), 1, - anon_sym_from, - STATE(4164), 1, - sym__from_clause, + [203729] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7026), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163222] = 2, + [203740] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7028), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163231] = 3, - ACTIONS(2437), 1, + [203751] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5321), 1, + STATE(7030), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163242] = 2, + [203762] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5936), 2, + ACTIONS(6222), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163251] = 3, - ACTIONS(3477), 1, - anon_sym_COLON, - STATE(5446), 1, - sym_type_annotation, + [203771] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(7032), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163262] = 3, - ACTIONS(2437), 1, + [203782] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5329), 1, + STATE(7034), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163273] = 2, + [203793] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9191), 2, + ACTIONS(6175), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [163282] = 3, - ACTIONS(2437), 1, + anon_sym_RBRACE, + [203802] = 3, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(5269), 1, + STATE(7036), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163293] = 2, + [203813] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9193), 2, + ACTIONS(6179), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [163302] = 2, + anon_sym_RBRACE, + [203822] = 3, + ACTIONS(7764), 1, + anon_sym_LBRACE, + STATE(745), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8486), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [163311] = 3, - ACTIONS(6976), 1, + [203833] = 3, + ACTIONS(7660), 1, anon_sym_LBRACE, - STATE(4075), 1, + STATE(1717), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163322] = 3, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(8873), 1, - anon_sym_GT, + [203844] = 3, + ACTIONS(8083), 1, + anon_sym_LBRACE, + STATE(727), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163333] = 3, - ACTIONS(7398), 1, + [203855] = 3, + ACTIONS(10587), 1, + sym_identifier, + ACTIONS(10589), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [203866] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2558), 1, + STATE(2634), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163344] = 3, - ACTIONS(6642), 1, - anon_sym_DOT, - ACTIONS(9195), 1, - anon_sym_GT, + [203877] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2632), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163355] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5645), 1, - sym_formal_parameters, + [203888] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163366] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(4352), 1, - sym_formal_parameters, + ACTIONS(10591), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203897] = 3, + ACTIONS(8309), 1, + anon_sym_LBRACE, + STATE(2631), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163377] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5654), 1, - sym_formal_parameters, + [203908] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163388] = 3, - ACTIONS(7398), 1, + ACTIONS(10593), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [203917] = 3, + ACTIONS(7929), 1, anon_sym_LBRACE, - STATE(2618), 1, - sym_statement_block, + STATE(858), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163399] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(4355), 1, - sym_formal_parameters, + [203928] = 3, + ACTIONS(10595), 1, + sym_identifier, + ACTIONS(10597), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163410] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5661), 1, - sym_formal_parameters, + [203939] = 3, + ACTIONS(7971), 1, + anon_sym_LBRACE, + STATE(226), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163421] = 3, - ACTIONS(7398), 1, + [203950] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(2569), 1, + STATE(2630), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163432] = 3, - ACTIONS(6763), 1, + [203961] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(1701), 1, - sym_class_body, + STATE(2629), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163443] = 3, - ACTIONS(4189), 1, + [203972] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(1647), 1, + STATE(2628), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163454] = 3, - ACTIONS(6725), 1, + [203983] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(10599), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203992] = 3, + ACTIONS(7929), 1, anon_sym_LBRACE, - STATE(2335), 1, + STATE(869), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163465] = 3, - ACTIONS(6419), 1, - anon_sym_LPAREN, - STATE(5758), 1, - sym_formal_parameters, + [204003] = 3, + ACTIONS(3459), 1, + anon_sym_COLON, + STATE(7045), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163476] = 3, - ACTIONS(4189), 1, - anon_sym_LBRACE, - STATE(1619), 1, - sym_statement_block, + [204014] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163487] = 3, - ACTIONS(8881), 1, - anon_sym_LPAREN, - STATE(67), 1, - sym_parenthesized_expression, + ACTIONS(10601), 2, + anon_sym_COMMA, + anon_sym_GT, + [204023] = 3, + ACTIONS(1706), 1, + anon_sym_LBRACE, + STATE(239), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163498] = 3, - ACTIONS(6725), 1, - anon_sym_LBRACE, - STATE(2372), 1, - sym_class_body, + [204034] = 3, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(7185), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163509] = 3, - ACTIONS(2437), 1, + [204045] = 3, + ACTIONS(8309), 1, anon_sym_LBRACE, - STATE(721), 1, + STATE(2626), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163520] = 2, + [204056] = 2, + ACTIONS(10603), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6719), 2, - anon_sym_in, - anon_sym_of, - [163529] = 2, + [204064] = 2, + ACTIONS(10605), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5936), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163538] = 2, - ACTIONS(9197), 1, - anon_sym_RBRACK, + [204072] = 2, + ACTIONS(10607), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163546] = 2, - ACTIONS(9199), 1, - anon_sym_RBRACK, + [204080] = 2, + ACTIONS(10609), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163554] = 2, - ACTIONS(9201), 1, - anon_sym_EQ, + [204088] = 2, + ACTIONS(10611), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163562] = 2, - ACTIONS(9203), 1, - sym_identifier, + [204096] = 2, + ACTIONS(10613), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163570] = 2, - ACTIONS(9205), 1, - anon_sym_class, + [204104] = 2, + ACTIONS(10615), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163578] = 2, - ACTIONS(9207), 1, - anon_sym_COLON, + [204112] = 2, + ACTIONS(10617), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163586] = 2, - ACTIONS(8757), 1, - anon_sym_RBRACE, + [204120] = 2, + ACTIONS(10619), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163594] = 2, - ACTIONS(9209), 1, - anon_sym_DOT, + [204128] = 2, + ACTIONS(10621), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163602] = 2, - ACTIONS(9211), 1, - anon_sym_LPAREN, + [204136] = 2, + ACTIONS(10623), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163610] = 2, - ACTIONS(9213), 1, - anon_sym_RBRACK, + [204144] = 2, + ACTIONS(10625), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163618] = 2, - ACTIONS(9215), 1, + [204152] = 2, + ACTIONS(9981), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163626] = 2, - ACTIONS(9217), 1, - anon_sym_from, + [204160] = 2, + ACTIONS(5226), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163634] = 2, - ACTIONS(9219), 1, - anon_sym_RBRACK, + [204168] = 2, + ACTIONS(10627), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163642] = 2, - ACTIONS(4083), 1, - anon_sym_in, + [204176] = 2, + ACTIONS(10629), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163650] = 2, - ACTIONS(9221), 1, + [204184] = 2, + ACTIONS(10631), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163658] = 2, - ACTIONS(9223), 1, - sym_identifier, + [204192] = 2, + ACTIONS(10633), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163666] = 2, - ACTIONS(9225), 1, + [204200] = 2, + ACTIONS(10635), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163674] = 2, - ACTIONS(9227), 1, - anon_sym_RBRACK, + [204208] = 2, + ACTIONS(10637), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163682] = 2, - ACTIONS(5298), 1, - anon_sym_in, + [204216] = 2, + ACTIONS(10639), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163690] = 2, - ACTIONS(9229), 1, - anon_sym_EQ_GT, + [204224] = 2, + ACTIONS(10641), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163698] = 2, - ACTIONS(9231), 1, + [204232] = 2, + ACTIONS(10643), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163706] = 2, - ACTIONS(9233), 1, - anon_sym_RBRACK, + [204240] = 2, + ACTIONS(5643), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163714] = 2, - ACTIONS(9235), 1, - sym_identifier, + [204248] = 2, + ACTIONS(10645), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163722] = 2, - ACTIONS(5017), 1, - anon_sym_RBRACK, + [204256] = 2, + ACTIONS(10647), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163730] = 2, - ACTIONS(9237), 1, - anon_sym_EQ_GT, + [204264] = 2, + ACTIONS(5023), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163738] = 2, - ACTIONS(9239), 1, - anon_sym_EQ_GT, + [204272] = 2, + ACTIONS(10649), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163746] = 2, - ACTIONS(5031), 1, + [204280] = 2, + ACTIONS(10651), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9241), 1, - anon_sym_SLASH2, - [163764] = 2, - ACTIONS(8571), 1, + [204288] = 2, + ACTIONS(10653), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163772] = 2, - ACTIONS(9243), 1, - anon_sym_new, + [204296] = 2, + ACTIONS(10655), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163780] = 2, - ACTIONS(9245), 1, - anon_sym_RPAREN, + [204304] = 2, + ACTIONS(10657), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163788] = 2, - ACTIONS(5147), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, + [204312] = 3, + ACTIONS(3), 1, sym_comment, - [163796] = 2, - ACTIONS(9247), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [163804] = 2, - ACTIONS(9249), 1, - anon_sym_class, + ACTIONS(10659), 1, + sym_regex_pattern, + [204322] = 2, + ACTIONS(10661), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163812] = 2, - ACTIONS(9251), 1, - sym_identifier, + [204330] = 2, + ACTIONS(10663), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163820] = 2, - ACTIONS(9253), 1, - anon_sym_EQ_GT, + [204338] = 2, + ACTIONS(10665), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163828] = 2, - ACTIONS(9255), 1, - anon_sym_RBRACK, + [204346] = 2, + ACTIONS(10667), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163836] = 2, - ACTIONS(9257), 1, + [204354] = 2, + ACTIONS(10669), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163844] = 2, - ACTIONS(9259), 1, - anon_sym_namespace, + [204362] = 2, + ACTIONS(10671), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163852] = 2, - ACTIONS(9261), 1, + [204370] = 2, + ACTIONS(10673), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163860] = 2, - ACTIONS(9263), 1, - anon_sym_while, + [204378] = 2, + ACTIONS(10675), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163868] = 2, - ACTIONS(9265), 1, - sym_identifier, + [204386] = 2, + ACTIONS(10677), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163876] = 2, - ACTIONS(9267), 1, + [204394] = 2, + ACTIONS(10679), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163884] = 2, - ACTIONS(8765), 1, - anon_sym_GT, + [204402] = 2, + ACTIONS(5015), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163892] = 2, - ACTIONS(9269), 1, - anon_sym_EQ_GT, + [204410] = 2, + ACTIONS(5011), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163900] = 2, - ACTIONS(9271), 1, - anon_sym_as, + [204418] = 2, + ACTIONS(5006), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163908] = 2, - ACTIONS(8929), 1, - anon_sym_from, + [204426] = 2, + ACTIONS(5002), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163916] = 2, - ACTIONS(9273), 1, + [204434] = 2, + ACTIONS(10681), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163924] = 2, - ACTIONS(9275), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163932] = 2, - ACTIONS(9277), 1, + [204442] = 2, + ACTIONS(10683), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163940] = 2, - ACTIONS(9279), 1, - sym_identifier, + [204450] = 2, + ACTIONS(10685), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163948] = 2, - ACTIONS(9281), 1, + [204458] = 2, + ACTIONS(10687), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163956] = 2, - ACTIONS(9283), 1, + [204466] = 2, + ACTIONS(10689), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163964] = 2, - ACTIONS(9285), 1, + [204474] = 2, + ACTIONS(10691), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163972] = 2, - ACTIONS(9287), 1, - anon_sym_EQ_GT, + [204482] = 2, + ACTIONS(10693), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163980] = 2, - ACTIONS(5033), 1, - anon_sym_RPAREN, + [204490] = 2, + ACTIONS(10695), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163988] = 2, - ACTIONS(6540), 1, - anon_sym_is, + [204498] = 2, + ACTIONS(10697), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163996] = 2, - ACTIONS(9289), 1, - anon_sym_EQ, + [204506] = 2, + ACTIONS(5416), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164004] = 2, - ACTIONS(9291), 1, - anon_sym_require, + [204514] = 2, + ACTIONS(10699), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164012] = 2, - ACTIONS(9293), 1, + [204522] = 2, + ACTIONS(10701), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164020] = 2, - ACTIONS(9295), 1, - sym_identifier, + [204530] = 2, + ACTIONS(10703), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164028] = 2, - ACTIONS(9297), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [204538] = 3, + ACTIONS(3), 1, sym_comment, - [164036] = 2, - ACTIONS(8783), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [164044] = 2, - ACTIONS(9299), 1, + ACTIONS(10705), 1, + sym_regex_pattern, + [204548] = 2, + ACTIONS(10707), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164052] = 2, - ACTIONS(9301), 1, - sym_identifier, + [204556] = 2, + ACTIONS(10709), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164060] = 2, - ACTIONS(8528), 1, - sym_identifier, + [204564] = 2, + ACTIONS(10711), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164068] = 2, - ACTIONS(9303), 1, - sym_number, + [204572] = 2, + ACTIONS(10713), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164076] = 2, - ACTIONS(9305), 1, - anon_sym_class, + [204580] = 2, + ACTIONS(10715), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164084] = 2, - ACTIONS(4979), 1, - anon_sym_RBRACK, + [204588] = 2, + ACTIONS(8107), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164092] = 2, - ACTIONS(9307), 1, - anon_sym_EQ, + [204596] = 2, + ACTIONS(10717), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [204604] = 2, + ACTIONS(10719), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9309), 1, - sym_regex_pattern, - [164110] = 2, - ACTIONS(5736), 1, + sym_comment, + [204612] = 2, + ACTIONS(5187), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164118] = 2, - ACTIONS(9311), 1, - anon_sym_EQ, + [204620] = 2, + ACTIONS(10721), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164126] = 2, - ACTIONS(9313), 1, - anon_sym_EQ_GT, + [204628] = 2, + ACTIONS(10723), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164134] = 2, - ACTIONS(9315), 1, - anon_sym_EQ, + [204636] = 2, + ACTIONS(10725), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164142] = 2, - ACTIONS(6658), 1, - anon_sym_is, + [204644] = 2, + ACTIONS(5908), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164150] = 2, - ACTIONS(9317), 1, + [204652] = 2, + ACTIONS(10727), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164158] = 2, - ACTIONS(7657), 1, - anon_sym_RPAREN, + [204660] = 2, + ACTIONS(10729), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164166] = 2, - ACTIONS(9319), 1, - anon_sym_EQ_GT, + [204668] = 2, + ACTIONS(10731), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164174] = 2, - ACTIONS(9321), 1, - anon_sym_symbol, + [204676] = 2, + ACTIONS(10733), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164182] = 2, - ACTIONS(9323), 1, - sym_number, + [204684] = 2, + ACTIONS(10735), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164190] = 2, - ACTIONS(9325), 1, - sym_identifier, + [204692] = 2, + ACTIONS(10737), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164198] = 2, - ACTIONS(7621), 1, - sym_identifier, + [204700] = 2, + ACTIONS(10739), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164206] = 2, - ACTIONS(9327), 1, + [204708] = 2, + ACTIONS(10741), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164214] = 2, - ACTIONS(9329), 1, - anon_sym_symbol, + [204716] = 2, + ACTIONS(10743), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164222] = 2, - ACTIONS(9331), 1, - anon_sym_EQ_GT, + [204724] = 2, + ACTIONS(10745), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164230] = 2, - ACTIONS(9333), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [204732] = 3, + ACTIONS(3), 1, sym_comment, - [164238] = 2, - ACTIONS(9335), 1, - sym_identifier, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10747), 1, + sym_regex_pattern, + [204742] = 2, + ACTIONS(10749), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164246] = 2, - ACTIONS(8411), 1, + [204750] = 2, + ACTIONS(10751), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164254] = 2, - ACTIONS(9337), 1, - anon_sym_new, + [204758] = 2, + ACTIONS(10753), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164262] = 2, - ACTIONS(9339), 1, - sym_identifier, + [204766] = 2, + ACTIONS(10755), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164270] = 2, - ACTIONS(9341), 1, - sym_identifier, + [204774] = 2, + ACTIONS(10757), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164278] = 2, - ACTIONS(9343), 1, + [204782] = 2, + ACTIONS(10759), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164286] = 2, - ACTIONS(9345), 1, + [204790] = 2, + ACTIONS(10761), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164294] = 2, - ACTIONS(8847), 1, - sym_identifier, + [204798] = 2, + ACTIONS(9302), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164302] = 2, - ACTIONS(9347), 1, - anon_sym_symbol, + [204806] = 2, + ACTIONS(7368), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164310] = 2, - ACTIONS(9349), 1, - anon_sym_EQ_GT, + [204814] = 2, + ACTIONS(5097), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164318] = 2, - ACTIONS(9351), 1, + [204822] = 2, + ACTIONS(10763), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164326] = 2, - ACTIONS(9353), 1, + [204830] = 2, + ACTIONS(10765), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164334] = 2, - ACTIONS(7820), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164342] = 2, - ACTIONS(9355), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164350] = 2, - ACTIONS(4269), 1, - anon_sym_RPAREN, + [204838] = 2, + ACTIONS(10767), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164358] = 2, - ACTIONS(9357), 1, - anon_sym_RBRACK, + [204846] = 2, + ACTIONS(10769), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164366] = 2, - ACTIONS(9359), 1, + [204854] = 2, + ACTIONS(10771), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164374] = 2, - ACTIONS(9361), 1, + [204862] = 2, + ACTIONS(10773), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164382] = 2, - ACTIONS(9363), 1, - anon_sym_RBRACK, + [204870] = 2, + ACTIONS(5019), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164390] = 2, - ACTIONS(9365), 1, - anon_sym_RPAREN, + [204878] = 2, + ACTIONS(10775), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164398] = 2, - ACTIONS(9367), 1, - anon_sym_RBRACK, + [204886] = 2, + ACTIONS(8237), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164406] = 2, - ACTIONS(9369), 1, - anon_sym_from, + [204894] = 2, + ACTIONS(10777), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164414] = 2, - ACTIONS(9371), 1, - sym_identifier, + [204902] = 2, + ACTIONS(10779), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164422] = 3, + [204910] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9373), 1, + ACTIONS(10781), 1, sym_regex_pattern, - [164432] = 2, - ACTIONS(9375), 1, + [204920] = 2, + ACTIONS(10783), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164440] = 2, - ACTIONS(9377), 1, - anon_sym_COLON, + [204928] = 2, + ACTIONS(10785), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164448] = 2, - ACTIONS(9379), 1, + [204936] = 2, + ACTIONS(10787), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164456] = 2, - ACTIONS(9381), 1, + [204944] = 2, + ACTIONS(10789), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164464] = 2, - ACTIONS(7182), 1, - anon_sym_is, + [204952] = 2, + ACTIONS(10791), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164472] = 2, - ACTIONS(9383), 1, - anon_sym_EQ_GT, + [204960] = 2, + ACTIONS(10793), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164480] = 2, - ACTIONS(9385), 1, + [204968] = 2, + ACTIONS(10795), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [204976] = 2, + ACTIONS(10797), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164488] = 2, - ACTIONS(9387), 1, + [204984] = 2, + ACTIONS(10799), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164496] = 2, - ACTIONS(9389), 1, - anon_sym_DOT, + [204992] = 2, + ACTIONS(10801), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164504] = 2, - ACTIONS(9391), 1, - anon_sym_EQ_GT, + [205000] = 2, + ACTIONS(10803), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164512] = 2, - ACTIONS(9393), 1, - anon_sym_EQ_GT, + [205008] = 2, + ACTIONS(10805), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164520] = 2, - ACTIONS(9395), 1, - anon_sym_RBRACK, + [205016] = 2, + ACTIONS(10807), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164528] = 2, - ACTIONS(9397), 1, + [205024] = 2, + ACTIONS(10809), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164536] = 2, - ACTIONS(9399), 1, - anon_sym_EQ_GT, + [205032] = 2, + ACTIONS(10811), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164544] = 2, - ACTIONS(9401), 1, + [205040] = 2, + ACTIONS(10046), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164552] = 2, - ACTIONS(9403), 1, - sym_identifier, + [205048] = 2, + ACTIONS(10813), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164560] = 2, - ACTIONS(9405), 1, - anon_sym_EQ_GT, + [205056] = 2, + ACTIONS(10815), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164568] = 2, - ACTIONS(9407), 1, + [205064] = 2, + ACTIONS(10817), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164576] = 2, - ACTIONS(9409), 1, + [205072] = 2, + ACTIONS(10819), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164584] = 2, - ACTIONS(9411), 1, - sym_identifier, + [205080] = 2, + ACTIONS(10821), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164592] = 2, - ACTIONS(9413), 1, + [205088] = 2, + ACTIONS(10823), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164600] = 2, - ACTIONS(9415), 1, - anon_sym_EQ_GT, + [205096] = 2, + ACTIONS(10825), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164608] = 2, - ACTIONS(8719), 1, - anon_sym_EQ, + [205104] = 2, + ACTIONS(10827), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164616] = 2, - ACTIONS(9417), 1, - anon_sym_as, + [205112] = 2, + ACTIONS(10829), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164624] = 2, - ACTIONS(9419), 1, - sym_identifier, + [205120] = 2, + ACTIONS(10831), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164632] = 2, - ACTIONS(9421), 1, - anon_sym_LBRACK, + [205128] = 2, + ACTIONS(10833), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164640] = 2, - ACTIONS(9423), 1, - anon_sym_EQ_GT, + [205136] = 2, + ACTIONS(10835), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164648] = 2, - ACTIONS(9425), 1, + [205144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10837), 1, + anon_sym_SLASH2, + [205154] = 2, + ACTIONS(10839), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164656] = 2, - ACTIONS(9427), 1, + [205162] = 2, + ACTIONS(10841), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164664] = 2, - ACTIONS(8799), 1, - anon_sym_LBRACE, + [205170] = 2, + ACTIONS(10843), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164672] = 2, - ACTIONS(9429), 1, - anon_sym_EQ_GT, + [205178] = 2, + ACTIONS(10845), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164680] = 2, - ACTIONS(5057), 1, - anon_sym_RPAREN, + [205186] = 2, + ACTIONS(10847), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164688] = 2, - ACTIONS(9431), 1, + [205194] = 2, + ACTIONS(10849), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164696] = 2, - ACTIONS(9433), 1, + [205202] = 2, + ACTIONS(10851), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164704] = 2, - ACTIONS(9435), 1, - anon_sym_EQ_GT, + [205210] = 2, + ACTIONS(10853), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164712] = 2, - ACTIONS(9437), 1, - anon_sym_EQ, + [205218] = 2, + ACTIONS(10855), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164720] = 2, - ACTIONS(9439), 1, - sym_identifier, + [205226] = 2, + ACTIONS(10857), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164728] = 2, - ACTIONS(8437), 1, + [205234] = 2, + ACTIONS(10859), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164736] = 2, - ACTIONS(9441), 1, - anon_sym_RBRACK, + [205242] = 2, + ACTIONS(10861), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164744] = 2, - ACTIONS(5019), 1, - anon_sym_RBRACE, + [205250] = 2, + ACTIONS(10863), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164752] = 2, - ACTIONS(9443), 1, - anon_sym_EQ_GT, + [205258] = 2, + ACTIONS(10865), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164760] = 2, - ACTIONS(6035), 1, - anon_sym_EQ_GT, + [205266] = 2, + ACTIONS(10867), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164768] = 2, - ACTIONS(9445), 1, + [205274] = 2, + ACTIONS(10869), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164776] = 2, - ACTIONS(4354), 1, - anon_sym_RPAREN, + [205282] = 2, + ACTIONS(10871), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164784] = 2, - ACTIONS(9447), 1, - ts_builtin_sym_end, + [205290] = 2, + ACTIONS(10873), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164792] = 2, - ACTIONS(9449), 1, - sym_number, + [205298] = 2, + ACTIONS(10875), 1, + anon_sym_require, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164800] = 2, - ACTIONS(9451), 1, - sym_identifier, + [205306] = 2, + ACTIONS(10877), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164808] = 2, - ACTIONS(9453), 1, - anon_sym_EQ_GT, + [205314] = 2, + ACTIONS(10879), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164816] = 2, - ACTIONS(9455), 1, + [205322] = 2, + ACTIONS(10881), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164824] = 2, - ACTIONS(9457), 1, - anon_sym_RBRACK, + [205330] = 2, + ACTIONS(10883), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164832] = 2, - ACTIONS(9459), 1, - anon_sym_RBRACK, + [205338] = 2, + ACTIONS(4017), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164840] = 2, - ACTIONS(9461), 1, - anon_sym_RBRACK, + [205346] = 2, + ACTIONS(10885), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164848] = 2, - ACTIONS(9463), 1, - anon_sym_RBRACK, + [205354] = 2, + ACTIONS(10887), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164856] = 2, - ACTIONS(9465), 1, - anon_sym_EQ_GT, + [205362] = 2, + ACTIONS(10889), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164864] = 2, - ACTIONS(9467), 1, - anon_sym_RBRACK, + [205370] = 2, + ACTIONS(8475), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164872] = 2, - ACTIONS(8166), 1, - anon_sym_EQ_GT, + [205378] = 2, + ACTIONS(10891), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164880] = 2, - ACTIONS(9469), 1, - anon_sym_new, + [205386] = 2, + ACTIONS(10893), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164888] = 2, - ACTIONS(9471), 1, - sym_identifier, + [205394] = 2, + ACTIONS(10187), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164896] = 2, - ACTIONS(9473), 1, + [205402] = 2, + ACTIONS(10895), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164904] = 2, - ACTIONS(9475), 1, + [205410] = 2, + ACTIONS(10897), 1, anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164912] = 2, - ACTIONS(9477), 1, - anon_sym_target, + [205418] = 2, + ACTIONS(10899), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9479), 1, - sym_regex_pattern, - [164930] = 2, - ACTIONS(9481), 1, - anon_sym_DOT, + [205426] = 2, + ACTIONS(10901), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164938] = 2, - ACTIONS(9483), 1, + [205434] = 2, + ACTIONS(10903), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164946] = 2, - ACTIONS(9485), 1, - anon_sym_EQ_GT, + [205442] = 2, + ACTIONS(10905), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164954] = 2, - ACTIONS(9487), 1, - anon_sym_RBRACK, + [205450] = 2, + ACTIONS(10907), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164962] = 2, - ACTIONS(9489), 1, + [205458] = 2, + ACTIONS(10909), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164970] = 2, - ACTIONS(9491), 1, - anon_sym_RBRACK, + [205466] = 2, + ACTIONS(4257), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164978] = 2, - ACTIONS(9493), 1, + [205474] = 2, + ACTIONS(10911), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164986] = 2, - ACTIONS(9495), 1, + [205482] = 2, + ACTIONS(10913), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164994] = 2, - ACTIONS(9497), 1, - anon_sym_RBRACK, + [205490] = 2, + ACTIONS(10243), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165002] = 2, - ACTIONS(9499), 1, + [205498] = 2, + ACTIONS(10915), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165010] = 2, - ACTIONS(9501), 1, + [205506] = 2, + ACTIONS(10917), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165018] = 2, - ACTIONS(9503), 1, - anon_sym_function, + [205514] = 2, + ACTIONS(10919), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165026] = 2, - ACTIONS(9505), 1, - anon_sym_RBRACK, + [205522] = 2, + ACTIONS(5037), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165034] = 2, - ACTIONS(9507), 1, - sym_identifier, + [205530] = 2, + ACTIONS(10921), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165042] = 2, - ACTIONS(9509), 1, - anon_sym_RPAREN, + [205538] = 2, + ACTIONS(10923), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165050] = 2, - ACTIONS(9511), 1, - sym_identifier, + [205546] = 2, + ACTIONS(5071), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165058] = 2, - ACTIONS(9513), 1, + [205554] = 2, + ACTIONS(10925), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165066] = 2, - ACTIONS(9515), 1, + [205562] = 2, + ACTIONS(10927), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165074] = 2, - ACTIONS(4313), 1, - anon_sym_RPAREN, + [205570] = 2, + ACTIONS(10929), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165082] = 2, - ACTIONS(9517), 1, - anon_sym_LBRACE, + [205578] = 2, + ACTIONS(10931), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165090] = 2, - ACTIONS(9519), 1, - anon_sym_RBRACK, + [205586] = 2, + ACTIONS(10933), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165098] = 2, - ACTIONS(9521), 1, - anon_sym_RBRACK, + [205594] = 2, + ACTIONS(10935), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165106] = 2, - ACTIONS(4539), 1, - anon_sym_in, + [205602] = 2, + ACTIONS(10937), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165114] = 2, - ACTIONS(7291), 1, - anon_sym_is, + [205610] = 2, + ACTIONS(5101), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165122] = 2, - ACTIONS(9523), 1, + [205618] = 2, + ACTIONS(10939), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165130] = 2, - ACTIONS(9525), 1, + [205626] = 2, + ACTIONS(10941), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165138] = 2, - ACTIONS(9527), 1, + [205634] = 2, + ACTIONS(10943), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165146] = 2, - ACTIONS(9529), 1, + [205642] = 2, + ACTIONS(10945), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165154] = 2, - ACTIONS(9531), 1, + [205650] = 2, + ACTIONS(10947), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165162] = 2, - ACTIONS(5025), 1, + [205658] = 2, + ACTIONS(10949), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165170] = 2, - ACTIONS(9533), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165178] = 2, - ACTIONS(9535), 1, - anon_sym_EQ_GT, + [205666] = 2, + ACTIONS(10951), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165186] = 2, - ACTIONS(9537), 1, + [205674] = 2, + ACTIONS(10953), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165194] = 2, - ACTIONS(9539), 1, - sym_identifier, + [205682] = 2, + ACTIONS(10955), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165202] = 2, - ACTIONS(9541), 1, - anon_sym_COLON, + [205690] = 2, + ACTIONS(10957), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165210] = 2, - ACTIONS(4961), 1, - anon_sym_in, + [205698] = 2, + ACTIONS(10959), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165218] = 2, - ACTIONS(9543), 1, - anon_sym_EQ_GT, + [205706] = 2, + ACTIONS(10961), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165226] = 2, - ACTIONS(9545), 1, + [205714] = 2, + ACTIONS(10963), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165234] = 2, - ACTIONS(9547), 1, - anon_sym_EQ, + [205722] = 2, + ACTIONS(10965), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165242] = 2, - ACTIONS(9549), 1, - anon_sym_RBRACK, + [205730] = 2, + ACTIONS(10967), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165250] = 2, - ACTIONS(9551), 1, - anon_sym_EQ_GT, + [205738] = 2, + ACTIONS(4981), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165258] = 2, - ACTIONS(9553), 1, - anon_sym_RBRACK, + [205746] = 2, + ACTIONS(10969), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165266] = 2, - ACTIONS(9555), 1, + [205754] = 2, + ACTIONS(10971), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165274] = 2, - ACTIONS(9557), 1, - anon_sym_RBRACK, + [205762] = 2, + ACTIONS(10973), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165282] = 2, - ACTIONS(9559), 1, + [205770] = 2, + ACTIONS(10975), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165290] = 2, - ACTIONS(9561), 1, - anon_sym_EQ_GT, + [205778] = 2, + ACTIONS(10977), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165298] = 2, - ACTIONS(9563), 1, + [205786] = 2, + ACTIONS(10979), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165306] = 2, - ACTIONS(9565), 1, - anon_sym_namespace, + [205794] = 2, + ACTIONS(7586), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165314] = 2, - ACTIONS(9567), 1, - anon_sym_RBRACK, + [205802] = 2, + ACTIONS(10981), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165322] = 2, - ACTIONS(9569), 1, - anon_sym_RBRACK, + [205810] = 2, + ACTIONS(10983), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165330] = 2, - ACTIONS(5055), 1, - anon_sym_RPAREN, + [205818] = 2, + ACTIONS(10985), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165338] = 2, - ACTIONS(9571), 1, + [205826] = 2, + ACTIONS(10987), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9573), 1, - anon_sym_SLASH2, - [165356] = 2, - ACTIONS(9575), 1, - anon_sym_EQ, + [205834] = 2, + ACTIONS(10989), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165364] = 2, - ACTIONS(9577), 1, - anon_sym_EQ, + [205842] = 2, + ACTIONS(10991), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [205850] = 2, + ACTIONS(10993), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9579), 1, - anon_sym_SLASH2, - [165382] = 2, - ACTIONS(9581), 1, + sym_comment, + [205858] = 2, + ACTIONS(10261), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165390] = 2, - ACTIONS(5456), 1, - anon_sym_in, + [205866] = 2, + ACTIONS(10255), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165398] = 2, - ACTIONS(9583), 1, + [205874] = 2, + ACTIONS(10995), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165406] = 2, - ACTIONS(9585), 1, - anon_sym_RBRACK, + [205882] = 2, + ACTIONS(10997), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165414] = 2, - ACTIONS(9587), 1, + [205890] = 2, + ACTIONS(10999), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [205898] = 2, + ACTIONS(11001), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165422] = 2, - ACTIONS(9589), 1, - anon_sym_EQ_GT, + [205906] = 2, + ACTIONS(11003), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165430] = 2, - ACTIONS(9591), 1, - anon_sym_EQ_GT, + [205914] = 2, + ACTIONS(11005), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165438] = 2, - ACTIONS(9593), 1, - anon_sym_EQ_GT, + [205922] = 2, + ACTIONS(11007), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165446] = 2, - ACTIONS(9595), 1, - anon_sym_EQ_GT, + [205930] = 2, + ACTIONS(11009), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165454] = 2, - ACTIONS(9597), 1, - anon_sym_EQ_GT, + [205938] = 2, + ACTIONS(11011), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165462] = 2, - ACTIONS(9599), 1, - anon_sym_target, + [205946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11013), 1, + anon_sym_SLASH2, + [205956] = 2, + ACTIONS(11015), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165470] = 2, - ACTIONS(4043), 1, - anon_sym_is, + [205964] = 2, + ACTIONS(11017), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165478] = 2, - ACTIONS(7577), 1, - anon_sym_RPAREN, + [205972] = 2, + ACTIONS(11019), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165486] = 2, - ACTIONS(9601), 1, - anon_sym_readonly, + [205980] = 2, + ACTIONS(11021), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165494] = 2, - ACTIONS(9603), 1, - anon_sym_EQ_GT, + [205988] = 2, + ACTIONS(11023), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165502] = 2, - ACTIONS(5037), 1, - anon_sym_RPAREN, + [205996] = 2, + ACTIONS(11025), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165510] = 2, - ACTIONS(9605), 1, - anon_sym_EQ_GT, + [206004] = 2, + ACTIONS(11027), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165518] = 2, - ACTIONS(9607), 1, + [206012] = 2, + ACTIONS(11029), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165526] = 2, - ACTIONS(9609), 1, - sym_identifier, + [206020] = 2, + ACTIONS(11031), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165534] = 2, - ACTIONS(9611), 1, - sym_identifier, + [206028] = 2, + ACTIONS(11033), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165542] = 2, - ACTIONS(9613), 1, + [206036] = 2, + ACTIONS(11035), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165550] = 2, - ACTIONS(9615), 1, - sym_identifier, + [206044] = 2, + ACTIONS(11037), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165558] = 2, - ACTIONS(4981), 1, + [206052] = 2, + ACTIONS(10225), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165566] = 2, - ACTIONS(9617), 1, - sym_identifier, + [206060] = 2, + ACTIONS(11039), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165574] = 2, - ACTIONS(9619), 1, - sym_identifier, + [206068] = 2, + ACTIONS(11041), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165582] = 2, - ACTIONS(9621), 1, - anon_sym_EQ_GT, + [206076] = 2, + ACTIONS(11043), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [206084] = 2, + ACTIONS(11045), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165590] = 2, - ACTIONS(9623), 1, + [206092] = 2, + ACTIONS(11047), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165598] = 2, - ACTIONS(9625), 1, - anon_sym_EQ, + [206100] = 2, + ACTIONS(11049), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165606] = 2, - ACTIONS(9627), 1, - anon_sym_from, + [206108] = 2, + ACTIONS(11051), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165614] = 2, - ACTIONS(9629), 1, + [206116] = 2, + ACTIONS(11053), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165622] = 2, - ACTIONS(9631), 1, + [206124] = 2, + ACTIONS(11055), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165630] = 2, - ACTIONS(9633), 1, - anon_sym_EQ_GT, + [206132] = 2, + ACTIONS(11057), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165638] = 2, - ACTIONS(9635), 1, - anon_sym_RPAREN, + [206140] = 2, + ACTIONS(11059), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [206148] = 2, + ACTIONS(11061), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9637), 1, - sym_regex_pattern, - [165656] = 2, - ACTIONS(9639), 1, + sym_comment, + [206156] = 2, + ACTIONS(11063), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165664] = 2, - ACTIONS(9641), 1, + [206164] = 2, + ACTIONS(11065), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165672] = 2, - ACTIONS(9643), 1, - sym_number, + [206172] = 2, + ACTIONS(4091), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165680] = 2, - ACTIONS(9645), 1, - anon_sym_RBRACK, + [206180] = 2, + ACTIONS(9906), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165688] = 2, - ACTIONS(9647), 1, - anon_sym_DOT, + [206188] = 2, + ACTIONS(11067), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165696] = 2, - ACTIONS(8518), 1, - anon_sym_GT, + [206196] = 2, + ACTIONS(11069), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165704] = 2, - ACTIONS(9649), 1, + [206204] = 2, + ACTIONS(11071), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165712] = 2, - ACTIONS(9651), 1, - anon_sym_RPAREN, + [206212] = 2, + ACTIONS(11073), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165720] = 2, - ACTIONS(8655), 1, - anon_sym_RBRACE, + [206220] = 2, + ACTIONS(11075), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165728] = 2, - ACTIONS(9653), 1, - anon_sym_EQ_GT, + [206228] = 2, + ACTIONS(5115), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165736] = 2, - ACTIONS(9655), 1, - anon_sym_RBRACK, + [206236] = 2, + ACTIONS(11077), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165744] = 2, - ACTIONS(9657), 1, - anon_sym_EQ_GT, + [206244] = 2, + ACTIONS(11079), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165752] = 2, - ACTIONS(9659), 1, - anon_sym_EQ_GT, + [206252] = 2, + ACTIONS(11081), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165760] = 2, - ACTIONS(9661), 1, + [206260] = 2, + ACTIONS(11083), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165768] = 2, - ACTIONS(9663), 1, - sym_number, + [206268] = 2, + ACTIONS(11085), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165776] = 2, - ACTIONS(5062), 1, - anon_sym_RPAREN, + [206276] = 2, + ACTIONS(11087), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165784] = 2, - ACTIONS(4983), 1, - anon_sym_is, + [206284] = 2, + ACTIONS(10133), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165792] = 2, - ACTIONS(9665), 1, - anon_sym_EQ_GT, + [206292] = 2, + ACTIONS(10115), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165800] = 2, - ACTIONS(9667), 1, + [206300] = 2, + ACTIONS(5043), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165808] = 2, - ACTIONS(5023), 1, - anon_sym_RBRACK, + [206308] = 2, + ACTIONS(11089), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [206316] = 2, + ACTIONS(10097), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165816] = 2, - ACTIONS(9669), 1, + [206324] = 2, + ACTIONS(11091), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165824] = 2, - ACTIONS(9671), 1, + [206332] = 2, + ACTIONS(11093), 1, anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165832] = 2, - ACTIONS(9673), 1, - anon_sym_RBRACK, + [206340] = 2, + ACTIONS(11095), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165840] = 2, - ACTIONS(9675), 1, - anon_sym_RBRACK, + [206348] = 2, + ACTIONS(11097), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165848] = 2, - ACTIONS(9677), 1, - anon_sym_EQ, + [206356] = 2, + ACTIONS(11099), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165856] = 2, - ACTIONS(9679), 1, - anon_sym_RBRACK, + [206364] = 2, + ACTIONS(11101), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165864] = 2, - ACTIONS(9681), 1, + [206372] = 2, + ACTIONS(11103), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165872] = 2, - ACTIONS(9683), 1, - anon_sym_RBRACK, + [206380] = 2, + ACTIONS(11105), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165880] = 2, - ACTIONS(6741), 1, - anon_sym_is, + [206388] = 2, + ACTIONS(11107), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [206396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11109), 1, + anon_sym_SLASH2, + [206406] = 2, + ACTIONS(9957), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165888] = 2, - ACTIONS(4604), 1, + [206414] = 2, + ACTIONS(4821), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165896] = 2, - ACTIONS(9685), 1, - anon_sym_EQ_GT, + [206422] = 2, + ACTIONS(11111), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165904] = 2, - ACTIONS(9687), 1, + [206430] = 2, + ACTIONS(11113), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165912] = 2, - ACTIONS(9689), 1, + [206438] = 2, + ACTIONS(11115), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165920] = 2, - ACTIONS(9691), 1, + [206446] = 2, + ACTIONS(11117), 1, anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165928] = 2, - ACTIONS(9693), 1, + [206454] = 2, + ACTIONS(11119), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165936] = 2, - ACTIONS(9695), 1, - sym_identifier, + [206462] = 2, + ACTIONS(8301), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165944] = 2, - ACTIONS(9697), 1, - anon_sym_RBRACK, + [206470] = 2, + ACTIONS(4127), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165952] = 2, - ACTIONS(9699), 1, + [206478] = 2, + ACTIONS(11121), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165960] = 2, - ACTIONS(9701), 1, - anon_sym_COLON, + [206486] = 2, + ACTIONS(4125), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165968] = 2, - ACTIONS(9703), 1, + [206494] = 2, + ACTIONS(11123), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165976] = 2, - ACTIONS(9705), 1, + [206502] = 2, + ACTIONS(11125), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165984] = 2, - ACTIONS(9707), 1, - anon_sym_RBRACK, + [206510] = 2, + ACTIONS(11127), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165992] = 2, - ACTIONS(9709), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [206518] = 3, + ACTIONS(3), 1, sym_comment, - [166000] = 2, - ACTIONS(9711), 1, - anon_sym_EQ_GT, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11129), 1, + anon_sym_SLASH2, + [206528] = 2, + ACTIONS(11131), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166008] = 2, - ACTIONS(9713), 1, - anon_sym_from, + [206536] = 2, + ACTIONS(11133), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166016] = 2, - ACTIONS(9715), 1, - anon_sym_from, + [206544] = 2, + ACTIONS(11135), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166024] = 2, - ACTIONS(9717), 1, - anon_sym_RBRACK, + [206552] = 2, + ACTIONS(11137), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166032] = 2, - ACTIONS(5039), 1, - anon_sym_RPAREN, + [206560] = 2, + ACTIONS(9565), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166040] = 2, - ACTIONS(9719), 1, - sym_identifier, + [206568] = 2, + ACTIONS(6471), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166048] = 2, - ACTIONS(9721), 1, + [206576] = 2, + ACTIONS(11139), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166056] = 2, - ACTIONS(9723), 1, - anon_sym_EQ_GT, + [206584] = 2, + ACTIONS(10013), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166064] = 2, - ACTIONS(9725), 1, - sym_identifier, + [206592] = 2, + ACTIONS(11141), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166072] = 2, - ACTIONS(9727), 1, + [206600] = 2, + ACTIONS(11143), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166080] = 2, - ACTIONS(9729), 1, - anon_sym_from, + [206608] = 2, + ACTIONS(11145), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166088] = 2, - ACTIONS(9731), 1, - anon_sym_RBRACK, + [206616] = 2, + ACTIONS(11147), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166096] = 2, - ACTIONS(9733), 1, - sym_identifier, + [206624] = 2, + ACTIONS(11149), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166104] = 2, - ACTIONS(9735), 1, + [206632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11151), 1, + anon_sym_SLASH2, + [206642] = 2, + ACTIONS(11153), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166112] = 2, - ACTIONS(7303), 1, - anon_sym_EQ, + [206650] = 2, + ACTIONS(11155), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166120] = 2, - ACTIONS(9737), 1, - anon_sym_RBRACK, + [206658] = 2, + ACTIONS(11157), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166128] = 2, - ACTIONS(9739), 1, - sym_identifier, + [206666] = 2, + ACTIONS(11159), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166136] = 2, - ACTIONS(9741), 1, - anon_sym_RBRACK, + [206674] = 2, + ACTIONS(11161), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166144] = 2, - ACTIONS(9743), 1, - anon_sym_RBRACK, + [206682] = 2, + ACTIONS(11163), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166152] = 2, - ACTIONS(9745), 1, - anon_sym_RBRACK, + [206690] = 2, + ACTIONS(11165), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166160] = 2, - ACTIONS(9747), 1, - anon_sym_RBRACK, + [206698] = 2, + ACTIONS(11167), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166168] = 2, - ACTIONS(9749), 1, - anon_sym_EQ, + [206706] = 2, + ACTIONS(11169), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166176] = 2, - ACTIONS(9751), 1, - anon_sym_new, + [206714] = 2, + ACTIONS(11171), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166184] = 2, - ACTIONS(9753), 1, - sym_identifier, + [206722] = 2, + ACTIONS(4109), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166192] = 2, - ACTIONS(9755), 1, - anon_sym_RBRACK, + [206730] = 2, + ACTIONS(8769), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166200] = 2, - ACTIONS(9757), 1, + [206738] = 2, + ACTIONS(11173), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166208] = 2, - ACTIONS(9759), 1, + [206746] = 2, + ACTIONS(5031), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9761), 1, - sym_regex_pattern, - [166226] = 2, - ACTIONS(9763), 1, - anon_sym_RBRACK, + [206754] = 2, + ACTIONS(5013), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166234] = 2, - ACTIONS(9765), 1, - anon_sym_RBRACK, + [206762] = 2, + ACTIONS(11175), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166242] = 2, - ACTIONS(9767), 1, - anon_sym_RBRACK, + [206770] = 2, + ACTIONS(9965), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166250] = 2, - ACTIONS(9769), 1, - anon_sym_RBRACK, + [206778] = 2, + ACTIONS(10499), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166258] = 2, - ACTIONS(9771), 1, + [206786] = 2, + ACTIONS(11177), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166266] = 2, - ACTIONS(9773), 1, + [206794] = 2, + ACTIONS(11179), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [206802] = 2, + ACTIONS(11181), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9775), 1, - anon_sym_SLASH2, - [166284] = 2, - ACTIONS(9777), 1, - anon_sym_RBRACK, + sym_comment, + [206810] = 2, + ACTIONS(11183), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166292] = 2, - ACTIONS(9779), 1, - anon_sym_RBRACK, + [206818] = 2, + ACTIONS(11185), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166300] = 2, - ACTIONS(9781), 1, - anon_sym_RBRACK, + [206826] = 2, + ACTIONS(11187), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166308] = 2, - ACTIONS(9783), 1, + [206834] = 2, + ACTIONS(11189), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166316] = 2, - ACTIONS(9785), 1, + [206842] = 2, + ACTIONS(11191), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166324] = 2, - ACTIONS(9787), 1, - sym_identifier, + [206850] = 2, + ACTIONS(11193), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166332] = 2, - ACTIONS(9789), 1, + [206858] = 2, + ACTIONS(11195), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166340] = 2, - ACTIONS(9791), 1, + [206866] = 2, + ACTIONS(11197), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166348] = 2, - ACTIONS(9793), 1, + [206874] = 2, + ACTIONS(11199), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166356] = 2, - ACTIONS(7659), 1, + [206882] = 2, + ACTIONS(8929), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166364] = 2, - ACTIONS(9795), 1, + [206890] = 2, + ACTIONS(11201), 1, anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166372] = 2, - ACTIONS(9797), 1, - anon_sym_RPAREN, + [206898] = 2, + ACTIONS(11203), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166380] = 2, - ACTIONS(8405), 1, - anon_sym_GT, + [206906] = 2, + ACTIONS(11205), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166388] = 2, - ACTIONS(9799), 1, - anon_sym_EQ_GT, + [206914] = 2, + ACTIONS(11207), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166396] = 2, - ACTIONS(9801), 1, + [206922] = 2, + ACTIONS(11209), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166404] = 2, - ACTIONS(8873), 1, - anon_sym_GT, + [206930] = 2, + ACTIONS(8371), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166412] = 2, - ACTIONS(9803), 1, + [206938] = 2, + ACTIONS(11211), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166420] = 2, - ACTIONS(9805), 1, + [206946] = 2, + ACTIONS(11213), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166428] = 2, - ACTIONS(9807), 1, + [206954] = 2, + ACTIONS(11215), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166436] = 2, - ACTIONS(9809), 1, + [206962] = 2, + ACTIONS(11217), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166444] = 2, - ACTIONS(9811), 1, - anon_sym_class, + [206970] = 2, + ACTIONS(11219), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166452] = 2, - ACTIONS(9813), 1, + [206978] = 2, + ACTIONS(11221), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166460] = 2, - ACTIONS(9815), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166468] = 2, - ACTIONS(9817), 1, + [206986] = 2, + ACTIONS(11223), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166476] = 2, - ACTIONS(9819), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166484] = 2, - ACTIONS(4474), 1, - anon_sym_RPAREN, + [206994] = 2, + ACTIONS(11225), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166492] = 2, - ACTIONS(9821), 1, + [207002] = 2, + ACTIONS(11227), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166500] = 2, - ACTIONS(5365), 1, - anon_sym_in, + [207010] = 2, + ACTIONS(11229), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166508] = 2, - ACTIONS(9823), 1, - anon_sym_RBRACK, + [207018] = 2, + ACTIONS(11231), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166516] = 2, - ACTIONS(9825), 1, - anon_sym_EQ_GT, + [207026] = 2, + ACTIONS(5000), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166524] = 2, - ACTIONS(9827), 1, - anon_sym_RPAREN, + [207034] = 2, + ACTIONS(7724), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166532] = 2, - ACTIONS(9829), 1, - anon_sym_DOT, + [207042] = 2, + ACTIONS(11233), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166540] = 2, - ACTIONS(9831), 1, - anon_sym_EQ_GT, + [207050] = 2, + ACTIONS(10245), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166548] = 2, - ACTIONS(9833), 1, + [207058] = 2, + ACTIONS(11235), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166556] = 2, - ACTIONS(9835), 1, - anon_sym_EQ_GT, + [207066] = 2, + ACTIONS(11237), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166564] = 2, - ACTIONS(4973), 1, - anon_sym_RBRACE, + [207074] = 2, + ACTIONS(11239), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166572] = 2, - ACTIONS(9837), 1, - anon_sym_RPAREN, + [207082] = 2, + ACTIONS(11241), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166580] = 2, - ACTIONS(9839), 1, - anon_sym_EQ_GT, + [207090] = 2, + ACTIONS(11243), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166588] = 2, - ACTIONS(9841), 1, - anon_sym_EQ, + [207098] = 2, + ACTIONS(4571), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166596] = 3, + [207106] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9843), 1, - anon_sym_SLASH2, - [166606] = 2, - ACTIONS(9845), 1, - anon_sym_EQ_GT, + ACTIONS(11245), 1, + sym_regex_pattern, + [207116] = 2, + ACTIONS(11247), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166614] = 2, - ACTIONS(9847), 1, - anon_sym_EQ_GT, + [207124] = 2, + ACTIONS(11249), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166622] = 2, - ACTIONS(9849), 1, + [207132] = 2, + ACTIONS(11251), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166630] = 2, - ACTIONS(9851), 1, + [207140] = 2, + ACTIONS(11253), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166638] = 2, - ACTIONS(9853), 1, + [207148] = 2, + ACTIONS(11255), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166646] = 2, - ACTIONS(9855), 1, - anon_sym_new, + [207156] = 2, + ACTIONS(11257), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166654] = 2, - ACTIONS(9857), 1, + [207164] = 2, + ACTIONS(11259), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166662] = 2, - ACTIONS(9859), 1, - anon_sym_RBRACK, + [207172] = 2, + ACTIONS(11261), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166670] = 2, - ACTIONS(8669), 1, + [207180] = 2, + ACTIONS(11263), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166678] = 2, - ACTIONS(9861), 1, + [207188] = 2, + ACTIONS(11265), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, + [207196] = 2, + ACTIONS(11267), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1132)] = 0, [SMALL_STATE(1133)] = 93, - [SMALL_STATE(1134)] = 186, - [SMALL_STATE(1135)] = 275, - [SMALL_STATE(1136)] = 368, - [SMALL_STATE(1137)] = 457, + [SMALL_STATE(1134)] = 188, + [SMALL_STATE(1135)] = 277, + [SMALL_STATE(1136)] = 370, + [SMALL_STATE(1137)] = 459, [SMALL_STATE(1138)] = 552, [SMALL_STATE(1139)] = 640, [SMALL_STATE(1140)] = 710, - [SMALL_STATE(1141)] = 800, - [SMALL_STATE(1142)] = 888, - [SMALL_STATE(1143)] = 978, - [SMALL_STATE(1144)] = 1064, - [SMALL_STATE(1145)] = 1136, - [SMALL_STATE(1146)] = 1224, - [SMALL_STATE(1147)] = 1294, - [SMALL_STATE(1148)] = 1364, - [SMALL_STATE(1149)] = 1434, - [SMALL_STATE(1150)] = 1504, - [SMALL_STATE(1151)] = 1574, - [SMALL_STATE(1152)] = 1662, - [SMALL_STATE(1153)] = 1754, - [SMALL_STATE(1154)] = 1842, - [SMALL_STATE(1155)] = 1932, - [SMALL_STATE(1156)] = 2020, - [SMALL_STATE(1157)] = 2110, - [SMALL_STATE(1158)] = 2200, - [SMALL_STATE(1159)] = 2290, - [SMALL_STATE(1160)] = 2378, - [SMALL_STATE(1161)] = 2468, - [SMALL_STATE(1162)] = 2554, - [SMALL_STATE(1163)] = 2624, - [SMALL_STATE(1164)] = 2716, - [SMALL_STATE(1165)] = 2808, + [SMALL_STATE(1141)] = 782, + [SMALL_STATE(1142)] = 872, + [SMALL_STATE(1143)] = 944, + [SMALL_STATE(1144)] = 1034, + [SMALL_STATE(1145)] = 1122, + [SMALL_STATE(1146)] = 1212, + [SMALL_STATE(1147)] = 1302, + [SMALL_STATE(1148)] = 1390, + [SMALL_STATE(1149)] = 1478, + [SMALL_STATE(1150)] = 1548, + [SMALL_STATE(1151)] = 1618, + [SMALL_STATE(1152)] = 1688, + [SMALL_STATE(1153)] = 1778, + [SMALL_STATE(1154)] = 1848, + [SMALL_STATE(1155)] = 1938, + [SMALL_STATE(1156)] = 2024, + [SMALL_STATE(1157)] = 2116, + [SMALL_STATE(1158)] = 2204, + [SMALL_STATE(1159)] = 2296, + [SMALL_STATE(1160)] = 2382, + [SMALL_STATE(1161)] = 2472, + [SMALL_STATE(1162)] = 2542, + [SMALL_STATE(1163)] = 2634, + [SMALL_STATE(1164)] = 2722, + [SMALL_STATE(1165)] = 2792, [SMALL_STATE(1166)] = 2880, - [SMALL_STATE(1167)] = 2970, + [SMALL_STATE(1167)] = 2968, [SMALL_STATE(1168)] = 3058, - [SMALL_STATE(1169)] = 3149, + [SMALL_STATE(1169)] = 3145, [SMALL_STATE(1170)] = 3236, - [SMALL_STATE(1171)] = 3323, - [SMALL_STATE(1172)] = 3414, + [SMALL_STATE(1171)] = 3331, + [SMALL_STATE(1172)] = 3418, [SMALL_STATE(1173)] = 3505, [SMALL_STATE(1174)] = 3594, - [SMALL_STATE(1175)] = 3663, - [SMALL_STATE(1176)] = 3752, - [SMALL_STATE(1177)] = 3843, - [SMALL_STATE(1178)] = 3930, - [SMALL_STATE(1179)] = 3999, - [SMALL_STATE(1180)] = 4072, - [SMALL_STATE(1181)] = 4167, - [SMALL_STATE(1182)] = 4254, - [SMALL_STATE(1183)] = 4341, + [SMALL_STATE(1175)] = 3667, + [SMALL_STATE(1176)] = 3758, + [SMALL_STATE(1177)] = 3847, + [SMALL_STATE(1178)] = 3916, + [SMALL_STATE(1179)] = 4007, + [SMALL_STATE(1180)] = 4086, + [SMALL_STATE(1181)] = 4177, + [SMALL_STATE(1182)] = 4264, + [SMALL_STATE(1183)] = 4351, [SMALL_STATE(1184)] = 4420, - [SMALL_STATE(1185)] = 4512, + [SMALL_STATE(1185)] = 4506, [SMALL_STATE(1186)] = 4598, [SMALL_STATE(1187)] = 4684, - [SMALL_STATE(1188)] = 4774, - [SMALL_STATE(1189)] = 4854, - [SMALL_STATE(1190)] = 4932, - [SMALL_STATE(1191)] = 5018, - [SMALL_STATE(1192)] = 5096, - [SMALL_STATE(1193)] = 5174, - [SMALL_STATE(1194)] = 5264, - [SMALL_STATE(1195)] = 5332, - [SMALL_STATE(1196)] = 5418, - [SMALL_STATE(1197)] = 5504, - [SMALL_STATE(1198)] = 5590, - [SMALL_STATE(1199)] = 5676, - [SMALL_STATE(1200)] = 5762, - [SMALL_STATE(1201)] = 5848, - [SMALL_STATE(1202)] = 5922, - [SMALL_STATE(1203)] = 6002, - [SMALL_STATE(1204)] = 6070, - [SMALL_STATE(1205)] = 6148, - [SMALL_STATE(1206)] = 6238, - [SMALL_STATE(1207)] = 6330, - [SMALL_STATE(1208)] = 6416, - [SMALL_STATE(1209)] = 6502, - [SMALL_STATE(1210)] = 6580, - [SMALL_STATE(1211)] = 6666, - [SMALL_STATE(1212)] = 6756, - [SMALL_STATE(1213)] = 6832, - [SMALL_STATE(1214)] = 6918, - [SMALL_STATE(1215)] = 6996, - [SMALL_STATE(1216)] = 7069, - [SMALL_STATE(1217)] = 7142, - [SMALL_STATE(1218)] = 7215, - [SMALL_STATE(1219)] = 7304, - [SMALL_STATE(1220)] = 7393, - [SMALL_STATE(1221)] = 7478, - [SMALL_STATE(1222)] = 7553, - [SMALL_STATE(1223)] = 7636, + [SMALL_STATE(1188)] = 4770, + [SMALL_STATE(1189)] = 4856, + [SMALL_STATE(1190)] = 4946, + [SMALL_STATE(1191)] = 5032, + [SMALL_STATE(1192)] = 5118, + [SMALL_STATE(1193)] = 5204, + [SMALL_STATE(1194)] = 5282, + [SMALL_STATE(1195)] = 5374, + [SMALL_STATE(1196)] = 5452, + [SMALL_STATE(1197)] = 5538, + [SMALL_STATE(1198)] = 5628, + [SMALL_STATE(1199)] = 5708, + [SMALL_STATE(1200)] = 5798, + [SMALL_STATE(1201)] = 5876, + [SMALL_STATE(1202)] = 5966, + [SMALL_STATE(1203)] = 6052, + [SMALL_STATE(1204)] = 6130, + [SMALL_STATE(1205)] = 6208, + [SMALL_STATE(1206)] = 6286, + [SMALL_STATE(1207)] = 6366, + [SMALL_STATE(1208)] = 6452, + [SMALL_STATE(1209)] = 6538, + [SMALL_STATE(1210)] = 6624, + [SMALL_STATE(1211)] = 6710, + [SMALL_STATE(1212)] = 6784, + [SMALL_STATE(1213)] = 6860, + [SMALL_STATE(1214)] = 6937, + [SMALL_STATE(1215)] = 7010, + [SMALL_STATE(1216)] = 7085, + [SMALL_STATE(1217)] = 7154, + [SMALL_STATE(1218)] = 7223, + [SMALL_STATE(1219)] = 7312, + [SMALL_STATE(1220)] = 7401, + [SMALL_STATE(1221)] = 7480, + [SMALL_STATE(1222)] = 7549, + [SMALL_STATE(1223)] = 7622, [SMALL_STATE(1224)] = 7705, - [SMALL_STATE(1225)] = 7784, - [SMALL_STATE(1226)] = 7853, - [SMALL_STATE(1227)] = 7938, - [SMALL_STATE(1228)] = 8007, - [SMALL_STATE(1229)] = 8074, - [SMALL_STATE(1230)] = 8151, - [SMALL_STATE(1231)] = 8226, - [SMALL_STATE(1232)] = 8293, - [SMALL_STATE(1233)] = 8380, - [SMALL_STATE(1234)] = 8447, - [SMALL_STATE(1235)] = 8522, - [SMALL_STATE(1236)] = 8605, - [SMALL_STATE(1237)] = 8690, - [SMALL_STATE(1238)] = 8779, - [SMALL_STATE(1239)] = 8856, - [SMALL_STATE(1240)] = 8933, - [SMALL_STATE(1241)] = 9006, - [SMALL_STATE(1242)] = 9095, - [SMALL_STATE(1243)] = 9164, - [SMALL_STATE(1244)] = 9233, - [SMALL_STATE(1245)] = 9300, - [SMALL_STATE(1246)] = 9369, - [SMALL_STATE(1247)] = 9448, - [SMALL_STATE(1248)] = 9520, - [SMALL_STATE(1249)] = 9602, - [SMALL_STATE(1250)] = 9678, - [SMALL_STATE(1251)] = 9750, - [SMALL_STATE(1252)] = 9820, - [SMALL_STATE(1253)] = 9886, - [SMALL_STATE(1254)] = 9958, - [SMALL_STATE(1255)] = 10030, - [SMALL_STATE(1256)] = 10096, - [SMALL_STATE(1257)] = 10162, - [SMALL_STATE(1258)] = 10228, - [SMALL_STATE(1259)] = 10294, - [SMALL_STATE(1260)] = 10360, - [SMALL_STATE(1261)] = 10426, - [SMALL_STATE(1262)] = 10502, - [SMALL_STATE(1263)] = 10574, - [SMALL_STATE(1264)] = 10648, - [SMALL_STATE(1265)] = 10722, - [SMALL_STATE(1266)] = 10796, - [SMALL_STATE(1267)] = 10884, - [SMALL_STATE(1268)] = 10960, - [SMALL_STATE(1269)] = 11048, - [SMALL_STATE(1270)] = 11118, - [SMALL_STATE(1271)] = 11190, - [SMALL_STATE(1272)] = 11256, - [SMALL_STATE(1273)] = 11322, - [SMALL_STATE(1274)] = 11400, - [SMALL_STATE(1275)] = 11480, - [SMALL_STATE(1276)] = 11560, - [SMALL_STATE(1277)] = 11638, - [SMALL_STATE(1278)] = 11712, - [SMALL_STATE(1279)] = 11786, - [SMALL_STATE(1280)] = 11864, - [SMALL_STATE(1281)] = 11936, - [SMALL_STATE(1282)] = 12020, - [SMALL_STATE(1283)] = 12104, - [SMALL_STATE(1284)] = 12176, - [SMALL_STATE(1285)] = 12260, - [SMALL_STATE(1286)] = 12334, - [SMALL_STATE(1287)] = 12411, - [SMALL_STATE(1288)] = 12482, - [SMALL_STATE(1289)] = 12549, - [SMALL_STATE(1290)] = 12622, - [SMALL_STATE(1291)] = 12695, - [SMALL_STATE(1292)] = 12768, - [SMALL_STATE(1293)] = 12841, - [SMALL_STATE(1294)] = 12908, - [SMALL_STATE(1295)] = 12977, - [SMALL_STATE(1296)] = 13048, - [SMALL_STATE(1297)] = 13131, - [SMALL_STATE(1298)] = 13200, - [SMALL_STATE(1299)] = 13269, - [SMALL_STATE(1300)] = 13340, - [SMALL_STATE(1301)] = 13409, - [SMALL_STATE(1302)] = 13482, - [SMALL_STATE(1303)] = 13561, - [SMALL_STATE(1304)] = 13638, - [SMALL_STATE(1305)] = 13715, - [SMALL_STATE(1306)] = 13786, - [SMALL_STATE(1307)] = 13863, - [SMALL_STATE(1308)] = 13933, - [SMALL_STATE(1309)] = 14003, - [SMALL_STATE(1310)] = 14123, - [SMALL_STATE(1311)] = 14243, - [SMALL_STATE(1312)] = 14317, - [SMALL_STATE(1313)] = 14393, - [SMALL_STATE(1314)] = 14467, - [SMALL_STATE(1315)] = 14537, - [SMALL_STATE(1316)] = 14657, - [SMALL_STATE(1317)] = 14731, - [SMALL_STATE(1318)] = 14801, - [SMALL_STATE(1319)] = 14875, - [SMALL_STATE(1320)] = 14945, - [SMALL_STATE(1321)] = 15011, - [SMALL_STATE(1322)] = 15131, - [SMALL_STATE(1323)] = 15197, - [SMALL_STATE(1324)] = 15317, - [SMALL_STATE(1325)] = 15387, - [SMALL_STATE(1326)] = 15459, - [SMALL_STATE(1327)] = 15529, - [SMALL_STATE(1328)] = 15597, - [SMALL_STATE(1329)] = 15667, - [SMALL_STATE(1330)] = 15787, - [SMALL_STATE(1331)] = 15859, - [SMALL_STATE(1332)] = 15928, - [SMALL_STATE(1333)] = 16001, - [SMALL_STATE(1334)] = 16070, - [SMALL_STATE(1335)] = 16139, - [SMALL_STATE(1336)] = 16208, - [SMALL_STATE(1337)] = 16275, - [SMALL_STATE(1338)] = 16344, - [SMALL_STATE(1339)] = 16411, - [SMALL_STATE(1340)] = 16480, - [SMALL_STATE(1341)] = 16549, - [SMALL_STATE(1342)] = 16618, - [SMALL_STATE(1343)] = 16691, - [SMALL_STATE(1344)] = 16762, - [SMALL_STATE(1345)] = 16833, - [SMALL_STATE(1346)] = 16899, - [SMALL_STATE(1347)] = 17015, - [SMALL_STATE(1348)] = 17131, - [SMALL_STATE(1349)] = 17247, - [SMALL_STATE(1350)] = 17315, - [SMALL_STATE(1351)] = 17431, - [SMALL_STATE(1352)] = 17499, - [SMALL_STATE(1353)] = 17615, - [SMALL_STATE(1354)] = 17731, - [SMALL_STATE(1355)] = 17847, - [SMALL_STATE(1356)] = 17963, - [SMALL_STATE(1357)] = 18031, - [SMALL_STATE(1358)] = 18099, - [SMALL_STATE(1359)] = 18215, - [SMALL_STATE(1360)] = 18331, - [SMALL_STATE(1361)] = 18447, - [SMALL_STATE(1362)] = 18515, - [SMALL_STATE(1363)] = 18631, - [SMALL_STATE(1364)] = 18699, - [SMALL_STATE(1365)] = 18815, - [SMALL_STATE(1366)] = 18883, - [SMALL_STATE(1367)] = 18951, - [SMALL_STATE(1368)] = 19067, - [SMALL_STATE(1369)] = 19135, - [SMALL_STATE(1370)] = 19201, - [SMALL_STATE(1371)] = 19269, - [SMALL_STATE(1372)] = 19337, - [SMALL_STATE(1373)] = 19453, - [SMALL_STATE(1374)] = 19523, - [SMALL_STATE(1375)] = 19591, - [SMALL_STATE(1376)] = 19659, - [SMALL_STATE(1377)] = 19727, - [SMALL_STATE(1378)] = 19843, - [SMALL_STATE(1379)] = 19959, - [SMALL_STATE(1380)] = 20075, - [SMALL_STATE(1381)] = 20143, - [SMALL_STATE(1382)] = 20211, - [SMALL_STATE(1383)] = 20279, - [SMALL_STATE(1384)] = 20347, - [SMALL_STATE(1385)] = 20415, - [SMALL_STATE(1386)] = 20483, - [SMALL_STATE(1387)] = 20551, - [SMALL_STATE(1388)] = 20616, - [SMALL_STATE(1389)] = 20681, - [SMALL_STATE(1390)] = 20746, - [SMALL_STATE(1391)] = 20811, - [SMALL_STATE(1392)] = 20876, - [SMALL_STATE(1393)] = 20941, - [SMALL_STATE(1394)] = 21006, - [SMALL_STATE(1395)] = 21071, - [SMALL_STATE(1396)] = 21136, - [SMALL_STATE(1397)] = 21248, - [SMALL_STATE(1398)] = 21360, - [SMALL_STATE(1399)] = 21472, - [SMALL_STATE(1400)] = 21584, - [SMALL_STATE(1401)] = 21696, - [SMALL_STATE(1402)] = 21808, - [SMALL_STATE(1403)] = 21920, - [SMALL_STATE(1404)] = 22031, - [SMALL_STATE(1405)] = 22150, - [SMALL_STATE(1406)] = 22261, - [SMALL_STATE(1407)] = 22372, - [SMALL_STATE(1408)] = 22483, - [SMALL_STATE(1409)] = 22594, - [SMALL_STATE(1410)] = 22705, - [SMALL_STATE(1411)] = 22824, - [SMALL_STATE(1412)] = 22935, - [SMALL_STATE(1413)] = 23054, - [SMALL_STATE(1414)] = 23165, - [SMALL_STATE(1415)] = 23284, - [SMALL_STATE(1416)] = 23395, - [SMALL_STATE(1417)] = 23506, - [SMALL_STATE(1418)] = 23625, - [SMALL_STATE(1419)] = 23736, - [SMALL_STATE(1420)] = 23838, - [SMALL_STATE(1421)] = 23940, - [SMALL_STATE(1422)] = 24042, - [SMALL_STATE(1423)] = 24144, - [SMALL_STATE(1424)] = 24246, - [SMALL_STATE(1425)] = 24348, - [SMALL_STATE(1426)] = 24450, - [SMALL_STATE(1427)] = 24561, - [SMALL_STATE(1428)] = 24670, - [SMALL_STATE(1429)] = 24727, - [SMALL_STATE(1430)] = 24784, - [SMALL_STATE(1431)] = 24856, - [SMALL_STATE(1432)] = 24922, - [SMALL_STATE(1433)] = 24988, - [SMALL_STATE(1434)] = 25054, - [SMALL_STATE(1435)] = 25148, - [SMALL_STATE(1436)] = 25212, - [SMALL_STATE(1437)] = 25269, - [SMALL_STATE(1438)] = 25324, - [SMALL_STATE(1439)] = 25379, - [SMALL_STATE(1440)] = 25438, - [SMALL_STATE(1441)] = 25499, - [SMALL_STATE(1442)] = 25558, - [SMALL_STATE(1443)] = 25619, - [SMALL_STATE(1444)] = 25680, - [SMALL_STATE(1445)] = 25741, - [SMALL_STATE(1446)] = 25796, - [SMALL_STATE(1447)] = 25851, - [SMALL_STATE(1448)] = 25912, - [SMALL_STATE(1449)] = 25967, - [SMALL_STATE(1450)] = 26024, - [SMALL_STATE(1451)] = 26081, - [SMALL_STATE(1452)] = 26136, - [SMALL_STATE(1453)] = 26195, - [SMALL_STATE(1454)] = 26250, - [SMALL_STATE(1455)] = 26362, - [SMALL_STATE(1456)] = 26416, - [SMALL_STATE(1457)] = 26472, - [SMALL_STATE(1458)] = 26526, - [SMALL_STATE(1459)] = 26586, - [SMALL_STATE(1460)] = 26640, - [SMALL_STATE(1461)] = 26694, - [SMALL_STATE(1462)] = 26748, - [SMALL_STATE(1463)] = 26802, - [SMALL_STATE(1464)] = 26856, - [SMALL_STATE(1465)] = 26912, - [SMALL_STATE(1466)] = 26966, - [SMALL_STATE(1467)] = 27020, - [SMALL_STATE(1468)] = 27074, - [SMALL_STATE(1469)] = 27136, - [SMALL_STATE(1470)] = 27190, - [SMALL_STATE(1471)] = 27244, - [SMALL_STATE(1472)] = 27298, - [SMALL_STATE(1473)] = 27352, - [SMALL_STATE(1474)] = 27406, - [SMALL_STATE(1475)] = 27460, - [SMALL_STATE(1476)] = 27514, - [SMALL_STATE(1477)] = 27568, - [SMALL_STATE(1478)] = 27622, - [SMALL_STATE(1479)] = 27676, - [SMALL_STATE(1480)] = 27750, - [SMALL_STATE(1481)] = 27804, - [SMALL_STATE(1482)] = 27858, - [SMALL_STATE(1483)] = 27912, - [SMALL_STATE(1484)] = 27966, - [SMALL_STATE(1485)] = 28020, - [SMALL_STATE(1486)] = 28080, - [SMALL_STATE(1487)] = 28140, - [SMALL_STATE(1488)] = 28200, - [SMALL_STATE(1489)] = 28280, - [SMALL_STATE(1490)] = 28334, - [SMALL_STATE(1491)] = 28446, - [SMALL_STATE(1492)] = 28500, - [SMALL_STATE(1493)] = 28560, - [SMALL_STATE(1494)] = 28614, - [SMALL_STATE(1495)] = 28668, - [SMALL_STATE(1496)] = 28722, - [SMALL_STATE(1497)] = 28776, - [SMALL_STATE(1498)] = 28830, - [SMALL_STATE(1499)] = 28884, - [SMALL_STATE(1500)] = 28938, - [SMALL_STATE(1501)] = 28994, - [SMALL_STATE(1502)] = 29048, - [SMALL_STATE(1503)] = 29120, - [SMALL_STATE(1504)] = 29174, - [SMALL_STATE(1505)] = 29228, - [SMALL_STATE(1506)] = 29282, - [SMALL_STATE(1507)] = 29368, - [SMALL_STATE(1508)] = 29480, - [SMALL_STATE(1509)] = 29592, - [SMALL_STATE(1510)] = 29646, - [SMALL_STATE(1511)] = 29700, - [SMALL_STATE(1512)] = 29820, - [SMALL_STATE(1513)] = 29874, - [SMALL_STATE(1514)] = 29932, - [SMALL_STATE(1515)] = 29986, - [SMALL_STATE(1516)] = 30040, - [SMALL_STATE(1517)] = 30094, - [SMALL_STATE(1518)] = 30148, - [SMALL_STATE(1519)] = 30260, - [SMALL_STATE(1520)] = 30314, - [SMALL_STATE(1521)] = 30368, - [SMALL_STATE(1522)] = 30422, - [SMALL_STATE(1523)] = 30480, - [SMALL_STATE(1524)] = 30534, - [SMALL_STATE(1525)] = 30588, - [SMALL_STATE(1526)] = 30700, - [SMALL_STATE(1527)] = 30754, - [SMALL_STATE(1528)] = 30866, - [SMALL_STATE(1529)] = 30920, - [SMALL_STATE(1530)] = 30974, - [SMALL_STATE(1531)] = 31060, - [SMALL_STATE(1532)] = 31120, - [SMALL_STATE(1533)] = 31240, - [SMALL_STATE(1534)] = 31296, - [SMALL_STATE(1535)] = 31372, - [SMALL_STATE(1536)] = 31428, - [SMALL_STATE(1537)] = 31488, - [SMALL_STATE(1538)] = 31600, - [SMALL_STATE(1539)] = 31700, - [SMALL_STATE(1540)] = 31754, - [SMALL_STATE(1541)] = 31808, - [SMALL_STATE(1542)] = 31910, - [SMALL_STATE(1543)] = 31992, - [SMALL_STATE(1544)] = 32086, - [SMALL_STATE(1545)] = 32182, - [SMALL_STATE(1546)] = 32236, - [SMALL_STATE(1547)] = 32290, - [SMALL_STATE(1548)] = 32388, - [SMALL_STATE(1549)] = 32468, - [SMALL_STATE(1550)] = 32554, - [SMALL_STATE(1551)] = 32608, - [SMALL_STATE(1552)] = 32690, - [SMALL_STATE(1553)] = 32776, - [SMALL_STATE(1554)] = 32832, - [SMALL_STATE(1555)] = 32886, - [SMALL_STATE(1556)] = 32942, - [SMALL_STATE(1557)] = 32996, - [SMALL_STATE(1558)] = 33086, - [SMALL_STATE(1559)] = 33190, - [SMALL_STATE(1560)] = 33250, - [SMALL_STATE(1561)] = 33362, - [SMALL_STATE(1562)] = 33474, - [SMALL_STATE(1563)] = 33594, - [SMALL_STATE(1564)] = 33654, - [SMALL_STATE(1565)] = 33714, - [SMALL_STATE(1566)] = 33770, - [SMALL_STATE(1567)] = 33824, - [SMALL_STATE(1568)] = 33910, - [SMALL_STATE(1569)] = 33964, - [SMALL_STATE(1570)] = 34018, - [SMALL_STATE(1571)] = 34072, - [SMALL_STATE(1572)] = 34128, - [SMALL_STATE(1573)] = 34240, - [SMALL_STATE(1574)] = 34352, - [SMALL_STATE(1575)] = 34464, - [SMALL_STATE(1576)] = 34576, - [SMALL_STATE(1577)] = 34632, - [SMALL_STATE(1578)] = 34686, - [SMALL_STATE(1579)] = 34798, - [SMALL_STATE(1580)] = 34852, - [SMALL_STATE(1581)] = 34906, - [SMALL_STATE(1582)] = 34962, - [SMALL_STATE(1583)] = 35016, - [SMALL_STATE(1584)] = 35070, - [SMALL_STATE(1585)] = 35124, - [SMALL_STATE(1586)] = 35186, - [SMALL_STATE(1587)] = 35246, - [SMALL_STATE(1588)] = 35306, - [SMALL_STATE(1589)] = 35362, - [SMALL_STATE(1590)] = 35448, - [SMALL_STATE(1591)] = 35504, - [SMALL_STATE(1592)] = 35566, - [SMALL_STATE(1593)] = 35628, - [SMALL_STATE(1594)] = 35686, - [SMALL_STATE(1595)] = 35740, - [SMALL_STATE(1596)] = 35794, - [SMALL_STATE(1597)] = 35852, - [SMALL_STATE(1598)] = 35906, - [SMALL_STATE(1599)] = 35960, - [SMALL_STATE(1600)] = 36080, - [SMALL_STATE(1601)] = 36134, - [SMALL_STATE(1602)] = 36188, - [SMALL_STATE(1603)] = 36242, - [SMALL_STATE(1604)] = 36300, - [SMALL_STATE(1605)] = 36354, - [SMALL_STATE(1606)] = 36408, - [SMALL_STATE(1607)] = 36462, - [SMALL_STATE(1608)] = 36516, - [SMALL_STATE(1609)] = 36570, - [SMALL_STATE(1610)] = 36624, - [SMALL_STATE(1611)] = 36678, - [SMALL_STATE(1612)] = 36734, - [SMALL_STATE(1613)] = 36788, - [SMALL_STATE(1614)] = 36842, - [SMALL_STATE(1615)] = 36895, - [SMALL_STATE(1616)] = 36988, - [SMALL_STATE(1617)] = 37049, - [SMALL_STATE(1618)] = 37144, - [SMALL_STATE(1619)] = 37259, - [SMALL_STATE(1620)] = 37312, - [SMALL_STATE(1621)] = 37365, - [SMALL_STATE(1622)] = 37476, - [SMALL_STATE(1623)] = 37529, - [SMALL_STATE(1624)] = 37582, - [SMALL_STATE(1625)] = 37679, - [SMALL_STATE(1626)] = 37792, - [SMALL_STATE(1627)] = 37845, - [SMALL_STATE(1628)] = 37924, - [SMALL_STATE(1629)] = 37977, - [SMALL_STATE(1630)] = 38058, - [SMALL_STATE(1631)] = 38111, - [SMALL_STATE(1632)] = 38164, - [SMALL_STATE(1633)] = 38241, - [SMALL_STATE(1634)] = 38294, - [SMALL_STATE(1635)] = 38347, - [SMALL_STATE(1636)] = 38420, - [SMALL_STATE(1637)] = 38499, - [SMALL_STATE(1638)] = 38610, - [SMALL_STATE(1639)] = 38663, - [SMALL_STATE(1640)] = 38716, - [SMALL_STATE(1641)] = 38795, - [SMALL_STATE(1642)] = 38848, - [SMALL_STATE(1643)] = 38901, - [SMALL_STATE(1644)] = 38954, - [SMALL_STATE(1645)] = 39025, - [SMALL_STATE(1646)] = 39078, - [SMALL_STATE(1647)] = 39131, - [SMALL_STATE(1648)] = 39184, - [SMALL_STATE(1649)] = 39237, - [SMALL_STATE(1650)] = 39292, - [SMALL_STATE(1651)] = 39345, - [SMALL_STATE(1652)] = 39456, - [SMALL_STATE(1653)] = 39571, - [SMALL_STATE(1654)] = 39628, - [SMALL_STATE(1655)] = 39681, - [SMALL_STATE(1656)] = 39758, - [SMALL_STATE(1657)] = 39811, - [SMALL_STATE(1658)] = 39922, - [SMALL_STATE(1659)] = 39999, - [SMALL_STATE(1660)] = 40084, - [SMALL_STATE(1661)] = 40195, - [SMALL_STATE(1662)] = 40274, - [SMALL_STATE(1663)] = 40353, - [SMALL_STATE(1664)] = 40428, - [SMALL_STATE(1665)] = 40483, - [SMALL_STATE(1666)] = 40582, - [SMALL_STATE(1667)] = 40661, - [SMALL_STATE(1668)] = 40772, - [SMALL_STATE(1669)] = 40831, - [SMALL_STATE(1670)] = 40946, - [SMALL_STATE(1671)] = 41005, - [SMALL_STATE(1672)] = 41116, - [SMALL_STATE(1673)] = 41217, - [SMALL_STATE(1674)] = 41298, - [SMALL_STATE(1675)] = 41391, - [SMALL_STATE(1676)] = 41486, - [SMALL_STATE(1677)] = 41539, - [SMALL_STATE(1678)] = 41592, - [SMALL_STATE(1679)] = 41645, - [SMALL_STATE(1680)] = 41698, - [SMALL_STATE(1681)] = 41795, - [SMALL_STATE(1682)] = 41874, - [SMALL_STATE(1683)] = 41927, - [SMALL_STATE(1684)] = 41980, - [SMALL_STATE(1685)] = 42033, - [SMALL_STATE(1686)] = 42086, - [SMALL_STATE(1687)] = 42139, - [SMALL_STATE(1688)] = 42192, - [SMALL_STATE(1689)] = 42273, - [SMALL_STATE(1690)] = 42326, - [SMALL_STATE(1691)] = 42379, - [SMALL_STATE(1692)] = 42442, - [SMALL_STATE(1693)] = 42505, - [SMALL_STATE(1694)] = 42568, - [SMALL_STATE(1695)] = 42621, - [SMALL_STATE(1696)] = 42732, - [SMALL_STATE(1697)] = 42787, - [SMALL_STATE(1698)] = 42844, - [SMALL_STATE(1699)] = 42921, - [SMALL_STATE(1700)] = 42992, - [SMALL_STATE(1701)] = 43045, - [SMALL_STATE(1702)] = 43098, - [SMALL_STATE(1703)] = 43151, - [SMALL_STATE(1704)] = 43230, - [SMALL_STATE(1705)] = 43283, - [SMALL_STATE(1706)] = 43398, - [SMALL_STATE(1707)] = 43453, - [SMALL_STATE(1708)] = 43510, - [SMALL_STATE(1709)] = 43563, - [SMALL_STATE(1710)] = 43644, - [SMALL_STATE(1711)] = 43697, - [SMALL_STATE(1712)] = 43750, - [SMALL_STATE(1713)] = 43803, - [SMALL_STATE(1714)] = 43856, - [SMALL_STATE(1715)] = 43909, - [SMALL_STATE(1716)] = 43962, - [SMALL_STATE(1717)] = 44017, - [SMALL_STATE(1718)] = 44106, - [SMALL_STATE(1719)] = 44159, - [SMALL_STATE(1720)] = 44228, - [SMALL_STATE(1721)] = 44339, - [SMALL_STATE(1722)] = 44392, - [SMALL_STATE(1723)] = 44495, - [SMALL_STATE(1724)] = 44548, - [SMALL_STATE(1725)] = 44601, - [SMALL_STATE(1726)] = 44654, - [SMALL_STATE(1727)] = 44707, - [SMALL_STATE(1728)] = 44780, - [SMALL_STATE(1729)] = 44833, - [SMALL_STATE(1730)] = 44886, - [SMALL_STATE(1731)] = 44939, - [SMALL_STATE(1732)] = 44992, - [SMALL_STATE(1733)] = 45045, - [SMALL_STATE(1734)] = 45126, - [SMALL_STATE(1735)] = 45179, - [SMALL_STATE(1736)] = 45290, - [SMALL_STATE(1737)] = 45343, - [SMALL_STATE(1738)] = 45454, - [SMALL_STATE(1739)] = 45565, - [SMALL_STATE(1740)] = 45676, - [SMALL_STATE(1741)] = 45787, - [SMALL_STATE(1742)] = 45872, - [SMALL_STATE(1743)] = 45983, - [SMALL_STATE(1744)] = 46060, - [SMALL_STATE(1745)] = 46113, - [SMALL_STATE(1746)] = 46166, - [SMALL_STATE(1747)] = 46255, - [SMALL_STATE(1748)] = 46370, - [SMALL_STATE(1749)] = 46473, - [SMALL_STATE(1750)] = 46552, - [SMALL_STATE(1751)] = 46667, - [SMALL_STATE(1752)] = 46780, - [SMALL_STATE(1753)] = 46891, - [SMALL_STATE(1754)] = 46944, - [SMALL_STATE(1755)] = 46997, - [SMALL_STATE(1756)] = 47076, - [SMALL_STATE(1757)] = 47129, - [SMALL_STATE(1758)] = 47182, - [SMALL_STATE(1759)] = 47235, - [SMALL_STATE(1760)] = 47346, - [SMALL_STATE(1761)] = 47457, - [SMALL_STATE(1762)] = 47516, - [SMALL_STATE(1763)] = 47627, - [SMALL_STATE(1764)] = 47680, - [SMALL_STATE(1765)] = 47791, - [SMALL_STATE(1766)] = 47844, - [SMALL_STATE(1767)] = 47955, - [SMALL_STATE(1768)] = 48008, - [SMALL_STATE(1769)] = 48119, - [SMALL_STATE(1770)] = 48172, - [SMALL_STATE(1771)] = 48251, - [SMALL_STATE(1772)] = 48304, - [SMALL_STATE(1773)] = 48415, - [SMALL_STATE(1774)] = 48526, - [SMALL_STATE(1775)] = 48579, - [SMALL_STATE(1776)] = 48632, - [SMALL_STATE(1777)] = 48685, - [SMALL_STATE(1778)] = 48738, - [SMALL_STATE(1779)] = 48849, - [SMALL_STATE(1780)] = 48960, - [SMALL_STATE(1781)] = 49071, - [SMALL_STATE(1782)] = 49124, - [SMALL_STATE(1783)] = 49177, - [SMALL_STATE(1784)] = 49288, - [SMALL_STATE(1785)] = 49341, - [SMALL_STATE(1786)] = 49394, - [SMALL_STATE(1787)] = 49469, - [SMALL_STATE(1788)] = 49568, - [SMALL_STATE(1789)] = 49683, - [SMALL_STATE(1790)] = 49784, - [SMALL_STATE(1791)] = 49895, - [SMALL_STATE(1792)] = 49955, - [SMALL_STATE(1793)] = 50065, - [SMALL_STATE(1794)] = 50175, - [SMALL_STATE(1795)] = 50233, - [SMALL_STATE(1796)] = 50291, - [SMALL_STATE(1797)] = 50405, - [SMALL_STATE(1798)] = 50457, - [SMALL_STATE(1799)] = 50515, - [SMALL_STATE(1800)] = 50571, - [SMALL_STATE(1801)] = 50629, - [SMALL_STATE(1802)] = 50681, - [SMALL_STATE(1803)] = 50795, - [SMALL_STATE(1804)] = 50905, - [SMALL_STATE(1805)] = 51019, - [SMALL_STATE(1806)] = 51079, - [SMALL_STATE(1807)] = 51189, - [SMALL_STATE(1808)] = 51303, - [SMALL_STATE(1809)] = 51355, - [SMALL_STATE(1810)] = 51427, - [SMALL_STATE(1811)] = 51481, - [SMALL_STATE(1812)] = 51535, - [SMALL_STATE(1813)] = 51593, - [SMALL_STATE(1814)] = 51665, - [SMALL_STATE(1815)] = 51775, - [SMALL_STATE(1816)] = 51829, - [SMALL_STATE(1817)] = 51883, - [SMALL_STATE(1818)] = 51937, - [SMALL_STATE(1819)] = 51993, - [SMALL_STATE(1820)] = 52049, - [SMALL_STATE(1821)] = 52105, - [SMALL_STATE(1822)] = 52215, - [SMALL_STATE(1823)] = 52275, - [SMALL_STATE(1824)] = 52335, - [SMALL_STATE(1825)] = 52409, - [SMALL_STATE(1826)] = 52521, - [SMALL_STATE(1827)] = 52583, - [SMALL_STATE(1828)] = 52645, - [SMALL_STATE(1829)] = 52755, - [SMALL_STATE(1830)] = 52869, - [SMALL_STATE(1831)] = 52921, - [SMALL_STATE(1832)] = 52981, - [SMALL_STATE(1833)] = 53095, - [SMALL_STATE(1834)] = 53209, - [SMALL_STATE(1835)] = 53323, - [SMALL_STATE(1836)] = 53395, - [SMALL_STATE(1837)] = 53509, - [SMALL_STATE(1838)] = 53623, - [SMALL_STATE(1839)] = 53683, - [SMALL_STATE(1840)] = 53797, - [SMALL_STATE(1841)] = 53869, - [SMALL_STATE(1842)] = 53927, - [SMALL_STATE(1843)] = 54041, - [SMALL_STATE(1844)] = 54113, - [SMALL_STATE(1845)] = 54227, - [SMALL_STATE(1846)] = 54341, - [SMALL_STATE(1847)] = 54455, - [SMALL_STATE(1848)] = 54569, - [SMALL_STATE(1849)] = 54683, - [SMALL_STATE(1850)] = 54797, - [SMALL_STATE(1851)] = 54911, - [SMALL_STATE(1852)] = 55025, - [SMALL_STATE(1853)] = 55099, - [SMALL_STATE(1854)] = 55213, - [SMALL_STATE(1855)] = 55265, - [SMALL_STATE(1856)] = 55343, - [SMALL_STATE(1857)] = 55457, - [SMALL_STATE(1858)] = 55567, - [SMALL_STATE(1859)] = 55677, - [SMALL_STATE(1860)] = 55787, - [SMALL_STATE(1861)] = 55897, - [SMALL_STATE(1862)] = 56007, - [SMALL_STATE(1863)] = 56091, - [SMALL_STATE(1864)] = 56165, - [SMALL_STATE(1865)] = 56263, - [SMALL_STATE(1866)] = 56363, - [SMALL_STATE(1867)] = 56443, - [SMALL_STATE(1868)] = 56535, - [SMALL_STATE(1869)] = 56629, - [SMALL_STATE(1870)] = 56725, - [SMALL_STATE(1871)] = 56803, - [SMALL_STATE(1872)] = 56883, - [SMALL_STATE(1873)] = 56971, - [SMALL_STATE(1874)] = 57073, - [SMALL_STATE(1875)] = 57183, - [SMALL_STATE(1876)] = 57293, - [SMALL_STATE(1877)] = 57403, - [SMALL_STATE(1878)] = 57513, - [SMALL_STATE(1879)] = 57623, - [SMALL_STATE(1880)] = 57733, - [SMALL_STATE(1881)] = 57843, - [SMALL_STATE(1882)] = 57953, - [SMALL_STATE(1883)] = 58067, - [SMALL_STATE(1884)] = 58181, - [SMALL_STATE(1885)] = 58295, - [SMALL_STATE(1886)] = 58409, - [SMALL_STATE(1887)] = 58523, - [SMALL_STATE(1888)] = 58637, - [SMALL_STATE(1889)] = 58709, - [SMALL_STATE(1890)] = 58787, - [SMALL_STATE(1891)] = 58857, - [SMALL_STATE(1892)] = 58912, - [SMALL_STATE(1893)] = 58969, - [SMALL_STATE(1894)] = 59020, - [SMALL_STATE(1895)] = 59071, - [SMALL_STATE(1896)] = 59128, - [SMALL_STATE(1897)] = 59179, - [SMALL_STATE(1898)] = 59230, - [SMALL_STATE(1899)] = 59281, - [SMALL_STATE(1900)] = 59332, - [SMALL_STATE(1901)] = 59383, - [SMALL_STATE(1902)] = 59434, - [SMALL_STATE(1903)] = 59485, - [SMALL_STATE(1904)] = 59536, - [SMALL_STATE(1905)] = 59587, - [SMALL_STATE(1906)] = 59638, - [SMALL_STATE(1907)] = 59689, - [SMALL_STATE(1908)] = 59740, - [SMALL_STATE(1909)] = 59791, - [SMALL_STATE(1910)] = 59842, - [SMALL_STATE(1911)] = 59893, - [SMALL_STATE(1912)] = 59944, - [SMALL_STATE(1913)] = 59995, - [SMALL_STATE(1914)] = 60046, - [SMALL_STATE(1915)] = 60097, - [SMALL_STATE(1916)] = 60148, - [SMALL_STATE(1917)] = 60199, - [SMALL_STATE(1918)] = 60250, - [SMALL_STATE(1919)] = 60301, - [SMALL_STATE(1920)] = 60352, - [SMALL_STATE(1921)] = 60403, - [SMALL_STATE(1922)] = 60454, - [SMALL_STATE(1923)] = 60505, - [SMALL_STATE(1924)] = 60562, - [SMALL_STATE(1925)] = 60617, - [SMALL_STATE(1926)] = 60726, - [SMALL_STATE(1927)] = 60809, - [SMALL_STATE(1928)] = 60866, - [SMALL_STATE(1929)] = 60919, - [SMALL_STATE(1930)] = 60970, - [SMALL_STATE(1931)] = 61033, - [SMALL_STATE(1932)] = 61086, - [SMALL_STATE(1933)] = 61137, - [SMALL_STATE(1934)] = 61200, - [SMALL_STATE(1935)] = 61253, - [SMALL_STATE(1936)] = 61304, - [SMALL_STATE(1937)] = 61355, - [SMALL_STATE(1938)] = 61406, - [SMALL_STATE(1939)] = 61459, - [SMALL_STATE(1940)] = 61516, - [SMALL_STATE(1941)] = 61573, - [SMALL_STATE(1942)] = 61630, - [SMALL_STATE(1943)] = 61683, - [SMALL_STATE(1944)] = 61736, - [SMALL_STATE(1945)] = 61819, - [SMALL_STATE(1946)] = 61876, - [SMALL_STATE(1947)] = 61935, - [SMALL_STATE(1948)] = 61986, - [SMALL_STATE(1949)] = 62059, - [SMALL_STATE(1950)] = 62168, - [SMALL_STATE(1951)] = 62227, - [SMALL_STATE(1952)] = 62284, - [SMALL_STATE(1953)] = 62339, - [SMALL_STATE(1954)] = 62396, - [SMALL_STATE(1955)] = 62469, - [SMALL_STATE(1956)] = 62538, - [SMALL_STATE(1957)] = 62595, - [SMALL_STATE(1958)] = 62668, - [SMALL_STATE(1959)] = 62737, - [SMALL_STATE(1960)] = 62796, - [SMALL_STATE(1961)] = 62869, - [SMALL_STATE(1962)] = 62932, - [SMALL_STATE(1963)] = 62995, - [SMALL_STATE(1964)] = 63078, - [SMALL_STATE(1965)] = 63141, - [SMALL_STATE(1966)] = 63204, - [SMALL_STATE(1967)] = 63257, - [SMALL_STATE(1968)] = 63310, - [SMALL_STATE(1969)] = 63393, - [SMALL_STATE(1970)] = 63458, - [SMALL_STATE(1971)] = 63523, - [SMALL_STATE(1972)] = 63606, - [SMALL_STATE(1973)] = 63663, - [SMALL_STATE(1974)] = 63720, - [SMALL_STATE(1975)] = 63777, - [SMALL_STATE(1976)] = 63832, - [SMALL_STATE(1977)] = 63883, - [SMALL_STATE(1978)] = 63936, - [SMALL_STATE(1979)] = 63989, - [SMALL_STATE(1980)] = 64062, - [SMALL_STATE(1981)] = 64119, - [SMALL_STATE(1982)] = 64172, - [SMALL_STATE(1983)] = 64281, - [SMALL_STATE(1984)] = 64390, - [SMALL_STATE(1985)] = 64499, - [SMALL_STATE(1986)] = 64552, - [SMALL_STATE(1987)] = 64661, - [SMALL_STATE(1988)] = 64712, - [SMALL_STATE(1989)] = 64821, - [SMALL_STATE(1990)] = 64930, - [SMALL_STATE(1991)] = 65013, - [SMALL_STATE(1992)] = 65076, - [SMALL_STATE(1993)] = 65149, - [SMALL_STATE(1994)] = 65212, - [SMALL_STATE(1995)] = 65309, - [SMALL_STATE(1996)] = 65408, - [SMALL_STATE(1997)] = 65487, - [SMALL_STATE(1998)] = 65578, - [SMALL_STATE(1999)] = 65671, - [SMALL_STATE(2000)] = 65766, - [SMALL_STATE(2001)] = 65843, - [SMALL_STATE(2002)] = 65922, - [SMALL_STATE(2003)] = 66009, - [SMALL_STATE(2004)] = 66110, - [SMALL_STATE(2005)] = 66161, - [SMALL_STATE(2006)] = 66270, - [SMALL_STATE(2007)] = 66379, - [SMALL_STATE(2008)] = 66430, - [SMALL_STATE(2009)] = 66489, - [SMALL_STATE(2010)] = 66598, - [SMALL_STATE(2011)] = 66707, - [SMALL_STATE(2012)] = 66816, - [SMALL_STATE(2013)] = 66925, - [SMALL_STATE(2014)] = 67034, - [SMALL_STATE(2015)] = 67085, - [SMALL_STATE(2016)] = 67138, - [SMALL_STATE(2017)] = 67189, - [SMALL_STATE(2018)] = 67300, - [SMALL_STATE(2019)] = 67369, - [SMALL_STATE(2020)] = 67420, - [SMALL_STATE(2021)] = 67477, - [SMALL_STATE(2022)] = 67530, - [SMALL_STATE(2023)] = 67581, - [SMALL_STATE(2024)] = 67692, - [SMALL_STATE(2025)] = 67743, - [SMALL_STATE(2026)] = 67800, - [SMALL_STATE(2027)] = 67909, - [SMALL_STATE(2028)] = 67966, - [SMALL_STATE(2029)] = 68075, - [SMALL_STATE(2030)] = 68128, - [SMALL_STATE(2031)] = 68181, - [SMALL_STATE(2032)] = 68238, - [SMALL_STATE(2033)] = 68289, - [SMALL_STATE(2034)] = 68340, - [SMALL_STATE(2035)] = 68391, - [SMALL_STATE(2036)] = 68442, - [SMALL_STATE(2037)] = 68525, - [SMALL_STATE(2038)] = 68576, - [SMALL_STATE(2039)] = 68629, - [SMALL_STATE(2040)] = 68712, - [SMALL_STATE(2041)] = 68783, - [SMALL_STATE(2042)] = 68860, - [SMALL_STATE(2043)] = 68969, - [SMALL_STATE(2044)] = 69038, - [SMALL_STATE(2045)] = 69111, - [SMALL_STATE(2046)] = 69180, - [SMALL_STATE(2047)] = 69231, - [SMALL_STATE(2048)] = 69290, - [SMALL_STATE(2049)] = 69363, - [SMALL_STATE(2050)] = 69414, - [SMALL_STATE(2051)] = 69477, - [SMALL_STATE(2052)] = 69586, - [SMALL_STATE(2053)] = 69695, - [SMALL_STATE(2054)] = 69804, - [SMALL_STATE(2055)] = 69913, - [SMALL_STATE(2056)] = 70022, - [SMALL_STATE(2057)] = 70105, - [SMALL_STATE(2058)] = 70178, - [SMALL_STATE(2059)] = 70275, - [SMALL_STATE(2060)] = 70374, - [SMALL_STATE(2061)] = 70453, - [SMALL_STATE(2062)] = 70544, - [SMALL_STATE(2063)] = 70637, - [SMALL_STATE(2064)] = 70732, - [SMALL_STATE(2065)] = 70809, - [SMALL_STATE(2066)] = 70888, - [SMALL_STATE(2067)] = 70975, - [SMALL_STATE(2068)] = 71076, - [SMALL_STATE(2069)] = 71185, - [SMALL_STATE(2070)] = 71294, - [SMALL_STATE(2071)] = 71403, - [SMALL_STATE(2072)] = 71512, - [SMALL_STATE(2073)] = 71621, - [SMALL_STATE(2074)] = 71730, - [SMALL_STATE(2075)] = 71839, - [SMALL_STATE(2076)] = 71948, - [SMALL_STATE(2077)] = 71999, - [SMALL_STATE(2078)] = 72068, - [SMALL_STATE(2079)] = 72119, - [SMALL_STATE(2080)] = 72190, - [SMALL_STATE(2081)] = 72263, - [SMALL_STATE(2082)] = 72316, - [SMALL_STATE(2083)] = 72387, - [SMALL_STATE(2084)] = 72464, - [SMALL_STATE(2085)] = 72573, - [SMALL_STATE(2086)] = 72642, - [SMALL_STATE(2087)] = 72693, - [SMALL_STATE(2088)] = 72802, - [SMALL_STATE(2089)] = 72853, - [SMALL_STATE(2090)] = 72904, - [SMALL_STATE(2091)] = 72955, - [SMALL_STATE(2092)] = 73006, - [SMALL_STATE(2093)] = 73059, - [SMALL_STATE(2094)] = 73110, - [SMALL_STATE(2095)] = 73161, - [SMALL_STATE(2096)] = 73214, - [SMALL_STATE(2097)] = 73265, - [SMALL_STATE(2098)] = 73322, - [SMALL_STATE(2099)] = 73373, - [SMALL_STATE(2100)] = 73424, - [SMALL_STATE(2101)] = 73475, - [SMALL_STATE(2102)] = 73526, - [SMALL_STATE(2103)] = 73577, - [SMALL_STATE(2104)] = 73630, - [SMALL_STATE(2105)] = 73681, - [SMALL_STATE(2106)] = 73732, - [SMALL_STATE(2107)] = 73783, - [SMALL_STATE(2108)] = 73834, - [SMALL_STATE(2109)] = 73885, - [SMALL_STATE(2110)] = 73936, - [SMALL_STATE(2111)] = 73987, - [SMALL_STATE(2112)] = 74038, - [SMALL_STATE(2113)] = 74089, - [SMALL_STATE(2114)] = 74140, - [SMALL_STATE(2115)] = 74193, - [SMALL_STATE(2116)] = 74244, - [SMALL_STATE(2117)] = 74295, - [SMALL_STATE(2118)] = 74346, - [SMALL_STATE(2119)] = 74397, - [SMALL_STATE(2120)] = 74448, - [SMALL_STATE(2121)] = 74499, - [SMALL_STATE(2122)] = 74550, - [SMALL_STATE(2123)] = 74601, - [SMALL_STATE(2124)] = 74710, - [SMALL_STATE(2125)] = 74760, - [SMALL_STATE(2126)] = 74814, - [SMALL_STATE(2127)] = 74868, - [SMALL_STATE(2128)] = 74920, - [SMALL_STATE(2129)] = 74970, - [SMALL_STATE(2130)] = 75028, - [SMALL_STATE(2131)] = 75082, - [SMALL_STATE(2132)] = 75192, - [SMALL_STATE(2133)] = 75242, - [SMALL_STATE(2134)] = 75292, - [SMALL_STATE(2135)] = 75346, - [SMALL_STATE(2136)] = 75400, - [SMALL_STATE(2137)] = 75464, - [SMALL_STATE(2138)] = 75530, - [SMALL_STATE(2139)] = 75594, - [SMALL_STATE(2140)] = 75648, - [SMALL_STATE(2141)] = 75712, - [SMALL_STATE(2142)] = 75762, - [SMALL_STATE(2143)] = 75812, - [SMALL_STATE(2144)] = 75870, - [SMALL_STATE(2145)] = 75934, - [SMALL_STATE(2146)] = 75984, - [SMALL_STATE(2147)] = 76050, - [SMALL_STATE(2148)] = 76100, - [SMALL_STATE(2149)] = 76150, - [SMALL_STATE(2150)] = 76200, - [SMALL_STATE(2151)] = 76256, - [SMALL_STATE(2152)] = 76312, - [SMALL_STATE(2153)] = 76368, - [SMALL_STATE(2154)] = 76442, - [SMALL_STATE(2155)] = 76518, - [SMALL_STATE(2156)] = 76574, - [SMALL_STATE(2157)] = 76630, - [SMALL_STATE(2158)] = 76692, - [SMALL_STATE(2159)] = 76742, - [SMALL_STATE(2160)] = 76792, - [SMALL_STATE(2161)] = 76842, - [SMALL_STATE(2162)] = 76892, - [SMALL_STATE(2163)] = 76966, - [SMALL_STATE(2164)] = 77018, - [SMALL_STATE(2165)] = 77094, - [SMALL_STATE(2166)] = 77156, - [SMALL_STATE(2167)] = 77218, - [SMALL_STATE(2168)] = 77268, - [SMALL_STATE(2169)] = 77318, - [SMALL_STATE(2170)] = 77368, - [SMALL_STATE(2171)] = 77442, - [SMALL_STATE(2172)] = 77506, - [SMALL_STATE(2173)] = 77582, - [SMALL_STATE(2174)] = 77640, - [SMALL_STATE(2175)] = 77698, - [SMALL_STATE(2176)] = 77772, - [SMALL_STATE(2177)] = 77832, - [SMALL_STATE(2178)] = 77892, - [SMALL_STATE(2179)] = 77954, - [SMALL_STATE(2180)] = 78016, - [SMALL_STATE(2181)] = 78078, - [SMALL_STATE(2182)] = 78140, - [SMALL_STATE(2183)] = 78206, - [SMALL_STATE(2184)] = 78282, - [SMALL_STATE(2185)] = 78344, - [SMALL_STATE(2186)] = 78406, - [SMALL_STATE(2187)] = 78468, - [SMALL_STATE(2188)] = 78530, - [SMALL_STATE(2189)] = 78580, - [SMALL_STATE(2190)] = 78630, - [SMALL_STATE(2191)] = 78680, - [SMALL_STATE(2192)] = 78730, - [SMALL_STATE(2193)] = 78780, - [SMALL_STATE(2194)] = 78830, - [SMALL_STATE(2195)] = 78880, - [SMALL_STATE(2196)] = 78938, - [SMALL_STATE(2197)] = 78992, - [SMALL_STATE(2198)] = 79046, - [SMALL_STATE(2199)] = 79096, - [SMALL_STATE(2200)] = 79204, - [SMALL_STATE(2201)] = 79258, - [SMALL_STATE(2202)] = 79312, - [SMALL_STATE(2203)] = 79376, - [SMALL_STATE(2204)] = 79484, - [SMALL_STATE(2205)] = 79542, - [SMALL_STATE(2206)] = 79592, - [SMALL_STATE(2207)] = 79646, - [SMALL_STATE(2208)] = 79710, - [SMALL_STATE(2209)] = 79760, - [SMALL_STATE(2210)] = 79810, - [SMALL_STATE(2211)] = 79876, - [SMALL_STATE(2212)] = 79942, - [SMALL_STATE(2213)] = 80050, - [SMALL_STATE(2214)] = 80100, - [SMALL_STATE(2215)] = 80164, - [SMALL_STATE(2216)] = 80214, - [SMALL_STATE(2217)] = 80268, - [SMALL_STATE(2218)] = 80318, - [SMALL_STATE(2219)] = 80372, - [SMALL_STATE(2220)] = 80422, - [SMALL_STATE(2221)] = 80472, - [SMALL_STATE(2222)] = 80522, - [SMALL_STATE(2223)] = 80572, - [SMALL_STATE(2224)] = 80622, - [SMALL_STATE(2225)] = 80672, - [SMALL_STATE(2226)] = 80726, - [SMALL_STATE(2227)] = 80834, - [SMALL_STATE(2228)] = 80884, - [SMALL_STATE(2229)] = 80934, - [SMALL_STATE(2230)] = 80984, - [SMALL_STATE(2231)] = 81034, - [SMALL_STATE(2232)] = 81102, - [SMALL_STATE(2233)] = 81152, - [SMALL_STATE(2234)] = 81202, - [SMALL_STATE(2235)] = 81252, - [SMALL_STATE(2236)] = 81306, - [SMALL_STATE(2237)] = 81360, - [SMALL_STATE(2238)] = 81414, - [SMALL_STATE(2239)] = 81468, - [SMALL_STATE(2240)] = 81532, - [SMALL_STATE(2241)] = 81596, - [SMALL_STATE(2242)] = 81662, - [SMALL_STATE(2243)] = 81736, - [SMALL_STATE(2244)] = 81812, - [SMALL_STATE(2245)] = 81876, - [SMALL_STATE(2246)] = 81942, - [SMALL_STATE(2247)] = 82050, - [SMALL_STATE(2248)] = 82104, - [SMALL_STATE(2249)] = 82170, - [SMALL_STATE(2250)] = 82224, - [SMALL_STATE(2251)] = 82288, - [SMALL_STATE(2252)] = 82354, - [SMALL_STATE(2253)] = 82418, - [SMALL_STATE(2254)] = 82482, - [SMALL_STATE(2255)] = 82546, - [SMALL_STATE(2256)] = 82610, - [SMALL_STATE(2257)] = 82670, - [SMALL_STATE(2258)] = 82720, - [SMALL_STATE(2259)] = 82828, - [SMALL_STATE(2260)] = 82878, - [SMALL_STATE(2261)] = 82928, - [SMALL_STATE(2262)] = 82980, - [SMALL_STATE(2263)] = 83030, - [SMALL_STATE(2264)] = 83080, - [SMALL_STATE(2265)] = 83154, - [SMALL_STATE(2266)] = 83230, - [SMALL_STATE(2267)] = 83280, - [SMALL_STATE(2268)] = 83332, - [SMALL_STATE(2269)] = 83396, - [SMALL_STATE(2270)] = 83462, - [SMALL_STATE(2271)] = 83512, - [SMALL_STATE(2272)] = 83570, - [SMALL_STATE(2273)] = 83624, - [SMALL_STATE(2274)] = 83674, - [SMALL_STATE(2275)] = 83724, - [SMALL_STATE(2276)] = 83774, - [SMALL_STATE(2277)] = 83824, - [SMALL_STATE(2278)] = 83874, - [SMALL_STATE(2279)] = 83982, - [SMALL_STATE(2280)] = 84090, - [SMALL_STATE(2281)] = 84198, - [SMALL_STATE(2282)] = 84306, - [SMALL_STATE(2283)] = 84414, - [SMALL_STATE(2284)] = 84522, - [SMALL_STATE(2285)] = 84604, - [SMALL_STATE(2286)] = 84676, - [SMALL_STATE(2287)] = 84772, - [SMALL_STATE(2288)] = 84870, - [SMALL_STATE(2289)] = 84948, - [SMALL_STATE(2290)] = 85038, - [SMALL_STATE(2291)] = 85130, - [SMALL_STATE(2292)] = 85224, - [SMALL_STATE(2293)] = 85300, - [SMALL_STATE(2294)] = 85378, - [SMALL_STATE(2295)] = 85464, - [SMALL_STATE(2296)] = 85564, - [SMALL_STATE(2297)] = 85672, - [SMALL_STATE(2298)] = 85780, - [SMALL_STATE(2299)] = 85888, - [SMALL_STATE(2300)] = 85996, - [SMALL_STATE(2301)] = 86104, - [SMALL_STATE(2302)] = 86212, - [SMALL_STATE(2303)] = 86320, - [SMALL_STATE(2304)] = 86428, - [SMALL_STATE(2305)] = 86480, - [SMALL_STATE(2306)] = 86550, - [SMALL_STATE(2307)] = 86626, - [SMALL_STATE(2308)] = 86682, - [SMALL_STATE(2309)] = 86790, - [SMALL_STATE(2310)] = 86858, - [SMALL_STATE(2311)] = 86908, - [SMALL_STATE(2312)] = 86962, - [SMALL_STATE(2313)] = 87016, - [SMALL_STATE(2314)] = 87124, - [SMALL_STATE(2315)] = 87188, - [SMALL_STATE(2316)] = 87240, - [SMALL_STATE(2317)] = 87306, - [SMALL_STATE(2318)] = 87372, - [SMALL_STATE(2319)] = 87480, - [SMALL_STATE(2320)] = 87546, - [SMALL_STATE(2321)] = 87612, - [SMALL_STATE(2322)] = 87664, - [SMALL_STATE(2323)] = 87772, - [SMALL_STATE(2324)] = 87836, - [SMALL_STATE(2325)] = 87902, - [SMALL_STATE(2326)] = 87962, - [SMALL_STATE(2327)] = 88016, - [SMALL_STATE(2328)] = 88102, - [SMALL_STATE(2329)] = 88160, - [SMALL_STATE(2330)] = 88224, - [SMALL_STATE(2331)] = 88278, - [SMALL_STATE(2332)] = 88336, - [SMALL_STATE(2333)] = 88388, - [SMALL_STATE(2334)] = 88440, - [SMALL_STATE(2335)] = 88498, - [SMALL_STATE(2336)] = 88550, - [SMALL_STATE(2337)] = 88604, - [SMALL_STATE(2338)] = 88658, - [SMALL_STATE(2339)] = 88708, - [SMALL_STATE(2340)] = 88758, - [SMALL_STATE(2341)] = 88810, - [SMALL_STATE(2342)] = 88862, - [SMALL_STATE(2343)] = 88912, - [SMALL_STATE(2344)] = 88966, - [SMALL_STATE(2345)] = 89024, - [SMALL_STATE(2346)] = 89132, - [SMALL_STATE(2347)] = 89240, - [SMALL_STATE(2348)] = 89348, - [SMALL_STATE(2349)] = 89456, - [SMALL_STATE(2350)] = 89564, - [SMALL_STATE(2351)] = 89672, - [SMALL_STATE(2352)] = 89754, - [SMALL_STATE(2353)] = 89826, - [SMALL_STATE(2354)] = 89922, - [SMALL_STATE(2355)] = 90020, - [SMALL_STATE(2356)] = 90098, - [SMALL_STATE(2357)] = 90188, - [SMALL_STATE(2358)] = 90280, - [SMALL_STATE(2359)] = 90374, - [SMALL_STATE(2360)] = 90450, - [SMALL_STATE(2361)] = 90528, - [SMALL_STATE(2362)] = 90614, - [SMALL_STATE(2363)] = 90714, - [SMALL_STATE(2364)] = 90822, - [SMALL_STATE(2365)] = 90930, - [SMALL_STATE(2366)] = 91038, - [SMALL_STATE(2367)] = 91146, - [SMALL_STATE(2368)] = 91254, - [SMALL_STATE(2369)] = 91362, - [SMALL_STATE(2370)] = 91470, - [SMALL_STATE(2371)] = 91578, - [SMALL_STATE(2372)] = 91632, - [SMALL_STATE(2373)] = 91684, - [SMALL_STATE(2374)] = 91754, - [SMALL_STATE(2375)] = 91830, - [SMALL_STATE(2376)] = 91938, - [SMALL_STATE(2377)] = 92006, - [SMALL_STATE(2378)] = 92058, - [SMALL_STATE(2379)] = 92108, - [SMALL_STATE(2380)] = 92158, - [SMALL_STATE(2381)] = 92224, - [SMALL_STATE(2382)] = 92332, - [SMALL_STATE(2383)] = 92382, - [SMALL_STATE(2384)] = 92432, - [SMALL_STATE(2385)] = 92482, - [SMALL_STATE(2386)] = 92536, - [SMALL_STATE(2387)] = 92610, - [SMALL_STATE(2388)] = 92686, - [SMALL_STATE(2389)] = 92736, - [SMALL_STATE(2390)] = 92813, - [SMALL_STATE(2391)] = 92882, - [SMALL_STATE(2392)] = 92933, - [SMALL_STATE(2393)] = 92988, - [SMALL_STATE(2394)] = 93047, - [SMALL_STATE(2395)] = 93116, - [SMALL_STATE(2396)] = 93175, - [SMALL_STATE(2397)] = 93244, - [SMALL_STATE(2398)] = 93303, - [SMALL_STATE(2399)] = 93360, - [SMALL_STATE(2400)] = 93419, - [SMALL_STATE(2401)] = 93478, - [SMALL_STATE(2402)] = 93535, - [SMALL_STATE(2403)] = 93590, - [SMALL_STATE(2404)] = 93647, - [SMALL_STATE(2405)] = 93716, - [SMALL_STATE(2406)] = 93785, - [SMALL_STATE(2407)] = 93860, - [SMALL_STATE(2408)] = 93965, - [SMALL_STATE(2409)] = 94032, - [SMALL_STATE(2410)] = 94089, - [SMALL_STATE(2411)] = 94142, - [SMALL_STATE(2412)] = 94247, - [SMALL_STATE(2413)] = 94306, - [SMALL_STATE(2414)] = 94375, - [SMALL_STATE(2415)] = 94426, - [SMALL_STATE(2416)] = 94531, - [SMALL_STATE(2417)] = 94582, - [SMALL_STATE(2418)] = 94657, - [SMALL_STATE(2419)] = 94716, - [SMALL_STATE(2420)] = 94775, - [SMALL_STATE(2421)] = 94844, - [SMALL_STATE(2422)] = 94903, - [SMALL_STATE(2423)] = 94960, - [SMALL_STATE(2424)] = 95019, - [SMALL_STATE(2425)] = 95078, - [SMALL_STATE(2426)] = 95133, - [SMALL_STATE(2427)] = 95192, - [SMALL_STATE(2428)] = 95247, - [SMALL_STATE(2429)] = 95298, - [SMALL_STATE(2430)] = 95403, - [SMALL_STATE(2431)] = 95508, - [SMALL_STATE(2432)] = 95613, - [SMALL_STATE(2433)] = 95718, - [SMALL_STATE(2434)] = 95823, - [SMALL_STATE(2435)] = 95904, - [SMALL_STATE(2436)] = 95975, - [SMALL_STATE(2437)] = 96064, - [SMALL_STATE(2438)] = 96159, - [SMALL_STATE(2439)] = 96256, - [SMALL_STATE(2440)] = 96333, - [SMALL_STATE(2441)] = 96422, - [SMALL_STATE(2442)] = 96513, - [SMALL_STATE(2443)] = 96606, - [SMALL_STATE(2444)] = 96681, - [SMALL_STATE(2445)] = 96758, - [SMALL_STATE(2446)] = 96843, - [SMALL_STATE(2447)] = 96942, - [SMALL_STATE(2448)] = 97047, - [SMALL_STATE(2449)] = 97152, - [SMALL_STATE(2450)] = 97211, - [SMALL_STATE(2451)] = 97316, - [SMALL_STATE(2452)] = 97421, - [SMALL_STATE(2453)] = 97526, - [SMALL_STATE(2454)] = 97631, - [SMALL_STATE(2455)] = 97736, - [SMALL_STATE(2456)] = 97795, - [SMALL_STATE(2457)] = 97854, - [SMALL_STATE(2458)] = 97959, - [SMALL_STATE(2459)] = 98018, - [SMALL_STATE(2460)] = 98077, - [SMALL_STATE(2461)] = 98136, - [SMALL_STATE(2462)] = 98195, - [SMALL_STATE(2463)] = 98248, - [SMALL_STATE(2464)] = 98307, - [SMALL_STATE(2465)] = 98376, - [SMALL_STATE(2466)] = 98435, - [SMALL_STATE(2467)] = 98516, - [SMALL_STATE(2468)] = 98573, - [SMALL_STATE(2469)] = 98630, - [SMALL_STATE(2470)] = 98681, - [SMALL_STATE(2471)] = 98740, - [SMALL_STATE(2472)] = 98799, - [SMALL_STATE(2473)] = 98863, - [SMALL_STATE(2474)] = 98913, - [SMALL_STATE(2475)] = 98969, - [SMALL_STATE(2476)] = 99023, - [SMALL_STATE(2477)] = 99077, - [SMALL_STATE(2478)] = 99143, - [SMALL_STATE(2479)] = 99197, - [SMALL_STATE(2480)] = 99265, - [SMALL_STATE(2481)] = 99329, - [SMALL_STATE(2482)] = 99393, - [SMALL_STATE(2483)] = 99453, - [SMALL_STATE(2484)] = 99513, - [SMALL_STATE(2485)] = 99561, - [SMALL_STATE(2486)] = 99615, - [SMALL_STATE(2487)] = 99669, - [SMALL_STATE(2488)] = 99717, - [SMALL_STATE(2489)] = 99767, - [SMALL_STATE(2490)] = 99817, - [SMALL_STATE(2491)] = 99867, - [SMALL_STATE(2492)] = 99917, - [SMALL_STATE(2493)] = 99977, - [SMALL_STATE(2494)] = 100027, - [SMALL_STATE(2495)] = 100077, - [SMALL_STATE(2496)] = 100137, - [SMALL_STATE(2497)] = 100187, - [SMALL_STATE(2498)] = 100251, - [SMALL_STATE(2499)] = 100311, - [SMALL_STATE(2500)] = 100361, - [SMALL_STATE(2501)] = 100415, - [SMALL_STATE(2502)] = 100465, - [SMALL_STATE(2503)] = 100519, - [SMALL_STATE(2504)] = 100573, - [SMALL_STATE(2505)] = 100623, - [SMALL_STATE(2506)] = 100695, - [SMALL_STATE(2507)] = 100749, - [SMALL_STATE(2508)] = 100817, - [SMALL_STATE(2509)] = 100887, - [SMALL_STATE(2510)] = 100937, - [SMALL_STATE(2511)] = 100991, - [SMALL_STATE(2512)] = 101055, - [SMALL_STATE(2513)] = 101103, - [SMALL_STATE(2514)] = 101162, - [SMALL_STATE(2515)] = 101221, - [SMALL_STATE(2516)] = 101278, - [SMALL_STATE(2517)] = 101337, - [SMALL_STATE(2518)] = 101394, - [SMALL_STATE(2519)] = 101447, - [SMALL_STATE(2520)] = 101500, - [SMALL_STATE(2521)] = 101549, - [SMALL_STATE(2522)] = 101602, - [SMALL_STATE(2523)] = 101659, - [SMALL_STATE(2524)] = 101716, - [SMALL_STATE(2525)] = 101773, - [SMALL_STATE(2526)] = 101830, - [SMALL_STATE(2527)] = 101887, - [SMALL_STATE(2528)] = 101944, - [SMALL_STATE(2529)] = 102003, - [SMALL_STATE(2530)] = 102062, - [SMALL_STATE(2531)] = 102119, - [SMALL_STATE(2532)] = 102178, - [SMALL_STATE(2533)] = 102231, - [SMALL_STATE(2534)] = 102290, - [SMALL_STATE(2535)] = 102353, - [SMALL_STATE(2536)] = 102406, - [SMALL_STATE(2537)] = 102471, - [SMALL_STATE(2538)] = 102530, - [SMALL_STATE(2539)] = 102589, - [SMALL_STATE(2540)] = 102646, - [SMALL_STATE(2541)] = 102703, - [SMALL_STATE(2542)] = 102762, - [SMALL_STATE(2543)] = 102819, - [SMALL_STATE(2544)] = 102882, - [SMALL_STATE(2545)] = 102939, - [SMALL_STATE(2546)] = 103000, - [SMALL_STATE(2547)] = 103049, - [SMALL_STATE(2548)] = 103108, - [SMALL_STATE(2549)] = 103157, - [SMALL_STATE(2550)] = 103216, - [SMALL_STATE(2551)] = 103273, - [SMALL_STATE(2552)] = 103330, - [SMALL_STATE(2553)] = 103389, - [SMALL_STATE(2554)] = 103448, - [SMALL_STATE(2555)] = 103505, - [SMALL_STATE(2556)] = 103553, - [SMALL_STATE(2557)] = 103599, - [SMALL_STATE(2558)] = 103647, - [SMALL_STATE(2559)] = 103693, - [SMALL_STATE(2560)] = 103739, - [SMALL_STATE(2561)] = 103785, - [SMALL_STATE(2562)] = 103831, - [SMALL_STATE(2563)] = 103877, - [SMALL_STATE(2564)] = 103923, - [SMALL_STATE(2565)] = 103973, - [SMALL_STATE(2566)] = 104019, - [SMALL_STATE(2567)] = 104065, - [SMALL_STATE(2568)] = 104111, - [SMALL_STATE(2569)] = 104157, - [SMALL_STATE(2570)] = 104203, - [SMALL_STATE(2571)] = 104251, - [SMALL_STATE(2572)] = 104297, - [SMALL_STATE(2573)] = 104343, - [SMALL_STATE(2574)] = 104389, - [SMALL_STATE(2575)] = 104435, - [SMALL_STATE(2576)] = 104485, - [SMALL_STATE(2577)] = 104533, - [SMALL_STATE(2578)] = 104579, - [SMALL_STATE(2579)] = 104625, - [SMALL_STATE(2580)] = 104671, - [SMALL_STATE(2581)] = 104719, - [SMALL_STATE(2582)] = 104765, - [SMALL_STATE(2583)] = 104813, - [SMALL_STATE(2584)] = 104859, - [SMALL_STATE(2585)] = 104905, - [SMALL_STATE(2586)] = 104951, - [SMALL_STATE(2587)] = 104997, - [SMALL_STATE(2588)] = 105043, - [SMALL_STATE(2589)] = 105089, - [SMALL_STATE(2590)] = 105135, - [SMALL_STATE(2591)] = 105181, - [SMALL_STATE(2592)] = 105229, - [SMALL_STATE(2593)] = 105275, - [SMALL_STATE(2594)] = 105333, - [SMALL_STATE(2595)] = 105379, - [SMALL_STATE(2596)] = 105425, - [SMALL_STATE(2597)] = 105471, - [SMALL_STATE(2598)] = 105517, - [SMALL_STATE(2599)] = 105565, - [SMALL_STATE(2600)] = 105613, - [SMALL_STATE(2601)] = 105659, - [SMALL_STATE(2602)] = 105715, - [SMALL_STATE(2603)] = 105761, - [SMALL_STATE(2604)] = 105807, - [SMALL_STATE(2605)] = 105855, - [SMALL_STATE(2606)] = 105901, - [SMALL_STATE(2607)] = 105947, - [SMALL_STATE(2608)] = 105995, - [SMALL_STATE(2609)] = 106043, - [SMALL_STATE(2610)] = 106089, - [SMALL_STATE(2611)] = 106135, - [SMALL_STATE(2612)] = 106181, - [SMALL_STATE(2613)] = 106227, - [SMALL_STATE(2614)] = 106273, - [SMALL_STATE(2615)] = 106319, - [SMALL_STATE(2616)] = 106365, - [SMALL_STATE(2617)] = 106411, - [SMALL_STATE(2618)] = 106459, - [SMALL_STATE(2619)] = 106505, - [SMALL_STATE(2620)] = 106556, - [SMALL_STATE(2621)] = 106623, - [SMALL_STATE(2622)] = 106668, - [SMALL_STATE(2623)] = 106721, - [SMALL_STATE(2624)] = 106774, - [SMALL_STATE(2625)] = 106819, - [SMALL_STATE(2626)] = 106864, - [SMALL_STATE(2627)] = 106909, - [SMALL_STATE(2628)] = 106954, - [SMALL_STATE(2629)] = 106999, - [SMALL_STATE(2630)] = 107050, - [SMALL_STATE(2631)] = 107095, - [SMALL_STATE(2632)] = 107153, - [SMALL_STATE(2633)] = 107201, - [SMALL_STATE(2634)] = 107273, - [SMALL_STATE(2635)] = 107333, - [SMALL_STATE(2636)] = 107391, - [SMALL_STATE(2637)] = 107451, - [SMALL_STATE(2638)] = 107507, - [SMALL_STATE(2639)] = 107579, - [SMALL_STATE(2640)] = 107637, - [SMALL_STATE(2641)] = 107695, - [SMALL_STATE(2642)] = 107755, - [SMALL_STATE(2643)] = 107803, - [SMALL_STATE(2644)] = 107856, - [SMALL_STATE(2645)] = 107919, - [SMALL_STATE(2646)] = 107972, - [SMALL_STATE(2647)] = 108025, - [SMALL_STATE(2648)] = 108078, - [SMALL_STATE(2649)] = 108131, - [SMALL_STATE(2650)] = 108184, - [SMALL_STATE(2651)] = 108237, - [SMALL_STATE(2652)] = 108290, - [SMALL_STATE(2653)] = 108343, - [SMALL_STATE(2654)] = 108396, - [SMALL_STATE(2655)] = 108449, - [SMALL_STATE(2656)] = 108512, - [SMALL_STATE(2657)] = 108565, - [SMALL_STATE(2658)] = 108618, - [SMALL_STATE(2659)] = 108671, - [SMALL_STATE(2660)] = 108724, - [SMALL_STATE(2661)] = 108777, - [SMALL_STATE(2662)] = 108830, - [SMALL_STATE(2663)] = 108883, - [SMALL_STATE(2664)] = 108936, - [SMALL_STATE(2665)] = 108989, - [SMALL_STATE(2666)] = 109042, - [SMALL_STATE(2667)] = 109095, - [SMALL_STATE(2668)] = 109148, - [SMALL_STATE(2669)] = 109201, - [SMALL_STATE(2670)] = 109254, - [SMALL_STATE(2671)] = 109307, - [SMALL_STATE(2672)] = 109356, - [SMALL_STATE(2673)] = 109409, - [SMALL_STATE(2674)] = 109463, - [SMALL_STATE(2675)] = 109527, - [SMALL_STATE(2676)] = 109587, - [SMALL_STATE(2677)] = 109641, - [SMALL_STATE(2678)] = 109701, - [SMALL_STATE(2679)] = 109755, - [SMALL_STATE(2680)] = 109809, - [SMALL_STATE(2681)] = 109889, - [SMALL_STATE(2682)] = 109969, - [SMALL_STATE(2683)] = 110033, - [SMALL_STATE(2684)] = 110113, - [SMALL_STATE(2685)] = 110193, - [SMALL_STATE(2686)] = 110273, - [SMALL_STATE(2687)] = 110327, - [SMALL_STATE(2688)] = 110391, - [SMALL_STATE(2689)] = 110445, - [SMALL_STATE(2690)] = 110525, - [SMALL_STATE(2691)] = 110579, - [SMALL_STATE(2692)] = 110659, - [SMALL_STATE(2693)] = 110713, - [SMALL_STATE(2694)] = 110767, - [SMALL_STATE(2695)] = 110821, - [SMALL_STATE(2696)] = 110878, - [SMALL_STATE(2697)] = 110935, - [SMALL_STATE(2698)] = 110976, - [SMALL_STATE(2699)] = 111033, - [SMALL_STATE(2700)] = 111090, - [SMALL_STATE(2701)] = 111147, - [SMALL_STATE(2702)] = 111204, - [SMALL_STATE(2703)] = 111261, - [SMALL_STATE(2704)] = 111302, - [SMALL_STATE(2705)] = 111343, - [SMALL_STATE(2706)] = 111400, - [SMALL_STATE(2707)] = 111457, - [SMALL_STATE(2708)] = 111510, - [SMALL_STATE(2709)] = 111567, - [SMALL_STATE(2710)] = 111608, - [SMALL_STATE(2711)] = 111665, - [SMALL_STATE(2712)] = 111722, - [SMALL_STATE(2713)] = 111779, - [SMALL_STATE(2714)] = 111832, - [SMALL_STATE(2715)] = 111873, - [SMALL_STATE(2716)] = 111930, - [SMALL_STATE(2717)] = 111981, - [SMALL_STATE(2718)] = 112038, - [SMALL_STATE(2719)] = 112081, - [SMALL_STATE(2720)] = 112138, - [SMALL_STATE(2721)] = 112186, - [SMALL_STATE(2722)] = 112234, - [SMALL_STATE(2723)] = 112282, - [SMALL_STATE(2724)] = 112332, - [SMALL_STATE(2725)] = 112380, - [SMALL_STATE(2726)] = 112428, - [SMALL_STATE(2727)] = 112476, - [SMALL_STATE(2728)] = 112524, - [SMALL_STATE(2729)] = 112574, - [SMALL_STATE(2730)] = 112622, - [SMALL_STATE(2731)] = 112670, - [SMALL_STATE(2732)] = 112718, - [SMALL_STATE(2733)] = 112766, - [SMALL_STATE(2734)] = 112816, - [SMALL_STATE(2735)] = 112864, - [SMALL_STATE(2736)] = 112914, - [SMALL_STATE(2737)] = 112962, - [SMALL_STATE(2738)] = 113012, - [SMALL_STATE(2739)] = 113060, - [SMALL_STATE(2740)] = 113108, - [SMALL_STATE(2741)] = 113156, - [SMALL_STATE(2742)] = 113206, - [SMALL_STATE(2743)] = 113254, - [SMALL_STATE(2744)] = 113302, - [SMALL_STATE(2745)] = 113350, - [SMALL_STATE(2746)] = 113398, - [SMALL_STATE(2747)] = 113446, - [SMALL_STATE(2748)] = 113494, - [SMALL_STATE(2749)] = 113542, - [SMALL_STATE(2750)] = 113590, - [SMALL_STATE(2751)] = 113638, - [SMALL_STATE(2752)] = 113686, - [SMALL_STATE(2753)] = 113734, - [SMALL_STATE(2754)] = 113782, - [SMALL_STATE(2755)] = 113832, - [SMALL_STATE(2756)] = 113882, - [SMALL_STATE(2757)] = 113930, - [SMALL_STATE(2758)] = 113978, - [SMALL_STATE(2759)] = 114028, - [SMALL_STATE(2760)] = 114076, - [SMALL_STATE(2761)] = 114126, - [SMALL_STATE(2762)] = 114174, - [SMALL_STATE(2763)] = 114224, - [SMALL_STATE(2764)] = 114272, - [SMALL_STATE(2765)] = 114320, - [SMALL_STATE(2766)] = 114368, - [SMALL_STATE(2767)] = 114418, - [SMALL_STATE(2768)] = 114466, - [SMALL_STATE(2769)] = 114516, - [SMALL_STATE(2770)] = 114564, - [SMALL_STATE(2771)] = 114612, - [SMALL_STATE(2772)] = 114660, - [SMALL_STATE(2773)] = 114708, - [SMALL_STATE(2774)] = 114756, - [SMALL_STATE(2775)] = 114804, - [SMALL_STATE(2776)] = 114852, - [SMALL_STATE(2777)] = 114902, - [SMALL_STATE(2778)] = 114950, - [SMALL_STATE(2779)] = 114998, - [SMALL_STATE(2780)] = 115046, - [SMALL_STATE(2781)] = 115094, - [SMALL_STATE(2782)] = 115129, - [SMALL_STATE(2783)] = 115170, - [SMALL_STATE(2784)] = 115211, - [SMALL_STATE(2785)] = 115252, - [SMALL_STATE(2786)] = 115280, - [SMALL_STATE(2787)] = 115308, - [SMALL_STATE(2788)] = 115336, - [SMALL_STATE(2789)] = 115364, - [SMALL_STATE(2790)] = 115392, - [SMALL_STATE(2791)] = 115420, - [SMALL_STATE(2792)] = 115448, - [SMALL_STATE(2793)] = 115476, - [SMALL_STATE(2794)] = 115504, - [SMALL_STATE(2795)] = 115532, - [SMALL_STATE(2796)] = 115560, - [SMALL_STATE(2797)] = 115588, - [SMALL_STATE(2798)] = 115616, - [SMALL_STATE(2799)] = 115644, - [SMALL_STATE(2800)] = 115672, - [SMALL_STATE(2801)] = 115700, - [SMALL_STATE(2802)] = 115728, - [SMALL_STATE(2803)] = 115756, - [SMALL_STATE(2804)] = 115784, - [SMALL_STATE(2805)] = 115812, - [SMALL_STATE(2806)] = 115840, - [SMALL_STATE(2807)] = 115868, - [SMALL_STATE(2808)] = 115896, - [SMALL_STATE(2809)] = 115924, - [SMALL_STATE(2810)] = 115952, - [SMALL_STATE(2811)] = 115980, - [SMALL_STATE(2812)] = 116008, - [SMALL_STATE(2813)] = 116036, - [SMALL_STATE(2814)] = 116064, - [SMALL_STATE(2815)] = 116092, - [SMALL_STATE(2816)] = 116120, - [SMALL_STATE(2817)] = 116148, - [SMALL_STATE(2818)] = 116176, - [SMALL_STATE(2819)] = 116204, - [SMALL_STATE(2820)] = 116261, - [SMALL_STATE(2821)] = 116288, - [SMALL_STATE(2822)] = 116345, - [SMALL_STATE(2823)] = 116372, - [SMALL_STATE(2824)] = 116421, - [SMALL_STATE(2825)] = 116454, - [SMALL_STATE(2826)] = 116480, - [SMALL_STATE(2827)] = 116508, - [SMALL_STATE(2828)] = 116546, - [SMALL_STATE(2829)] = 116576, - [SMALL_STATE(2830)] = 116602, - [SMALL_STATE(2831)] = 116628, - [SMALL_STATE(2832)] = 116658, - [SMALL_STATE(2833)] = 116696, - [SMALL_STATE(2834)] = 116726, - [SMALL_STATE(2835)] = 116752, - [SMALL_STATE(2836)] = 116780, - [SMALL_STATE(2837)] = 116806, - [SMALL_STATE(2838)] = 116832, - [SMALL_STATE(2839)] = 116858, - [SMALL_STATE(2840)] = 116896, - [SMALL_STATE(2841)] = 116930, - [SMALL_STATE(2842)] = 116956, - [SMALL_STATE(2843)] = 116982, - [SMALL_STATE(2844)] = 117008, - [SMALL_STATE(2845)] = 117034, - [SMALL_STATE(2846)] = 117060, - [SMALL_STATE(2847)] = 117091, - [SMALL_STATE(2848)] = 117116, - [SMALL_STATE(2849)] = 117141, - [SMALL_STATE(2850)] = 117166, - [SMALL_STATE(2851)] = 117193, - [SMALL_STATE(2852)] = 117218, - [SMALL_STATE(2853)] = 117242, - [SMALL_STATE(2854)] = 117266, - [SMALL_STATE(2855)] = 117290, - [SMALL_STATE(2856)] = 117314, - [SMALL_STATE(2857)] = 117338, - [SMALL_STATE(2858)] = 117362, - [SMALL_STATE(2859)] = 117390, - [SMALL_STATE(2860)] = 117414, - [SMALL_STATE(2861)] = 117440, - [SMALL_STATE(2862)] = 117464, - [SMALL_STATE(2863)] = 117498, - [SMALL_STATE(2864)] = 117532, - [SMALL_STATE(2865)] = 117566, - [SMALL_STATE(2866)] = 117590, - [SMALL_STATE(2867)] = 117614, - [SMALL_STATE(2868)] = 117646, - [SMALL_STATE(2869)] = 117680, - [SMALL_STATE(2870)] = 117714, - [SMALL_STATE(2871)] = 117748, - [SMALL_STATE(2872)] = 117772, - [SMALL_STATE(2873)] = 117796, - [SMALL_STATE(2874)] = 117820, - [SMALL_STATE(2875)] = 117844, - [SMALL_STATE(2876)] = 117866, - [SMALL_STATE(2877)] = 117890, - [SMALL_STATE(2878)] = 117914, - [SMALL_STATE(2879)] = 117936, - [SMALL_STATE(2880)] = 117968, - [SMALL_STATE(2881)] = 118002, - [SMALL_STATE(2882)] = 118036, - [SMALL_STATE(2883)] = 118070, - [SMALL_STATE(2884)] = 118094, - [SMALL_STATE(2885)] = 118116, - [SMALL_STATE(2886)] = 118140, - [SMALL_STATE(2887)] = 118174, - [SMALL_STATE(2888)] = 118208, - [SMALL_STATE(2889)] = 118242, - [SMALL_STATE(2890)] = 118266, - [SMALL_STATE(2891)] = 118290, - [SMALL_STATE(2892)] = 118312, - [SMALL_STATE(2893)] = 118344, - [SMALL_STATE(2894)] = 118378, - [SMALL_STATE(2895)] = 118412, - [SMALL_STATE(2896)] = 118446, - [SMALL_STATE(2897)] = 118470, - [SMALL_STATE(2898)] = 118496, - [SMALL_STATE(2899)] = 118518, - [SMALL_STATE(2900)] = 118540, - [SMALL_STATE(2901)] = 118562, - [SMALL_STATE(2902)] = 118594, - [SMALL_STATE(2903)] = 118626, - [SMALL_STATE(2904)] = 118650, - [SMALL_STATE(2905)] = 118684, - [SMALL_STATE(2906)] = 118708, - [SMALL_STATE(2907)] = 118732, - [SMALL_STATE(2908)] = 118756, - [SMALL_STATE(2909)] = 118790, - [SMALL_STATE(2910)] = 118814, - [SMALL_STATE(2911)] = 118838, - [SMALL_STATE(2912)] = 118862, - [SMALL_STATE(2913)] = 118886, - [SMALL_STATE(2914)] = 118910, - [SMALL_STATE(2915)] = 118934, - [SMALL_STATE(2916)] = 118958, - [SMALL_STATE(2917)] = 118982, - [SMALL_STATE(2918)] = 119016, - [SMALL_STATE(2919)] = 119040, - [SMALL_STATE(2920)] = 119062, - [SMALL_STATE(2921)] = 119086, - [SMALL_STATE(2922)] = 119110, - [SMALL_STATE(2923)] = 119134, - [SMALL_STATE(2924)] = 119158, - [SMALL_STATE(2925)] = 119182, - [SMALL_STATE(2926)] = 119206, - [SMALL_STATE(2927)] = 119230, - [SMALL_STATE(2928)] = 119254, - [SMALL_STATE(2929)] = 119278, - [SMALL_STATE(2930)] = 119302, - [SMALL_STATE(2931)] = 119326, - [SMALL_STATE(2932)] = 119350, - [SMALL_STATE(2933)] = 119374, - [SMALL_STATE(2934)] = 119398, - [SMALL_STATE(2935)] = 119422, - [SMALL_STATE(2936)] = 119446, - [SMALL_STATE(2937)] = 119470, - [SMALL_STATE(2938)] = 119494, - [SMALL_STATE(2939)] = 119518, - [SMALL_STATE(2940)] = 119542, - [SMALL_STATE(2941)] = 119566, - [SMALL_STATE(2942)] = 119590, - [SMALL_STATE(2943)] = 119614, - [SMALL_STATE(2944)] = 119636, - [SMALL_STATE(2945)] = 119660, - [SMALL_STATE(2946)] = 119684, - [SMALL_STATE(2947)] = 119708, - [SMALL_STATE(2948)] = 119732, - [SMALL_STATE(2949)] = 119756, - [SMALL_STATE(2950)] = 119780, - [SMALL_STATE(2951)] = 119804, - [SMALL_STATE(2952)] = 119828, - [SMALL_STATE(2953)] = 119860, - [SMALL_STATE(2954)] = 119889, - [SMALL_STATE(2955)] = 119934, - [SMALL_STATE(2956)] = 119977, - [SMALL_STATE(2957)] = 120020, - [SMALL_STATE(2958)] = 120049, - [SMALL_STATE(2959)] = 120078, - [SMALL_STATE(2960)] = 120121, - [SMALL_STATE(2961)] = 120150, - [SMALL_STATE(2962)] = 120189, - [SMALL_STATE(2963)] = 120218, - [SMALL_STATE(2964)] = 120257, - [SMALL_STATE(2965)] = 120300, - [SMALL_STATE(2966)] = 120343, - [SMALL_STATE(2967)] = 120386, - [SMALL_STATE(2968)] = 120429, - [SMALL_STATE(2969)] = 120472, - [SMALL_STATE(2970)] = 120515, - [SMALL_STATE(2971)] = 120540, - [SMALL_STATE(2972)] = 120583, - [SMALL_STATE(2973)] = 120612, - [SMALL_STATE(2974)] = 120651, - [SMALL_STATE(2975)] = 120694, - [SMALL_STATE(2976)] = 120729, - [SMALL_STATE(2977)] = 120772, - [SMALL_STATE(2978)] = 120815, - [SMALL_STATE(2979)] = 120844, - [SMALL_STATE(2980)] = 120883, - [SMALL_STATE(2981)] = 120926, - [SMALL_STATE(2982)] = 120969, - [SMALL_STATE(2983)] = 121008, - [SMALL_STATE(2984)] = 121037, - [SMALL_STATE(2985)] = 121080, - [SMALL_STATE(2986)] = 121123, - [SMALL_STATE(2987)] = 121166, - [SMALL_STATE(2988)] = 121209, - [SMALL_STATE(2989)] = 121236, - [SMALL_STATE(2990)] = 121279, - [SMALL_STATE(2991)] = 121322, - [SMALL_STATE(2992)] = 121351, - [SMALL_STATE(2993)] = 121394, - [SMALL_STATE(2994)] = 121419, - [SMALL_STATE(2995)] = 121462, - [SMALL_STATE(2996)] = 121487, - [SMALL_STATE(2997)] = 121507, - [SMALL_STATE(2998)] = 121543, - [SMALL_STATE(2999)] = 121579, - [SMALL_STATE(3000)] = 121601, - [SMALL_STATE(3001)] = 121629, - [SMALL_STATE(3002)] = 121657, - [SMALL_STATE(3003)] = 121677, - [SMALL_STATE(3004)] = 121703, - [SMALL_STATE(3005)] = 121731, - [SMALL_STATE(3006)] = 121757, - [SMALL_STATE(3007)] = 121785, - [SMALL_STATE(3008)] = 121807, - [SMALL_STATE(3009)] = 121827, - [SMALL_STATE(3010)] = 121863, - [SMALL_STATE(3011)] = 121883, - [SMALL_STATE(3012)] = 121903, - [SMALL_STATE(3013)] = 121925, - [SMALL_STATE(3014)] = 121945, - [SMALL_STATE(3015)] = 121973, - [SMALL_STATE(3016)] = 121995, - [SMALL_STATE(3017)] = 122037, - [SMALL_STATE(3018)] = 122061, - [SMALL_STATE(3019)] = 122083, - [SMALL_STATE(3020)] = 122111, - [SMALL_STATE(3021)] = 122133, - [SMALL_STATE(3022)] = 122155, - [SMALL_STATE(3023)] = 122175, - [SMALL_STATE(3024)] = 122197, - [SMALL_STATE(3025)] = 122217, - [SMALL_STATE(3026)] = 122237, - [SMALL_STATE(3027)] = 122273, - [SMALL_STATE(3028)] = 122293, - [SMALL_STATE(3029)] = 122329, - [SMALL_STATE(3030)] = 122365, - [SMALL_STATE(3031)] = 122385, - [SMALL_STATE(3032)] = 122409, - [SMALL_STATE(3033)] = 122431, - [SMALL_STATE(3034)] = 122451, - [SMALL_STATE(3035)] = 122473, - [SMALL_STATE(3036)] = 122495, - [SMALL_STATE(3037)] = 122519, - [SMALL_STATE(3038)] = 122555, - [SMALL_STATE(3039)] = 122591, - [SMALL_STATE(3040)] = 122627, - [SMALL_STATE(3041)] = 122647, - [SMALL_STATE(3042)] = 122667, - [SMALL_STATE(3043)] = 122689, - [SMALL_STATE(3044)] = 122711, - [SMALL_STATE(3045)] = 122733, - [SMALL_STATE(3046)] = 122775, - [SMALL_STATE(3047)] = 122797, - [SMALL_STATE(3048)] = 122823, - [SMALL_STATE(3049)] = 122843, - [SMALL_STATE(3050)] = 122879, - [SMALL_STATE(3051)] = 122903, - [SMALL_STATE(3052)] = 122939, - [SMALL_STATE(3053)] = 122967, - [SMALL_STATE(3054)] = 122987, - [SMALL_STATE(3055)] = 123015, - [SMALL_STATE(3056)] = 123035, - [SMALL_STATE(3057)] = 123055, - [SMALL_STATE(3058)] = 123091, - [SMALL_STATE(3059)] = 123111, - [SMALL_STATE(3060)] = 123139, - [SMALL_STATE(3061)] = 123159, - [SMALL_STATE(3062)] = 123179, - [SMALL_STATE(3063)] = 123215, - [SMALL_STATE(3064)] = 123251, - [SMALL_STATE(3065)] = 123271, - [SMALL_STATE(3066)] = 123291, - [SMALL_STATE(3067)] = 123311, - [SMALL_STATE(3068)] = 123331, - [SMALL_STATE(3069)] = 123355, - [SMALL_STATE(3070)] = 123375, - [SMALL_STATE(3071)] = 123411, - [SMALL_STATE(3072)] = 123431, - [SMALL_STATE(3073)] = 123451, - [SMALL_STATE(3074)] = 123471, - [SMALL_STATE(3075)] = 123507, - [SMALL_STATE(3076)] = 123543, - [SMALL_STATE(3077)] = 123563, - [SMALL_STATE(3078)] = 123583, - [SMALL_STATE(3079)] = 123603, - [SMALL_STATE(3080)] = 123623, - [SMALL_STATE(3081)] = 123643, - [SMALL_STATE(3082)] = 123679, - [SMALL_STATE(3083)] = 123712, - [SMALL_STATE(3084)] = 123745, - [SMALL_STATE(3085)] = 123766, - [SMALL_STATE(3086)] = 123803, - [SMALL_STATE(3087)] = 123824, - [SMALL_STATE(3088)] = 123845, - [SMALL_STATE(3089)] = 123884, - [SMALL_STATE(3090)] = 123921, - [SMALL_STATE(3091)] = 123958, - [SMALL_STATE(3092)] = 123995, - [SMALL_STATE(3093)] = 124028, - [SMALL_STATE(3094)] = 124061, - [SMALL_STATE(3095)] = 124098, - [SMALL_STATE(3096)] = 124135, - [SMALL_STATE(3097)] = 124158, - [SMALL_STATE(3098)] = 124179, - [SMALL_STATE(3099)] = 124216, - [SMALL_STATE(3100)] = 124255, - [SMALL_STATE(3101)] = 124294, - [SMALL_STATE(3102)] = 124317, - [SMALL_STATE(3103)] = 124354, - [SMALL_STATE(3104)] = 124387, - [SMALL_STATE(3105)] = 124416, - [SMALL_STATE(3106)] = 124453, - [SMALL_STATE(3107)] = 124490, - [SMALL_STATE(3108)] = 124527, - [SMALL_STATE(3109)] = 124566, - [SMALL_STATE(3110)] = 124585, - [SMALL_STATE(3111)] = 124618, - [SMALL_STATE(3112)] = 124655, - [SMALL_STATE(3113)] = 124678, - [SMALL_STATE(3114)] = 124701, - [SMALL_STATE(3115)] = 124738, - [SMALL_STATE(3116)] = 124775, - [SMALL_STATE(3117)] = 124812, - [SMALL_STATE(3118)] = 124849, - [SMALL_STATE(3119)] = 124886, - [SMALL_STATE(3120)] = 124919, - [SMALL_STATE(3121)] = 124956, - [SMALL_STATE(3122)] = 124985, - [SMALL_STATE(3123)] = 125004, - [SMALL_STATE(3124)] = 125041, - [SMALL_STATE(3125)] = 125070, - [SMALL_STATE(3126)] = 125107, - [SMALL_STATE(3127)] = 125138, - [SMALL_STATE(3128)] = 125169, - [SMALL_STATE(3129)] = 125206, - [SMALL_STATE(3130)] = 125239, - [SMALL_STATE(3131)] = 125276, - [SMALL_STATE(3132)] = 125307, - [SMALL_STATE(3133)] = 125340, - [SMALL_STATE(3134)] = 125369, - [SMALL_STATE(3135)] = 125402, - [SMALL_STATE(3136)] = 125439, - [SMALL_STATE(3137)] = 125468, - [SMALL_STATE(3138)] = 125507, - [SMALL_STATE(3139)] = 125532, - [SMALL_STATE(3140)] = 125565, - [SMALL_STATE(3141)] = 125596, - [SMALL_STATE(3142)] = 125621, - [SMALL_STATE(3143)] = 125652, - [SMALL_STATE(3144)] = 125672, - [SMALL_STATE(3145)] = 125690, - [SMALL_STATE(3146)] = 125710, - [SMALL_STATE(3147)] = 125732, - [SMALL_STATE(3148)] = 125750, - [SMALL_STATE(3149)] = 125768, - [SMALL_STATE(3150)] = 125788, - [SMALL_STATE(3151)] = 125810, - [SMALL_STATE(3152)] = 125828, - [SMALL_STATE(3153)] = 125852, - [SMALL_STATE(3154)] = 125870, - [SMALL_STATE(3155)] = 125890, - [SMALL_STATE(3156)] = 125910, - [SMALL_STATE(3157)] = 125932, - [SMALL_STATE(3158)] = 125952, - [SMALL_STATE(3159)] = 125972, - [SMALL_STATE(3160)] = 125992, - [SMALL_STATE(3161)] = 126012, - [SMALL_STATE(3162)] = 126032, - [SMALL_STATE(3163)] = 126058, - [SMALL_STATE(3164)] = 126078, - [SMALL_STATE(3165)] = 126098, - [SMALL_STATE(3166)] = 126118, - [SMALL_STATE(3167)] = 126138, - [SMALL_STATE(3168)] = 126174, - [SMALL_STATE(3169)] = 126198, - [SMALL_STATE(3170)] = 126218, - [SMALL_STATE(3171)] = 126238, - [SMALL_STATE(3172)] = 126258, - [SMALL_STATE(3173)] = 126282, - [SMALL_STATE(3174)] = 126302, - [SMALL_STATE(3175)] = 126322, - [SMALL_STATE(3176)] = 126346, - [SMALL_STATE(3177)] = 126368, - [SMALL_STATE(3178)] = 126390, - [SMALL_STATE(3179)] = 126408, - [SMALL_STATE(3180)] = 126426, - [SMALL_STATE(3181)] = 126446, - [SMALL_STATE(3182)] = 126464, - [SMALL_STATE(3183)] = 126482, - [SMALL_STATE(3184)] = 126500, - [SMALL_STATE(3185)] = 126526, - [SMALL_STATE(3186)] = 126544, - [SMALL_STATE(3187)] = 126564, - [SMALL_STATE(3188)] = 126584, - [SMALL_STATE(3189)] = 126604, - [SMALL_STATE(3190)] = 126624, - [SMALL_STATE(3191)] = 126644, - [SMALL_STATE(3192)] = 126664, - [SMALL_STATE(3193)] = 126684, - [SMALL_STATE(3194)] = 126704, - [SMALL_STATE(3195)] = 126724, - [SMALL_STATE(3196)] = 126744, - [SMALL_STATE(3197)] = 126764, - [SMALL_STATE(3198)] = 126784, - [SMALL_STATE(3199)] = 126806, - [SMALL_STATE(3200)] = 126828, - [SMALL_STATE(3201)] = 126846, - [SMALL_STATE(3202)] = 126870, - [SMALL_STATE(3203)] = 126888, - [SMALL_STATE(3204)] = 126912, - [SMALL_STATE(3205)] = 126936, - [SMALL_STATE(3206)] = 126956, - [SMALL_STATE(3207)] = 126976, - [SMALL_STATE(3208)] = 126998, - [SMALL_STATE(3209)] = 127018, - [SMALL_STATE(3210)] = 127036, - [SMALL_STATE(3211)] = 127056, - [SMALL_STATE(3212)] = 127080, - [SMALL_STATE(3213)] = 127100, - [SMALL_STATE(3214)] = 127120, - [SMALL_STATE(3215)] = 127149, - [SMALL_STATE(3216)] = 127182, - [SMALL_STATE(3217)] = 127215, - [SMALL_STATE(3218)] = 127248, - [SMALL_STATE(3219)] = 127281, - [SMALL_STATE(3220)] = 127316, - [SMALL_STATE(3221)] = 127351, - [SMALL_STATE(3222)] = 127368, - [SMALL_STATE(3223)] = 127403, - [SMALL_STATE(3224)] = 127422, - [SMALL_STATE(3225)] = 127457, - [SMALL_STATE(3226)] = 127476, - [SMALL_STATE(3227)] = 127499, - [SMALL_STATE(3228)] = 127518, - [SMALL_STATE(3229)] = 127541, - [SMALL_STATE(3230)] = 127562, - [SMALL_STATE(3231)] = 127583, - [SMALL_STATE(3232)] = 127618, - [SMALL_STATE(3233)] = 127649, - [SMALL_STATE(3234)] = 127670, - [SMALL_STATE(3235)] = 127705, - [SMALL_STATE(3236)] = 127740, - [SMALL_STATE(3237)] = 127763, - [SMALL_STATE(3238)] = 127796, - [SMALL_STATE(3239)] = 127813, - [SMALL_STATE(3240)] = 127830, - [SMALL_STATE(3241)] = 127865, - [SMALL_STATE(3242)] = 127882, - [SMALL_STATE(3243)] = 127915, - [SMALL_STATE(3244)] = 127934, - [SMALL_STATE(3245)] = 127969, - [SMALL_STATE(3246)] = 128000, - [SMALL_STATE(3247)] = 128035, - [SMALL_STATE(3248)] = 128070, - [SMALL_STATE(3249)] = 128099, - [SMALL_STATE(3250)] = 128124, - [SMALL_STATE(3251)] = 128150, - [SMALL_STATE(3252)] = 128166, - [SMALL_STATE(3253)] = 128196, - [SMALL_STATE(3254)] = 128226, - [SMALL_STATE(3255)] = 128258, - [SMALL_STATE(3256)] = 128286, - [SMALL_STATE(3257)] = 128302, - [SMALL_STATE(3258)] = 128318, - [SMALL_STATE(3259)] = 128346, - [SMALL_STATE(3260)] = 128378, - [SMALL_STATE(3261)] = 128400, - [SMALL_STATE(3262)] = 128432, - [SMALL_STATE(3263)] = 128460, - [SMALL_STATE(3264)] = 128492, - [SMALL_STATE(3265)] = 128524, - [SMALL_STATE(3266)] = 128540, - [SMALL_STATE(3267)] = 128572, - [SMALL_STATE(3268)] = 128598, - [SMALL_STATE(3269)] = 128614, - [SMALL_STATE(3270)] = 128630, - [SMALL_STATE(3271)] = 128660, - [SMALL_STATE(3272)] = 128676, - [SMALL_STATE(3273)] = 128692, - [SMALL_STATE(3274)] = 128722, - [SMALL_STATE(3275)] = 128750, - [SMALL_STATE(3276)] = 128782, - [SMALL_STATE(3277)] = 128798, - [SMALL_STATE(3278)] = 128824, - [SMALL_STATE(3279)] = 128840, - [SMALL_STATE(3280)] = 128870, - [SMALL_STATE(3281)] = 128886, - [SMALL_STATE(3282)] = 128904, - [SMALL_STATE(3283)] = 128920, - [SMALL_STATE(3284)] = 128946, - [SMALL_STATE(3285)] = 128968, - [SMALL_STATE(3286)] = 128984, - [SMALL_STATE(3287)] = 129014, - [SMALL_STATE(3288)] = 129044, - [SMALL_STATE(3289)] = 129072, - [SMALL_STATE(3290)] = 129102, - [SMALL_STATE(3291)] = 129134, - [SMALL_STATE(3292)] = 129162, - [SMALL_STATE(3293)] = 129178, - [SMALL_STATE(3294)] = 129206, - [SMALL_STATE(3295)] = 129238, - [SMALL_STATE(3296)] = 129254, - [SMALL_STATE(3297)] = 129282, - [SMALL_STATE(3298)] = 129310, - [SMALL_STATE(3299)] = 129342, - [SMALL_STATE(3300)] = 129358, - [SMALL_STATE(3301)] = 129374, - [SMALL_STATE(3302)] = 129390, - [SMALL_STATE(3303)] = 129418, - [SMALL_STATE(3304)] = 129450, - [SMALL_STATE(3305)] = 129480, - [SMALL_STATE(3306)] = 129508, - [SMALL_STATE(3307)] = 129538, - [SMALL_STATE(3308)] = 129554, - [SMALL_STATE(3309)] = 129580, - [SMALL_STATE(3310)] = 129606, - [SMALL_STATE(3311)] = 129636, - [SMALL_STATE(3312)] = 129652, - [SMALL_STATE(3313)] = 129682, - [SMALL_STATE(3314)] = 129698, - [SMALL_STATE(3315)] = 129726, - [SMALL_STATE(3316)] = 129752, - [SMALL_STATE(3317)] = 129780, - [SMALL_STATE(3318)] = 129802, - [SMALL_STATE(3319)] = 129834, - [SMALL_STATE(3320)] = 129860, - [SMALL_STATE(3321)] = 129880, - [SMALL_STATE(3322)] = 129908, - [SMALL_STATE(3323)] = 129940, - [SMALL_STATE(3324)] = 129968, - [SMALL_STATE(3325)] = 129996, - [SMALL_STATE(3326)] = 130012, - [SMALL_STATE(3327)] = 130040, - [SMALL_STATE(3328)] = 130056, - [SMALL_STATE(3329)] = 130088, - [SMALL_STATE(3330)] = 130104, - [SMALL_STATE(3331)] = 130122, - [SMALL_STATE(3332)] = 130138, - [SMALL_STATE(3333)] = 130160, - [SMALL_STATE(3334)] = 130184, - [SMALL_STATE(3335)] = 130214, - [SMALL_STATE(3336)] = 130230, - [SMALL_STATE(3337)] = 130246, - [SMALL_STATE(3338)] = 130268, - [SMALL_STATE(3339)] = 130288, - [SMALL_STATE(3340)] = 130316, - [SMALL_STATE(3341)] = 130344, - [SMALL_STATE(3342)] = 130370, - [SMALL_STATE(3343)] = 130398, - [SMALL_STATE(3344)] = 130414, - [SMALL_STATE(3345)] = 130432, - [SMALL_STATE(3346)] = 130460, - [SMALL_STATE(3347)] = 130478, - [SMALL_STATE(3348)] = 130508, - [SMALL_STATE(3349)] = 130540, - [SMALL_STATE(3350)] = 130570, - [SMALL_STATE(3351)] = 130602, - [SMALL_STATE(3352)] = 130618, - [SMALL_STATE(3353)] = 130648, - [SMALL_STATE(3354)] = 130678, - [SMALL_STATE(3355)] = 130704, - [SMALL_STATE(3356)] = 130736, - [SMALL_STATE(3357)] = 130766, - [SMALL_STATE(3358)] = 130796, - [SMALL_STATE(3359)] = 130824, - [SMALL_STATE(3360)] = 130840, - [SMALL_STATE(3361)] = 130870, - [SMALL_STATE(3362)] = 130898, - [SMALL_STATE(3363)] = 130928, - [SMALL_STATE(3364)] = 130960, - [SMALL_STATE(3365)] = 130976, - [SMALL_STATE(3366)] = 131004, - [SMALL_STATE(3367)] = 131030, - [SMALL_STATE(3368)] = 131062, - [SMALL_STATE(3369)] = 131092, - [SMALL_STATE(3370)] = 131122, - [SMALL_STATE(3371)] = 131150, - [SMALL_STATE(3372)] = 131178, - [SMALL_STATE(3373)] = 131206, - [SMALL_STATE(3374)] = 131236, - [SMALL_STATE(3375)] = 131264, - [SMALL_STATE(3376)] = 131292, - [SMALL_STATE(3377)] = 131322, - [SMALL_STATE(3378)] = 131352, - [SMALL_STATE(3379)] = 131382, - [SMALL_STATE(3380)] = 131412, - [SMALL_STATE(3381)] = 131442, - [SMALL_STATE(3382)] = 131470, - [SMALL_STATE(3383)] = 131498, - [SMALL_STATE(3384)] = 131526, - [SMALL_STATE(3385)] = 131558, - [SMALL_STATE(3386)] = 131574, - [SMALL_STATE(3387)] = 131604, - [SMALL_STATE(3388)] = 131632, - [SMALL_STATE(3389)] = 131660, - [SMALL_STATE(3390)] = 131688, - [SMALL_STATE(3391)] = 131716, - [SMALL_STATE(3392)] = 131744, - [SMALL_STATE(3393)] = 131772, - [SMALL_STATE(3394)] = 131800, - [SMALL_STATE(3395)] = 131816, - [SMALL_STATE(3396)] = 131848, - [SMALL_STATE(3397)] = 131876, - [SMALL_STATE(3398)] = 131902, - [SMALL_STATE(3399)] = 131934, - [SMALL_STATE(3400)] = 131950, - [SMALL_STATE(3401)] = 131982, - [SMALL_STATE(3402)] = 132014, - [SMALL_STATE(3403)] = 132042, - [SMALL_STATE(3404)] = 132074, - [SMALL_STATE(3405)] = 132090, - [SMALL_STATE(3406)] = 132106, - [SMALL_STATE(3407)] = 132136, - [SMALL_STATE(3408)] = 132164, - [SMALL_STATE(3409)] = 132194, - [SMALL_STATE(3410)] = 132224, - [SMALL_STATE(3411)] = 132256, - [SMALL_STATE(3412)] = 132288, - [SMALL_STATE(3413)] = 132314, - [SMALL_STATE(3414)] = 132342, - [SMALL_STATE(3415)] = 132374, - [SMALL_STATE(3416)] = 132394, - [SMALL_STATE(3417)] = 132410, - [SMALL_STATE(3418)] = 132426, - [SMALL_STATE(3419)] = 132456, - [SMALL_STATE(3420)] = 132472, - [SMALL_STATE(3421)] = 132500, - [SMALL_STATE(3422)] = 132522, - [SMALL_STATE(3423)] = 132554, - [SMALL_STATE(3424)] = 132570, - [SMALL_STATE(3425)] = 132600, - [SMALL_STATE(3426)] = 132622, - [SMALL_STATE(3427)] = 132644, - [SMALL_STATE(3428)] = 132660, - [SMALL_STATE(3429)] = 132678, - [SMALL_STATE(3430)] = 132694, - [SMALL_STATE(3431)] = 132724, - [SMALL_STATE(3432)] = 132740, - [SMALL_STATE(3433)] = 132770, - [SMALL_STATE(3434)] = 132802, - [SMALL_STATE(3435)] = 132818, - [SMALL_STATE(3436)] = 132848, - [SMALL_STATE(3437)] = 132880, - [SMALL_STATE(3438)] = 132906, - [SMALL_STATE(3439)] = 132922, - [SMALL_STATE(3440)] = 132954, - [SMALL_STATE(3441)] = 132970, - [SMALL_STATE(3442)] = 132996, - [SMALL_STATE(3443)] = 133022, - [SMALL_STATE(3444)] = 133050, - [SMALL_STATE(3445)] = 133076, - [SMALL_STATE(3446)] = 133108, - [SMALL_STATE(3447)] = 133136, - [SMALL_STATE(3448)] = 133164, - [SMALL_STATE(3449)] = 133194, - [SMALL_STATE(3450)] = 133223, - [SMALL_STATE(3451)] = 133248, - [SMALL_STATE(3452)] = 133273, - [SMALL_STATE(3453)] = 133302, - [SMALL_STATE(3454)] = 133327, - [SMALL_STATE(3455)] = 133348, - [SMALL_STATE(3456)] = 133373, - [SMALL_STATE(3457)] = 133394, - [SMALL_STATE(3458)] = 133423, - [SMALL_STATE(3459)] = 133448, - [SMALL_STATE(3460)] = 133477, - [SMALL_STATE(3461)] = 133502, - [SMALL_STATE(3462)] = 133531, - [SMALL_STATE(3463)] = 133554, - [SMALL_STATE(3464)] = 133583, - [SMALL_STATE(3465)] = 133600, - [SMALL_STATE(3466)] = 133617, - [SMALL_STATE(3467)] = 133646, - [SMALL_STATE(3468)] = 133671, - [SMALL_STATE(3469)] = 133696, - [SMALL_STATE(3470)] = 133717, - [SMALL_STATE(3471)] = 133734, - [SMALL_STATE(3472)] = 133751, - [SMALL_STATE(3473)] = 133768, - [SMALL_STATE(3474)] = 133791, - [SMALL_STATE(3475)] = 133814, - [SMALL_STATE(3476)] = 133835, - [SMALL_STATE(3477)] = 133850, - [SMALL_STATE(3478)] = 133875, - [SMALL_STATE(3479)] = 133900, - [SMALL_STATE(3480)] = 133915, - [SMALL_STATE(3481)] = 133930, - [SMALL_STATE(3482)] = 133953, - [SMALL_STATE(3483)] = 133974, - [SMALL_STATE(3484)] = 133995, - [SMALL_STATE(3485)] = 134018, - [SMALL_STATE(3486)] = 134041, - [SMALL_STATE(3487)] = 134066, - [SMALL_STATE(3488)] = 134089, - [SMALL_STATE(3489)] = 134114, - [SMALL_STATE(3490)] = 134137, - [SMALL_STATE(3491)] = 134160, - [SMALL_STATE(3492)] = 134189, - [SMALL_STATE(3493)] = 134211, - [SMALL_STATE(3494)] = 134235, - [SMALL_STATE(3495)] = 134257, - [SMALL_STATE(3496)] = 134275, - [SMALL_STATE(3497)] = 134297, - [SMALL_STATE(3498)] = 134311, - [SMALL_STATE(3499)] = 134333, - [SMALL_STATE(3500)] = 134351, - [SMALL_STATE(3501)] = 134369, - [SMALL_STATE(3502)] = 134391, - [SMALL_STATE(3503)] = 134413, - [SMALL_STATE(3504)] = 134435, - [SMALL_STATE(3505)] = 134453, - [SMALL_STATE(3506)] = 134479, - [SMALL_STATE(3507)] = 134501, - [SMALL_STATE(3508)] = 134527, - [SMALL_STATE(3509)] = 134549, - [SMALL_STATE(3510)] = 134571, - [SMALL_STATE(3511)] = 134593, - [SMALL_STATE(3512)] = 134615, - [SMALL_STATE(3513)] = 134641, - [SMALL_STATE(3514)] = 134663, - [SMALL_STATE(3515)] = 134677, - [SMALL_STATE(3516)] = 134703, - [SMALL_STATE(3517)] = 134725, - [SMALL_STATE(3518)] = 134747, - [SMALL_STATE(3519)] = 134769, - [SMALL_STATE(3520)] = 134791, - [SMALL_STATE(3521)] = 134809, - [SMALL_STATE(3522)] = 134831, - [SMALL_STATE(3523)] = 134845, - [SMALL_STATE(3524)] = 134871, - [SMALL_STATE(3525)] = 134889, - [SMALL_STATE(3526)] = 134915, - [SMALL_STATE(3527)] = 134941, - [SMALL_STATE(3528)] = 134955, - [SMALL_STATE(3529)] = 134981, - [SMALL_STATE(3530)] = 135007, - [SMALL_STATE(3531)] = 135033, - [SMALL_STATE(3532)] = 135059, - [SMALL_STATE(3533)] = 135085, - [SMALL_STATE(3534)] = 135107, - [SMALL_STATE(3535)] = 135129, - [SMALL_STATE(3536)] = 135151, - [SMALL_STATE(3537)] = 135169, - [SMALL_STATE(3538)] = 135187, - [SMALL_STATE(3539)] = 135209, - [SMALL_STATE(3540)] = 135231, - [SMALL_STATE(3541)] = 135253, - [SMALL_STATE(3542)] = 135271, - [SMALL_STATE(3543)] = 135293, - [SMALL_STATE(3544)] = 135311, - [SMALL_STATE(3545)] = 135333, - [SMALL_STATE(3546)] = 135359, - [SMALL_STATE(3547)] = 135381, - [SMALL_STATE(3548)] = 135397, - [SMALL_STATE(3549)] = 135419, - [SMALL_STATE(3550)] = 135445, - [SMALL_STATE(3551)] = 135467, - [SMALL_STATE(3552)] = 135489, - [SMALL_STATE(3553)] = 135503, - [SMALL_STATE(3554)] = 135525, - [SMALL_STATE(3555)] = 135547, - [SMALL_STATE(3556)] = 135569, - [SMALL_STATE(3557)] = 135591, - [SMALL_STATE(3558)] = 135613, - [SMALL_STATE(3559)] = 135635, - [SMALL_STATE(3560)] = 135653, - [SMALL_STATE(3561)] = 135667, - [SMALL_STATE(3562)] = 135689, - [SMALL_STATE(3563)] = 135711, - [SMALL_STATE(3564)] = 135725, - [SMALL_STATE(3565)] = 135747, - [SMALL_STATE(3566)] = 135769, - [SMALL_STATE(3567)] = 135791, - [SMALL_STATE(3568)] = 135805, - [SMALL_STATE(3569)] = 135831, - [SMALL_STATE(3570)] = 135853, - [SMALL_STATE(3571)] = 135879, - [SMALL_STATE(3572)] = 135901, - [SMALL_STATE(3573)] = 135919, - [SMALL_STATE(3574)] = 135933, - [SMALL_STATE(3575)] = 135951, - [SMALL_STATE(3576)] = 135969, - [SMALL_STATE(3577)] = 135991, - [SMALL_STATE(3578)] = 136013, - [SMALL_STATE(3579)] = 136035, - [SMALL_STATE(3580)] = 136057, - [SMALL_STATE(3581)] = 136079, - [SMALL_STATE(3582)] = 136101, - [SMALL_STATE(3583)] = 136127, - [SMALL_STATE(3584)] = 136149, - [SMALL_STATE(3585)] = 136171, - [SMALL_STATE(3586)] = 136187, - [SMALL_STATE(3587)] = 136209, - [SMALL_STATE(3588)] = 136231, - [SMALL_STATE(3589)] = 136247, - [SMALL_STATE(3590)] = 136273, - [SMALL_STATE(3591)] = 136289, - [SMALL_STATE(3592)] = 136315, - [SMALL_STATE(3593)] = 136337, - [SMALL_STATE(3594)] = 136355, - [SMALL_STATE(3595)] = 136377, - [SMALL_STATE(3596)] = 136399, - [SMALL_STATE(3597)] = 136417, - [SMALL_STATE(3598)] = 136439, - [SMALL_STATE(3599)] = 136453, - [SMALL_STATE(3600)] = 136475, - [SMALL_STATE(3601)] = 136501, - [SMALL_STATE(3602)] = 136519, - [SMALL_STATE(3603)] = 136541, - [SMALL_STATE(3604)] = 136563, - [SMALL_STATE(3605)] = 136585, - [SMALL_STATE(3606)] = 136607, - [SMALL_STATE(3607)] = 136623, - [SMALL_STATE(3608)] = 136641, - [SMALL_STATE(3609)] = 136663, - [SMALL_STATE(3610)] = 136679, - [SMALL_STATE(3611)] = 136695, - [SMALL_STATE(3612)] = 136721, - [SMALL_STATE(3613)] = 136743, - [SMALL_STATE(3614)] = 136765, - [SMALL_STATE(3615)] = 136787, - [SMALL_STATE(3616)] = 136809, - [SMALL_STATE(3617)] = 136831, - [SMALL_STATE(3618)] = 136857, - [SMALL_STATE(3619)] = 136873, - [SMALL_STATE(3620)] = 136893, - [SMALL_STATE(3621)] = 136909, - [SMALL_STATE(3622)] = 136935, - [SMALL_STATE(3623)] = 136961, - [SMALL_STATE(3624)] = 136981, - [SMALL_STATE(3625)] = 137007, - [SMALL_STATE(3626)] = 137023, - [SMALL_STATE(3627)] = 137045, - [SMALL_STATE(3628)] = 137063, - [SMALL_STATE(3629)] = 137085, - [SMALL_STATE(3630)] = 137105, - [SMALL_STATE(3631)] = 137125, - [SMALL_STATE(3632)] = 137143, - [SMALL_STATE(3633)] = 137165, - [SMALL_STATE(3634)] = 137187, - [SMALL_STATE(3635)] = 137209, - [SMALL_STATE(3636)] = 137223, - [SMALL_STATE(3637)] = 137245, - [SMALL_STATE(3638)] = 137267, - [SMALL_STATE(3639)] = 137281, - [SMALL_STATE(3640)] = 137299, - [SMALL_STATE(3641)] = 137325, - [SMALL_STATE(3642)] = 137343, - [SMALL_STATE(3643)] = 137361, - [SMALL_STATE(3644)] = 137383, - [SMALL_STATE(3645)] = 137405, - [SMALL_STATE(3646)] = 137427, - [SMALL_STATE(3647)] = 137447, - [SMALL_STATE(3648)] = 137469, - [SMALL_STATE(3649)] = 137485, - [SMALL_STATE(3650)] = 137507, - [SMALL_STATE(3651)] = 137533, - [SMALL_STATE(3652)] = 137553, - [SMALL_STATE(3653)] = 137575, - [SMALL_STATE(3654)] = 137601, - [SMALL_STATE(3655)] = 137627, - [SMALL_STATE(3656)] = 137649, - [SMALL_STATE(3657)] = 137663, - [SMALL_STATE(3658)] = 137685, - [SMALL_STATE(3659)] = 137707, - [SMALL_STATE(3660)] = 137727, - [SMALL_STATE(3661)] = 137753, - [SMALL_STATE(3662)] = 137775, - [SMALL_STATE(3663)] = 137801, - [SMALL_STATE(3664)] = 137827, - [SMALL_STATE(3665)] = 137849, - [SMALL_STATE(3666)] = 137875, - [SMALL_STATE(3667)] = 137895, - [SMALL_STATE(3668)] = 137917, - [SMALL_STATE(3669)] = 137939, - [SMALL_STATE(3670)] = 137953, - [SMALL_STATE(3671)] = 137975, - [SMALL_STATE(3672)] = 138001, - [SMALL_STATE(3673)] = 138023, - [SMALL_STATE(3674)] = 138045, - [SMALL_STATE(3675)] = 138059, - [SMALL_STATE(3676)] = 138081, - [SMALL_STATE(3677)] = 138103, - [SMALL_STATE(3678)] = 138125, - [SMALL_STATE(3679)] = 138143, - [SMALL_STATE(3680)] = 138161, - [SMALL_STATE(3681)] = 138183, - [SMALL_STATE(3682)] = 138201, - [SMALL_STATE(3683)] = 138219, - [SMALL_STATE(3684)] = 138241, - [SMALL_STATE(3685)] = 138263, - [SMALL_STATE(3686)] = 138285, - [SMALL_STATE(3687)] = 138307, - [SMALL_STATE(3688)] = 138329, - [SMALL_STATE(3689)] = 138351, - [SMALL_STATE(3690)] = 138373, - [SMALL_STATE(3691)] = 138399, - [SMALL_STATE(3692)] = 138421, - [SMALL_STATE(3693)] = 138443, - [SMALL_STATE(3694)] = 138465, - [SMALL_STATE(3695)] = 138491, - [SMALL_STATE(3696)] = 138507, - [SMALL_STATE(3697)] = 138527, - [SMALL_STATE(3698)] = 138545, - [SMALL_STATE(3699)] = 138571, - [SMALL_STATE(3700)] = 138597, - [SMALL_STATE(3701)] = 138611, - [SMALL_STATE(3702)] = 138633, - [SMALL_STATE(3703)] = 138655, - [SMALL_STATE(3704)] = 138681, - [SMALL_STATE(3705)] = 138705, - [SMALL_STATE(3706)] = 138727, - [SMALL_STATE(3707)] = 138749, - [SMALL_STATE(3708)] = 138771, - [SMALL_STATE(3709)] = 138793, - [SMALL_STATE(3710)] = 138819, - [SMALL_STATE(3711)] = 138845, - [SMALL_STATE(3712)] = 138867, - [SMALL_STATE(3713)] = 138889, - [SMALL_STATE(3714)] = 138911, - [SMALL_STATE(3715)] = 138933, - [SMALL_STATE(3716)] = 138955, - [SMALL_STATE(3717)] = 138977, - [SMALL_STATE(3718)] = 138999, - [SMALL_STATE(3719)] = 139021, - [SMALL_STATE(3720)] = 139043, - [SMALL_STATE(3721)] = 139069, - [SMALL_STATE(3722)] = 139091, - [SMALL_STATE(3723)] = 139113, - [SMALL_STATE(3724)] = 139132, - [SMALL_STATE(3725)] = 139147, - [SMALL_STATE(3726)] = 139170, - [SMALL_STATE(3727)] = 139185, - [SMALL_STATE(3728)] = 139200, - [SMALL_STATE(3729)] = 139223, - [SMALL_STATE(3730)] = 139236, - [SMALL_STATE(3731)] = 139249, - [SMALL_STATE(3732)] = 139272, - [SMALL_STATE(3733)] = 139285, - [SMALL_STATE(3734)] = 139308, - [SMALL_STATE(3735)] = 139331, - [SMALL_STATE(3736)] = 139348, - [SMALL_STATE(3737)] = 139365, - [SMALL_STATE(3738)] = 139388, - [SMALL_STATE(3739)] = 139407, - [SMALL_STATE(3740)] = 139420, - [SMALL_STATE(3741)] = 139435, - [SMALL_STATE(3742)] = 139450, - [SMALL_STATE(3743)] = 139467, - [SMALL_STATE(3744)] = 139484, - [SMALL_STATE(3745)] = 139499, - [SMALL_STATE(3746)] = 139516, - [SMALL_STATE(3747)] = 139531, - [SMALL_STATE(3748)] = 139554, - [SMALL_STATE(3749)] = 139571, - [SMALL_STATE(3750)] = 139594, - [SMALL_STATE(3751)] = 139613, - [SMALL_STATE(3752)] = 139628, - [SMALL_STATE(3753)] = 139645, - [SMALL_STATE(3754)] = 139662, - [SMALL_STATE(3755)] = 139677, - [SMALL_STATE(3756)] = 139692, - [SMALL_STATE(3757)] = 139715, - [SMALL_STATE(3758)] = 139738, - [SMALL_STATE(3759)] = 139761, - [SMALL_STATE(3760)] = 139778, - [SMALL_STATE(3761)] = 139791, - [SMALL_STATE(3762)] = 139806, - [SMALL_STATE(3763)] = 139823, - [SMALL_STATE(3764)] = 139838, - [SMALL_STATE(3765)] = 139853, - [SMALL_STATE(3766)] = 139868, - [SMALL_STATE(3767)] = 139885, - [SMALL_STATE(3768)] = 139908, - [SMALL_STATE(3769)] = 139923, - [SMALL_STATE(3770)] = 139940, - [SMALL_STATE(3771)] = 139963, - [SMALL_STATE(3772)] = 139980, - [SMALL_STATE(3773)] = 140003, - [SMALL_STATE(3774)] = 140026, - [SMALL_STATE(3775)] = 140045, - [SMALL_STATE(3776)] = 140068, - [SMALL_STATE(3777)] = 140085, - [SMALL_STATE(3778)] = 140102, - [SMALL_STATE(3779)] = 140117, - [SMALL_STATE(3780)] = 140136, - [SMALL_STATE(3781)] = 140151, - [SMALL_STATE(3782)] = 140170, - [SMALL_STATE(3783)] = 140185, - [SMALL_STATE(3784)] = 140204, - [SMALL_STATE(3785)] = 140223, - [SMALL_STATE(3786)] = 140238, - [SMALL_STATE(3787)] = 140255, - [SMALL_STATE(3788)] = 140272, - [SMALL_STATE(3789)] = 140295, - [SMALL_STATE(3790)] = 140308, - [SMALL_STATE(3791)] = 140325, - [SMALL_STATE(3792)] = 140342, - [SMALL_STATE(3793)] = 140357, - [SMALL_STATE(3794)] = 140372, - [SMALL_STATE(3795)] = 140387, - [SMALL_STATE(3796)] = 140404, - [SMALL_STATE(3797)] = 140427, - [SMALL_STATE(3798)] = 140450, - [SMALL_STATE(3799)] = 140473, - [SMALL_STATE(3800)] = 140490, - [SMALL_STATE(3801)] = 140513, - [SMALL_STATE(3802)] = 140536, - [SMALL_STATE(3803)] = 140553, - [SMALL_STATE(3804)] = 140570, - [SMALL_STATE(3805)] = 140587, - [SMALL_STATE(3806)] = 140604, - [SMALL_STATE(3807)] = 140627, - [SMALL_STATE(3808)] = 140644, - [SMALL_STATE(3809)] = 140667, - [SMALL_STATE(3810)] = 140684, - [SMALL_STATE(3811)] = 140701, - [SMALL_STATE(3812)] = 140716, - [SMALL_STATE(3813)] = 140735, - [SMALL_STATE(3814)] = 140750, - [SMALL_STATE(3815)] = 140769, - [SMALL_STATE(3816)] = 140784, - [SMALL_STATE(3817)] = 140799, - [SMALL_STATE(3818)] = 140822, - [SMALL_STATE(3819)] = 140845, - [SMALL_STATE(3820)] = 140864, - [SMALL_STATE(3821)] = 140883, - [SMALL_STATE(3822)] = 140900, - [SMALL_STATE(3823)] = 140923, - [SMALL_STATE(3824)] = 140946, - [SMALL_STATE(3825)] = 140969, - [SMALL_STATE(3826)] = 140986, - [SMALL_STATE(3827)] = 141003, - [SMALL_STATE(3828)] = 141024, - [SMALL_STATE(3829)] = 141043, - [SMALL_STATE(3830)] = 141062, - [SMALL_STATE(3831)] = 141079, - [SMALL_STATE(3832)] = 141096, - [SMALL_STATE(3833)] = 141119, - [SMALL_STATE(3834)] = 141142, - [SMALL_STATE(3835)] = 141165, - [SMALL_STATE(3836)] = 141178, - [SMALL_STATE(3837)] = 141201, - [SMALL_STATE(3838)] = 141220, - [SMALL_STATE(3839)] = 141235, - [SMALL_STATE(3840)] = 141258, - [SMALL_STATE(3841)] = 141281, - [SMALL_STATE(3842)] = 141304, - [SMALL_STATE(3843)] = 141327, - [SMALL_STATE(3844)] = 141350, - [SMALL_STATE(3845)] = 141373, - [SMALL_STATE(3846)] = 141388, - [SMALL_STATE(3847)] = 141401, - [SMALL_STATE(3848)] = 141418, - [SMALL_STATE(3849)] = 141441, - [SMALL_STATE(3850)] = 141458, - [SMALL_STATE(3851)] = 141481, - [SMALL_STATE(3852)] = 141496, - [SMALL_STATE(3853)] = 141519, - [SMALL_STATE(3854)] = 141542, - [SMALL_STATE(3855)] = 141565, - [SMALL_STATE(3856)] = 141580, - [SMALL_STATE(3857)] = 141593, - [SMALL_STATE(3858)] = 141606, - [SMALL_STATE(3859)] = 141625, - [SMALL_STATE(3860)] = 141646, - [SMALL_STATE(3861)] = 141669, - [SMALL_STATE(3862)] = 141682, - [SMALL_STATE(3863)] = 141703, - [SMALL_STATE(3864)] = 141726, - [SMALL_STATE(3865)] = 141743, - [SMALL_STATE(3866)] = 141762, - [SMALL_STATE(3867)] = 141781, - [SMALL_STATE(3868)] = 141798, - [SMALL_STATE(3869)] = 141817, - [SMALL_STATE(3870)] = 141832, - [SMALL_STATE(3871)] = 141849, - [SMALL_STATE(3872)] = 141866, - [SMALL_STATE(3873)] = 141883, - [SMALL_STATE(3874)] = 141900, - [SMALL_STATE(3875)] = 141917, - [SMALL_STATE(3876)] = 141934, - [SMALL_STATE(3877)] = 141957, - [SMALL_STATE(3878)] = 141972, - [SMALL_STATE(3879)] = 141995, - [SMALL_STATE(3880)] = 142018, - [SMALL_STATE(3881)] = 142041, - [SMALL_STATE(3882)] = 142064, - [SMALL_STATE(3883)] = 142081, - [SMALL_STATE(3884)] = 142096, - [SMALL_STATE(3885)] = 142119, - [SMALL_STATE(3886)] = 142136, - [SMALL_STATE(3887)] = 142153, - [SMALL_STATE(3888)] = 142168, - [SMALL_STATE(3889)] = 142181, - [SMALL_STATE(3890)] = 142204, - [SMALL_STATE(3891)] = 142227, - [SMALL_STATE(3892)] = 142250, - [SMALL_STATE(3893)] = 142273, - [SMALL_STATE(3894)] = 142290, - [SMALL_STATE(3895)] = 142305, - [SMALL_STATE(3896)] = 142328, - [SMALL_STATE(3897)] = 142341, - [SMALL_STATE(3898)] = 142364, - [SMALL_STATE(3899)] = 142387, - [SMALL_STATE(3900)] = 142402, - [SMALL_STATE(3901)] = 142415, - [SMALL_STATE(3902)] = 142432, - [SMALL_STATE(3903)] = 142451, - [SMALL_STATE(3904)] = 142466, - [SMALL_STATE(3905)] = 142489, - [SMALL_STATE(3906)] = 142512, - [SMALL_STATE(3907)] = 142535, - [SMALL_STATE(3908)] = 142552, - [SMALL_STATE(3909)] = 142575, - [SMALL_STATE(3910)] = 142592, - [SMALL_STATE(3911)] = 142615, - [SMALL_STATE(3912)] = 142632, - [SMALL_STATE(3913)] = 142649, - [SMALL_STATE(3914)] = 142668, - [SMALL_STATE(3915)] = 142691, - [SMALL_STATE(3916)] = 142707, - [SMALL_STATE(3917)] = 142723, - [SMALL_STATE(3918)] = 142739, - [SMALL_STATE(3919)] = 142753, - [SMALL_STATE(3920)] = 142769, - [SMALL_STATE(3921)] = 142781, - [SMALL_STATE(3922)] = 142793, - [SMALL_STATE(3923)] = 142805, - [SMALL_STATE(3924)] = 142821, - [SMALL_STATE(3925)] = 142837, - [SMALL_STATE(3926)] = 142853, - [SMALL_STATE(3927)] = 142869, - [SMALL_STATE(3928)] = 142885, - [SMALL_STATE(3929)] = 142901, - [SMALL_STATE(3930)] = 142917, - [SMALL_STATE(3931)] = 142933, - [SMALL_STATE(3932)] = 142947, - [SMALL_STATE(3933)] = 142963, - [SMALL_STATE(3934)] = 142975, - [SMALL_STATE(3935)] = 142991, - [SMALL_STATE(3936)] = 143003, - [SMALL_STATE(3937)] = 143015, - [SMALL_STATE(3938)] = 143027, - [SMALL_STATE(3939)] = 143043, - [SMALL_STATE(3940)] = 143055, - [SMALL_STATE(3941)] = 143067, - [SMALL_STATE(3942)] = 143079, - [SMALL_STATE(3943)] = 143091, - [SMALL_STATE(3944)] = 143103, - [SMALL_STATE(3945)] = 143115, - [SMALL_STATE(3946)] = 143127, - [SMALL_STATE(3947)] = 143139, - [SMALL_STATE(3948)] = 143151, - [SMALL_STATE(3949)] = 143167, - [SMALL_STATE(3950)] = 143183, - [SMALL_STATE(3951)] = 143203, - [SMALL_STATE(3952)] = 143219, - [SMALL_STATE(3953)] = 143235, - [SMALL_STATE(3954)] = 143247, - [SMALL_STATE(3955)] = 143259, - [SMALL_STATE(3956)] = 143271, - [SMALL_STATE(3957)] = 143283, - [SMALL_STATE(3958)] = 143301, - [SMALL_STATE(3959)] = 143317, - [SMALL_STATE(3960)] = 143333, - [SMALL_STATE(3961)] = 143349, - [SMALL_STATE(3962)] = 143367, - [SMALL_STATE(3963)] = 143383, - [SMALL_STATE(3964)] = 143399, - [SMALL_STATE(3965)] = 143415, - [SMALL_STATE(3966)] = 143431, - [SMALL_STATE(3967)] = 143447, - [SMALL_STATE(3968)] = 143463, - [SMALL_STATE(3969)] = 143475, - [SMALL_STATE(3970)] = 143491, - [SMALL_STATE(3971)] = 143507, - [SMALL_STATE(3972)] = 143523, - [SMALL_STATE(3973)] = 143539, - [SMALL_STATE(3974)] = 143555, - [SMALL_STATE(3975)] = 143571, - [SMALL_STATE(3976)] = 143583, - [SMALL_STATE(3977)] = 143603, - [SMALL_STATE(3978)] = 143615, - [SMALL_STATE(3979)] = 143627, - [SMALL_STATE(3980)] = 143639, - [SMALL_STATE(3981)] = 143659, - [SMALL_STATE(3982)] = 143675, - [SMALL_STATE(3983)] = 143695, - [SMALL_STATE(3984)] = 143715, - [SMALL_STATE(3985)] = 143731, - [SMALL_STATE(3986)] = 143747, - [SMALL_STATE(3987)] = 143759, - [SMALL_STATE(3988)] = 143771, - [SMALL_STATE(3989)] = 143783, - [SMALL_STATE(3990)] = 143795, - [SMALL_STATE(3991)] = 143813, - [SMALL_STATE(3992)] = 143833, - [SMALL_STATE(3993)] = 143849, - [SMALL_STATE(3994)] = 143865, - [SMALL_STATE(3995)] = 143881, - [SMALL_STATE(3996)] = 143901, - [SMALL_STATE(3997)] = 143915, - [SMALL_STATE(3998)] = 143933, - [SMALL_STATE(3999)] = 143945, - [SMALL_STATE(4000)] = 143957, - [SMALL_STATE(4001)] = 143969, - [SMALL_STATE(4002)] = 143985, - [SMALL_STATE(4003)] = 143997, - [SMALL_STATE(4004)] = 144009, - [SMALL_STATE(4005)] = 144021, - [SMALL_STATE(4006)] = 144033, - [SMALL_STATE(4007)] = 144045, - [SMALL_STATE(4008)] = 144057, - [SMALL_STATE(4009)] = 144069, - [SMALL_STATE(4010)] = 144089, - [SMALL_STATE(4011)] = 144105, - [SMALL_STATE(4012)] = 144123, - [SMALL_STATE(4013)] = 144143, - [SMALL_STATE(4014)] = 144163, - [SMALL_STATE(4015)] = 144183, - [SMALL_STATE(4016)] = 144195, - [SMALL_STATE(4017)] = 144211, - [SMALL_STATE(4018)] = 144229, - [SMALL_STATE(4019)] = 144245, - [SMALL_STATE(4020)] = 144261, - [SMALL_STATE(4021)] = 144281, - [SMALL_STATE(4022)] = 144297, - [SMALL_STATE(4023)] = 144313, - [SMALL_STATE(4024)] = 144333, - [SMALL_STATE(4025)] = 144349, - [SMALL_STATE(4026)] = 144365, - [SMALL_STATE(4027)] = 144377, - [SMALL_STATE(4028)] = 144389, - [SMALL_STATE(4029)] = 144409, - [SMALL_STATE(4030)] = 144421, - [SMALL_STATE(4031)] = 144441, - [SMALL_STATE(4032)] = 144455, - [SMALL_STATE(4033)] = 144467, - [SMALL_STATE(4034)] = 144485, - [SMALL_STATE(4035)] = 144497, - [SMALL_STATE(4036)] = 144509, - [SMALL_STATE(4037)] = 144529, - [SMALL_STATE(4038)] = 144541, - [SMALL_STATE(4039)] = 144553, - [SMALL_STATE(4040)] = 144569, - [SMALL_STATE(4041)] = 144581, - [SMALL_STATE(4042)] = 144593, - [SMALL_STATE(4043)] = 144605, - [SMALL_STATE(4044)] = 144621, - [SMALL_STATE(4045)] = 144633, - [SMALL_STATE(4046)] = 144649, - [SMALL_STATE(4047)] = 144665, - [SMALL_STATE(4048)] = 144683, - [SMALL_STATE(4049)] = 144695, - [SMALL_STATE(4050)] = 144707, - [SMALL_STATE(4051)] = 144721, - [SMALL_STATE(4052)] = 144735, - [SMALL_STATE(4053)] = 144747, - [SMALL_STATE(4054)] = 144767, - [SMALL_STATE(4055)] = 144779, - [SMALL_STATE(4056)] = 144791, - [SMALL_STATE(4057)] = 144807, - [SMALL_STATE(4058)] = 144823, - [SMALL_STATE(4059)] = 144841, - [SMALL_STATE(4060)] = 144853, - [SMALL_STATE(4061)] = 144867, - [SMALL_STATE(4062)] = 144887, - [SMALL_STATE(4063)] = 144899, - [SMALL_STATE(4064)] = 144911, - [SMALL_STATE(4065)] = 144931, - [SMALL_STATE(4066)] = 144943, - [SMALL_STATE(4067)] = 144955, - [SMALL_STATE(4068)] = 144975, - [SMALL_STATE(4069)] = 144995, - [SMALL_STATE(4070)] = 145015, - [SMALL_STATE(4071)] = 145031, - [SMALL_STATE(4072)] = 145043, - [SMALL_STATE(4073)] = 145055, - [SMALL_STATE(4074)] = 145067, - [SMALL_STATE(4075)] = 145079, - [SMALL_STATE(4076)] = 145091, - [SMALL_STATE(4077)] = 145103, - [SMALL_STATE(4078)] = 145115, - [SMALL_STATE(4079)] = 145135, - [SMALL_STATE(4080)] = 145155, - [SMALL_STATE(4081)] = 145171, - [SMALL_STATE(4082)] = 145183, - [SMALL_STATE(4083)] = 145195, - [SMALL_STATE(4084)] = 145211, - [SMALL_STATE(4085)] = 145227, - [SMALL_STATE(4086)] = 145245, - [SMALL_STATE(4087)] = 145263, - [SMALL_STATE(4088)] = 145279, - [SMALL_STATE(4089)] = 145293, - [SMALL_STATE(4090)] = 145313, - [SMALL_STATE(4091)] = 145333, - [SMALL_STATE(4092)] = 145349, - [SMALL_STATE(4093)] = 145365, - [SMALL_STATE(4094)] = 145385, - [SMALL_STATE(4095)] = 145403, - [SMALL_STATE(4096)] = 145415, - [SMALL_STATE(4097)] = 145427, - [SMALL_STATE(4098)] = 145439, - [SMALL_STATE(4099)] = 145451, - [SMALL_STATE(4100)] = 145469, - [SMALL_STATE(4101)] = 145489, - [SMALL_STATE(4102)] = 145501, - [SMALL_STATE(4103)] = 145513, - [SMALL_STATE(4104)] = 145525, - [SMALL_STATE(4105)] = 145541, - [SMALL_STATE(4106)] = 145553, - [SMALL_STATE(4107)] = 145565, - [SMALL_STATE(4108)] = 145577, - [SMALL_STATE(4109)] = 145593, - [SMALL_STATE(4110)] = 145613, - [SMALL_STATE(4111)] = 145631, - [SMALL_STATE(4112)] = 145651, - [SMALL_STATE(4113)] = 145667, - [SMALL_STATE(4114)] = 145683, - [SMALL_STATE(4115)] = 145699, - [SMALL_STATE(4116)] = 145715, - [SMALL_STATE(4117)] = 145731, - [SMALL_STATE(4118)] = 145751, - [SMALL_STATE(4119)] = 145767, - [SMALL_STATE(4120)] = 145783, - [SMALL_STATE(4121)] = 145795, - [SMALL_STATE(4122)] = 145807, - [SMALL_STATE(4123)] = 145819, - [SMALL_STATE(4124)] = 145831, - [SMALL_STATE(4125)] = 145843, - [SMALL_STATE(4126)] = 145863, - [SMALL_STATE(4127)] = 145881, - [SMALL_STATE(4128)] = 145897, - [SMALL_STATE(4129)] = 145913, - [SMALL_STATE(4130)] = 145929, - [SMALL_STATE(4131)] = 145945, - [SMALL_STATE(4132)] = 145963, - [SMALL_STATE(4133)] = 145977, - [SMALL_STATE(4134)] = 145993, - [SMALL_STATE(4135)] = 146009, - [SMALL_STATE(4136)] = 146025, - [SMALL_STATE(4137)] = 146041, - [SMALL_STATE(4138)] = 146057, - [SMALL_STATE(4139)] = 146075, - [SMALL_STATE(4140)] = 146091, - [SMALL_STATE(4141)] = 146111, - [SMALL_STATE(4142)] = 146127, - [SMALL_STATE(4143)] = 146143, - [SMALL_STATE(4144)] = 146161, - [SMALL_STATE(4145)] = 146177, - [SMALL_STATE(4146)] = 146193, - [SMALL_STATE(4147)] = 146209, - [SMALL_STATE(4148)] = 146221, - [SMALL_STATE(4149)] = 146237, - [SMALL_STATE(4150)] = 146253, - [SMALL_STATE(4151)] = 146269, - [SMALL_STATE(4152)] = 146281, - [SMALL_STATE(4153)] = 146297, - [SMALL_STATE(4154)] = 146309, - [SMALL_STATE(4155)] = 146321, - [SMALL_STATE(4156)] = 146341, - [SMALL_STATE(4157)] = 146357, - [SMALL_STATE(4158)] = 146373, - [SMALL_STATE(4159)] = 146393, - [SMALL_STATE(4160)] = 146413, - [SMALL_STATE(4161)] = 146429, - [SMALL_STATE(4162)] = 146445, - [SMALL_STATE(4163)] = 146461, - [SMALL_STATE(4164)] = 146477, - [SMALL_STATE(4165)] = 146495, - [SMALL_STATE(4166)] = 146511, - [SMALL_STATE(4167)] = 146527, - [SMALL_STATE(4168)] = 146543, - [SMALL_STATE(4169)] = 146559, - [SMALL_STATE(4170)] = 146575, - [SMALL_STATE(4171)] = 146595, - [SMALL_STATE(4172)] = 146611, - [SMALL_STATE(4173)] = 146627, - [SMALL_STATE(4174)] = 146643, - [SMALL_STATE(4175)] = 146663, - [SMALL_STATE(4176)] = 146683, - [SMALL_STATE(4177)] = 146699, - [SMALL_STATE(4178)] = 146719, - [SMALL_STATE(4179)] = 146739, - [SMALL_STATE(4180)] = 146755, - [SMALL_STATE(4181)] = 146775, - [SMALL_STATE(4182)] = 146791, - [SMALL_STATE(4183)] = 146811, - [SMALL_STATE(4184)] = 146827, - [SMALL_STATE(4185)] = 146843, - [SMALL_STATE(4186)] = 146859, - [SMALL_STATE(4187)] = 146875, - [SMALL_STATE(4188)] = 146891, - [SMALL_STATE(4189)] = 146907, - [SMALL_STATE(4190)] = 146923, - [SMALL_STATE(4191)] = 146939, - [SMALL_STATE(4192)] = 146955, - [SMALL_STATE(4193)] = 146975, - [SMALL_STATE(4194)] = 146995, - [SMALL_STATE(4195)] = 147011, - [SMALL_STATE(4196)] = 147031, - [SMALL_STATE(4197)] = 147051, - [SMALL_STATE(4198)] = 147067, - [SMALL_STATE(4199)] = 147083, - [SMALL_STATE(4200)] = 147099, - [SMALL_STATE(4201)] = 147115, - [SMALL_STATE(4202)] = 147131, - [SMALL_STATE(4203)] = 147151, - [SMALL_STATE(4204)] = 147171, - [SMALL_STATE(4205)] = 147183, - [SMALL_STATE(4206)] = 147195, - [SMALL_STATE(4207)] = 147215, - [SMALL_STATE(4208)] = 147235, - [SMALL_STATE(4209)] = 147251, - [SMALL_STATE(4210)] = 147267, - [SMALL_STATE(4211)] = 147287, - [SMALL_STATE(4212)] = 147299, - [SMALL_STATE(4213)] = 147319, - [SMALL_STATE(4214)] = 147331, - [SMALL_STATE(4215)] = 147343, - [SMALL_STATE(4216)] = 147355, - [SMALL_STATE(4217)] = 147367, - [SMALL_STATE(4218)] = 147379, - [SMALL_STATE(4219)] = 147391, - [SMALL_STATE(4220)] = 147411, - [SMALL_STATE(4221)] = 147423, - [SMALL_STATE(4222)] = 147435, - [SMALL_STATE(4223)] = 147455, - [SMALL_STATE(4224)] = 147467, - [SMALL_STATE(4225)] = 147487, - [SMALL_STATE(4226)] = 147507, - [SMALL_STATE(4227)] = 147519, - [SMALL_STATE(4228)] = 147537, - [SMALL_STATE(4229)] = 147553, - [SMALL_STATE(4230)] = 147569, - [SMALL_STATE(4231)] = 147585, - [SMALL_STATE(4232)] = 147601, - [SMALL_STATE(4233)] = 147617, - [SMALL_STATE(4234)] = 147635, - [SMALL_STATE(4235)] = 147655, - [SMALL_STATE(4236)] = 147675, - [SMALL_STATE(4237)] = 147691, - [SMALL_STATE(4238)] = 147707, - [SMALL_STATE(4239)] = 147721, - [SMALL_STATE(4240)] = 147735, - [SMALL_STATE(4241)] = 147751, - [SMALL_STATE(4242)] = 147767, - [SMALL_STATE(4243)] = 147783, - [SMALL_STATE(4244)] = 147799, - [SMALL_STATE(4245)] = 147815, - [SMALL_STATE(4246)] = 147831, - [SMALL_STATE(4247)] = 147847, - [SMALL_STATE(4248)] = 147863, - [SMALL_STATE(4249)] = 147879, - [SMALL_STATE(4250)] = 147895, - [SMALL_STATE(4251)] = 147907, - [SMALL_STATE(4252)] = 147925, - [SMALL_STATE(4253)] = 147945, - [SMALL_STATE(4254)] = 147961, - [SMALL_STATE(4255)] = 147977, - [SMALL_STATE(4256)] = 147997, - [SMALL_STATE(4257)] = 148017, - [SMALL_STATE(4258)] = 148033, - [SMALL_STATE(4259)] = 148053, - [SMALL_STATE(4260)] = 148067, - [SMALL_STATE(4261)] = 148081, - [SMALL_STATE(4262)] = 148101, - [SMALL_STATE(4263)] = 148113, - [SMALL_STATE(4264)] = 148133, - [SMALL_STATE(4265)] = 148149, - [SMALL_STATE(4266)] = 148165, - [SMALL_STATE(4267)] = 148181, - [SMALL_STATE(4268)] = 148197, - [SMALL_STATE(4269)] = 148209, - [SMALL_STATE(4270)] = 148225, - [SMALL_STATE(4271)] = 148245, - [SMALL_STATE(4272)] = 148265, - [SMALL_STATE(4273)] = 148281, - [SMALL_STATE(4274)] = 148293, - [SMALL_STATE(4275)] = 148305, - [SMALL_STATE(4276)] = 148319, - [SMALL_STATE(4277)] = 148333, - [SMALL_STATE(4278)] = 148349, - [SMALL_STATE(4279)] = 148365, - [SMALL_STATE(4280)] = 148379, - [SMALL_STATE(4281)] = 148393, - [SMALL_STATE(4282)] = 148409, - [SMALL_STATE(4283)] = 148425, - [SMALL_STATE(4284)] = 148443, - [SMALL_STATE(4285)] = 148455, - [SMALL_STATE(4286)] = 148471, - [SMALL_STATE(4287)] = 148487, - [SMALL_STATE(4288)] = 148503, - [SMALL_STATE(4289)] = 148519, - [SMALL_STATE(4290)] = 148535, - [SMALL_STATE(4291)] = 148551, - [SMALL_STATE(4292)] = 148567, - [SMALL_STATE(4293)] = 148581, - [SMALL_STATE(4294)] = 148595, - [SMALL_STATE(4295)] = 148609, - [SMALL_STATE(4296)] = 148623, - [SMALL_STATE(4297)] = 148635, - [SMALL_STATE(4298)] = 148649, - [SMALL_STATE(4299)] = 148669, - [SMALL_STATE(4300)] = 148683, - [SMALL_STATE(4301)] = 148695, - [SMALL_STATE(4302)] = 148707, - [SMALL_STATE(4303)] = 148727, - [SMALL_STATE(4304)] = 148739, - [SMALL_STATE(4305)] = 148759, - [SMALL_STATE(4306)] = 148775, - [SMALL_STATE(4307)] = 148791, - [SMALL_STATE(4308)] = 148803, - [SMALL_STATE(4309)] = 148817, - [SMALL_STATE(4310)] = 148831, - [SMALL_STATE(4311)] = 148843, - [SMALL_STATE(4312)] = 148855, - [SMALL_STATE(4313)] = 148871, - [SMALL_STATE(4314)] = 148891, - [SMALL_STATE(4315)] = 148907, - [SMALL_STATE(4316)] = 148923, - [SMALL_STATE(4317)] = 148939, - [SMALL_STATE(4318)] = 148959, - [SMALL_STATE(4319)] = 148975, - [SMALL_STATE(4320)] = 148989, - [SMALL_STATE(4321)] = 149003, - [SMALL_STATE(4322)] = 149019, - [SMALL_STATE(4323)] = 149035, - [SMALL_STATE(4324)] = 149051, - [SMALL_STATE(4325)] = 149069, - [SMALL_STATE(4326)] = 149085, - [SMALL_STATE(4327)] = 149101, - [SMALL_STATE(4328)] = 149117, - [SMALL_STATE(4329)] = 149133, - [SMALL_STATE(4330)] = 149145, - [SMALL_STATE(4331)] = 149157, - [SMALL_STATE(4332)] = 149177, - [SMALL_STATE(4333)] = 149189, - [SMALL_STATE(4334)] = 149209, - [SMALL_STATE(4335)] = 149221, - [SMALL_STATE(4336)] = 149237, - [SMALL_STATE(4337)] = 149249, - [SMALL_STATE(4338)] = 149269, - [SMALL_STATE(4339)] = 149285, - [SMALL_STATE(4340)] = 149301, - [SMALL_STATE(4341)] = 149317, - [SMALL_STATE(4342)] = 149333, - [SMALL_STATE(4343)] = 149345, - [SMALL_STATE(4344)] = 149357, - [SMALL_STATE(4345)] = 149373, - [SMALL_STATE(4346)] = 149389, - [SMALL_STATE(4347)] = 149401, - [SMALL_STATE(4348)] = 149419, - [SMALL_STATE(4349)] = 149439, - [SMALL_STATE(4350)] = 149451, - [SMALL_STATE(4351)] = 149471, - [SMALL_STATE(4352)] = 149487, - [SMALL_STATE(4353)] = 149503, - [SMALL_STATE(4354)] = 149523, - [SMALL_STATE(4355)] = 149543, - [SMALL_STATE(4356)] = 149559, - [SMALL_STATE(4357)] = 149575, - [SMALL_STATE(4358)] = 149587, - [SMALL_STATE(4359)] = 149599, - [SMALL_STATE(4360)] = 149615, - [SMALL_STATE(4361)] = 149627, - [SMALL_STATE(4362)] = 149639, - [SMALL_STATE(4363)] = 149655, - [SMALL_STATE(4364)] = 149667, - [SMALL_STATE(4365)] = 149679, - [SMALL_STATE(4366)] = 149691, - [SMALL_STATE(4367)] = 149709, - [SMALL_STATE(4368)] = 149725, - [SMALL_STATE(4369)] = 149741, - [SMALL_STATE(4370)] = 149753, - [SMALL_STATE(4371)] = 149765, - [SMALL_STATE(4372)] = 149781, - [SMALL_STATE(4373)] = 149793, - [SMALL_STATE(4374)] = 149809, - [SMALL_STATE(4375)] = 149825, - [SMALL_STATE(4376)] = 149845, - [SMALL_STATE(4377)] = 149865, - [SMALL_STATE(4378)] = 149885, - [SMALL_STATE(4379)] = 149905, - [SMALL_STATE(4380)] = 149917, - [SMALL_STATE(4381)] = 149933, - [SMALL_STATE(4382)] = 149945, - [SMALL_STATE(4383)] = 149961, - [SMALL_STATE(4384)] = 149973, - [SMALL_STATE(4385)] = 149989, - [SMALL_STATE(4386)] = 150005, - [SMALL_STATE(4387)] = 150021, - [SMALL_STATE(4388)] = 150037, - [SMALL_STATE(4389)] = 150053, - [SMALL_STATE(4390)] = 150069, - [SMALL_STATE(4391)] = 150085, - [SMALL_STATE(4392)] = 150099, - [SMALL_STATE(4393)] = 150113, - [SMALL_STATE(4394)] = 150131, - [SMALL_STATE(4395)] = 150149, - [SMALL_STATE(4396)] = 150165, - [SMALL_STATE(4397)] = 150183, - [SMALL_STATE(4398)] = 150199, - [SMALL_STATE(4399)] = 150219, - [SMALL_STATE(4400)] = 150231, - [SMALL_STATE(4401)] = 150247, - [SMALL_STATE(4402)] = 150263, - [SMALL_STATE(4403)] = 150275, - [SMALL_STATE(4404)] = 150287, - [SMALL_STATE(4405)] = 150299, - [SMALL_STATE(4406)] = 150311, - [SMALL_STATE(4407)] = 150327, - [SMALL_STATE(4408)] = 150343, - [SMALL_STATE(4409)] = 150363, - [SMALL_STATE(4410)] = 150379, - [SMALL_STATE(4411)] = 150399, - [SMALL_STATE(4412)] = 150419, - [SMALL_STATE(4413)] = 150431, - [SMALL_STATE(4414)] = 150447, - [SMALL_STATE(4415)] = 150463, - [SMALL_STATE(4416)] = 150479, - [SMALL_STATE(4417)] = 150495, - [SMALL_STATE(4418)] = 150511, - [SMALL_STATE(4419)] = 150527, - [SMALL_STATE(4420)] = 150547, - [SMALL_STATE(4421)] = 150562, - [SMALL_STATE(4422)] = 150579, - [SMALL_STATE(4423)] = 150594, - [SMALL_STATE(4424)] = 150611, - [SMALL_STATE(4425)] = 150628, - [SMALL_STATE(4426)] = 150641, - [SMALL_STATE(4427)] = 150658, - [SMALL_STATE(4428)] = 150675, - [SMALL_STATE(4429)] = 150692, - [SMALL_STATE(4430)] = 150709, - [SMALL_STATE(4431)] = 150726, - [SMALL_STATE(4432)] = 150743, - [SMALL_STATE(4433)] = 150760, - [SMALL_STATE(4434)] = 150775, - [SMALL_STATE(4435)] = 150792, - [SMALL_STATE(4436)] = 150807, - [SMALL_STATE(4437)] = 150822, - [SMALL_STATE(4438)] = 150835, - [SMALL_STATE(4439)] = 150852, - [SMALL_STATE(4440)] = 150867, - [SMALL_STATE(4441)] = 150884, - [SMALL_STATE(4442)] = 150899, - [SMALL_STATE(4443)] = 150914, - [SMALL_STATE(4444)] = 150931, - [SMALL_STATE(4445)] = 150948, - [SMALL_STATE(4446)] = 150963, - [SMALL_STATE(4447)] = 150980, - [SMALL_STATE(4448)] = 150999, - [SMALL_STATE(4449)] = 151016, - [SMALL_STATE(4450)] = 151035, - [SMALL_STATE(4451)] = 151052, - [SMALL_STATE(4452)] = 151069, - [SMALL_STATE(4453)] = 151084, - [SMALL_STATE(4454)] = 151101, - [SMALL_STATE(4455)] = 151118, - [SMALL_STATE(4456)] = 151135, - [SMALL_STATE(4457)] = 151150, - [SMALL_STATE(4458)] = 151167, - [SMALL_STATE(4459)] = 151184, - [SMALL_STATE(4460)] = 151201, - [SMALL_STATE(4461)] = 151218, - [SMALL_STATE(4462)] = 151235, - [SMALL_STATE(4463)] = 151246, - [SMALL_STATE(4464)] = 151263, - [SMALL_STATE(4465)] = 151274, - [SMALL_STATE(4466)] = 151291, - [SMALL_STATE(4467)] = 151308, - [SMALL_STATE(4468)] = 151325, - [SMALL_STATE(4469)] = 151342, - [SMALL_STATE(4470)] = 151359, - [SMALL_STATE(4471)] = 151374, - [SMALL_STATE(4472)] = 151391, - [SMALL_STATE(4473)] = 151408, - [SMALL_STATE(4474)] = 151425, - [SMALL_STATE(4475)] = 151442, - [SMALL_STATE(4476)] = 151457, - [SMALL_STATE(4477)] = 151474, - [SMALL_STATE(4478)] = 151491, - [SMALL_STATE(4479)] = 151508, - [SMALL_STATE(4480)] = 151525, - [SMALL_STATE(4481)] = 151542, - [SMALL_STATE(4482)] = 151557, - [SMALL_STATE(4483)] = 151574, - [SMALL_STATE(4484)] = 151591, - [SMALL_STATE(4485)] = 151608, - [SMALL_STATE(4486)] = 151625, - [SMALL_STATE(4487)] = 151642, - [SMALL_STATE(4488)] = 151655, - [SMALL_STATE(4489)] = 151674, - [SMALL_STATE(4490)] = 151691, - [SMALL_STATE(4491)] = 151710, - [SMALL_STATE(4492)] = 151727, - [SMALL_STATE(4493)] = 151744, - [SMALL_STATE(4494)] = 151761, - [SMALL_STATE(4495)] = 151778, - [SMALL_STATE(4496)] = 151795, - [SMALL_STATE(4497)] = 151812, - [SMALL_STATE(4498)] = 151829, - [SMALL_STATE(4499)] = 151844, - [SMALL_STATE(4500)] = 151861, - [SMALL_STATE(4501)] = 151876, - [SMALL_STATE(4502)] = 151891, - [SMALL_STATE(4503)] = 151906, - [SMALL_STATE(4504)] = 151923, - [SMALL_STATE(4505)] = 151940, - [SMALL_STATE(4506)] = 151957, - [SMALL_STATE(4507)] = 151972, - [SMALL_STATE(4508)] = 151989, - [SMALL_STATE(4509)] = 152006, - [SMALL_STATE(4510)] = 152023, - [SMALL_STATE(4511)] = 152038, - [SMALL_STATE(4512)] = 152053, - [SMALL_STATE(4513)] = 152070, - [SMALL_STATE(4514)] = 152085, - [SMALL_STATE(4515)] = 152102, - [SMALL_STATE(4516)] = 152119, - [SMALL_STATE(4517)] = 152134, - [SMALL_STATE(4518)] = 152151, - [SMALL_STATE(4519)] = 152168, - [SMALL_STATE(4520)] = 152185, - [SMALL_STATE(4521)] = 152198, - [SMALL_STATE(4522)] = 152213, - [SMALL_STATE(4523)] = 152232, - [SMALL_STATE(4524)] = 152251, - [SMALL_STATE(4525)] = 152268, - [SMALL_STATE(4526)] = 152285, - [SMALL_STATE(4527)] = 152302, - [SMALL_STATE(4528)] = 152319, - [SMALL_STATE(4529)] = 152336, - [SMALL_STATE(4530)] = 152353, - [SMALL_STATE(4531)] = 152370, - [SMALL_STATE(4532)] = 152385, - [SMALL_STATE(4533)] = 152400, - [SMALL_STATE(4534)] = 152415, - [SMALL_STATE(4535)] = 152432, - [SMALL_STATE(4536)] = 152447, - [SMALL_STATE(4537)] = 152464, - [SMALL_STATE(4538)] = 152481, - [SMALL_STATE(4539)] = 152498, - [SMALL_STATE(4540)] = 152515, - [SMALL_STATE(4541)] = 152530, - [SMALL_STATE(4542)] = 152547, - [SMALL_STATE(4543)] = 152564, - [SMALL_STATE(4544)] = 152581, - [SMALL_STATE(4545)] = 152598, - [SMALL_STATE(4546)] = 152615, - [SMALL_STATE(4547)] = 152632, - [SMALL_STATE(4548)] = 152649, - [SMALL_STATE(4549)] = 152666, - [SMALL_STATE(4550)] = 152683, - [SMALL_STATE(4551)] = 152700, - [SMALL_STATE(4552)] = 152711, - [SMALL_STATE(4553)] = 152728, - [SMALL_STATE(4554)] = 152745, - [SMALL_STATE(4555)] = 152762, - [SMALL_STATE(4556)] = 152779, - [SMALL_STATE(4557)] = 152796, - [SMALL_STATE(4558)] = 152813, - [SMALL_STATE(4559)] = 152830, - [SMALL_STATE(4560)] = 152841, - [SMALL_STATE(4561)] = 152856, - [SMALL_STATE(4562)] = 152873, - [SMALL_STATE(4563)] = 152890, - [SMALL_STATE(4564)] = 152907, - [SMALL_STATE(4565)] = 152917, - [SMALL_STATE(4566)] = 152931, - [SMALL_STATE(4567)] = 152945, - [SMALL_STATE(4568)] = 152959, - [SMALL_STATE(4569)] = 152969, - [SMALL_STATE(4570)] = 152983, - [SMALL_STATE(4571)] = 152993, - [SMALL_STATE(4572)] = 153007, - [SMALL_STATE(4573)] = 153021, - [SMALL_STATE(4574)] = 153031, - [SMALL_STATE(4575)] = 153041, - [SMALL_STATE(4576)] = 153051, - [SMALL_STATE(4577)] = 153061, - [SMALL_STATE(4578)] = 153075, - [SMALL_STATE(4579)] = 153089, - [SMALL_STATE(4580)] = 153103, - [SMALL_STATE(4581)] = 153117, - [SMALL_STATE(4582)] = 153131, - [SMALL_STATE(4583)] = 153145, - [SMALL_STATE(4584)] = 153159, - [SMALL_STATE(4585)] = 153169, - [SMALL_STATE(4586)] = 153179, - [SMALL_STATE(4587)] = 153189, - [SMALL_STATE(4588)] = 153199, - [SMALL_STATE(4589)] = 153209, - [SMALL_STATE(4590)] = 153219, - [SMALL_STATE(4591)] = 153231, - [SMALL_STATE(4592)] = 153245, - [SMALL_STATE(4593)] = 153255, - [SMALL_STATE(4594)] = 153269, - [SMALL_STATE(4595)] = 153283, - [SMALL_STATE(4596)] = 153297, - [SMALL_STATE(4597)] = 153307, - [SMALL_STATE(4598)] = 153321, - [SMALL_STATE(4599)] = 153331, - [SMALL_STATE(4600)] = 153341, - [SMALL_STATE(4601)] = 153351, - [SMALL_STATE(4602)] = 153361, - [SMALL_STATE(4603)] = 153375, - [SMALL_STATE(4604)] = 153389, - [SMALL_STATE(4605)] = 153399, - [SMALL_STATE(4606)] = 153409, - [SMALL_STATE(4607)] = 153423, - [SMALL_STATE(4608)] = 153433, - [SMALL_STATE(4609)] = 153443, - [SMALL_STATE(4610)] = 153453, - [SMALL_STATE(4611)] = 153467, - [SMALL_STATE(4612)] = 153481, - [SMALL_STATE(4613)] = 153491, - [SMALL_STATE(4614)] = 153501, - [SMALL_STATE(4615)] = 153515, - [SMALL_STATE(4616)] = 153525, - [SMALL_STATE(4617)] = 153539, - [SMALL_STATE(4618)] = 153549, - [SMALL_STATE(4619)] = 153563, - [SMALL_STATE(4620)] = 153577, - [SMALL_STATE(4621)] = 153591, - [SMALL_STATE(4622)] = 153605, - [SMALL_STATE(4623)] = 153619, - [SMALL_STATE(4624)] = 153633, - [SMALL_STATE(4625)] = 153647, - [SMALL_STATE(4626)] = 153661, - [SMALL_STATE(4627)] = 153671, - [SMALL_STATE(4628)] = 153681, - [SMALL_STATE(4629)] = 153695, - [SMALL_STATE(4630)] = 153705, - [SMALL_STATE(4631)] = 153715, - [SMALL_STATE(4632)] = 153725, - [SMALL_STATE(4633)] = 153735, - [SMALL_STATE(4634)] = 153745, - [SMALL_STATE(4635)] = 153755, - [SMALL_STATE(4636)] = 153765, - [SMALL_STATE(4637)] = 153779, - [SMALL_STATE(4638)] = 153793, - [SMALL_STATE(4639)] = 153803, - [SMALL_STATE(4640)] = 153813, - [SMALL_STATE(4641)] = 153823, - [SMALL_STATE(4642)] = 153833, - [SMALL_STATE(4643)] = 153847, - [SMALL_STATE(4644)] = 153857, - [SMALL_STATE(4645)] = 153871, - [SMALL_STATE(4646)] = 153885, - [SMALL_STATE(4647)] = 153895, - [SMALL_STATE(4648)] = 153909, - [SMALL_STATE(4649)] = 153919, - [SMALL_STATE(4650)] = 153929, - [SMALL_STATE(4651)] = 153943, - [SMALL_STATE(4652)] = 153957, - [SMALL_STATE(4653)] = 153971, - [SMALL_STATE(4654)] = 153985, - [SMALL_STATE(4655)] = 153995, - [SMALL_STATE(4656)] = 154009, - [SMALL_STATE(4657)] = 154023, - [SMALL_STATE(4658)] = 154033, - [SMALL_STATE(4659)] = 154045, - [SMALL_STATE(4660)] = 154059, - [SMALL_STATE(4661)] = 154073, - [SMALL_STATE(4662)] = 154087, - [SMALL_STATE(4663)] = 154101, - [SMALL_STATE(4664)] = 154115, - [SMALL_STATE(4665)] = 154125, - [SMALL_STATE(4666)] = 154135, - [SMALL_STATE(4667)] = 154145, - [SMALL_STATE(4668)] = 154155, - [SMALL_STATE(4669)] = 154169, - [SMALL_STATE(4670)] = 154179, - [SMALL_STATE(4671)] = 154189, - [SMALL_STATE(4672)] = 154203, - [SMALL_STATE(4673)] = 154217, - [SMALL_STATE(4674)] = 154227, - [SMALL_STATE(4675)] = 154241, - [SMALL_STATE(4676)] = 154253, - [SMALL_STATE(4677)] = 154267, - [SMALL_STATE(4678)] = 154281, - [SMALL_STATE(4679)] = 154291, - [SMALL_STATE(4680)] = 154307, - [SMALL_STATE(4681)] = 154317, - [SMALL_STATE(4682)] = 154331, - [SMALL_STATE(4683)] = 154345, - [SMALL_STATE(4684)] = 154359, - [SMALL_STATE(4685)] = 154369, - [SMALL_STATE(4686)] = 154379, - [SMALL_STATE(4687)] = 154389, - [SMALL_STATE(4688)] = 154399, - [SMALL_STATE(4689)] = 154409, - [SMALL_STATE(4690)] = 154419, - [SMALL_STATE(4691)] = 154433, - [SMALL_STATE(4692)] = 154447, - [SMALL_STATE(4693)] = 154461, - [SMALL_STATE(4694)] = 154471, - [SMALL_STATE(4695)] = 154485, - [SMALL_STATE(4696)] = 154499, - [SMALL_STATE(4697)] = 154509, - [SMALL_STATE(4698)] = 154519, - [SMALL_STATE(4699)] = 154533, - [SMALL_STATE(4700)] = 154543, - [SMALL_STATE(4701)] = 154553, - [SMALL_STATE(4702)] = 154567, - [SMALL_STATE(4703)] = 154577, - [SMALL_STATE(4704)] = 154591, - [SMALL_STATE(4705)] = 154601, - [SMALL_STATE(4706)] = 154615, - [SMALL_STATE(4707)] = 154625, - [SMALL_STATE(4708)] = 154635, - [SMALL_STATE(4709)] = 154645, - [SMALL_STATE(4710)] = 154655, - [SMALL_STATE(4711)] = 154665, - [SMALL_STATE(4712)] = 154675, - [SMALL_STATE(4713)] = 154689, - [SMALL_STATE(4714)] = 154699, - [SMALL_STATE(4715)] = 154709, - [SMALL_STATE(4716)] = 154719, - [SMALL_STATE(4717)] = 154729, - [SMALL_STATE(4718)] = 154739, - [SMALL_STATE(4719)] = 154749, - [SMALL_STATE(4720)] = 154759, - [SMALL_STATE(4721)] = 154773, - [SMALL_STATE(4722)] = 154787, - [SMALL_STATE(4723)] = 154797, - [SMALL_STATE(4724)] = 154813, - [SMALL_STATE(4725)] = 154823, - [SMALL_STATE(4726)] = 154833, - [SMALL_STATE(4727)] = 154843, - [SMALL_STATE(4728)] = 154853, - [SMALL_STATE(4729)] = 154865, - [SMALL_STATE(4730)] = 154875, - [SMALL_STATE(4731)] = 154889, - [SMALL_STATE(4732)] = 154899, - [SMALL_STATE(4733)] = 154909, - [SMALL_STATE(4734)] = 154919, - [SMALL_STATE(4735)] = 154933, - [SMALL_STATE(4736)] = 154947, - [SMALL_STATE(4737)] = 154957, - [SMALL_STATE(4738)] = 154967, - [SMALL_STATE(4739)] = 154977, - [SMALL_STATE(4740)] = 154987, - [SMALL_STATE(4741)] = 154997, - [SMALL_STATE(4742)] = 155007, - [SMALL_STATE(4743)] = 155021, - [SMALL_STATE(4744)] = 155031, - [SMALL_STATE(4745)] = 155045, - [SMALL_STATE(4746)] = 155055, - [SMALL_STATE(4747)] = 155069, - [SMALL_STATE(4748)] = 155079, - [SMALL_STATE(4749)] = 155089, - [SMALL_STATE(4750)] = 155099, - [SMALL_STATE(4751)] = 155109, - [SMALL_STATE(4752)] = 155123, - [SMALL_STATE(4753)] = 155135, - [SMALL_STATE(4754)] = 155149, - [SMALL_STATE(4755)] = 155161, - [SMALL_STATE(4756)] = 155171, - [SMALL_STATE(4757)] = 155183, - [SMALL_STATE(4758)] = 155193, - [SMALL_STATE(4759)] = 155203, - [SMALL_STATE(4760)] = 155217, - [SMALL_STATE(4761)] = 155227, - [SMALL_STATE(4762)] = 155239, - [SMALL_STATE(4763)] = 155249, - [SMALL_STATE(4764)] = 155259, - [SMALL_STATE(4765)] = 155269, - [SMALL_STATE(4766)] = 155279, - [SMALL_STATE(4767)] = 155293, - [SMALL_STATE(4768)] = 155303, - [SMALL_STATE(4769)] = 155315, - [SMALL_STATE(4770)] = 155325, - [SMALL_STATE(4771)] = 155339, - [SMALL_STATE(4772)] = 155349, - [SMALL_STATE(4773)] = 155363, - [SMALL_STATE(4774)] = 155373, - [SMALL_STATE(4775)] = 155383, - [SMALL_STATE(4776)] = 155393, - [SMALL_STATE(4777)] = 155403, - [SMALL_STATE(4778)] = 155413, - [SMALL_STATE(4779)] = 155423, - [SMALL_STATE(4780)] = 155437, - [SMALL_STATE(4781)] = 155447, - [SMALL_STATE(4782)] = 155461, - [SMALL_STATE(4783)] = 155471, - [SMALL_STATE(4784)] = 155481, - [SMALL_STATE(4785)] = 155491, - [SMALL_STATE(4786)] = 155501, - [SMALL_STATE(4787)] = 155511, - [SMALL_STATE(4788)] = 155521, - [SMALL_STATE(4789)] = 155531, - [SMALL_STATE(4790)] = 155541, - [SMALL_STATE(4791)] = 155551, - [SMALL_STATE(4792)] = 155565, - [SMALL_STATE(4793)] = 155575, - [SMALL_STATE(4794)] = 155585, - [SMALL_STATE(4795)] = 155595, - [SMALL_STATE(4796)] = 155605, - [SMALL_STATE(4797)] = 155615, - [SMALL_STATE(4798)] = 155625, - [SMALL_STATE(4799)] = 155635, - [SMALL_STATE(4800)] = 155649, - [SMALL_STATE(4801)] = 155659, - [SMALL_STATE(4802)] = 155669, - [SMALL_STATE(4803)] = 155679, - [SMALL_STATE(4804)] = 155693, - [SMALL_STATE(4805)] = 155703, - [SMALL_STATE(4806)] = 155713, - [SMALL_STATE(4807)] = 155723, - [SMALL_STATE(4808)] = 155733, - [SMALL_STATE(4809)] = 155743, - [SMALL_STATE(4810)] = 155753, - [SMALL_STATE(4811)] = 155763, - [SMALL_STATE(4812)] = 155773, - [SMALL_STATE(4813)] = 155787, - [SMALL_STATE(4814)] = 155797, - [SMALL_STATE(4815)] = 155807, - [SMALL_STATE(4816)] = 155817, - [SMALL_STATE(4817)] = 155827, - [SMALL_STATE(4818)] = 155837, - [SMALL_STATE(4819)] = 155851, - [SMALL_STATE(4820)] = 155861, - [SMALL_STATE(4821)] = 155875, - [SMALL_STATE(4822)] = 155889, - [SMALL_STATE(4823)] = 155899, - [SMALL_STATE(4824)] = 155913, - [SMALL_STATE(4825)] = 155927, - [SMALL_STATE(4826)] = 155937, - [SMALL_STATE(4827)] = 155947, - [SMALL_STATE(4828)] = 155957, - [SMALL_STATE(4829)] = 155969, - [SMALL_STATE(4830)] = 155985, - [SMALL_STATE(4831)] = 155999, - [SMALL_STATE(4832)] = 156009, - [SMALL_STATE(4833)] = 156021, - [SMALL_STATE(4834)] = 156031, - [SMALL_STATE(4835)] = 156045, - [SMALL_STATE(4836)] = 156059, - [SMALL_STATE(4837)] = 156069, - [SMALL_STATE(4838)] = 156079, - [SMALL_STATE(4839)] = 156093, - [SMALL_STATE(4840)] = 156107, - [SMALL_STATE(4841)] = 156117, - [SMALL_STATE(4842)] = 156127, - [SMALL_STATE(4843)] = 156137, - [SMALL_STATE(4844)] = 156147, - [SMALL_STATE(4845)] = 156157, - [SMALL_STATE(4846)] = 156167, - [SMALL_STATE(4847)] = 156177, - [SMALL_STATE(4848)] = 156187, - [SMALL_STATE(4849)] = 156201, - [SMALL_STATE(4850)] = 156211, - [SMALL_STATE(4851)] = 156221, - [SMALL_STATE(4852)] = 156231, - [SMALL_STATE(4853)] = 156241, - [SMALL_STATE(4854)] = 156251, - [SMALL_STATE(4855)] = 156261, - [SMALL_STATE(4856)] = 156271, - [SMALL_STATE(4857)] = 156281, - [SMALL_STATE(4858)] = 156293, - [SMALL_STATE(4859)] = 156307, - [SMALL_STATE(4860)] = 156317, - [SMALL_STATE(4861)] = 156327, - [SMALL_STATE(4862)] = 156341, - [SMALL_STATE(4863)] = 156351, - [SMALL_STATE(4864)] = 156361, - [SMALL_STATE(4865)] = 156371, - [SMALL_STATE(4866)] = 156381, - [SMALL_STATE(4867)] = 156391, - [SMALL_STATE(4868)] = 156401, - [SMALL_STATE(4869)] = 156411, - [SMALL_STATE(4870)] = 156421, - [SMALL_STATE(4871)] = 156431, - [SMALL_STATE(4872)] = 156441, - [SMALL_STATE(4873)] = 156455, - [SMALL_STATE(4874)] = 156465, - [SMALL_STATE(4875)] = 156475, - [SMALL_STATE(4876)] = 156485, - [SMALL_STATE(4877)] = 156495, - [SMALL_STATE(4878)] = 156505, - [SMALL_STATE(4879)] = 156515, - [SMALL_STATE(4880)] = 156525, - [SMALL_STATE(4881)] = 156535, - [SMALL_STATE(4882)] = 156545, - [SMALL_STATE(4883)] = 156555, - [SMALL_STATE(4884)] = 156565, - [SMALL_STATE(4885)] = 156575, - [SMALL_STATE(4886)] = 156585, - [SMALL_STATE(4887)] = 156595, - [SMALL_STATE(4888)] = 156609, - [SMALL_STATE(4889)] = 156623, - [SMALL_STATE(4890)] = 156637, - [SMALL_STATE(4891)] = 156651, - [SMALL_STATE(4892)] = 156661, - [SMALL_STATE(4893)] = 156675, - [SMALL_STATE(4894)] = 156689, - [SMALL_STATE(4895)] = 156699, - [SMALL_STATE(4896)] = 156713, - [SMALL_STATE(4897)] = 156723, - [SMALL_STATE(4898)] = 156737, - [SMALL_STATE(4899)] = 156751, - [SMALL_STATE(4900)] = 156761, - [SMALL_STATE(4901)] = 156771, - [SMALL_STATE(4902)] = 156781, - [SMALL_STATE(4903)] = 156791, - [SMALL_STATE(4904)] = 156805, - [SMALL_STATE(4905)] = 156815, - [SMALL_STATE(4906)] = 156825, - [SMALL_STATE(4907)] = 156839, - [SMALL_STATE(4908)] = 156853, - [SMALL_STATE(4909)] = 156863, - [SMALL_STATE(4910)] = 156873, - [SMALL_STATE(4911)] = 156883, - [SMALL_STATE(4912)] = 156893, - [SMALL_STATE(4913)] = 156907, - [SMALL_STATE(4914)] = 156917, - [SMALL_STATE(4915)] = 156927, - [SMALL_STATE(4916)] = 156937, - [SMALL_STATE(4917)] = 156947, - [SMALL_STATE(4918)] = 156957, - [SMALL_STATE(4919)] = 156967, - [SMALL_STATE(4920)] = 156977, - [SMALL_STATE(4921)] = 156987, - [SMALL_STATE(4922)] = 157001, - [SMALL_STATE(4923)] = 157011, - [SMALL_STATE(4924)] = 157025, - [SMALL_STATE(4925)] = 157035, - [SMALL_STATE(4926)] = 157051, - [SMALL_STATE(4927)] = 157061, - [SMALL_STATE(4928)] = 157071, - [SMALL_STATE(4929)] = 157081, - [SMALL_STATE(4930)] = 157091, - [SMALL_STATE(4931)] = 157101, - [SMALL_STATE(4932)] = 157111, - [SMALL_STATE(4933)] = 157121, - [SMALL_STATE(4934)] = 157131, - [SMALL_STATE(4935)] = 157141, - [SMALL_STATE(4936)] = 157151, - [SMALL_STATE(4937)] = 157161, - [SMALL_STATE(4938)] = 157171, - [SMALL_STATE(4939)] = 157185, - [SMALL_STATE(4940)] = 157195, - [SMALL_STATE(4941)] = 157207, - [SMALL_STATE(4942)] = 157221, - [SMALL_STATE(4943)] = 157231, - [SMALL_STATE(4944)] = 157241, - [SMALL_STATE(4945)] = 157251, - [SMALL_STATE(4946)] = 157263, - [SMALL_STATE(4947)] = 157273, - [SMALL_STATE(4948)] = 157283, - [SMALL_STATE(4949)] = 157293, - [SMALL_STATE(4950)] = 157303, - [SMALL_STATE(4951)] = 157313, - [SMALL_STATE(4952)] = 157327, - [SMALL_STATE(4953)] = 157337, - [SMALL_STATE(4954)] = 157347, - [SMALL_STATE(4955)] = 157361, - [SMALL_STATE(4956)] = 157371, - [SMALL_STATE(4957)] = 157381, - [SMALL_STATE(4958)] = 157391, - [SMALL_STATE(4959)] = 157401, - [SMALL_STATE(4960)] = 157411, - [SMALL_STATE(4961)] = 157421, - [SMALL_STATE(4962)] = 157431, - [SMALL_STATE(4963)] = 157441, - [SMALL_STATE(4964)] = 157453, - [SMALL_STATE(4965)] = 157465, - [SMALL_STATE(4966)] = 157475, - [SMALL_STATE(4967)] = 157485, - [SMALL_STATE(4968)] = 157495, - [SMALL_STATE(4969)] = 157505, - [SMALL_STATE(4970)] = 157515, - [SMALL_STATE(4971)] = 157525, - [SMALL_STATE(4972)] = 157535, - [SMALL_STATE(4973)] = 157545, - [SMALL_STATE(4974)] = 157555, - [SMALL_STATE(4975)] = 157565, - [SMALL_STATE(4976)] = 157575, - [SMALL_STATE(4977)] = 157585, - [SMALL_STATE(4978)] = 157595, - [SMALL_STATE(4979)] = 157605, - [SMALL_STATE(4980)] = 157615, - [SMALL_STATE(4981)] = 157625, - [SMALL_STATE(4982)] = 157635, - [SMALL_STATE(4983)] = 157645, - [SMALL_STATE(4984)] = 157655, - [SMALL_STATE(4985)] = 157665, - [SMALL_STATE(4986)] = 157675, - [SMALL_STATE(4987)] = 157685, - [SMALL_STATE(4988)] = 157695, - [SMALL_STATE(4989)] = 157705, - [SMALL_STATE(4990)] = 157715, - [SMALL_STATE(4991)] = 157725, - [SMALL_STATE(4992)] = 157735, - [SMALL_STATE(4993)] = 157745, - [SMALL_STATE(4994)] = 157755, - [SMALL_STATE(4995)] = 157765, - [SMALL_STATE(4996)] = 157775, - [SMALL_STATE(4997)] = 157785, - [SMALL_STATE(4998)] = 157795, - [SMALL_STATE(4999)] = 157805, - [SMALL_STATE(5000)] = 157815, - [SMALL_STATE(5001)] = 157825, - [SMALL_STATE(5002)] = 157835, - [SMALL_STATE(5003)] = 157845, - [SMALL_STATE(5004)] = 157855, - [SMALL_STATE(5005)] = 157865, - [SMALL_STATE(5006)] = 157875, - [SMALL_STATE(5007)] = 157885, - [SMALL_STATE(5008)] = 157895, - [SMALL_STATE(5009)] = 157905, - [SMALL_STATE(5010)] = 157915, - [SMALL_STATE(5011)] = 157925, - [SMALL_STATE(5012)] = 157935, - [SMALL_STATE(5013)] = 157945, - [SMALL_STATE(5014)] = 157955, - [SMALL_STATE(5015)] = 157965, - [SMALL_STATE(5016)] = 157975, - [SMALL_STATE(5017)] = 157985, - [SMALL_STATE(5018)] = 157995, - [SMALL_STATE(5019)] = 158005, - [SMALL_STATE(5020)] = 158015, - [SMALL_STATE(5021)] = 158029, - [SMALL_STATE(5022)] = 158039, - [SMALL_STATE(5023)] = 158051, - [SMALL_STATE(5024)] = 158061, - [SMALL_STATE(5025)] = 158071, - [SMALL_STATE(5026)] = 158083, - [SMALL_STATE(5027)] = 158093, - [SMALL_STATE(5028)] = 158103, - [SMALL_STATE(5029)] = 158113, - [SMALL_STATE(5030)] = 158123, - [SMALL_STATE(5031)] = 158137, - [SMALL_STATE(5032)] = 158147, - [SMALL_STATE(5033)] = 158161, - [SMALL_STATE(5034)] = 158171, - [SMALL_STATE(5035)] = 158181, - [SMALL_STATE(5036)] = 158191, - [SMALL_STATE(5037)] = 158201, - [SMALL_STATE(5038)] = 158211, - [SMALL_STATE(5039)] = 158221, - [SMALL_STATE(5040)] = 158235, - [SMALL_STATE(5041)] = 158245, - [SMALL_STATE(5042)] = 158255, - [SMALL_STATE(5043)] = 158265, - [SMALL_STATE(5044)] = 158275, - [SMALL_STATE(5045)] = 158285, - [SMALL_STATE(5046)] = 158295, - [SMALL_STATE(5047)] = 158305, - [SMALL_STATE(5048)] = 158315, - [SMALL_STATE(5049)] = 158325, - [SMALL_STATE(5050)] = 158339, - [SMALL_STATE(5051)] = 158349, - [SMALL_STATE(5052)] = 158359, - [SMALL_STATE(5053)] = 158369, - [SMALL_STATE(5054)] = 158379, - [SMALL_STATE(5055)] = 158389, - [SMALL_STATE(5056)] = 158399, - [SMALL_STATE(5057)] = 158409, - [SMALL_STATE(5058)] = 158419, - [SMALL_STATE(5059)] = 158429, - [SMALL_STATE(5060)] = 158439, - [SMALL_STATE(5061)] = 158453, - [SMALL_STATE(5062)] = 158463, - [SMALL_STATE(5063)] = 158473, - [SMALL_STATE(5064)] = 158483, - [SMALL_STATE(5065)] = 158493, - [SMALL_STATE(5066)] = 158503, - [SMALL_STATE(5067)] = 158513, - [SMALL_STATE(5068)] = 158523, - [SMALL_STATE(5069)] = 158533, - [SMALL_STATE(5070)] = 158543, - [SMALL_STATE(5071)] = 158557, - [SMALL_STATE(5072)] = 158571, - [SMALL_STATE(5073)] = 158581, - [SMALL_STATE(5074)] = 158591, - [SMALL_STATE(5075)] = 158601, - [SMALL_STATE(5076)] = 158611, - [SMALL_STATE(5077)] = 158625, - [SMALL_STATE(5078)] = 158635, - [SMALL_STATE(5079)] = 158645, - [SMALL_STATE(5080)] = 158655, - [SMALL_STATE(5081)] = 158669, - [SMALL_STATE(5082)] = 158683, - [SMALL_STATE(5083)] = 158695, - [SMALL_STATE(5084)] = 158705, - [SMALL_STATE(5085)] = 158715, - [SMALL_STATE(5086)] = 158725, - [SMALL_STATE(5087)] = 158739, - [SMALL_STATE(5088)] = 158753, - [SMALL_STATE(5089)] = 158763, - [SMALL_STATE(5090)] = 158777, - [SMALL_STATE(5091)] = 158787, - [SMALL_STATE(5092)] = 158797, - [SMALL_STATE(5093)] = 158811, - [SMALL_STATE(5094)] = 158821, - [SMALL_STATE(5095)] = 158833, - [SMALL_STATE(5096)] = 158843, - [SMALL_STATE(5097)] = 158853, - [SMALL_STATE(5098)] = 158863, - [SMALL_STATE(5099)] = 158875, - [SMALL_STATE(5100)] = 158885, - [SMALL_STATE(5101)] = 158895, - [SMALL_STATE(5102)] = 158909, - [SMALL_STATE(5103)] = 158919, - [SMALL_STATE(5104)] = 158929, - [SMALL_STATE(5105)] = 158939, - [SMALL_STATE(5106)] = 158949, - [SMALL_STATE(5107)] = 158959, - [SMALL_STATE(5108)] = 158969, - [SMALL_STATE(5109)] = 158979, - [SMALL_STATE(5110)] = 158989, - [SMALL_STATE(5111)] = 159003, - [SMALL_STATE(5112)] = 159013, - [SMALL_STATE(5113)] = 159023, - [SMALL_STATE(5114)] = 159033, - [SMALL_STATE(5115)] = 159043, - [SMALL_STATE(5116)] = 159053, - [SMALL_STATE(5117)] = 159067, - [SMALL_STATE(5118)] = 159077, - [SMALL_STATE(5119)] = 159087, - [SMALL_STATE(5120)] = 159097, - [SMALL_STATE(5121)] = 159107, - [SMALL_STATE(5122)] = 159117, - [SMALL_STATE(5123)] = 159127, - [SMALL_STATE(5124)] = 159137, - [SMALL_STATE(5125)] = 159151, - [SMALL_STATE(5126)] = 159161, - [SMALL_STATE(5127)] = 159175, - [SMALL_STATE(5128)] = 159185, - [SMALL_STATE(5129)] = 159197, - [SMALL_STATE(5130)] = 159211, - [SMALL_STATE(5131)] = 159225, - [SMALL_STATE(5132)] = 159235, - [SMALL_STATE(5133)] = 159245, - [SMALL_STATE(5134)] = 159257, - [SMALL_STATE(5135)] = 159271, - [SMALL_STATE(5136)] = 159281, - [SMALL_STATE(5137)] = 159295, - [SMALL_STATE(5138)] = 159305, - [SMALL_STATE(5139)] = 159315, - [SMALL_STATE(5140)] = 159329, - [SMALL_STATE(5141)] = 159341, - [SMALL_STATE(5142)] = 159355, - [SMALL_STATE(5143)] = 159365, - [SMALL_STATE(5144)] = 159375, - [SMALL_STATE(5145)] = 159387, - [SMALL_STATE(5146)] = 159397, - [SMALL_STATE(5147)] = 159407, - [SMALL_STATE(5148)] = 159417, - [SMALL_STATE(5149)] = 159431, - [SMALL_STATE(5150)] = 159441, - [SMALL_STATE(5151)] = 159455, - [SMALL_STATE(5152)] = 159469, - [SMALL_STATE(5153)] = 159483, - [SMALL_STATE(5154)] = 159497, - [SMALL_STATE(5155)] = 159509, - [SMALL_STATE(5156)] = 159523, - [SMALL_STATE(5157)] = 159537, - [SMALL_STATE(5158)] = 159551, - [SMALL_STATE(5159)] = 159565, - [SMALL_STATE(5160)] = 159575, - [SMALL_STATE(5161)] = 159585, - [SMALL_STATE(5162)] = 159595, - [SMALL_STATE(5163)] = 159605, - [SMALL_STATE(5164)] = 159615, - [SMALL_STATE(5165)] = 159625, - [SMALL_STATE(5166)] = 159639, - [SMALL_STATE(5167)] = 159653, - [SMALL_STATE(5168)] = 159663, - [SMALL_STATE(5169)] = 159673, - [SMALL_STATE(5170)] = 159683, - [SMALL_STATE(5171)] = 159697, - [SMALL_STATE(5172)] = 159711, - [SMALL_STATE(5173)] = 159721, - [SMALL_STATE(5174)] = 159731, - [SMALL_STATE(5175)] = 159741, - [SMALL_STATE(5176)] = 159751, - [SMALL_STATE(5177)] = 159767, - [SMALL_STATE(5178)] = 159777, - [SMALL_STATE(5179)] = 159787, - [SMALL_STATE(5180)] = 159797, - [SMALL_STATE(5181)] = 159807, - [SMALL_STATE(5182)] = 159817, - [SMALL_STATE(5183)] = 159827, - [SMALL_STATE(5184)] = 159838, - [SMALL_STATE(5185)] = 159849, - [SMALL_STATE(5186)] = 159858, - [SMALL_STATE(5187)] = 159869, - [SMALL_STATE(5188)] = 159880, - [SMALL_STATE(5189)] = 159889, - [SMALL_STATE(5190)] = 159898, - [SMALL_STATE(5191)] = 159909, - [SMALL_STATE(5192)] = 159918, - [SMALL_STATE(5193)] = 159929, - [SMALL_STATE(5194)] = 159940, - [SMALL_STATE(5195)] = 159951, - [SMALL_STATE(5196)] = 159962, - [SMALL_STATE(5197)] = 159973, - [SMALL_STATE(5198)] = 159982, - [SMALL_STATE(5199)] = 159991, - [SMALL_STATE(5200)] = 160002, - [SMALL_STATE(5201)] = 160013, - [SMALL_STATE(5202)] = 160024, - [SMALL_STATE(5203)] = 160035, - [SMALL_STATE(5204)] = 160046, - [SMALL_STATE(5205)] = 160055, - [SMALL_STATE(5206)] = 160066, - [SMALL_STATE(5207)] = 160077, - [SMALL_STATE(5208)] = 160088, - [SMALL_STATE(5209)] = 160099, - [SMALL_STATE(5210)] = 160110, - [SMALL_STATE(5211)] = 160121, - [SMALL_STATE(5212)] = 160130, - [SMALL_STATE(5213)] = 160141, - [SMALL_STATE(5214)] = 160152, - [SMALL_STATE(5215)] = 160161, - [SMALL_STATE(5216)] = 160172, - [SMALL_STATE(5217)] = 160183, - [SMALL_STATE(5218)] = 160194, - [SMALL_STATE(5219)] = 160203, - [SMALL_STATE(5220)] = 160212, - [SMALL_STATE(5221)] = 160223, - [SMALL_STATE(5222)] = 160234, - [SMALL_STATE(5223)] = 160243, - [SMALL_STATE(5224)] = 160252, - [SMALL_STATE(5225)] = 160263, - [SMALL_STATE(5226)] = 160274, - [SMALL_STATE(5227)] = 160285, - [SMALL_STATE(5228)] = 160294, - [SMALL_STATE(5229)] = 160305, - [SMALL_STATE(5230)] = 160316, - [SMALL_STATE(5231)] = 160327, - [SMALL_STATE(5232)] = 160338, - [SMALL_STATE(5233)] = 160347, - [SMALL_STATE(5234)] = 160358, - [SMALL_STATE(5235)] = 160369, - [SMALL_STATE(5236)] = 160380, - [SMALL_STATE(5237)] = 160391, - [SMALL_STATE(5238)] = 160402, - [SMALL_STATE(5239)] = 160413, - [SMALL_STATE(5240)] = 160424, - [SMALL_STATE(5241)] = 160435, - [SMALL_STATE(5242)] = 160446, - [SMALL_STATE(5243)] = 160457, - [SMALL_STATE(5244)] = 160468, - [SMALL_STATE(5245)] = 160479, - [SMALL_STATE(5246)] = 160490, - [SMALL_STATE(5247)] = 160501, - [SMALL_STATE(5248)] = 160512, - [SMALL_STATE(5249)] = 160523, - [SMALL_STATE(5250)] = 160534, - [SMALL_STATE(5251)] = 160545, - [SMALL_STATE(5252)] = 160554, - [SMALL_STATE(5253)] = 160565, - [SMALL_STATE(5254)] = 160576, - [SMALL_STATE(5255)] = 160587, - [SMALL_STATE(5256)] = 160598, - [SMALL_STATE(5257)] = 160609, - [SMALL_STATE(5258)] = 160618, - [SMALL_STATE(5259)] = 160629, - [SMALL_STATE(5260)] = 160640, - [SMALL_STATE(5261)] = 160649, - [SMALL_STATE(5262)] = 160658, - [SMALL_STATE(5263)] = 160669, - [SMALL_STATE(5264)] = 160680, - [SMALL_STATE(5265)] = 160691, - [SMALL_STATE(5266)] = 160702, - [SMALL_STATE(5267)] = 160713, - [SMALL_STATE(5268)] = 160722, - [SMALL_STATE(5269)] = 160733, - [SMALL_STATE(5270)] = 160742, - [SMALL_STATE(5271)] = 160753, - [SMALL_STATE(5272)] = 160764, - [SMALL_STATE(5273)] = 160775, - [SMALL_STATE(5274)] = 160786, - [SMALL_STATE(5275)] = 160795, - [SMALL_STATE(5276)] = 160804, - [SMALL_STATE(5277)] = 160815, - [SMALL_STATE(5278)] = 160826, - [SMALL_STATE(5279)] = 160837, - [SMALL_STATE(5280)] = 160848, - [SMALL_STATE(5281)] = 160859, - [SMALL_STATE(5282)] = 160870, - [SMALL_STATE(5283)] = 160881, - [SMALL_STATE(5284)] = 160892, - [SMALL_STATE(5285)] = 160903, - [SMALL_STATE(5286)] = 160914, - [SMALL_STATE(5287)] = 160925, - [SMALL_STATE(5288)] = 160936, - [SMALL_STATE(5289)] = 160947, - [SMALL_STATE(5290)] = 160958, - [SMALL_STATE(5291)] = 160969, - [SMALL_STATE(5292)] = 160978, - [SMALL_STATE(5293)] = 160989, - [SMALL_STATE(5294)] = 161000, - [SMALL_STATE(5295)] = 161011, - [SMALL_STATE(5296)] = 161022, - [SMALL_STATE(5297)] = 161033, - [SMALL_STATE(5298)] = 161044, - [SMALL_STATE(5299)] = 161055, - [SMALL_STATE(5300)] = 161066, - [SMALL_STATE(5301)] = 161077, - [SMALL_STATE(5302)] = 161086, - [SMALL_STATE(5303)] = 161097, - [SMALL_STATE(5304)] = 161106, - [SMALL_STATE(5305)] = 161117, - [SMALL_STATE(5306)] = 161128, - [SMALL_STATE(5307)] = 161137, - [SMALL_STATE(5308)] = 161146, - [SMALL_STATE(5309)] = 161157, - [SMALL_STATE(5310)] = 161168, - [SMALL_STATE(5311)] = 161179, - [SMALL_STATE(5312)] = 161190, - [SMALL_STATE(5313)] = 161199, - [SMALL_STATE(5314)] = 161210, - [SMALL_STATE(5315)] = 161221, - [SMALL_STATE(5316)] = 161230, - [SMALL_STATE(5317)] = 161241, - [SMALL_STATE(5318)] = 161252, - [SMALL_STATE(5319)] = 161263, - [SMALL_STATE(5320)] = 161274, - [SMALL_STATE(5321)] = 161285, - [SMALL_STATE(5322)] = 161294, - [SMALL_STATE(5323)] = 161305, - [SMALL_STATE(5324)] = 161314, - [SMALL_STATE(5325)] = 161325, - [SMALL_STATE(5326)] = 161336, - [SMALL_STATE(5327)] = 161347, - [SMALL_STATE(5328)] = 161358, - [SMALL_STATE(5329)] = 161369, - [SMALL_STATE(5330)] = 161378, - [SMALL_STATE(5331)] = 161387, - [SMALL_STATE(5332)] = 161396, - [SMALL_STATE(5333)] = 161405, - [SMALL_STATE(5334)] = 161416, - [SMALL_STATE(5335)] = 161425, - [SMALL_STATE(5336)] = 161436, - [SMALL_STATE(5337)] = 161447, - [SMALL_STATE(5338)] = 161458, - [SMALL_STATE(5339)] = 161469, - [SMALL_STATE(5340)] = 161480, - [SMALL_STATE(5341)] = 161491, - [SMALL_STATE(5342)] = 161502, - [SMALL_STATE(5343)] = 161513, - [SMALL_STATE(5344)] = 161524, - [SMALL_STATE(5345)] = 161535, - [SMALL_STATE(5346)] = 161544, - [SMALL_STATE(5347)] = 161553, - [SMALL_STATE(5348)] = 161564, - [SMALL_STATE(5349)] = 161575, - [SMALL_STATE(5350)] = 161586, - [SMALL_STATE(5351)] = 161597, - [SMALL_STATE(5352)] = 161606, - [SMALL_STATE(5353)] = 161615, - [SMALL_STATE(5354)] = 161626, - [SMALL_STATE(5355)] = 161637, - [SMALL_STATE(5356)] = 161648, - [SMALL_STATE(5357)] = 161659, - [SMALL_STATE(5358)] = 161670, - [SMALL_STATE(5359)] = 161681, - [SMALL_STATE(5360)] = 161692, - [SMALL_STATE(5361)] = 161701, - [SMALL_STATE(5362)] = 161712, - [SMALL_STATE(5363)] = 161723, - [SMALL_STATE(5364)] = 161734, - [SMALL_STATE(5365)] = 161743, - [SMALL_STATE(5366)] = 161754, - [SMALL_STATE(5367)] = 161765, - [SMALL_STATE(5368)] = 161776, - [SMALL_STATE(5369)] = 161787, - [SMALL_STATE(5370)] = 161798, - [SMALL_STATE(5371)] = 161809, - [SMALL_STATE(5372)] = 161820, - [SMALL_STATE(5373)] = 161831, - [SMALL_STATE(5374)] = 161842, - [SMALL_STATE(5375)] = 161853, - [SMALL_STATE(5376)] = 161864, - [SMALL_STATE(5377)] = 161875, - [SMALL_STATE(5378)] = 161886, - [SMALL_STATE(5379)] = 161897, - [SMALL_STATE(5380)] = 161908, - [SMALL_STATE(5381)] = 161919, - [SMALL_STATE(5382)] = 161928, - [SMALL_STATE(5383)] = 161939, - [SMALL_STATE(5384)] = 161948, - [SMALL_STATE(5385)] = 161957, - [SMALL_STATE(5386)] = 161966, - [SMALL_STATE(5387)] = 161977, - [SMALL_STATE(5388)] = 161988, - [SMALL_STATE(5389)] = 161999, - [SMALL_STATE(5390)] = 162010, - [SMALL_STATE(5391)] = 162021, - [SMALL_STATE(5392)] = 162032, - [SMALL_STATE(5393)] = 162043, - [SMALL_STATE(5394)] = 162054, - [SMALL_STATE(5395)] = 162065, - [SMALL_STATE(5396)] = 162076, - [SMALL_STATE(5397)] = 162087, - [SMALL_STATE(5398)] = 162098, - [SMALL_STATE(5399)] = 162109, - [SMALL_STATE(5400)] = 162120, - [SMALL_STATE(5401)] = 162131, - [SMALL_STATE(5402)] = 162142, - [SMALL_STATE(5403)] = 162153, - [SMALL_STATE(5404)] = 162164, - [SMALL_STATE(5405)] = 162175, - [SMALL_STATE(5406)] = 162184, - [SMALL_STATE(5407)] = 162195, - [SMALL_STATE(5408)] = 162206, - [SMALL_STATE(5409)] = 162217, - [SMALL_STATE(5410)] = 162228, - [SMALL_STATE(5411)] = 162239, - [SMALL_STATE(5412)] = 162250, - [SMALL_STATE(5413)] = 162261, - [SMALL_STATE(5414)] = 162272, - [SMALL_STATE(5415)] = 162283, - [SMALL_STATE(5416)] = 162292, - [SMALL_STATE(5417)] = 162303, - [SMALL_STATE(5418)] = 162314, - [SMALL_STATE(5419)] = 162325, - [SMALL_STATE(5420)] = 162334, - [SMALL_STATE(5421)] = 162345, - [SMALL_STATE(5422)] = 162356, - [SMALL_STATE(5423)] = 162367, - [SMALL_STATE(5424)] = 162378, - [SMALL_STATE(5425)] = 162389, - [SMALL_STATE(5426)] = 162400, - [SMALL_STATE(5427)] = 162409, - [SMALL_STATE(5428)] = 162420, - [SMALL_STATE(5429)] = 162431, - [SMALL_STATE(5430)] = 162442, - [SMALL_STATE(5431)] = 162453, - [SMALL_STATE(5432)] = 162464, - [SMALL_STATE(5433)] = 162475, - [SMALL_STATE(5434)] = 162486, - [SMALL_STATE(5435)] = 162497, - [SMALL_STATE(5436)] = 162508, - [SMALL_STATE(5437)] = 162519, - [SMALL_STATE(5438)] = 162530, - [SMALL_STATE(5439)] = 162541, - [SMALL_STATE(5440)] = 162552, - [SMALL_STATE(5441)] = 162563, - [SMALL_STATE(5442)] = 162574, - [SMALL_STATE(5443)] = 162585, - [SMALL_STATE(5444)] = 162596, - [SMALL_STATE(5445)] = 162607, - [SMALL_STATE(5446)] = 162618, - [SMALL_STATE(5447)] = 162627, - [SMALL_STATE(5448)] = 162636, - [SMALL_STATE(5449)] = 162647, - [SMALL_STATE(5450)] = 162658, - [SMALL_STATE(5451)] = 162667, - [SMALL_STATE(5452)] = 162676, - [SMALL_STATE(5453)] = 162687, - [SMALL_STATE(5454)] = 162696, - [SMALL_STATE(5455)] = 162707, - [SMALL_STATE(5456)] = 162718, - [SMALL_STATE(5457)] = 162729, - [SMALL_STATE(5458)] = 162740, - [SMALL_STATE(5459)] = 162751, - [SMALL_STATE(5460)] = 162762, - [SMALL_STATE(5461)] = 162773, - [SMALL_STATE(5462)] = 162784, - [SMALL_STATE(5463)] = 162795, - [SMALL_STATE(5464)] = 162806, - [SMALL_STATE(5465)] = 162817, - [SMALL_STATE(5466)] = 162828, - [SMALL_STATE(5467)] = 162839, - [SMALL_STATE(5468)] = 162850, - [SMALL_STATE(5469)] = 162859, - [SMALL_STATE(5470)] = 162870, - [SMALL_STATE(5471)] = 162881, - [SMALL_STATE(5472)] = 162892, - [SMALL_STATE(5473)] = 162903, - [SMALL_STATE(5474)] = 162914, - [SMALL_STATE(5475)] = 162925, - [SMALL_STATE(5476)] = 162936, - [SMALL_STATE(5477)] = 162947, - [SMALL_STATE(5478)] = 162956, - [SMALL_STATE(5479)] = 162967, - [SMALL_STATE(5480)] = 162978, - [SMALL_STATE(5481)] = 162989, - [SMALL_STATE(5482)] = 162998, - [SMALL_STATE(5483)] = 163007, - [SMALL_STATE(5484)] = 163018, - [SMALL_STATE(5485)] = 163027, - [SMALL_STATE(5486)] = 163036, - [SMALL_STATE(5487)] = 163045, - [SMALL_STATE(5488)] = 163054, - [SMALL_STATE(5489)] = 163065, - [SMALL_STATE(5490)] = 163076, - [SMALL_STATE(5491)] = 163087, - [SMALL_STATE(5492)] = 163098, - [SMALL_STATE(5493)] = 163107, - [SMALL_STATE(5494)] = 163116, - [SMALL_STATE(5495)] = 163125, - [SMALL_STATE(5496)] = 163134, - [SMALL_STATE(5497)] = 163145, - [SMALL_STATE(5498)] = 163156, - [SMALL_STATE(5499)] = 163167, - [SMALL_STATE(5500)] = 163178, - [SMALL_STATE(5501)] = 163189, - [SMALL_STATE(5502)] = 163200, - [SMALL_STATE(5503)] = 163211, - [SMALL_STATE(5504)] = 163222, - [SMALL_STATE(5505)] = 163231, - [SMALL_STATE(5506)] = 163242, - [SMALL_STATE(5507)] = 163251, - [SMALL_STATE(5508)] = 163262, - [SMALL_STATE(5509)] = 163273, - [SMALL_STATE(5510)] = 163282, - [SMALL_STATE(5511)] = 163293, - [SMALL_STATE(5512)] = 163302, - [SMALL_STATE(5513)] = 163311, - [SMALL_STATE(5514)] = 163322, - [SMALL_STATE(5515)] = 163333, - [SMALL_STATE(5516)] = 163344, - [SMALL_STATE(5517)] = 163355, - [SMALL_STATE(5518)] = 163366, - [SMALL_STATE(5519)] = 163377, - [SMALL_STATE(5520)] = 163388, - [SMALL_STATE(5521)] = 163399, - [SMALL_STATE(5522)] = 163410, - [SMALL_STATE(5523)] = 163421, - [SMALL_STATE(5524)] = 163432, - [SMALL_STATE(5525)] = 163443, - [SMALL_STATE(5526)] = 163454, - [SMALL_STATE(5527)] = 163465, - [SMALL_STATE(5528)] = 163476, - [SMALL_STATE(5529)] = 163487, - [SMALL_STATE(5530)] = 163498, - [SMALL_STATE(5531)] = 163509, - [SMALL_STATE(5532)] = 163520, - [SMALL_STATE(5533)] = 163529, - [SMALL_STATE(5534)] = 163538, - [SMALL_STATE(5535)] = 163546, - [SMALL_STATE(5536)] = 163554, - [SMALL_STATE(5537)] = 163562, - [SMALL_STATE(5538)] = 163570, - [SMALL_STATE(5539)] = 163578, - [SMALL_STATE(5540)] = 163586, - [SMALL_STATE(5541)] = 163594, - [SMALL_STATE(5542)] = 163602, - [SMALL_STATE(5543)] = 163610, - [SMALL_STATE(5544)] = 163618, - [SMALL_STATE(5545)] = 163626, - [SMALL_STATE(5546)] = 163634, - [SMALL_STATE(5547)] = 163642, - [SMALL_STATE(5548)] = 163650, - [SMALL_STATE(5549)] = 163658, - [SMALL_STATE(5550)] = 163666, - [SMALL_STATE(5551)] = 163674, - [SMALL_STATE(5552)] = 163682, - [SMALL_STATE(5553)] = 163690, - [SMALL_STATE(5554)] = 163698, - [SMALL_STATE(5555)] = 163706, - [SMALL_STATE(5556)] = 163714, - [SMALL_STATE(5557)] = 163722, - [SMALL_STATE(5558)] = 163730, - [SMALL_STATE(5559)] = 163738, - [SMALL_STATE(5560)] = 163746, - [SMALL_STATE(5561)] = 163754, - [SMALL_STATE(5562)] = 163764, - [SMALL_STATE(5563)] = 163772, - [SMALL_STATE(5564)] = 163780, - [SMALL_STATE(5565)] = 163788, - [SMALL_STATE(5566)] = 163796, - [SMALL_STATE(5567)] = 163804, - [SMALL_STATE(5568)] = 163812, - [SMALL_STATE(5569)] = 163820, - [SMALL_STATE(5570)] = 163828, - [SMALL_STATE(5571)] = 163836, - [SMALL_STATE(5572)] = 163844, - [SMALL_STATE(5573)] = 163852, - [SMALL_STATE(5574)] = 163860, - [SMALL_STATE(5575)] = 163868, - [SMALL_STATE(5576)] = 163876, - [SMALL_STATE(5577)] = 163884, - [SMALL_STATE(5578)] = 163892, - [SMALL_STATE(5579)] = 163900, - [SMALL_STATE(5580)] = 163908, - [SMALL_STATE(5581)] = 163916, - [SMALL_STATE(5582)] = 163924, - [SMALL_STATE(5583)] = 163932, - [SMALL_STATE(5584)] = 163940, - [SMALL_STATE(5585)] = 163948, - [SMALL_STATE(5586)] = 163956, - [SMALL_STATE(5587)] = 163964, - [SMALL_STATE(5588)] = 163972, - [SMALL_STATE(5589)] = 163980, - [SMALL_STATE(5590)] = 163988, - [SMALL_STATE(5591)] = 163996, - [SMALL_STATE(5592)] = 164004, - [SMALL_STATE(5593)] = 164012, - [SMALL_STATE(5594)] = 164020, - [SMALL_STATE(5595)] = 164028, - [SMALL_STATE(5596)] = 164036, - [SMALL_STATE(5597)] = 164044, - [SMALL_STATE(5598)] = 164052, - [SMALL_STATE(5599)] = 164060, - [SMALL_STATE(5600)] = 164068, - [SMALL_STATE(5601)] = 164076, - [SMALL_STATE(5602)] = 164084, - [SMALL_STATE(5603)] = 164092, - [SMALL_STATE(5604)] = 164100, - [SMALL_STATE(5605)] = 164110, - [SMALL_STATE(5606)] = 164118, - [SMALL_STATE(5607)] = 164126, - [SMALL_STATE(5608)] = 164134, - [SMALL_STATE(5609)] = 164142, - [SMALL_STATE(5610)] = 164150, - [SMALL_STATE(5611)] = 164158, - [SMALL_STATE(5612)] = 164166, - [SMALL_STATE(5613)] = 164174, - [SMALL_STATE(5614)] = 164182, - [SMALL_STATE(5615)] = 164190, - [SMALL_STATE(5616)] = 164198, - [SMALL_STATE(5617)] = 164206, - [SMALL_STATE(5618)] = 164214, - [SMALL_STATE(5619)] = 164222, - [SMALL_STATE(5620)] = 164230, - [SMALL_STATE(5621)] = 164238, - [SMALL_STATE(5622)] = 164246, - [SMALL_STATE(5623)] = 164254, - [SMALL_STATE(5624)] = 164262, - [SMALL_STATE(5625)] = 164270, - [SMALL_STATE(5626)] = 164278, - [SMALL_STATE(5627)] = 164286, - [SMALL_STATE(5628)] = 164294, - [SMALL_STATE(5629)] = 164302, - [SMALL_STATE(5630)] = 164310, - [SMALL_STATE(5631)] = 164318, - [SMALL_STATE(5632)] = 164326, - [SMALL_STATE(5633)] = 164334, - [SMALL_STATE(5634)] = 164342, - [SMALL_STATE(5635)] = 164350, - [SMALL_STATE(5636)] = 164358, - [SMALL_STATE(5637)] = 164366, - [SMALL_STATE(5638)] = 164374, - [SMALL_STATE(5639)] = 164382, - [SMALL_STATE(5640)] = 164390, - [SMALL_STATE(5641)] = 164398, - [SMALL_STATE(5642)] = 164406, - [SMALL_STATE(5643)] = 164414, - [SMALL_STATE(5644)] = 164422, - [SMALL_STATE(5645)] = 164432, - [SMALL_STATE(5646)] = 164440, - [SMALL_STATE(5647)] = 164448, - [SMALL_STATE(5648)] = 164456, - [SMALL_STATE(5649)] = 164464, - [SMALL_STATE(5650)] = 164472, - [SMALL_STATE(5651)] = 164480, - [SMALL_STATE(5652)] = 164488, - [SMALL_STATE(5653)] = 164496, - [SMALL_STATE(5654)] = 164504, - [SMALL_STATE(5655)] = 164512, - [SMALL_STATE(5656)] = 164520, - [SMALL_STATE(5657)] = 164528, - [SMALL_STATE(5658)] = 164536, - [SMALL_STATE(5659)] = 164544, - [SMALL_STATE(5660)] = 164552, - [SMALL_STATE(5661)] = 164560, - [SMALL_STATE(5662)] = 164568, - [SMALL_STATE(5663)] = 164576, - [SMALL_STATE(5664)] = 164584, - [SMALL_STATE(5665)] = 164592, - [SMALL_STATE(5666)] = 164600, - [SMALL_STATE(5667)] = 164608, - [SMALL_STATE(5668)] = 164616, - [SMALL_STATE(5669)] = 164624, - [SMALL_STATE(5670)] = 164632, - [SMALL_STATE(5671)] = 164640, - [SMALL_STATE(5672)] = 164648, - [SMALL_STATE(5673)] = 164656, - [SMALL_STATE(5674)] = 164664, - [SMALL_STATE(5675)] = 164672, - [SMALL_STATE(5676)] = 164680, - [SMALL_STATE(5677)] = 164688, - [SMALL_STATE(5678)] = 164696, - [SMALL_STATE(5679)] = 164704, - [SMALL_STATE(5680)] = 164712, - [SMALL_STATE(5681)] = 164720, - [SMALL_STATE(5682)] = 164728, - [SMALL_STATE(5683)] = 164736, - [SMALL_STATE(5684)] = 164744, - [SMALL_STATE(5685)] = 164752, - [SMALL_STATE(5686)] = 164760, - [SMALL_STATE(5687)] = 164768, - [SMALL_STATE(5688)] = 164776, - [SMALL_STATE(5689)] = 164784, - [SMALL_STATE(5690)] = 164792, - [SMALL_STATE(5691)] = 164800, - [SMALL_STATE(5692)] = 164808, - [SMALL_STATE(5693)] = 164816, - [SMALL_STATE(5694)] = 164824, - [SMALL_STATE(5695)] = 164832, - [SMALL_STATE(5696)] = 164840, - [SMALL_STATE(5697)] = 164848, - [SMALL_STATE(5698)] = 164856, - [SMALL_STATE(5699)] = 164864, - [SMALL_STATE(5700)] = 164872, - [SMALL_STATE(5701)] = 164880, - [SMALL_STATE(5702)] = 164888, - [SMALL_STATE(5703)] = 164896, - [SMALL_STATE(5704)] = 164904, - [SMALL_STATE(5705)] = 164912, - [SMALL_STATE(5706)] = 164920, - [SMALL_STATE(5707)] = 164930, - [SMALL_STATE(5708)] = 164938, - [SMALL_STATE(5709)] = 164946, - [SMALL_STATE(5710)] = 164954, - [SMALL_STATE(5711)] = 164962, - [SMALL_STATE(5712)] = 164970, - [SMALL_STATE(5713)] = 164978, - [SMALL_STATE(5714)] = 164986, - [SMALL_STATE(5715)] = 164994, - [SMALL_STATE(5716)] = 165002, - [SMALL_STATE(5717)] = 165010, - [SMALL_STATE(5718)] = 165018, - [SMALL_STATE(5719)] = 165026, - [SMALL_STATE(5720)] = 165034, - [SMALL_STATE(5721)] = 165042, - [SMALL_STATE(5722)] = 165050, - [SMALL_STATE(5723)] = 165058, - [SMALL_STATE(5724)] = 165066, - [SMALL_STATE(5725)] = 165074, - [SMALL_STATE(5726)] = 165082, - [SMALL_STATE(5727)] = 165090, - [SMALL_STATE(5728)] = 165098, - [SMALL_STATE(5729)] = 165106, - [SMALL_STATE(5730)] = 165114, - [SMALL_STATE(5731)] = 165122, - [SMALL_STATE(5732)] = 165130, - [SMALL_STATE(5733)] = 165138, - [SMALL_STATE(5734)] = 165146, - [SMALL_STATE(5735)] = 165154, - [SMALL_STATE(5736)] = 165162, - [SMALL_STATE(5737)] = 165170, - [SMALL_STATE(5738)] = 165178, - [SMALL_STATE(5739)] = 165186, - [SMALL_STATE(5740)] = 165194, - [SMALL_STATE(5741)] = 165202, - [SMALL_STATE(5742)] = 165210, - [SMALL_STATE(5743)] = 165218, - [SMALL_STATE(5744)] = 165226, - [SMALL_STATE(5745)] = 165234, - [SMALL_STATE(5746)] = 165242, - [SMALL_STATE(5747)] = 165250, - [SMALL_STATE(5748)] = 165258, - [SMALL_STATE(5749)] = 165266, - [SMALL_STATE(5750)] = 165274, - [SMALL_STATE(5751)] = 165282, - [SMALL_STATE(5752)] = 165290, - [SMALL_STATE(5753)] = 165298, - [SMALL_STATE(5754)] = 165306, - [SMALL_STATE(5755)] = 165314, - [SMALL_STATE(5756)] = 165322, - [SMALL_STATE(5757)] = 165330, - [SMALL_STATE(5758)] = 165338, - [SMALL_STATE(5759)] = 165346, - [SMALL_STATE(5760)] = 165356, - [SMALL_STATE(5761)] = 165364, - [SMALL_STATE(5762)] = 165372, - [SMALL_STATE(5763)] = 165382, - [SMALL_STATE(5764)] = 165390, - [SMALL_STATE(5765)] = 165398, - [SMALL_STATE(5766)] = 165406, - [SMALL_STATE(5767)] = 165414, - [SMALL_STATE(5768)] = 165422, - [SMALL_STATE(5769)] = 165430, - [SMALL_STATE(5770)] = 165438, - [SMALL_STATE(5771)] = 165446, - [SMALL_STATE(5772)] = 165454, - [SMALL_STATE(5773)] = 165462, - [SMALL_STATE(5774)] = 165470, - [SMALL_STATE(5775)] = 165478, - [SMALL_STATE(5776)] = 165486, - [SMALL_STATE(5777)] = 165494, - [SMALL_STATE(5778)] = 165502, - [SMALL_STATE(5779)] = 165510, - [SMALL_STATE(5780)] = 165518, - [SMALL_STATE(5781)] = 165526, - [SMALL_STATE(5782)] = 165534, - [SMALL_STATE(5783)] = 165542, - [SMALL_STATE(5784)] = 165550, - [SMALL_STATE(5785)] = 165558, - [SMALL_STATE(5786)] = 165566, - [SMALL_STATE(5787)] = 165574, - [SMALL_STATE(5788)] = 165582, - [SMALL_STATE(5789)] = 165590, - [SMALL_STATE(5790)] = 165598, - [SMALL_STATE(5791)] = 165606, - [SMALL_STATE(5792)] = 165614, - [SMALL_STATE(5793)] = 165622, - [SMALL_STATE(5794)] = 165630, - [SMALL_STATE(5795)] = 165638, - [SMALL_STATE(5796)] = 165646, - [SMALL_STATE(5797)] = 165656, - [SMALL_STATE(5798)] = 165664, - [SMALL_STATE(5799)] = 165672, - [SMALL_STATE(5800)] = 165680, - [SMALL_STATE(5801)] = 165688, - [SMALL_STATE(5802)] = 165696, - [SMALL_STATE(5803)] = 165704, - [SMALL_STATE(5804)] = 165712, - [SMALL_STATE(5805)] = 165720, - [SMALL_STATE(5806)] = 165728, - [SMALL_STATE(5807)] = 165736, - [SMALL_STATE(5808)] = 165744, - [SMALL_STATE(5809)] = 165752, - [SMALL_STATE(5810)] = 165760, - [SMALL_STATE(5811)] = 165768, - [SMALL_STATE(5812)] = 165776, - [SMALL_STATE(5813)] = 165784, - [SMALL_STATE(5814)] = 165792, - [SMALL_STATE(5815)] = 165800, - [SMALL_STATE(5816)] = 165808, - [SMALL_STATE(5817)] = 165816, - [SMALL_STATE(5818)] = 165824, - [SMALL_STATE(5819)] = 165832, - [SMALL_STATE(5820)] = 165840, - [SMALL_STATE(5821)] = 165848, - [SMALL_STATE(5822)] = 165856, - [SMALL_STATE(5823)] = 165864, - [SMALL_STATE(5824)] = 165872, - [SMALL_STATE(5825)] = 165880, - [SMALL_STATE(5826)] = 165888, - [SMALL_STATE(5827)] = 165896, - [SMALL_STATE(5828)] = 165904, - [SMALL_STATE(5829)] = 165912, - [SMALL_STATE(5830)] = 165920, - [SMALL_STATE(5831)] = 165928, - [SMALL_STATE(5832)] = 165936, - [SMALL_STATE(5833)] = 165944, - [SMALL_STATE(5834)] = 165952, - [SMALL_STATE(5835)] = 165960, - [SMALL_STATE(5836)] = 165968, - [SMALL_STATE(5837)] = 165976, - [SMALL_STATE(5838)] = 165984, - [SMALL_STATE(5839)] = 165992, - [SMALL_STATE(5840)] = 166000, - [SMALL_STATE(5841)] = 166008, - [SMALL_STATE(5842)] = 166016, - [SMALL_STATE(5843)] = 166024, - [SMALL_STATE(5844)] = 166032, - [SMALL_STATE(5845)] = 166040, - [SMALL_STATE(5846)] = 166048, - [SMALL_STATE(5847)] = 166056, - [SMALL_STATE(5848)] = 166064, - [SMALL_STATE(5849)] = 166072, - [SMALL_STATE(5850)] = 166080, - [SMALL_STATE(5851)] = 166088, - [SMALL_STATE(5852)] = 166096, - [SMALL_STATE(5853)] = 166104, - [SMALL_STATE(5854)] = 166112, - [SMALL_STATE(5855)] = 166120, - [SMALL_STATE(5856)] = 166128, - [SMALL_STATE(5857)] = 166136, - [SMALL_STATE(5858)] = 166144, - [SMALL_STATE(5859)] = 166152, - [SMALL_STATE(5860)] = 166160, - [SMALL_STATE(5861)] = 166168, - [SMALL_STATE(5862)] = 166176, - [SMALL_STATE(5863)] = 166184, - [SMALL_STATE(5864)] = 166192, - [SMALL_STATE(5865)] = 166200, - [SMALL_STATE(5866)] = 166208, - [SMALL_STATE(5867)] = 166216, - [SMALL_STATE(5868)] = 166226, - [SMALL_STATE(5869)] = 166234, - [SMALL_STATE(5870)] = 166242, - [SMALL_STATE(5871)] = 166250, - [SMALL_STATE(5872)] = 166258, - [SMALL_STATE(5873)] = 166266, - [SMALL_STATE(5874)] = 166274, - [SMALL_STATE(5875)] = 166284, - [SMALL_STATE(5876)] = 166292, - [SMALL_STATE(5877)] = 166300, - [SMALL_STATE(5878)] = 166308, - [SMALL_STATE(5879)] = 166316, - [SMALL_STATE(5880)] = 166324, - [SMALL_STATE(5881)] = 166332, - [SMALL_STATE(5882)] = 166340, - [SMALL_STATE(5883)] = 166348, - [SMALL_STATE(5884)] = 166356, - [SMALL_STATE(5885)] = 166364, - [SMALL_STATE(5886)] = 166372, - [SMALL_STATE(5887)] = 166380, - [SMALL_STATE(5888)] = 166388, - [SMALL_STATE(5889)] = 166396, - [SMALL_STATE(5890)] = 166404, - [SMALL_STATE(5891)] = 166412, - [SMALL_STATE(5892)] = 166420, - [SMALL_STATE(5893)] = 166428, - [SMALL_STATE(5894)] = 166436, - [SMALL_STATE(5895)] = 166444, - [SMALL_STATE(5896)] = 166452, - [SMALL_STATE(5897)] = 166460, - [SMALL_STATE(5898)] = 166468, - [SMALL_STATE(5899)] = 166476, - [SMALL_STATE(5900)] = 166484, - [SMALL_STATE(5901)] = 166492, - [SMALL_STATE(5902)] = 166500, - [SMALL_STATE(5903)] = 166508, - [SMALL_STATE(5904)] = 166516, - [SMALL_STATE(5905)] = 166524, - [SMALL_STATE(5906)] = 166532, - [SMALL_STATE(5907)] = 166540, - [SMALL_STATE(5908)] = 166548, - [SMALL_STATE(5909)] = 166556, - [SMALL_STATE(5910)] = 166564, - [SMALL_STATE(5911)] = 166572, - [SMALL_STATE(5912)] = 166580, - [SMALL_STATE(5913)] = 166588, - [SMALL_STATE(5914)] = 166596, - [SMALL_STATE(5915)] = 166606, - [SMALL_STATE(5916)] = 166614, - [SMALL_STATE(5917)] = 166622, - [SMALL_STATE(5918)] = 166630, - [SMALL_STATE(5919)] = 166638, - [SMALL_STATE(5920)] = 166646, - [SMALL_STATE(5921)] = 166654, - [SMALL_STATE(5922)] = 166662, - [SMALL_STATE(5923)] = 166670, - [SMALL_STATE(5924)] = 166678, + [SMALL_STATE(1225)] = 7774, + [SMALL_STATE(1226)] = 7851, + [SMALL_STATE(1227)] = 7936, + [SMALL_STATE(1228)] = 8021, + [SMALL_STATE(1229)] = 8096, + [SMALL_STATE(1230)] = 8169, + [SMALL_STATE(1231)] = 8238, + [SMALL_STATE(1232)] = 8315, + [SMALL_STATE(1233)] = 8402, + [SMALL_STATE(1234)] = 8491, + [SMALL_STATE(1235)] = 8580, + [SMALL_STATE(1236)] = 8663, + [SMALL_STATE(1237)] = 8742, + [SMALL_STATE(1238)] = 8827, + [SMALL_STATE(1239)] = 8902, + [SMALL_STATE(1240)] = 8975, + [SMALL_STATE(1241)] = 9042, + [SMALL_STATE(1242)] = 9111, + [SMALL_STATE(1243)] = 9189, + [SMALL_STATE(1244)] = 9261, + [SMALL_STATE(1245)] = 9333, + [SMALL_STATE(1246)] = 9403, + [SMALL_STATE(1247)] = 9487, + [SMALL_STATE(1248)] = 9559, + [SMALL_STATE(1249)] = 9631, + [SMALL_STATE(1250)] = 9715, + [SMALL_STATE(1251)] = 9781, + [SMALL_STATE(1252)] = 9847, + [SMALL_STATE(1253)] = 9919, + [SMALL_STATE(1254)] = 10003, + [SMALL_STATE(1255)] = 10083, + [SMALL_STATE(1256)] = 10159, + [SMALL_STATE(1257)] = 10225, + [SMALL_STATE(1258)] = 10297, + [SMALL_STATE(1259)] = 10371, + [SMALL_STATE(1260)] = 10447, + [SMALL_STATE(1261)] = 10513, + [SMALL_STATE(1262)] = 10585, + [SMALL_STATE(1263)] = 10651, + [SMALL_STATE(1264)] = 10721, + [SMALL_STATE(1265)] = 10787, + [SMALL_STATE(1266)] = 10861, + [SMALL_STATE(1267)] = 10949, + [SMALL_STATE(1268)] = 11023, + [SMALL_STATE(1269)] = 11101, + [SMALL_STATE(1270)] = 11175, + [SMALL_STATE(1271)] = 11247, + [SMALL_STATE(1272)] = 11321, + [SMALL_STATE(1273)] = 11397, + [SMALL_STATE(1274)] = 11475, + [SMALL_STATE(1275)] = 11541, + [SMALL_STATE(1276)] = 11607, + [SMALL_STATE(1277)] = 11687, + [SMALL_STATE(1278)] = 11761, + [SMALL_STATE(1279)] = 11849, + [SMALL_STATE(1280)] = 11915, + [SMALL_STATE(1281)] = 11981, + [SMALL_STATE(1282)] = 12047, + [SMALL_STATE(1283)] = 12113, + [SMALL_STATE(1284)] = 12179, + [SMALL_STATE(1285)] = 12261, + [SMALL_STATE(1286)] = 12327, + [SMALL_STATE(1287)] = 12400, + [SMALL_STATE(1288)] = 12471, + [SMALL_STATE(1289)] = 12538, + [SMALL_STATE(1290)] = 12605, + [SMALL_STATE(1291)] = 12676, + [SMALL_STATE(1292)] = 12747, + [SMALL_STATE(1293)] = 12820, + [SMALL_STATE(1294)] = 12897, + [SMALL_STATE(1295)] = 12968, + [SMALL_STATE(1296)] = 13041, + [SMALL_STATE(1297)] = 13110, + [SMALL_STATE(1298)] = 13189, + [SMALL_STATE(1299)] = 13266, + [SMALL_STATE(1300)] = 13335, + [SMALL_STATE(1301)] = 13412, + [SMALL_STATE(1302)] = 13495, + [SMALL_STATE(1303)] = 13568, + [SMALL_STATE(1304)] = 13637, + [SMALL_STATE(1305)] = 13714, + [SMALL_STATE(1306)] = 13783, + [SMALL_STATE(1307)] = 13856, + [SMALL_STATE(1308)] = 13976, + [SMALL_STATE(1309)] = 14046, + [SMALL_STATE(1310)] = 14112, + [SMALL_STATE(1311)] = 14188, + [SMALL_STATE(1312)] = 14308, + [SMALL_STATE(1313)] = 14382, + [SMALL_STATE(1314)] = 14454, + [SMALL_STATE(1315)] = 14528, + [SMALL_STATE(1316)] = 14602, + [SMALL_STATE(1317)] = 14672, + [SMALL_STATE(1318)] = 14792, + [SMALL_STATE(1319)] = 14862, + [SMALL_STATE(1320)] = 14932, + [SMALL_STATE(1321)] = 15052, + [SMALL_STATE(1322)] = 15122, + [SMALL_STATE(1323)] = 15188, + [SMALL_STATE(1324)] = 15258, + [SMALL_STATE(1325)] = 15328, + [SMALL_STATE(1326)] = 15448, + [SMALL_STATE(1327)] = 15568, + [SMALL_STATE(1328)] = 15636, + [SMALL_STATE(1329)] = 15706, + [SMALL_STATE(1330)] = 15778, + [SMALL_STATE(1331)] = 15852, + [SMALL_STATE(1332)] = 15921, + [SMALL_STATE(1333)] = 15994, + [SMALL_STATE(1334)] = 16067, + [SMALL_STATE(1335)] = 16136, + [SMALL_STATE(1336)] = 16205, + [SMALL_STATE(1337)] = 16274, + [SMALL_STATE(1338)] = 16343, + [SMALL_STATE(1339)] = 16410, + [SMALL_STATE(1340)] = 16479, + [SMALL_STATE(1341)] = 16546, + [SMALL_STATE(1342)] = 16615, + [SMALL_STATE(1343)] = 16684, + [SMALL_STATE(1344)] = 16755, + [SMALL_STATE(1345)] = 16826, + [SMALL_STATE(1346)] = 16894, + [SMALL_STATE(1347)] = 17010, + [SMALL_STATE(1348)] = 17078, + [SMALL_STATE(1349)] = 17194, + [SMALL_STATE(1350)] = 17262, + [SMALL_STATE(1351)] = 17330, + [SMALL_STATE(1352)] = 17446, + [SMALL_STATE(1353)] = 17514, + [SMALL_STATE(1354)] = 17630, + [SMALL_STATE(1355)] = 17698, + [SMALL_STATE(1356)] = 17768, + [SMALL_STATE(1357)] = 17834, + [SMALL_STATE(1358)] = 17950, + [SMALL_STATE(1359)] = 18018, + [SMALL_STATE(1360)] = 18084, + [SMALL_STATE(1361)] = 18152, + [SMALL_STATE(1362)] = 18268, + [SMALL_STATE(1363)] = 18336, + [SMALL_STATE(1364)] = 18452, + [SMALL_STATE(1365)] = 18568, + [SMALL_STATE(1366)] = 18636, + [SMALL_STATE(1367)] = 18704, + [SMALL_STATE(1368)] = 18772, + [SMALL_STATE(1369)] = 18840, + [SMALL_STATE(1370)] = 18908, + [SMALL_STATE(1371)] = 19024, + [SMALL_STATE(1372)] = 19092, + [SMALL_STATE(1373)] = 19160, + [SMALL_STATE(1374)] = 19228, + [SMALL_STATE(1375)] = 19296, + [SMALL_STATE(1376)] = 19412, + [SMALL_STATE(1377)] = 19480, + [SMALL_STATE(1378)] = 19596, + [SMALL_STATE(1379)] = 19712, + [SMALL_STATE(1380)] = 19828, + [SMALL_STATE(1381)] = 19896, + [SMALL_STATE(1382)] = 20012, + [SMALL_STATE(1383)] = 20128, + [SMALL_STATE(1384)] = 20244, + [SMALL_STATE(1385)] = 20360, + [SMALL_STATE(1386)] = 20476, + [SMALL_STATE(1387)] = 20544, + [SMALL_STATE(1388)] = 20655, + [SMALL_STATE(1389)] = 20720, + [SMALL_STATE(1390)] = 20831, + [SMALL_STATE(1391)] = 20896, + [SMALL_STATE(1392)] = 21007, + [SMALL_STATE(1393)] = 21118, + [SMALL_STATE(1394)] = 21183, + [SMALL_STATE(1395)] = 21248, + [SMALL_STATE(1396)] = 21313, + [SMALL_STATE(1397)] = 21378, + [SMALL_STATE(1398)] = 21489, + [SMALL_STATE(1399)] = 21600, + [SMALL_STATE(1400)] = 21711, + [SMALL_STATE(1401)] = 21776, + [SMALL_STATE(1402)] = 21841, + [SMALL_STATE(1403)] = 21906, + [SMALL_STATE(1404)] = 22018, + [SMALL_STATE(1405)] = 22130, + [SMALL_STATE(1406)] = 22242, + [SMALL_STATE(1407)] = 22354, + [SMALL_STATE(1408)] = 22466, + [SMALL_STATE(1409)] = 22578, + [SMALL_STATE(1410)] = 22690, + [SMALL_STATE(1411)] = 22801, + [SMALL_STATE(1412)] = 22912, + [SMALL_STATE(1413)] = 23023, + [SMALL_STATE(1414)] = 23134, + [SMALL_STATE(1415)] = 23253, + [SMALL_STATE(1416)] = 23372, + [SMALL_STATE(1417)] = 23483, + [SMALL_STATE(1418)] = 23586, + [SMALL_STATE(1419)] = 23697, + [SMALL_STATE(1420)] = 23808, + [SMALL_STATE(1421)] = 23919, + [SMALL_STATE(1422)] = 24030, + [SMALL_STATE(1423)] = 24149, + [SMALL_STATE(1424)] = 24268, + [SMALL_STATE(1425)] = 24379, + [SMALL_STATE(1426)] = 24490, + [SMALL_STATE(1427)] = 24609, + [SMALL_STATE(1428)] = 24718, + [SMALL_STATE(1429)] = 24775, + [SMALL_STATE(1430)] = 24832, + [SMALL_STATE(1431)] = 24943, + [SMALL_STATE(1432)] = 25000, + [SMALL_STATE(1433)] = 25057, + [SMALL_STATE(1434)] = 25114, + [SMALL_STATE(1435)] = 25186, + [SMALL_STATE(1436)] = 25252, + [SMALL_STATE(1437)] = 25318, + [SMALL_STATE(1438)] = 25382, + [SMALL_STATE(1439)] = 25448, + [SMALL_STATE(1440)] = 25507, + [SMALL_STATE(1441)] = 25564, + [SMALL_STATE(1442)] = 25619, + [SMALL_STATE(1443)] = 25676, + [SMALL_STATE(1444)] = 25737, + [SMALL_STATE(1445)] = 25792, + [SMALL_STATE(1446)] = 25847, + [SMALL_STATE(1447)] = 25904, + [SMALL_STATE(1448)] = 25959, + [SMALL_STATE(1449)] = 26020, + [SMALL_STATE(1450)] = 26075, + [SMALL_STATE(1451)] = 26130, + [SMALL_STATE(1452)] = 26191, + [SMALL_STATE(1453)] = 26252, + [SMALL_STATE(1454)] = 26311, + [SMALL_STATE(1455)] = 26370, + [SMALL_STATE(1456)] = 26425, + [SMALL_STATE(1457)] = 26486, + [SMALL_STATE(1458)] = 26546, + [SMALL_STATE(1459)] = 26600, + [SMALL_STATE(1460)] = 26712, + [SMALL_STATE(1461)] = 26768, + [SMALL_STATE(1462)] = 26888, + [SMALL_STATE(1463)] = 26974, + [SMALL_STATE(1464)] = 27094, + [SMALL_STATE(1465)] = 27214, + [SMALL_STATE(1466)] = 27274, + [SMALL_STATE(1467)] = 27334, + [SMALL_STATE(1468)] = 27388, + [SMALL_STATE(1469)] = 27500, + [SMALL_STATE(1470)] = 27612, + [SMALL_STATE(1471)] = 27674, + [SMALL_STATE(1472)] = 27734, + [SMALL_STATE(1473)] = 27788, + [SMALL_STATE(1474)] = 27842, + [SMALL_STATE(1475)] = 27896, + [SMALL_STATE(1476)] = 27950, + [SMALL_STATE(1477)] = 28004, + [SMALL_STATE(1478)] = 28058, + [SMALL_STATE(1479)] = 28112, + [SMALL_STATE(1480)] = 28166, + [SMALL_STATE(1481)] = 28220, + [SMALL_STATE(1482)] = 28332, + [SMALL_STATE(1483)] = 28386, + [SMALL_STATE(1484)] = 28440, + [SMALL_STATE(1485)] = 28494, + [SMALL_STATE(1486)] = 28548, + [SMALL_STATE(1487)] = 28660, + [SMALL_STATE(1488)] = 28714, + [SMALL_STATE(1489)] = 28768, + [SMALL_STATE(1490)] = 28822, + [SMALL_STATE(1491)] = 28876, + [SMALL_STATE(1492)] = 28930, + [SMALL_STATE(1493)] = 28984, + [SMALL_STATE(1494)] = 29038, + [SMALL_STATE(1495)] = 29150, + [SMALL_STATE(1496)] = 29262, + [SMALL_STATE(1497)] = 29316, + [SMALL_STATE(1498)] = 29428, + [SMALL_STATE(1499)] = 29482, + [SMALL_STATE(1500)] = 29536, + [SMALL_STATE(1501)] = 29590, + [SMALL_STATE(1502)] = 29644, + [SMALL_STATE(1503)] = 29704, + [SMALL_STATE(1504)] = 29816, + [SMALL_STATE(1505)] = 29870, + [SMALL_STATE(1506)] = 29924, + [SMALL_STATE(1507)] = 29984, + [SMALL_STATE(1508)] = 30038, + [SMALL_STATE(1509)] = 30092, + [SMALL_STATE(1510)] = 30146, + [SMALL_STATE(1511)] = 30200, + [SMALL_STATE(1512)] = 30254, + [SMALL_STATE(1513)] = 30308, + [SMALL_STATE(1514)] = 30394, + [SMALL_STATE(1515)] = 30448, + [SMALL_STATE(1516)] = 30502, + [SMALL_STATE(1517)] = 30564, + [SMALL_STATE(1518)] = 30618, + [SMALL_STATE(1519)] = 30704, + [SMALL_STATE(1520)] = 30790, + [SMALL_STATE(1521)] = 30844, + [SMALL_STATE(1522)] = 30898, + [SMALL_STATE(1523)] = 31018, + [SMALL_STATE(1524)] = 31072, + [SMALL_STATE(1525)] = 31146, + [SMALL_STATE(1526)] = 31258, + [SMALL_STATE(1527)] = 31312, + [SMALL_STATE(1528)] = 31366, + [SMALL_STATE(1529)] = 31442, + [SMALL_STATE(1530)] = 31504, + [SMALL_STATE(1531)] = 31558, + [SMALL_STATE(1532)] = 31612, + [SMALL_STATE(1533)] = 31674, + [SMALL_STATE(1534)] = 31728, + [SMALL_STATE(1535)] = 31782, + [SMALL_STATE(1536)] = 31840, + [SMALL_STATE(1537)] = 31896, + [SMALL_STATE(1538)] = 31954, + [SMALL_STATE(1539)] = 32008, + [SMALL_STATE(1540)] = 32062, + [SMALL_STATE(1541)] = 32120, + [SMALL_STATE(1542)] = 32206, + [SMALL_STATE(1543)] = 32260, + [SMALL_STATE(1544)] = 32314, + [SMALL_STATE(1545)] = 32368, + [SMALL_STATE(1546)] = 32428, + [SMALL_STATE(1547)] = 32482, + [SMALL_STATE(1548)] = 32538, + [SMALL_STATE(1549)] = 32592, + [SMALL_STATE(1550)] = 32646, + [SMALL_STATE(1551)] = 32702, + [SMALL_STATE(1552)] = 32756, + [SMALL_STATE(1553)] = 32810, + [SMALL_STATE(1554)] = 32864, + [SMALL_STATE(1555)] = 32918, + [SMALL_STATE(1556)] = 32972, + [SMALL_STATE(1557)] = 33026, + [SMALL_STATE(1558)] = 33080, + [SMALL_STATE(1559)] = 33134, + [SMALL_STATE(1560)] = 33188, + [SMALL_STATE(1561)] = 33242, + [SMALL_STATE(1562)] = 33296, + [SMALL_STATE(1563)] = 33350, + [SMALL_STATE(1564)] = 33410, + [SMALL_STATE(1565)] = 33466, + [SMALL_STATE(1566)] = 33522, + [SMALL_STATE(1567)] = 33582, + [SMALL_STATE(1568)] = 33642, + [SMALL_STATE(1569)] = 33696, + [SMALL_STATE(1570)] = 33750, + [SMALL_STATE(1571)] = 33804, + [SMALL_STATE(1572)] = 33860, + [SMALL_STATE(1573)] = 33914, + [SMALL_STATE(1574)] = 33968, + [SMALL_STATE(1575)] = 34022, + [SMALL_STATE(1576)] = 34078, + [SMALL_STATE(1577)] = 34190, + [SMALL_STATE(1578)] = 34290, + [SMALL_STATE(1579)] = 34392, + [SMALL_STATE(1580)] = 34448, + [SMALL_STATE(1581)] = 34530, + [SMALL_STATE(1582)] = 34584, + [SMALL_STATE(1583)] = 34638, + [SMALL_STATE(1584)] = 34692, + [SMALL_STATE(1585)] = 34746, + [SMALL_STATE(1586)] = 34800, + [SMALL_STATE(1587)] = 34856, + [SMALL_STATE(1588)] = 34910, + [SMALL_STATE(1589)] = 34966, + [SMALL_STATE(1590)] = 35060, + [SMALL_STATE(1591)] = 35156, + [SMALL_STATE(1592)] = 35210, + [SMALL_STATE(1593)] = 35308, + [SMALL_STATE(1594)] = 35362, + [SMALL_STATE(1595)] = 35442, + [SMALL_STATE(1596)] = 35496, + [SMALL_STATE(1597)] = 35550, + [SMALL_STATE(1598)] = 35632, + [SMALL_STATE(1599)] = 35688, + [SMALL_STATE(1600)] = 35744, + [SMALL_STATE(1601)] = 35856, + [SMALL_STATE(1602)] = 35914, + [SMALL_STATE(1603)] = 35972, + [SMALL_STATE(1604)] = 36032, + [SMALL_STATE(1605)] = 36086, + [SMALL_STATE(1606)] = 36140, + [SMALL_STATE(1607)] = 36196, + [SMALL_STATE(1608)] = 36282, + [SMALL_STATE(1609)] = 36336, + [SMALL_STATE(1610)] = 36426, + [SMALL_STATE(1611)] = 36530, + [SMALL_STATE(1612)] = 36590, + [SMALL_STATE(1613)] = 36662, + [SMALL_STATE(1614)] = 36774, + [SMALL_STATE(1615)] = 36886, + [SMALL_STATE(1616)] = 36998, + [SMALL_STATE(1617)] = 37078, + [SMALL_STATE(1618)] = 37163, + [SMALL_STATE(1619)] = 37216, + [SMALL_STATE(1620)] = 37275, + [SMALL_STATE(1621)] = 37328, + [SMALL_STATE(1622)] = 37381, + [SMALL_STATE(1623)] = 37434, + [SMALL_STATE(1624)] = 37549, + [SMALL_STATE(1625)] = 37606, + [SMALL_STATE(1626)] = 37685, + [SMALL_STATE(1627)] = 37800, + [SMALL_STATE(1628)] = 37915, + [SMALL_STATE(1629)] = 38026, + [SMALL_STATE(1630)] = 38081, + [SMALL_STATE(1631)] = 38134, + [SMALL_STATE(1632)] = 38211, + [SMALL_STATE(1633)] = 38290, + [SMALL_STATE(1634)] = 38359, + [SMALL_STATE(1635)] = 38430, + [SMALL_STATE(1636)] = 38483, + [SMALL_STATE(1637)] = 38556, + [SMALL_STATE(1638)] = 38609, + [SMALL_STATE(1639)] = 38662, + [SMALL_STATE(1640)] = 38773, + [SMALL_STATE(1641)] = 38884, + [SMALL_STATE(1642)] = 38941, + [SMALL_STATE(1643)] = 38994, + [SMALL_STATE(1644)] = 39105, + [SMALL_STATE(1645)] = 39158, + [SMALL_STATE(1646)] = 39211, + [SMALL_STATE(1647)] = 39264, + [SMALL_STATE(1648)] = 39321, + [SMALL_STATE(1649)] = 39374, + [SMALL_STATE(1650)] = 39427, + [SMALL_STATE(1651)] = 39540, + [SMALL_STATE(1652)] = 39593, + [SMALL_STATE(1653)] = 39704, + [SMALL_STATE(1654)] = 39757, + [SMALL_STATE(1655)] = 39810, + [SMALL_STATE(1656)] = 39863, + [SMALL_STATE(1657)] = 39916, + [SMALL_STATE(1658)] = 39969, + [SMALL_STATE(1659)] = 40022, + [SMALL_STATE(1660)] = 40075, + [SMALL_STATE(1661)] = 40128, + [SMALL_STATE(1662)] = 40181, + [SMALL_STATE(1663)] = 40234, + [SMALL_STATE(1664)] = 40287, + [SMALL_STATE(1665)] = 40358, + [SMALL_STATE(1666)] = 40411, + [SMALL_STATE(1667)] = 40492, + [SMALL_STATE(1668)] = 40571, + [SMALL_STATE(1669)] = 40624, + [SMALL_STATE(1670)] = 40677, + [SMALL_STATE(1671)] = 40730, + [SMALL_STATE(1672)] = 40783, + [SMALL_STATE(1673)] = 40836, + [SMALL_STATE(1674)] = 40889, + [SMALL_STATE(1675)] = 40942, + [SMALL_STATE(1676)] = 40995, + [SMALL_STATE(1677)] = 41048, + [SMALL_STATE(1678)] = 41101, + [SMALL_STATE(1679)] = 41154, + [SMALL_STATE(1680)] = 41207, + [SMALL_STATE(1681)] = 41260, + [SMALL_STATE(1682)] = 41313, + [SMALL_STATE(1683)] = 41366, + [SMALL_STATE(1684)] = 41445, + [SMALL_STATE(1685)] = 41498, + [SMALL_STATE(1686)] = 41551, + [SMALL_STATE(1687)] = 41604, + [SMALL_STATE(1688)] = 41657, + [SMALL_STATE(1689)] = 41710, + [SMALL_STATE(1690)] = 41763, + [SMALL_STATE(1691)] = 41816, + [SMALL_STATE(1692)] = 41869, + [SMALL_STATE(1693)] = 41922, + [SMALL_STATE(1694)] = 41985, + [SMALL_STATE(1695)] = 42040, + [SMALL_STATE(1696)] = 42093, + [SMALL_STATE(1697)] = 42170, + [SMALL_STATE(1698)] = 42223, + [SMALL_STATE(1699)] = 42334, + [SMALL_STATE(1700)] = 42389, + [SMALL_STATE(1701)] = 42452, + [SMALL_STATE(1702)] = 42531, + [SMALL_STATE(1703)] = 42586, + [SMALL_STATE(1704)] = 42663, + [SMALL_STATE(1705)] = 42718, + [SMALL_STATE(1706)] = 42797, + [SMALL_STATE(1707)] = 42850, + [SMALL_STATE(1708)] = 42903, + [SMALL_STATE(1709)] = 42964, + [SMALL_STATE(1710)] = 43027, + [SMALL_STATE(1711)] = 43106, + [SMALL_STATE(1712)] = 43219, + [SMALL_STATE(1713)] = 43272, + [SMALL_STATE(1714)] = 43383, + [SMALL_STATE(1715)] = 43436, + [SMALL_STATE(1716)] = 43495, + [SMALL_STATE(1717)] = 43572, + [SMALL_STATE(1718)] = 43625, + [SMALL_STATE(1719)] = 43704, + [SMALL_STATE(1720)] = 43757, + [SMALL_STATE(1721)] = 43868, + [SMALL_STATE(1722)] = 43947, + [SMALL_STATE(1723)] = 44058, + [SMALL_STATE(1724)] = 44169, + [SMALL_STATE(1725)] = 44264, + [SMALL_STATE(1726)] = 44317, + [SMALL_STATE(1727)] = 44394, + [SMALL_STATE(1728)] = 44467, + [SMALL_STATE(1729)] = 44520, + [SMALL_STATE(1730)] = 44573, + [SMALL_STATE(1731)] = 44626, + [SMALL_STATE(1732)] = 44737, + [SMALL_STATE(1733)] = 44848, + [SMALL_STATE(1734)] = 44959, + [SMALL_STATE(1735)] = 45012, + [SMALL_STATE(1736)] = 45123, + [SMALL_STATE(1737)] = 45234, + [SMALL_STATE(1738)] = 45345, + [SMALL_STATE(1739)] = 45456, + [SMALL_STATE(1740)] = 45567, + [SMALL_STATE(1741)] = 45652, + [SMALL_STATE(1742)] = 45705, + [SMALL_STATE(1743)] = 45780, + [SMALL_STATE(1744)] = 45879, + [SMALL_STATE(1745)] = 45994, + [SMALL_STATE(1746)] = 46095, + [SMALL_STATE(1747)] = 46148, + [SMALL_STATE(1748)] = 46229, + [SMALL_STATE(1749)] = 46322, + [SMALL_STATE(1750)] = 46417, + [SMALL_STATE(1751)] = 46514, + [SMALL_STATE(1752)] = 46567, + [SMALL_STATE(1753)] = 46646, + [SMALL_STATE(1754)] = 46727, + [SMALL_STATE(1755)] = 46786, + [SMALL_STATE(1756)] = 46839, + [SMALL_STATE(1757)] = 46892, + [SMALL_STATE(1758)] = 46945, + [SMALL_STATE(1759)] = 46998, + [SMALL_STATE(1760)] = 47051, + [SMALL_STATE(1761)] = 47126, + [SMALL_STATE(1762)] = 47225, + [SMALL_STATE(1763)] = 47278, + [SMALL_STATE(1764)] = 47331, + [SMALL_STATE(1765)] = 47384, + [SMALL_STATE(1766)] = 47485, + [SMALL_STATE(1767)] = 47566, + [SMALL_STATE(1768)] = 47655, + [SMALL_STATE(1769)] = 47748, + [SMALL_STATE(1770)] = 47851, + [SMALL_STATE(1771)] = 47946, + [SMALL_STATE(1772)] = 48057, + [SMALL_STATE(1773)] = 48110, + [SMALL_STATE(1774)] = 48221, + [SMALL_STATE(1775)] = 48318, + [SMALL_STATE(1776)] = 48397, + [SMALL_STATE(1777)] = 48478, + [SMALL_STATE(1778)] = 48567, + [SMALL_STATE(1779)] = 48670, + [SMALL_STATE(1780)] = 48785, + [SMALL_STATE(1781)] = 48838, + [SMALL_STATE(1782)] = 48891, + [SMALL_STATE(1783)] = 49002, + [SMALL_STATE(1784)] = 49113, + [SMALL_STATE(1785)] = 49224, + [SMALL_STATE(1786)] = 49335, + [SMALL_STATE(1787)] = 49450, + [SMALL_STATE(1788)] = 49503, + [SMALL_STATE(1789)] = 49618, + [SMALL_STATE(1790)] = 49729, + [SMALL_STATE(1791)] = 49782, + [SMALL_STATE(1792)] = 49893, + [SMALL_STATE(1793)] = 50004, + [SMALL_STATE(1794)] = 50115, + [SMALL_STATE(1795)] = 50226, + [SMALL_STATE(1796)] = 50336, + [SMALL_STATE(1797)] = 50406, + [SMALL_STATE(1798)] = 50516, + [SMALL_STATE(1799)] = 50594, + [SMALL_STATE(1800)] = 50666, + [SMALL_STATE(1801)] = 50776, + [SMALL_STATE(1802)] = 50836, + [SMALL_STATE(1803)] = 50946, + [SMALL_STATE(1804)] = 51060, + [SMALL_STATE(1805)] = 51174, + [SMALL_STATE(1806)] = 51288, + [SMALL_STATE(1807)] = 51402, + [SMALL_STATE(1808)] = 51486, + [SMALL_STATE(1809)] = 51560, + [SMALL_STATE(1810)] = 51658, + [SMALL_STATE(1811)] = 51772, + [SMALL_STATE(1812)] = 51872, + [SMALL_STATE(1813)] = 51952, + [SMALL_STATE(1814)] = 52030, + [SMALL_STATE(1815)] = 52144, + [SMALL_STATE(1816)] = 52236, + [SMALL_STATE(1817)] = 52350, + [SMALL_STATE(1818)] = 52444, + [SMALL_STATE(1819)] = 52558, + [SMALL_STATE(1820)] = 52672, + [SMALL_STATE(1821)] = 52768, + [SMALL_STATE(1822)] = 52882, + [SMALL_STATE(1823)] = 52960, + [SMALL_STATE(1824)] = 53074, + [SMALL_STATE(1825)] = 53188, + [SMALL_STATE(1826)] = 53298, + [SMALL_STATE(1827)] = 53412, + [SMALL_STATE(1828)] = 53526, + [SMALL_STATE(1829)] = 53640, + [SMALL_STATE(1830)] = 53692, + [SMALL_STATE(1831)] = 53806, + [SMALL_STATE(1832)] = 53864, + [SMALL_STATE(1833)] = 53978, + [SMALL_STATE(1834)] = 54058, + [SMALL_STATE(1835)] = 54172, + [SMALL_STATE(1836)] = 54230, + [SMALL_STATE(1837)] = 54288, + [SMALL_STATE(1838)] = 54344, + [SMALL_STATE(1839)] = 54402, + [SMALL_STATE(1840)] = 54460, + [SMALL_STATE(1841)] = 54520, + [SMALL_STATE(1842)] = 54592, + [SMALL_STATE(1843)] = 54650, + [SMALL_STATE(1844)] = 54764, + [SMALL_STATE(1845)] = 54876, + [SMALL_STATE(1846)] = 54990, + [SMALL_STATE(1847)] = 55104, + [SMALL_STATE(1848)] = 55194, + [SMALL_STATE(1849)] = 55256, + [SMALL_STATE(1850)] = 55366, + [SMALL_STATE(1851)] = 55476, + [SMALL_STATE(1852)] = 55586, + [SMALL_STATE(1853)] = 55648, + [SMALL_STATE(1854)] = 55762, + [SMALL_STATE(1855)] = 55872, + [SMALL_STATE(1856)] = 55924, + [SMALL_STATE(1857)] = 56034, + [SMALL_STATE(1858)] = 56148, + [SMALL_STATE(1859)] = 56208, + [SMALL_STATE(1860)] = 56280, + [SMALL_STATE(1861)] = 56394, + [SMALL_STATE(1862)] = 56482, + [SMALL_STATE(1863)] = 56596, + [SMALL_STATE(1864)] = 56648, + [SMALL_STATE(1865)] = 56758, + [SMALL_STATE(1866)] = 56832, + [SMALL_STATE(1867)] = 56934, + [SMALL_STATE(1868)] = 57006, + [SMALL_STATE(1869)] = 57062, + [SMALL_STATE(1870)] = 57172, + [SMALL_STATE(1871)] = 57282, + [SMALL_STATE(1872)] = 57338, + [SMALL_STATE(1873)] = 57452, + [SMALL_STATE(1874)] = 57508, + [SMALL_STATE(1875)] = 57560, + [SMALL_STATE(1876)] = 57670, + [SMALL_STATE(1877)] = 57780, + [SMALL_STATE(1878)] = 57834, + [SMALL_STATE(1879)] = 57894, + [SMALL_STATE(1880)] = 58004, + [SMALL_STATE(1881)] = 58118, + [SMALL_STATE(1882)] = 58228, + [SMALL_STATE(1883)] = 58280, + [SMALL_STATE(1884)] = 58334, + [SMALL_STATE(1885)] = 58394, + [SMALL_STATE(1886)] = 58448, + [SMALL_STATE(1887)] = 58562, + [SMALL_STATE(1888)] = 58622, + [SMALL_STATE(1889)] = 58696, + [SMALL_STATE(1890)] = 58806, + [SMALL_STATE(1891)] = 58860, + [SMALL_STATE(1892)] = 58914, + [SMALL_STATE(1893)] = 59024, + [SMALL_STATE(1894)] = 59134, + [SMALL_STATE(1895)] = 59206, + [SMALL_STATE(1896)] = 59278, + [SMALL_STATE(1897)] = 59331, + [SMALL_STATE(1898)] = 59382, + [SMALL_STATE(1899)] = 59439, + [SMALL_STATE(1900)] = 59490, + [SMALL_STATE(1901)] = 59565, + [SMALL_STATE(1902)] = 59636, + [SMALL_STATE(1903)] = 59699, + [SMALL_STATE(1904)] = 59750, + [SMALL_STATE(1905)] = 59813, + [SMALL_STATE(1906)] = 59872, + [SMALL_STATE(1907)] = 59927, + [SMALL_STATE(1908)] = 59982, + [SMALL_STATE(1909)] = 60033, + [SMALL_STATE(1910)] = 60090, + [SMALL_STATE(1911)] = 60147, + [SMALL_STATE(1912)] = 60256, + [SMALL_STATE(1913)] = 60365, + [SMALL_STATE(1914)] = 60474, + [SMALL_STATE(1915)] = 60583, + [SMALL_STATE(1916)] = 60636, + [SMALL_STATE(1917)] = 60745, + [SMALL_STATE(1918)] = 60828, + [SMALL_STATE(1919)] = 60901, + [SMALL_STATE(1920)] = 60998, + [SMALL_STATE(1921)] = 61097, + [SMALL_STATE(1922)] = 61176, + [SMALL_STATE(1923)] = 61267, + [SMALL_STATE(1924)] = 61320, + [SMALL_STATE(1925)] = 61429, + [SMALL_STATE(1926)] = 61522, + [SMALL_STATE(1927)] = 61617, + [SMALL_STATE(1928)] = 61670, + [SMALL_STATE(1929)] = 61753, + [SMALL_STATE(1930)] = 61830, + [SMALL_STATE(1931)] = 61909, + [SMALL_STATE(1932)] = 61996, + [SMALL_STATE(1933)] = 62097, + [SMALL_STATE(1934)] = 62206, + [SMALL_STATE(1935)] = 62315, + [SMALL_STATE(1936)] = 62424, + [SMALL_STATE(1937)] = 62533, + [SMALL_STATE(1938)] = 62642, + [SMALL_STATE(1939)] = 62751, + [SMALL_STATE(1940)] = 62860, + [SMALL_STATE(1941)] = 62969, + [SMALL_STATE(1942)] = 63020, + [SMALL_STATE(1943)] = 63089, + [SMALL_STATE(1944)] = 63198, + [SMALL_STATE(1945)] = 63275, + [SMALL_STATE(1946)] = 63346, + [SMALL_STATE(1947)] = 63401, + [SMALL_STATE(1948)] = 63452, + [SMALL_STATE(1949)] = 63505, + [SMALL_STATE(1950)] = 63556, + [SMALL_STATE(1951)] = 63667, + [SMALL_STATE(1952)] = 63730, + [SMALL_STATE(1953)] = 63803, + [SMALL_STATE(1954)] = 63866, + [SMALL_STATE(1955)] = 63935, + [SMALL_STATE(1956)] = 63994, + [SMALL_STATE(1957)] = 64069, + [SMALL_STATE(1958)] = 64140, + [SMALL_STATE(1959)] = 64191, + [SMALL_STATE(1960)] = 64248, + [SMALL_STATE(1961)] = 64299, + [SMALL_STATE(1962)] = 64350, + [SMALL_STATE(1963)] = 64443, + [SMALL_STATE(1964)] = 64494, + [SMALL_STATE(1965)] = 64545, + [SMALL_STATE(1966)] = 64596, + [SMALL_STATE(1967)] = 64653, + [SMALL_STATE(1968)] = 64716, + [SMALL_STATE(1969)] = 64767, + [SMALL_STATE(1970)] = 64818, + [SMALL_STATE(1971)] = 64869, + [SMALL_STATE(1972)] = 64942, + [SMALL_STATE(1973)] = 64993, + [SMALL_STATE(1974)] = 65062, + [SMALL_STATE(1975)] = 65113, + [SMALL_STATE(1976)] = 65164, + [SMALL_STATE(1977)] = 65215, + [SMALL_STATE(1978)] = 65266, + [SMALL_STATE(1979)] = 65317, + [SMALL_STATE(1980)] = 65372, + [SMALL_STATE(1981)] = 65423, + [SMALL_STATE(1982)] = 65474, + [SMALL_STATE(1983)] = 65525, + [SMALL_STATE(1984)] = 65634, + [SMALL_STATE(1985)] = 65743, + [SMALL_STATE(1986)] = 65826, + [SMALL_STATE(1987)] = 65877, + [SMALL_STATE(1988)] = 65928, + [SMALL_STATE(1989)] = 65979, + [SMALL_STATE(1990)] = 66030, + [SMALL_STATE(1991)] = 66081, + [SMALL_STATE(1992)] = 66154, + [SMALL_STATE(1993)] = 66205, + [SMALL_STATE(1994)] = 66258, + [SMALL_STATE(1995)] = 66309, + [SMALL_STATE(1996)] = 66360, + [SMALL_STATE(1997)] = 66443, + [SMALL_STATE(1998)] = 66494, + [SMALL_STATE(1999)] = 66557, + [SMALL_STATE(2000)] = 66610, + [SMALL_STATE(2001)] = 66673, + [SMALL_STATE(2002)] = 66724, + [SMALL_STATE(2003)] = 66787, + [SMALL_STATE(2004)] = 66850, + [SMALL_STATE(2005)] = 66903, + [SMALL_STATE(2006)] = 66954, + [SMALL_STATE(2007)] = 67007, + [SMALL_STATE(2008)] = 67060, + [SMALL_STATE(2009)] = 67113, + [SMALL_STATE(2010)] = 67166, + [SMALL_STATE(2011)] = 67249, + [SMALL_STATE(2012)] = 67314, + [SMALL_STATE(2013)] = 67397, + [SMALL_STATE(2014)] = 67454, + [SMALL_STATE(2015)] = 67519, + [SMALL_STATE(2016)] = 67572, + [SMALL_STATE(2017)] = 67655, + [SMALL_STATE(2018)] = 67712, + [SMALL_STATE(2019)] = 67769, + [SMALL_STATE(2020)] = 67826, + [SMALL_STATE(2021)] = 67883, + [SMALL_STATE(2022)] = 67934, + [SMALL_STATE(2023)] = 67985, + [SMALL_STATE(2024)] = 68038, + [SMALL_STATE(2025)] = 68147, + [SMALL_STATE(2026)] = 68198, + [SMALL_STATE(2027)] = 68249, + [SMALL_STATE(2028)] = 68306, + [SMALL_STATE(2029)] = 68357, + [SMALL_STATE(2030)] = 68408, + [SMALL_STATE(2031)] = 68481, + [SMALL_STATE(2032)] = 68532, + [SMALL_STATE(2033)] = 68585, + [SMALL_STATE(2034)] = 68636, + [SMALL_STATE(2035)] = 68687, + [SMALL_STATE(2036)] = 68744, + [SMALL_STATE(2037)] = 68797, + [SMALL_STATE(2038)] = 68848, + [SMALL_STATE(2039)] = 68907, + [SMALL_STATE(2040)] = 69016, + [SMALL_STATE(2041)] = 69067, + [SMALL_STATE(2042)] = 69124, + [SMALL_STATE(2043)] = 69181, + [SMALL_STATE(2044)] = 69232, + [SMALL_STATE(2045)] = 69283, + [SMALL_STATE(2046)] = 69334, + [SMALL_STATE(2047)] = 69443, + [SMALL_STATE(2048)] = 69552, + [SMALL_STATE(2049)] = 69661, + [SMALL_STATE(2050)] = 69714, + [SMALL_STATE(2051)] = 69765, + [SMALL_STATE(2052)] = 69822, + [SMALL_STATE(2053)] = 69875, + [SMALL_STATE(2054)] = 69934, + [SMALL_STATE(2055)] = 69991, + [SMALL_STATE(2056)] = 70042, + [SMALL_STATE(2057)] = 70093, + [SMALL_STATE(2058)] = 70144, + [SMALL_STATE(2059)] = 70201, + [SMALL_STATE(2060)] = 70252, + [SMALL_STATE(2061)] = 70303, + [SMALL_STATE(2062)] = 70374, + [SMALL_STATE(2063)] = 70425, + [SMALL_STATE(2064)] = 70534, + [SMALL_STATE(2065)] = 70611, + [SMALL_STATE(2066)] = 70662, + [SMALL_STATE(2067)] = 70713, + [SMALL_STATE(2068)] = 70822, + [SMALL_STATE(2069)] = 70891, + [SMALL_STATE(2070)] = 70942, + [SMALL_STATE(2071)] = 70995, + [SMALL_STATE(2072)] = 71046, + [SMALL_STATE(2073)] = 71097, + [SMALL_STATE(2074)] = 71148, + [SMALL_STATE(2075)] = 71199, + [SMALL_STATE(2076)] = 71250, + [SMALL_STATE(2077)] = 71359, + [SMALL_STATE(2078)] = 71468, + [SMALL_STATE(2079)] = 71519, + [SMALL_STATE(2080)] = 71572, + [SMALL_STATE(2081)] = 71655, + [SMALL_STATE(2082)] = 71708, + [SMALL_STATE(2083)] = 71759, + [SMALL_STATE(2084)] = 71832, + [SMALL_STATE(2085)] = 71883, + [SMALL_STATE(2086)] = 71956, + [SMALL_STATE(2087)] = 72029, + [SMALL_STATE(2088)] = 72080, + [SMALL_STATE(2089)] = 72177, + [SMALL_STATE(2090)] = 72234, + [SMALL_STATE(2091)] = 72333, + [SMALL_STATE(2092)] = 72384, + [SMALL_STATE(2093)] = 72435, + [SMALL_STATE(2094)] = 72514, + [SMALL_STATE(2095)] = 72605, + [SMALL_STATE(2096)] = 72656, + [SMALL_STATE(2097)] = 72751, + [SMALL_STATE(2098)] = 72828, + [SMALL_STATE(2099)] = 72907, + [SMALL_STATE(2100)] = 73016, + [SMALL_STATE(2101)] = 73103, + [SMALL_STATE(2102)] = 73186, + [SMALL_STATE(2103)] = 73237, + [SMALL_STATE(2104)] = 73338, + [SMALL_STATE(2105)] = 73407, + [SMALL_STATE(2106)] = 73516, + [SMALL_STATE(2107)] = 73625, + [SMALL_STATE(2108)] = 73676, + [SMALL_STATE(2109)] = 73727, + [SMALL_STATE(2110)] = 73784, + [SMALL_STATE(2111)] = 73893, + [SMALL_STATE(2112)] = 74002, + [SMALL_STATE(2113)] = 74111, + [SMALL_STATE(2114)] = 74220, + [SMALL_STATE(2115)] = 74329, + [SMALL_STATE(2116)] = 74388, + [SMALL_STATE(2117)] = 74439, + [SMALL_STATE(2118)] = 74490, + [SMALL_STATE(2119)] = 74543, + [SMALL_STATE(2120)] = 74594, + [SMALL_STATE(2121)] = 74665, + [SMALL_STATE(2122)] = 74716, + [SMALL_STATE(2123)] = 74767, + [SMALL_STATE(2124)] = 74878, + [SMALL_STATE(2125)] = 74935, + [SMALL_STATE(2126)] = 74986, + [SMALL_STATE(2127)] = 75037, + [SMALL_STATE(2128)] = 75088, + [SMALL_STATE(2129)] = 75139, + [SMALL_STATE(2130)] = 75193, + [SMALL_STATE(2131)] = 75247, + [SMALL_STATE(2132)] = 75355, + [SMALL_STATE(2133)] = 75421, + [SMALL_STATE(2134)] = 75519, + [SMALL_STATE(2135)] = 75569, + [SMALL_STATE(2136)] = 75619, + [SMALL_STATE(2137)] = 75669, + [SMALL_STATE(2138)] = 75719, + [SMALL_STATE(2139)] = 75771, + [SMALL_STATE(2140)] = 75821, + [SMALL_STATE(2141)] = 75875, + [SMALL_STATE(2142)] = 75939, + [SMALL_STATE(2143)] = 76035, + [SMALL_STATE(2144)] = 76085, + [SMALL_STATE(2145)] = 76157, + [SMALL_STATE(2146)] = 76207, + [SMALL_STATE(2147)] = 76289, + [SMALL_STATE(2148)] = 76397, + [SMALL_STATE(2149)] = 76505, + [SMALL_STATE(2150)] = 76565, + [SMALL_STATE(2151)] = 76617, + [SMALL_STATE(2152)] = 76683, + [SMALL_STATE(2153)] = 76747, + [SMALL_STATE(2154)] = 76815, + [SMALL_STATE(2155)] = 76869, + [SMALL_STATE(2156)] = 76923, + [SMALL_STATE(2157)] = 76977, + [SMALL_STATE(2158)] = 77029, + [SMALL_STATE(2159)] = 77087, + [SMALL_STATE(2160)] = 77139, + [SMALL_STATE(2161)] = 77205, + [SMALL_STATE(2162)] = 77265, + [SMALL_STATE(2163)] = 77373, + [SMALL_STATE(2164)] = 77481, + [SMALL_STATE(2165)] = 77589, + [SMALL_STATE(2166)] = 77653, + [SMALL_STATE(2167)] = 77707, + [SMALL_STATE(2168)] = 77815, + [SMALL_STATE(2169)] = 77883, + [SMALL_STATE(2170)] = 77991, + [SMALL_STATE(2171)] = 78043, + [SMALL_STATE(2172)] = 78097, + [SMALL_STATE(2173)] = 78205, + [SMALL_STATE(2174)] = 78263, + [SMALL_STATE(2175)] = 78317, + [SMALL_STATE(2176)] = 78375, + [SMALL_STATE(2177)] = 78427, + [SMALL_STATE(2178)] = 78479, + [SMALL_STATE(2179)] = 78529, + [SMALL_STATE(2180)] = 78583, + [SMALL_STATE(2181)] = 78637, + [SMALL_STATE(2182)] = 78689, + [SMALL_STATE(2183)] = 78757, + [SMALL_STATE(2184)] = 78823, + [SMALL_STATE(2185)] = 78897, + [SMALL_STATE(2186)] = 78949, + [SMALL_STATE(2187)] = 79057, + [SMALL_STATE(2188)] = 79109, + [SMALL_STATE(2189)] = 79177, + [SMALL_STATE(2190)] = 79235, + [SMALL_STATE(2191)] = 79299, + [SMALL_STATE(2192)] = 79367, + [SMALL_STATE(2193)] = 79445, + [SMALL_STATE(2194)] = 79521, + [SMALL_STATE(2195)] = 79611, + [SMALL_STATE(2196)] = 79703, + [SMALL_STATE(2197)] = 79797, + [SMALL_STATE(2198)] = 79863, + [SMALL_STATE(2199)] = 79917, + [SMALL_STATE(2200)] = 79971, + [SMALL_STATE(2201)] = 80047, + [SMALL_STATE(2202)] = 80111, + [SMALL_STATE(2203)] = 80169, + [SMALL_STATE(2204)] = 80247, + [SMALL_STATE(2205)] = 80299, + [SMALL_STATE(2206)] = 80363, + [SMALL_STATE(2207)] = 80449, + [SMALL_STATE(2208)] = 80515, + [SMALL_STATE(2209)] = 80623, + [SMALL_STATE(2210)] = 80689, + [SMALL_STATE(2211)] = 80753, + [SMALL_STATE(2212)] = 80853, + [SMALL_STATE(2213)] = 80903, + [SMALL_STATE(2214)] = 81011, + [SMALL_STATE(2215)] = 81119, + [SMALL_STATE(2216)] = 81227, + [SMALL_STATE(2217)] = 81335, + [SMALL_STATE(2218)] = 81443, + [SMALL_STATE(2219)] = 81551, + [SMALL_STATE(2220)] = 81659, + [SMALL_STATE(2221)] = 81767, + [SMALL_STATE(2222)] = 81875, + [SMALL_STATE(2223)] = 81949, + [SMALL_STATE(2224)] = 81999, + [SMALL_STATE(2225)] = 82049, + [SMALL_STATE(2226)] = 82103, + [SMALL_STATE(2227)] = 82179, + [SMALL_STATE(2228)] = 82229, + [SMALL_STATE(2229)] = 82297, + [SMALL_STATE(2230)] = 82347, + [SMALL_STATE(2231)] = 82401, + [SMALL_STATE(2232)] = 82455, + [SMALL_STATE(2233)] = 82505, + [SMALL_STATE(2234)] = 82555, + [SMALL_STATE(2235)] = 82605, + [SMALL_STATE(2236)] = 82655, + [SMALL_STATE(2237)] = 82709, + [SMALL_STATE(2238)] = 82759, + [SMALL_STATE(2239)] = 82809, + [SMALL_STATE(2240)] = 82859, + [SMALL_STATE(2241)] = 82923, + [SMALL_STATE(2242)] = 82973, + [SMALL_STATE(2243)] = 83037, + [SMALL_STATE(2244)] = 83103, + [SMALL_STATE(2245)] = 83155, + [SMALL_STATE(2246)] = 83221, + [SMALL_STATE(2247)] = 83271, + [SMALL_STATE(2248)] = 83323, + [SMALL_STATE(2249)] = 83389, + [SMALL_STATE(2250)] = 83439, + [SMALL_STATE(2251)] = 83513, + [SMALL_STATE(2252)] = 83571, + [SMALL_STATE(2253)] = 83621, + [SMALL_STATE(2254)] = 83675, + [SMALL_STATE(2255)] = 83751, + [SMALL_STATE(2256)] = 83819, + [SMALL_STATE(2257)] = 83927, + [SMALL_STATE(2258)] = 83993, + [SMALL_STATE(2259)] = 84069, + [SMALL_STATE(2260)] = 84139, + [SMALL_STATE(2261)] = 84197, + [SMALL_STATE(2262)] = 84307, + [SMALL_STATE(2263)] = 84415, + [SMALL_STATE(2264)] = 84465, + [SMALL_STATE(2265)] = 84573, + [SMALL_STATE(2266)] = 84681, + [SMALL_STATE(2267)] = 84789, + [SMALL_STATE(2268)] = 84855, + [SMALL_STATE(2269)] = 84905, + [SMALL_STATE(2270)] = 84955, + [SMALL_STATE(2271)] = 85005, + [SMALL_STATE(2272)] = 85113, + [SMALL_STATE(2273)] = 85221, + [SMALL_STATE(2274)] = 85287, + [SMALL_STATE(2275)] = 85395, + [SMALL_STATE(2276)] = 85445, + [SMALL_STATE(2277)] = 85515, + [SMALL_STATE(2278)] = 85579, + [SMALL_STATE(2279)] = 85633, + [SMALL_STATE(2280)] = 85709, + [SMALL_STATE(2281)] = 85817, + [SMALL_STATE(2282)] = 85867, + [SMALL_STATE(2283)] = 85921, + [SMALL_STATE(2284)] = 85987, + [SMALL_STATE(2285)] = 86037, + [SMALL_STATE(2286)] = 86087, + [SMALL_STATE(2287)] = 86137, + [SMALL_STATE(2288)] = 86187, + [SMALL_STATE(2289)] = 86237, + [SMALL_STATE(2290)] = 86305, + [SMALL_STATE(2291)] = 86355, + [SMALL_STATE(2292)] = 86463, + [SMALL_STATE(2293)] = 86513, + [SMALL_STATE(2294)] = 86621, + [SMALL_STATE(2295)] = 86729, + [SMALL_STATE(2296)] = 86779, + [SMALL_STATE(2297)] = 86829, + [SMALL_STATE(2298)] = 86879, + [SMALL_STATE(2299)] = 86929, + [SMALL_STATE(2300)] = 86987, + [SMALL_STATE(2301)] = 87049, + [SMALL_STATE(2302)] = 87111, + [SMALL_STATE(2303)] = 87173, + [SMALL_STATE(2304)] = 87235, + [SMALL_STATE(2305)] = 87299, + [SMALL_STATE(2306)] = 87349, + [SMALL_STATE(2307)] = 87411, + [SMALL_STATE(2308)] = 87473, + [SMALL_STATE(2309)] = 87523, + [SMALL_STATE(2310)] = 87573, + [SMALL_STATE(2311)] = 87681, + [SMALL_STATE(2312)] = 87743, + [SMALL_STATE(2313)] = 87805, + [SMALL_STATE(2314)] = 87855, + [SMALL_STATE(2315)] = 87915, + [SMALL_STATE(2316)] = 87975, + [SMALL_STATE(2317)] = 88041, + [SMALL_STATE(2318)] = 88095, + [SMALL_STATE(2319)] = 88149, + [SMALL_STATE(2320)] = 88199, + [SMALL_STATE(2321)] = 88249, + [SMALL_STATE(2322)] = 88299, + [SMALL_STATE(2323)] = 88349, + [SMALL_STATE(2324)] = 88407, + [SMALL_STATE(2325)] = 88465, + [SMALL_STATE(2326)] = 88531, + [SMALL_STATE(2327)] = 88581, + [SMALL_STATE(2328)] = 88631, + [SMALL_STATE(2329)] = 88685, + [SMALL_STATE(2330)] = 88735, + [SMALL_STATE(2331)] = 88785, + [SMALL_STATE(2332)] = 88835, + [SMALL_STATE(2333)] = 88885, + [SMALL_STATE(2334)] = 88951, + [SMALL_STATE(2335)] = 89013, + [SMALL_STATE(2336)] = 89067, + [SMALL_STATE(2337)] = 89119, + [SMALL_STATE(2338)] = 89195, + [SMALL_STATE(2339)] = 89269, + [SMALL_STATE(2340)] = 89319, + [SMALL_STATE(2341)] = 89369, + [SMALL_STATE(2342)] = 89435, + [SMALL_STATE(2343)] = 89485, + [SMALL_STATE(2344)] = 89551, + [SMALL_STATE(2345)] = 89617, + [SMALL_STATE(2346)] = 89717, + [SMALL_STATE(2347)] = 89783, + [SMALL_STATE(2348)] = 89833, + [SMALL_STATE(2349)] = 89907, + [SMALL_STATE(2350)] = 89957, + [SMALL_STATE(2351)] = 90021, + [SMALL_STATE(2352)] = 90097, + [SMALL_STATE(2353)] = 90163, + [SMALL_STATE(2354)] = 90221, + [SMALL_STATE(2355)] = 90287, + [SMALL_STATE(2356)] = 90353, + [SMALL_STATE(2357)] = 90419, + [SMALL_STATE(2358)] = 90483, + [SMALL_STATE(2359)] = 90537, + [SMALL_STATE(2360)] = 90603, + [SMALL_STATE(2361)] = 90667, + [SMALL_STATE(2362)] = 90729, + [SMALL_STATE(2363)] = 90791, + [SMALL_STATE(2364)] = 90841, + [SMALL_STATE(2365)] = 90917, + [SMALL_STATE(2366)] = 90991, + [SMALL_STATE(2367)] = 91063, + [SMALL_STATE(2368)] = 91117, + [SMALL_STATE(2369)] = 91171, + [SMALL_STATE(2370)] = 91225, + [SMALL_STATE(2371)] = 91311, + [SMALL_STATE(2372)] = 91379, + [SMALL_STATE(2373)] = 91457, + [SMALL_STATE(2374)] = 91533, + [SMALL_STATE(2375)] = 91627, + [SMALL_STATE(2376)] = 91719, + [SMALL_STATE(2377)] = 91773, + [SMALL_STATE(2378)] = 91863, + [SMALL_STATE(2379)] = 91919, + [SMALL_STATE(2380)] = 91997, + [SMALL_STATE(2381)] = 92047, + [SMALL_STATE(2382)] = 92097, + [SMALL_STATE(2383)] = 92195, + [SMALL_STATE(2384)] = 92251, + [SMALL_STATE(2385)] = 92347, + [SMALL_STATE(2386)] = 92455, + [SMALL_STATE(2387)] = 92511, + [SMALL_STATE(2388)] = 92575, + [SMALL_STATE(2389)] = 92657, + [SMALL_STATE(2390)] = 92713, + [SMALL_STATE(2391)] = 92787, + [SMALL_STATE(2392)] = 92895, + [SMALL_STATE(2393)] = 93003, + [SMALL_STATE(2394)] = 93111, + [SMALL_STATE(2395)] = 93161, + [SMALL_STATE(2396)] = 93269, + [SMALL_STATE(2397)] = 93377, + [SMALL_STATE(2398)] = 93427, + [SMALL_STATE(2399)] = 93503, + [SMALL_STATE(2400)] = 93559, + [SMALL_STATE(2401)] = 93609, + [SMALL_STATE(2402)] = 93665, + [SMALL_STATE(2403)] = 93719, + [SMALL_STATE(2404)] = 93827, + [SMALL_STATE(2405)] = 93886, + [SMALL_STATE(2406)] = 93945, + [SMALL_STATE(2407)] = 93996, + [SMALL_STATE(2408)] = 94065, + [SMALL_STATE(2409)] = 94120, + [SMALL_STATE(2410)] = 94177, + [SMALL_STATE(2411)] = 94282, + [SMALL_STATE(2412)] = 94339, + [SMALL_STATE(2413)] = 94392, + [SMALL_STATE(2414)] = 94461, + [SMALL_STATE(2415)] = 94566, + [SMALL_STATE(2416)] = 94671, + [SMALL_STATE(2417)] = 94776, + [SMALL_STATE(2418)] = 94851, + [SMALL_STATE(2419)] = 94920, + [SMALL_STATE(2420)] = 94975, + [SMALL_STATE(2421)] = 95080, + [SMALL_STATE(2422)] = 95139, + [SMALL_STATE(2423)] = 95220, + [SMALL_STATE(2424)] = 95279, + [SMALL_STATE(2425)] = 95338, + [SMALL_STATE(2426)] = 95443, + [SMALL_STATE(2427)] = 95502, + [SMALL_STATE(2428)] = 95561, + [SMALL_STATE(2429)] = 95620, + [SMALL_STATE(2430)] = 95687, + [SMALL_STATE(2431)] = 95746, + [SMALL_STATE(2432)] = 95805, + [SMALL_STATE(2433)] = 95874, + [SMALL_STATE(2434)] = 95933, + [SMALL_STATE(2435)] = 95988, + [SMALL_STATE(2436)] = 96047, + [SMALL_STATE(2437)] = 96106, + [SMALL_STATE(2438)] = 96177, + [SMALL_STATE(2439)] = 96272, + [SMALL_STATE(2440)] = 96369, + [SMALL_STATE(2441)] = 96446, + [SMALL_STATE(2442)] = 96505, + [SMALL_STATE(2443)] = 96564, + [SMALL_STATE(2444)] = 96623, + [SMALL_STATE(2445)] = 96682, + [SMALL_STATE(2446)] = 96741, + [SMALL_STATE(2447)] = 96800, + [SMALL_STATE(2448)] = 96857, + [SMALL_STATE(2449)] = 96916, + [SMALL_STATE(2450)] = 96975, + [SMALL_STATE(2451)] = 97034, + [SMALL_STATE(2452)] = 97085, + [SMALL_STATE(2453)] = 97144, + [SMALL_STATE(2454)] = 97213, + [SMALL_STATE(2455)] = 97272, + [SMALL_STATE(2456)] = 97331, + [SMALL_STATE(2457)] = 97382, + [SMALL_STATE(2458)] = 97471, + [SMALL_STATE(2459)] = 97530, + [SMALL_STATE(2460)] = 97621, + [SMALL_STATE(2461)] = 97680, + [SMALL_STATE(2462)] = 97773, + [SMALL_STATE(2463)] = 97832, + [SMALL_STATE(2464)] = 97891, + [SMALL_STATE(2465)] = 97946, + [SMALL_STATE(2466)] = 98021, + [SMALL_STATE(2467)] = 98098, + [SMALL_STATE(2468)] = 98167, + [SMALL_STATE(2469)] = 98226, + [SMALL_STATE(2470)] = 98311, + [SMALL_STATE(2471)] = 98410, + [SMALL_STATE(2472)] = 98467, + [SMALL_STATE(2473)] = 98524, + [SMALL_STATE(2474)] = 98629, + [SMALL_STATE(2475)] = 98734, + [SMALL_STATE(2476)] = 98793, + [SMALL_STATE(2477)] = 98852, + [SMALL_STATE(2478)] = 98905, + [SMALL_STATE(2479)] = 98962, + [SMALL_STATE(2480)] = 99039, + [SMALL_STATE(2481)] = 99144, + [SMALL_STATE(2482)] = 99203, + [SMALL_STATE(2483)] = 99262, + [SMALL_STATE(2484)] = 99321, + [SMALL_STATE(2485)] = 99380, + [SMALL_STATE(2486)] = 99439, + [SMALL_STATE(2487)] = 99498, + [SMALL_STATE(2488)] = 99557, + [SMALL_STATE(2489)] = 99616, + [SMALL_STATE(2490)] = 99691, + [SMALL_STATE(2491)] = 99750, + [SMALL_STATE(2492)] = 99809, + [SMALL_STATE(2493)] = 99914, + [SMALL_STATE(2494)] = 100019, + [SMALL_STATE(2495)] = 100088, + [SMALL_STATE(2496)] = 100193, + [SMALL_STATE(2497)] = 100250, + [SMALL_STATE(2498)] = 100355, + [SMALL_STATE(2499)] = 100406, + [SMALL_STATE(2500)] = 100511, + [SMALL_STATE(2501)] = 100580, + [SMALL_STATE(2502)] = 100639, + [SMALL_STATE(2503)] = 100744, + [SMALL_STATE(2504)] = 100803, + [SMALL_STATE(2505)] = 100908, + [SMALL_STATE(2506)] = 100967, + [SMALL_STATE(2507)] = 101026, + [SMALL_STATE(2508)] = 101085, + [SMALL_STATE(2509)] = 101136, + [SMALL_STATE(2510)] = 101195, + [SMALL_STATE(2511)] = 101254, + [SMALL_STATE(2512)] = 101313, + [SMALL_STATE(2513)] = 101401, + [SMALL_STATE(2514)] = 101451, + [SMALL_STATE(2515)] = 101501, + [SMALL_STATE(2516)] = 101557, + [SMALL_STATE(2517)] = 101629, + [SMALL_STATE(2518)] = 101689, + [SMALL_STATE(2519)] = 101743, + [SMALL_STATE(2520)] = 101793, + [SMALL_STATE(2521)] = 101847, + [SMALL_STATE(2522)] = 101915, + [SMALL_STATE(2523)] = 101969, + [SMALL_STATE(2524)] = 102033, + [SMALL_STATE(2525)] = 102083, + [SMALL_STATE(2526)] = 102143, + [SMALL_STATE(2527)] = 102207, + [SMALL_STATE(2528)] = 102261, + [SMALL_STATE(2529)] = 102311, + [SMALL_STATE(2530)] = 102377, + [SMALL_STATE(2531)] = 102445, + [SMALL_STATE(2532)] = 102499, + [SMALL_STATE(2533)] = 102549, + [SMALL_STATE(2534)] = 102609, + [SMALL_STATE(2535)] = 102663, + [SMALL_STATE(2536)] = 102717, + [SMALL_STATE(2537)] = 102771, + [SMALL_STATE(2538)] = 102821, + [SMALL_STATE(2539)] = 102871, + [SMALL_STATE(2540)] = 102921, + [SMALL_STATE(2541)] = 102971, + [SMALL_STATE(2542)] = 103021, + [SMALL_STATE(2543)] = 103085, + [SMALL_STATE(2544)] = 103145, + [SMALL_STATE(2545)] = 103209, + [SMALL_STATE(2546)] = 103259, + [SMALL_STATE(2547)] = 103313, + [SMALL_STATE(2548)] = 103401, + [SMALL_STATE(2549)] = 103455, + [SMALL_STATE(2550)] = 103515, + [SMALL_STATE(2551)] = 103579, + [SMALL_STATE(2552)] = 103649, + [SMALL_STATE(2553)] = 103702, + [SMALL_STATE(2554)] = 103761, + [SMALL_STATE(2555)] = 103820, + [SMALL_STATE(2556)] = 103877, + [SMALL_STATE(2557)] = 103930, + [SMALL_STATE(2558)] = 103983, + [SMALL_STATE(2559)] = 104036, + [SMALL_STATE(2560)] = 104093, + [SMALL_STATE(2561)] = 104142, + [SMALL_STATE(2562)] = 104201, + [SMALL_STATE(2563)] = 104258, + [SMALL_STATE(2564)] = 104317, + [SMALL_STATE(2565)] = 104366, + [SMALL_STATE(2566)] = 104423, + [SMALL_STATE(2567)] = 104480, + [SMALL_STATE(2568)] = 104537, + [SMALL_STATE(2569)] = 104586, + [SMALL_STATE(2570)] = 104643, + [SMALL_STATE(2571)] = 104702, + [SMALL_STATE(2572)] = 104761, + [SMALL_STATE(2573)] = 104820, + [SMALL_STATE(2574)] = 104881, + [SMALL_STATE(2575)] = 104938, + [SMALL_STATE(2576)] = 104995, + [SMALL_STATE(2577)] = 105052, + [SMALL_STATE(2578)] = 105115, + [SMALL_STATE(2579)] = 105172, + [SMALL_STATE(2580)] = 105229, + [SMALL_STATE(2581)] = 105286, + [SMALL_STATE(2582)] = 105343, + [SMALL_STATE(2583)] = 105402, + [SMALL_STATE(2584)] = 105459, + [SMALL_STATE(2585)] = 105512, + [SMALL_STATE(2586)] = 105571, + [SMALL_STATE(2587)] = 105628, + [SMALL_STATE(2588)] = 105687, + [SMALL_STATE(2589)] = 105746, + [SMALL_STATE(2590)] = 105805, + [SMALL_STATE(2591)] = 105862, + [SMALL_STATE(2592)] = 105921, + [SMALL_STATE(2593)] = 105984, + [SMALL_STATE(2594)] = 106043, + [SMALL_STATE(2595)] = 106108, + [SMALL_STATE(2596)] = 106154, + [SMALL_STATE(2597)] = 106200, + [SMALL_STATE(2598)] = 106246, + [SMALL_STATE(2599)] = 106294, + [SMALL_STATE(2600)] = 106342, + [SMALL_STATE(2601)] = 106390, + [SMALL_STATE(2602)] = 106438, + [SMALL_STATE(2603)] = 106486, + [SMALL_STATE(2604)] = 106534, + [SMALL_STATE(2605)] = 106580, + [SMALL_STATE(2606)] = 106660, + [SMALL_STATE(2607)] = 106706, + [SMALL_STATE(2608)] = 106752, + [SMALL_STATE(2609)] = 106798, + [SMALL_STATE(2610)] = 106846, + [SMALL_STATE(2611)] = 106892, + [SMALL_STATE(2612)] = 106938, + [SMALL_STATE(2613)] = 106984, + [SMALL_STATE(2614)] = 107032, + [SMALL_STATE(2615)] = 107114, + [SMALL_STATE(2616)] = 107162, + [SMALL_STATE(2617)] = 107208, + [SMALL_STATE(2618)] = 107254, + [SMALL_STATE(2619)] = 107300, + [SMALL_STATE(2620)] = 107350, + [SMALL_STATE(2621)] = 107396, + [SMALL_STATE(2622)] = 107442, + [SMALL_STATE(2623)] = 107488, + [SMALL_STATE(2624)] = 107534, + [SMALL_STATE(2625)] = 107580, + [SMALL_STATE(2626)] = 107626, + [SMALL_STATE(2627)] = 107672, + [SMALL_STATE(2628)] = 107720, + [SMALL_STATE(2629)] = 107766, + [SMALL_STATE(2630)] = 107812, + [SMALL_STATE(2631)] = 107858, + [SMALL_STATE(2632)] = 107904, + [SMALL_STATE(2633)] = 107950, + [SMALL_STATE(2634)] = 108008, + [SMALL_STATE(2635)] = 108054, + [SMALL_STATE(2636)] = 108100, + [SMALL_STATE(2637)] = 108146, + [SMALL_STATE(2638)] = 108192, + [SMALL_STATE(2639)] = 108238, + [SMALL_STATE(2640)] = 108284, + [SMALL_STATE(2641)] = 108330, + [SMALL_STATE(2642)] = 108376, + [SMALL_STATE(2643)] = 108422, + [SMALL_STATE(2644)] = 108468, + [SMALL_STATE(2645)] = 108514, + [SMALL_STATE(2646)] = 108560, + [SMALL_STATE(2647)] = 108606, + [SMALL_STATE(2648)] = 108652, + [SMALL_STATE(2649)] = 108698, + [SMALL_STATE(2650)] = 108744, + [SMALL_STATE(2651)] = 108790, + [SMALL_STATE(2652)] = 108836, + [SMALL_STATE(2653)] = 108882, + [SMALL_STATE(2654)] = 108928, + [SMALL_STATE(2655)] = 108974, + [SMALL_STATE(2656)] = 109020, + [SMALL_STATE(2657)] = 109066, + [SMALL_STATE(2658)] = 109112, + [SMALL_STATE(2659)] = 109158, + [SMALL_STATE(2660)] = 109204, + [SMALL_STATE(2661)] = 109250, + [SMALL_STATE(2662)] = 109296, + [SMALL_STATE(2663)] = 109342, + [SMALL_STATE(2664)] = 109388, + [SMALL_STATE(2665)] = 109434, + [SMALL_STATE(2666)] = 109480, + [SMALL_STATE(2667)] = 109526, + [SMALL_STATE(2668)] = 109572, + [SMALL_STATE(2669)] = 109618, + [SMALL_STATE(2670)] = 109664, + [SMALL_STATE(2671)] = 109710, + [SMALL_STATE(2672)] = 109756, + [SMALL_STATE(2673)] = 109802, + [SMALL_STATE(2674)] = 109848, + [SMALL_STATE(2675)] = 109894, + [SMALL_STATE(2676)] = 109940, + [SMALL_STATE(2677)] = 109986, + [SMALL_STATE(2678)] = 110032, + [SMALL_STATE(2679)] = 110078, + [SMALL_STATE(2680)] = 110124, + [SMALL_STATE(2681)] = 110170, + [SMALL_STATE(2682)] = 110216, + [SMALL_STATE(2683)] = 110262, + [SMALL_STATE(2684)] = 110308, + [SMALL_STATE(2685)] = 110354, + [SMALL_STATE(2686)] = 110400, + [SMALL_STATE(2687)] = 110446, + [SMALL_STATE(2688)] = 110492, + [SMALL_STATE(2689)] = 110538, + [SMALL_STATE(2690)] = 110584, + [SMALL_STATE(2691)] = 110630, + [SMALL_STATE(2692)] = 110676, + [SMALL_STATE(2693)] = 110722, + [SMALL_STATE(2694)] = 110768, + [SMALL_STATE(2695)] = 110814, + [SMALL_STATE(2696)] = 110860, + [SMALL_STATE(2697)] = 110906, + [SMALL_STATE(2698)] = 110952, + [SMALL_STATE(2699)] = 110998, + [SMALL_STATE(2700)] = 111044, + [SMALL_STATE(2701)] = 111090, + [SMALL_STATE(2702)] = 111136, + [SMALL_STATE(2703)] = 111182, + [SMALL_STATE(2704)] = 111228, + [SMALL_STATE(2705)] = 111274, + [SMALL_STATE(2706)] = 111320, + [SMALL_STATE(2707)] = 111366, + [SMALL_STATE(2708)] = 111412, + [SMALL_STATE(2709)] = 111458, + [SMALL_STATE(2710)] = 111504, + [SMALL_STATE(2711)] = 111550, + [SMALL_STATE(2712)] = 111596, + [SMALL_STATE(2713)] = 111642, + [SMALL_STATE(2714)] = 111688, + [SMALL_STATE(2715)] = 111734, + [SMALL_STATE(2716)] = 111780, + [SMALL_STATE(2717)] = 111826, + [SMALL_STATE(2718)] = 111872, + [SMALL_STATE(2719)] = 111920, + [SMALL_STATE(2720)] = 111966, + [SMALL_STATE(2721)] = 112012, + [SMALL_STATE(2722)] = 112058, + [SMALL_STATE(2723)] = 112104, + [SMALL_STATE(2724)] = 112150, + [SMALL_STATE(2725)] = 112196, + [SMALL_STATE(2726)] = 112242, + [SMALL_STATE(2727)] = 112288, + [SMALL_STATE(2728)] = 112334, + [SMALL_STATE(2729)] = 112380, + [SMALL_STATE(2730)] = 112426, + [SMALL_STATE(2731)] = 112472, + [SMALL_STATE(2732)] = 112518, + [SMALL_STATE(2733)] = 112564, + [SMALL_STATE(2734)] = 112610, + [SMALL_STATE(2735)] = 112656, + [SMALL_STATE(2736)] = 112702, + [SMALL_STATE(2737)] = 112748, + [SMALL_STATE(2738)] = 112794, + [SMALL_STATE(2739)] = 112840, + [SMALL_STATE(2740)] = 112886, + [SMALL_STATE(2741)] = 112932, + [SMALL_STATE(2742)] = 112978, + [SMALL_STATE(2743)] = 113024, + [SMALL_STATE(2744)] = 113070, + [SMALL_STATE(2745)] = 113116, + [SMALL_STATE(2746)] = 113162, + [SMALL_STATE(2747)] = 113208, + [SMALL_STATE(2748)] = 113254, + [SMALL_STATE(2749)] = 113300, + [SMALL_STATE(2750)] = 113346, + [SMALL_STATE(2751)] = 113392, + [SMALL_STATE(2752)] = 113438, + [SMALL_STATE(2753)] = 113484, + [SMALL_STATE(2754)] = 113530, + [SMALL_STATE(2755)] = 113576, + [SMALL_STATE(2756)] = 113622, + [SMALL_STATE(2757)] = 113668, + [SMALL_STATE(2758)] = 113714, + [SMALL_STATE(2759)] = 113760, + [SMALL_STATE(2760)] = 113806, + [SMALL_STATE(2761)] = 113852, + [SMALL_STATE(2762)] = 113898, + [SMALL_STATE(2763)] = 113944, + [SMALL_STATE(2764)] = 113990, + [SMALL_STATE(2765)] = 114036, + [SMALL_STATE(2766)] = 114082, + [SMALL_STATE(2767)] = 114128, + [SMALL_STATE(2768)] = 114174, + [SMALL_STATE(2769)] = 114220, + [SMALL_STATE(2770)] = 114266, + [SMALL_STATE(2771)] = 114312, + [SMALL_STATE(2772)] = 114358, + [SMALL_STATE(2773)] = 114404, + [SMALL_STATE(2774)] = 114450, + [SMALL_STATE(2775)] = 114496, + [SMALL_STATE(2776)] = 114542, + [SMALL_STATE(2777)] = 114588, + [SMALL_STATE(2778)] = 114634, + [SMALL_STATE(2779)] = 114680, + [SMALL_STATE(2780)] = 114726, + [SMALL_STATE(2781)] = 114772, + [SMALL_STATE(2782)] = 114818, + [SMALL_STATE(2783)] = 114864, + [SMALL_STATE(2784)] = 114910, + [SMALL_STATE(2785)] = 114956, + [SMALL_STATE(2786)] = 115002, + [SMALL_STATE(2787)] = 115048, + [SMALL_STATE(2788)] = 115094, + [SMALL_STATE(2789)] = 115140, + [SMALL_STATE(2790)] = 115186, + [SMALL_STATE(2791)] = 115232, + [SMALL_STATE(2792)] = 115278, + [SMALL_STATE(2793)] = 115324, + [SMALL_STATE(2794)] = 115370, + [SMALL_STATE(2795)] = 115416, + [SMALL_STATE(2796)] = 115462, + [SMALL_STATE(2797)] = 115508, + [SMALL_STATE(2798)] = 115554, + [SMALL_STATE(2799)] = 115600, + [SMALL_STATE(2800)] = 115646, + [SMALL_STATE(2801)] = 115692, + [SMALL_STATE(2802)] = 115738, + [SMALL_STATE(2803)] = 115784, + [SMALL_STATE(2804)] = 115830, + [SMALL_STATE(2805)] = 115876, + [SMALL_STATE(2806)] = 115922, + [SMALL_STATE(2807)] = 115968, + [SMALL_STATE(2808)] = 116014, + [SMALL_STATE(2809)] = 116060, + [SMALL_STATE(2810)] = 116106, + [SMALL_STATE(2811)] = 116152, + [SMALL_STATE(2812)] = 116200, + [SMALL_STATE(2813)] = 116246, + [SMALL_STATE(2814)] = 116292, + [SMALL_STATE(2815)] = 116338, + [SMALL_STATE(2816)] = 116386, + [SMALL_STATE(2817)] = 116432, + [SMALL_STATE(2818)] = 116478, + [SMALL_STATE(2819)] = 116524, + [SMALL_STATE(2820)] = 116570, + [SMALL_STATE(2821)] = 116616, + [SMALL_STATE(2822)] = 116662, + [SMALL_STATE(2823)] = 116708, + [SMALL_STATE(2824)] = 116754, + [SMALL_STATE(2825)] = 116800, + [SMALL_STATE(2826)] = 116846, + [SMALL_STATE(2827)] = 116892, + [SMALL_STATE(2828)] = 116938, + [SMALL_STATE(2829)] = 116984, + [SMALL_STATE(2830)] = 117030, + [SMALL_STATE(2831)] = 117076, + [SMALL_STATE(2832)] = 117122, + [SMALL_STATE(2833)] = 117168, + [SMALL_STATE(2834)] = 117214, + [SMALL_STATE(2835)] = 117260, + [SMALL_STATE(2836)] = 117306, + [SMALL_STATE(2837)] = 117352, + [SMALL_STATE(2838)] = 117398, + [SMALL_STATE(2839)] = 117444, + [SMALL_STATE(2840)] = 117490, + [SMALL_STATE(2841)] = 117536, + [SMALL_STATE(2842)] = 117582, + [SMALL_STATE(2843)] = 117628, + [SMALL_STATE(2844)] = 117674, + [SMALL_STATE(2845)] = 117720, + [SMALL_STATE(2846)] = 117766, + [SMALL_STATE(2847)] = 117812, + [SMALL_STATE(2848)] = 117858, + [SMALL_STATE(2849)] = 117904, + [SMALL_STATE(2850)] = 117950, + [SMALL_STATE(2851)] = 117996, + [SMALL_STATE(2852)] = 118042, + [SMALL_STATE(2853)] = 118088, + [SMALL_STATE(2854)] = 118134, + [SMALL_STATE(2855)] = 118180, + [SMALL_STATE(2856)] = 118226, + [SMALL_STATE(2857)] = 118272, + [SMALL_STATE(2858)] = 118318, + [SMALL_STATE(2859)] = 118364, + [SMALL_STATE(2860)] = 118410, + [SMALL_STATE(2861)] = 118456, + [SMALL_STATE(2862)] = 118502, + [SMALL_STATE(2863)] = 118548, + [SMALL_STATE(2864)] = 118594, + [SMALL_STATE(2865)] = 118640, + [SMALL_STATE(2866)] = 118686, + [SMALL_STATE(2867)] = 118732, + [SMALL_STATE(2868)] = 118778, + [SMALL_STATE(2869)] = 118824, + [SMALL_STATE(2870)] = 118870, + [SMALL_STATE(2871)] = 118916, + [SMALL_STATE(2872)] = 118962, + [SMALL_STATE(2873)] = 119008, + [SMALL_STATE(2874)] = 119054, + [SMALL_STATE(2875)] = 119100, + [SMALL_STATE(2876)] = 119146, + [SMALL_STATE(2877)] = 119192, + [SMALL_STATE(2878)] = 119238, + [SMALL_STATE(2879)] = 119284, + [SMALL_STATE(2880)] = 119330, + [SMALL_STATE(2881)] = 119376, + [SMALL_STATE(2882)] = 119422, + [SMALL_STATE(2883)] = 119468, + [SMALL_STATE(2884)] = 119514, + [SMALL_STATE(2885)] = 119560, + [SMALL_STATE(2886)] = 119606, + [SMALL_STATE(2887)] = 119652, + [SMALL_STATE(2888)] = 119698, + [SMALL_STATE(2889)] = 119744, + [SMALL_STATE(2890)] = 119790, + [SMALL_STATE(2891)] = 119836, + [SMALL_STATE(2892)] = 119882, + [SMALL_STATE(2893)] = 119928, + [SMALL_STATE(2894)] = 120013, + [SMALL_STATE(2895)] = 120098, + [SMALL_STATE(2896)] = 120143, + [SMALL_STATE(2897)] = 120188, + [SMALL_STATE(2898)] = 120233, + [SMALL_STATE(2899)] = 120284, + [SMALL_STATE(2900)] = 120335, + [SMALL_STATE(2901)] = 120388, + [SMALL_STATE(2902)] = 120441, + [SMALL_STATE(2903)] = 120486, + [SMALL_STATE(2904)] = 120531, + [SMALL_STATE(2905)] = 120598, + [SMALL_STATE(2906)] = 120667, + [SMALL_STATE(2907)] = 120736, + [SMALL_STATE(2908)] = 120796, + [SMALL_STATE(2909)] = 120856, + [SMALL_STATE(2910)] = 120918, + [SMALL_STATE(2911)] = 120978, + [SMALL_STATE(2912)] = 121038, + [SMALL_STATE(2913)] = 121100, + [SMALL_STATE(2914)] = 121160, + [SMALL_STATE(2915)] = 121220, + [SMALL_STATE(2916)] = 121278, + [SMALL_STATE(2917)] = 121338, + [SMALL_STATE(2918)] = 121412, + [SMALL_STATE(2919)] = 121474, + [SMALL_STATE(2920)] = 121524, + [SMALL_STATE(2921)] = 121584, + [SMALL_STATE(2922)] = 121644, + [SMALL_STATE(2923)] = 121702, + [SMALL_STATE(2924)] = 121764, + [SMALL_STATE(2925)] = 121820, + [SMALL_STATE(2926)] = 121882, + [SMALL_STATE(2927)] = 121942, + [SMALL_STATE(2928)] = 122002, + [SMALL_STATE(2929)] = 122064, + [SMALL_STATE(2930)] = 122126, + [SMALL_STATE(2931)] = 122184, + [SMALL_STATE(2932)] = 122244, + [SMALL_STATE(2933)] = 122304, + [SMALL_STATE(2934)] = 122362, + [SMALL_STATE(2935)] = 122424, + [SMALL_STATE(2936)] = 122484, + [SMALL_STATE(2937)] = 122532, + [SMALL_STATE(2938)] = 122592, + [SMALL_STATE(2939)] = 122652, + [SMALL_STATE(2940)] = 122724, + [SMALL_STATE(2941)] = 122772, + [SMALL_STATE(2942)] = 122832, + [SMALL_STATE(2943)] = 122892, + [SMALL_STATE(2944)] = 122952, + [SMALL_STATE(2945)] = 123005, + [SMALL_STATE(2946)] = 123058, + [SMALL_STATE(2947)] = 123111, + [SMALL_STATE(2948)] = 123164, + [SMALL_STATE(2949)] = 123217, + [SMALL_STATE(2950)] = 123270, + [SMALL_STATE(2951)] = 123333, + [SMALL_STATE(2952)] = 123386, + [SMALL_STATE(2953)] = 123439, + [SMALL_STATE(2954)] = 123492, + [SMALL_STATE(2955)] = 123545, + [SMALL_STATE(2956)] = 123598, + [SMALL_STATE(2957)] = 123651, + [SMALL_STATE(2958)] = 123704, + [SMALL_STATE(2959)] = 123757, + [SMALL_STATE(2960)] = 123810, + [SMALL_STATE(2961)] = 123863, + [SMALL_STATE(2962)] = 123916, + [SMALL_STATE(2963)] = 123969, + [SMALL_STATE(2964)] = 124022, + [SMALL_STATE(2965)] = 124075, + [SMALL_STATE(2966)] = 124128, + [SMALL_STATE(2967)] = 124181, + [SMALL_STATE(2968)] = 124234, + [SMALL_STATE(2969)] = 124287, + [SMALL_STATE(2970)] = 124340, + [SMALL_STATE(2971)] = 124393, + [SMALL_STATE(2972)] = 124446, + [SMALL_STATE(2973)] = 124499, + [SMALL_STATE(2974)] = 124552, + [SMALL_STATE(2975)] = 124605, + [SMALL_STATE(2976)] = 124658, + [SMALL_STATE(2977)] = 124711, + [SMALL_STATE(2978)] = 124774, + [SMALL_STATE(2979)] = 124827, + [SMALL_STATE(2980)] = 124880, + [SMALL_STATE(2981)] = 124933, + [SMALL_STATE(2982)] = 124986, + [SMALL_STATE(2983)] = 125039, + [SMALL_STATE(2984)] = 125092, + [SMALL_STATE(2985)] = 125145, + [SMALL_STATE(2986)] = 125198, + [SMALL_STATE(2987)] = 125251, + [SMALL_STATE(2988)] = 125304, + [SMALL_STATE(2989)] = 125357, + [SMALL_STATE(2990)] = 125410, + [SMALL_STATE(2991)] = 125463, + [SMALL_STATE(2992)] = 125516, + [SMALL_STATE(2993)] = 125569, + [SMALL_STATE(2994)] = 125622, + [SMALL_STATE(2995)] = 125675, + [SMALL_STATE(2996)] = 125728, + [SMALL_STATE(2997)] = 125781, + [SMALL_STATE(2998)] = 125834, + [SMALL_STATE(2999)] = 125887, + [SMALL_STATE(3000)] = 125940, + [SMALL_STATE(3001)] = 125993, + [SMALL_STATE(3002)] = 126046, + [SMALL_STATE(3003)] = 126099, + [SMALL_STATE(3004)] = 126152, + [SMALL_STATE(3005)] = 126205, + [SMALL_STATE(3006)] = 126258, + [SMALL_STATE(3007)] = 126311, + [SMALL_STATE(3008)] = 126364, + [SMALL_STATE(3009)] = 126417, + [SMALL_STATE(3010)] = 126470, + [SMALL_STATE(3011)] = 126513, + [SMALL_STATE(3012)] = 126566, + [SMALL_STATE(3013)] = 126619, + [SMALL_STATE(3014)] = 126672, + [SMALL_STATE(3015)] = 126725, + [SMALL_STATE(3016)] = 126778, + [SMALL_STATE(3017)] = 126831, + [SMALL_STATE(3018)] = 126884, + [SMALL_STATE(3019)] = 126937, + [SMALL_STATE(3020)] = 126980, + [SMALL_STATE(3021)] = 127033, + [SMALL_STATE(3022)] = 127086, + [SMALL_STATE(3023)] = 127139, + [SMALL_STATE(3024)] = 127192, + [SMALL_STATE(3025)] = 127245, + [SMALL_STATE(3026)] = 127298, + [SMALL_STATE(3027)] = 127351, + [SMALL_STATE(3028)] = 127404, + [SMALL_STATE(3029)] = 127457, + [SMALL_STATE(3030)] = 127510, + [SMALL_STATE(3031)] = 127563, + [SMALL_STATE(3032)] = 127616, + [SMALL_STATE(3033)] = 127669, + [SMALL_STATE(3034)] = 127722, + [SMALL_STATE(3035)] = 127775, + [SMALL_STATE(3036)] = 127828, + [SMALL_STATE(3037)] = 127881, + [SMALL_STATE(3038)] = 127934, + [SMALL_STATE(3039)] = 127987, + [SMALL_STATE(3040)] = 128040, + [SMALL_STATE(3041)] = 128093, + [SMALL_STATE(3042)] = 128146, + [SMALL_STATE(3043)] = 128199, + [SMALL_STATE(3044)] = 128252, + [SMALL_STATE(3045)] = 128305, + [SMALL_STATE(3046)] = 128358, + [SMALL_STATE(3047)] = 128411, + [SMALL_STATE(3048)] = 128464, + [SMALL_STATE(3049)] = 128517, + [SMALL_STATE(3050)] = 128570, + [SMALL_STATE(3051)] = 128623, + [SMALL_STATE(3052)] = 128676, + [SMALL_STATE(3053)] = 128729, + [SMALL_STATE(3054)] = 128782, + [SMALL_STATE(3055)] = 128835, + [SMALL_STATE(3056)] = 128888, + [SMALL_STATE(3057)] = 128941, + [SMALL_STATE(3058)] = 128994, + [SMALL_STATE(3059)] = 129047, + [SMALL_STATE(3060)] = 129100, + [SMALL_STATE(3061)] = 129153, + [SMALL_STATE(3062)] = 129206, + [SMALL_STATE(3063)] = 129259, + [SMALL_STATE(3064)] = 129312, + [SMALL_STATE(3065)] = 129365, + [SMALL_STATE(3066)] = 129418, + [SMALL_STATE(3067)] = 129472, + [SMALL_STATE(3068)] = 129526, + [SMALL_STATE(3069)] = 129568, + [SMALL_STATE(3070)] = 129622, + [SMALL_STATE(3071)] = 129686, + [SMALL_STATE(3072)] = 129728, + [SMALL_STATE(3073)] = 129792, + [SMALL_STATE(3074)] = 129856, + [SMALL_STATE(3075)] = 129922, + [SMALL_STATE(3076)] = 129976, + [SMALL_STATE(3077)] = 130056, + [SMALL_STATE(3078)] = 130116, + [SMALL_STATE(3079)] = 130170, + [SMALL_STATE(3080)] = 130250, + [SMALL_STATE(3081)] = 130304, + [SMALL_STATE(3082)] = 130384, + [SMALL_STATE(3083)] = 130438, + [SMALL_STATE(3084)] = 130518, + [SMALL_STATE(3085)] = 130572, + [SMALL_STATE(3086)] = 130614, + [SMALL_STATE(3087)] = 130694, + [SMALL_STATE(3088)] = 130774, + [SMALL_STATE(3089)] = 130834, + [SMALL_STATE(3090)] = 130888, + [SMALL_STATE(3091)] = 130942, + [SMALL_STATE(3092)] = 131022, + [SMALL_STATE(3093)] = 131081, + [SMALL_STATE(3094)] = 131138, + [SMALL_STATE(3095)] = 131195, + [SMALL_STATE(3096)] = 131252, + [SMALL_STATE(3097)] = 131295, + [SMALL_STATE(3098)] = 131352, + [SMALL_STATE(3099)] = 131409, + [SMALL_STATE(3100)] = 131466, + [SMALL_STATE(3101)] = 131519, + [SMALL_STATE(3102)] = 131576, + [SMALL_STATE(3103)] = 131635, + [SMALL_STATE(3104)] = 131692, + [SMALL_STATE(3105)] = 131749, + [SMALL_STATE(3106)] = 131806, + [SMALL_STATE(3107)] = 131857, + [SMALL_STATE(3108)] = 131910, + [SMALL_STATE(3109)] = 131969, + [SMALL_STATE(3110)] = 132012, + [SMALL_STATE(3111)] = 132071, + [SMALL_STATE(3112)] = 132128, + [SMALL_STATE(3113)] = 132187, + [SMALL_STATE(3114)] = 132244, + [SMALL_STATE(3115)] = 132303, + [SMALL_STATE(3116)] = 132362, + [SMALL_STATE(3117)] = 132421, + [SMALL_STATE(3118)] = 132469, + [SMALL_STATE(3119)] = 132517, + [SMALL_STATE(3120)] = 132565, + [SMALL_STATE(3121)] = 132613, + [SMALL_STATE(3122)] = 132661, + [SMALL_STATE(3123)] = 132709, + [SMALL_STATE(3124)] = 132759, + [SMALL_STATE(3125)] = 132809, + [SMALL_STATE(3126)] = 132859, + [SMALL_STATE(3127)] = 132907, + [SMALL_STATE(3128)] = 132955, + [SMALL_STATE(3129)] = 133003, + [SMALL_STATE(3130)] = 133051, + [SMALL_STATE(3131)] = 133099, + [SMALL_STATE(3132)] = 133147, + [SMALL_STATE(3133)] = 133195, + [SMALL_STATE(3134)] = 133243, + [SMALL_STATE(3135)] = 133291, + [SMALL_STATE(3136)] = 133339, + [SMALL_STATE(3137)] = 133387, + [SMALL_STATE(3138)] = 133437, + [SMALL_STATE(3139)] = 133485, + [SMALL_STATE(3140)] = 133533, + [SMALL_STATE(3141)] = 133581, + [SMALL_STATE(3142)] = 133629, + [SMALL_STATE(3143)] = 133677, + [SMALL_STATE(3144)] = 133725, + [SMALL_STATE(3145)] = 133773, + [SMALL_STATE(3146)] = 133821, + [SMALL_STATE(3147)] = 133869, + [SMALL_STATE(3148)] = 133917, + [SMALL_STATE(3149)] = 133965, + [SMALL_STATE(3150)] = 134013, + [SMALL_STATE(3151)] = 134061, + [SMALL_STATE(3152)] = 134109, + [SMALL_STATE(3153)] = 134157, + [SMALL_STATE(3154)] = 134205, + [SMALL_STATE(3155)] = 134253, + [SMALL_STATE(3156)] = 134301, + [SMALL_STATE(3157)] = 134349, + [SMALL_STATE(3158)] = 134397, + [SMALL_STATE(3159)] = 134445, + [SMALL_STATE(3160)] = 134493, + [SMALL_STATE(3161)] = 134541, + [SMALL_STATE(3162)] = 134591, + [SMALL_STATE(3163)] = 134639, + [SMALL_STATE(3164)] = 134687, + [SMALL_STATE(3165)] = 134735, + [SMALL_STATE(3166)] = 134783, + [SMALL_STATE(3167)] = 134831, + [SMALL_STATE(3168)] = 134879, + [SMALL_STATE(3169)] = 134927, + [SMALL_STATE(3170)] = 134975, + [SMALL_STATE(3171)] = 135023, + [SMALL_STATE(3172)] = 135071, + [SMALL_STATE(3173)] = 135119, + [SMALL_STATE(3174)] = 135169, + [SMALL_STATE(3175)] = 135217, + [SMALL_STATE(3176)] = 135265, + [SMALL_STATE(3177)] = 135313, + [SMALL_STATE(3178)] = 135363, + [SMALL_STATE(3179)] = 135411, + [SMALL_STATE(3180)] = 135459, + [SMALL_STATE(3181)] = 135507, + [SMALL_STATE(3182)] = 135555, + [SMALL_STATE(3183)] = 135603, + [SMALL_STATE(3184)] = 135651, + [SMALL_STATE(3185)] = 135699, + [SMALL_STATE(3186)] = 135747, + [SMALL_STATE(3187)] = 135795, + [SMALL_STATE(3188)] = 135843, + [SMALL_STATE(3189)] = 135891, + [SMALL_STATE(3190)] = 135939, + [SMALL_STATE(3191)] = 135987, + [SMALL_STATE(3192)] = 136035, + [SMALL_STATE(3193)] = 136083, + [SMALL_STATE(3194)] = 136131, + [SMALL_STATE(3195)] = 136179, + [SMALL_STATE(3196)] = 136227, + [SMALL_STATE(3197)] = 136275, + [SMALL_STATE(3198)] = 136323, + [SMALL_STATE(3199)] = 136371, + [SMALL_STATE(3200)] = 136419, + [SMALL_STATE(3201)] = 136467, + [SMALL_STATE(3202)] = 136515, + [SMALL_STATE(3203)] = 136563, + [SMALL_STATE(3204)] = 136611, + [SMALL_STATE(3205)] = 136659, + [SMALL_STATE(3206)] = 136707, + [SMALL_STATE(3207)] = 136755, + [SMALL_STATE(3208)] = 136803, + [SMALL_STATE(3209)] = 136851, + [SMALL_STATE(3210)] = 136899, + [SMALL_STATE(3211)] = 136947, + [SMALL_STATE(3212)] = 136997, + [SMALL_STATE(3213)] = 137045, + [SMALL_STATE(3214)] = 137095, + [SMALL_STATE(3215)] = 137143, + [SMALL_STATE(3216)] = 137191, + [SMALL_STATE(3217)] = 137239, + [SMALL_STATE(3218)] = 137287, + [SMALL_STATE(3219)] = 137335, + [SMALL_STATE(3220)] = 137383, + [SMALL_STATE(3221)] = 137431, + [SMALL_STATE(3222)] = 137479, + [SMALL_STATE(3223)] = 137527, + [SMALL_STATE(3224)] = 137575, + [SMALL_STATE(3225)] = 137625, + [SMALL_STATE(3226)] = 137673, + [SMALL_STATE(3227)] = 137721, + [SMALL_STATE(3228)] = 137769, + [SMALL_STATE(3229)] = 137819, + [SMALL_STATE(3230)] = 137869, + [SMALL_STATE(3231)] = 137917, + [SMALL_STATE(3232)] = 137967, + [SMALL_STATE(3233)] = 138017, + [SMALL_STATE(3234)] = 138065, + [SMALL_STATE(3235)] = 138113, + [SMALL_STATE(3236)] = 138161, + [SMALL_STATE(3237)] = 138196, + [SMALL_STATE(3238)] = 138237, + [SMALL_STATE(3239)] = 138278, + [SMALL_STATE(3240)] = 138319, + [SMALL_STATE(3241)] = 138347, + [SMALL_STATE(3242)] = 138375, + [SMALL_STATE(3243)] = 138403, + [SMALL_STATE(3244)] = 138431, + [SMALL_STATE(3245)] = 138459, + [SMALL_STATE(3246)] = 138487, + [SMALL_STATE(3247)] = 138515, + [SMALL_STATE(3248)] = 138543, + [SMALL_STATE(3249)] = 138571, + [SMALL_STATE(3250)] = 138599, + [SMALL_STATE(3251)] = 138627, + [SMALL_STATE(3252)] = 138655, + [SMALL_STATE(3253)] = 138683, + [SMALL_STATE(3254)] = 138711, + [SMALL_STATE(3255)] = 138739, + [SMALL_STATE(3256)] = 138767, + [SMALL_STATE(3257)] = 138795, + [SMALL_STATE(3258)] = 138823, + [SMALL_STATE(3259)] = 138851, + [SMALL_STATE(3260)] = 138879, + [SMALL_STATE(3261)] = 138907, + [SMALL_STATE(3262)] = 138935, + [SMALL_STATE(3263)] = 138963, + [SMALL_STATE(3264)] = 138991, + [SMALL_STATE(3265)] = 139019, + [SMALL_STATE(3266)] = 139047, + [SMALL_STATE(3267)] = 139075, + [SMALL_STATE(3268)] = 139103, + [SMALL_STATE(3269)] = 139131, + [SMALL_STATE(3270)] = 139159, + [SMALL_STATE(3271)] = 139187, + [SMALL_STATE(3272)] = 139215, + [SMALL_STATE(3273)] = 139243, + [SMALL_STATE(3274)] = 139271, + [SMALL_STATE(3275)] = 139298, + [SMALL_STATE(3276)] = 139331, + [SMALL_STATE(3277)] = 139358, + [SMALL_STATE(3278)] = 139415, + [SMALL_STATE(3279)] = 139472, + [SMALL_STATE(3280)] = 139521, + [SMALL_STATE(3281)] = 139549, + [SMALL_STATE(3282)] = 139587, + [SMALL_STATE(3283)] = 139613, + [SMALL_STATE(3284)] = 139639, + [SMALL_STATE(3285)] = 139665, + [SMALL_STATE(3286)] = 139693, + [SMALL_STATE(3287)] = 139719, + [SMALL_STATE(3288)] = 139745, + [SMALL_STATE(3289)] = 139771, + [SMALL_STATE(3290)] = 139805, + [SMALL_STATE(3291)] = 139831, + [SMALL_STATE(3292)] = 139857, + [SMALL_STATE(3293)] = 139895, + [SMALL_STATE(3294)] = 139933, + [SMALL_STATE(3295)] = 139959, + [SMALL_STATE(3296)] = 139985, + [SMALL_STATE(3297)] = 140011, + [SMALL_STATE(3298)] = 140041, + [SMALL_STATE(3299)] = 140071, + [SMALL_STATE(3300)] = 140097, + [SMALL_STATE(3301)] = 140127, + [SMALL_STATE(3302)] = 140158, + [SMALL_STATE(3303)] = 140185, + [SMALL_STATE(3304)] = 140210, + [SMALL_STATE(3305)] = 140235, + [SMALL_STATE(3306)] = 140260, + [SMALL_STATE(3307)] = 140285, + [SMALL_STATE(3308)] = 140309, + [SMALL_STATE(3309)] = 140333, + [SMALL_STATE(3310)] = 140357, + [SMALL_STATE(3311)] = 140381, + [SMALL_STATE(3312)] = 140405, + [SMALL_STATE(3313)] = 140429, + [SMALL_STATE(3314)] = 140451, + [SMALL_STATE(3315)] = 140475, + [SMALL_STATE(3316)] = 140499, + [SMALL_STATE(3317)] = 140521, + [SMALL_STATE(3318)] = 140553, + [SMALL_STATE(3319)] = 140587, + [SMALL_STATE(3320)] = 140621, + [SMALL_STATE(3321)] = 140645, + [SMALL_STATE(3322)] = 140679, + [SMALL_STATE(3323)] = 140713, + [SMALL_STATE(3324)] = 140745, + [SMALL_STATE(3325)] = 140779, + [SMALL_STATE(3326)] = 140813, + [SMALL_STATE(3327)] = 140837, + [SMALL_STATE(3328)] = 140871, + [SMALL_STATE(3329)] = 140905, + [SMALL_STATE(3330)] = 140929, + [SMALL_STATE(3331)] = 140953, + [SMALL_STATE(3332)] = 140987, + [SMALL_STATE(3333)] = 141013, + [SMALL_STATE(3334)] = 141041, + [SMALL_STATE(3335)] = 141063, + [SMALL_STATE(3336)] = 141087, + [SMALL_STATE(3337)] = 141111, + [SMALL_STATE(3338)] = 141135, + [SMALL_STATE(3339)] = 141159, + [SMALL_STATE(3340)] = 141183, + [SMALL_STATE(3341)] = 141205, + [SMALL_STATE(3342)] = 141229, + [SMALL_STATE(3343)] = 141253, + [SMALL_STATE(3344)] = 141277, + [SMALL_STATE(3345)] = 141299, + [SMALL_STATE(3346)] = 141323, + [SMALL_STATE(3347)] = 141347, + [SMALL_STATE(3348)] = 141371, + [SMALL_STATE(3349)] = 141405, + [SMALL_STATE(3350)] = 141429, + [SMALL_STATE(3351)] = 141453, + [SMALL_STATE(3352)] = 141477, + [SMALL_STATE(3353)] = 141501, + [SMALL_STATE(3354)] = 141533, + [SMALL_STATE(3355)] = 141557, + [SMALL_STATE(3356)] = 141583, + [SMALL_STATE(3357)] = 141607, + [SMALL_STATE(3358)] = 141631, + [SMALL_STATE(3359)] = 141655, + [SMALL_STATE(3360)] = 141679, + [SMALL_STATE(3361)] = 141703, + [SMALL_STATE(3362)] = 141727, + [SMALL_STATE(3363)] = 141751, + [SMALL_STATE(3364)] = 141773, + [SMALL_STATE(3365)] = 141807, + [SMALL_STATE(3366)] = 141831, + [SMALL_STATE(3367)] = 141855, + [SMALL_STATE(3368)] = 141877, + [SMALL_STATE(3369)] = 141901, + [SMALL_STATE(3370)] = 141925, + [SMALL_STATE(3371)] = 141947, + [SMALL_STATE(3372)] = 141971, + [SMALL_STATE(3373)] = 141995, + [SMALL_STATE(3374)] = 142019, + [SMALL_STATE(3375)] = 142053, + [SMALL_STATE(3376)] = 142077, + [SMALL_STATE(3377)] = 142101, + [SMALL_STATE(3378)] = 142125, + [SMALL_STATE(3379)] = 142159, + [SMALL_STATE(3380)] = 142191, + [SMALL_STATE(3381)] = 142215, + [SMALL_STATE(3382)] = 142239, + [SMALL_STATE(3383)] = 142263, + [SMALL_STATE(3384)] = 142287, + [SMALL_STATE(3385)] = 142311, + [SMALL_STATE(3386)] = 142335, + [SMALL_STATE(3387)] = 142367, + [SMALL_STATE(3388)] = 142391, + [SMALL_STATE(3389)] = 142415, + [SMALL_STATE(3390)] = 142439, + [SMALL_STATE(3391)] = 142473, + [SMALL_STATE(3392)] = 142497, + [SMALL_STATE(3393)] = 142531, + [SMALL_STATE(3394)] = 142555, + [SMALL_STATE(3395)] = 142579, + [SMALL_STATE(3396)] = 142613, + [SMALL_STATE(3397)] = 142647, + [SMALL_STATE(3398)] = 142679, + [SMALL_STATE(3399)] = 142703, + [SMALL_STATE(3400)] = 142727, + [SMALL_STATE(3401)] = 142751, + [SMALL_STATE(3402)] = 142775, + [SMALL_STATE(3403)] = 142809, + [SMALL_STATE(3404)] = 142833, + [SMALL_STATE(3405)] = 142855, + [SMALL_STATE(3406)] = 142879, + [SMALL_STATE(3407)] = 142903, + [SMALL_STATE(3408)] = 142927, + [SMALL_STATE(3409)] = 142966, + [SMALL_STATE(3410)] = 143009, + [SMALL_STATE(3411)] = 143052, + [SMALL_STATE(3412)] = 143095, + [SMALL_STATE(3413)] = 143138, + [SMALL_STATE(3414)] = 143167, + [SMALL_STATE(3415)] = 143196, + [SMALL_STATE(3416)] = 143235, + [SMALL_STATE(3417)] = 143278, + [SMALL_STATE(3418)] = 143303, + [SMALL_STATE(3419)] = 143332, + [SMALL_STATE(3420)] = 143361, + [SMALL_STATE(3421)] = 143386, + [SMALL_STATE(3422)] = 143415, + [SMALL_STATE(3423)] = 143458, + [SMALL_STATE(3424)] = 143501, + [SMALL_STATE(3425)] = 143530, + [SMALL_STATE(3426)] = 143573, + [SMALL_STATE(3427)] = 143616, + [SMALL_STATE(3428)] = 143659, + [SMALL_STATE(3429)] = 143702, + [SMALL_STATE(3430)] = 143745, + [SMALL_STATE(3431)] = 143788, + [SMALL_STATE(3432)] = 143831, + [SMALL_STATE(3433)] = 143874, + [SMALL_STATE(3434)] = 143917, + [SMALL_STATE(3435)] = 143944, + [SMALL_STATE(3436)] = 143987, + [SMALL_STATE(3437)] = 144030, + [SMALL_STATE(3438)] = 144073, + [SMALL_STATE(3439)] = 144102, + [SMALL_STATE(3440)] = 144145, + [SMALL_STATE(3441)] = 144174, + [SMALL_STATE(3442)] = 144217, + [SMALL_STATE(3443)] = 144256, + [SMALL_STATE(3444)] = 144285, + [SMALL_STATE(3445)] = 144320, + [SMALL_STATE(3446)] = 144363, + [SMALL_STATE(3447)] = 144402, + [SMALL_STATE(3448)] = 144445, + [SMALL_STATE(3449)] = 144490, + [SMALL_STATE(3450)] = 144515, + [SMALL_STATE(3451)] = 144554, + [SMALL_STATE(3452)] = 144590, + [SMALL_STATE(3453)] = 144618, + [SMALL_STATE(3454)] = 144638, + [SMALL_STATE(3455)] = 144658, + [SMALL_STATE(3456)] = 144700, + [SMALL_STATE(3457)] = 144722, + [SMALL_STATE(3458)] = 144758, + [SMALL_STATE(3459)] = 144786, + [SMALL_STATE(3460)] = 144808, + [SMALL_STATE(3461)] = 144830, + [SMALL_STATE(3462)] = 144852, + [SMALL_STATE(3463)] = 144872, + [SMALL_STATE(3464)] = 144900, + [SMALL_STATE(3465)] = 144920, + [SMALL_STATE(3466)] = 144948, + [SMALL_STATE(3467)] = 144984, + [SMALL_STATE(3468)] = 145020, + [SMALL_STATE(3469)] = 145056, + [SMALL_STATE(3470)] = 145092, + [SMALL_STATE(3471)] = 145128, + [SMALL_STATE(3472)] = 145150, + [SMALL_STATE(3473)] = 145186, + [SMALL_STATE(3474)] = 145208, + [SMALL_STATE(3475)] = 145244, + [SMALL_STATE(3476)] = 145264, + [SMALL_STATE(3477)] = 145286, + [SMALL_STATE(3478)] = 145308, + [SMALL_STATE(3479)] = 145328, + [SMALL_STATE(3480)] = 145364, + [SMALL_STATE(3481)] = 145386, + [SMALL_STATE(3482)] = 145408, + [SMALL_STATE(3483)] = 145430, + [SMALL_STATE(3484)] = 145450, + [SMALL_STATE(3485)] = 145478, + [SMALL_STATE(3486)] = 145498, + [SMALL_STATE(3487)] = 145518, + [SMALL_STATE(3488)] = 145538, + [SMALL_STATE(3489)] = 145558, + [SMALL_STATE(3490)] = 145600, + [SMALL_STATE(3491)] = 145626, + [SMALL_STATE(3492)] = 145646, + [SMALL_STATE(3493)] = 145666, + [SMALL_STATE(3494)] = 145694, + [SMALL_STATE(3495)] = 145716, + [SMALL_STATE(3496)] = 145736, + [SMALL_STATE(3497)] = 145764, + [SMALL_STATE(3498)] = 145784, + [SMALL_STATE(3499)] = 145820, + [SMALL_STATE(3500)] = 145842, + [SMALL_STATE(3501)] = 145862, + [SMALL_STATE(3502)] = 145882, + [SMALL_STATE(3503)] = 145902, + [SMALL_STATE(3504)] = 145922, + [SMALL_STATE(3505)] = 145950, + [SMALL_STATE(3506)] = 145986, + [SMALL_STATE(3507)] = 146006, + [SMALL_STATE(3508)] = 146026, + [SMALL_STATE(3509)] = 146046, + [SMALL_STATE(3510)] = 146066, + [SMALL_STATE(3511)] = 146092, + [SMALL_STATE(3512)] = 146112, + [SMALL_STATE(3513)] = 146132, + [SMALL_STATE(3514)] = 146168, + [SMALL_STATE(3515)] = 146204, + [SMALL_STATE(3516)] = 146224, + [SMALL_STATE(3517)] = 146244, + [SMALL_STATE(3518)] = 146270, + [SMALL_STATE(3519)] = 146290, + [SMALL_STATE(3520)] = 146314, + [SMALL_STATE(3521)] = 146334, + [SMALL_STATE(3522)] = 146354, + [SMALL_STATE(3523)] = 146374, + [SMALL_STATE(3524)] = 146410, + [SMALL_STATE(3525)] = 146434, + [SMALL_STATE(3526)] = 146470, + [SMALL_STATE(3527)] = 146492, + [SMALL_STATE(3528)] = 146512, + [SMALL_STATE(3529)] = 146536, + [SMALL_STATE(3530)] = 146558, + [SMALL_STATE(3531)] = 146594, + [SMALL_STATE(3532)] = 146618, + [SMALL_STATE(3533)] = 146638, + [SMALL_STATE(3534)] = 146658, + [SMALL_STATE(3535)] = 146694, + [SMALL_STATE(3536)] = 146722, + [SMALL_STATE(3537)] = 146746, + [SMALL_STATE(3538)] = 146785, + [SMALL_STATE(3539)] = 146806, + [SMALL_STATE(3540)] = 146837, + [SMALL_STATE(3541)] = 146870, + [SMALL_STATE(3542)] = 146907, + [SMALL_STATE(3543)] = 146946, + [SMALL_STATE(3544)] = 146965, + [SMALL_STATE(3545)] = 146990, + [SMALL_STATE(3546)] = 147027, + [SMALL_STATE(3547)] = 147064, + [SMALL_STATE(3548)] = 147087, + [SMALL_STATE(3549)] = 147110, + [SMALL_STATE(3550)] = 147147, + [SMALL_STATE(3551)] = 147184, + [SMALL_STATE(3552)] = 147213, + [SMALL_STATE(3553)] = 147250, + [SMALL_STATE(3554)] = 147287, + [SMALL_STATE(3555)] = 147324, + [SMALL_STATE(3556)] = 147357, + [SMALL_STATE(3557)] = 147378, + [SMALL_STATE(3558)] = 147409, + [SMALL_STATE(3559)] = 147446, + [SMALL_STATE(3560)] = 147477, + [SMALL_STATE(3561)] = 147514, + [SMALL_STATE(3562)] = 147547, + [SMALL_STATE(3563)] = 147584, + [SMALL_STATE(3564)] = 147621, + [SMALL_STATE(3565)] = 147640, + [SMALL_STATE(3566)] = 147673, + [SMALL_STATE(3567)] = 147710, + [SMALL_STATE(3568)] = 147733, + [SMALL_STATE(3569)] = 147766, + [SMALL_STATE(3570)] = 147803, + [SMALL_STATE(3571)] = 147840, + [SMALL_STATE(3572)] = 147873, + [SMALL_STATE(3573)] = 147906, + [SMALL_STATE(3574)] = 147943, + [SMALL_STATE(3575)] = 147980, + [SMALL_STATE(3576)] = 148017, + [SMALL_STATE(3577)] = 148050, + [SMALL_STATE(3578)] = 148089, + [SMALL_STATE(3579)] = 148126, + [SMALL_STATE(3580)] = 148163, + [SMALL_STATE(3581)] = 148196, + [SMALL_STATE(3582)] = 148225, + [SMALL_STATE(3583)] = 148258, + [SMALL_STATE(3584)] = 148279, + [SMALL_STATE(3585)] = 148318, + [SMALL_STATE(3586)] = 148341, + [SMALL_STATE(3587)] = 148372, + [SMALL_STATE(3588)] = 148405, + [SMALL_STATE(3589)] = 148442, + [SMALL_STATE(3590)] = 148471, + [SMALL_STATE(3591)] = 148500, + [SMALL_STATE(3592)] = 148531, + [SMALL_STATE(3593)] = 148556, + [SMALL_STATE(3594)] = 148593, + [SMALL_STATE(3595)] = 148632, + [SMALL_STATE(3596)] = 148661, + [SMALL_STATE(3597)] = 148698, + [SMALL_STATE(3598)] = 148719, + [SMALL_STATE(3599)] = 148737, + [SMALL_STATE(3600)] = 148757, + [SMALL_STATE(3601)] = 148777, + [SMALL_STATE(3602)] = 148795, + [SMALL_STATE(3603)] = 148815, + [SMALL_STATE(3604)] = 148833, + [SMALL_STATE(3605)] = 148851, + [SMALL_STATE(3606)] = 148869, + [SMALL_STATE(3607)] = 148887, + [SMALL_STATE(3608)] = 148907, + [SMALL_STATE(3609)] = 148929, + [SMALL_STATE(3610)] = 148947, + [SMALL_STATE(3611)] = 148967, + [SMALL_STATE(3612)] = 149003, + [SMALL_STATE(3613)] = 149023, + [SMALL_STATE(3614)] = 149043, + [SMALL_STATE(3615)] = 149063, + [SMALL_STATE(3616)] = 149083, + [SMALL_STATE(3617)] = 149107, + [SMALL_STATE(3618)] = 149127, + [SMALL_STATE(3619)] = 149153, + [SMALL_STATE(3620)] = 149173, + [SMALL_STATE(3621)] = 149193, + [SMALL_STATE(3622)] = 149217, + [SMALL_STATE(3623)] = 149235, + [SMALL_STATE(3624)] = 149257, + [SMALL_STATE(3625)] = 149277, + [SMALL_STATE(3626)] = 149299, + [SMALL_STATE(3627)] = 149321, + [SMALL_STATE(3628)] = 149339, + [SMALL_STATE(3629)] = 149359, + [SMALL_STATE(3630)] = 149379, + [SMALL_STATE(3631)] = 149401, + [SMALL_STATE(3632)] = 149427, + [SMALL_STATE(3633)] = 149451, + [SMALL_STATE(3634)] = 149471, + [SMALL_STATE(3635)] = 149493, + [SMALL_STATE(3636)] = 149517, + [SMALL_STATE(3637)] = 149541, + [SMALL_STATE(3638)] = 149559, + [SMALL_STATE(3639)] = 149579, + [SMALL_STATE(3640)] = 149599, + [SMALL_STATE(3641)] = 149619, + [SMALL_STATE(3642)] = 149639, + [SMALL_STATE(3643)] = 149663, + [SMALL_STATE(3644)] = 149681, + [SMALL_STATE(3645)] = 149699, + [SMALL_STATE(3646)] = 149719, + [SMALL_STATE(3647)] = 149741, + [SMALL_STATE(3648)] = 149761, + [SMALL_STATE(3649)] = 149781, + [SMALL_STATE(3650)] = 149801, + [SMALL_STATE(3651)] = 149819, + [SMALL_STATE(3652)] = 149839, + [SMALL_STATE(3653)] = 149859, + [SMALL_STATE(3654)] = 149879, + [SMALL_STATE(3655)] = 149899, + [SMALL_STATE(3656)] = 149919, + [SMALL_STATE(3657)] = 149937, + [SMALL_STATE(3658)] = 149961, + [SMALL_STATE(3659)] = 149985, + [SMALL_STATE(3660)] = 150005, + [SMALL_STATE(3661)] = 150025, + [SMALL_STATE(3662)] = 150045, + [SMALL_STATE(3663)] = 150065, + [SMALL_STATE(3664)] = 150085, + [SMALL_STATE(3665)] = 150107, + [SMALL_STATE(3666)] = 150127, + [SMALL_STATE(3667)] = 150147, + [SMALL_STATE(3668)] = 150167, + [SMALL_STATE(3669)] = 150187, + [SMALL_STATE(3670)] = 150222, + [SMALL_STATE(3671)] = 150257, + [SMALL_STATE(3672)] = 150278, + [SMALL_STATE(3673)] = 150311, + [SMALL_STATE(3674)] = 150344, + [SMALL_STATE(3675)] = 150375, + [SMALL_STATE(3676)] = 150410, + [SMALL_STATE(3677)] = 150445, + [SMALL_STATE(3678)] = 150468, + [SMALL_STATE(3679)] = 150503, + [SMALL_STATE(3680)] = 150524, + [SMALL_STATE(3681)] = 150559, + [SMALL_STATE(3682)] = 150582, + [SMALL_STATE(3683)] = 150617, + [SMALL_STATE(3684)] = 150648, + [SMALL_STATE(3685)] = 150667, + [SMALL_STATE(3686)] = 150688, + [SMALL_STATE(3687)] = 150723, + [SMALL_STATE(3688)] = 150758, + [SMALL_STATE(3689)] = 150791, + [SMALL_STATE(3690)] = 150820, + [SMALL_STATE(3691)] = 150849, + [SMALL_STATE(3692)] = 150882, + [SMALL_STATE(3693)] = 150915, + [SMALL_STATE(3694)] = 150934, + [SMALL_STATE(3695)] = 150969, + [SMALL_STATE(3696)] = 150986, + [SMALL_STATE(3697)] = 151003, + [SMALL_STATE(3698)] = 151020, + [SMALL_STATE(3699)] = 151055, + [SMALL_STATE(3700)] = 151080, + [SMALL_STATE(3701)] = 151097, + [SMALL_STATE(3702)] = 151116, + [SMALL_STATE(3703)] = 151139, + [SMALL_STATE(3704)] = 151172, + [SMALL_STATE(3705)] = 151191, + [SMALL_STATE(3706)] = 151207, + [SMALL_STATE(3707)] = 151223, + [SMALL_STATE(3708)] = 151239, + [SMALL_STATE(3709)] = 151255, + [SMALL_STATE(3710)] = 151283, + [SMALL_STATE(3711)] = 151301, + [SMALL_STATE(3712)] = 151317, + [SMALL_STATE(3713)] = 151347, + [SMALL_STATE(3714)] = 151375, + [SMALL_STATE(3715)] = 151401, + [SMALL_STATE(3716)] = 151429, + [SMALL_STATE(3717)] = 151461, + [SMALL_STATE(3718)] = 151477, + [SMALL_STATE(3719)] = 151507, + [SMALL_STATE(3720)] = 151523, + [SMALL_STATE(3721)] = 151553, + [SMALL_STATE(3722)] = 151583, + [SMALL_STATE(3723)] = 151609, + [SMALL_STATE(3724)] = 151625, + [SMALL_STATE(3725)] = 151647, + [SMALL_STATE(3726)] = 151667, + [SMALL_STATE(3727)] = 151699, + [SMALL_STATE(3728)] = 151725, + [SMALL_STATE(3729)] = 151751, + [SMALL_STATE(3730)] = 151779, + [SMALL_STATE(3731)] = 151805, + [SMALL_STATE(3732)] = 151837, + [SMALL_STATE(3733)] = 151865, + [SMALL_STATE(3734)] = 151891, + [SMALL_STATE(3735)] = 151907, + [SMALL_STATE(3736)] = 151939, + [SMALL_STATE(3737)] = 151967, + [SMALL_STATE(3738)] = 151993, + [SMALL_STATE(3739)] = 152021, + [SMALL_STATE(3740)] = 152051, + [SMALL_STATE(3741)] = 152077, + [SMALL_STATE(3742)] = 152105, + [SMALL_STATE(3743)] = 152137, + [SMALL_STATE(3744)] = 152165, + [SMALL_STATE(3745)] = 152193, + [SMALL_STATE(3746)] = 152225, + [SMALL_STATE(3747)] = 152253, + [SMALL_STATE(3748)] = 152281, + [SMALL_STATE(3749)] = 152297, + [SMALL_STATE(3750)] = 152313, + [SMALL_STATE(3751)] = 152329, + [SMALL_STATE(3752)] = 152357, + [SMALL_STATE(3753)] = 152375, + [SMALL_STATE(3754)] = 152391, + [SMALL_STATE(3755)] = 152423, + [SMALL_STATE(3756)] = 152439, + [SMALL_STATE(3757)] = 152461, + [SMALL_STATE(3758)] = 152481, + [SMALL_STATE(3759)] = 152511, + [SMALL_STATE(3760)] = 152529, + [SMALL_STATE(3761)] = 152559, + [SMALL_STATE(3762)] = 152587, + [SMALL_STATE(3763)] = 152605, + [SMALL_STATE(3764)] = 152633, + [SMALL_STATE(3765)] = 152661, + [SMALL_STATE(3766)] = 152683, + [SMALL_STATE(3767)] = 152711, + [SMALL_STATE(3768)] = 152727, + [SMALL_STATE(3769)] = 152755, + [SMALL_STATE(3770)] = 152783, + [SMALL_STATE(3771)] = 152805, + [SMALL_STATE(3772)] = 152833, + [SMALL_STATE(3773)] = 152861, + [SMALL_STATE(3774)] = 152889, + [SMALL_STATE(3775)] = 152917, + [SMALL_STATE(3776)] = 152947, + [SMALL_STATE(3777)] = 152977, + [SMALL_STATE(3778)] = 153003, + [SMALL_STATE(3779)] = 153029, + [SMALL_STATE(3780)] = 153045, + [SMALL_STATE(3781)] = 153073, + [SMALL_STATE(3782)] = 153103, + [SMALL_STATE(3783)] = 153129, + [SMALL_STATE(3784)] = 153145, + [SMALL_STATE(3785)] = 153173, + [SMALL_STATE(3786)] = 153201, + [SMALL_STATE(3787)] = 153229, + [SMALL_STATE(3788)] = 153245, + [SMALL_STATE(3789)] = 153275, + [SMALL_STATE(3790)] = 153291, + [SMALL_STATE(3791)] = 153319, + [SMALL_STATE(3792)] = 153347, + [SMALL_STATE(3793)] = 153377, + [SMALL_STATE(3794)] = 153393, + [SMALL_STATE(3795)] = 153421, + [SMALL_STATE(3796)] = 153451, + [SMALL_STATE(3797)] = 153481, + [SMALL_STATE(3798)] = 153497, + [SMALL_STATE(3799)] = 153513, + [SMALL_STATE(3800)] = 153543, + [SMALL_STATE(3801)] = 153569, + [SMALL_STATE(3802)] = 153585, + [SMALL_STATE(3803)] = 153613, + [SMALL_STATE(3804)] = 153643, + [SMALL_STATE(3805)] = 153663, + [SMALL_STATE(3806)] = 153679, + [SMALL_STATE(3807)] = 153695, + [SMALL_STATE(3808)] = 153727, + [SMALL_STATE(3809)] = 153759, + [SMALL_STATE(3810)] = 153791, + [SMALL_STATE(3811)] = 153821, + [SMALL_STATE(3812)] = 153837, + [SMALL_STATE(3813)] = 153867, + [SMALL_STATE(3814)] = 153889, + [SMALL_STATE(3815)] = 153921, + [SMALL_STATE(3816)] = 153937, + [SMALL_STATE(3817)] = 153969, + [SMALL_STATE(3818)] = 153985, + [SMALL_STATE(3819)] = 154017, + [SMALL_STATE(3820)] = 154049, + [SMALL_STATE(3821)] = 154081, + [SMALL_STATE(3822)] = 154097, + [SMALL_STATE(3823)] = 154125, + [SMALL_STATE(3824)] = 154157, + [SMALL_STATE(3825)] = 154187, + [SMALL_STATE(3826)] = 154205, + [SMALL_STATE(3827)] = 154235, + [SMALL_STATE(3828)] = 154251, + [SMALL_STATE(3829)] = 154279, + [SMALL_STATE(3830)] = 154309, + [SMALL_STATE(3831)] = 154325, + [SMALL_STATE(3832)] = 154357, + [SMALL_STATE(3833)] = 154387, + [SMALL_STATE(3834)] = 154403, + [SMALL_STATE(3835)] = 154431, + [SMALL_STATE(3836)] = 154455, + [SMALL_STATE(3837)] = 154483, + [SMALL_STATE(3838)] = 154511, + [SMALL_STATE(3839)] = 154543, + [SMALL_STATE(3840)] = 154571, + [SMALL_STATE(3841)] = 154599, + [SMALL_STATE(3842)] = 154631, + [SMALL_STATE(3843)] = 154647, + [SMALL_STATE(3844)] = 154677, + [SMALL_STATE(3845)] = 154705, + [SMALL_STATE(3846)] = 154721, + [SMALL_STATE(3847)] = 154749, + [SMALL_STATE(3848)] = 154781, + [SMALL_STATE(3849)] = 154809, + [SMALL_STATE(3850)] = 154831, + [SMALL_STATE(3851)] = 154859, + [SMALL_STATE(3852)] = 154889, + [SMALL_STATE(3853)] = 154917, + [SMALL_STATE(3854)] = 154933, + [SMALL_STATE(3855)] = 154965, + [SMALL_STATE(3856)] = 154991, + [SMALL_STATE(3857)] = 155019, + [SMALL_STATE(3858)] = 155051, + [SMALL_STATE(3859)] = 155081, + [SMALL_STATE(3860)] = 155109, + [SMALL_STATE(3861)] = 155139, + [SMALL_STATE(3862)] = 155169, + [SMALL_STATE(3863)] = 155199, + [SMALL_STATE(3864)] = 155229, + [SMALL_STATE(3865)] = 155259, + [SMALL_STATE(3866)] = 155285, + [SMALL_STATE(3867)] = 155317, + [SMALL_STATE(3868)] = 155343, + [SMALL_STATE(3869)] = 155371, + [SMALL_STATE(3870)] = 155403, + [SMALL_STATE(3871)] = 155435, + [SMALL_STATE(3872)] = 155467, + [SMALL_STATE(3873)] = 155497, + [SMALL_STATE(3874)] = 155527, + [SMALL_STATE(3875)] = 155559, + [SMALL_STATE(3876)] = 155575, + [SMALL_STATE(3877)] = 155591, + [SMALL_STATE(3878)] = 155621, + [SMALL_STATE(3879)] = 155637, + [SMALL_STATE(3880)] = 155653, + [SMALL_STATE(3881)] = 155669, + [SMALL_STATE(3882)] = 155691, + [SMALL_STATE(3883)] = 155707, + [SMALL_STATE(3884)] = 155723, + [SMALL_STATE(3885)] = 155753, + [SMALL_STATE(3886)] = 155769, + [SMALL_STATE(3887)] = 155791, + [SMALL_STATE(3888)] = 155819, + [SMALL_STATE(3889)] = 155849, + [SMALL_STATE(3890)] = 155865, + [SMALL_STATE(3891)] = 155895, + [SMALL_STATE(3892)] = 155925, + [SMALL_STATE(3893)] = 155957, + [SMALL_STATE(3894)] = 155973, + [SMALL_STATE(3895)] = 156005, + [SMALL_STATE(3896)] = 156035, + [SMALL_STATE(3897)] = 156067, + [SMALL_STATE(3898)] = 156097, + [SMALL_STATE(3899)] = 156129, + [SMALL_STATE(3900)] = 156161, + [SMALL_STATE(3901)] = 156177, + [SMALL_STATE(3902)] = 156203, + [SMALL_STATE(3903)] = 156235, + [SMALL_STATE(3904)] = 156260, + [SMALL_STATE(3905)] = 156289, + [SMALL_STATE(3906)] = 156318, + [SMALL_STATE(3907)] = 156343, + [SMALL_STATE(3908)] = 156372, + [SMALL_STATE(3909)] = 156395, + [SMALL_STATE(3910)] = 156418, + [SMALL_STATE(3911)] = 156439, + [SMALL_STATE(3912)] = 156460, + [SMALL_STATE(3913)] = 156483, + [SMALL_STATE(3914)] = 156504, + [SMALL_STATE(3915)] = 156533, + [SMALL_STATE(3916)] = 156558, + [SMALL_STATE(3917)] = 156575, + [SMALL_STATE(3918)] = 156592, + [SMALL_STATE(3919)] = 156621, + [SMALL_STATE(3920)] = 156638, + [SMALL_STATE(3921)] = 156661, + [SMALL_STATE(3922)] = 156686, + [SMALL_STATE(3923)] = 156709, + [SMALL_STATE(3924)] = 156738, + [SMALL_STATE(3925)] = 156763, + [SMALL_STATE(3926)] = 156788, + [SMALL_STATE(3927)] = 156803, + [SMALL_STATE(3928)] = 156824, + [SMALL_STATE(3929)] = 156839, + [SMALL_STATE(3930)] = 156860, + [SMALL_STATE(3931)] = 156875, + [SMALL_STATE(3932)] = 156898, + [SMALL_STATE(3933)] = 156921, + [SMALL_STATE(3934)] = 156942, + [SMALL_STATE(3935)] = 156967, + [SMALL_STATE(3936)] = 156996, + [SMALL_STATE(3937)] = 157021, + [SMALL_STATE(3938)] = 157050, + [SMALL_STATE(3939)] = 157075, + [SMALL_STATE(3940)] = 157100, + [SMALL_STATE(3941)] = 157123, + [SMALL_STATE(3942)] = 157148, + [SMALL_STATE(3943)] = 157165, + [SMALL_STATE(3944)] = 157182, + [SMALL_STATE(3945)] = 157207, + [SMALL_STATE(3946)] = 157230, + [SMALL_STATE(3947)] = 157252, + [SMALL_STATE(3948)] = 157278, + [SMALL_STATE(3949)] = 157304, + [SMALL_STATE(3950)] = 157330, + [SMALL_STATE(3951)] = 157352, + [SMALL_STATE(3952)] = 157374, + [SMALL_STATE(3953)] = 157396, + [SMALL_STATE(3954)] = 157418, + [SMALL_STATE(3955)] = 157432, + [SMALL_STATE(3956)] = 157454, + [SMALL_STATE(3957)] = 157470, + [SMALL_STATE(3958)] = 157492, + [SMALL_STATE(3959)] = 157514, + [SMALL_STATE(3960)] = 157540, + [SMALL_STATE(3961)] = 157562, + [SMALL_STATE(3962)] = 157584, + [SMALL_STATE(3963)] = 157606, + [SMALL_STATE(3964)] = 157626, + [SMALL_STATE(3965)] = 157642, + [SMALL_STATE(3966)] = 157662, + [SMALL_STATE(3967)] = 157676, + [SMALL_STATE(3968)] = 157698, + [SMALL_STATE(3969)] = 157720, + [SMALL_STATE(3970)] = 157746, + [SMALL_STATE(3971)] = 157768, + [SMALL_STATE(3972)] = 157790, + [SMALL_STATE(3973)] = 157816, + [SMALL_STATE(3974)] = 157836, + [SMALL_STATE(3975)] = 157856, + [SMALL_STATE(3976)] = 157870, + [SMALL_STATE(3977)] = 157888, + [SMALL_STATE(3978)] = 157914, + [SMALL_STATE(3979)] = 157928, + [SMALL_STATE(3980)] = 157950, + [SMALL_STATE(3981)] = 157964, + [SMALL_STATE(3982)] = 157980, + [SMALL_STATE(3983)] = 158006, + [SMALL_STATE(3984)] = 158024, + [SMALL_STATE(3985)] = 158042, + [SMALL_STATE(3986)] = 158058, + [SMALL_STATE(3987)] = 158080, + [SMALL_STATE(3988)] = 158102, + [SMALL_STATE(3989)] = 158128, + [SMALL_STATE(3990)] = 158150, + [SMALL_STATE(3991)] = 158172, + [SMALL_STATE(3992)] = 158194, + [SMALL_STATE(3993)] = 158208, + [SMALL_STATE(3994)] = 158224, + [SMALL_STATE(3995)] = 158242, + [SMALL_STATE(3996)] = 158256, + [SMALL_STATE(3997)] = 158274, + [SMALL_STATE(3998)] = 158292, + [SMALL_STATE(3999)] = 158316, + [SMALL_STATE(4000)] = 158342, + [SMALL_STATE(4001)] = 158368, + [SMALL_STATE(4002)] = 158390, + [SMALL_STATE(4003)] = 158412, + [SMALL_STATE(4004)] = 158428, + [SMALL_STATE(4005)] = 158454, + [SMALL_STATE(4006)] = 158478, + [SMALL_STATE(4007)] = 158500, + [SMALL_STATE(4008)] = 158526, + [SMALL_STATE(4009)] = 158548, + [SMALL_STATE(4010)] = 158570, + [SMALL_STATE(4011)] = 158596, + [SMALL_STATE(4012)] = 158618, + [SMALL_STATE(4013)] = 158636, + [SMALL_STATE(4014)] = 158662, + [SMALL_STATE(4015)] = 158680, + [SMALL_STATE(4016)] = 158698, + [SMALL_STATE(4017)] = 158720, + [SMALL_STATE(4018)] = 158746, + [SMALL_STATE(4019)] = 158768, + [SMALL_STATE(4020)] = 158790, + [SMALL_STATE(4021)] = 158812, + [SMALL_STATE(4022)] = 158834, + [SMALL_STATE(4023)] = 158860, + [SMALL_STATE(4024)] = 158886, + [SMALL_STATE(4025)] = 158904, + [SMALL_STATE(4026)] = 158926, + [SMALL_STATE(4027)] = 158948, + [SMALL_STATE(4028)] = 158970, + [SMALL_STATE(4029)] = 158992, + [SMALL_STATE(4030)] = 159014, + [SMALL_STATE(4031)] = 159036, + [SMALL_STATE(4032)] = 159054, + [SMALL_STATE(4033)] = 159080, + [SMALL_STATE(4034)] = 159102, + [SMALL_STATE(4035)] = 159124, + [SMALL_STATE(4036)] = 159146, + [SMALL_STATE(4037)] = 159168, + [SMALL_STATE(4038)] = 159190, + [SMALL_STATE(4039)] = 159216, + [SMALL_STATE(4040)] = 159242, + [SMALL_STATE(4041)] = 159268, + [SMALL_STATE(4042)] = 159290, + [SMALL_STATE(4043)] = 159312, + [SMALL_STATE(4044)] = 159334, + [SMALL_STATE(4045)] = 159350, + [SMALL_STATE(4046)] = 159372, + [SMALL_STATE(4047)] = 159398, + [SMALL_STATE(4048)] = 159414, + [SMALL_STATE(4049)] = 159436, + [SMALL_STATE(4050)] = 159454, + [SMALL_STATE(4051)] = 159476, + [SMALL_STATE(4052)] = 159502, + [SMALL_STATE(4053)] = 159524, + [SMALL_STATE(4054)] = 159546, + [SMALL_STATE(4055)] = 159560, + [SMALL_STATE(4056)] = 159582, + [SMALL_STATE(4057)] = 159608, + [SMALL_STATE(4058)] = 159630, + [SMALL_STATE(4059)] = 159644, + [SMALL_STATE(4060)] = 159666, + [SMALL_STATE(4061)] = 159688, + [SMALL_STATE(4062)] = 159714, + [SMALL_STATE(4063)] = 159736, + [SMALL_STATE(4064)] = 159758, + [SMALL_STATE(4065)] = 159774, + [SMALL_STATE(4066)] = 159800, + [SMALL_STATE(4067)] = 159826, + [SMALL_STATE(4068)] = 159852, + [SMALL_STATE(4069)] = 159874, + [SMALL_STATE(4070)] = 159896, + [SMALL_STATE(4071)] = 159922, + [SMALL_STATE(4072)] = 159944, + [SMALL_STATE(4073)] = 159966, + [SMALL_STATE(4074)] = 159988, + [SMALL_STATE(4075)] = 160010, + [SMALL_STATE(4076)] = 160032, + [SMALL_STATE(4077)] = 160054, + [SMALL_STATE(4078)] = 160076, + [SMALL_STATE(4079)] = 160102, + [SMALL_STATE(4080)] = 160128, + [SMALL_STATE(4081)] = 160150, + [SMALL_STATE(4082)] = 160166, + [SMALL_STATE(4083)] = 160186, + [SMALL_STATE(4084)] = 160208, + [SMALL_STATE(4085)] = 160234, + [SMALL_STATE(4086)] = 160250, + [SMALL_STATE(4087)] = 160272, + [SMALL_STATE(4088)] = 160294, + [SMALL_STATE(4089)] = 160312, + [SMALL_STATE(4090)] = 160330, + [SMALL_STATE(4091)] = 160356, + [SMALL_STATE(4092)] = 160374, + [SMALL_STATE(4093)] = 160392, + [SMALL_STATE(4094)] = 160410, + [SMALL_STATE(4095)] = 160432, + [SMALL_STATE(4096)] = 160454, + [SMALL_STATE(4097)] = 160468, + [SMALL_STATE(4098)] = 160488, + [SMALL_STATE(4099)] = 160514, + [SMALL_STATE(4100)] = 160534, + [SMALL_STATE(4101)] = 160560, + [SMALL_STATE(4102)] = 160580, + [SMALL_STATE(4103)] = 160594, + [SMALL_STATE(4104)] = 160616, + [SMALL_STATE(4105)] = 160634, + [SMALL_STATE(4106)] = 160656, + [SMALL_STATE(4107)] = 160678, + [SMALL_STATE(4108)] = 160704, + [SMALL_STATE(4109)] = 160722, + [SMALL_STATE(4110)] = 160740, + [SMALL_STATE(4111)] = 160762, + [SMALL_STATE(4112)] = 160784, + [SMALL_STATE(4113)] = 160798, + [SMALL_STATE(4114)] = 160820, + [SMALL_STATE(4115)] = 160842, + [SMALL_STATE(4116)] = 160864, + [SMALL_STATE(4117)] = 160886, + [SMALL_STATE(4118)] = 160908, + [SMALL_STATE(4119)] = 160930, + [SMALL_STATE(4120)] = 160952, + [SMALL_STATE(4121)] = 160974, + [SMALL_STATE(4122)] = 160988, + [SMALL_STATE(4123)] = 161010, + [SMALL_STATE(4124)] = 161028, + [SMALL_STATE(4125)] = 161050, + [SMALL_STATE(4126)] = 161072, + [SMALL_STATE(4127)] = 161094, + [SMALL_STATE(4128)] = 161116, + [SMALL_STATE(4129)] = 161138, + [SMALL_STATE(4130)] = 161160, + [SMALL_STATE(4131)] = 161182, + [SMALL_STATE(4132)] = 161204, + [SMALL_STATE(4133)] = 161226, + [SMALL_STATE(4134)] = 161246, + [SMALL_STATE(4135)] = 161272, + [SMALL_STATE(4136)] = 161294, + [SMALL_STATE(4137)] = 161316, + [SMALL_STATE(4138)] = 161338, + [SMALL_STATE(4139)] = 161360, + [SMALL_STATE(4140)] = 161382, + [SMALL_STATE(4141)] = 161404, + [SMALL_STATE(4142)] = 161426, + [SMALL_STATE(4143)] = 161440, + [SMALL_STATE(4144)] = 161462, + [SMALL_STATE(4145)] = 161484, + [SMALL_STATE(4146)] = 161506, + [SMALL_STATE(4147)] = 161528, + [SMALL_STATE(4148)] = 161550, + [SMALL_STATE(4149)] = 161576, + [SMALL_STATE(4150)] = 161598, + [SMALL_STATE(4151)] = 161620, + [SMALL_STATE(4152)] = 161642, + [SMALL_STATE(4153)] = 161664, + [SMALL_STATE(4154)] = 161686, + [SMALL_STATE(4155)] = 161708, + [SMALL_STATE(4156)] = 161730, + [SMALL_STATE(4157)] = 161752, + [SMALL_STATE(4158)] = 161770, + [SMALL_STATE(4159)] = 161784, + [SMALL_STATE(4160)] = 161806, + [SMALL_STATE(4161)] = 161820, + [SMALL_STATE(4162)] = 161842, + [SMALL_STATE(4163)] = 161864, + [SMALL_STATE(4164)] = 161886, + [SMALL_STATE(4165)] = 161912, + [SMALL_STATE(4166)] = 161934, + [SMALL_STATE(4167)] = 161952, + [SMALL_STATE(4168)] = 161970, + [SMALL_STATE(4169)] = 161988, + [SMALL_STATE(4170)] = 162014, + [SMALL_STATE(4171)] = 162036, + [SMALL_STATE(4172)] = 162054, + [SMALL_STATE(4173)] = 162080, + [SMALL_STATE(4174)] = 162098, + [SMALL_STATE(4175)] = 162120, + [SMALL_STATE(4176)] = 162138, + [SMALL_STATE(4177)] = 162154, + [SMALL_STATE(4178)] = 162169, + [SMALL_STATE(4179)] = 162192, + [SMALL_STATE(4180)] = 162209, + [SMALL_STATE(4181)] = 162232, + [SMALL_STATE(4182)] = 162253, + [SMALL_STATE(4183)] = 162276, + [SMALL_STATE(4184)] = 162299, + [SMALL_STATE(4185)] = 162322, + [SMALL_STATE(4186)] = 162345, + [SMALL_STATE(4187)] = 162368, + [SMALL_STATE(4188)] = 162391, + [SMALL_STATE(4189)] = 162414, + [SMALL_STATE(4190)] = 162437, + [SMALL_STATE(4191)] = 162460, + [SMALL_STATE(4192)] = 162483, + [SMALL_STATE(4193)] = 162506, + [SMALL_STATE(4194)] = 162519, + [SMALL_STATE(4195)] = 162536, + [SMALL_STATE(4196)] = 162553, + [SMALL_STATE(4197)] = 162576, + [SMALL_STATE(4198)] = 162599, + [SMALL_STATE(4199)] = 162616, + [SMALL_STATE(4200)] = 162639, + [SMALL_STATE(4201)] = 162662, + [SMALL_STATE(4202)] = 162685, + [SMALL_STATE(4203)] = 162708, + [SMALL_STATE(4204)] = 162731, + [SMALL_STATE(4205)] = 162754, + [SMALL_STATE(4206)] = 162777, + [SMALL_STATE(4207)] = 162800, + [SMALL_STATE(4208)] = 162823, + [SMALL_STATE(4209)] = 162846, + [SMALL_STATE(4210)] = 162869, + [SMALL_STATE(4211)] = 162886, + [SMALL_STATE(4212)] = 162901, + [SMALL_STATE(4213)] = 162922, + [SMALL_STATE(4214)] = 162945, + [SMALL_STATE(4215)] = 162966, + [SMALL_STATE(4216)] = 162989, + [SMALL_STATE(4217)] = 163006, + [SMALL_STATE(4218)] = 163029, + [SMALL_STATE(4219)] = 163052, + [SMALL_STATE(4220)] = 163075, + [SMALL_STATE(4221)] = 163098, + [SMALL_STATE(4222)] = 163115, + [SMALL_STATE(4223)] = 163138, + [SMALL_STATE(4224)] = 163153, + [SMALL_STATE(4225)] = 163176, + [SMALL_STATE(4226)] = 163199, + [SMALL_STATE(4227)] = 163218, + [SMALL_STATE(4228)] = 163241, + [SMALL_STATE(4229)] = 163264, + [SMALL_STATE(4230)] = 163287, + [SMALL_STATE(4231)] = 163310, + [SMALL_STATE(4232)] = 163333, + [SMALL_STATE(4233)] = 163356, + [SMALL_STATE(4234)] = 163369, + [SMALL_STATE(4235)] = 163386, + [SMALL_STATE(4236)] = 163403, + [SMALL_STATE(4237)] = 163426, + [SMALL_STATE(4238)] = 163449, + [SMALL_STATE(4239)] = 163472, + [SMALL_STATE(4240)] = 163495, + [SMALL_STATE(4241)] = 163518, + [SMALL_STATE(4242)] = 163541, + [SMALL_STATE(4243)] = 163564, + [SMALL_STATE(4244)] = 163581, + [SMALL_STATE(4245)] = 163596, + [SMALL_STATE(4246)] = 163619, + [SMALL_STATE(4247)] = 163642, + [SMALL_STATE(4248)] = 163665, + [SMALL_STATE(4249)] = 163684, + [SMALL_STATE(4250)] = 163707, + [SMALL_STATE(4251)] = 163730, + [SMALL_STATE(4252)] = 163753, + [SMALL_STATE(4253)] = 163776, + [SMALL_STATE(4254)] = 163799, + [SMALL_STATE(4255)] = 163822, + [SMALL_STATE(4256)] = 163835, + [SMALL_STATE(4257)] = 163858, + [SMALL_STATE(4258)] = 163881, + [SMALL_STATE(4259)] = 163904, + [SMALL_STATE(4260)] = 163927, + [SMALL_STATE(4261)] = 163950, + [SMALL_STATE(4262)] = 163973, + [SMALL_STATE(4263)] = 163990, + [SMALL_STATE(4264)] = 164013, + [SMALL_STATE(4265)] = 164036, + [SMALL_STATE(4266)] = 164059, + [SMALL_STATE(4267)] = 164078, + [SMALL_STATE(4268)] = 164101, + [SMALL_STATE(4269)] = 164124, + [SMALL_STATE(4270)] = 164147, + [SMALL_STATE(4271)] = 164164, + [SMALL_STATE(4272)] = 164187, + [SMALL_STATE(4273)] = 164210, + [SMALL_STATE(4274)] = 164227, + [SMALL_STATE(4275)] = 164250, + [SMALL_STATE(4276)] = 164273, + [SMALL_STATE(4277)] = 164296, + [SMALL_STATE(4278)] = 164313, + [SMALL_STATE(4279)] = 164336, + [SMALL_STATE(4280)] = 164355, + [SMALL_STATE(4281)] = 164378, + [SMALL_STATE(4282)] = 164401, + [SMALL_STATE(4283)] = 164424, + [SMALL_STATE(4284)] = 164447, + [SMALL_STATE(4285)] = 164464, + [SMALL_STATE(4286)] = 164487, + [SMALL_STATE(4287)] = 164502, + [SMALL_STATE(4288)] = 164525, + [SMALL_STATE(4289)] = 164548, + [SMALL_STATE(4290)] = 164571, + [SMALL_STATE(4291)] = 164594, + [SMALL_STATE(4292)] = 164617, + [SMALL_STATE(4293)] = 164640, + [SMALL_STATE(4294)] = 164663, + [SMALL_STATE(4295)] = 164686, + [SMALL_STATE(4296)] = 164709, + [SMALL_STATE(4297)] = 164732, + [SMALL_STATE(4298)] = 164755, + [SMALL_STATE(4299)] = 164778, + [SMALL_STATE(4300)] = 164801, + [SMALL_STATE(4301)] = 164820, + [SMALL_STATE(4302)] = 164843, + [SMALL_STATE(4303)] = 164866, + [SMALL_STATE(4304)] = 164889, + [SMALL_STATE(4305)] = 164906, + [SMALL_STATE(4306)] = 164929, + [SMALL_STATE(4307)] = 164952, + [SMALL_STATE(4308)] = 164975, + [SMALL_STATE(4309)] = 164992, + [SMALL_STATE(4310)] = 165015, + [SMALL_STATE(4311)] = 165038, + [SMALL_STATE(4312)] = 165061, + [SMALL_STATE(4313)] = 165084, + [SMALL_STATE(4314)] = 165099, + [SMALL_STATE(4315)] = 165122, + [SMALL_STATE(4316)] = 165145, + [SMALL_STATE(4317)] = 165168, + [SMALL_STATE(4318)] = 165185, + [SMALL_STATE(4319)] = 165204, + [SMALL_STATE(4320)] = 165223, + [SMALL_STATE(4321)] = 165240, + [SMALL_STATE(4322)] = 165263, + [SMALL_STATE(4323)] = 165286, + [SMALL_STATE(4324)] = 165309, + [SMALL_STATE(4325)] = 165332, + [SMALL_STATE(4326)] = 165355, + [SMALL_STATE(4327)] = 165378, + [SMALL_STATE(4328)] = 165393, + [SMALL_STATE(4329)] = 165416, + [SMALL_STATE(4330)] = 165433, + [SMALL_STATE(4331)] = 165456, + [SMALL_STATE(4332)] = 165471, + [SMALL_STATE(4333)] = 165494, + [SMALL_STATE(4334)] = 165517, + [SMALL_STATE(4335)] = 165540, + [SMALL_STATE(4336)] = 165563, + [SMALL_STATE(4337)] = 165586, + [SMALL_STATE(4338)] = 165609, + [SMALL_STATE(4339)] = 165622, + [SMALL_STATE(4340)] = 165645, + [SMALL_STATE(4341)] = 165668, + [SMALL_STATE(4342)] = 165691, + [SMALL_STATE(4343)] = 165704, + [SMALL_STATE(4344)] = 165727, + [SMALL_STATE(4345)] = 165750, + [SMALL_STATE(4346)] = 165773, + [SMALL_STATE(4347)] = 165796, + [SMALL_STATE(4348)] = 165819, + [SMALL_STATE(4349)] = 165838, + [SMALL_STATE(4350)] = 165853, + [SMALL_STATE(4351)] = 165868, + [SMALL_STATE(4352)] = 165891, + [SMALL_STATE(4353)] = 165904, + [SMALL_STATE(4354)] = 165927, + [SMALL_STATE(4355)] = 165950, + [SMALL_STATE(4356)] = 165973, + [SMALL_STATE(4357)] = 165996, + [SMALL_STATE(4358)] = 166019, + [SMALL_STATE(4359)] = 166042, + [SMALL_STATE(4360)] = 166065, + [SMALL_STATE(4361)] = 166088, + [SMALL_STATE(4362)] = 166111, + [SMALL_STATE(4363)] = 166134, + [SMALL_STATE(4364)] = 166149, + [SMALL_STATE(4365)] = 166164, + [SMALL_STATE(4366)] = 166187, + [SMALL_STATE(4367)] = 166204, + [SMALL_STATE(4368)] = 166227, + [SMALL_STATE(4369)] = 166242, + [SMALL_STATE(4370)] = 166257, + [SMALL_STATE(4371)] = 166280, + [SMALL_STATE(4372)] = 166293, + [SMALL_STATE(4373)] = 166316, + [SMALL_STATE(4374)] = 166339, + [SMALL_STATE(4375)] = 166362, + [SMALL_STATE(4376)] = 166385, + [SMALL_STATE(4377)] = 166408, + [SMALL_STATE(4378)] = 166431, + [SMALL_STATE(4379)] = 166454, + [SMALL_STATE(4380)] = 166477, + [SMALL_STATE(4381)] = 166494, + [SMALL_STATE(4382)] = 166517, + [SMALL_STATE(4383)] = 166540, + [SMALL_STATE(4384)] = 166563, + [SMALL_STATE(4385)] = 166586, + [SMALL_STATE(4386)] = 166609, + [SMALL_STATE(4387)] = 166632, + [SMALL_STATE(4388)] = 166655, + [SMALL_STATE(4389)] = 166678, + [SMALL_STATE(4390)] = 166701, + [SMALL_STATE(4391)] = 166724, + [SMALL_STATE(4392)] = 166741, + [SMALL_STATE(4393)] = 166764, + [SMALL_STATE(4394)] = 166787, + [SMALL_STATE(4395)] = 166810, + [SMALL_STATE(4396)] = 166833, + [SMALL_STATE(4397)] = 166850, + [SMALL_STATE(4398)] = 166873, + [SMALL_STATE(4399)] = 166890, + [SMALL_STATE(4400)] = 166913, + [SMALL_STATE(4401)] = 166936, + [SMALL_STATE(4402)] = 166953, + [SMALL_STATE(4403)] = 166976, + [SMALL_STATE(4404)] = 166989, + [SMALL_STATE(4405)] = 167002, + [SMALL_STATE(4406)] = 167025, + [SMALL_STATE(4407)] = 167048, + [SMALL_STATE(4408)] = 167071, + [SMALL_STATE(4409)] = 167088, + [SMALL_STATE(4410)] = 167111, + [SMALL_STATE(4411)] = 167126, + [SMALL_STATE(4412)] = 167149, + [SMALL_STATE(4413)] = 167166, + [SMALL_STATE(4414)] = 167189, + [SMALL_STATE(4415)] = 167204, + [SMALL_STATE(4416)] = 167227, + [SMALL_STATE(4417)] = 167250, + [SMALL_STATE(4418)] = 167273, + [SMALL_STATE(4419)] = 167296, + [SMALL_STATE(4420)] = 167319, + [SMALL_STATE(4421)] = 167336, + [SMALL_STATE(4422)] = 167359, + [SMALL_STATE(4423)] = 167382, + [SMALL_STATE(4424)] = 167405, + [SMALL_STATE(4425)] = 167428, + [SMALL_STATE(4426)] = 167451, + [SMALL_STATE(4427)] = 167474, + [SMALL_STATE(4428)] = 167497, + [SMALL_STATE(4429)] = 167520, + [SMALL_STATE(4430)] = 167543, + [SMALL_STATE(4431)] = 167566, + [SMALL_STATE(4432)] = 167589, + [SMALL_STATE(4433)] = 167612, + [SMALL_STATE(4434)] = 167635, + [SMALL_STATE(4435)] = 167658, + [SMALL_STATE(4436)] = 167681, + [SMALL_STATE(4437)] = 167704, + [SMALL_STATE(4438)] = 167727, + [SMALL_STATE(4439)] = 167744, + [SMALL_STATE(4440)] = 167767, + [SMALL_STATE(4441)] = 167790, + [SMALL_STATE(4442)] = 167813, + [SMALL_STATE(4443)] = 167836, + [SMALL_STATE(4444)] = 167859, + [SMALL_STATE(4445)] = 167882, + [SMALL_STATE(4446)] = 167899, + [SMALL_STATE(4447)] = 167922, + [SMALL_STATE(4448)] = 167937, + [SMALL_STATE(4449)] = 167954, + [SMALL_STATE(4450)] = 167973, + [SMALL_STATE(4451)] = 167996, + [SMALL_STATE(4452)] = 168011, + [SMALL_STATE(4453)] = 168034, + [SMALL_STATE(4454)] = 168057, + [SMALL_STATE(4455)] = 168074, + [SMALL_STATE(4456)] = 168097, + [SMALL_STATE(4457)] = 168114, + [SMALL_STATE(4458)] = 168131, + [SMALL_STATE(4459)] = 168154, + [SMALL_STATE(4460)] = 168177, + [SMALL_STATE(4461)] = 168196, + [SMALL_STATE(4462)] = 168219, + [SMALL_STATE(4463)] = 168236, + [SMALL_STATE(4464)] = 168259, + [SMALL_STATE(4465)] = 168282, + [SMALL_STATE(4466)] = 168299, + [SMALL_STATE(4467)] = 168322, + [SMALL_STATE(4468)] = 168339, + [SMALL_STATE(4469)] = 168362, + [SMALL_STATE(4470)] = 168385, + [SMALL_STATE(4471)] = 168404, + [SMALL_STATE(4472)] = 168419, + [SMALL_STATE(4473)] = 168434, + [SMALL_STATE(4474)] = 168447, + [SMALL_STATE(4475)] = 168464, + [SMALL_STATE(4476)] = 168487, + [SMALL_STATE(4477)] = 168510, + [SMALL_STATE(4478)] = 168527, + [SMALL_STATE(4479)] = 168550, + [SMALL_STATE(4480)] = 168573, + [SMALL_STATE(4481)] = 168590, + [SMALL_STATE(4482)] = 168613, + [SMALL_STATE(4483)] = 168636, + [SMALL_STATE(4484)] = 168649, + [SMALL_STATE(4485)] = 168672, + [SMALL_STATE(4486)] = 168695, + [SMALL_STATE(4487)] = 168718, + [SMALL_STATE(4488)] = 168741, + [SMALL_STATE(4489)] = 168764, + [SMALL_STATE(4490)] = 168787, + [SMALL_STATE(4491)] = 168810, + [SMALL_STATE(4492)] = 168833, + [SMALL_STATE(4493)] = 168848, + [SMALL_STATE(4494)] = 168863, + [SMALL_STATE(4495)] = 168880, + [SMALL_STATE(4496)] = 168895, + [SMALL_STATE(4497)] = 168918, + [SMALL_STATE(4498)] = 168941, + [SMALL_STATE(4499)] = 168964, + [SMALL_STATE(4500)] = 168987, + [SMALL_STATE(4501)] = 169002, + [SMALL_STATE(4502)] = 169025, + [SMALL_STATE(4503)] = 169048, + [SMALL_STATE(4504)] = 169071, + [SMALL_STATE(4505)] = 169094, + [SMALL_STATE(4506)] = 169111, + [SMALL_STATE(4507)] = 169134, + [SMALL_STATE(4508)] = 169157, + [SMALL_STATE(4509)] = 169176, + [SMALL_STATE(4510)] = 169195, + [SMALL_STATE(4511)] = 169218, + [SMALL_STATE(4512)] = 169241, + [SMALL_STATE(4513)] = 169256, + [SMALL_STATE(4514)] = 169271, + [SMALL_STATE(4515)] = 169294, + [SMALL_STATE(4516)] = 169311, + [SMALL_STATE(4517)] = 169334, + [SMALL_STATE(4518)] = 169357, + [SMALL_STATE(4519)] = 169376, + [SMALL_STATE(4520)] = 169399, + [SMALL_STATE(4521)] = 169416, + [SMALL_STATE(4522)] = 169431, + [SMALL_STATE(4523)] = 169446, + [SMALL_STATE(4524)] = 169469, + [SMALL_STATE(4525)] = 169486, + [SMALL_STATE(4526)] = 169499, + [SMALL_STATE(4527)] = 169522, + [SMALL_STATE(4528)] = 169535, + [SMALL_STATE(4529)] = 169558, + [SMALL_STATE(4530)] = 169571, + [SMALL_STATE(4531)] = 169594, + [SMALL_STATE(4532)] = 169617, + [SMALL_STATE(4533)] = 169640, + [SMALL_STATE(4534)] = 169663, + [SMALL_STATE(4535)] = 169686, + [SMALL_STATE(4536)] = 169703, + [SMALL_STATE(4537)] = 169726, + [SMALL_STATE(4538)] = 169749, + [SMALL_STATE(4539)] = 169772, + [SMALL_STATE(4540)] = 169795, + [SMALL_STATE(4541)] = 169818, + [SMALL_STATE(4542)] = 169835, + [SMALL_STATE(4543)] = 169858, + [SMALL_STATE(4544)] = 169881, + [SMALL_STATE(4545)] = 169904, + [SMALL_STATE(4546)] = 169927, + [SMALL_STATE(4547)] = 169950, + [SMALL_STATE(4548)] = 169969, + [SMALL_STATE(4549)] = 169992, + [SMALL_STATE(4550)] = 170015, + [SMALL_STATE(4551)] = 170038, + [SMALL_STATE(4552)] = 170061, + [SMALL_STATE(4553)] = 170084, + [SMALL_STATE(4554)] = 170107, + [SMALL_STATE(4555)] = 170130, + [SMALL_STATE(4556)] = 170153, + [SMALL_STATE(4557)] = 170176, + [SMALL_STATE(4558)] = 170199, + [SMALL_STATE(4559)] = 170222, + [SMALL_STATE(4560)] = 170245, + [SMALL_STATE(4561)] = 170268, + [SMALL_STATE(4562)] = 170291, + [SMALL_STATE(4563)] = 170314, + [SMALL_STATE(4564)] = 170337, + [SMALL_STATE(4565)] = 170360, + [SMALL_STATE(4566)] = 170383, + [SMALL_STATE(4567)] = 170406, + [SMALL_STATE(4568)] = 170429, + [SMALL_STATE(4569)] = 170452, + [SMALL_STATE(4570)] = 170467, + [SMALL_STATE(4571)] = 170482, + [SMALL_STATE(4572)] = 170497, + [SMALL_STATE(4573)] = 170512, + [SMALL_STATE(4574)] = 170527, + [SMALL_STATE(4575)] = 170542, + [SMALL_STATE(4576)] = 170565, + [SMALL_STATE(4577)] = 170588, + [SMALL_STATE(4578)] = 170607, + [SMALL_STATE(4579)] = 170626, + [SMALL_STATE(4580)] = 170649, + [SMALL_STATE(4581)] = 170672, + [SMALL_STATE(4582)] = 170695, + [SMALL_STATE(4583)] = 170714, + [SMALL_STATE(4584)] = 170733, + [SMALL_STATE(4585)] = 170748, + [SMALL_STATE(4586)] = 170767, + [SMALL_STATE(4587)] = 170784, + [SMALL_STATE(4588)] = 170807, + [SMALL_STATE(4589)] = 170830, + [SMALL_STATE(4590)] = 170853, + [SMALL_STATE(4591)] = 170868, + [SMALL_STATE(4592)] = 170883, + [SMALL_STATE(4593)] = 170906, + [SMALL_STATE(4594)] = 170929, + [SMALL_STATE(4595)] = 170952, + [SMALL_STATE(4596)] = 170975, + [SMALL_STATE(4597)] = 170998, + [SMALL_STATE(4598)] = 171021, + [SMALL_STATE(4599)] = 171038, + [SMALL_STATE(4600)] = 171055, + [SMALL_STATE(4601)] = 171078, + [SMALL_STATE(4602)] = 171095, + [SMALL_STATE(4603)] = 171107, + [SMALL_STATE(4604)] = 171127, + [SMALL_STATE(4605)] = 171147, + [SMALL_STATE(4606)] = 171167, + [SMALL_STATE(4607)] = 171187, + [SMALL_STATE(4608)] = 171207, + [SMALL_STATE(4609)] = 171227, + [SMALL_STATE(4610)] = 171245, + [SMALL_STATE(4611)] = 171265, + [SMALL_STATE(4612)] = 171285, + [SMALL_STATE(4613)] = 171305, + [SMALL_STATE(4614)] = 171325, + [SMALL_STATE(4615)] = 171337, + [SMALL_STATE(4616)] = 171349, + [SMALL_STATE(4617)] = 171365, + [SMALL_STATE(4618)] = 171377, + [SMALL_STATE(4619)] = 171397, + [SMALL_STATE(4620)] = 171417, + [SMALL_STATE(4621)] = 171429, + [SMALL_STATE(4622)] = 171441, + [SMALL_STATE(4623)] = 171461, + [SMALL_STATE(4624)] = 171473, + [SMALL_STATE(4625)] = 171493, + [SMALL_STATE(4626)] = 171513, + [SMALL_STATE(4627)] = 171533, + [SMALL_STATE(4628)] = 171553, + [SMALL_STATE(4629)] = 171569, + [SMALL_STATE(4630)] = 171589, + [SMALL_STATE(4631)] = 171609, + [SMALL_STATE(4632)] = 171629, + [SMALL_STATE(4633)] = 171649, + [SMALL_STATE(4634)] = 171665, + [SMALL_STATE(4635)] = 171677, + [SMALL_STATE(4636)] = 171689, + [SMALL_STATE(4637)] = 171705, + [SMALL_STATE(4638)] = 171721, + [SMALL_STATE(4639)] = 171737, + [SMALL_STATE(4640)] = 171757, + [SMALL_STATE(4641)] = 171777, + [SMALL_STATE(4642)] = 171797, + [SMALL_STATE(4643)] = 171817, + [SMALL_STATE(4644)] = 171837, + [SMALL_STATE(4645)] = 171857, + [SMALL_STATE(4646)] = 171877, + [SMALL_STATE(4647)] = 171897, + [SMALL_STATE(4648)] = 171913, + [SMALL_STATE(4649)] = 171933, + [SMALL_STATE(4650)] = 171949, + [SMALL_STATE(4651)] = 171969, + [SMALL_STATE(4652)] = 171989, + [SMALL_STATE(4653)] = 172009, + [SMALL_STATE(4654)] = 172029, + [SMALL_STATE(4655)] = 172049, + [SMALL_STATE(4656)] = 172069, + [SMALL_STATE(4657)] = 172081, + [SMALL_STATE(4658)] = 172097, + [SMALL_STATE(4659)] = 172117, + [SMALL_STATE(4660)] = 172137, + [SMALL_STATE(4661)] = 172157, + [SMALL_STATE(4662)] = 172177, + [SMALL_STATE(4663)] = 172197, + [SMALL_STATE(4664)] = 172217, + [SMALL_STATE(4665)] = 172237, + [SMALL_STATE(4666)] = 172257, + [SMALL_STATE(4667)] = 172277, + [SMALL_STATE(4668)] = 172297, + [SMALL_STATE(4669)] = 172317, + [SMALL_STATE(4670)] = 172337, + [SMALL_STATE(4671)] = 172357, + [SMALL_STATE(4672)] = 172377, + [SMALL_STATE(4673)] = 172397, + [SMALL_STATE(4674)] = 172417, + [SMALL_STATE(4675)] = 172437, + [SMALL_STATE(4676)] = 172457, + [SMALL_STATE(4677)] = 172477, + [SMALL_STATE(4678)] = 172497, + [SMALL_STATE(4679)] = 172517, + [SMALL_STATE(4680)] = 172537, + [SMALL_STATE(4681)] = 172557, + [SMALL_STATE(4682)] = 172577, + [SMALL_STATE(4683)] = 172597, + [SMALL_STATE(4684)] = 172609, + [SMALL_STATE(4685)] = 172629, + [SMALL_STATE(4686)] = 172641, + [SMALL_STATE(4687)] = 172657, + [SMALL_STATE(4688)] = 172671, + [SMALL_STATE(4689)] = 172683, + [SMALL_STATE(4690)] = 172703, + [SMALL_STATE(4691)] = 172723, + [SMALL_STATE(4692)] = 172743, + [SMALL_STATE(4693)] = 172759, + [SMALL_STATE(4694)] = 172779, + [SMALL_STATE(4695)] = 172795, + [SMALL_STATE(4696)] = 172815, + [SMALL_STATE(4697)] = 172835, + [SMALL_STATE(4698)] = 172855, + [SMALL_STATE(4699)] = 172871, + [SMALL_STATE(4700)] = 172887, + [SMALL_STATE(4701)] = 172907, + [SMALL_STATE(4702)] = 172927, + [SMALL_STATE(4703)] = 172941, + [SMALL_STATE(4704)] = 172955, + [SMALL_STATE(4705)] = 172975, + [SMALL_STATE(4706)] = 172995, + [SMALL_STATE(4707)] = 173015, + [SMALL_STATE(4708)] = 173035, + [SMALL_STATE(4709)] = 173051, + [SMALL_STATE(4710)] = 173071, + [SMALL_STATE(4711)] = 173087, + [SMALL_STATE(4712)] = 173103, + [SMALL_STATE(4713)] = 173119, + [SMALL_STATE(4714)] = 173139, + [SMALL_STATE(4715)] = 173155, + [SMALL_STATE(4716)] = 173175, + [SMALL_STATE(4717)] = 173195, + [SMALL_STATE(4718)] = 173211, + [SMALL_STATE(4719)] = 173231, + [SMALL_STATE(4720)] = 173251, + [SMALL_STATE(4721)] = 173271, + [SMALL_STATE(4722)] = 173291, + [SMALL_STATE(4723)] = 173307, + [SMALL_STATE(4724)] = 173327, + [SMALL_STATE(4725)] = 173347, + [SMALL_STATE(4726)] = 173359, + [SMALL_STATE(4727)] = 173375, + [SMALL_STATE(4728)] = 173395, + [SMALL_STATE(4729)] = 173411, + [SMALL_STATE(4730)] = 173423, + [SMALL_STATE(4731)] = 173443, + [SMALL_STATE(4732)] = 173459, + [SMALL_STATE(4733)] = 173475, + [SMALL_STATE(4734)] = 173491, + [SMALL_STATE(4735)] = 173511, + [SMALL_STATE(4736)] = 173531, + [SMALL_STATE(4737)] = 173551, + [SMALL_STATE(4738)] = 173563, + [SMALL_STATE(4739)] = 173577, + [SMALL_STATE(4740)] = 173591, + [SMALL_STATE(4741)] = 173607, + [SMALL_STATE(4742)] = 173627, + [SMALL_STATE(4743)] = 173639, + [SMALL_STATE(4744)] = 173659, + [SMALL_STATE(4745)] = 173679, + [SMALL_STATE(4746)] = 173695, + [SMALL_STATE(4747)] = 173709, + [SMALL_STATE(4748)] = 173723, + [SMALL_STATE(4749)] = 173743, + [SMALL_STATE(4750)] = 173763, + [SMALL_STATE(4751)] = 173779, + [SMALL_STATE(4752)] = 173799, + [SMALL_STATE(4753)] = 173811, + [SMALL_STATE(4754)] = 173831, + [SMALL_STATE(4755)] = 173851, + [SMALL_STATE(4756)] = 173863, + [SMALL_STATE(4757)] = 173883, + [SMALL_STATE(4758)] = 173899, + [SMALL_STATE(4759)] = 173917, + [SMALL_STATE(4760)] = 173937, + [SMALL_STATE(4761)] = 173957, + [SMALL_STATE(4762)] = 173977, + [SMALL_STATE(4763)] = 173997, + [SMALL_STATE(4764)] = 174011, + [SMALL_STATE(4765)] = 174029, + [SMALL_STATE(4766)] = 174045, + [SMALL_STATE(4767)] = 174065, + [SMALL_STATE(4768)] = 174081, + [SMALL_STATE(4769)] = 174093, + [SMALL_STATE(4770)] = 174113, + [SMALL_STATE(4771)] = 174129, + [SMALL_STATE(4772)] = 174149, + [SMALL_STATE(4773)] = 174165, + [SMALL_STATE(4774)] = 174185, + [SMALL_STATE(4775)] = 174201, + [SMALL_STATE(4776)] = 174221, + [SMALL_STATE(4777)] = 174237, + [SMALL_STATE(4778)] = 174253, + [SMALL_STATE(4779)] = 174269, + [SMALL_STATE(4780)] = 174289, + [SMALL_STATE(4781)] = 174309, + [SMALL_STATE(4782)] = 174329, + [SMALL_STATE(4783)] = 174349, + [SMALL_STATE(4784)] = 174363, + [SMALL_STATE(4785)] = 174377, + [SMALL_STATE(4786)] = 174391, + [SMALL_STATE(4787)] = 174405, + [SMALL_STATE(4788)] = 174419, + [SMALL_STATE(4789)] = 174433, + [SMALL_STATE(4790)] = 174449, + [SMALL_STATE(4791)] = 174469, + [SMALL_STATE(4792)] = 174489, + [SMALL_STATE(4793)] = 174505, + [SMALL_STATE(4794)] = 174521, + [SMALL_STATE(4795)] = 174541, + [SMALL_STATE(4796)] = 174553, + [SMALL_STATE(4797)] = 174569, + [SMALL_STATE(4798)] = 174589, + [SMALL_STATE(4799)] = 174603, + [SMALL_STATE(4800)] = 174617, + [SMALL_STATE(4801)] = 174637, + [SMALL_STATE(4802)] = 174653, + [SMALL_STATE(4803)] = 174673, + [SMALL_STATE(4804)] = 174693, + [SMALL_STATE(4805)] = 174713, + [SMALL_STATE(4806)] = 174729, + [SMALL_STATE(4807)] = 174745, + [SMALL_STATE(4808)] = 174759, + [SMALL_STATE(4809)] = 174775, + [SMALL_STATE(4810)] = 174791, + [SMALL_STATE(4811)] = 174811, + [SMALL_STATE(4812)] = 174827, + [SMALL_STATE(4813)] = 174839, + [SMALL_STATE(4814)] = 174855, + [SMALL_STATE(4815)] = 174875, + [SMALL_STATE(4816)] = 174891, + [SMALL_STATE(4817)] = 174911, + [SMALL_STATE(4818)] = 174927, + [SMALL_STATE(4819)] = 174947, + [SMALL_STATE(4820)] = 174967, + [SMALL_STATE(4821)] = 174985, + [SMALL_STATE(4822)] = 175001, + [SMALL_STATE(4823)] = 175017, + [SMALL_STATE(4824)] = 175033, + [SMALL_STATE(4825)] = 175047, + [SMALL_STATE(4826)] = 175063, + [SMALL_STATE(4827)] = 175083, + [SMALL_STATE(4828)] = 175099, + [SMALL_STATE(4829)] = 175113, + [SMALL_STATE(4830)] = 175127, + [SMALL_STATE(4831)] = 175143, + [SMALL_STATE(4832)] = 175159, + [SMALL_STATE(4833)] = 175175, + [SMALL_STATE(4834)] = 175195, + [SMALL_STATE(4835)] = 175211, + [SMALL_STATE(4836)] = 175231, + [SMALL_STATE(4837)] = 175243, + [SMALL_STATE(4838)] = 175259, + [SMALL_STATE(4839)] = 175275, + [SMALL_STATE(4840)] = 175291, + [SMALL_STATE(4841)] = 175311, + [SMALL_STATE(4842)] = 175331, + [SMALL_STATE(4843)] = 175351, + [SMALL_STATE(4844)] = 175363, + [SMALL_STATE(4845)] = 175383, + [SMALL_STATE(4846)] = 175395, + [SMALL_STATE(4847)] = 175407, + [SMALL_STATE(4848)] = 175419, + [SMALL_STATE(4849)] = 175435, + [SMALL_STATE(4850)] = 175455, + [SMALL_STATE(4851)] = 175475, + [SMALL_STATE(4852)] = 175487, + [SMALL_STATE(4853)] = 175503, + [SMALL_STATE(4854)] = 175515, + [SMALL_STATE(4855)] = 175535, + [SMALL_STATE(4856)] = 175547, + [SMALL_STATE(4857)] = 175563, + [SMALL_STATE(4858)] = 175581, + [SMALL_STATE(4859)] = 175593, + [SMALL_STATE(4860)] = 175607, + [SMALL_STATE(4861)] = 175623, + [SMALL_STATE(4862)] = 175643, + [SMALL_STATE(4863)] = 175663, + [SMALL_STATE(4864)] = 175681, + [SMALL_STATE(4865)] = 175701, + [SMALL_STATE(4866)] = 175721, + [SMALL_STATE(4867)] = 175741, + [SMALL_STATE(4868)] = 175753, + [SMALL_STATE(4869)] = 175769, + [SMALL_STATE(4870)] = 175789, + [SMALL_STATE(4871)] = 175809, + [SMALL_STATE(4872)] = 175825, + [SMALL_STATE(4873)] = 175845, + [SMALL_STATE(4874)] = 175857, + [SMALL_STATE(4875)] = 175869, + [SMALL_STATE(4876)] = 175889, + [SMALL_STATE(4877)] = 175903, + [SMALL_STATE(4878)] = 175923, + [SMALL_STATE(4879)] = 175935, + [SMALL_STATE(4880)] = 175955, + [SMALL_STATE(4881)] = 175973, + [SMALL_STATE(4882)] = 175993, + [SMALL_STATE(4883)] = 176009, + [SMALL_STATE(4884)] = 176025, + [SMALL_STATE(4885)] = 176041, + [SMALL_STATE(4886)] = 176059, + [SMALL_STATE(4887)] = 176071, + [SMALL_STATE(4888)] = 176087, + [SMALL_STATE(4889)] = 176107, + [SMALL_STATE(4890)] = 176123, + [SMALL_STATE(4891)] = 176143, + [SMALL_STATE(4892)] = 176159, + [SMALL_STATE(4893)] = 176179, + [SMALL_STATE(4894)] = 176191, + [SMALL_STATE(4895)] = 176207, + [SMALL_STATE(4896)] = 176219, + [SMALL_STATE(4897)] = 176231, + [SMALL_STATE(4898)] = 176247, + [SMALL_STATE(4899)] = 176267, + [SMALL_STATE(4900)] = 176279, + [SMALL_STATE(4901)] = 176291, + [SMALL_STATE(4902)] = 176303, + [SMALL_STATE(4903)] = 176319, + [SMALL_STATE(4904)] = 176331, + [SMALL_STATE(4905)] = 176343, + [SMALL_STATE(4906)] = 176355, + [SMALL_STATE(4907)] = 176371, + [SMALL_STATE(4908)] = 176391, + [SMALL_STATE(4909)] = 176407, + [SMALL_STATE(4910)] = 176419, + [SMALL_STATE(4911)] = 176439, + [SMALL_STATE(4912)] = 176459, + [SMALL_STATE(4913)] = 176479, + [SMALL_STATE(4914)] = 176495, + [SMALL_STATE(4915)] = 176515, + [SMALL_STATE(4916)] = 176535, + [SMALL_STATE(4917)] = 176547, + [SMALL_STATE(4918)] = 176559, + [SMALL_STATE(4919)] = 176571, + [SMALL_STATE(4920)] = 176591, + [SMALL_STATE(4921)] = 176603, + [SMALL_STATE(4922)] = 176615, + [SMALL_STATE(4923)] = 176627, + [SMALL_STATE(4924)] = 176639, + [SMALL_STATE(4925)] = 176651, + [SMALL_STATE(4926)] = 176663, + [SMALL_STATE(4927)] = 176675, + [SMALL_STATE(4928)] = 176691, + [SMALL_STATE(4929)] = 176711, + [SMALL_STATE(4930)] = 176727, + [SMALL_STATE(4931)] = 176747, + [SMALL_STATE(4932)] = 176765, + [SMALL_STATE(4933)] = 176785, + [SMALL_STATE(4934)] = 176805, + [SMALL_STATE(4935)] = 176825, + [SMALL_STATE(4936)] = 176841, + [SMALL_STATE(4937)] = 176861, + [SMALL_STATE(4938)] = 176881, + [SMALL_STATE(4939)] = 176897, + [SMALL_STATE(4940)] = 176917, + [SMALL_STATE(4941)] = 176937, + [SMALL_STATE(4942)] = 176957, + [SMALL_STATE(4943)] = 176977, + [SMALL_STATE(4944)] = 176997, + [SMALL_STATE(4945)] = 177017, + [SMALL_STATE(4946)] = 177037, + [SMALL_STATE(4947)] = 177057, + [SMALL_STATE(4948)] = 177077, + [SMALL_STATE(4949)] = 177089, + [SMALL_STATE(4950)] = 177109, + [SMALL_STATE(4951)] = 177129, + [SMALL_STATE(4952)] = 177149, + [SMALL_STATE(4953)] = 177169, + [SMALL_STATE(4954)] = 177189, + [SMALL_STATE(4955)] = 177209, + [SMALL_STATE(4956)] = 177221, + [SMALL_STATE(4957)] = 177233, + [SMALL_STATE(4958)] = 177245, + [SMALL_STATE(4959)] = 177257, + [SMALL_STATE(4960)] = 177269, + [SMALL_STATE(4961)] = 177289, + [SMALL_STATE(4962)] = 177301, + [SMALL_STATE(4963)] = 177313, + [SMALL_STATE(4964)] = 177333, + [SMALL_STATE(4965)] = 177353, + [SMALL_STATE(4966)] = 177373, + [SMALL_STATE(4967)] = 177393, + [SMALL_STATE(4968)] = 177405, + [SMALL_STATE(4969)] = 177423, + [SMALL_STATE(4970)] = 177435, + [SMALL_STATE(4971)] = 177451, + [SMALL_STATE(4972)] = 177471, + [SMALL_STATE(4973)] = 177487, + [SMALL_STATE(4974)] = 177499, + [SMALL_STATE(4975)] = 177511, + [SMALL_STATE(4976)] = 177523, + [SMALL_STATE(4977)] = 177543, + [SMALL_STATE(4978)] = 177555, + [SMALL_STATE(4979)] = 177567, + [SMALL_STATE(4980)] = 177579, + [SMALL_STATE(4981)] = 177597, + [SMALL_STATE(4982)] = 177617, + [SMALL_STATE(4983)] = 177637, + [SMALL_STATE(4984)] = 177657, + [SMALL_STATE(4985)] = 177677, + [SMALL_STATE(4986)] = 177697, + [SMALL_STATE(4987)] = 177709, + [SMALL_STATE(4988)] = 177725, + [SMALL_STATE(4989)] = 177745, + [SMALL_STATE(4990)] = 177765, + [SMALL_STATE(4991)] = 177783, + [SMALL_STATE(4992)] = 177799, + [SMALL_STATE(4993)] = 177819, + [SMALL_STATE(4994)] = 177839, + [SMALL_STATE(4995)] = 177859, + [SMALL_STATE(4996)] = 177879, + [SMALL_STATE(4997)] = 177899, + [SMALL_STATE(4998)] = 177911, + [SMALL_STATE(4999)] = 177931, + [SMALL_STATE(5000)] = 177951, + [SMALL_STATE(5001)] = 177971, + [SMALL_STATE(5002)] = 177991, + [SMALL_STATE(5003)] = 178011, + [SMALL_STATE(5004)] = 178031, + [SMALL_STATE(5005)] = 178047, + [SMALL_STATE(5006)] = 178067, + [SMALL_STATE(5007)] = 178083, + [SMALL_STATE(5008)] = 178099, + [SMALL_STATE(5009)] = 178119, + [SMALL_STATE(5010)] = 178139, + [SMALL_STATE(5011)] = 178159, + [SMALL_STATE(5012)] = 178179, + [SMALL_STATE(5013)] = 178191, + [SMALL_STATE(5014)] = 178203, + [SMALL_STATE(5015)] = 178215, + [SMALL_STATE(5016)] = 178227, + [SMALL_STATE(5017)] = 178239, + [SMALL_STATE(5018)] = 178251, + [SMALL_STATE(5019)] = 178263, + [SMALL_STATE(5020)] = 178275, + [SMALL_STATE(5021)] = 178287, + [SMALL_STATE(5022)] = 178299, + [SMALL_STATE(5023)] = 178313, + [SMALL_STATE(5024)] = 178333, + [SMALL_STATE(5025)] = 178349, + [SMALL_STATE(5026)] = 178365, + [SMALL_STATE(5027)] = 178381, + [SMALL_STATE(5028)] = 178401, + [SMALL_STATE(5029)] = 178413, + [SMALL_STATE(5030)] = 178425, + [SMALL_STATE(5031)] = 178437, + [SMALL_STATE(5032)] = 178449, + [SMALL_STATE(5033)] = 178465, + [SMALL_STATE(5034)] = 178485, + [SMALL_STATE(5035)] = 178505, + [SMALL_STATE(5036)] = 178523, + [SMALL_STATE(5037)] = 178543, + [SMALL_STATE(5038)] = 178563, + [SMALL_STATE(5039)] = 178583, + [SMALL_STATE(5040)] = 178603, + [SMALL_STATE(5041)] = 178615, + [SMALL_STATE(5042)] = 178627, + [SMALL_STATE(5043)] = 178639, + [SMALL_STATE(5044)] = 178659, + [SMALL_STATE(5045)] = 178677, + [SMALL_STATE(5046)] = 178697, + [SMALL_STATE(5047)] = 178717, + [SMALL_STATE(5048)] = 178737, + [SMALL_STATE(5049)] = 178757, + [SMALL_STATE(5050)] = 178777, + [SMALL_STATE(5051)] = 178797, + [SMALL_STATE(5052)] = 178809, + [SMALL_STATE(5053)] = 178825, + [SMALL_STATE(5054)] = 178845, + [SMALL_STATE(5055)] = 178865, + [SMALL_STATE(5056)] = 178885, + [SMALL_STATE(5057)] = 178897, + [SMALL_STATE(5058)] = 178909, + [SMALL_STATE(5059)] = 178929, + [SMALL_STATE(5060)] = 178945, + [SMALL_STATE(5061)] = 178957, + [SMALL_STATE(5062)] = 178969, + [SMALL_STATE(5063)] = 178985, + [SMALL_STATE(5064)] = 178997, + [SMALL_STATE(5065)] = 179013, + [SMALL_STATE(5066)] = 179033, + [SMALL_STATE(5067)] = 179049, + [SMALL_STATE(5068)] = 179069, + [SMALL_STATE(5069)] = 179085, + [SMALL_STATE(5070)] = 179101, + [SMALL_STATE(5071)] = 179121, + [SMALL_STATE(5072)] = 179141, + [SMALL_STATE(5073)] = 179153, + [SMALL_STATE(5074)] = 179169, + [SMALL_STATE(5075)] = 179181, + [SMALL_STATE(5076)] = 179193, + [SMALL_STATE(5077)] = 179205, + [SMALL_STATE(5078)] = 179217, + [SMALL_STATE(5079)] = 179233, + [SMALL_STATE(5080)] = 179245, + [SMALL_STATE(5081)] = 179265, + [SMALL_STATE(5082)] = 179281, + [SMALL_STATE(5083)] = 179293, + [SMALL_STATE(5084)] = 179305, + [SMALL_STATE(5085)] = 179317, + [SMALL_STATE(5086)] = 179337, + [SMALL_STATE(5087)] = 179353, + [SMALL_STATE(5088)] = 179365, + [SMALL_STATE(5089)] = 179381, + [SMALL_STATE(5090)] = 179393, + [SMALL_STATE(5091)] = 179405, + [SMALL_STATE(5092)] = 179425, + [SMALL_STATE(5093)] = 179445, + [SMALL_STATE(5094)] = 179461, + [SMALL_STATE(5095)] = 179477, + [SMALL_STATE(5096)] = 179491, + [SMALL_STATE(5097)] = 179505, + [SMALL_STATE(5098)] = 179525, + [SMALL_STATE(5099)] = 179541, + [SMALL_STATE(5100)] = 179561, + [SMALL_STATE(5101)] = 179581, + [SMALL_STATE(5102)] = 179597, + [SMALL_STATE(5103)] = 179613, + [SMALL_STATE(5104)] = 179629, + [SMALL_STATE(5105)] = 179645, + [SMALL_STATE(5106)] = 179661, + [SMALL_STATE(5107)] = 179681, + [SMALL_STATE(5108)] = 179697, + [SMALL_STATE(5109)] = 179717, + [SMALL_STATE(5110)] = 179737, + [SMALL_STATE(5111)] = 179751, + [SMALL_STATE(5112)] = 179771, + [SMALL_STATE(5113)] = 179787, + [SMALL_STATE(5114)] = 179803, + [SMALL_STATE(5115)] = 179815, + [SMALL_STATE(5116)] = 179831, + [SMALL_STATE(5117)] = 179843, + [SMALL_STATE(5118)] = 179855, + [SMALL_STATE(5119)] = 179875, + [SMALL_STATE(5120)] = 179891, + [SMALL_STATE(5121)] = 179911, + [SMALL_STATE(5122)] = 179927, + [SMALL_STATE(5123)] = 179943, + [SMALL_STATE(5124)] = 179959, + [SMALL_STATE(5125)] = 179979, + [SMALL_STATE(5126)] = 179999, + [SMALL_STATE(5127)] = 180015, + [SMALL_STATE(5128)] = 180031, + [SMALL_STATE(5129)] = 180047, + [SMALL_STATE(5130)] = 180067, + [SMALL_STATE(5131)] = 180087, + [SMALL_STATE(5132)] = 180103, + [SMALL_STATE(5133)] = 180115, + [SMALL_STATE(5134)] = 180135, + [SMALL_STATE(5135)] = 180151, + [SMALL_STATE(5136)] = 180167, + [SMALL_STATE(5137)] = 180187, + [SMALL_STATE(5138)] = 180203, + [SMALL_STATE(5139)] = 180219, + [SMALL_STATE(5140)] = 180235, + [SMALL_STATE(5141)] = 180255, + [SMALL_STATE(5142)] = 180271, + [SMALL_STATE(5143)] = 180287, + [SMALL_STATE(5144)] = 180303, + [SMALL_STATE(5145)] = 180319, + [SMALL_STATE(5146)] = 180335, + [SMALL_STATE(5147)] = 180355, + [SMALL_STATE(5148)] = 180367, + [SMALL_STATE(5149)] = 180383, + [SMALL_STATE(5150)] = 180395, + [SMALL_STATE(5151)] = 180407, + [SMALL_STATE(5152)] = 180427, + [SMALL_STATE(5153)] = 180443, + [SMALL_STATE(5154)] = 180455, + [SMALL_STATE(5155)] = 180475, + [SMALL_STATE(5156)] = 180491, + [SMALL_STATE(5157)] = 180503, + [SMALL_STATE(5158)] = 180519, + [SMALL_STATE(5159)] = 180535, + [SMALL_STATE(5160)] = 180555, + [SMALL_STATE(5161)] = 180571, + [SMALL_STATE(5162)] = 180583, + [SMALL_STATE(5163)] = 180599, + [SMALL_STATE(5164)] = 180619, + [SMALL_STATE(5165)] = 180635, + [SMALL_STATE(5166)] = 180655, + [SMALL_STATE(5167)] = 180671, + [SMALL_STATE(5168)] = 180691, + [SMALL_STATE(5169)] = 180709, + [SMALL_STATE(5170)] = 180729, + [SMALL_STATE(5171)] = 180747, + [SMALL_STATE(5172)] = 180763, + [SMALL_STATE(5173)] = 180783, + [SMALL_STATE(5174)] = 180795, + [SMALL_STATE(5175)] = 180811, + [SMALL_STATE(5176)] = 180823, + [SMALL_STATE(5177)] = 180835, + [SMALL_STATE(5178)] = 180855, + [SMALL_STATE(5179)] = 180871, + [SMALL_STATE(5180)] = 180887, + [SMALL_STATE(5181)] = 180899, + [SMALL_STATE(5182)] = 180917, + [SMALL_STATE(5183)] = 180937, + [SMALL_STATE(5184)] = 180953, + [SMALL_STATE(5185)] = 180973, + [SMALL_STATE(5186)] = 180989, + [SMALL_STATE(5187)] = 181009, + [SMALL_STATE(5188)] = 181025, + [SMALL_STATE(5189)] = 181041, + [SMALL_STATE(5190)] = 181057, + [SMALL_STATE(5191)] = 181069, + [SMALL_STATE(5192)] = 181089, + [SMALL_STATE(5193)] = 181109, + [SMALL_STATE(5194)] = 181125, + [SMALL_STATE(5195)] = 181137, + [SMALL_STATE(5196)] = 181157, + [SMALL_STATE(5197)] = 181177, + [SMALL_STATE(5198)] = 181193, + [SMALL_STATE(5199)] = 181213, + [SMALL_STATE(5200)] = 181225, + [SMALL_STATE(5201)] = 181241, + [SMALL_STATE(5202)] = 181257, + [SMALL_STATE(5203)] = 181273, + [SMALL_STATE(5204)] = 181293, + [SMALL_STATE(5205)] = 181309, + [SMALL_STATE(5206)] = 181327, + [SMALL_STATE(5207)] = 181343, + [SMALL_STATE(5208)] = 181363, + [SMALL_STATE(5209)] = 181383, + [SMALL_STATE(5210)] = 181399, + [SMALL_STATE(5211)] = 181415, + [SMALL_STATE(5212)] = 181427, + [SMALL_STATE(5213)] = 181447, + [SMALL_STATE(5214)] = 181459, + [SMALL_STATE(5215)] = 181475, + [SMALL_STATE(5216)] = 181491, + [SMALL_STATE(5217)] = 181509, + [SMALL_STATE(5218)] = 181525, + [SMALL_STATE(5219)] = 181541, + [SMALL_STATE(5220)] = 181561, + [SMALL_STATE(5221)] = 181581, + [SMALL_STATE(5222)] = 181601, + [SMALL_STATE(5223)] = 181621, + [SMALL_STATE(5224)] = 181637, + [SMALL_STATE(5225)] = 181657, + [SMALL_STATE(5226)] = 181673, + [SMALL_STATE(5227)] = 181691, + [SMALL_STATE(5228)] = 181711, + [SMALL_STATE(5229)] = 181731, + [SMALL_STATE(5230)] = 181751, + [SMALL_STATE(5231)] = 181771, + [SMALL_STATE(5232)] = 181787, + [SMALL_STATE(5233)] = 181803, + [SMALL_STATE(5234)] = 181819, + [SMALL_STATE(5235)] = 181835, + [SMALL_STATE(5236)] = 181853, + [SMALL_STATE(5237)] = 181869, + [SMALL_STATE(5238)] = 181889, + [SMALL_STATE(5239)] = 181901, + [SMALL_STATE(5240)] = 181913, + [SMALL_STATE(5241)] = 181929, + [SMALL_STATE(5242)] = 181949, + [SMALL_STATE(5243)] = 181969, + [SMALL_STATE(5244)] = 181985, + [SMALL_STATE(5245)] = 181997, + [SMALL_STATE(5246)] = 182009, + [SMALL_STATE(5247)] = 182021, + [SMALL_STATE(5248)] = 182037, + [SMALL_STATE(5249)] = 182049, + [SMALL_STATE(5250)] = 182061, + [SMALL_STATE(5251)] = 182081, + [SMALL_STATE(5252)] = 182093, + [SMALL_STATE(5253)] = 182107, + [SMALL_STATE(5254)] = 182123, + [SMALL_STATE(5255)] = 182135, + [SMALL_STATE(5256)] = 182151, + [SMALL_STATE(5257)] = 182169, + [SMALL_STATE(5258)] = 182185, + [SMALL_STATE(5259)] = 182201, + [SMALL_STATE(5260)] = 182217, + [SMALL_STATE(5261)] = 182233, + [SMALL_STATE(5262)] = 182245, + [SMALL_STATE(5263)] = 182261, + [SMALL_STATE(5264)] = 182279, + [SMALL_STATE(5265)] = 182295, + [SMALL_STATE(5266)] = 182315, + [SMALL_STATE(5267)] = 182331, + [SMALL_STATE(5268)] = 182347, + [SMALL_STATE(5269)] = 182363, + [SMALL_STATE(5270)] = 182383, + [SMALL_STATE(5271)] = 182399, + [SMALL_STATE(5272)] = 182419, + [SMALL_STATE(5273)] = 182437, + [SMALL_STATE(5274)] = 182453, + [SMALL_STATE(5275)] = 182469, + [SMALL_STATE(5276)] = 182489, + [SMALL_STATE(5277)] = 182505, + [SMALL_STATE(5278)] = 182525, + [SMALL_STATE(5279)] = 182545, + [SMALL_STATE(5280)] = 182565, + [SMALL_STATE(5281)] = 182585, + [SMALL_STATE(5282)] = 182601, + [SMALL_STATE(5283)] = 182621, + [SMALL_STATE(5284)] = 182641, + [SMALL_STATE(5285)] = 182657, + [SMALL_STATE(5286)] = 182677, + [SMALL_STATE(5287)] = 182689, + [SMALL_STATE(5288)] = 182709, + [SMALL_STATE(5289)] = 182729, + [SMALL_STATE(5290)] = 182741, + [SMALL_STATE(5291)] = 182753, + [SMALL_STATE(5292)] = 182773, + [SMALL_STATE(5293)] = 182785, + [SMALL_STATE(5294)] = 182805, + [SMALL_STATE(5295)] = 182821, + [SMALL_STATE(5296)] = 182837, + [SMALL_STATE(5297)] = 182849, + [SMALL_STATE(5298)] = 182867, + [SMALL_STATE(5299)] = 182883, + [SMALL_STATE(5300)] = 182899, + [SMALL_STATE(5301)] = 182915, + [SMALL_STATE(5302)] = 182933, + [SMALL_STATE(5303)] = 182953, + [SMALL_STATE(5304)] = 182973, + [SMALL_STATE(5305)] = 182989, + [SMALL_STATE(5306)] = 183005, + [SMALL_STATE(5307)] = 183021, + [SMALL_STATE(5308)] = 183037, + [SMALL_STATE(5309)] = 183053, + [SMALL_STATE(5310)] = 183073, + [SMALL_STATE(5311)] = 183093, + [SMALL_STATE(5312)] = 183113, + [SMALL_STATE(5313)] = 183133, + [SMALL_STATE(5314)] = 183151, + [SMALL_STATE(5315)] = 183167, + [SMALL_STATE(5316)] = 183187, + [SMALL_STATE(5317)] = 183203, + [SMALL_STATE(5318)] = 183223, + [SMALL_STATE(5319)] = 183239, + [SMALL_STATE(5320)] = 183255, + [SMALL_STATE(5321)] = 183271, + [SMALL_STATE(5322)] = 183291, + [SMALL_STATE(5323)] = 183311, + [SMALL_STATE(5324)] = 183331, + [SMALL_STATE(5325)] = 183351, + [SMALL_STATE(5326)] = 183367, + [SMALL_STATE(5327)] = 183387, + [SMALL_STATE(5328)] = 183407, + [SMALL_STATE(5329)] = 183423, + [SMALL_STATE(5330)] = 183441, + [SMALL_STATE(5331)] = 183457, + [SMALL_STATE(5332)] = 183477, + [SMALL_STATE(5333)] = 183497, + [SMALL_STATE(5334)] = 183509, + [SMALL_STATE(5335)] = 183523, + [SMALL_STATE(5336)] = 183537, + [SMALL_STATE(5337)] = 183553, + [SMALL_STATE(5338)] = 183573, + [SMALL_STATE(5339)] = 183593, + [SMALL_STATE(5340)] = 183613, + [SMALL_STATE(5341)] = 183630, + [SMALL_STATE(5342)] = 183647, + [SMALL_STATE(5343)] = 183664, + [SMALL_STATE(5344)] = 183681, + [SMALL_STATE(5345)] = 183696, + [SMALL_STATE(5346)] = 183715, + [SMALL_STATE(5347)] = 183734, + [SMALL_STATE(5348)] = 183751, + [SMALL_STATE(5349)] = 183768, + [SMALL_STATE(5350)] = 183785, + [SMALL_STATE(5351)] = 183800, + [SMALL_STATE(5352)] = 183817, + [SMALL_STATE(5353)] = 183828, + [SMALL_STATE(5354)] = 183845, + [SMALL_STATE(5355)] = 183862, + [SMALL_STATE(5356)] = 183879, + [SMALL_STATE(5357)] = 183896, + [SMALL_STATE(5358)] = 183913, + [SMALL_STATE(5359)] = 183930, + [SMALL_STATE(5360)] = 183947, + [SMALL_STATE(5361)] = 183964, + [SMALL_STATE(5362)] = 183981, + [SMALL_STATE(5363)] = 183998, + [SMALL_STATE(5364)] = 184015, + [SMALL_STATE(5365)] = 184030, + [SMALL_STATE(5366)] = 184045, + [SMALL_STATE(5367)] = 184062, + [SMALL_STATE(5368)] = 184077, + [SMALL_STATE(5369)] = 184094, + [SMALL_STATE(5370)] = 184111, + [SMALL_STATE(5371)] = 184128, + [SMALL_STATE(5372)] = 184145, + [SMALL_STATE(5373)] = 184162, + [SMALL_STATE(5374)] = 184179, + [SMALL_STATE(5375)] = 184194, + [SMALL_STATE(5376)] = 184211, + [SMALL_STATE(5377)] = 184228, + [SMALL_STATE(5378)] = 184241, + [SMALL_STATE(5379)] = 184258, + [SMALL_STATE(5380)] = 184275, + [SMALL_STATE(5381)] = 184290, + [SMALL_STATE(5382)] = 184307, + [SMALL_STATE(5383)] = 184324, + [SMALL_STATE(5384)] = 184341, + [SMALL_STATE(5385)] = 184358, + [SMALL_STATE(5386)] = 184373, + [SMALL_STATE(5387)] = 184390, + [SMALL_STATE(5388)] = 184405, + [SMALL_STATE(5389)] = 184420, + [SMALL_STATE(5390)] = 184437, + [SMALL_STATE(5391)] = 184454, + [SMALL_STATE(5392)] = 184471, + [SMALL_STATE(5393)] = 184486, + [SMALL_STATE(5394)] = 184503, + [SMALL_STATE(5395)] = 184518, + [SMALL_STATE(5396)] = 184535, + [SMALL_STATE(5397)] = 184550, + [SMALL_STATE(5398)] = 184567, + [SMALL_STATE(5399)] = 184584, + [SMALL_STATE(5400)] = 184601, + [SMALL_STATE(5401)] = 184618, + [SMALL_STATE(5402)] = 184631, + [SMALL_STATE(5403)] = 184648, + [SMALL_STATE(5404)] = 184665, + [SMALL_STATE(5405)] = 184682, + [SMALL_STATE(5406)] = 184695, + [SMALL_STATE(5407)] = 184710, + [SMALL_STATE(5408)] = 184725, + [SMALL_STATE(5409)] = 184742, + [SMALL_STATE(5410)] = 184759, + [SMALL_STATE(5411)] = 184776, + [SMALL_STATE(5412)] = 184793, + [SMALL_STATE(5413)] = 184810, + [SMALL_STATE(5414)] = 184827, + [SMALL_STATE(5415)] = 184842, + [SMALL_STATE(5416)] = 184859, + [SMALL_STATE(5417)] = 184876, + [SMALL_STATE(5418)] = 184893, + [SMALL_STATE(5419)] = 184910, + [SMALL_STATE(5420)] = 184927, + [SMALL_STATE(5421)] = 184944, + [SMALL_STATE(5422)] = 184957, + [SMALL_STATE(5423)] = 184974, + [SMALL_STATE(5424)] = 184991, + [SMALL_STATE(5425)] = 185008, + [SMALL_STATE(5426)] = 185025, + [SMALL_STATE(5427)] = 185042, + [SMALL_STATE(5428)] = 185059, + [SMALL_STATE(5429)] = 185076, + [SMALL_STATE(5430)] = 185093, + [SMALL_STATE(5431)] = 185110, + [SMALL_STATE(5432)] = 185127, + [SMALL_STATE(5433)] = 185138, + [SMALL_STATE(5434)] = 185155, + [SMALL_STATE(5435)] = 185170, + [SMALL_STATE(5436)] = 185185, + [SMALL_STATE(5437)] = 185200, + [SMALL_STATE(5438)] = 185215, + [SMALL_STATE(5439)] = 185232, + [SMALL_STATE(5440)] = 185247, + [SMALL_STATE(5441)] = 185264, + [SMALL_STATE(5442)] = 185281, + [SMALL_STATE(5443)] = 185296, + [SMALL_STATE(5444)] = 185311, + [SMALL_STATE(5445)] = 185330, + [SMALL_STATE(5446)] = 185347, + [SMALL_STATE(5447)] = 185364, + [SMALL_STATE(5448)] = 185381, + [SMALL_STATE(5449)] = 185400, + [SMALL_STATE(5450)] = 185417, + [SMALL_STATE(5451)] = 185434, + [SMALL_STATE(5452)] = 185451, + [SMALL_STATE(5453)] = 185468, + [SMALL_STATE(5454)] = 185479, + [SMALL_STATE(5455)] = 185496, + [SMALL_STATE(5456)] = 185511, + [SMALL_STATE(5457)] = 185528, + [SMALL_STATE(5458)] = 185545, + [SMALL_STATE(5459)] = 185562, + [SMALL_STATE(5460)] = 185577, + [SMALL_STATE(5461)] = 185594, + [SMALL_STATE(5462)] = 185611, + [SMALL_STATE(5463)] = 185628, + [SMALL_STATE(5464)] = 185647, + [SMALL_STATE(5465)] = 185666, + [SMALL_STATE(5466)] = 185681, + [SMALL_STATE(5467)] = 185696, + [SMALL_STATE(5468)] = 185713, + [SMALL_STATE(5469)] = 185730, + [SMALL_STATE(5470)] = 185741, + [SMALL_STATE(5471)] = 185758, + [SMALL_STATE(5472)] = 185773, + [SMALL_STATE(5473)] = 185790, + [SMALL_STATE(5474)] = 185807, + [SMALL_STATE(5475)] = 185824, + [SMALL_STATE(5476)] = 185841, + [SMALL_STATE(5477)] = 185858, + [SMALL_STATE(5478)] = 185875, + [SMALL_STATE(5479)] = 185892, + [SMALL_STATE(5480)] = 185909, + [SMALL_STATE(5481)] = 185926, + [SMALL_STATE(5482)] = 185943, + [SMALL_STATE(5483)] = 185958, + [SMALL_STATE(5484)] = 185973, + [SMALL_STATE(5485)] = 185983, + [SMALL_STATE(5486)] = 185997, + [SMALL_STATE(5487)] = 186011, + [SMALL_STATE(5488)] = 186025, + [SMALL_STATE(5489)] = 186039, + [SMALL_STATE(5490)] = 186053, + [SMALL_STATE(5491)] = 186063, + [SMALL_STATE(5492)] = 186077, + [SMALL_STATE(5493)] = 186087, + [SMALL_STATE(5494)] = 186101, + [SMALL_STATE(5495)] = 186115, + [SMALL_STATE(5496)] = 186129, + [SMALL_STATE(5497)] = 186143, + [SMALL_STATE(5498)] = 186153, + [SMALL_STATE(5499)] = 186163, + [SMALL_STATE(5500)] = 186173, + [SMALL_STATE(5501)] = 186183, + [SMALL_STATE(5502)] = 186193, + [SMALL_STATE(5503)] = 186207, + [SMALL_STATE(5504)] = 186217, + [SMALL_STATE(5505)] = 186227, + [SMALL_STATE(5506)] = 186237, + [SMALL_STATE(5507)] = 186247, + [SMALL_STATE(5508)] = 186261, + [SMALL_STATE(5509)] = 186275, + [SMALL_STATE(5510)] = 186285, + [SMALL_STATE(5511)] = 186295, + [SMALL_STATE(5512)] = 186305, + [SMALL_STATE(5513)] = 186315, + [SMALL_STATE(5514)] = 186325, + [SMALL_STATE(5515)] = 186335, + [SMALL_STATE(5516)] = 186345, + [SMALL_STATE(5517)] = 186355, + [SMALL_STATE(5518)] = 186365, + [SMALL_STATE(5519)] = 186375, + [SMALL_STATE(5520)] = 186385, + [SMALL_STATE(5521)] = 186395, + [SMALL_STATE(5522)] = 186405, + [SMALL_STATE(5523)] = 186415, + [SMALL_STATE(5524)] = 186425, + [SMALL_STATE(5525)] = 186435, + [SMALL_STATE(5526)] = 186445, + [SMALL_STATE(5527)] = 186455, + [SMALL_STATE(5528)] = 186465, + [SMALL_STATE(5529)] = 186479, + [SMALL_STATE(5530)] = 186489, + [SMALL_STATE(5531)] = 186503, + [SMALL_STATE(5532)] = 186517, + [SMALL_STATE(5533)] = 186531, + [SMALL_STATE(5534)] = 186545, + [SMALL_STATE(5535)] = 186555, + [SMALL_STATE(5536)] = 186567, + [SMALL_STATE(5537)] = 186581, + [SMALL_STATE(5538)] = 186595, + [SMALL_STATE(5539)] = 186609, + [SMALL_STATE(5540)] = 186619, + [SMALL_STATE(5541)] = 186629, + [SMALL_STATE(5542)] = 186639, + [SMALL_STATE(5543)] = 186649, + [SMALL_STATE(5544)] = 186659, + [SMALL_STATE(5545)] = 186669, + [SMALL_STATE(5546)] = 186679, + [SMALL_STATE(5547)] = 186689, + [SMALL_STATE(5548)] = 186699, + [SMALL_STATE(5549)] = 186709, + [SMALL_STATE(5550)] = 186719, + [SMALL_STATE(5551)] = 186729, + [SMALL_STATE(5552)] = 186739, + [SMALL_STATE(5553)] = 186753, + [SMALL_STATE(5554)] = 186763, + [SMALL_STATE(5555)] = 186773, + [SMALL_STATE(5556)] = 186785, + [SMALL_STATE(5557)] = 186797, + [SMALL_STATE(5558)] = 186807, + [SMALL_STATE(5559)] = 186823, + [SMALL_STATE(5560)] = 186833, + [SMALL_STATE(5561)] = 186843, + [SMALL_STATE(5562)] = 186853, + [SMALL_STATE(5563)] = 186867, + [SMALL_STATE(5564)] = 186877, + [SMALL_STATE(5565)] = 186887, + [SMALL_STATE(5566)] = 186897, + [SMALL_STATE(5567)] = 186911, + [SMALL_STATE(5568)] = 186925, + [SMALL_STATE(5569)] = 186939, + [SMALL_STATE(5570)] = 186953, + [SMALL_STATE(5571)] = 186963, + [SMALL_STATE(5572)] = 186973, + [SMALL_STATE(5573)] = 186983, + [SMALL_STATE(5574)] = 186993, + [SMALL_STATE(5575)] = 187003, + [SMALL_STATE(5576)] = 187013, + [SMALL_STATE(5577)] = 187023, + [SMALL_STATE(5578)] = 187033, + [SMALL_STATE(5579)] = 187043, + [SMALL_STATE(5580)] = 187053, + [SMALL_STATE(5581)] = 187063, + [SMALL_STATE(5582)] = 187073, + [SMALL_STATE(5583)] = 187083, + [SMALL_STATE(5584)] = 187093, + [SMALL_STATE(5585)] = 187103, + [SMALL_STATE(5586)] = 187113, + [SMALL_STATE(5587)] = 187123, + [SMALL_STATE(5588)] = 187133, + [SMALL_STATE(5589)] = 187143, + [SMALL_STATE(5590)] = 187153, + [SMALL_STATE(5591)] = 187167, + [SMALL_STATE(5592)] = 187177, + [SMALL_STATE(5593)] = 187187, + [SMALL_STATE(5594)] = 187197, + [SMALL_STATE(5595)] = 187207, + [SMALL_STATE(5596)] = 187217, + [SMALL_STATE(5597)] = 187227, + [SMALL_STATE(5598)] = 187237, + [SMALL_STATE(5599)] = 187247, + [SMALL_STATE(5600)] = 187261, + [SMALL_STATE(5601)] = 187271, + [SMALL_STATE(5602)] = 187281, + [SMALL_STATE(5603)] = 187291, + [SMALL_STATE(5604)] = 187301, + [SMALL_STATE(5605)] = 187311, + [SMALL_STATE(5606)] = 187321, + [SMALL_STATE(5607)] = 187331, + [SMALL_STATE(5608)] = 187341, + [SMALL_STATE(5609)] = 187351, + [SMALL_STATE(5610)] = 187361, + [SMALL_STATE(5611)] = 187371, + [SMALL_STATE(5612)] = 187381, + [SMALL_STATE(5613)] = 187391, + [SMALL_STATE(5614)] = 187401, + [SMALL_STATE(5615)] = 187411, + [SMALL_STATE(5616)] = 187421, + [SMALL_STATE(5617)] = 187431, + [SMALL_STATE(5618)] = 187441, + [SMALL_STATE(5619)] = 187451, + [SMALL_STATE(5620)] = 187461, + [SMALL_STATE(5621)] = 187471, + [SMALL_STATE(5622)] = 187481, + [SMALL_STATE(5623)] = 187491, + [SMALL_STATE(5624)] = 187501, + [SMALL_STATE(5625)] = 187511, + [SMALL_STATE(5626)] = 187521, + [SMALL_STATE(5627)] = 187531, + [SMALL_STATE(5628)] = 187541, + [SMALL_STATE(5629)] = 187551, + [SMALL_STATE(5630)] = 187561, + [SMALL_STATE(5631)] = 187571, + [SMALL_STATE(5632)] = 187581, + [SMALL_STATE(5633)] = 187591, + [SMALL_STATE(5634)] = 187601, + [SMALL_STATE(5635)] = 187611, + [SMALL_STATE(5636)] = 187621, + [SMALL_STATE(5637)] = 187631, + [SMALL_STATE(5638)] = 187641, + [SMALL_STATE(5639)] = 187651, + [SMALL_STATE(5640)] = 187665, + [SMALL_STATE(5641)] = 187675, + [SMALL_STATE(5642)] = 187685, + [SMALL_STATE(5643)] = 187695, + [SMALL_STATE(5644)] = 187705, + [SMALL_STATE(5645)] = 187715, + [SMALL_STATE(5646)] = 187725, + [SMALL_STATE(5647)] = 187739, + [SMALL_STATE(5648)] = 187753, + [SMALL_STATE(5649)] = 187767, + [SMALL_STATE(5650)] = 187781, + [SMALL_STATE(5651)] = 187795, + [SMALL_STATE(5652)] = 187805, + [SMALL_STATE(5653)] = 187817, + [SMALL_STATE(5654)] = 187827, + [SMALL_STATE(5655)] = 187837, + [SMALL_STATE(5656)] = 187847, + [SMALL_STATE(5657)] = 187857, + [SMALL_STATE(5658)] = 187867, + [SMALL_STATE(5659)] = 187877, + [SMALL_STATE(5660)] = 187887, + [SMALL_STATE(5661)] = 187897, + [SMALL_STATE(5662)] = 187907, + [SMALL_STATE(5663)] = 187917, + [SMALL_STATE(5664)] = 187927, + [SMALL_STATE(5665)] = 187937, + [SMALL_STATE(5666)] = 187947, + [SMALL_STATE(5667)] = 187957, + [SMALL_STATE(5668)] = 187967, + [SMALL_STATE(5669)] = 187977, + [SMALL_STATE(5670)] = 187987, + [SMALL_STATE(5671)] = 187997, + [SMALL_STATE(5672)] = 188007, + [SMALL_STATE(5673)] = 188017, + [SMALL_STATE(5674)] = 188027, + [SMALL_STATE(5675)] = 188037, + [SMALL_STATE(5676)] = 188047, + [SMALL_STATE(5677)] = 188057, + [SMALL_STATE(5678)] = 188067, + [SMALL_STATE(5679)] = 188077, + [SMALL_STATE(5680)] = 188087, + [SMALL_STATE(5681)] = 188097, + [SMALL_STATE(5682)] = 188107, + [SMALL_STATE(5683)] = 188117, + [SMALL_STATE(5684)] = 188127, + [SMALL_STATE(5685)] = 188137, + [SMALL_STATE(5686)] = 188147, + [SMALL_STATE(5687)] = 188157, + [SMALL_STATE(5688)] = 188167, + [SMALL_STATE(5689)] = 188177, + [SMALL_STATE(5690)] = 188187, + [SMALL_STATE(5691)] = 188197, + [SMALL_STATE(5692)] = 188207, + [SMALL_STATE(5693)] = 188217, + [SMALL_STATE(5694)] = 188227, + [SMALL_STATE(5695)] = 188237, + [SMALL_STATE(5696)] = 188247, + [SMALL_STATE(5697)] = 188257, + [SMALL_STATE(5698)] = 188267, + [SMALL_STATE(5699)] = 188277, + [SMALL_STATE(5700)] = 188287, + [SMALL_STATE(5701)] = 188297, + [SMALL_STATE(5702)] = 188307, + [SMALL_STATE(5703)] = 188321, + [SMALL_STATE(5704)] = 188335, + [SMALL_STATE(5705)] = 188349, + [SMALL_STATE(5706)] = 188363, + [SMALL_STATE(5707)] = 188373, + [SMALL_STATE(5708)] = 188383, + [SMALL_STATE(5709)] = 188393, + [SMALL_STATE(5710)] = 188403, + [SMALL_STATE(5711)] = 188417, + [SMALL_STATE(5712)] = 188427, + [SMALL_STATE(5713)] = 188437, + [SMALL_STATE(5714)] = 188447, + [SMALL_STATE(5715)] = 188457, + [SMALL_STATE(5716)] = 188467, + [SMALL_STATE(5717)] = 188481, + [SMALL_STATE(5718)] = 188491, + [SMALL_STATE(5719)] = 188501, + [SMALL_STATE(5720)] = 188511, + [SMALL_STATE(5721)] = 188521, + [SMALL_STATE(5722)] = 188531, + [SMALL_STATE(5723)] = 188541, + [SMALL_STATE(5724)] = 188551, + [SMALL_STATE(5725)] = 188561, + [SMALL_STATE(5726)] = 188571, + [SMALL_STATE(5727)] = 188581, + [SMALL_STATE(5728)] = 188591, + [SMALL_STATE(5729)] = 188601, + [SMALL_STATE(5730)] = 188615, + [SMALL_STATE(5731)] = 188625, + [SMALL_STATE(5732)] = 188635, + [SMALL_STATE(5733)] = 188645, + [SMALL_STATE(5734)] = 188655, + [SMALL_STATE(5735)] = 188665, + [SMALL_STATE(5736)] = 188675, + [SMALL_STATE(5737)] = 188685, + [SMALL_STATE(5738)] = 188695, + [SMALL_STATE(5739)] = 188705, + [SMALL_STATE(5740)] = 188715, + [SMALL_STATE(5741)] = 188725, + [SMALL_STATE(5742)] = 188735, + [SMALL_STATE(5743)] = 188745, + [SMALL_STATE(5744)] = 188755, + [SMALL_STATE(5745)] = 188765, + [SMALL_STATE(5746)] = 188775, + [SMALL_STATE(5747)] = 188785, + [SMALL_STATE(5748)] = 188795, + [SMALL_STATE(5749)] = 188805, + [SMALL_STATE(5750)] = 188815, + [SMALL_STATE(5751)] = 188825, + [SMALL_STATE(5752)] = 188835, + [SMALL_STATE(5753)] = 188845, + [SMALL_STATE(5754)] = 188855, + [SMALL_STATE(5755)] = 188865, + [SMALL_STATE(5756)] = 188875, + [SMALL_STATE(5757)] = 188885, + [SMALL_STATE(5758)] = 188895, + [SMALL_STATE(5759)] = 188905, + [SMALL_STATE(5760)] = 188915, + [SMALL_STATE(5761)] = 188925, + [SMALL_STATE(5762)] = 188935, + [SMALL_STATE(5763)] = 188945, + [SMALL_STATE(5764)] = 188955, + [SMALL_STATE(5765)] = 188965, + [SMALL_STATE(5766)] = 188975, + [SMALL_STATE(5767)] = 188985, + [SMALL_STATE(5768)] = 188995, + [SMALL_STATE(5769)] = 189005, + [SMALL_STATE(5770)] = 189015, + [SMALL_STATE(5771)] = 189025, + [SMALL_STATE(5772)] = 189035, + [SMALL_STATE(5773)] = 189045, + [SMALL_STATE(5774)] = 189055, + [SMALL_STATE(5775)] = 189065, + [SMALL_STATE(5776)] = 189079, + [SMALL_STATE(5777)] = 189089, + [SMALL_STATE(5778)] = 189099, + [SMALL_STATE(5779)] = 189109, + [SMALL_STATE(5780)] = 189119, + [SMALL_STATE(5781)] = 189133, + [SMALL_STATE(5782)] = 189143, + [SMALL_STATE(5783)] = 189153, + [SMALL_STATE(5784)] = 189167, + [SMALL_STATE(5785)] = 189177, + [SMALL_STATE(5786)] = 189187, + [SMALL_STATE(5787)] = 189197, + [SMALL_STATE(5788)] = 189207, + [SMALL_STATE(5789)] = 189217, + [SMALL_STATE(5790)] = 189227, + [SMALL_STATE(5791)] = 189237, + [SMALL_STATE(5792)] = 189251, + [SMALL_STATE(5793)] = 189261, + [SMALL_STATE(5794)] = 189271, + [SMALL_STATE(5795)] = 189281, + [SMALL_STATE(5796)] = 189291, + [SMALL_STATE(5797)] = 189301, + [SMALL_STATE(5798)] = 189311, + [SMALL_STATE(5799)] = 189321, + [SMALL_STATE(5800)] = 189331, + [SMALL_STATE(5801)] = 189341, + [SMALL_STATE(5802)] = 189351, + [SMALL_STATE(5803)] = 189361, + [SMALL_STATE(5804)] = 189371, + [SMALL_STATE(5805)] = 189381, + [SMALL_STATE(5806)] = 189391, + [SMALL_STATE(5807)] = 189401, + [SMALL_STATE(5808)] = 189411, + [SMALL_STATE(5809)] = 189423, + [SMALL_STATE(5810)] = 189435, + [SMALL_STATE(5811)] = 189445, + [SMALL_STATE(5812)] = 189455, + [SMALL_STATE(5813)] = 189465, + [SMALL_STATE(5814)] = 189479, + [SMALL_STATE(5815)] = 189489, + [SMALL_STATE(5816)] = 189499, + [SMALL_STATE(5817)] = 189509, + [SMALL_STATE(5818)] = 189519, + [SMALL_STATE(5819)] = 189529, + [SMALL_STATE(5820)] = 189543, + [SMALL_STATE(5821)] = 189557, + [SMALL_STATE(5822)] = 189567, + [SMALL_STATE(5823)] = 189577, + [SMALL_STATE(5824)] = 189587, + [SMALL_STATE(5825)] = 189601, + [SMALL_STATE(5826)] = 189615, + [SMALL_STATE(5827)] = 189629, + [SMALL_STATE(5828)] = 189639, + [SMALL_STATE(5829)] = 189653, + [SMALL_STATE(5830)] = 189663, + [SMALL_STATE(5831)] = 189677, + [SMALL_STATE(5832)] = 189687, + [SMALL_STATE(5833)] = 189697, + [SMALL_STATE(5834)] = 189707, + [SMALL_STATE(5835)] = 189717, + [SMALL_STATE(5836)] = 189731, + [SMALL_STATE(5837)] = 189741, + [SMALL_STATE(5838)] = 189751, + [SMALL_STATE(5839)] = 189765, + [SMALL_STATE(5840)] = 189775, + [SMALL_STATE(5841)] = 189789, + [SMALL_STATE(5842)] = 189803, + [SMALL_STATE(5843)] = 189817, + [SMALL_STATE(5844)] = 189831, + [SMALL_STATE(5845)] = 189845, + [SMALL_STATE(5846)] = 189859, + [SMALL_STATE(5847)] = 189873, + [SMALL_STATE(5848)] = 189887, + [SMALL_STATE(5849)] = 189901, + [SMALL_STATE(5850)] = 189915, + [SMALL_STATE(5851)] = 189929, + [SMALL_STATE(5852)] = 189943, + [SMALL_STATE(5853)] = 189957, + [SMALL_STATE(5854)] = 189967, + [SMALL_STATE(5855)] = 189981, + [SMALL_STATE(5856)] = 189993, + [SMALL_STATE(5857)] = 190007, + [SMALL_STATE(5858)] = 190017, + [SMALL_STATE(5859)] = 190031, + [SMALL_STATE(5860)] = 190045, + [SMALL_STATE(5861)] = 190059, + [SMALL_STATE(5862)] = 190075, + [SMALL_STATE(5863)] = 190089, + [SMALL_STATE(5864)] = 190103, + [SMALL_STATE(5865)] = 190117, + [SMALL_STATE(5866)] = 190131, + [SMALL_STATE(5867)] = 190145, + [SMALL_STATE(5868)] = 190159, + [SMALL_STATE(5869)] = 190173, + [SMALL_STATE(5870)] = 190189, + [SMALL_STATE(5871)] = 190203, + [SMALL_STATE(5872)] = 190217, + [SMALL_STATE(5873)] = 190231, + [SMALL_STATE(5874)] = 190245, + [SMALL_STATE(5875)] = 190257, + [SMALL_STATE(5876)] = 190271, + [SMALL_STATE(5877)] = 190285, + [SMALL_STATE(5878)] = 190299, + [SMALL_STATE(5879)] = 190313, + [SMALL_STATE(5880)] = 190327, + [SMALL_STATE(5881)] = 190341, + [SMALL_STATE(5882)] = 190355, + [SMALL_STATE(5883)] = 190369, + [SMALL_STATE(5884)] = 190383, + [SMALL_STATE(5885)] = 190397, + [SMALL_STATE(5886)] = 190411, + [SMALL_STATE(5887)] = 190425, + [SMALL_STATE(5888)] = 190435, + [SMALL_STATE(5889)] = 190445, + [SMALL_STATE(5890)] = 190461, + [SMALL_STATE(5891)] = 190473, + [SMALL_STATE(5892)] = 190485, + [SMALL_STATE(5893)] = 190497, + [SMALL_STATE(5894)] = 190509, + [SMALL_STATE(5895)] = 190519, + [SMALL_STATE(5896)] = 190529, + [SMALL_STATE(5897)] = 190539, + [SMALL_STATE(5898)] = 190553, + [SMALL_STATE(5899)] = 190567, + [SMALL_STATE(5900)] = 190581, + [SMALL_STATE(5901)] = 190595, + [SMALL_STATE(5902)] = 190605, + [SMALL_STATE(5903)] = 190615, + [SMALL_STATE(5904)] = 190629, + [SMALL_STATE(5905)] = 190639, + [SMALL_STATE(5906)] = 190649, + [SMALL_STATE(5907)] = 190659, + [SMALL_STATE(5908)] = 190671, + [SMALL_STATE(5909)] = 190683, + [SMALL_STATE(5910)] = 190697, + [SMALL_STATE(5911)] = 190711, + [SMALL_STATE(5912)] = 190725, + [SMALL_STATE(5913)] = 190739, + [SMALL_STATE(5914)] = 190749, + [SMALL_STATE(5915)] = 190763, + [SMALL_STATE(5916)] = 190777, + [SMALL_STATE(5917)] = 190789, + [SMALL_STATE(5918)] = 190801, + [SMALL_STATE(5919)] = 190813, + [SMALL_STATE(5920)] = 190825, + [SMALL_STATE(5921)] = 190837, + [SMALL_STATE(5922)] = 190847, + [SMALL_STATE(5923)] = 190857, + [SMALL_STATE(5924)] = 190867, + [SMALL_STATE(5925)] = 190881, + [SMALL_STATE(5926)] = 190895, + [SMALL_STATE(5927)] = 190905, + [SMALL_STATE(5928)] = 190915, + [SMALL_STATE(5929)] = 190925, + [SMALL_STATE(5930)] = 190935, + [SMALL_STATE(5931)] = 190945, + [SMALL_STATE(5932)] = 190955, + [SMALL_STATE(5933)] = 190969, + [SMALL_STATE(5934)] = 190983, + [SMALL_STATE(5935)] = 190993, + [SMALL_STATE(5936)] = 191005, + [SMALL_STATE(5937)] = 191015, + [SMALL_STATE(5938)] = 191025, + [SMALL_STATE(5939)] = 191035, + [SMALL_STATE(5940)] = 191049, + [SMALL_STATE(5941)] = 191059, + [SMALL_STATE(5942)] = 191069, + [SMALL_STATE(5943)] = 191079, + [SMALL_STATE(5944)] = 191093, + [SMALL_STATE(5945)] = 191107, + [SMALL_STATE(5946)] = 191121, + [SMALL_STATE(5947)] = 191131, + [SMALL_STATE(5948)] = 191145, + [SMALL_STATE(5949)] = 191159, + [SMALL_STATE(5950)] = 191173, + [SMALL_STATE(5951)] = 191183, + [SMALL_STATE(5952)] = 191193, + [SMALL_STATE(5953)] = 191203, + [SMALL_STATE(5954)] = 191213, + [SMALL_STATE(5955)] = 191223, + [SMALL_STATE(5956)] = 191233, + [SMALL_STATE(5957)] = 191247, + [SMALL_STATE(5958)] = 191257, + [SMALL_STATE(5959)] = 191267, + [SMALL_STATE(5960)] = 191281, + [SMALL_STATE(5961)] = 191291, + [SMALL_STATE(5962)] = 191305, + [SMALL_STATE(5963)] = 191315, + [SMALL_STATE(5964)] = 191325, + [SMALL_STATE(5965)] = 191339, + [SMALL_STATE(5966)] = 191349, + [SMALL_STATE(5967)] = 191359, + [SMALL_STATE(5968)] = 191369, + [SMALL_STATE(5969)] = 191379, + [SMALL_STATE(5970)] = 191389, + [SMALL_STATE(5971)] = 191403, + [SMALL_STATE(5972)] = 191417, + [SMALL_STATE(5973)] = 191429, + [SMALL_STATE(5974)] = 191443, + [SMALL_STATE(5975)] = 191453, + [SMALL_STATE(5976)] = 191467, + [SMALL_STATE(5977)] = 191481, + [SMALL_STATE(5978)] = 191495, + [SMALL_STATE(5979)] = 191505, + [SMALL_STATE(5980)] = 191519, + [SMALL_STATE(5981)] = 191533, + [SMALL_STATE(5982)] = 191543, + [SMALL_STATE(5983)] = 191553, + [SMALL_STATE(5984)] = 191563, + [SMALL_STATE(5985)] = 191573, + [SMALL_STATE(5986)] = 191583, + [SMALL_STATE(5987)] = 191593, + [SMALL_STATE(5988)] = 191603, + [SMALL_STATE(5989)] = 191617, + [SMALL_STATE(5990)] = 191631, + [SMALL_STATE(5991)] = 191641, + [SMALL_STATE(5992)] = 191651, + [SMALL_STATE(5993)] = 191665, + [SMALL_STATE(5994)] = 191675, + [SMALL_STATE(5995)] = 191689, + [SMALL_STATE(5996)] = 191703, + [SMALL_STATE(5997)] = 191713, + [SMALL_STATE(5998)] = 191725, + [SMALL_STATE(5999)] = 191735, + [SMALL_STATE(6000)] = 191745, + [SMALL_STATE(6001)] = 191755, + [SMALL_STATE(6002)] = 191767, + [SMALL_STATE(6003)] = 191781, + [SMALL_STATE(6004)] = 191791, + [SMALL_STATE(6005)] = 191805, + [SMALL_STATE(6006)] = 191815, + [SMALL_STATE(6007)] = 191829, + [SMALL_STATE(6008)] = 191843, + [SMALL_STATE(6009)] = 191857, + [SMALL_STATE(6010)] = 191871, + [SMALL_STATE(6011)] = 191881, + [SMALL_STATE(6012)] = 191891, + [SMALL_STATE(6013)] = 191901, + [SMALL_STATE(6014)] = 191911, + [SMALL_STATE(6015)] = 191921, + [SMALL_STATE(6016)] = 191931, + [SMALL_STATE(6017)] = 191941, + [SMALL_STATE(6018)] = 191951, + [SMALL_STATE(6019)] = 191961, + [SMALL_STATE(6020)] = 191973, + [SMALL_STATE(6021)] = 191983, + [SMALL_STATE(6022)] = 191993, + [SMALL_STATE(6023)] = 192003, + [SMALL_STATE(6024)] = 192013, + [SMALL_STATE(6025)] = 192023, + [SMALL_STATE(6026)] = 192033, + [SMALL_STATE(6027)] = 192043, + [SMALL_STATE(6028)] = 192053, + [SMALL_STATE(6029)] = 192063, + [SMALL_STATE(6030)] = 192073, + [SMALL_STATE(6031)] = 192083, + [SMALL_STATE(6032)] = 192093, + [SMALL_STATE(6033)] = 192103, + [SMALL_STATE(6034)] = 192113, + [SMALL_STATE(6035)] = 192123, + [SMALL_STATE(6036)] = 192133, + [SMALL_STATE(6037)] = 192143, + [SMALL_STATE(6038)] = 192153, + [SMALL_STATE(6039)] = 192163, + [SMALL_STATE(6040)] = 192173, + [SMALL_STATE(6041)] = 192187, + [SMALL_STATE(6042)] = 192201, + [SMALL_STATE(6043)] = 192213, + [SMALL_STATE(6044)] = 192223, + [SMALL_STATE(6045)] = 192237, + [SMALL_STATE(6046)] = 192247, + [SMALL_STATE(6047)] = 192257, + [SMALL_STATE(6048)] = 192267, + [SMALL_STATE(6049)] = 192277, + [SMALL_STATE(6050)] = 192287, + [SMALL_STATE(6051)] = 192297, + [SMALL_STATE(6052)] = 192311, + [SMALL_STATE(6053)] = 192325, + [SMALL_STATE(6054)] = 192339, + [SMALL_STATE(6055)] = 192349, + [SMALL_STATE(6056)] = 192359, + [SMALL_STATE(6057)] = 192369, + [SMALL_STATE(6058)] = 192379, + [SMALL_STATE(6059)] = 192389, + [SMALL_STATE(6060)] = 192399, + [SMALL_STATE(6061)] = 192409, + [SMALL_STATE(6062)] = 192419, + [SMALL_STATE(6063)] = 192433, + [SMALL_STATE(6064)] = 192447, + [SMALL_STATE(6065)] = 192457, + [SMALL_STATE(6066)] = 192467, + [SMALL_STATE(6067)] = 192477, + [SMALL_STATE(6068)] = 192487, + [SMALL_STATE(6069)] = 192497, + [SMALL_STATE(6070)] = 192507, + [SMALL_STATE(6071)] = 192521, + [SMALL_STATE(6072)] = 192531, + [SMALL_STATE(6073)] = 192545, + [SMALL_STATE(6074)] = 192555, + [SMALL_STATE(6075)] = 192565, + [SMALL_STATE(6076)] = 192575, + [SMALL_STATE(6077)] = 192585, + [SMALL_STATE(6078)] = 192595, + [SMALL_STATE(6079)] = 192609, + [SMALL_STATE(6080)] = 192621, + [SMALL_STATE(6081)] = 192631, + [SMALL_STATE(6082)] = 192645, + [SMALL_STATE(6083)] = 192659, + [SMALL_STATE(6084)] = 192669, + [SMALL_STATE(6085)] = 192683, + [SMALL_STATE(6086)] = 192693, + [SMALL_STATE(6087)] = 192703, + [SMALL_STATE(6088)] = 192713, + [SMALL_STATE(6089)] = 192727, + [SMALL_STATE(6090)] = 192737, + [SMALL_STATE(6091)] = 192747, + [SMALL_STATE(6092)] = 192761, + [SMALL_STATE(6093)] = 192771, + [SMALL_STATE(6094)] = 192785, + [SMALL_STATE(6095)] = 192795, + [SMALL_STATE(6096)] = 192809, + [SMALL_STATE(6097)] = 192825, + [SMALL_STATE(6098)] = 192835, + [SMALL_STATE(6099)] = 192845, + [SMALL_STATE(6100)] = 192855, + [SMALL_STATE(6101)] = 192869, + [SMALL_STATE(6102)] = 192883, + [SMALL_STATE(6103)] = 192893, + [SMALL_STATE(6104)] = 192902, + [SMALL_STATE(6105)] = 192913, + [SMALL_STATE(6106)] = 192924, + [SMALL_STATE(6107)] = 192935, + [SMALL_STATE(6108)] = 192946, + [SMALL_STATE(6109)] = 192957, + [SMALL_STATE(6110)] = 192968, + [SMALL_STATE(6111)] = 192979, + [SMALL_STATE(6112)] = 192990, + [SMALL_STATE(6113)] = 193001, + [SMALL_STATE(6114)] = 193012, + [SMALL_STATE(6115)] = 193023, + [SMALL_STATE(6116)] = 193034, + [SMALL_STATE(6117)] = 193045, + [SMALL_STATE(6118)] = 193056, + [SMALL_STATE(6119)] = 193067, + [SMALL_STATE(6120)] = 193078, + [SMALL_STATE(6121)] = 193089, + [SMALL_STATE(6122)] = 193100, + [SMALL_STATE(6123)] = 193111, + [SMALL_STATE(6124)] = 193120, + [SMALL_STATE(6125)] = 193129, + [SMALL_STATE(6126)] = 193140, + [SMALL_STATE(6127)] = 193149, + [SMALL_STATE(6128)] = 193160, + [SMALL_STATE(6129)] = 193171, + [SMALL_STATE(6130)] = 193182, + [SMALL_STATE(6131)] = 193191, + [SMALL_STATE(6132)] = 193202, + [SMALL_STATE(6133)] = 193211, + [SMALL_STATE(6134)] = 193220, + [SMALL_STATE(6135)] = 193229, + [SMALL_STATE(6136)] = 193238, + [SMALL_STATE(6137)] = 193247, + [SMALL_STATE(6138)] = 193256, + [SMALL_STATE(6139)] = 193265, + [SMALL_STATE(6140)] = 193274, + [SMALL_STATE(6141)] = 193285, + [SMALL_STATE(6142)] = 193294, + [SMALL_STATE(6143)] = 193303, + [SMALL_STATE(6144)] = 193312, + [SMALL_STATE(6145)] = 193321, + [SMALL_STATE(6146)] = 193332, + [SMALL_STATE(6147)] = 193341, + [SMALL_STATE(6148)] = 193352, + [SMALL_STATE(6149)] = 193363, + [SMALL_STATE(6150)] = 193372, + [SMALL_STATE(6151)] = 193383, + [SMALL_STATE(6152)] = 193392, + [SMALL_STATE(6153)] = 193403, + [SMALL_STATE(6154)] = 193412, + [SMALL_STATE(6155)] = 193423, + [SMALL_STATE(6156)] = 193432, + [SMALL_STATE(6157)] = 193441, + [SMALL_STATE(6158)] = 193450, + [SMALL_STATE(6159)] = 193459, + [SMALL_STATE(6160)] = 193468, + [SMALL_STATE(6161)] = 193479, + [SMALL_STATE(6162)] = 193490, + [SMALL_STATE(6163)] = 193499, + [SMALL_STATE(6164)] = 193508, + [SMALL_STATE(6165)] = 193517, + [SMALL_STATE(6166)] = 193528, + [SMALL_STATE(6167)] = 193539, + [SMALL_STATE(6168)] = 193548, + [SMALL_STATE(6169)] = 193559, + [SMALL_STATE(6170)] = 193570, + [SMALL_STATE(6171)] = 193579, + [SMALL_STATE(6172)] = 193588, + [SMALL_STATE(6173)] = 193599, + [SMALL_STATE(6174)] = 193610, + [SMALL_STATE(6175)] = 193621, + [SMALL_STATE(6176)] = 193632, + [SMALL_STATE(6177)] = 193641, + [SMALL_STATE(6178)] = 193652, + [SMALL_STATE(6179)] = 193663, + [SMALL_STATE(6180)] = 193674, + [SMALL_STATE(6181)] = 193685, + [SMALL_STATE(6182)] = 193696, + [SMALL_STATE(6183)] = 193707, + [SMALL_STATE(6184)] = 193718, + [SMALL_STATE(6185)] = 193729, + [SMALL_STATE(6186)] = 193738, + [SMALL_STATE(6187)] = 193749, + [SMALL_STATE(6188)] = 193760, + [SMALL_STATE(6189)] = 193771, + [SMALL_STATE(6190)] = 193782, + [SMALL_STATE(6191)] = 193793, + [SMALL_STATE(6192)] = 193804, + [SMALL_STATE(6193)] = 193815, + [SMALL_STATE(6194)] = 193826, + [SMALL_STATE(6195)] = 193837, + [SMALL_STATE(6196)] = 193848, + [SMALL_STATE(6197)] = 193859, + [SMALL_STATE(6198)] = 193870, + [SMALL_STATE(6199)] = 193881, + [SMALL_STATE(6200)] = 193892, + [SMALL_STATE(6201)] = 193903, + [SMALL_STATE(6202)] = 193914, + [SMALL_STATE(6203)] = 193925, + [SMALL_STATE(6204)] = 193936, + [SMALL_STATE(6205)] = 193947, + [SMALL_STATE(6206)] = 193958, + [SMALL_STATE(6207)] = 193969, + [SMALL_STATE(6208)] = 193980, + [SMALL_STATE(6209)] = 193989, + [SMALL_STATE(6210)] = 193998, + [SMALL_STATE(6211)] = 194007, + [SMALL_STATE(6212)] = 194016, + [SMALL_STATE(6213)] = 194025, + [SMALL_STATE(6214)] = 194034, + [SMALL_STATE(6215)] = 194043, + [SMALL_STATE(6216)] = 194052, + [SMALL_STATE(6217)] = 194063, + [SMALL_STATE(6218)] = 194072, + [SMALL_STATE(6219)] = 194081, + [SMALL_STATE(6220)] = 194090, + [SMALL_STATE(6221)] = 194101, + [SMALL_STATE(6222)] = 194110, + [SMALL_STATE(6223)] = 194119, + [SMALL_STATE(6224)] = 194128, + [SMALL_STATE(6225)] = 194139, + [SMALL_STATE(6226)] = 194148, + [SMALL_STATE(6227)] = 194157, + [SMALL_STATE(6228)] = 194168, + [SMALL_STATE(6229)] = 194177, + [SMALL_STATE(6230)] = 194186, + [SMALL_STATE(6231)] = 194195, + [SMALL_STATE(6232)] = 194204, + [SMALL_STATE(6233)] = 194215, + [SMALL_STATE(6234)] = 194226, + [SMALL_STATE(6235)] = 194237, + [SMALL_STATE(6236)] = 194246, + [SMALL_STATE(6237)] = 194255, + [SMALL_STATE(6238)] = 194264, + [SMALL_STATE(6239)] = 194273, + [SMALL_STATE(6240)] = 194282, + [SMALL_STATE(6241)] = 194291, + [SMALL_STATE(6242)] = 194300, + [SMALL_STATE(6243)] = 194309, + [SMALL_STATE(6244)] = 194318, + [SMALL_STATE(6245)] = 194329, + [SMALL_STATE(6246)] = 194338, + [SMALL_STATE(6247)] = 194347, + [SMALL_STATE(6248)] = 194358, + [SMALL_STATE(6249)] = 194369, + [SMALL_STATE(6250)] = 194378, + [SMALL_STATE(6251)] = 194389, + [SMALL_STATE(6252)] = 194400, + [SMALL_STATE(6253)] = 194411, + [SMALL_STATE(6254)] = 194420, + [SMALL_STATE(6255)] = 194429, + [SMALL_STATE(6256)] = 194438, + [SMALL_STATE(6257)] = 194447, + [SMALL_STATE(6258)] = 194456, + [SMALL_STATE(6259)] = 194467, + [SMALL_STATE(6260)] = 194478, + [SMALL_STATE(6261)] = 194489, + [SMALL_STATE(6262)] = 194498, + [SMALL_STATE(6263)] = 194509, + [SMALL_STATE(6264)] = 194518, + [SMALL_STATE(6265)] = 194529, + [SMALL_STATE(6266)] = 194538, + [SMALL_STATE(6267)] = 194547, + [SMALL_STATE(6268)] = 194556, + [SMALL_STATE(6269)] = 194565, + [SMALL_STATE(6270)] = 194576, + [SMALL_STATE(6271)] = 194585, + [SMALL_STATE(6272)] = 194596, + [SMALL_STATE(6273)] = 194605, + [SMALL_STATE(6274)] = 194616, + [SMALL_STATE(6275)] = 194627, + [SMALL_STATE(6276)] = 194638, + [SMALL_STATE(6277)] = 194649, + [SMALL_STATE(6278)] = 194658, + [SMALL_STATE(6279)] = 194669, + [SMALL_STATE(6280)] = 194678, + [SMALL_STATE(6281)] = 194687, + [SMALL_STATE(6282)] = 194698, + [SMALL_STATE(6283)] = 194707, + [SMALL_STATE(6284)] = 194718, + [SMALL_STATE(6285)] = 194729, + [SMALL_STATE(6286)] = 194740, + [SMALL_STATE(6287)] = 194749, + [SMALL_STATE(6288)] = 194760, + [SMALL_STATE(6289)] = 194769, + [SMALL_STATE(6290)] = 194778, + [SMALL_STATE(6291)] = 194789, + [SMALL_STATE(6292)] = 194798, + [SMALL_STATE(6293)] = 194809, + [SMALL_STATE(6294)] = 194820, + [SMALL_STATE(6295)] = 194829, + [SMALL_STATE(6296)] = 194838, + [SMALL_STATE(6297)] = 194849, + [SMALL_STATE(6298)] = 194858, + [SMALL_STATE(6299)] = 194869, + [SMALL_STATE(6300)] = 194878, + [SMALL_STATE(6301)] = 194889, + [SMALL_STATE(6302)] = 194898, + [SMALL_STATE(6303)] = 194907, + [SMALL_STATE(6304)] = 194916, + [SMALL_STATE(6305)] = 194927, + [SMALL_STATE(6306)] = 194936, + [SMALL_STATE(6307)] = 194947, + [SMALL_STATE(6308)] = 194956, + [SMALL_STATE(6309)] = 194965, + [SMALL_STATE(6310)] = 194974, + [SMALL_STATE(6311)] = 194985, + [SMALL_STATE(6312)] = 194996, + [SMALL_STATE(6313)] = 195007, + [SMALL_STATE(6314)] = 195018, + [SMALL_STATE(6315)] = 195027, + [SMALL_STATE(6316)] = 195038, + [SMALL_STATE(6317)] = 195047, + [SMALL_STATE(6318)] = 195058, + [SMALL_STATE(6319)] = 195069, + [SMALL_STATE(6320)] = 195078, + [SMALL_STATE(6321)] = 195087, + [SMALL_STATE(6322)] = 195096, + [SMALL_STATE(6323)] = 195105, + [SMALL_STATE(6324)] = 195114, + [SMALL_STATE(6325)] = 195125, + [SMALL_STATE(6326)] = 195136, + [SMALL_STATE(6327)] = 195145, + [SMALL_STATE(6328)] = 195156, + [SMALL_STATE(6329)] = 195167, + [SMALL_STATE(6330)] = 195176, + [SMALL_STATE(6331)] = 195187, + [SMALL_STATE(6332)] = 195196, + [SMALL_STATE(6333)] = 195207, + [SMALL_STATE(6334)] = 195218, + [SMALL_STATE(6335)] = 195227, + [SMALL_STATE(6336)] = 195238, + [SMALL_STATE(6337)] = 195249, + [SMALL_STATE(6338)] = 195258, + [SMALL_STATE(6339)] = 195267, + [SMALL_STATE(6340)] = 195276, + [SMALL_STATE(6341)] = 195287, + [SMALL_STATE(6342)] = 195298, + [SMALL_STATE(6343)] = 195309, + [SMALL_STATE(6344)] = 195320, + [SMALL_STATE(6345)] = 195331, + [SMALL_STATE(6346)] = 195340, + [SMALL_STATE(6347)] = 195351, + [SMALL_STATE(6348)] = 195362, + [SMALL_STATE(6349)] = 195373, + [SMALL_STATE(6350)] = 195384, + [SMALL_STATE(6351)] = 195395, + [SMALL_STATE(6352)] = 195406, + [SMALL_STATE(6353)] = 195417, + [SMALL_STATE(6354)] = 195428, + [SMALL_STATE(6355)] = 195437, + [SMALL_STATE(6356)] = 195448, + [SMALL_STATE(6357)] = 195459, + [SMALL_STATE(6358)] = 195470, + [SMALL_STATE(6359)] = 195481, + [SMALL_STATE(6360)] = 195492, + [SMALL_STATE(6361)] = 195503, + [SMALL_STATE(6362)] = 195514, + [SMALL_STATE(6363)] = 195525, + [SMALL_STATE(6364)] = 195536, + [SMALL_STATE(6365)] = 195547, + [SMALL_STATE(6366)] = 195558, + [SMALL_STATE(6367)] = 195569, + [SMALL_STATE(6368)] = 195580, + [SMALL_STATE(6369)] = 195591, + [SMALL_STATE(6370)] = 195602, + [SMALL_STATE(6371)] = 195613, + [SMALL_STATE(6372)] = 195624, + [SMALL_STATE(6373)] = 195635, + [SMALL_STATE(6374)] = 195646, + [SMALL_STATE(6375)] = 195657, + [SMALL_STATE(6376)] = 195668, + [SMALL_STATE(6377)] = 195679, + [SMALL_STATE(6378)] = 195690, + [SMALL_STATE(6379)] = 195701, + [SMALL_STATE(6380)] = 195712, + [SMALL_STATE(6381)] = 195723, + [SMALL_STATE(6382)] = 195734, + [SMALL_STATE(6383)] = 195745, + [SMALL_STATE(6384)] = 195756, + [SMALL_STATE(6385)] = 195767, + [SMALL_STATE(6386)] = 195778, + [SMALL_STATE(6387)] = 195789, + [SMALL_STATE(6388)] = 195800, + [SMALL_STATE(6389)] = 195811, + [SMALL_STATE(6390)] = 195822, + [SMALL_STATE(6391)] = 195833, + [SMALL_STATE(6392)] = 195844, + [SMALL_STATE(6393)] = 195855, + [SMALL_STATE(6394)] = 195864, + [SMALL_STATE(6395)] = 195875, + [SMALL_STATE(6396)] = 195886, + [SMALL_STATE(6397)] = 195897, + [SMALL_STATE(6398)] = 195908, + [SMALL_STATE(6399)] = 195919, + [SMALL_STATE(6400)] = 195930, + [SMALL_STATE(6401)] = 195941, + [SMALL_STATE(6402)] = 195952, + [SMALL_STATE(6403)] = 195963, + [SMALL_STATE(6404)] = 195974, + [SMALL_STATE(6405)] = 195985, + [SMALL_STATE(6406)] = 195996, + [SMALL_STATE(6407)] = 196007, + [SMALL_STATE(6408)] = 196018, + [SMALL_STATE(6409)] = 196029, + [SMALL_STATE(6410)] = 196040, + [SMALL_STATE(6411)] = 196051, + [SMALL_STATE(6412)] = 196062, + [SMALL_STATE(6413)] = 196073, + [SMALL_STATE(6414)] = 196084, + [SMALL_STATE(6415)] = 196095, + [SMALL_STATE(6416)] = 196106, + [SMALL_STATE(6417)] = 196117, + [SMALL_STATE(6418)] = 196126, + [SMALL_STATE(6419)] = 196137, + [SMALL_STATE(6420)] = 196148, + [SMALL_STATE(6421)] = 196159, + [SMALL_STATE(6422)] = 196170, + [SMALL_STATE(6423)] = 196181, + [SMALL_STATE(6424)] = 196192, + [SMALL_STATE(6425)] = 196203, + [SMALL_STATE(6426)] = 196214, + [SMALL_STATE(6427)] = 196225, + [SMALL_STATE(6428)] = 196236, + [SMALL_STATE(6429)] = 196247, + [SMALL_STATE(6430)] = 196258, + [SMALL_STATE(6431)] = 196269, + [SMALL_STATE(6432)] = 196280, + [SMALL_STATE(6433)] = 196291, + [SMALL_STATE(6434)] = 196302, + [SMALL_STATE(6435)] = 196311, + [SMALL_STATE(6436)] = 196322, + [SMALL_STATE(6437)] = 196333, + [SMALL_STATE(6438)] = 196344, + [SMALL_STATE(6439)] = 196355, + [SMALL_STATE(6440)] = 196366, + [SMALL_STATE(6441)] = 196377, + [SMALL_STATE(6442)] = 196388, + [SMALL_STATE(6443)] = 196399, + [SMALL_STATE(6444)] = 196410, + [SMALL_STATE(6445)] = 196421, + [SMALL_STATE(6446)] = 196432, + [SMALL_STATE(6447)] = 196443, + [SMALL_STATE(6448)] = 196454, + [SMALL_STATE(6449)] = 196465, + [SMALL_STATE(6450)] = 196476, + [SMALL_STATE(6451)] = 196487, + [SMALL_STATE(6452)] = 196498, + [SMALL_STATE(6453)] = 196509, + [SMALL_STATE(6454)] = 196520, + [SMALL_STATE(6455)] = 196529, + [SMALL_STATE(6456)] = 196540, + [SMALL_STATE(6457)] = 196551, + [SMALL_STATE(6458)] = 196562, + [SMALL_STATE(6459)] = 196573, + [SMALL_STATE(6460)] = 196584, + [SMALL_STATE(6461)] = 196595, + [SMALL_STATE(6462)] = 196606, + [SMALL_STATE(6463)] = 196617, + [SMALL_STATE(6464)] = 196628, + [SMALL_STATE(6465)] = 196639, + [SMALL_STATE(6466)] = 196650, + [SMALL_STATE(6467)] = 196661, + [SMALL_STATE(6468)] = 196672, + [SMALL_STATE(6469)] = 196683, + [SMALL_STATE(6470)] = 196692, + [SMALL_STATE(6471)] = 196701, + [SMALL_STATE(6472)] = 196710, + [SMALL_STATE(6473)] = 196719, + [SMALL_STATE(6474)] = 196730, + [SMALL_STATE(6475)] = 196741, + [SMALL_STATE(6476)] = 196750, + [SMALL_STATE(6477)] = 196761, + [SMALL_STATE(6478)] = 196772, + [SMALL_STATE(6479)] = 196781, + [SMALL_STATE(6480)] = 196792, + [SMALL_STATE(6481)] = 196803, + [SMALL_STATE(6482)] = 196812, + [SMALL_STATE(6483)] = 196821, + [SMALL_STATE(6484)] = 196830, + [SMALL_STATE(6485)] = 196839, + [SMALL_STATE(6486)] = 196848, + [SMALL_STATE(6487)] = 196857, + [SMALL_STATE(6488)] = 196866, + [SMALL_STATE(6489)] = 196875, + [SMALL_STATE(6490)] = 196886, + [SMALL_STATE(6491)] = 196895, + [SMALL_STATE(6492)] = 196906, + [SMALL_STATE(6493)] = 196915, + [SMALL_STATE(6494)] = 196926, + [SMALL_STATE(6495)] = 196937, + [SMALL_STATE(6496)] = 196948, + [SMALL_STATE(6497)] = 196959, + [SMALL_STATE(6498)] = 196968, + [SMALL_STATE(6499)] = 196979, + [SMALL_STATE(6500)] = 196988, + [SMALL_STATE(6501)] = 196997, + [SMALL_STATE(6502)] = 197008, + [SMALL_STATE(6503)] = 197017, + [SMALL_STATE(6504)] = 197028, + [SMALL_STATE(6505)] = 197037, + [SMALL_STATE(6506)] = 197048, + [SMALL_STATE(6507)] = 197059, + [SMALL_STATE(6508)] = 197068, + [SMALL_STATE(6509)] = 197077, + [SMALL_STATE(6510)] = 197086, + [SMALL_STATE(6511)] = 197095, + [SMALL_STATE(6512)] = 197106, + [SMALL_STATE(6513)] = 197117, + [SMALL_STATE(6514)] = 197128, + [SMALL_STATE(6515)] = 197137, + [SMALL_STATE(6516)] = 197148, + [SMALL_STATE(6517)] = 197157, + [SMALL_STATE(6518)] = 197168, + [SMALL_STATE(6519)] = 197177, + [SMALL_STATE(6520)] = 197188, + [SMALL_STATE(6521)] = 197197, + [SMALL_STATE(6522)] = 197206, + [SMALL_STATE(6523)] = 197217, + [SMALL_STATE(6524)] = 197226, + [SMALL_STATE(6525)] = 197237, + [SMALL_STATE(6526)] = 197246, + [SMALL_STATE(6527)] = 197257, + [SMALL_STATE(6528)] = 197266, + [SMALL_STATE(6529)] = 197277, + [SMALL_STATE(6530)] = 197288, + [SMALL_STATE(6531)] = 197299, + [SMALL_STATE(6532)] = 197310, + [SMALL_STATE(6533)] = 197321, + [SMALL_STATE(6534)] = 197330, + [SMALL_STATE(6535)] = 197341, + [SMALL_STATE(6536)] = 197352, + [SMALL_STATE(6537)] = 197363, + [SMALL_STATE(6538)] = 197374, + [SMALL_STATE(6539)] = 197383, + [SMALL_STATE(6540)] = 197394, + [SMALL_STATE(6541)] = 197403, + [SMALL_STATE(6542)] = 197412, + [SMALL_STATE(6543)] = 197421, + [SMALL_STATE(6544)] = 197430, + [SMALL_STATE(6545)] = 197441, + [SMALL_STATE(6546)] = 197450, + [SMALL_STATE(6547)] = 197461, + [SMALL_STATE(6548)] = 197470, + [SMALL_STATE(6549)] = 197481, + [SMALL_STATE(6550)] = 197492, + [SMALL_STATE(6551)] = 197503, + [SMALL_STATE(6552)] = 197514, + [SMALL_STATE(6553)] = 197523, + [SMALL_STATE(6554)] = 197534, + [SMALL_STATE(6555)] = 197543, + [SMALL_STATE(6556)] = 197552, + [SMALL_STATE(6557)] = 197563, + [SMALL_STATE(6558)] = 197572, + [SMALL_STATE(6559)] = 197583, + [SMALL_STATE(6560)] = 197592, + [SMALL_STATE(6561)] = 197603, + [SMALL_STATE(6562)] = 197612, + [SMALL_STATE(6563)] = 197621, + [SMALL_STATE(6564)] = 197630, + [SMALL_STATE(6565)] = 197639, + [SMALL_STATE(6566)] = 197648, + [SMALL_STATE(6567)] = 197657, + [SMALL_STATE(6568)] = 197666, + [SMALL_STATE(6569)] = 197675, + [SMALL_STATE(6570)] = 197684, + [SMALL_STATE(6571)] = 197693, + [SMALL_STATE(6572)] = 197702, + [SMALL_STATE(6573)] = 197713, + [SMALL_STATE(6574)] = 197722, + [SMALL_STATE(6575)] = 197733, + [SMALL_STATE(6576)] = 197742, + [SMALL_STATE(6577)] = 197753, + [SMALL_STATE(6578)] = 197764, + [SMALL_STATE(6579)] = 197775, + [SMALL_STATE(6580)] = 197786, + [SMALL_STATE(6581)] = 197795, + [SMALL_STATE(6582)] = 197806, + [SMALL_STATE(6583)] = 197815, + [SMALL_STATE(6584)] = 197824, + [SMALL_STATE(6585)] = 197835, + [SMALL_STATE(6586)] = 197844, + [SMALL_STATE(6587)] = 197855, + [SMALL_STATE(6588)] = 197866, + [SMALL_STATE(6589)] = 197875, + [SMALL_STATE(6590)] = 197886, + [SMALL_STATE(6591)] = 197895, + [SMALL_STATE(6592)] = 197904, + [SMALL_STATE(6593)] = 197913, + [SMALL_STATE(6594)] = 197922, + [SMALL_STATE(6595)] = 197931, + [SMALL_STATE(6596)] = 197942, + [SMALL_STATE(6597)] = 197951, + [SMALL_STATE(6598)] = 197962, + [SMALL_STATE(6599)] = 197971, + [SMALL_STATE(6600)] = 197982, + [SMALL_STATE(6601)] = 197991, + [SMALL_STATE(6602)] = 198002, + [SMALL_STATE(6603)] = 198011, + [SMALL_STATE(6604)] = 198020, + [SMALL_STATE(6605)] = 198031, + [SMALL_STATE(6606)] = 198040, + [SMALL_STATE(6607)] = 198051, + [SMALL_STATE(6608)] = 198060, + [SMALL_STATE(6609)] = 198071, + [SMALL_STATE(6610)] = 198082, + [SMALL_STATE(6611)] = 198093, + [SMALL_STATE(6612)] = 198104, + [SMALL_STATE(6613)] = 198115, + [SMALL_STATE(6614)] = 198126, + [SMALL_STATE(6615)] = 198137, + [SMALL_STATE(6616)] = 198148, + [SMALL_STATE(6617)] = 198159, + [SMALL_STATE(6618)] = 198170, + [SMALL_STATE(6619)] = 198181, + [SMALL_STATE(6620)] = 198192, + [SMALL_STATE(6621)] = 198203, + [SMALL_STATE(6622)] = 198214, + [SMALL_STATE(6623)] = 198225, + [SMALL_STATE(6624)] = 198236, + [SMALL_STATE(6625)] = 198247, + [SMALL_STATE(6626)] = 198258, + [SMALL_STATE(6627)] = 198269, + [SMALL_STATE(6628)] = 198280, + [SMALL_STATE(6629)] = 198291, + [SMALL_STATE(6630)] = 198302, + [SMALL_STATE(6631)] = 198313, + [SMALL_STATE(6632)] = 198324, + [SMALL_STATE(6633)] = 198335, + [SMALL_STATE(6634)] = 198346, + [SMALL_STATE(6635)] = 198357, + [SMALL_STATE(6636)] = 198368, + [SMALL_STATE(6637)] = 198379, + [SMALL_STATE(6638)] = 198390, + [SMALL_STATE(6639)] = 198401, + [SMALL_STATE(6640)] = 198412, + [SMALL_STATE(6641)] = 198421, + [SMALL_STATE(6642)] = 198432, + [SMALL_STATE(6643)] = 198443, + [SMALL_STATE(6644)] = 198454, + [SMALL_STATE(6645)] = 198465, + [SMALL_STATE(6646)] = 198476, + [SMALL_STATE(6647)] = 198487, + [SMALL_STATE(6648)] = 198498, + [SMALL_STATE(6649)] = 198509, + [SMALL_STATE(6650)] = 198520, + [SMALL_STATE(6651)] = 198531, + [SMALL_STATE(6652)] = 198542, + [SMALL_STATE(6653)] = 198553, + [SMALL_STATE(6654)] = 198564, + [SMALL_STATE(6655)] = 198575, + [SMALL_STATE(6656)] = 198586, + [SMALL_STATE(6657)] = 198597, + [SMALL_STATE(6658)] = 198608, + [SMALL_STATE(6659)] = 198619, + [SMALL_STATE(6660)] = 198630, + [SMALL_STATE(6661)] = 198641, + [SMALL_STATE(6662)] = 198652, + [SMALL_STATE(6663)] = 198663, + [SMALL_STATE(6664)] = 198674, + [SMALL_STATE(6665)] = 198685, + [SMALL_STATE(6666)] = 198696, + [SMALL_STATE(6667)] = 198707, + [SMALL_STATE(6668)] = 198718, + [SMALL_STATE(6669)] = 198729, + [SMALL_STATE(6670)] = 198740, + [SMALL_STATE(6671)] = 198751, + [SMALL_STATE(6672)] = 198762, + [SMALL_STATE(6673)] = 198773, + [SMALL_STATE(6674)] = 198784, + [SMALL_STATE(6675)] = 198795, + [SMALL_STATE(6676)] = 198806, + [SMALL_STATE(6677)] = 198817, + [SMALL_STATE(6678)] = 198828, + [SMALL_STATE(6679)] = 198839, + [SMALL_STATE(6680)] = 198850, + [SMALL_STATE(6681)] = 198861, + [SMALL_STATE(6682)] = 198872, + [SMALL_STATE(6683)] = 198883, + [SMALL_STATE(6684)] = 198894, + [SMALL_STATE(6685)] = 198905, + [SMALL_STATE(6686)] = 198916, + [SMALL_STATE(6687)] = 198927, + [SMALL_STATE(6688)] = 198938, + [SMALL_STATE(6689)] = 198949, + [SMALL_STATE(6690)] = 198960, + [SMALL_STATE(6691)] = 198971, + [SMALL_STATE(6692)] = 198982, + [SMALL_STATE(6693)] = 198993, + [SMALL_STATE(6694)] = 199004, + [SMALL_STATE(6695)] = 199015, + [SMALL_STATE(6696)] = 199026, + [SMALL_STATE(6697)] = 199037, + [SMALL_STATE(6698)] = 199048, + [SMALL_STATE(6699)] = 199059, + [SMALL_STATE(6700)] = 199070, + [SMALL_STATE(6701)] = 199081, + [SMALL_STATE(6702)] = 199092, + [SMALL_STATE(6703)] = 199101, + [SMALL_STATE(6704)] = 199110, + [SMALL_STATE(6705)] = 199119, + [SMALL_STATE(6706)] = 199128, + [SMALL_STATE(6707)] = 199139, + [SMALL_STATE(6708)] = 199148, + [SMALL_STATE(6709)] = 199159, + [SMALL_STATE(6710)] = 199168, + [SMALL_STATE(6711)] = 199179, + [SMALL_STATE(6712)] = 199190, + [SMALL_STATE(6713)] = 199201, + [SMALL_STATE(6714)] = 199212, + [SMALL_STATE(6715)] = 199221, + [SMALL_STATE(6716)] = 199232, + [SMALL_STATE(6717)] = 199241, + [SMALL_STATE(6718)] = 199250, + [SMALL_STATE(6719)] = 199261, + [SMALL_STATE(6720)] = 199270, + [SMALL_STATE(6721)] = 199281, + [SMALL_STATE(6722)] = 199290, + [SMALL_STATE(6723)] = 199301, + [SMALL_STATE(6724)] = 199310, + [SMALL_STATE(6725)] = 199319, + [SMALL_STATE(6726)] = 199328, + [SMALL_STATE(6727)] = 199339, + [SMALL_STATE(6728)] = 199348, + [SMALL_STATE(6729)] = 199359, + [SMALL_STATE(6730)] = 199368, + [SMALL_STATE(6731)] = 199379, + [SMALL_STATE(6732)] = 199390, + [SMALL_STATE(6733)] = 199401, + [SMALL_STATE(6734)] = 199412, + [SMALL_STATE(6735)] = 199423, + [SMALL_STATE(6736)] = 199432, + [SMALL_STATE(6737)] = 199443, + [SMALL_STATE(6738)] = 199454, + [SMALL_STATE(6739)] = 199465, + [SMALL_STATE(6740)] = 199476, + [SMALL_STATE(6741)] = 199485, + [SMALL_STATE(6742)] = 199496, + [SMALL_STATE(6743)] = 199505, + [SMALL_STATE(6744)] = 199514, + [SMALL_STATE(6745)] = 199523, + [SMALL_STATE(6746)] = 199532, + [SMALL_STATE(6747)] = 199543, + [SMALL_STATE(6748)] = 199552, + [SMALL_STATE(6749)] = 199563, + [SMALL_STATE(6750)] = 199572, + [SMALL_STATE(6751)] = 199583, + [SMALL_STATE(6752)] = 199594, + [SMALL_STATE(6753)] = 199605, + [SMALL_STATE(6754)] = 199616, + [SMALL_STATE(6755)] = 199625, + [SMALL_STATE(6756)] = 199636, + [SMALL_STATE(6757)] = 199645, + [SMALL_STATE(6758)] = 199656, + [SMALL_STATE(6759)] = 199667, + [SMALL_STATE(6760)] = 199678, + [SMALL_STATE(6761)] = 199689, + [SMALL_STATE(6762)] = 199700, + [SMALL_STATE(6763)] = 199711, + [SMALL_STATE(6764)] = 199720, + [SMALL_STATE(6765)] = 199729, + [SMALL_STATE(6766)] = 199740, + [SMALL_STATE(6767)] = 199749, + [SMALL_STATE(6768)] = 199760, + [SMALL_STATE(6769)] = 199769, + [SMALL_STATE(6770)] = 199780, + [SMALL_STATE(6771)] = 199791, + [SMALL_STATE(6772)] = 199802, + [SMALL_STATE(6773)] = 199813, + [SMALL_STATE(6774)] = 199824, + [SMALL_STATE(6775)] = 199833, + [SMALL_STATE(6776)] = 199844, + [SMALL_STATE(6777)] = 199855, + [SMALL_STATE(6778)] = 199866, + [SMALL_STATE(6779)] = 199877, + [SMALL_STATE(6780)] = 199886, + [SMALL_STATE(6781)] = 199897, + [SMALL_STATE(6782)] = 199906, + [SMALL_STATE(6783)] = 199915, + [SMALL_STATE(6784)] = 199926, + [SMALL_STATE(6785)] = 199935, + [SMALL_STATE(6786)] = 199946, + [SMALL_STATE(6787)] = 199955, + [SMALL_STATE(6788)] = 199966, + [SMALL_STATE(6789)] = 199975, + [SMALL_STATE(6790)] = 199984, + [SMALL_STATE(6791)] = 199993, + [SMALL_STATE(6792)] = 200002, + [SMALL_STATE(6793)] = 200011, + [SMALL_STATE(6794)] = 200022, + [SMALL_STATE(6795)] = 200033, + [SMALL_STATE(6796)] = 200044, + [SMALL_STATE(6797)] = 200055, + [SMALL_STATE(6798)] = 200064, + [SMALL_STATE(6799)] = 200075, + [SMALL_STATE(6800)] = 200086, + [SMALL_STATE(6801)] = 200095, + [SMALL_STATE(6802)] = 200106, + [SMALL_STATE(6803)] = 200115, + [SMALL_STATE(6804)] = 200126, + [SMALL_STATE(6805)] = 200135, + [SMALL_STATE(6806)] = 200144, + [SMALL_STATE(6807)] = 200153, + [SMALL_STATE(6808)] = 200164, + [SMALL_STATE(6809)] = 200173, + [SMALL_STATE(6810)] = 200182, + [SMALL_STATE(6811)] = 200193, + [SMALL_STATE(6812)] = 200202, + [SMALL_STATE(6813)] = 200213, + [SMALL_STATE(6814)] = 200224, + [SMALL_STATE(6815)] = 200235, + [SMALL_STATE(6816)] = 200246, + [SMALL_STATE(6817)] = 200257, + [SMALL_STATE(6818)] = 200266, + [SMALL_STATE(6819)] = 200277, + [SMALL_STATE(6820)] = 200288, + [SMALL_STATE(6821)] = 200299, + [SMALL_STATE(6822)] = 200310, + [SMALL_STATE(6823)] = 200319, + [SMALL_STATE(6824)] = 200330, + [SMALL_STATE(6825)] = 200339, + [SMALL_STATE(6826)] = 200348, + [SMALL_STATE(6827)] = 200357, + [SMALL_STATE(6828)] = 200366, + [SMALL_STATE(6829)] = 200377, + [SMALL_STATE(6830)] = 200386, + [SMALL_STATE(6831)] = 200397, + [SMALL_STATE(6832)] = 200406, + [SMALL_STATE(6833)] = 200417, + [SMALL_STATE(6834)] = 200428, + [SMALL_STATE(6835)] = 200439, + [SMALL_STATE(6836)] = 200450, + [SMALL_STATE(6837)] = 200459, + [SMALL_STATE(6838)] = 200470, + [SMALL_STATE(6839)] = 200479, + [SMALL_STATE(6840)] = 200490, + [SMALL_STATE(6841)] = 200499, + [SMALL_STATE(6842)] = 200510, + [SMALL_STATE(6843)] = 200519, + [SMALL_STATE(6844)] = 200530, + [SMALL_STATE(6845)] = 200539, + [SMALL_STATE(6846)] = 200550, + [SMALL_STATE(6847)] = 200559, + [SMALL_STATE(6848)] = 200568, + [SMALL_STATE(6849)] = 200577, + [SMALL_STATE(6850)] = 200586, + [SMALL_STATE(6851)] = 200597, + [SMALL_STATE(6852)] = 200606, + [SMALL_STATE(6853)] = 200617, + [SMALL_STATE(6854)] = 200626, + [SMALL_STATE(6855)] = 200637, + [SMALL_STATE(6856)] = 200648, + [SMALL_STATE(6857)] = 200659, + [SMALL_STATE(6858)] = 200668, + [SMALL_STATE(6859)] = 200679, + [SMALL_STATE(6860)] = 200688, + [SMALL_STATE(6861)] = 200699, + [SMALL_STATE(6862)] = 200710, + [SMALL_STATE(6863)] = 200721, + [SMALL_STATE(6864)] = 200732, + [SMALL_STATE(6865)] = 200743, + [SMALL_STATE(6866)] = 200754, + [SMALL_STATE(6867)] = 200765, + [SMALL_STATE(6868)] = 200776, + [SMALL_STATE(6869)] = 200787, + [SMALL_STATE(6870)] = 200798, + [SMALL_STATE(6871)] = 200809, + [SMALL_STATE(6872)] = 200820, + [SMALL_STATE(6873)] = 200831, + [SMALL_STATE(6874)] = 200842, + [SMALL_STATE(6875)] = 200853, + [SMALL_STATE(6876)] = 200864, + [SMALL_STATE(6877)] = 200875, + [SMALL_STATE(6878)] = 200886, + [SMALL_STATE(6879)] = 200897, + [SMALL_STATE(6880)] = 200908, + [SMALL_STATE(6881)] = 200919, + [SMALL_STATE(6882)] = 200930, + [SMALL_STATE(6883)] = 200941, + [SMALL_STATE(6884)] = 200952, + [SMALL_STATE(6885)] = 200963, + [SMALL_STATE(6886)] = 200974, + [SMALL_STATE(6887)] = 200985, + [SMALL_STATE(6888)] = 200996, + [SMALL_STATE(6889)] = 201007, + [SMALL_STATE(6890)] = 201018, + [SMALL_STATE(6891)] = 201029, + [SMALL_STATE(6892)] = 201040, + [SMALL_STATE(6893)] = 201051, + [SMALL_STATE(6894)] = 201062, + [SMALL_STATE(6895)] = 201073, + [SMALL_STATE(6896)] = 201084, + [SMALL_STATE(6897)] = 201095, + [SMALL_STATE(6898)] = 201106, + [SMALL_STATE(6899)] = 201115, + [SMALL_STATE(6900)] = 201126, + [SMALL_STATE(6901)] = 201137, + [SMALL_STATE(6902)] = 201148, + [SMALL_STATE(6903)] = 201157, + [SMALL_STATE(6904)] = 201168, + [SMALL_STATE(6905)] = 201177, + [SMALL_STATE(6906)] = 201188, + [SMALL_STATE(6907)] = 201199, + [SMALL_STATE(6908)] = 201210, + [SMALL_STATE(6909)] = 201221, + [SMALL_STATE(6910)] = 201232, + [SMALL_STATE(6911)] = 201243, + [SMALL_STATE(6912)] = 201254, + [SMALL_STATE(6913)] = 201265, + [SMALL_STATE(6914)] = 201276, + [SMALL_STATE(6915)] = 201287, + [SMALL_STATE(6916)] = 201298, + [SMALL_STATE(6917)] = 201309, + [SMALL_STATE(6918)] = 201320, + [SMALL_STATE(6919)] = 201331, + [SMALL_STATE(6920)] = 201342, + [SMALL_STATE(6921)] = 201353, + [SMALL_STATE(6922)] = 201364, + [SMALL_STATE(6923)] = 201375, + [SMALL_STATE(6924)] = 201384, + [SMALL_STATE(6925)] = 201393, + [SMALL_STATE(6926)] = 201402, + [SMALL_STATE(6927)] = 201413, + [SMALL_STATE(6928)] = 201422, + [SMALL_STATE(6929)] = 201433, + [SMALL_STATE(6930)] = 201444, + [SMALL_STATE(6931)] = 201455, + [SMALL_STATE(6932)] = 201466, + [SMALL_STATE(6933)] = 201477, + [SMALL_STATE(6934)] = 201488, + [SMALL_STATE(6935)] = 201499, + [SMALL_STATE(6936)] = 201508, + [SMALL_STATE(6937)] = 201519, + [SMALL_STATE(6938)] = 201530, + [SMALL_STATE(6939)] = 201541, + [SMALL_STATE(6940)] = 201552, + [SMALL_STATE(6941)] = 201561, + [SMALL_STATE(6942)] = 201572, + [SMALL_STATE(6943)] = 201581, + [SMALL_STATE(6944)] = 201592, + [SMALL_STATE(6945)] = 201603, + [SMALL_STATE(6946)] = 201614, + [SMALL_STATE(6947)] = 201625, + [SMALL_STATE(6948)] = 201636, + [SMALL_STATE(6949)] = 201647, + [SMALL_STATE(6950)] = 201658, + [SMALL_STATE(6951)] = 201669, + [SMALL_STATE(6952)] = 201680, + [SMALL_STATE(6953)] = 201691, + [SMALL_STATE(6954)] = 201702, + [SMALL_STATE(6955)] = 201711, + [SMALL_STATE(6956)] = 201720, + [SMALL_STATE(6957)] = 201731, + [SMALL_STATE(6958)] = 201740, + [SMALL_STATE(6959)] = 201751, + [SMALL_STATE(6960)] = 201760, + [SMALL_STATE(6961)] = 201771, + [SMALL_STATE(6962)] = 201782, + [SMALL_STATE(6963)] = 201793, + [SMALL_STATE(6964)] = 201804, + [SMALL_STATE(6965)] = 201815, + [SMALL_STATE(6966)] = 201826, + [SMALL_STATE(6967)] = 201837, + [SMALL_STATE(6968)] = 201846, + [SMALL_STATE(6969)] = 201857, + [SMALL_STATE(6970)] = 201868, + [SMALL_STATE(6971)] = 201879, + [SMALL_STATE(6972)] = 201890, + [SMALL_STATE(6973)] = 201901, + [SMALL_STATE(6974)] = 201912, + [SMALL_STATE(6975)] = 201921, + [SMALL_STATE(6976)] = 201932, + [SMALL_STATE(6977)] = 201943, + [SMALL_STATE(6978)] = 201954, + [SMALL_STATE(6979)] = 201965, + [SMALL_STATE(6980)] = 201974, + [SMALL_STATE(6981)] = 201985, + [SMALL_STATE(6982)] = 201994, + [SMALL_STATE(6983)] = 202003, + [SMALL_STATE(6984)] = 202012, + [SMALL_STATE(6985)] = 202021, + [SMALL_STATE(6986)] = 202032, + [SMALL_STATE(6987)] = 202041, + [SMALL_STATE(6988)] = 202052, + [SMALL_STATE(6989)] = 202061, + [SMALL_STATE(6990)] = 202072, + [SMALL_STATE(6991)] = 202083, + [SMALL_STATE(6992)] = 202094, + [SMALL_STATE(6993)] = 202105, + [SMALL_STATE(6994)] = 202116, + [SMALL_STATE(6995)] = 202127, + [SMALL_STATE(6996)] = 202138, + [SMALL_STATE(6997)] = 202147, + [SMALL_STATE(6998)] = 202158, + [SMALL_STATE(6999)] = 202169, + [SMALL_STATE(7000)] = 202180, + [SMALL_STATE(7001)] = 202189, + [SMALL_STATE(7002)] = 202200, + [SMALL_STATE(7003)] = 202211, + [SMALL_STATE(7004)] = 202222, + [SMALL_STATE(7005)] = 202233, + [SMALL_STATE(7006)] = 202244, + [SMALL_STATE(7007)] = 202255, + [SMALL_STATE(7008)] = 202264, + [SMALL_STATE(7009)] = 202273, + [SMALL_STATE(7010)] = 202284, + [SMALL_STATE(7011)] = 202293, + [SMALL_STATE(7012)] = 202304, + [SMALL_STATE(7013)] = 202313, + [SMALL_STATE(7014)] = 202324, + [SMALL_STATE(7015)] = 202335, + [SMALL_STATE(7016)] = 202346, + [SMALL_STATE(7017)] = 202357, + [SMALL_STATE(7018)] = 202368, + [SMALL_STATE(7019)] = 202377, + [SMALL_STATE(7020)] = 202388, + [SMALL_STATE(7021)] = 202399, + [SMALL_STATE(7022)] = 202410, + [SMALL_STATE(7023)] = 202421, + [SMALL_STATE(7024)] = 202430, + [SMALL_STATE(7025)] = 202441, + [SMALL_STATE(7026)] = 202450, + [SMALL_STATE(7027)] = 202459, + [SMALL_STATE(7028)] = 202470, + [SMALL_STATE(7029)] = 202479, + [SMALL_STATE(7030)] = 202490, + [SMALL_STATE(7031)] = 202499, + [SMALL_STATE(7032)] = 202510, + [SMALL_STATE(7033)] = 202519, + [SMALL_STATE(7034)] = 202530, + [SMALL_STATE(7035)] = 202539, + [SMALL_STATE(7036)] = 202550, + [SMALL_STATE(7037)] = 202559, + [SMALL_STATE(7038)] = 202570, + [SMALL_STATE(7039)] = 202581, + [SMALL_STATE(7040)] = 202590, + [SMALL_STATE(7041)] = 202601, + [SMALL_STATE(7042)] = 202612, + [SMALL_STATE(7043)] = 202623, + [SMALL_STATE(7044)] = 202634, + [SMALL_STATE(7045)] = 202643, + [SMALL_STATE(7046)] = 202652, + [SMALL_STATE(7047)] = 202661, + [SMALL_STATE(7048)] = 202672, + [SMALL_STATE(7049)] = 202681, + [SMALL_STATE(7050)] = 202690, + [SMALL_STATE(7051)] = 202701, + [SMALL_STATE(7052)] = 202712, + [SMALL_STATE(7053)] = 202721, + [SMALL_STATE(7054)] = 202730, + [SMALL_STATE(7055)] = 202741, + [SMALL_STATE(7056)] = 202750, + [SMALL_STATE(7057)] = 202761, + [SMALL_STATE(7058)] = 202772, + [SMALL_STATE(7059)] = 202783, + [SMALL_STATE(7060)] = 202794, + [SMALL_STATE(7061)] = 202805, + [SMALL_STATE(7062)] = 202816, + [SMALL_STATE(7063)] = 202827, + [SMALL_STATE(7064)] = 202838, + [SMALL_STATE(7065)] = 202849, + [SMALL_STATE(7066)] = 202860, + [SMALL_STATE(7067)] = 202871, + [SMALL_STATE(7068)] = 202882, + [SMALL_STATE(7069)] = 202893, + [SMALL_STATE(7070)] = 202904, + [SMALL_STATE(7071)] = 202915, + [SMALL_STATE(7072)] = 202926, + [SMALL_STATE(7073)] = 202937, + [SMALL_STATE(7074)] = 202948, + [SMALL_STATE(7075)] = 202959, + [SMALL_STATE(7076)] = 202970, + [SMALL_STATE(7077)] = 202981, + [SMALL_STATE(7078)] = 202992, + [SMALL_STATE(7079)] = 203003, + [SMALL_STATE(7080)] = 203014, + [SMALL_STATE(7081)] = 203025, + [SMALL_STATE(7082)] = 203036, + [SMALL_STATE(7083)] = 203047, + [SMALL_STATE(7084)] = 203058, + [SMALL_STATE(7085)] = 203069, + [SMALL_STATE(7086)] = 203080, + [SMALL_STATE(7087)] = 203091, + [SMALL_STATE(7088)] = 203102, + [SMALL_STATE(7089)] = 203113, + [SMALL_STATE(7090)] = 203124, + [SMALL_STATE(7091)] = 203135, + [SMALL_STATE(7092)] = 203146, + [SMALL_STATE(7093)] = 203157, + [SMALL_STATE(7094)] = 203168, + [SMALL_STATE(7095)] = 203179, + [SMALL_STATE(7096)] = 203190, + [SMALL_STATE(7097)] = 203199, + [SMALL_STATE(7098)] = 203210, + [SMALL_STATE(7099)] = 203221, + [SMALL_STATE(7100)] = 203230, + [SMALL_STATE(7101)] = 203239, + [SMALL_STATE(7102)] = 203250, + [SMALL_STATE(7103)] = 203261, + [SMALL_STATE(7104)] = 203270, + [SMALL_STATE(7105)] = 203281, + [SMALL_STATE(7106)] = 203292, + [SMALL_STATE(7107)] = 203303, + [SMALL_STATE(7108)] = 203314, + [SMALL_STATE(7109)] = 203325, + [SMALL_STATE(7110)] = 203336, + [SMALL_STATE(7111)] = 203347, + [SMALL_STATE(7112)] = 203356, + [SMALL_STATE(7113)] = 203367, + [SMALL_STATE(7114)] = 203378, + [SMALL_STATE(7115)] = 203389, + [SMALL_STATE(7116)] = 203400, + [SMALL_STATE(7117)] = 203411, + [SMALL_STATE(7118)] = 203422, + [SMALL_STATE(7119)] = 203433, + [SMALL_STATE(7120)] = 203444, + [SMALL_STATE(7121)] = 203455, + [SMALL_STATE(7122)] = 203466, + [SMALL_STATE(7123)] = 203477, + [SMALL_STATE(7124)] = 203488, + [SMALL_STATE(7125)] = 203497, + [SMALL_STATE(7126)] = 203506, + [SMALL_STATE(7127)] = 203517, + [SMALL_STATE(7128)] = 203526, + [SMALL_STATE(7129)] = 203537, + [SMALL_STATE(7130)] = 203548, + [SMALL_STATE(7131)] = 203557, + [SMALL_STATE(7132)] = 203568, + [SMALL_STATE(7133)] = 203579, + [SMALL_STATE(7134)] = 203590, + [SMALL_STATE(7135)] = 203601, + [SMALL_STATE(7136)] = 203612, + [SMALL_STATE(7137)] = 203623, + [SMALL_STATE(7138)] = 203634, + [SMALL_STATE(7139)] = 203643, + [SMALL_STATE(7140)] = 203654, + [SMALL_STATE(7141)] = 203665, + [SMALL_STATE(7142)] = 203676, + [SMALL_STATE(7143)] = 203687, + [SMALL_STATE(7144)] = 203698, + [SMALL_STATE(7145)] = 203709, + [SMALL_STATE(7146)] = 203718, + [SMALL_STATE(7147)] = 203729, + [SMALL_STATE(7148)] = 203740, + [SMALL_STATE(7149)] = 203751, + [SMALL_STATE(7150)] = 203762, + [SMALL_STATE(7151)] = 203771, + [SMALL_STATE(7152)] = 203782, + [SMALL_STATE(7153)] = 203793, + [SMALL_STATE(7154)] = 203802, + [SMALL_STATE(7155)] = 203813, + [SMALL_STATE(7156)] = 203822, + [SMALL_STATE(7157)] = 203833, + [SMALL_STATE(7158)] = 203844, + [SMALL_STATE(7159)] = 203855, + [SMALL_STATE(7160)] = 203866, + [SMALL_STATE(7161)] = 203877, + [SMALL_STATE(7162)] = 203888, + [SMALL_STATE(7163)] = 203897, + [SMALL_STATE(7164)] = 203908, + [SMALL_STATE(7165)] = 203917, + [SMALL_STATE(7166)] = 203928, + [SMALL_STATE(7167)] = 203939, + [SMALL_STATE(7168)] = 203950, + [SMALL_STATE(7169)] = 203961, + [SMALL_STATE(7170)] = 203972, + [SMALL_STATE(7171)] = 203983, + [SMALL_STATE(7172)] = 203992, + [SMALL_STATE(7173)] = 204003, + [SMALL_STATE(7174)] = 204014, + [SMALL_STATE(7175)] = 204023, + [SMALL_STATE(7176)] = 204034, + [SMALL_STATE(7177)] = 204045, + [SMALL_STATE(7178)] = 204056, + [SMALL_STATE(7179)] = 204064, + [SMALL_STATE(7180)] = 204072, + [SMALL_STATE(7181)] = 204080, + [SMALL_STATE(7182)] = 204088, + [SMALL_STATE(7183)] = 204096, + [SMALL_STATE(7184)] = 204104, + [SMALL_STATE(7185)] = 204112, + [SMALL_STATE(7186)] = 204120, + [SMALL_STATE(7187)] = 204128, + [SMALL_STATE(7188)] = 204136, + [SMALL_STATE(7189)] = 204144, + [SMALL_STATE(7190)] = 204152, + [SMALL_STATE(7191)] = 204160, + [SMALL_STATE(7192)] = 204168, + [SMALL_STATE(7193)] = 204176, + [SMALL_STATE(7194)] = 204184, + [SMALL_STATE(7195)] = 204192, + [SMALL_STATE(7196)] = 204200, + [SMALL_STATE(7197)] = 204208, + [SMALL_STATE(7198)] = 204216, + [SMALL_STATE(7199)] = 204224, + [SMALL_STATE(7200)] = 204232, + [SMALL_STATE(7201)] = 204240, + [SMALL_STATE(7202)] = 204248, + [SMALL_STATE(7203)] = 204256, + [SMALL_STATE(7204)] = 204264, + [SMALL_STATE(7205)] = 204272, + [SMALL_STATE(7206)] = 204280, + [SMALL_STATE(7207)] = 204288, + [SMALL_STATE(7208)] = 204296, + [SMALL_STATE(7209)] = 204304, + [SMALL_STATE(7210)] = 204312, + [SMALL_STATE(7211)] = 204322, + [SMALL_STATE(7212)] = 204330, + [SMALL_STATE(7213)] = 204338, + [SMALL_STATE(7214)] = 204346, + [SMALL_STATE(7215)] = 204354, + [SMALL_STATE(7216)] = 204362, + [SMALL_STATE(7217)] = 204370, + [SMALL_STATE(7218)] = 204378, + [SMALL_STATE(7219)] = 204386, + [SMALL_STATE(7220)] = 204394, + [SMALL_STATE(7221)] = 204402, + [SMALL_STATE(7222)] = 204410, + [SMALL_STATE(7223)] = 204418, + [SMALL_STATE(7224)] = 204426, + [SMALL_STATE(7225)] = 204434, + [SMALL_STATE(7226)] = 204442, + [SMALL_STATE(7227)] = 204450, + [SMALL_STATE(7228)] = 204458, + [SMALL_STATE(7229)] = 204466, + [SMALL_STATE(7230)] = 204474, + [SMALL_STATE(7231)] = 204482, + [SMALL_STATE(7232)] = 204490, + [SMALL_STATE(7233)] = 204498, + [SMALL_STATE(7234)] = 204506, + [SMALL_STATE(7235)] = 204514, + [SMALL_STATE(7236)] = 204522, + [SMALL_STATE(7237)] = 204530, + [SMALL_STATE(7238)] = 204538, + [SMALL_STATE(7239)] = 204548, + [SMALL_STATE(7240)] = 204556, + [SMALL_STATE(7241)] = 204564, + [SMALL_STATE(7242)] = 204572, + [SMALL_STATE(7243)] = 204580, + [SMALL_STATE(7244)] = 204588, + [SMALL_STATE(7245)] = 204596, + [SMALL_STATE(7246)] = 204604, + [SMALL_STATE(7247)] = 204612, + [SMALL_STATE(7248)] = 204620, + [SMALL_STATE(7249)] = 204628, + [SMALL_STATE(7250)] = 204636, + [SMALL_STATE(7251)] = 204644, + [SMALL_STATE(7252)] = 204652, + [SMALL_STATE(7253)] = 204660, + [SMALL_STATE(7254)] = 204668, + [SMALL_STATE(7255)] = 204676, + [SMALL_STATE(7256)] = 204684, + [SMALL_STATE(7257)] = 204692, + [SMALL_STATE(7258)] = 204700, + [SMALL_STATE(7259)] = 204708, + [SMALL_STATE(7260)] = 204716, + [SMALL_STATE(7261)] = 204724, + [SMALL_STATE(7262)] = 204732, + [SMALL_STATE(7263)] = 204742, + [SMALL_STATE(7264)] = 204750, + [SMALL_STATE(7265)] = 204758, + [SMALL_STATE(7266)] = 204766, + [SMALL_STATE(7267)] = 204774, + [SMALL_STATE(7268)] = 204782, + [SMALL_STATE(7269)] = 204790, + [SMALL_STATE(7270)] = 204798, + [SMALL_STATE(7271)] = 204806, + [SMALL_STATE(7272)] = 204814, + [SMALL_STATE(7273)] = 204822, + [SMALL_STATE(7274)] = 204830, + [SMALL_STATE(7275)] = 204838, + [SMALL_STATE(7276)] = 204846, + [SMALL_STATE(7277)] = 204854, + [SMALL_STATE(7278)] = 204862, + [SMALL_STATE(7279)] = 204870, + [SMALL_STATE(7280)] = 204878, + [SMALL_STATE(7281)] = 204886, + [SMALL_STATE(7282)] = 204894, + [SMALL_STATE(7283)] = 204902, + [SMALL_STATE(7284)] = 204910, + [SMALL_STATE(7285)] = 204920, + [SMALL_STATE(7286)] = 204928, + [SMALL_STATE(7287)] = 204936, + [SMALL_STATE(7288)] = 204944, + [SMALL_STATE(7289)] = 204952, + [SMALL_STATE(7290)] = 204960, + [SMALL_STATE(7291)] = 204968, + [SMALL_STATE(7292)] = 204976, + [SMALL_STATE(7293)] = 204984, + [SMALL_STATE(7294)] = 204992, + [SMALL_STATE(7295)] = 205000, + [SMALL_STATE(7296)] = 205008, + [SMALL_STATE(7297)] = 205016, + [SMALL_STATE(7298)] = 205024, + [SMALL_STATE(7299)] = 205032, + [SMALL_STATE(7300)] = 205040, + [SMALL_STATE(7301)] = 205048, + [SMALL_STATE(7302)] = 205056, + [SMALL_STATE(7303)] = 205064, + [SMALL_STATE(7304)] = 205072, + [SMALL_STATE(7305)] = 205080, + [SMALL_STATE(7306)] = 205088, + [SMALL_STATE(7307)] = 205096, + [SMALL_STATE(7308)] = 205104, + [SMALL_STATE(7309)] = 205112, + [SMALL_STATE(7310)] = 205120, + [SMALL_STATE(7311)] = 205128, + [SMALL_STATE(7312)] = 205136, + [SMALL_STATE(7313)] = 205144, + [SMALL_STATE(7314)] = 205154, + [SMALL_STATE(7315)] = 205162, + [SMALL_STATE(7316)] = 205170, + [SMALL_STATE(7317)] = 205178, + [SMALL_STATE(7318)] = 205186, + [SMALL_STATE(7319)] = 205194, + [SMALL_STATE(7320)] = 205202, + [SMALL_STATE(7321)] = 205210, + [SMALL_STATE(7322)] = 205218, + [SMALL_STATE(7323)] = 205226, + [SMALL_STATE(7324)] = 205234, + [SMALL_STATE(7325)] = 205242, + [SMALL_STATE(7326)] = 205250, + [SMALL_STATE(7327)] = 205258, + [SMALL_STATE(7328)] = 205266, + [SMALL_STATE(7329)] = 205274, + [SMALL_STATE(7330)] = 205282, + [SMALL_STATE(7331)] = 205290, + [SMALL_STATE(7332)] = 205298, + [SMALL_STATE(7333)] = 205306, + [SMALL_STATE(7334)] = 205314, + [SMALL_STATE(7335)] = 205322, + [SMALL_STATE(7336)] = 205330, + [SMALL_STATE(7337)] = 205338, + [SMALL_STATE(7338)] = 205346, + [SMALL_STATE(7339)] = 205354, + [SMALL_STATE(7340)] = 205362, + [SMALL_STATE(7341)] = 205370, + [SMALL_STATE(7342)] = 205378, + [SMALL_STATE(7343)] = 205386, + [SMALL_STATE(7344)] = 205394, + [SMALL_STATE(7345)] = 205402, + [SMALL_STATE(7346)] = 205410, + [SMALL_STATE(7347)] = 205418, + [SMALL_STATE(7348)] = 205426, + [SMALL_STATE(7349)] = 205434, + [SMALL_STATE(7350)] = 205442, + [SMALL_STATE(7351)] = 205450, + [SMALL_STATE(7352)] = 205458, + [SMALL_STATE(7353)] = 205466, + [SMALL_STATE(7354)] = 205474, + [SMALL_STATE(7355)] = 205482, + [SMALL_STATE(7356)] = 205490, + [SMALL_STATE(7357)] = 205498, + [SMALL_STATE(7358)] = 205506, + [SMALL_STATE(7359)] = 205514, + [SMALL_STATE(7360)] = 205522, + [SMALL_STATE(7361)] = 205530, + [SMALL_STATE(7362)] = 205538, + [SMALL_STATE(7363)] = 205546, + [SMALL_STATE(7364)] = 205554, + [SMALL_STATE(7365)] = 205562, + [SMALL_STATE(7366)] = 205570, + [SMALL_STATE(7367)] = 205578, + [SMALL_STATE(7368)] = 205586, + [SMALL_STATE(7369)] = 205594, + [SMALL_STATE(7370)] = 205602, + [SMALL_STATE(7371)] = 205610, + [SMALL_STATE(7372)] = 205618, + [SMALL_STATE(7373)] = 205626, + [SMALL_STATE(7374)] = 205634, + [SMALL_STATE(7375)] = 205642, + [SMALL_STATE(7376)] = 205650, + [SMALL_STATE(7377)] = 205658, + [SMALL_STATE(7378)] = 205666, + [SMALL_STATE(7379)] = 205674, + [SMALL_STATE(7380)] = 205682, + [SMALL_STATE(7381)] = 205690, + [SMALL_STATE(7382)] = 205698, + [SMALL_STATE(7383)] = 205706, + [SMALL_STATE(7384)] = 205714, + [SMALL_STATE(7385)] = 205722, + [SMALL_STATE(7386)] = 205730, + [SMALL_STATE(7387)] = 205738, + [SMALL_STATE(7388)] = 205746, + [SMALL_STATE(7389)] = 205754, + [SMALL_STATE(7390)] = 205762, + [SMALL_STATE(7391)] = 205770, + [SMALL_STATE(7392)] = 205778, + [SMALL_STATE(7393)] = 205786, + [SMALL_STATE(7394)] = 205794, + [SMALL_STATE(7395)] = 205802, + [SMALL_STATE(7396)] = 205810, + [SMALL_STATE(7397)] = 205818, + [SMALL_STATE(7398)] = 205826, + [SMALL_STATE(7399)] = 205834, + [SMALL_STATE(7400)] = 205842, + [SMALL_STATE(7401)] = 205850, + [SMALL_STATE(7402)] = 205858, + [SMALL_STATE(7403)] = 205866, + [SMALL_STATE(7404)] = 205874, + [SMALL_STATE(7405)] = 205882, + [SMALL_STATE(7406)] = 205890, + [SMALL_STATE(7407)] = 205898, + [SMALL_STATE(7408)] = 205906, + [SMALL_STATE(7409)] = 205914, + [SMALL_STATE(7410)] = 205922, + [SMALL_STATE(7411)] = 205930, + [SMALL_STATE(7412)] = 205938, + [SMALL_STATE(7413)] = 205946, + [SMALL_STATE(7414)] = 205956, + [SMALL_STATE(7415)] = 205964, + [SMALL_STATE(7416)] = 205972, + [SMALL_STATE(7417)] = 205980, + [SMALL_STATE(7418)] = 205988, + [SMALL_STATE(7419)] = 205996, + [SMALL_STATE(7420)] = 206004, + [SMALL_STATE(7421)] = 206012, + [SMALL_STATE(7422)] = 206020, + [SMALL_STATE(7423)] = 206028, + [SMALL_STATE(7424)] = 206036, + [SMALL_STATE(7425)] = 206044, + [SMALL_STATE(7426)] = 206052, + [SMALL_STATE(7427)] = 206060, + [SMALL_STATE(7428)] = 206068, + [SMALL_STATE(7429)] = 206076, + [SMALL_STATE(7430)] = 206084, + [SMALL_STATE(7431)] = 206092, + [SMALL_STATE(7432)] = 206100, + [SMALL_STATE(7433)] = 206108, + [SMALL_STATE(7434)] = 206116, + [SMALL_STATE(7435)] = 206124, + [SMALL_STATE(7436)] = 206132, + [SMALL_STATE(7437)] = 206140, + [SMALL_STATE(7438)] = 206148, + [SMALL_STATE(7439)] = 206156, + [SMALL_STATE(7440)] = 206164, + [SMALL_STATE(7441)] = 206172, + [SMALL_STATE(7442)] = 206180, + [SMALL_STATE(7443)] = 206188, + [SMALL_STATE(7444)] = 206196, + [SMALL_STATE(7445)] = 206204, + [SMALL_STATE(7446)] = 206212, + [SMALL_STATE(7447)] = 206220, + [SMALL_STATE(7448)] = 206228, + [SMALL_STATE(7449)] = 206236, + [SMALL_STATE(7450)] = 206244, + [SMALL_STATE(7451)] = 206252, + [SMALL_STATE(7452)] = 206260, + [SMALL_STATE(7453)] = 206268, + [SMALL_STATE(7454)] = 206276, + [SMALL_STATE(7455)] = 206284, + [SMALL_STATE(7456)] = 206292, + [SMALL_STATE(7457)] = 206300, + [SMALL_STATE(7458)] = 206308, + [SMALL_STATE(7459)] = 206316, + [SMALL_STATE(7460)] = 206324, + [SMALL_STATE(7461)] = 206332, + [SMALL_STATE(7462)] = 206340, + [SMALL_STATE(7463)] = 206348, + [SMALL_STATE(7464)] = 206356, + [SMALL_STATE(7465)] = 206364, + [SMALL_STATE(7466)] = 206372, + [SMALL_STATE(7467)] = 206380, + [SMALL_STATE(7468)] = 206388, + [SMALL_STATE(7469)] = 206396, + [SMALL_STATE(7470)] = 206406, + [SMALL_STATE(7471)] = 206414, + [SMALL_STATE(7472)] = 206422, + [SMALL_STATE(7473)] = 206430, + [SMALL_STATE(7474)] = 206438, + [SMALL_STATE(7475)] = 206446, + [SMALL_STATE(7476)] = 206454, + [SMALL_STATE(7477)] = 206462, + [SMALL_STATE(7478)] = 206470, + [SMALL_STATE(7479)] = 206478, + [SMALL_STATE(7480)] = 206486, + [SMALL_STATE(7481)] = 206494, + [SMALL_STATE(7482)] = 206502, + [SMALL_STATE(7483)] = 206510, + [SMALL_STATE(7484)] = 206518, + [SMALL_STATE(7485)] = 206528, + [SMALL_STATE(7486)] = 206536, + [SMALL_STATE(7487)] = 206544, + [SMALL_STATE(7488)] = 206552, + [SMALL_STATE(7489)] = 206560, + [SMALL_STATE(7490)] = 206568, + [SMALL_STATE(7491)] = 206576, + [SMALL_STATE(7492)] = 206584, + [SMALL_STATE(7493)] = 206592, + [SMALL_STATE(7494)] = 206600, + [SMALL_STATE(7495)] = 206608, + [SMALL_STATE(7496)] = 206616, + [SMALL_STATE(7497)] = 206624, + [SMALL_STATE(7498)] = 206632, + [SMALL_STATE(7499)] = 206642, + [SMALL_STATE(7500)] = 206650, + [SMALL_STATE(7501)] = 206658, + [SMALL_STATE(7502)] = 206666, + [SMALL_STATE(7503)] = 206674, + [SMALL_STATE(7504)] = 206682, + [SMALL_STATE(7505)] = 206690, + [SMALL_STATE(7506)] = 206698, + [SMALL_STATE(7507)] = 206706, + [SMALL_STATE(7508)] = 206714, + [SMALL_STATE(7509)] = 206722, + [SMALL_STATE(7510)] = 206730, + [SMALL_STATE(7511)] = 206738, + [SMALL_STATE(7512)] = 206746, + [SMALL_STATE(7513)] = 206754, + [SMALL_STATE(7514)] = 206762, + [SMALL_STATE(7515)] = 206770, + [SMALL_STATE(7516)] = 206778, + [SMALL_STATE(7517)] = 206786, + [SMALL_STATE(7518)] = 206794, + [SMALL_STATE(7519)] = 206802, + [SMALL_STATE(7520)] = 206810, + [SMALL_STATE(7521)] = 206818, + [SMALL_STATE(7522)] = 206826, + [SMALL_STATE(7523)] = 206834, + [SMALL_STATE(7524)] = 206842, + [SMALL_STATE(7525)] = 206850, + [SMALL_STATE(7526)] = 206858, + [SMALL_STATE(7527)] = 206866, + [SMALL_STATE(7528)] = 206874, + [SMALL_STATE(7529)] = 206882, + [SMALL_STATE(7530)] = 206890, + [SMALL_STATE(7531)] = 206898, + [SMALL_STATE(7532)] = 206906, + [SMALL_STATE(7533)] = 206914, + [SMALL_STATE(7534)] = 206922, + [SMALL_STATE(7535)] = 206930, + [SMALL_STATE(7536)] = 206938, + [SMALL_STATE(7537)] = 206946, + [SMALL_STATE(7538)] = 206954, + [SMALL_STATE(7539)] = 206962, + [SMALL_STATE(7540)] = 206970, + [SMALL_STATE(7541)] = 206978, + [SMALL_STATE(7542)] = 206986, + [SMALL_STATE(7543)] = 206994, + [SMALL_STATE(7544)] = 207002, + [SMALL_STATE(7545)] = 207010, + [SMALL_STATE(7546)] = 207018, + [SMALL_STATE(7547)] = 207026, + [SMALL_STATE(7548)] = 207034, + [SMALL_STATE(7549)] = 207042, + [SMALL_STATE(7550)] = 207050, + [SMALL_STATE(7551)] = 207058, + [SMALL_STATE(7552)] = 207066, + [SMALL_STATE(7553)] = 207074, + [SMALL_STATE(7554)] = 207082, + [SMALL_STATE(7555)] = 207090, + [SMALL_STATE(7556)] = 207098, + [SMALL_STATE(7557)] = 207106, + [SMALL_STATE(7558)] = 207116, + [SMALL_STATE(7559)] = 207124, + [SMALL_STATE(7560)] = 207132, + [SMALL_STATE(7561)] = 207140, + [SMALL_STATE(7562)] = 207148, + [SMALL_STATE(7563)] = 207156, + [SMALL_STATE(7564)] = 207164, + [SMALL_STATE(7565)] = 207172, + [SMALL_STATE(7566)] = 207180, + [SMALL_STATE(7567)] = 207188, + [SMALL_STATE(7568)] = 207196, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -274648,4789 +312515,5493 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(448), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7557), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(474), [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(442), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(615), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5604), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(420), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(7284), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(585), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(421), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(586), [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1285), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(639), [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1124), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2823), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5187), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3688), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5489), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5358), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4690), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1225), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3279), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6657), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3962), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1124), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3906), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7088), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7087), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5552), [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5389), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5293), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4964), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5140), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5485), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6906), + [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6905), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5555), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5556), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6904), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(295), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(724), [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4829), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4454), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4558), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3219), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5558), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5474), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5468), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(675), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(389), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5867), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3449), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3779), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5729), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2315), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4394), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5895), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5584), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 54), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 54), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 240), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 240), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 88), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 88), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(38), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4107), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7557), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3923), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7556), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2138), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4880), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7555), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7554), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7553), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 88), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 88), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 243), + [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 243), + [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 54), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 54), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7565), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(67), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(186), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(201), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3452), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3868), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(199), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3914), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4226), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(302), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(504), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(354), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(402), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7494), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 195), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 195), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1747] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3158), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 181), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 181), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 181), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 181), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 105), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 105), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 126), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 126), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 126), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 126), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1791] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2872), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 70), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 166), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 166), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 166), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 166), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 147), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 147), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 107), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 107), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 181), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 181), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 181), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 181), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 83), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 194), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 194), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 46), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 46), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 229), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 229), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 229), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 229), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 235), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 235), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 235), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 235), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 145), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 145), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 145), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 145), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 194), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 194), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1771] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3382), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 236), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 236), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 236), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 236), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 193), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 193), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 165), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 165), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 180), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 180), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 180), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 180), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 83), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 70), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 180), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 180), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 0), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 0), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 230), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 230), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 230), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 230), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 105), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 105), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 104), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 104), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 104), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 104), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 46), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 46), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1911] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3633), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 124), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 124), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 124), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 124), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2752), - [2268] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(193), - [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(381), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [2281] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4779), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(193), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4779), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 274), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 274), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 243), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 243), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 100), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 100), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 81), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 81), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 91), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 91), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 92), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 92), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 93), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 93), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 101), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 101), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 46), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 46), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 125), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 125), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 139), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 139), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 142), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 142), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 146), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 146), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 150), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 150), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 152), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 152), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 150), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 150), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 81), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 81), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 100), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 100), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 180), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 180), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 126), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 126), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 186), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 186), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 189), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 189), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 60), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 60), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 193), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 193), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 147), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 147), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 197), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 197), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 199), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 199), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 150), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 150), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 204), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 204), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 166), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 166), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 181), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 181), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 181), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 181), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 230), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 230), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 60), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 60), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 234), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 234), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 195), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 195), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 229), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 229), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 269), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 269), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 234), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 234), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 235), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 235), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 270), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 270), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 68), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 68), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 69), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 69), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 79), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 79), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 82), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 82), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 107), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 107), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 273), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 273), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 241), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 241), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 202), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 202), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3179), + [2268] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(195), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(427), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [2281] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5862), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(195), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5862), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7467), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 100), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 100), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 279), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 279), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 246), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 246), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 145), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 145), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 100), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 100), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 235), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 235), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 150), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 150), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 192), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 192), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 123), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 123), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 205), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 205), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 105), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 105), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 124), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 124), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 81), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 81), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 79), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 79), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 148), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 148), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 101), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 101), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 148), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 148), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 233), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 233), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 93), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 93), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 179), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 179), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 104), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 104), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 148), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 148), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 60), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 60), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 230), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 230), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 180), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 180), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 165), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 165), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 272), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 272), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 92), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 92), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 233), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 233), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 68), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 68), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 91), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 91), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 245), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 245), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 69), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 69), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 82), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 82), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 273), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 273), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 60), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 60), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 141), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 141), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 137), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 137), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 235), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 235), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 188), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 188), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 144), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 144), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 81), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 81), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 238), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 238), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 46), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 46), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 140), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 140), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 236), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 236), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 193), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 193), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 231), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 231), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 278), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 278), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 204), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 204), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 244), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 244), [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 203), [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 203), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), - [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 191), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 191), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 73), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 73), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 144), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 144), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(375), - [3457] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), - [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5556), - [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1059), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5669), - [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1056), - [3485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(5507), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7503), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7504), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7536), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [3345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 190), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 190), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 73), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 73), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 142), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 142), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(377), + [3455] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 49), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), + [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7273), + [3467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), + [3470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1045), + [3473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(7173), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7452), + [3485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1047), [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(423), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 15), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 15), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(232), - [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(3957), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 74), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 74), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3244), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 70), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 70), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3572] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym_rest_pattern, 2, 0, 0), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3580] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 28), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(303), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71), - [3600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(506), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1434), - [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1819), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3183), - [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2731), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), - [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1409), - [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(370), - [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4438), - [3778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4440), - [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2214), - [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5776), - [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2955), - [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4085), - [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1733), - [3796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2018), - [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2399), - [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1755), - [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1942), - [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2391), - [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2675), - [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2748), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1653), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1664), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2392), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1977), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [3959] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 51), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 51), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 17), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 17), - [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 50), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 117), - [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 117), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 129), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 174), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 174), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), - [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), - [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 178), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 178), - [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 71), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 71), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), - [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 226), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 226), - [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(144), - [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 227), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 227), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 116), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 116), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(144), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 228), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 228), - [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 144), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 144), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(144), - [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), - [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 267), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 267), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 268), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 268), - [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), - [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 298), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 298), - [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 299), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 299), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 65), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 66), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 300), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 300), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 67), - [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), - [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 320), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 320), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(144), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 52), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 52), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 77), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 67), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 89), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 89), - [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 192), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 192), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 53), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 53), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 123), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 124), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 128), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 113), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 113), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 114), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 114), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 190), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 115), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 115), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 116), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 116), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 15), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 15), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 15), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 15), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15), - [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 118), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 118), - [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 119), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 119), - [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), - [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 119), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 119), - [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), - [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 171), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 171), - [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), REDUCE(sym_assignment_expression, 3, 0, 65), - [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 88), - [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(451), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74), - [4623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(153), - [4626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 16), - [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 16), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 12), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 12), - [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(148), - [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(148), - [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), - [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 184), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 184), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(148), - [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 22), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), - [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), - [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153), - [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(148), - [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50), - [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 75), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 75), - [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 76), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 76), - [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 77), - [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(223), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(590), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 49), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(5168), + [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3669), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3558] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym_rest_pattern, 2, 0, 0), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 70), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 70), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(356), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 15), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 15), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 74), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 74), + [3585] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 28), + [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(408), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3656), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3196), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5382), + [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5384), + [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7392), + [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3432), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4880), + [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), + [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1973), + [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), + [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), + [3887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2081), + [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2508), + [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3088), + [3896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3182), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1417), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2032), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1647), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1871), + [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2464), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1699), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3975] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 110), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 110), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 109), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 109), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 51), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 51), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 50), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), + [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 17), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 17), + [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 115), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 115), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 191), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 191), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 89), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 89), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 327), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 327), + [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 305), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 305), + [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), + [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 119), + [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 271), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 271), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 270), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 270), + [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 269), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 269), + [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 268), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 268), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 127), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 65), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 142), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 142), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 229), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 229), + [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 66), + [4211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 114), + [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 114), + [4219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 228), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 228), + [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 227), + [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 227), + [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 226), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 226), + [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 67), + [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(149), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 122), + [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(149), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 71), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 71), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), + [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 15), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 15), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), + [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), + [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), + [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), + [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 173), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 173), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), + [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), + [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 117), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 117), + [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 15), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 15), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 117), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 117), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 116), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 116), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 114), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 114), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 113), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 113), + [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 170), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 170), + [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 53), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 53), + [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 52), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 52), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 189), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(149), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 77), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 67), + [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(149), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50), + [4540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50), + [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 45), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 45), + [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [4586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(146), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(146), + [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(146), + [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), + [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12), + [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56), + [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), + [4638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), + [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60), + [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64), + [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 118), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 118), + [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 119), + [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 12), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 12), + [4683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 120), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 120), + [4687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(150), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(6233), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [4715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), + [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 122), + [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 16), + [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 16), [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 80), [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 80), - [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), - [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153), - [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [4764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 120), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 120), - [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 122), - [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 122), - [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 123), - [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 124), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 122), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 122), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 127), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 127), - [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), - [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 130), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 130), - [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133), - [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), - [4808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153), - [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), - [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), - [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 138), - [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 138), - [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 45), - [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 45), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5300), - [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), - [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), - [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56), - [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), - [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 179), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 179), - [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64), - [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 145), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 145), - [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 60), - [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 60), - [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 64), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 64), - [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 66), - [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), - [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 196), - [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 196), - [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 65), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 47), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 65), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [5003] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5007] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(150), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(150), - [5077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(150), - [5080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(150), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 85), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [5095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), - [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [5191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 50), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [5215] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 50), - [5219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(147), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(147), - [5235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(147), - [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(147), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), - [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), REDUCE(sym__parameter_name, 2, 0, 37), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(149), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [5321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(149), - [5324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(149), - [5327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(149), - [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 99), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 99), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(544), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 108), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [5395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [5401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5404] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [5418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [5423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 155), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 155), - [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 157), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 157), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 95), - [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 95), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(146), - [5587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(146), - [5590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(146), - [5593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(146), - [5596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 205), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 205), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(154), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), - [5683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(154), - [5686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(154), - [5689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(154), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [5704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(145), - [5707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(145), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(145), - [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [5752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(145), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [5797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 149), - [5800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 149), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [5813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), - [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), - [5819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 195), - [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 195), - [5825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 120), REDUCE(sym_class, 5, 0, 196), - [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 120), REDUCE(sym_class, 5, 0, 196), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [5833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 166), REDUCE(sym_class, 6, 0, 235), - [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 166), REDUCE(sym_class, 6, 0, 235), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [5851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), - [5854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), - [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 147), - [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 147), - [5863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), - [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), - [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), - [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [5907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 271), - [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 271), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 181), - [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 181), - [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 272), - [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 272), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 238), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 238), - [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2630), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [5934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 229), - [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 229), - [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 86), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 86), - [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 126), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 126), - [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 200), - [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 200), - [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), - [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), - [5954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), SHIFT_REPEAT(2628), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 301), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 301), - [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 302), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 302), - [5967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 321), - [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 321), - [5971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 322), - [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 322), - [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 337), - [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 337), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 153), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 153), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [6083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4085), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), SHIFT(3903), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 60), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [6475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 104), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 253), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 214), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 158), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 60), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 60), - [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 253), - [6626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 60), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294), - [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 163), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [6634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 158), - [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 214), - [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 216), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [6648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 259), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 158), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 253), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 214), - [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 104), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [6671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3794), - [6674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3134), - [6677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [6679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3796), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [6686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(5507), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [6933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(3659), - [6950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(270), - [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), - [6955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(3659), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [7086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [7142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 303), - [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 304), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 263), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [7224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), - [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 325), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [7244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 140), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 140), - [7254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 330), - [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 244), - [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 319), - [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 339), - [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 125), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 162), - [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 168), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [7288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(423), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 279), - [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 280), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [7305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(375), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223), - [7322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 224), - [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 102), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 59), - [7332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 206), - [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 180), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 287), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [7368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 133), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 78), - [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), - [7394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [7406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(530), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [7413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 138), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [7419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [7429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5539), - [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(374), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [7455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), - [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [7464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), - [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [7469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(304), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [7524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 64), - [7526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4394), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [7579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 184), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), - [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [7665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 60), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [7685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(994), - [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), - [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [7698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(908), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 261), - [7739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(899), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(960), - [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(895), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 210), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 212), - [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), - [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 295), - [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 262), - [7792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(965), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(897), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 306), - [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 307), - [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), - [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318), - [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [7850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [7884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), - [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275), - [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 283), - [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 277), - [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 286), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 278), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 323), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 324), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(940), - [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4233), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), - [7926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [7930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 336), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [7950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1031), - [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 207), - [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 208), - [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 309), - [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 342), - [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), - [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220), - [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 110), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [7991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(905), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [7996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1010), - [7999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(906), - [8002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1014), - [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), - [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 160), - [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 252), - [8017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61), - [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61), - [8021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [8029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 109), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [8086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), - [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [8137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187), - [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187), - [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 188), - [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 188), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [8151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [8153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4480), - [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 48), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [8168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4488), - [8171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [8173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4488), - [8176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4490), - [8179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [8181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4490), - [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [8186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4493), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 167), - [8199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 167), SHIFT_REPEAT(307), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 97), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), - [8224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [8231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [8233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [8254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), - [8256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), SHIFT_REPEAT(4469), - [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 60), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 63), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 276), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 239), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [8313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3717), - [8316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), - [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), - [8372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), - [8400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3347), - [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [8445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 60), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [8473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), - [8483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 85), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [8502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2466), - [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [8509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2231), - [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [8530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(4723), - [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 125), - [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 90), - [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 48), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), - [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 90), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), - [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), - [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), - [8647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), - [8649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), - [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [8657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), - [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), - [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), - [8697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [8700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [8708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), - [8710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4887), - [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [8715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), - [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), - [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340), - [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 341), - [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), - [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 180), - [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 206), - [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 343), - [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), - [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 221), - [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 344), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), - [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 279), - [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), - [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), - [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), - [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 280), - [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 303), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [8809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), - [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [8831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [8845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 244), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 233), SHIFT_REPEAT(2716), - [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 233), - [8860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(506), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 182), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [8889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 156), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [8915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [8929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), - [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 198), - [8945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 98), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [8949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 201), - [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [9005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 60), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 151), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 89), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 154), - [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [9171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [9175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [9185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 151), - [9187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [9191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), - [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [9217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [9283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [9447] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [9517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [9627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [9713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [9729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 120), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 120), + [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 125), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 125), + [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 128), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 128), + [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 77), + [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 131), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 131), + [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133), + [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133), + [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 76), + [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 76), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 75), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 75), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), + [4787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), + [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 66), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [4845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(150), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 88), + [4850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(570), + [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 143), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 143), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 60), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 60), + [4887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(150), + [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 64), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 64), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 146), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 146), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), + [4910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(150), + [4913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 22), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(146), + [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), + [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), + [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 178), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 178), + [4943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), REDUCE(sym_assignment_expression, 3, 0, 65), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), + [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [4952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 65), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153), + [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153), + [4997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(153), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [5063] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5067] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 47), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 65), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [5155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(144), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(152), + [5241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(152), + [5244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(152), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [5258] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 50), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), + [5300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), REDUCE(sym__parameter_name, 2, 0, 37), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 50), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 85), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [5356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(144), + [5359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(144), + [5362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(144), + [5365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(152), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 99), + [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 99), + [5426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(151), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [5449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [5454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [5465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 95), + [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 95), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(151), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 106), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [5610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 154), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 154), + [5614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(154), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [5661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(154), + [5664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(154), + [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(561), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [5702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(151), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [5711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(151), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [5746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 206), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 206), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [5758] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [5846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(154), + [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), + [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [5863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(145), + [5921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(145), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [5932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(145), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [5945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(145), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [6021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 147), + [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 147), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [6033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), + [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [6043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 145), + [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 145), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [6053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 236), + [6056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 236), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [6063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 146), + [6066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 146), + [6069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 104), REDUCE(sym_class, 5, 0, 193), + [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 104), REDUCE(sym_class, 5, 0, 193), + [6075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 194), + [6078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 194), + [6081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 118), REDUCE(sym_class, 5, 0, 195), + [6084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 118), REDUCE(sym_class, 5, 0, 195), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7463), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 330), + [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 330), + [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 240), + [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 240), + [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 306), + [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 306), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 180), + [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 180), + [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 199), + [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 199), + [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 86), + [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 86), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 275), + [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 275), + [6191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 274), + [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 274), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 124), + [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 124), + [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 151), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 151), + [6207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2902), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 152), + [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 152), + [6220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 200), + [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 200), + [6224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 201), + [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 201), + [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 239), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 239), + [6232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 230), + [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 230), + [6236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 241), + [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 241), + [6240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, 0, 355), + [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, 0, 355), + [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 347), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 347), + [6248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 348), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 348), + [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 346), + [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 346), + [6256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 331), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 331), + [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 329), + [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 329), + [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 328), + [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 328), + [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 308), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 308), + [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 309), + [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 309), + [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 307), + [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 307), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [6282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 276), + [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 276), + [6286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 277), + [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 277), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), + [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), + [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [6450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4880), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [7207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), SHIFT(4223), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [7230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [7348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 60), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 299), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 103), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [7408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 157), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 262), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [7462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [7466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [7481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [7483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 60), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 256), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 215), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 157), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [7571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(7173), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 60), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 217), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 162), + [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 60), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 262), + [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), + [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 157), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 215), + [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 256), + [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 256), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [7604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [7607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4177), + [7610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), + [7613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [7615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4250), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 215), + [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 157), + [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 103), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 326), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [7886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 132), SHIFT_REPEAT(4133), + [7889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 132), SHIFT_REPEAT(286), + [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 132), + [7894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 132), SHIFT_REPEAT(4133), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [7961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7514), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [8153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 292), + [8165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), + [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 350), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 339), + [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 334), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [8185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(377), + [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 123), + [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 161), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [8198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 138), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 138), + [8208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(590), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 310), + [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 311), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [8225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 224), + [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 225), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 102), + [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [8261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 207), + [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 179), + [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 285), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 284), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [8277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 167), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [8283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 59), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [8293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 247), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 248), + [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 266), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [8303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [8373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 138), + [8375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 138), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [8379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [8393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 60), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [8417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [8439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 64), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [8491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7312), + [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [8496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [8605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4318), + [8608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [8610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(373), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [8615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), + [8618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [8632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 131), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [8666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [8668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 133), + [8670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [8694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [8698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [8703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [8763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 139), + [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 139), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [8775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [8783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [8919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [8967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [8971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 78), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [9105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 288), + [9107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), + [9109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 291), + [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 221), + [9113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), + [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), + [9117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 280), + [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 282), + [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 322), + [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 283), + [9125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [9127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [9129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 298), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223), + [9133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), + [9149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(894), + [9152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 108), + [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1010), + [9157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [9159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [9161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [9165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61), + [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61), + [9169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 265), + [9171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 213), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [9179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [9191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 264), + [9193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [9195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [9201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [9205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(897), + [9208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [9210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 250), + [9212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 254), + [9214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 300), + [9216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [9222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(998), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [9229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [9237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [9249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [9251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [9253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [9269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [9271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1001), + [9274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(905), + [9277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1022), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [9284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 209), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [9288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 208), + [9290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 313), + [9292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 314), + [9294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), + [9296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319), + [9298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [9300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 325), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [9304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(907), + [9307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1059), + [9310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 332), + [9312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [9322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(899), + [9325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 333), + [9327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 337), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [9333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), + [9335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [9339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 342), + [9341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [9343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 255), + [9345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1080), + [9348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [9356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 345), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [9360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [9372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [9376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 353), + [9378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), + [9380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [9382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [9392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [9394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), + [9397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5272), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [9408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 316), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [9412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(908), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [9433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [9435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [9437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [9439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [9479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 242), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [9489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 186), + [9491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 186), + [9493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187), + [9495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [9509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1055), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [9540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), + [9542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), SHIFT_REPEAT(374), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [9591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [9593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [9608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [9612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 130), + [9614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 60), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [9620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 232), + [9622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 232), SHIFT_REPEAT(5357), + [9625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 232), + [9627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), + [9629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(259), + [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [9638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [9640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5445), + [9643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [9645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5446), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [9664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 48), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [9670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 63), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [9678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5463), + [9681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [9683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5463), + [9686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5464), + [9689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [9691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5464), + [9694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 107), + [9696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(490), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [9705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [9717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 281), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [9723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 97), + [9725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4105), + [9728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [9730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [9744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [9752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [9772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 48), + [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), + [9776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 90), + [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [9784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 179), + [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 207), + [9800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [9802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220), + [9804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 123), + [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 222), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [9810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3720), + [9813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), + [9817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(880), + [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [9822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [9824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 234), SHIFT_REPEAT(3106), + [9827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 234), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [9833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [9835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [9837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [9839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 247), + [9841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 248), + [9843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [9845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [9851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 261), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [9875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 263), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [9879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3939), + [9882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [9884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [9886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [9888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [9890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [9892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 284), + [9894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 285), + [9896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), + [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), + [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), + [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 297), + [9904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [9916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [9926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), + [9928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [9930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), + [9932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318), + [9934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5494), + [9937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [9939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 310), + [9941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 320), + [9943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 321), + [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 323), + [9947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 324), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [9959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [10013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [10025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(408), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [10054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), + [10056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 336), + [10058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 338), + [10060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [10063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [10075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 90), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [10079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), + [10081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 340), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [10091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [10099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [10103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [10105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [10107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 356), + [10109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 341), + [10111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 351), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [10117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 343), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [10121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [10153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 354), + [10155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 352), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [10171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 85), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [10205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 344), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [10209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), + [10212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [10214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), + [10217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [10221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [10235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 349), + [10237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [10241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 60), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [10263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [10273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [10280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(6096), + [10283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [10325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [10343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [10423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 60), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [10433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [10435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), + [10437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 98), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [10473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [10499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [10501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 129), + [10503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [10511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [10521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 149), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [10541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [10543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 89), + [10545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 153), + [10547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 149), + [10549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 155), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [10571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 197), + [10573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 202), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [10591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 197), + [10593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [10599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), + [10601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 181), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [10645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [10689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7469), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7498), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [10845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [10861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [10905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [10951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [11037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [11237] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), }; enum ts_external_scanner_symbol_identifiers { diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index 519eba76..8d57f9c5 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -6586,17 +6586,6 @@ { "type": "SEQ", "members": [ - { - "type": "REPEAT", - "content": { - "type": "FIELD", - "name": "decorator", - "content": { - "type": "SYMBOL", - "name": "decorator" - } - } - }, { "type": "SYMBOL", "name": "method_definition" @@ -6873,6 +6862,17 @@ "content": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, { "type": "CHOICE", "members": [ diff --git a/typescript/src/node-types.json b/typescript/src/node-types.json index 5cb6f04f..915edabb 100644 --- a/typescript/src/node-types.json +++ b/typescript/src/node-types.json @@ -1403,18 +1403,7 @@ { "type": "class_body", "named": true, - "fields": { - "decorator": { - "multiple": true, - "required": false, - "types": [ - { - "type": "decorator", - "named": true - } - ] - } - }, + "fields": {}, "children": { "multiple": true, "required": false, @@ -3682,6 +3671,16 @@ } ] }, + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, "name": { "multiple": false, "required": true, diff --git a/typescript/src/parser.c b/typescript/src/parser.c index de93596a..8c3350ff 100644 --- a/typescript/src/parser.c +++ b/typescript/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5830 +#define STATE_COUNT 7474 #define LARGE_STATE_COUNT 1168 #define SYMBOL_COUNT 379 #define ALIAS_COUNT 7 #define TOKEN_COUNT 167 #define EXTERNAL_TOKEN_COUNT 9 #define FIELD_COUNT 43 -#define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 335 +#define MAX_ALIAS_SEQUENCE_LENGTH 11 +#define PRODUCTION_ID_COUNT 347 enum ts_symbol_identifiers { sym_identifier = 1, @@ -2929,230 +2929,242 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [107] = {.index = 181, .length = 2}, [108] = {.index = 183, .length = 3}, [109] = {.index = 186, .length = 4}, - [110] = {.index = 190, .length = 1}, - [111] = {.index = 191, .length = 2}, - [112] = {.index = 193, .length = 1}, - [113] = {.index = 194, .length = 2}, - [114] = {.index = 196, .length = 3}, - [115] = {.index = 199, .length = 2}, - [116] = {.index = 201, .length = 4}, - [117] = {.index = 205, .length = 2}, - [118] = {.index = 207, .length = 2}, - [119] = {.index = 209, .length = 4}, - [120] = {.index = 207, .length = 2}, - [121] = {.index = 213, .length = 4}, - [122] = {.index = 217, .length = 4}, - [123] = {.index = 221, .length = 5}, - [124] = {.index = 226, .length = 3}, + [110] = {.index = 190, .length = 2}, + [111] = {.index = 192, .length = 2}, + [112] = {.index = 194, .length = 3}, + [113] = {.index = 197, .length = 2}, + [114] = {.index = 199, .length = 4}, + [115] = {.index = 203, .length = 2}, + [116] = {.index = 205, .length = 2}, + [117] = {.index = 207, .length = 4}, + [118] = {.index = 205, .length = 2}, + [119] = {.index = 211, .length = 4}, + [120] = {.index = 215, .length = 4}, + [121] = {.index = 219, .length = 5}, + [122] = {.index = 224, .length = 3}, + [123] = {.index = 227, .length = 2}, + [124] = {.index = 227, .length = 2}, [125] = {.index = 229, .length = 2}, - [126] = {.index = 229, .length = 2}, - [127] = {.index = 231, .length = 2}, - [128] = {.index = 233, .length = 1}, - [129] = {.index = 234, .length = 2}, - [130] = {.index = 236, .length = 4}, - [131] = {.index = 240, .length = 4}, - [132] = {.index = 244, .length = 4}, - [133] = {.index = 248, .length = 2}, - [134] = {.index = 250, .length = 2}, - [135] = {.index = 252, .length = 2}, - [136] = {.index = 254, .length = 3}, - [137] = {.index = 257, .length = 2}, - [138] = {.index = 259, .length = 4}, - [139] = {.index = 259, .length = 4}, - [140] = {.index = 263, .length = 4}, - [141] = {.index = 263, .length = 4}, - [142] = {.index = 156, .length = 2}, - [143] = {.index = 267, .length = 1}, - [144] = {.index = 267, .length = 1}, - [145] = {.index = 194, .length = 2}, - [146] = {.index = 196, .length = 3}, - [147] = {.index = 268, .length = 2}, - [148] = {.index = 270, .length = 3}, - [149] = {.index = 273, .length = 2}, - [150] = {.index = 275, .length = 3}, - [151] = {.index = 278, .length = 2}, - [152] = {.index = 280, .length = 3}, - [153] = {.index = 283, .length = 1}, - [154] = {.index = 284, .length = 2}, - [155] = {.index = 286, .length = 2}, - [156] = {.index = 288, .length = 5}, - [157] = {.index = 284, .length = 2}, - [158] = {.index = 293, .length = 1}, - [159] = {.index = 294, .length = 4}, - [160] = {.index = 298, .length = 2}, - [161] = {.index = 300, .length = 1}, - [162] = {.index = 301, .length = 2}, - [163] = {.index = 303, .length = 2}, - [164] = {.index = 305, .length = 2}, - [165] = {.index = 307, .length = 4}, - [166] = {.index = 311, .length = 2}, - [167] = {.index = 313, .length = 3}, - [168] = {.index = 316, .length = 3}, - [169] = {.index = 319, .length = 3}, - [170] = {.index = 322, .length = 4}, - [171] = {.index = 326, .length = 4}, - [172] = {.index = 330, .length = 4}, - [173] = {.index = 334, .length = 5}, - [174] = {.index = 339, .length = 2}, - [175] = {.index = 341, .length = 2}, - [176] = {.index = 343, .length = 1}, - [177] = {.index = 344, .length = 4}, - [178] = {.index = 344, .length = 4}, - [179] = {.index = 348, .length = 3}, - [180] = {.index = 351, .length = 2}, - [181] = {.index = 353, .length = 3}, - [182] = {.index = 356, .length = 2}, - [183] = {.index = 358, .length = 3}, - [184] = {.index = 361, .length = 2}, - [185] = {.index = 361, .length = 2}, - [186] = {.index = 319, .length = 3}, - [187] = {.index = 363, .length = 3}, - [188] = {.index = 366, .length = 3}, - [189] = {.index = 151, .length = 2}, - [190] = {.index = 369, .length = 2}, - [191] = {.index = 371, .length = 3}, - [192] = {.index = 374, .length = 4}, - [193] = {.index = 378, .length = 3}, - [194] = {.index = 381, .length = 3}, - [195] = {.index = 384, .length = 2}, - [196] = {.index = 386, .length = 3}, - [197] = {.index = 389, .length = 5}, - [198] = {.index = 384, .length = 2}, - [199] = {.index = 394, .length = 3}, - [200] = {.index = 394, .length = 3}, - [201] = {.index = 397, .length = 3}, - [202] = {.index = 400, .length = 2}, - [203] = {.index = 402, .length = 4}, - [204] = {.index = 151, .length = 2}, - [205] = {.index = 406, .length = 1}, - [206] = {.index = 407, .length = 2}, - [207] = {.index = 409, .length = 2}, - [208] = {.index = 411, .length = 2}, - [209] = {.index = 413, .length = 2}, - [210] = {.index = 415, .length = 3}, - [211] = {.index = 418, .length = 1}, - [212] = {.index = 419, .length = 3}, - [213] = {.index = 422, .length = 2}, - [214] = {.index = 424, .length = 3}, - [215] = {.index = 427, .length = 3}, - [216] = {.index = 430, .length = 3}, - [217] = {.index = 433, .length = 3}, - [218] = {.index = 436, .length = 4}, - [219] = {.index = 440, .length = 5}, - [220] = {.index = 445, .length = 3}, - [221] = {.index = 448, .length = 2}, - [222] = {.index = 450, .length = 2}, - [223] = {.index = 452, .length = 4}, - [224] = {.index = 456, .length = 4}, - [225] = {.index = 460, .length = 4}, - [226] = {.index = 464, .length = 3}, - [227] = {.index = 467, .length = 2}, - [228] = {.index = 469, .length = 3}, - [229] = {.index = 472, .length = 2}, - [230] = {.index = 474, .length = 2}, - [231] = {.index = 476, .length = 2}, - [232] = {.index = 478, .length = 1}, - [233] = {.index = 479, .length = 4}, - [234] = {.index = 483, .length = 3}, - [235] = {.index = 486, .length = 4}, - [236] = {.index = 490, .length = 5}, - [237] = {.index = 495, .length = 1}, - [238] = {.index = 496, .length = 2}, - [239] = {.index = 498, .length = 4}, - [240] = {.index = 502, .length = 4}, - [241] = {.index = 506, .length = 2}, - [242] = {.index = 508, .length = 4}, - [243] = {.index = 512, .length = 4}, - [244] = {.index = 516, .length = 2}, - [245] = {.index = 518, .length = 2}, - [246] = {.index = 520, .length = 3}, - [247] = {.index = 523, .length = 3}, - [248] = {.index = 526, .length = 2}, - [249] = {.index = 528, .length = 2}, - [250] = {.index = 530, .length = 1}, - [251] = {.index = 531, .length = 1}, - [252] = {.index = 532, .length = 3}, - [253] = {.index = 535, .length = 3}, - [254] = {.index = 538, .length = 3}, - [255] = {.index = 541, .length = 3}, - [256] = {.index = 544, .length = 4}, - [257] = {.index = 548, .length = 2}, - [258] = {.index = 550, .length = 4}, - [259] = {.index = 554, .length = 3}, - [260] = {.index = 557, .length = 2}, - [261] = {.index = 559, .length = 4}, - [262] = {.index = 563, .length = 4}, - [263] = {.index = 567, .length = 4}, - [264] = {.index = 571, .length = 3}, - [266] = {.index = 574, .length = 4}, - [267] = {.index = 578, .length = 5}, - [268] = {.index = 583, .length = 5}, - [269] = {.index = 588, .length = 5}, - [270] = {.index = 593, .length = 3}, - [271] = {.index = 596, .length = 3}, - [272] = {.index = 599, .length = 3}, - [273] = {.index = 596, .length = 3}, - [274] = {.index = 602, .length = 2}, - [275] = {.index = 604, .length = 4}, - [276] = {.index = 608, .length = 4}, - [277] = {.index = 612, .length = 3}, - [278] = {.index = 615, .length = 2}, - [279] = {.index = 617, .length = 2}, - [280] = {.index = 619, .length = 3}, - [281] = {.index = 622, .length = 2}, - [282] = {.index = 624, .length = 2}, - [283] = {.index = 626, .length = 1}, - [284] = {.index = 627, .length = 3}, - [285] = {.index = 630, .length = 3}, - [286] = {.index = 633, .length = 4}, - [287] = {.index = 637, .length = 4}, - [288] = {.index = 641, .length = 3}, - [289] = {.index = 644, .length = 3}, - [290] = {.index = 647, .length = 2}, - [291] = {.index = 649, .length = 4}, - [292] = {.index = 653, .length = 5}, - [293] = {.index = 658, .length = 5}, - [294] = {.index = 663, .length = 4}, - [295] = {.index = 667, .length = 4}, - [296] = {.index = 671, .length = 3}, - [297] = {.index = 674, .length = 3}, - [298] = {.index = 674, .length = 3}, - [299] = {.index = 677, .length = 2}, - [300] = {.index = 679, .length = 2}, - [301] = {.index = 681, .length = 3}, - [302] = {.index = 684, .length = 2}, - [303] = {.index = 686, .length = 2}, - [304] = {.index = 688, .length = 4}, - [305] = {.index = 692, .length = 3}, - [306] = {.index = 695, .length = 3}, - [307] = {.index = 698, .length = 4}, - [308] = {.index = 702, .length = 3}, - [309] = {.index = 705, .length = 3}, - [310] = {.index = 708, .length = 2}, - [311] = {.index = 710, .length = 5}, - [312] = {.index = 715, .length = 5}, - [313] = {.index = 720, .length = 4}, - [314] = {.index = 720, .length = 4}, - [315] = {.index = 724, .length = 4}, - [316] = {.index = 728, .length = 3}, - [317] = {.index = 731, .length = 2}, - [318] = {.index = 733, .length = 2}, - [319] = {.index = 735, .length = 3}, - [320] = {.index = 738, .length = 4}, - [321] = {.index = 742, .length = 4}, - [322] = {.index = 746, .length = 3}, - [323] = {.index = 749, .length = 3}, - [324] = {.index = 752, .length = 4}, - [325] = {.index = 756, .length = 3}, - [326] = {.index = 759, .length = 3}, - [327] = {.index = 762, .length = 5}, - [328] = {.index = 767, .length = 3}, - [329] = {.index = 770, .length = 4}, - [330] = {.index = 774, .length = 4}, - [331] = {.index = 778, .length = 3}, - [332] = {.index = 781, .length = 3}, - [333] = {.index = 784, .length = 4}, - [334] = {.index = 788, .length = 4}, + [126] = {.index = 231, .length = 1}, + [127] = {.index = 232, .length = 2}, + [128] = {.index = 234, .length = 4}, + [129] = {.index = 238, .length = 4}, + [130] = {.index = 242, .length = 4}, + [131] = {.index = 246, .length = 2}, + [132] = {.index = 248, .length = 2}, + [133] = {.index = 250, .length = 2}, + [134] = {.index = 252, .length = 3}, + [135] = {.index = 255, .length = 2}, + [136] = {.index = 257, .length = 4}, + [137] = {.index = 257, .length = 4}, + [138] = {.index = 261, .length = 4}, + [139] = {.index = 261, .length = 4}, + [140] = {.index = 156, .length = 2}, + [141] = {.index = 265, .length = 1}, + [142] = {.index = 265, .length = 1}, + [143] = {.index = 192, .length = 2}, + [144] = {.index = 194, .length = 3}, + [145] = {.index = 266, .length = 2}, + [146] = {.index = 268, .length = 3}, + [147] = {.index = 271, .length = 2}, + [148] = {.index = 273, .length = 3}, + [149] = {.index = 276, .length = 2}, + [150] = {.index = 278, .length = 3}, + [151] = {.index = 281, .length = 1}, + [152] = {.index = 282, .length = 2}, + [153] = {.index = 284, .length = 2}, + [154] = {.index = 286, .length = 5}, + [155] = {.index = 291, .length = 6}, + [156] = {.index = 282, .length = 2}, + [157] = {.index = 297, .length = 1}, + [158] = {.index = 298, .length = 4}, + [159] = {.index = 302, .length = 2}, + [160] = {.index = 304, .length = 1}, + [161] = {.index = 305, .length = 2}, + [162] = {.index = 307, .length = 2}, + [163] = {.index = 309, .length = 2}, + [164] = {.index = 311, .length = 4}, + [165] = {.index = 315, .length = 2}, + [166] = {.index = 317, .length = 3}, + [167] = {.index = 320, .length = 3}, + [168] = {.index = 323, .length = 3}, + [169] = {.index = 326, .length = 4}, + [170] = {.index = 330, .length = 4}, + [171] = {.index = 334, .length = 4}, + [172] = {.index = 338, .length = 5}, + [173] = {.index = 343, .length = 2}, + [174] = {.index = 345, .length = 2}, + [175] = {.index = 347, .length = 1}, + [176] = {.index = 348, .length = 4}, + [177] = {.index = 348, .length = 4}, + [178] = {.index = 352, .length = 3}, + [179] = {.index = 355, .length = 2}, + [180] = {.index = 357, .length = 3}, + [181] = {.index = 360, .length = 2}, + [182] = {.index = 362, .length = 3}, + [183] = {.index = 365, .length = 2}, + [184] = {.index = 365, .length = 2}, + [185] = {.index = 323, .length = 3}, + [186] = {.index = 367, .length = 3}, + [187] = {.index = 370, .length = 3}, + [188] = {.index = 151, .length = 2}, + [189] = {.index = 373, .length = 2}, + [190] = {.index = 375, .length = 3}, + [191] = {.index = 378, .length = 4}, + [192] = {.index = 382, .length = 3}, + [193] = {.index = 385, .length = 3}, + [194] = {.index = 388, .length = 2}, + [195] = {.index = 390, .length = 3}, + [196] = {.index = 393, .length = 5}, + [197] = {.index = 398, .length = 6}, + [198] = {.index = 404, .length = 6}, + [199] = {.index = 388, .length = 2}, + [200] = {.index = 410, .length = 3}, + [201] = {.index = 410, .length = 3}, + [202] = {.index = 413, .length = 3}, + [203] = {.index = 416, .length = 2}, + [204] = {.index = 418, .length = 4}, + [205] = {.index = 151, .length = 2}, + [206] = {.index = 422, .length = 1}, + [207] = {.index = 423, .length = 2}, + [208] = {.index = 425, .length = 2}, + [209] = {.index = 427, .length = 2}, + [210] = {.index = 429, .length = 2}, + [211] = {.index = 431, .length = 3}, + [212] = {.index = 434, .length = 1}, + [213] = {.index = 435, .length = 3}, + [214] = {.index = 438, .length = 2}, + [215] = {.index = 440, .length = 3}, + [216] = {.index = 443, .length = 3}, + [217] = {.index = 446, .length = 3}, + [218] = {.index = 449, .length = 3}, + [219] = {.index = 452, .length = 4}, + [220] = {.index = 456, .length = 5}, + [221] = {.index = 461, .length = 3}, + [222] = {.index = 464, .length = 2}, + [223] = {.index = 466, .length = 2}, + [224] = {.index = 468, .length = 4}, + [225] = {.index = 472, .length = 4}, + [226] = {.index = 476, .length = 4}, + [227] = {.index = 480, .length = 3}, + [228] = {.index = 483, .length = 2}, + [229] = {.index = 485, .length = 3}, + [230] = {.index = 488, .length = 2}, + [231] = {.index = 490, .length = 2}, + [232] = {.index = 492, .length = 2}, + [233] = {.index = 494, .length = 1}, + [234] = {.index = 495, .length = 4}, + [235] = {.index = 499, .length = 3}, + [236] = {.index = 502, .length = 4}, + [237] = {.index = 506, .length = 5}, + [238] = {.index = 511, .length = 6}, + [239] = {.index = 517, .length = 6}, + [240] = {.index = 523, .length = 1}, + [241] = {.index = 524, .length = 2}, + [242] = {.index = 526, .length = 4}, + [243] = {.index = 530, .length = 4}, + [244] = {.index = 534, .length = 2}, + [245] = {.index = 536, .length = 4}, + [246] = {.index = 540, .length = 4}, + [247] = {.index = 544, .length = 2}, + [248] = {.index = 546, .length = 2}, + [249] = {.index = 548, .length = 3}, + [250] = {.index = 551, .length = 3}, + [251] = {.index = 554, .length = 2}, + [252] = {.index = 556, .length = 2}, + [253] = {.index = 558, .length = 1}, + [254] = {.index = 559, .length = 1}, + [255] = {.index = 560, .length = 3}, + [256] = {.index = 563, .length = 3}, + [257] = {.index = 566, .length = 3}, + [258] = {.index = 569, .length = 3}, + [259] = {.index = 572, .length = 4}, + [260] = {.index = 576, .length = 2}, + [261] = {.index = 578, .length = 4}, + [262] = {.index = 582, .length = 3}, + [263] = {.index = 585, .length = 2}, + [264] = {.index = 587, .length = 4}, + [265] = {.index = 591, .length = 4}, + [266] = {.index = 595, .length = 4}, + [267] = {.index = 599, .length = 3}, + [269] = {.index = 602, .length = 4}, + [270] = {.index = 606, .length = 5}, + [271] = {.index = 611, .length = 5}, + [272] = {.index = 616, .length = 6}, + [273] = {.index = 622, .length = 6}, + [274] = {.index = 628, .length = 5}, + [275] = {.index = 633, .length = 3}, + [276] = {.index = 636, .length = 3}, + [277] = {.index = 639, .length = 3}, + [278] = {.index = 636, .length = 3}, + [279] = {.index = 642, .length = 2}, + [280] = {.index = 644, .length = 4}, + [281] = {.index = 648, .length = 4}, + [282] = {.index = 652, .length = 3}, + [283] = {.index = 655, .length = 2}, + [284] = {.index = 657, .length = 2}, + [285] = {.index = 659, .length = 3}, + [286] = {.index = 662, .length = 2}, + [287] = {.index = 664, .length = 2}, + [288] = {.index = 666, .length = 1}, + [289] = {.index = 667, .length = 3}, + [290] = {.index = 670, .length = 3}, + [291] = {.index = 673, .length = 4}, + [292] = {.index = 677, .length = 4}, + [293] = {.index = 681, .length = 3}, + [294] = {.index = 684, .length = 3}, + [295] = {.index = 687, .length = 2}, + [296] = {.index = 689, .length = 4}, + [297] = {.index = 693, .length = 5}, + [298] = {.index = 698, .length = 5}, + [299] = {.index = 703, .length = 6}, + [300] = {.index = 709, .length = 6}, + [301] = {.index = 715, .length = 4}, + [302] = {.index = 719, .length = 4}, + [303] = {.index = 723, .length = 3}, + [304] = {.index = 726, .length = 3}, + [305] = {.index = 726, .length = 3}, + [306] = {.index = 729, .length = 2}, + [307] = {.index = 731, .length = 2}, + [308] = {.index = 733, .length = 3}, + [309] = {.index = 736, .length = 2}, + [310] = {.index = 738, .length = 2}, + [311] = {.index = 740, .length = 4}, + [312] = {.index = 744, .length = 3}, + [313] = {.index = 747, .length = 3}, + [314] = {.index = 750, .length = 4}, + [315] = {.index = 754, .length = 3}, + [316] = {.index = 757, .length = 3}, + [317] = {.index = 760, .length = 2}, + [318] = {.index = 762, .length = 5}, + [319] = {.index = 767, .length = 5}, + [320] = {.index = 772, .length = 6}, + [321] = {.index = 778, .length = 6}, + [322] = {.index = 784, .length = 4}, + [323] = {.index = 784, .length = 4}, + [324] = {.index = 788, .length = 4}, + [325] = {.index = 792, .length = 3}, + [326] = {.index = 795, .length = 2}, + [327] = {.index = 797, .length = 2}, + [328] = {.index = 799, .length = 3}, + [329] = {.index = 802, .length = 4}, + [330] = {.index = 806, .length = 4}, + [331] = {.index = 810, .length = 3}, + [332] = {.index = 813, .length = 3}, + [333] = {.index = 816, .length = 4}, + [334] = {.index = 820, .length = 3}, + [335] = {.index = 823, .length = 3}, + [336] = {.index = 826, .length = 5}, + [337] = {.index = 831, .length = 6}, + [338] = {.index = 837, .length = 6}, + [339] = {.index = 843, .length = 3}, + [340] = {.index = 846, .length = 4}, + [341] = {.index = 850, .length = 4}, + [342] = {.index = 854, .length = 3}, + [343] = {.index = 857, .length = 3}, + [344] = {.index = 860, .length = 4}, + [345] = {.index = 864, .length = 6}, + [346] = {.index = 870, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3437,807 +3449,901 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type_parameters, 1, .inherited = true}, [190] = {field_decorator, 0, .inherited = true}, - [191] = - {field_decorator, 0, .inherited = true}, {field_name, 1}, - [193] = - {field_decorator, 1, .inherited = true}, - [194] = + [192] = {field_body, 3}, {field_name, 1}, - [196] = + [194] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [199] = + [197] = {field_type_arguments, 1}, {field_value, 0}, - [201] = + [199] = {field_type_arguments, 1, .inherited = true}, {field_type_arguments, 2, .inherited = true}, {field_value, 1, .inherited = true}, {field_value, 2, .inherited = true}, - [205] = + [203] = {field_body, 3}, {field_type_parameters, 1}, - [207] = + [205] = {field_body, 3}, {field_parameter, 1}, - [209] = + [207] = {field_body, 3}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [213] = + [211] = {field_body, 3}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [217] = + [215] = {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [221] = + [219] = {field_body, 3}, {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [226] = + [224] = {field_arguments, 3}, {field_constructor, 1}, {field_type_arguments, 2}, - [229] = + [227] = {field_left, 1}, {field_right, 3}, - [231] = + [229] = {field_flags, 3}, {field_pattern, 1}, - [233] = + [231] = {field_parameters, 1}, - [234] = + [232] = {field_function, 0}, {field_type_arguments, 1}, - [236] = + [234] = {field_function, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, {field_type_arguments, 1}, - [240] = + [238] = {field_arguments, 1}, {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, - [244] = + [242] = {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, {field_type_arguments, 1}, - [248] = + [246] = {field_name, 1}, {field_value, 2}, - [250] = + [248] = {field_constraint, 2}, {field_name, 1}, - [252] = + [250] = {field_module, 0}, {field_name, 2}, - [254] = + [252] = {field_constraint, 1}, {field_name, 0}, {field_value, 2}, - [257] = + [255] = {field_parameters, 0}, {field_return_type, 2}, - [259] = + [257] = {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, {field_property, 2}, - [263] = + [261] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_object, 0}, {field_property, 2}, - [267] = + [265] = {field_type, 1}, - [268] = + [266] = {field_index, 2}, {field_object, 0}, - [270] = + [268] = {field_arguments, 3}, {field_function, 0}, {field_type_arguments, 2}, - [273] = + [271] = {field_declaration, 3}, {field_decorator, 0, .inherited = true}, - [275] = + [273] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [278] = + [276] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [280] = + [278] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [283] = + [281] = {field_source, 3, .inherited = true}, - [284] = + [282] = {field_alias, 2}, {field_name, 0}, - [286] = + [284] = {field_name, 1}, {field_value, 3}, - [288] = + [286] = {field_body, 3}, {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [293] = + [291] = + {field_body, 3}, + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_parameters, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + {field_type_parameters, 2, .inherited = true}, + [297] = {field_pattern, 3}, - [294] = + [298] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 2}, {field_value, 3, .inherited = true}, - [298] = + [302] = {field_decorator, 0, .inherited = true}, {field_pattern, 3}, - [300] = + [304] = {field_name, 2}, - [301] = + [305] = {field_name, 1}, {field_value, 2, .inherited = true}, - [303] = + [307] = {field_name, 1}, {field_type, 2}, - [305] = + [309] = {field_name, 0}, {field_value, 2, .inherited = true}, - [307] = + [311] = {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [311] = + [315] = {field_decorator, 0, .inherited = true}, {field_name, 2}, - [313] = + [317] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 2, .inherited = true}, - [316] = + [320] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 2}, - [319] = + [323] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [322] = + [326] = {field_type_arguments, 0, .inherited = true}, {field_type_arguments, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [326] = + [330] = {field_body, 4}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [330] = + [334] = {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [334] = + [338] = {field_body, 4}, {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [339] = + [343] = {field_parameters, 1}, {field_type, 2}, - [341] = + [345] = {field_parameters, 2}, {field_type_parameters, 1}, - [343] = + [347] = {field_parameters, 2}, - [344] = + [348] = {field_index, 0, .inherited = true}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 2}, - [348] = + [352] = {field_constraint, 2}, {field_name, 1}, {field_value, 3}, - [351] = + [355] = {field_parameters, 1}, {field_type, 3}, - [353] = + [357] = {field_parameters, 1}, {field_return_type, 3}, {field_type_parameters, 0}, - [356] = + [360] = {field_body, 4}, {field_name, 2}, - [358] = + [362] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [361] = + [365] = {field_type, 1}, {field_type, 2, .inherited = true}, - [363] = + [367] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [366] = + [370] = {field_index, 3}, {field_object, 0}, {field_optional_chain, 1}, - [369] = + [373] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [371] = + [375] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [374] = + [378] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [378] = + [382] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [381] = + [385] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [384] = + [388] = {field_alias, 3}, {field_name, 1}, - [386] = + [390] = {field_name, 1}, {field_type_parameters, 2}, {field_value, 4}, - [389] = + [393] = {field_body, 4}, {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [394] = + [398] = + {field_body, 4}, + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_parameters, 3, .inherited = true}, + {field_return_type, 3, .inherited = true}, + {field_type_parameters, 3, .inherited = true}, + [404] = + {field_body, 4}, + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_parameters, 3, .inherited = true}, + {field_return_type, 3, .inherited = true}, + {field_type_parameters, 3, .inherited = true}, + [410] = {field_left, 1}, {field_operator, 2}, {field_right, 3}, - [397] = + [413] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [400] = + [416] = {field_decorator, 0, .inherited = true}, {field_pattern, 4}, - [402] = + [418] = {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [406] = + [422] = {field_type, 3}, - [407] = + [423] = {field_name, 2}, {field_value, 3, .inherited = true}, - [409] = + [425] = {field_name, 2}, {field_type, 3}, - [411] = + [427] = {field_name, 1}, {field_value, 3, .inherited = true}, - [413] = + [429] = {field_name, 1}, {field_type, 3}, - [415] = + [431] = {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [418] = + [434] = {field_name, 3}, - [419] = + [435] = {field_name, 0}, {field_type, 2}, {field_value, 3, .inherited = true}, - [422] = + [438] = {field_decorator, 0, .inherited = true}, {field_name, 3}, - [424] = + [440] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_value, 3, .inherited = true}, - [427] = + [443] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 3}, - [430] = + [446] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 3, .inherited = true}, - [433] = + [449] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 3}, - [436] = + [452] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [440] = + [456] = {field_body, 5}, {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [445] = + [461] = {field_parameters, 2}, {field_type, 3}, {field_type_parameters, 1}, - [448] = + [464] = {field_parameters, 2}, {field_type, 3}, - [450] = + [466] = {field_parameters, 3}, {field_type_parameters, 2}, - [452] = + [468] = {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [456] = + [472] = {field_index, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, - [460] = + [476] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, - [464] = + [480] = {field_parameters, 2}, {field_type, 4}, {field_type_parameters, 1}, - [467] = + [483] = {field_parameters, 2}, {field_type, 4}, - [469] = + [485] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [472] = + [488] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [474] = + [490] = {field_name, 1}, {field_name, 2, .inherited = true}, - [476] = + [492] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [478] = + [494] = {field_name, 2, .inherited = true}, - [479] = + [495] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [483] = + [499] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [486] = + [502] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [490] = + [506] = {field_body, 5}, {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [495] = + [511] = + {field_body, 5}, + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_parameters, 4, .inherited = true}, + {field_return_type, 4, .inherited = true}, + {field_type_parameters, 4, .inherited = true}, + [517] = + {field_body, 5}, + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_parameters, 4, .inherited = true}, + {field_return_type, 4, .inherited = true}, + {field_type_parameters, 4, .inherited = true}, + [523] = {field_source, 4}, - [496] = + [524] = {field_body, 3}, {field_value, 1}, - [498] = + [526] = {field_kind, 1}, {field_left, 2}, {field_operator, 3}, {field_right, 4}, - [502] = + [530] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [506] = + [534] = {field_body, 4}, {field_parameter, 2}, - [508] = + [536] = {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [512] = + [540] = {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [516] = + [544] = {field_name, 2}, {field_value, 4, .inherited = true}, - [518] = + [546] = {field_name, 2}, {field_type, 4}, - [520] = + [548] = {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [523] = + [551] = {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [526] = + [554] = {field_name, 3}, {field_value, 4, .inherited = true}, - [528] = + [556] = {field_name, 3}, {field_type, 4}, - [530] = + [558] = {field_type, 4}, - [531] = + [559] = {field_name, 4}, - [532] = + [560] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 4, .inherited = true}, - [535] = + [563] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, - [538] = + [566] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_value, 4, .inherited = true}, - [541] = + [569] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 4}, - [544] = + [572] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [548] = + [576] = {field_decorator, 0, .inherited = true}, {field_name, 4}, - [550] = + [578] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [554] = + [582] = {field_parameters, 3}, {field_type, 4}, {field_type_parameters, 2}, - [557] = + [585] = {field_index, 3}, {field_object, 0}, - [559] = + [587] = {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [563] = + [591] = {field_index, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, - [567] = + [595] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, - [571] = + [599] = {field_parameters, 3}, {field_type, 5}, {field_type_parameters, 2}, - [574] = + [602] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [578] = + [606] = + {field_body, 6}, + {field_name, 3}, + {field_parameters, 5, .inherited = true}, + {field_return_type, 5, .inherited = true}, + {field_type_parameters, 5, .inherited = true}, + [611] = + {field_body, 6}, + {field_name, 4}, + {field_parameters, 5, .inherited = true}, + {field_return_type, 5, .inherited = true}, + {field_type_parameters, 5, .inherited = true}, + [616] = {field_body, 6}, + {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [583] = + [622] = {field_body, 6}, + {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [588] = + [628] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, {field_value, 3, .inherited = true}, - [593] = + [633] = {field_body, 5}, {field_parameter, 2}, {field_type, 3}, - [596] = + [636] = {field_index_type, 3}, {field_name, 1}, {field_type, 5}, - [599] = + [639] = {field_alias, 4}, {field_name, 0}, {field_type, 2}, - [602] = + [642] = {field_sign, 0}, {field_type, 5}, - [604] = + [644] = {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [608] = + [648] = {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [612] = + [652] = {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [615] = + [655] = {field_name, 3}, {field_value, 5, .inherited = true}, - [617] = + [657] = {field_name, 3}, {field_type, 5}, - [619] = + [659] = {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [622] = + [662] = {field_name, 4}, {field_value, 5, .inherited = true}, - [624] = + [664] = {field_name, 4}, {field_type, 5}, - [626] = + [666] = {field_name, 5}, - [627] = + [667] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 5, .inherited = true}, - [630] = + [670] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, - [633] = + [673] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [637] = + [677] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [641] = + [681] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 5, .inherited = true}, - [644] = + [684] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, - [647] = + [687] = {field_decorator, 0, .inherited = true}, {field_name, 5}, - [649] = + [689] = {field_alternative, 6}, {field_consequence, 4}, {field_left, 0}, {field_right, 2}, - [653] = + [693] = {field_body, 7}, {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [658] = + [698] = {field_body, 7}, {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [663] = + [703] = + {field_body, 7}, + {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [667] = + [709] = + {field_body, 7}, + {field_decorator, 0, .inherited = true}, + {field_name, 5}, + {field_parameters, 6, .inherited = true}, + {field_return_type, 6, .inherited = true}, + {field_type_parameters, 6, .inherited = true}, + [715] = + {field_name, 4}, + {field_parameters, 6, .inherited = true}, + {field_return_type, 6, .inherited = true}, + {field_type_parameters, 6, .inherited = true}, + [719] = {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [671] = + [723] = {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [674] = + [726] = {field_index_type, 4}, {field_name, 2}, {field_type, 6}, - [677] = + [729] = {field_name, 4}, {field_value, 6, .inherited = true}, - [679] = + [731] = {field_name, 4}, {field_type, 6}, - [681] = + [733] = {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [684] = + [736] = {field_name, 5}, {field_value, 6, .inherited = true}, - [686] = + [738] = {field_name, 5}, {field_type, 6}, - [688] = + [740] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [692] = + [744] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 6, .inherited = true}, - [695] = + [747] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, - [698] = + [750] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [702] = + [754] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 6, .inherited = true}, - [705] = + [757] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, - [708] = + [760] = {field_decorator, 0, .inherited = true}, {field_name, 6}, - [710] = + [762] = {field_body, 8}, {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [715] = + [767] = + {field_body, 8}, + {field_name, 6}, + {field_parameters, 7, .inherited = true}, + {field_return_type, 7, .inherited = true}, + {field_type_parameters, 7, .inherited = true}, + [772] = + {field_body, 8}, + {field_decorator, 0, .inherited = true}, + {field_name, 5}, + {field_parameters, 7, .inherited = true}, + {field_return_type, 7, .inherited = true}, + {field_type_parameters, 7, .inherited = true}, + [778] = {field_body, 8}, + {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [720] = + [784] = {field_index_type, 5}, {field_name, 3}, {field_sign, 0}, {field_type, 7}, - [724] = + [788] = {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [728] = + [792] = {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [731] = + [795] = {field_name, 5}, {field_value, 7, .inherited = true}, - [733] = + [797] = {field_name, 5}, {field_type, 7}, - [735] = + [799] = {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [738] = + [802] = {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [742] = + [806] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [746] = + [810] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 7, .inherited = true}, - [749] = + [813] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, - [752] = + [816] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [756] = + [820] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_value, 7, .inherited = true}, - [759] = + [823] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 7}, - [762] = + [826] = {field_body, 9}, {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [767] = + [831] = + {field_body, 9}, + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_parameters, 8, .inherited = true}, + {field_return_type, 8, .inherited = true}, + {field_type_parameters, 8, .inherited = true}, + [837] = + {field_body, 9}, + {field_decorator, 0, .inherited = true}, + {field_name, 7}, + {field_parameters, 8, .inherited = true}, + {field_return_type, 8, .inherited = true}, + {field_type_parameters, 8, .inherited = true}, + [843] = {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, - [770] = + [846] = {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [774] = + [850] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, - [778] = + [854] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_value, 8, .inherited = true}, - [781] = + [857] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 8}, - [784] = + [860] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 7}, {field_value, 8, .inherited = true}, - [788] = + [864] = + {field_body, 10}, + {field_decorator, 0, .inherited = true}, + {field_name, 7}, + {field_parameters, 9, .inherited = true}, + {field_return_type, 9, .inherited = true}, + {field_type_parameters, 9, .inherited = true}, + [870] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 8}, @@ -4320,133 +4426,133 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [91] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [113] = { + [111] = { [1] = alias_sym_type_identifier, }, - [114] = { + [112] = { [1] = alias_sym_type_identifier, }, - [118] = { + [116] = { [1] = sym_identifier, }, - [125] = { + [123] = { [1] = sym_identifier, }, - [133] = { + [131] = { [1] = alias_sym_type_identifier, }, - [134] = { + [132] = { [1] = alias_sym_type_identifier, }, - [135] = { + [133] = { [2] = alias_sym_type_identifier, }, - [136] = { + [134] = { [0] = alias_sym_type_identifier, }, - [138] = { + [136] = { [2] = alias_sym_property_identifier, }, - [140] = { + [138] = { [2] = alias_sym_property_identifier, }, - [142] = { + [140] = { [2] = alias_sym_type_identifier, }, - [143] = { + [141] = { [1] = alias_sym_type_identifier, }, - [145] = { + [143] = { [1] = alias_sym_type_identifier, [3] = alias_sym_interface_body, }, - [146] = { + [144] = { [1] = alias_sym_type_identifier, [3] = alias_sym_interface_body, }, - [150] = { + [148] = { [2] = alias_sym_type_identifier, }, - [155] = { + [153] = { [1] = alias_sym_type_identifier, }, - [157] = { + [156] = { [0] = sym_identifier, }, - [169] = { + [168] = { [1] = alias_sym_type_identifier, }, - [177] = { + [176] = { [2] = alias_sym_property_identifier, }, - [179] = { + [178] = { [1] = alias_sym_type_identifier, }, - [182] = { + [181] = { [2] = alias_sym_type_identifier, }, - [183] = { + [182] = { [2] = alias_sym_type_identifier, }, - [184] = { + [183] = { [1] = alias_sym_type_identifier, }, - [186] = { + [185] = { [1] = alias_sym_type_identifier, [4] = alias_sym_interface_body, }, - [189] = { + [188] = { [0] = sym_identifier, }, - [191] = { + [190] = { [2] = alias_sym_type_identifier, }, - [192] = { + [191] = { [2] = alias_sym_type_identifier, }, - [194] = { + [193] = { [3] = alias_sym_type_identifier, }, - [196] = { + [195] = { [1] = alias_sym_type_identifier, }, - [198] = { + [199] = { [1] = sym_identifier, }, - [199] = { + [200] = { [1] = sym_identifier, }, - [204] = { + [205] = { [0] = alias_sym_type_identifier, }, - [228] = { + [229] = { [2] = alias_sym_type_identifier, }, - [233] = { + [234] = { [2] = alias_sym_type_identifier, }, - [234] = { + [235] = { [3] = alias_sym_type_identifier, }, - [235] = { + [236] = { [3] = alias_sym_type_identifier, }, - [265] = { + [268] = { [3] = alias_sym_property_identifier, }, - [266] = { + [269] = { [3] = alias_sym_type_identifier, }, - [271] = { + [276] = { [1] = sym_identifier, }, - [272] = { + [277] = { [0] = alias_sym_type_identifier, }, - [297] = { + [304] = { [2] = sym_identifier, }, - [313] = { + [322] = { [3] = sym_identifier, }, }; @@ -4483,133 +4589,133 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [15] = 15, [16] = 16, [17] = 17, - [18] = 14, - [19] = 19, - [20] = 14, - [21] = 17, + [18] = 18, + [19] = 16, + [20] = 16, + [21] = 14, [22] = 14, - [23] = 14, - [24] = 17, - [25] = 17, + [23] = 16, + [24] = 16, + [25] = 14, [26] = 14, - [27] = 17, + [27] = 16, [28] = 14, - [29] = 17, - [30] = 17, + [29] = 16, + [30] = 14, [31] = 31, [32] = 32, [33] = 33, [34] = 34, [35] = 35, [36] = 36, - [37] = 37, - [38] = 38, - [39] = 39, - [40] = 39, - [41] = 34, - [42] = 35, - [43] = 37, - [44] = 38, - [45] = 32, - [46] = 46, - [47] = 33, - [48] = 36, + [37] = 36, + [38] = 32, + [39] = 31, + [40] = 40, + [41] = 41, + [42] = 31, + [43] = 31, + [44] = 31, + [45] = 45, + [46] = 45, + [47] = 31, + [48] = 48, [49] = 31, - [50] = 32, - [51] = 32, - [52] = 32, - [53] = 46, - [54] = 32, - [55] = 32, - [56] = 32, - [57] = 32, - [58] = 32, - [59] = 59, + [50] = 33, + [51] = 34, + [52] = 35, + [53] = 40, + [54] = 54, + [55] = 54, + [56] = 31, + [57] = 31, + [58] = 31, + [59] = 41, [60] = 60, [61] = 60, [62] = 60, [63] = 63, - [64] = 63, - [65] = 65, - [66] = 66, + [64] = 64, + [65] = 64, + [66] = 63, [67] = 67, - [68] = 65, + [68] = 68, [69] = 69, [70] = 70, [71] = 71, - [72] = 72, - [73] = 65, + [72] = 63, + [73] = 73, [74] = 74, - [75] = 75, - [76] = 75, + [75] = 74, + [76] = 76, [77] = 77, - [78] = 75, - [79] = 75, - [80] = 75, + [78] = 74, + [79] = 74, + [80] = 74, [81] = 81, [82] = 82, - [83] = 81, + [83] = 83, [84] = 84, - [85] = 81, - [86] = 77, - [87] = 82, - [88] = 88, - [89] = 89, - [90] = 82, + [85] = 77, + [86] = 82, + [87] = 87, + [88] = 81, + [89] = 83, + [90] = 81, [91] = 81, [92] = 81, - [93] = 89, - [94] = 81, - [95] = 84, - [96] = 74, - [97] = 81, - [98] = 81, - [99] = 99, - [100] = 100, - [101] = 82, - [102] = 77, - [103] = 103, - [104] = 82, - [105] = 89, - [106] = 89, - [107] = 81, - [108] = 77, - [109] = 109, - [110] = 82, - [111] = 81, + [93] = 87, + [94] = 87, + [95] = 81, + [96] = 81, + [97] = 97, + [98] = 87, + [99] = 77, + [100] = 81, + [101] = 101, + [102] = 76, + [103] = 83, + [104] = 83, + [105] = 87, + [106] = 81, + [107] = 107, + [108] = 108, + [109] = 81, + [110] = 77, + [111] = 87, [112] = 81, [113] = 81, - [114] = 99, - [115] = 82, - [116] = 82, - [117] = 82, - [118] = 88, + [114] = 81, + [115] = 87, + [116] = 81, + [117] = 81, + [118] = 87, [119] = 81, [120] = 81, - [121] = 81, + [121] = 87, [122] = 81, - [123] = 81, - [124] = 81, + [123] = 84, + [124] = 101, [125] = 125, [126] = 125, - [127] = 127, + [127] = 81, [128] = 125, [129] = 125, - [130] = 125, - [131] = 82, + [130] = 87, + [131] = 125, [132] = 125, [133] = 125, [134] = 125, [135] = 125, - [136] = 81, - [137] = 125, + [136] = 125, + [137] = 137, [138] = 138, [139] = 139, - [140] = 140, + [140] = 139, [141] = 139, [142] = 139, [143] = 139, - [144] = 139, + [144] = 144, [145] = 139, [146] = 139, [147] = 147, @@ -4627,50 +4733,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [159] = 151, [160] = 151, [161] = 161, - [162] = 162, + [162] = 161, [163] = 163, - [164] = 162, - [165] = 163, - [166] = 161, + [164] = 161, + [165] = 165, + [166] = 163, [167] = 163, - [168] = 161, - [169] = 162, + [168] = 165, + [169] = 165, [170] = 170, - [171] = 162, - [172] = 172, - [173] = 162, - [174] = 172, - [175] = 172, - [176] = 162, - [177] = 162, - [178] = 162, - [179] = 162, - [180] = 170, - [181] = 162, + [171] = 171, + [172] = 165, + [173] = 170, + [174] = 165, + [175] = 170, + [176] = 165, + [177] = 165, + [178] = 165, + [179] = 171, + [180] = 165, + [181] = 165, [182] = 182, [183] = 182, [184] = 184, [185] = 185, [186] = 186, - [187] = 185, - [188] = 186, + [187] = 184, + [188] = 185, [189] = 184, [190] = 186, - [191] = 184, + [191] = 186, [192] = 185, [193] = 193, [194] = 194, - [195] = 193, - [196] = 193, - [197] = 193, + [195] = 195, + [196] = 195, + [197] = 195, [198] = 198, - [199] = 193, + [199] = 199, [200] = 200, - [201] = 193, - [202] = 193, + [201] = 195, + [202] = 195, [203] = 203, - [204] = 204, - [205] = 205, + [204] = 195, + [205] = 195, [206] = 206, [207] = 207, [208] = 208, @@ -4679,14 +4785,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [211] = 211, [212] = 212, [213] = 213, - [214] = 214, - [215] = 206, + [214] = 213, + [215] = 215, [216] = 216, [217] = 217, [218] = 218, [219] = 219, [220] = 220, - [221] = 217, + [221] = 221, [222] = 222, [223] = 223, [224] = 224, @@ -4696,63 +4802,63 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [228] = 228, [229] = 229, [230] = 230, - [231] = 231, + [231] = 216, [232] = 232, [233] = 233, [234] = 234, [235] = 235, [236] = 236, [237] = 237, - [238] = 238, + [238] = 216, [239] = 239, - [240] = 217, - [241] = 236, - [242] = 239, - [243] = 243, - [244] = 217, + [240] = 236, + [241] = 241, + [242] = 237, + [243] = 216, + [244] = 244, [245] = 245, - [246] = 246, - [247] = 217, - [248] = 217, - [249] = 246, - [250] = 217, - [251] = 217, - [252] = 246, - [253] = 217, - [254] = 217, - [255] = 246, - [256] = 246, - [257] = 257, - [258] = 245, - [259] = 246, + [246] = 245, + [247] = 216, + [248] = 248, + [249] = 248, + [250] = 248, + [251] = 216, + [252] = 252, + [253] = 216, + [254] = 248, + [255] = 216, + [256] = 248, + [257] = 248, + [258] = 216, + [259] = 216, [260] = 260, - [261] = 246, - [262] = 217, - [263] = 257, + [261] = 248, + [262] = 216, + [263] = 252, [264] = 264, [265] = 264, [266] = 264, [267] = 264, [268] = 264, - [269] = 264, - [270] = 264, - [271] = 271, + [269] = 269, + [270] = 270, + [271] = 264, [272] = 264, [273] = 264, - [274] = 274, - [275] = 271, - [276] = 264, - [277] = 264, - [278] = 264, + [274] = 264, + [275] = 264, + [276] = 276, + [277] = 270, + [278] = 278, [279] = 264, [280] = 264, - [281] = 264, - [282] = 282, - [283] = 264, + [281] = 281, + [282] = 264, + [283] = 281, [284] = 284, - [285] = 284, - [286] = 286, - [287] = 287, + [285] = 264, + [286] = 264, + [287] = 264, [288] = 288, [289] = 289, [290] = 290, @@ -4766,81 +4872,81 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [298] = 298, [299] = 299, [300] = 300, - [301] = 301, + [301] = 296, [302] = 302, [303] = 303, [304] = 304, - [305] = 305, - [306] = 306, + [305] = 304, + [306] = 300, [307] = 307, - [308] = 306, - [309] = 298, - [310] = 305, - [311] = 306, - [312] = 296, - [313] = 298, - [314] = 299, - [315] = 300, - [316] = 316, + [308] = 303, + [309] = 303, + [310] = 300, + [311] = 296, + [312] = 299, + [313] = 300, + [314] = 302, + [315] = 299, + [316] = 303, [317] = 317, - [318] = 318, - [319] = 319, - [320] = 305, - [321] = 321, - [322] = 305, - [323] = 306, - [324] = 296, - [325] = 298, - [326] = 299, - [327] = 300, - [328] = 302, - [329] = 296, - [330] = 298, - [331] = 305, - [332] = 298, - [333] = 305, - [334] = 306, - [335] = 296, - [336] = 307, - [337] = 299, - [338] = 300, + [318] = 296, + [319] = 300, + [320] = 299, + [321] = 303, + [322] = 322, + [323] = 304, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 298, + [328] = 322, + [329] = 329, + [330] = 299, + [331] = 299, + [332] = 304, + [333] = 333, + [334] = 304, + [335] = 304, + [336] = 303, + [337] = 300, + [338] = 298, [339] = 296, - [340] = 340, + [340] = 298, [341] = 341, - [342] = 299, - [343] = 305, - [344] = 306, - [345] = 296, - [346] = 298, - [347] = 299, - [348] = 300, - [349] = 300, - [350] = 350, - [351] = 351, - [352] = 299, - [353] = 353, - [354] = 306, - [355] = 299, - [356] = 305, - [357] = 296, - [358] = 300, - [359] = 300, - [360] = 298, - [361] = 299, - [362] = 300, - [363] = 321, - [364] = 306, + [342] = 296, + [343] = 343, + [344] = 300, + [345] = 303, + [346] = 299, + [347] = 304, + [348] = 298, + [349] = 299, + [350] = 298, + [351] = 298, + [352] = 296, + [353] = 298, + [354] = 300, + [355] = 303, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 304, + [361] = 298, + [362] = 296, + [363] = 300, + [364] = 303, [365] = 298, [366] = 366, - [367] = 299, - [368] = 300, - [369] = 305, - [370] = 306, - [371] = 305, - [372] = 372, - [373] = 306, - [374] = 296, - [375] = 298, + [367] = 304, + [368] = 296, + [369] = 343, + [370] = 300, + [371] = 303, + [372] = 304, + [373] = 373, + [374] = 299, + [375] = 299, [376] = 376, [377] = 377, [378] = 378, @@ -4849,288 +4955,288 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [381] = 381, [382] = 382, [383] = 383, - [384] = 384, - [385] = 385, + [384] = 377, + [385] = 383, [386] = 386, [387] = 387, [388] = 388, [389] = 389, [390] = 390, - [391] = 391, + [391] = 389, [392] = 392, [393] = 393, - [394] = 394, + [394] = 378, [395] = 395, - [396] = 396, - [397] = 378, - [398] = 398, - [399] = 399, - [400] = 381, - [401] = 376, - [402] = 402, - [403] = 403, - [404] = 379, + [396] = 377, + [397] = 397, + [398] = 383, + [399] = 387, + [400] = 400, + [401] = 392, + [402] = 390, + [403] = 389, + [404] = 404, [405] = 405, - [406] = 406, + [406] = 405, [407] = 407, [408] = 408, - [409] = 382, - [410] = 402, - [411] = 403, - [412] = 406, - [413] = 413, - [414] = 405, - [415] = 381, - [416] = 405, - [417] = 417, - [418] = 381, - [419] = 405, - [420] = 420, - [421] = 421, - [422] = 405, - [423] = 383, - [424] = 384, - [425] = 405, - [426] = 377, - [427] = 405, - [428] = 385, - [429] = 386, - [430] = 430, - [431] = 378, - [432] = 379, - [433] = 387, - [434] = 380, - [435] = 388, + [409] = 387, + [410] = 410, + [411] = 383, + [412] = 412, + [413] = 382, + [414] = 392, + [415] = 400, + [416] = 416, + [417] = 380, + [418] = 408, + [419] = 419, + [420] = 395, + [421] = 395, + [422] = 397, + [423] = 376, + [424] = 387, + [425] = 425, + [426] = 380, + [427] = 427, + [428] = 397, + [429] = 379, + [430] = 392, + [431] = 392, + [432] = 432, + [433] = 407, + [434] = 407, + [435] = 412, [436] = 382, - [437] = 383, - [438] = 384, - [439] = 377, - [440] = 385, - [441] = 389, - [442] = 387, - [443] = 388, - [444] = 389, - [445] = 390, - [446] = 391, - [447] = 392, - [448] = 393, - [449] = 394, - [450] = 450, - [451] = 395, - [452] = 396, - [453] = 398, - [454] = 454, - [455] = 390, - [456] = 391, + [437] = 412, + [438] = 382, + [439] = 400, + [440] = 408, + [441] = 427, + [442] = 400, + [443] = 432, + [444] = 427, + [445] = 432, + [446] = 410, + [447] = 447, + [448] = 448, + [449] = 427, + [450] = 432, + [451] = 410, + [452] = 393, + [453] = 447, + [454] = 387, + [455] = 455, + [456] = 410, [457] = 392, - [458] = 393, - [459] = 402, - [460] = 403, - [461] = 394, - [462] = 405, - [463] = 395, - [464] = 417, - [465] = 407, - [466] = 378, - [467] = 379, - [468] = 380, - [469] = 382, - [470] = 383, - [471] = 384, - [472] = 385, - [473] = 386, - [474] = 387, - [475] = 388, - [476] = 389, - [477] = 391, - [478] = 392, - [479] = 393, - [480] = 394, - [481] = 395, - [482] = 396, - [483] = 407, - [484] = 398, - [485] = 381, - [486] = 402, - [487] = 403, - [488] = 396, - [489] = 405, - [490] = 407, - [491] = 406, - [492] = 376, - [493] = 405, - [494] = 430, - [495] = 379, - [496] = 380, + [458] = 404, + [459] = 380, + [460] = 379, + [461] = 404, + [462] = 462, + [463] = 463, + [464] = 455, + [465] = 447, + [466] = 377, + [467] = 378, + [468] = 463, + [469] = 447, + [470] = 432, + [471] = 462, + [472] = 455, + [473] = 383, + [474] = 427, + [475] = 387, + [476] = 455, + [477] = 387, + [478] = 463, + [479] = 462, + [480] = 480, + [481] = 376, + [482] = 447, + [483] = 387, + [484] = 390, + [485] = 392, + [486] = 405, + [487] = 377, + [488] = 404, + [489] = 379, + [490] = 410, + [491] = 393, + [492] = 389, + [493] = 432, + [494] = 494, + [495] = 380, + [496] = 400, [497] = 497, - [498] = 382, - [499] = 383, - [500] = 384, - [501] = 377, - [502] = 385, - [503] = 387, - [504] = 388, - [505] = 389, - [506] = 390, - [507] = 391, - [508] = 392, - [509] = 393, - [510] = 394, - [511] = 395, - [512] = 396, - [513] = 398, - [514] = 402, - [515] = 403, - [516] = 405, - [517] = 407, - [518] = 518, - [519] = 378, - [520] = 379, - [521] = 398, - [522] = 380, - [523] = 382, - [524] = 383, - [525] = 430, - [526] = 384, - [527] = 385, - [528] = 387, - [529] = 388, - [530] = 389, - [531] = 390, - [532] = 391, - [533] = 392, - [534] = 393, - [535] = 394, - [536] = 395, - [537] = 396, - [538] = 398, - [539] = 402, - [540] = 403, - [541] = 405, - [542] = 407, - [543] = 406, - [544] = 376, - [545] = 405, - [546] = 430, - [547] = 377, - [548] = 379, - [549] = 380, - [550] = 382, - [551] = 383, - [552] = 384, - [553] = 385, - [554] = 387, - [555] = 388, - [556] = 389, - [557] = 390, - [558] = 391, - [559] = 392, - [560] = 393, - [561] = 394, - [562] = 395, - [563] = 396, - [564] = 398, - [565] = 565, - [566] = 402, - [567] = 403, - [568] = 407, - [569] = 406, - [570] = 376, - [571] = 405, - [572] = 430, - [573] = 377, - [574] = 379, - [575] = 380, - [576] = 382, - [577] = 383, - [578] = 384, - [579] = 385, - [580] = 387, - [581] = 388, - [582] = 389, - [583] = 390, - [584] = 391, - [585] = 392, - [586] = 393, - [587] = 394, - [588] = 395, - [589] = 396, - [590] = 398, - [591] = 402, - [592] = 403, - [593] = 407, - [594] = 406, - [595] = 376, - [596] = 596, - [597] = 405, - [598] = 430, - [599] = 377, - [600] = 379, - [601] = 380, - [602] = 382, - [603] = 383, - [604] = 384, - [605] = 385, - [606] = 387, - [607] = 388, - [608] = 389, - [609] = 390, - [610] = 391, - [611] = 392, - [612] = 393, - [613] = 394, - [614] = 395, - [615] = 396, - [616] = 398, - [617] = 402, - [618] = 403, - [619] = 407, - [620] = 454, - [621] = 406, - [622] = 376, - [623] = 623, - [624] = 430, - [625] = 377, - [626] = 379, - [627] = 380, - [628] = 382, - [629] = 383, - [630] = 384, - [631] = 385, - [632] = 387, - [633] = 388, - [634] = 389, - [635] = 390, - [636] = 391, - [637] = 392, - [638] = 393, - [639] = 394, - [640] = 395, - [641] = 396, - [642] = 398, - [643] = 402, - [644] = 403, - [645] = 645, - [646] = 407, - [647] = 406, - [648] = 376, - [649] = 430, - [650] = 377, - [651] = 651, - [652] = 406, - [653] = 376, - [654] = 378, - [655] = 378, - [656] = 405, - [657] = 380, - [658] = 406, - [659] = 376, - [660] = 378, - [661] = 378, - [662] = 378, - [663] = 430, - [664] = 377, - [665] = 430, + [498] = 378, + [499] = 463, + [500] = 389, + [501] = 379, + [502] = 427, + [503] = 380, + [504] = 400, + [505] = 376, + [506] = 392, + [507] = 395, + [508] = 462, + [509] = 382, + [510] = 382, + [511] = 410, + [512] = 412, + [513] = 379, + [514] = 380, + [515] = 380, + [516] = 412, + [517] = 377, + [518] = 405, + [519] = 379, + [520] = 407, + [521] = 379, + [522] = 522, + [523] = 463, + [524] = 407, + [525] = 397, + [526] = 397, + [527] = 383, + [528] = 395, + [529] = 376, + [530] = 387, + [531] = 395, + [532] = 389, + [533] = 378, + [534] = 387, + [535] = 462, + [536] = 377, + [537] = 408, + [538] = 462, + [539] = 389, + [540] = 463, + [541] = 376, + [542] = 393, + [543] = 393, + [544] = 405, + [545] = 390, + [546] = 378, + [547] = 412, + [548] = 455, + [549] = 376, + [550] = 383, + [551] = 387, + [552] = 455, + [553] = 405, + [554] = 390, + [555] = 387, + [556] = 447, + [557] = 410, + [558] = 558, + [559] = 432, + [560] = 427, + [561] = 448, + [562] = 400, + [563] = 405, + [564] = 382, + [565] = 412, + [566] = 407, + [567] = 387, + [568] = 447, + [569] = 455, + [570] = 397, + [571] = 378, + [572] = 404, + [573] = 573, + [574] = 393, + [575] = 408, + [576] = 395, + [577] = 395, + [578] = 408, + [579] = 405, + [580] = 397, + [581] = 419, + [582] = 390, + [583] = 407, + [584] = 412, + [585] = 390, + [586] = 383, + [587] = 377, + [588] = 382, + [589] = 400, + [590] = 427, + [591] = 378, + [592] = 393, + [593] = 389, + [594] = 432, + [595] = 447, + [596] = 410, + [597] = 410, + [598] = 432, + [599] = 408, + [600] = 427, + [601] = 377, + [602] = 400, + [603] = 382, + [604] = 383, + [605] = 393, + [606] = 390, + [607] = 447, + [608] = 455, + [609] = 405, + [610] = 412, + [611] = 463, + [612] = 462, + [613] = 407, + [614] = 392, + [615] = 380, + [616] = 408, + [617] = 376, + [618] = 455, + [619] = 379, + [620] = 462, + [621] = 379, + [622] = 397, + [623] = 380, + [624] = 386, + [625] = 395, + [626] = 405, + [627] = 387, + [628] = 389, + [629] = 393, + [630] = 376, + [631] = 392, + [632] = 378, + [633] = 462, + [634] = 463, + [635] = 419, + [636] = 463, + [637] = 408, + [638] = 462, + [639] = 393, + [640] = 408, + [641] = 390, + [642] = 463, + [643] = 387, + [644] = 378, + [645] = 455, + [646] = 646, + [647] = 377, + [648] = 648, + [649] = 376, + [650] = 383, + [651] = 387, + [652] = 395, + [653] = 447, + [654] = 410, + [655] = 432, + [656] = 427, + [657] = 400, + [658] = 397, + [659] = 382, + [660] = 412, + [661] = 407, + [662] = 397, + [663] = 407, + [664] = 389, + [665] = 665, [666] = 390, [667] = 667, [668] = 667, @@ -5146,110 +5252,110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [678] = 678, [679] = 678, [680] = 678, - [681] = 214, - [682] = 212, - [683] = 683, - [684] = 683, - [685] = 685, - [686] = 685, - [687] = 685, - [688] = 683, + [681] = 681, + [682] = 682, + [683] = 681, + [684] = 227, + [685] = 682, + [686] = 682, + [687] = 215, + [688] = 681, [689] = 689, - [690] = 689, + [690] = 690, [691] = 691, - [692] = 692, + [692] = 691, [693] = 693, [694] = 694, [695] = 695, [696] = 696, - [697] = 697, + [697] = 696, [698] = 698, - [699] = 696, - [700] = 698, + [699] = 698, + [700] = 700, [701] = 698, - [702] = 697, - [703] = 697, + [702] = 700, + [703] = 700, [704] = 704, [705] = 705, - [706] = 705, - [707] = 704, - [708] = 708, + [706] = 706, + [707] = 706, + [708] = 706, [709] = 709, - [710] = 709, - [711] = 709, - [712] = 709, - [713] = 713, - [714] = 709, - [715] = 713, - [716] = 709, - [717] = 213, - [718] = 718, - [719] = 709, - [720] = 709, - [721] = 709, - [722] = 722, - [723] = 709, + [710] = 706, + [711] = 706, + [712] = 706, + [713] = 705, + [714] = 704, + [715] = 715, + [716] = 715, + [717] = 706, + [718] = 706, + [719] = 719, + [720] = 720, + [721] = 706, + [722] = 706, + [723] = 225, [724] = 704, - [725] = 219, - [726] = 223, - [727] = 709, - [728] = 219, - [729] = 729, - [730] = 730, - [731] = 704, - [732] = 218, - [733] = 733, - [734] = 213, - [735] = 220, - [736] = 218, - [737] = 222, - [738] = 709, - [739] = 730, - [740] = 730, - [741] = 222, - [742] = 709, - [743] = 705, - [744] = 205, - [745] = 203, - [746] = 708, - [747] = 747, - [748] = 709, - [749] = 709, - [750] = 709, - [751] = 709, - [752] = 709, - [753] = 224, + [725] = 233, + [726] = 726, + [727] = 727, + [728] = 726, + [729] = 224, + [730] = 206, + [731] = 233, + [732] = 225, + [733] = 234, + [734] = 706, + [735] = 234, + [736] = 706, + [737] = 726, + [738] = 206, + [739] = 739, + [740] = 704, + [741] = 232, + [742] = 706, + [743] = 709, + [744] = 706, + [745] = 194, + [746] = 706, + [747] = 706, + [748] = 705, + [749] = 203, + [750] = 706, + [751] = 706, + [752] = 752, + [753] = 753, [754] = 754, - [755] = 709, + [755] = 755, [756] = 756, [757] = 757, [758] = 758, - [759] = 756, + [759] = 759, [760] = 760, [761] = 761, - [762] = 756, - [763] = 756, - [764] = 764, + [762] = 762, + [763] = 761, + [764] = 761, [765] = 765, - [766] = 766, - [767] = 767, + [766] = 761, + [767] = 761, [768] = 768, - [769] = 769, - [770] = 756, - [771] = 756, + [769] = 198, + [770] = 770, + [771] = 221, [772] = 772, - [773] = 773, + [773] = 220, [774] = 774, - [775] = 216, + [775] = 706, [776] = 776, - [777] = 756, - [778] = 198, - [779] = 756, + [777] = 761, + [778] = 778, + [779] = 779, [780] = 780, - [781] = 781, - [782] = 756, - [783] = 756, - [784] = 784, + [781] = 761, + [782] = 761, + [783] = 761, + [784] = 761, [785] = 785, [786] = 786, [787] = 787, @@ -5262,11 +5368,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [794] = 794, [795] = 795, [796] = 796, - [797] = 797, + [797] = 232, [798] = 798, [799] = 799, [800] = 800, - [801] = 231, + [801] = 801, [802] = 802, [803] = 803, [804] = 804, @@ -5275,7 +5381,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [807] = 807, [808] = 808, [809] = 809, - [810] = 810, + [810] = 224, [811] = 811, [812] = 812, [813] = 813, @@ -5292,12 +5398,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [824] = 824, [825] = 825, [826] = 826, - [827] = 220, + [827] = 827, [828] = 828, [829] = 829, [830] = 830, [831] = 831, - [832] = 223, + [832] = 832, [833] = 833, [834] = 834, [835] = 835, @@ -5306,20 +5412,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [838] = 838, [839] = 839, [840] = 840, - [841] = 230, - [842] = 842, + [841] = 841, + [842] = 821, [843] = 843, [844] = 844, [845] = 845, [846] = 846, - [847] = 847, + [847] = 821, [848] = 848, - [849] = 849, + [849] = 212, [850] = 850, [851] = 851, [852] = 852, - [853] = 839, - [854] = 854, + [853] = 226, + [854] = 821, [855] = 855, [856] = 856, [857] = 857, @@ -5331,8 +5437,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [863] = 863, [864] = 864, [865] = 865, - [866] = 866, - [867] = 839, + [866] = 821, + [867] = 867, [868] = 868, [869] = 869, [870] = 870, @@ -5349,7 +5455,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [881] = 881, [882] = 882, [883] = 883, - [884] = 839, + [884] = 884, [885] = 885, [886] = 886, [887] = 887, @@ -5371,70 +5477,70 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [903] = 903, [904] = 904, [905] = 905, - [906] = 839, + [906] = 906, [907] = 907, [908] = 908, [909] = 909, - [910] = 909, - [911] = 909, - [912] = 912, - [913] = 912, - [914] = 909, - [915] = 912, + [910] = 910, + [911] = 910, + [912] = 909, + [913] = 909, + [914] = 910, + [915] = 910, [916] = 909, - [917] = 912, - [918] = 912, + [917] = 910, + [918] = 909, [919] = 919, [920] = 920, - [921] = 765, + [921] = 921, [922] = 922, [923] = 923, [924] = 924, - [925] = 925, + [925] = 760, [926] = 926, [927] = 927, [928] = 928, [929] = 929, [930] = 930, - [931] = 931, - [932] = 768, + [931] = 768, + [932] = 932, [933] = 933, - [934] = 933, + [934] = 934, [935] = 935, - [936] = 935, - [937] = 935, - [938] = 938, + [936] = 934, + [937] = 934, + [938] = 934, [939] = 933, - [940] = 933, - [941] = 938, + [940] = 935, + [941] = 933, [942] = 933, [943] = 935, - [944] = 935, - [945] = 938, - [946] = 935, - [947] = 935, + [944] = 934, + [945] = 933, + [946] = 934, + [947] = 933, [948] = 933, - [949] = 933, + [949] = 934, [950] = 950, [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 954, - [956] = 953, - [957] = 957, - [958] = 957, - [959] = 954, - [960] = 953, - [961] = 957, - [962] = 957, - [963] = 957, - [964] = 954, - [965] = 953, - [966] = 953, - [967] = 957, - [968] = 954, - [969] = 954, + [952] = 950, + [953] = 951, + [954] = 951, + [955] = 955, + [956] = 955, + [957] = 950, + [958] = 955, + [959] = 959, + [960] = 951, + [961] = 955, + [962] = 950, + [963] = 950, + [964] = 955, + [965] = 951, + [966] = 955, + [967] = 950, + [968] = 968, + [969] = 969, [970] = 970, [971] = 971, [972] = 972, @@ -5442,534 +5548,534 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [974] = 974, [975] = 975, [976] = 976, - [977] = 971, - [978] = 978, + [977] = 977, + [978] = 971, [979] = 979, - [980] = 974, - [981] = 981, - [982] = 982, + [980] = 977, + [981] = 976, + [982] = 968, [983] = 983, [984] = 984, - [985] = 979, - [986] = 986, - [987] = 987, - [988] = 988, - [989] = 983, - [990] = 990, - [991] = 991, - [992] = 992, - [993] = 993, - [994] = 972, - [995] = 995, - [996] = 982, + [985] = 985, + [986] = 985, + [987] = 983, + [988] = 972, + [989] = 989, + [990] = 976, + [991] = 977, + [992] = 971, + [993] = 968, + [994] = 994, + [995] = 971, + [996] = 970, [997] = 997, [998] = 998, - [999] = 998, + [999] = 999, [1000] = 1000, - [1001] = 978, + [1001] = 994, [1002] = 1002, - [1003] = 979, - [1004] = 1004, - [1005] = 975, - [1006] = 978, - [1007] = 998, - [1008] = 998, - [1009] = 975, - [1010] = 978, - [1011] = 971, - [1012] = 976, - [1013] = 971, - [1014] = 995, - [1015] = 982, - [1016] = 975, - [1017] = 987, - [1018] = 971, - [1019] = 983, - [1020] = 981, - [1021] = 1004, - [1022] = 992, - [1023] = 988, - [1024] = 986, - [1025] = 1002, - [1026] = 1026, - [1027] = 1002, - [1028] = 979, - [1029] = 978, - [1030] = 986, - [1031] = 998, - [1032] = 975, - [1033] = 1002, - [1034] = 995, - [1035] = 982, - [1036] = 995, - [1037] = 981, - [1038] = 979, - [1039] = 1002, - [1040] = 979, - [1041] = 1041, - [1042] = 981, - [1043] = 1000, - [1044] = 1002, - [1045] = 979, - [1046] = 992, - [1047] = 1047, - [1048] = 1048, - [1049] = 975, - [1050] = 1000, - [1051] = 976, - [1052] = 971, - [1053] = 1002, - [1054] = 1054, - [1055] = 982, - [1056] = 1041, - [1057] = 982, - [1058] = 1058, - [1059] = 987, - [1060] = 988, - [1061] = 978, - [1062] = 1062, - [1063] = 998, - [1064] = 1064, - [1065] = 975, - [1066] = 1066, - [1067] = 971, + [1003] = 975, + [1004] = 972, + [1005] = 994, + [1006] = 968, + [1007] = 984, + [1008] = 970, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1010, + [1013] = 976, + [1014] = 1014, + [1015] = 1015, + [1016] = 977, + [1017] = 1011, + [1018] = 1002, + [1019] = 975, + [1020] = 970, + [1021] = 1010, + [1022] = 1022, + [1023] = 972, + [1024] = 973, + [1025] = 974, + [1026] = 985, + [1027] = 985, + [1028] = 983, + [1029] = 984, + [1030] = 989, + [1031] = 968, + [1032] = 979, + [1033] = 983, + [1034] = 1034, + [1035] = 1035, + [1036] = 976, + [1037] = 1037, + [1038] = 976, + [1039] = 977, + [1040] = 1009, + [1041] = 974, + [1042] = 973, + [1043] = 973, + [1044] = 1044, + [1045] = 1022, + [1046] = 1002, + [1047] = 979, + [1048] = 974, + [1049] = 972, + [1050] = 989, + [1051] = 1051, + [1052] = 1010, + [1053] = 1053, + [1054] = 984, + [1055] = 1055, + [1056] = 1010, + [1057] = 975, + [1058] = 1002, + [1059] = 972, + [1060] = 994, + [1061] = 977, + [1062] = 975, + [1063] = 989, + [1064] = 1009, + [1065] = 984, + [1066] = 970, + [1067] = 979, [1068] = 983, - [1069] = 986, - [1070] = 1000, - [1071] = 1026, - [1072] = 1072, - [1073] = 1073, - [1074] = 997, - [1075] = 1075, - [1076] = 976, - [1077] = 981, - [1078] = 992, - [1079] = 1079, - [1080] = 1080, - [1081] = 1000, - [1082] = 976, - [1083] = 983, - [1084] = 987, - [1085] = 988, - [1086] = 987, - [1087] = 976, - [1088] = 981, - [1089] = 988, - [1090] = 988, - [1091] = 986, - [1092] = 1000, - [1093] = 976, - [1094] = 983, - [1095] = 981, - [1096] = 987, - [1097] = 988, - [1098] = 986, - [1099] = 983, - [1100] = 978, - [1101] = 992, - [1102] = 972, - [1103] = 992, - [1104] = 1104, - [1105] = 995, - [1106] = 998, - [1107] = 987, - [1108] = 992, - [1109] = 972, - [1110] = 1104, - [1111] = 995, - [1112] = 972, - [1113] = 982, - [1114] = 984, - [1115] = 986, - [1116] = 995, - [1117] = 1000, - [1118] = 984, - [1119] = 984, - [1120] = 984, - [1121] = 984, - [1122] = 984, - [1123] = 972, - [1124] = 1124, - [1125] = 1125, - [1126] = 1124, - [1127] = 1124, - [1128] = 1124, - [1129] = 1129, - [1130] = 1124, - [1131] = 1124, - [1132] = 1124, - [1133] = 1124, - [1134] = 1134, - [1135] = 1124, - [1136] = 1124, - [1137] = 1124, - [1138] = 1124, + [1069] = 979, + [1070] = 994, + [1071] = 984, + [1072] = 968, + [1073] = 983, + [1074] = 985, + [1075] = 1002, + [1076] = 970, + [1077] = 976, + [1078] = 1014, + [1079] = 977, + [1080] = 971, + [1081] = 975, + [1082] = 1044, + [1083] = 970, + [1084] = 1084, + [1085] = 985, + [1086] = 1015, + [1087] = 1010, + [1088] = 1088, + [1089] = 989, + [1090] = 1090, + [1091] = 984, + [1092] = 979, + [1093] = 975, + [1094] = 973, + [1095] = 994, + [1096] = 974, + [1097] = 968, + [1098] = 1009, + [1099] = 989, + [1100] = 974, + [1101] = 971, + [1102] = 973, + [1103] = 999, + [1104] = 971, + [1105] = 1010, + [1106] = 1106, + [1107] = 1009, + [1108] = 1108, + [1109] = 1002, + [1110] = 1009, + [1111] = 973, + [1112] = 989, + [1113] = 1113, + [1114] = 979, + [1115] = 1002, + [1116] = 985, + [1117] = 994, + [1118] = 974, + [1119] = 983, + [1120] = 1009, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1121, + [1125] = 1121, + [1126] = 1121, + [1127] = 1121, + [1128] = 1121, + [1129] = 1121, + [1130] = 1121, + [1131] = 1121, + [1132] = 1132, + [1133] = 1121, + [1134] = 1121, + [1135] = 1121, + [1136] = 1136, + [1137] = 1137, + [1138] = 1136, [1139] = 1139, - [1140] = 1140, - [1141] = 1141, - [1142] = 1141, - [1143] = 1139, - [1144] = 1139, - [1145] = 1140, - [1146] = 1140, - [1147] = 1141, + [1140] = 1139, + [1141] = 1139, + [1142] = 1137, + [1143] = 1137, + [1144] = 1136, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, [1148] = 1148, [1149] = 1149, - [1150] = 1150, - [1151] = 1150, + [1150] = 1149, + [1151] = 1151, [1152] = 1152, [1153] = 1153, [1154] = 1154, [1155] = 1155, - [1156] = 1156, - [1157] = 1155, - [1158] = 1156, - [1159] = 1149, - [1160] = 1152, - [1161] = 1152, + [1156] = 1152, + [1157] = 1153, + [1158] = 1158, + [1159] = 1146, + [1160] = 1154, + [1161] = 1158, [1162] = 1152, - [1163] = 1163, - [1164] = 1154, - [1165] = 1152, - [1166] = 1148, + [1163] = 1152, + [1164] = 1164, + [1165] = 1145, + [1166] = 1152, [1167] = 1152, - [1168] = 1168, - [1169] = 1168, - [1170] = 1168, - [1171] = 1152, + [1168] = 1145, + [1169] = 1169, + [1170] = 1152, + [1171] = 1171, [1172] = 1152, [1173] = 1152, - [1174] = 1174, + [1174] = 1169, [1175] = 1152, - [1176] = 1148, + [1176] = 1169, [1177] = 1177, [1178] = 1178, - [1179] = 1177, - [1180] = 1152, + [1179] = 1179, + [1180] = 1180, [1181] = 1181, [1182] = 1182, [1183] = 1183, [1184] = 1184, [1185] = 1185, - [1186] = 1152, + [1186] = 1179, [1187] = 1187, - [1188] = 1187, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1177, - [1193] = 1152, - [1194] = 1148, + [1188] = 1152, + [1189] = 1145, + [1190] = 1178, + [1191] = 1178, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, [1195] = 1195, - [1196] = 1196, + [1196] = 1185, [1197] = 1197, - [1198] = 1187, + [1198] = 1179, [1199] = 1199, - [1200] = 1181, - [1201] = 1201, - [1202] = 1178, - [1203] = 765, - [1204] = 1204, - [1205] = 768, - [1206] = 1206, - [1207] = 1201, - [1208] = 1208, - [1209] = 1201, - [1210] = 1163, + [1200] = 1152, + [1201] = 1152, + [1202] = 1197, + [1203] = 768, + [1204] = 1183, + [1205] = 1205, + [1206] = 1152, + [1207] = 1152, + [1208] = 1155, + [1209] = 1183, + [1210] = 1152, [1211] = 1152, [1212] = 1152, - [1213] = 1152, - [1214] = 1152, - [1215] = 1152, - [1216] = 1152, - [1217] = 1217, - [1218] = 1149, - [1219] = 1201, - [1220] = 1201, - [1221] = 1221, + [1213] = 1213, + [1214] = 1214, + [1215] = 760, + [1216] = 1216, + [1217] = 1146, + [1218] = 1152, + [1219] = 1183, + [1220] = 1220, + [1221] = 1183, [1222] = 1222, - [1223] = 1221, + [1223] = 1183, [1224] = 1224, [1225] = 1225, - [1226] = 1226, - [1227] = 1221, - [1228] = 1204, - [1229] = 1229, - [1230] = 1221, - [1231] = 1229, - [1232] = 1201, - [1233] = 1233, - [1234] = 1221, - [1235] = 1152, - [1236] = 1221, - [1237] = 1237, - [1238] = 1238, - [1239] = 1204, - [1240] = 1221, - [1241] = 1229, - [1242] = 1242, + [1226] = 1213, + [1227] = 1213, + [1228] = 1228, + [1229] = 1152, + [1230] = 1222, + [1231] = 1231, + [1232] = 1222, + [1233] = 1183, + [1234] = 1234, + [1235] = 1224, + [1236] = 1222, + [1237] = 1222, + [1238] = 1224, + [1239] = 1222, + [1240] = 1183, + [1241] = 1222, + [1242] = 1183, [1243] = 1243, - [1244] = 1201, - [1245] = 1245, - [1246] = 1221, - [1247] = 1221, - [1248] = 1201, - [1249] = 1201, - [1250] = 1221, - [1251] = 1201, - [1252] = 1252, - [1253] = 1197, - [1254] = 1201, - [1255] = 1252, - [1256] = 1197, + [1244] = 1222, + [1245] = 1222, + [1246] = 1246, + [1247] = 1247, + [1248] = 1222, + [1249] = 1225, + [1250] = 1250, + [1251] = 1224, + [1252] = 1183, + [1253] = 1253, + [1254] = 1224, + [1255] = 1183, + [1256] = 1183, [1257] = 1257, - [1258] = 1201, - [1259] = 1229, - [1260] = 1260, - [1261] = 1243, - [1262] = 1229, - [1263] = 1263, + [1258] = 1258, + [1259] = 1225, + [1260] = 1182, + [1261] = 1181, + [1262] = 1181, + [1263] = 1182, [1264] = 1264, - [1265] = 1264, - [1266] = 1264, - [1267] = 1267, - [1268] = 1243, - [1269] = 1269, - [1270] = 1270, - [1271] = 1229, - [1272] = 1269, + [1265] = 1258, + [1266] = 1266, + [1267] = 1257, + [1268] = 1183, + [1269] = 1224, + [1270] = 1183, + [1271] = 1266, + [1272] = 1258, [1273] = 1273, - [1274] = 1201, - [1275] = 1196, - [1276] = 1196, - [1277] = 1201, - [1278] = 1278, + [1274] = 760, + [1275] = 1275, + [1276] = 1276, + [1277] = 1277, + [1278] = 1275, [1279] = 1279, - [1280] = 1280, - [1281] = 1281, - [1282] = 1208, - [1283] = 768, - [1284] = 1201, - [1285] = 1182, + [1280] = 1275, + [1281] = 1177, + [1282] = 1194, + [1283] = 1224, + [1284] = 1284, + [1285] = 1258, [1286] = 1183, - [1287] = 765, - [1288] = 1184, - [1289] = 1264, - [1290] = 1185, - [1291] = 1278, - [1292] = 1279, - [1293] = 1281, + [1287] = 1220, + [1288] = 1231, + [1289] = 1275, + [1290] = 1187, + [1291] = 1258, + [1292] = 1181, + [1293] = 1182, [1294] = 1294, - [1295] = 1281, - [1296] = 1233, - [1297] = 1264, - [1298] = 1199, - [1299] = 1201, - [1300] = 1278, - [1301] = 1281, - [1302] = 1294, - [1303] = 1280, - [1304] = 1278, - [1305] = 1305, - [1306] = 1243, - [1307] = 1196, - [1308] = 1197, - [1309] = 1237, - [1310] = 1189, - [1311] = 1281, - [1312] = 1245, - [1313] = 1264, - [1314] = 1229, - [1315] = 1229, - [1316] = 1278, - [1317] = 1278, - [1318] = 1229, - [1319] = 1191, - [1320] = 1320, - [1321] = 1229, - [1322] = 1281, - [1323] = 1273, - [1324] = 1196, - [1325] = 1197, - [1326] = 1264, - [1327] = 1263, - [1328] = 1278, - [1329] = 1281, - [1330] = 1226, - [1331] = 1281, - [1332] = 1229, - [1333] = 1333, - [1334] = 1334, - [1335] = 1335, - [1336] = 1281, - [1337] = 1197, - [1338] = 1233, - [1339] = 1237, - [1340] = 1208, - [1341] = 1341, - [1342] = 1208, - [1343] = 1278, - [1344] = 1264, - [1345] = 1208, - [1346] = 1196, - [1347] = 1264, - [1348] = 1341, - [1349] = 1281, - [1350] = 1264, - [1351] = 1278, - [1352] = 1278, - [1353] = 1281, - [1354] = 1237, - [1355] = 1355, - [1356] = 1264, - [1357] = 1357, - [1358] = 1358, - [1359] = 1358, - [1360] = 1358, - [1361] = 1281, - [1362] = 1358, - [1363] = 1196, - [1364] = 1197, - [1365] = 1278, - [1366] = 1263, - [1367] = 1367, - [1368] = 1358, - [1369] = 1208, - [1370] = 1208, - [1371] = 1358, - [1372] = 1372, - [1373] = 1233, - [1374] = 1278, - [1375] = 1263, - [1376] = 1278, - [1377] = 1281, - [1378] = 1281, - [1379] = 1281, - [1380] = 1281, - [1381] = 1281, - [1382] = 1281, - [1383] = 1208, - [1384] = 1305, - [1385] = 1245, - [1386] = 1320, - [1387] = 1278, - [1388] = 1278, - [1389] = 1278, - [1390] = 1278, - [1391] = 1278, + [1295] = 1279, + [1296] = 1224, + [1297] = 1279, + [1298] = 1298, + [1299] = 1294, + [1300] = 1180, + [1301] = 1301, + [1302] = 1302, + [1303] = 1224, + [1304] = 768, + [1305] = 1258, + [1306] = 1247, + [1307] = 1195, + [1308] = 1308, + [1309] = 1275, + [1310] = 1214, + [1311] = 1275, + [1312] = 1298, + [1313] = 1313, + [1314] = 1279, + [1315] = 1183, + [1316] = 1302, + [1317] = 1279, + [1318] = 1279, + [1319] = 1225, + [1320] = 1192, + [1321] = 1193, + [1322] = 1224, + [1323] = 1258, + [1324] = 1258, + [1325] = 1181, + [1326] = 1182, + [1327] = 1224, + [1328] = 1328, + [1329] = 1182, + [1330] = 1181, + [1331] = 1331, + [1332] = 1275, + [1333] = 1328, + [1334] = 1279, + [1335] = 1228, + [1336] = 1275, + [1337] = 1279, + [1338] = 1258, + [1339] = 1214, + [1340] = 1253, + [1341] = 1275, + [1342] = 1342, + [1343] = 1250, + [1344] = 1220, + [1345] = 1231, + [1346] = 1346, + [1347] = 1279, + [1348] = 1214, + [1349] = 1279, + [1350] = 1258, + [1351] = 1214, + [1352] = 1275, + [1353] = 1353, + [1354] = 1354, + [1355] = 1354, + [1356] = 1279, + [1357] = 1253, + [1358] = 1354, + [1359] = 1354, + [1360] = 1275, + [1361] = 1231, + [1362] = 1182, + [1363] = 1181, + [1364] = 1354, + [1365] = 1258, + [1366] = 1366, + [1367] = 1214, + [1368] = 1220, + [1369] = 1275, + [1370] = 1354, + [1371] = 1371, + [1372] = 1279, + [1373] = 1373, + [1374] = 1214, + [1375] = 1275, + [1376] = 1275, + [1377] = 1275, + [1378] = 1275, + [1379] = 1279, + [1380] = 1279, + [1381] = 1247, + [1382] = 1276, + [1383] = 1279, + [1384] = 1279, + [1385] = 1275, + [1386] = 1214, + [1387] = 1279, + [1388] = 1275, + [1389] = 1253, + [1390] = 1277, + [1391] = 1279, [1392] = 1392, [1393] = 1393, - [1394] = 1394, - [1395] = 1393, - [1396] = 1396, - [1397] = 1393, - [1398] = 1392, - [1399] = 1396, - [1400] = 1394, - [1401] = 1396, - [1402] = 1394, - [1403] = 1396, - [1404] = 1396, - [1405] = 1393, - [1406] = 1393, - [1407] = 1392, - [1408] = 1396, - [1409] = 1392, - [1410] = 1273, - [1411] = 1394, - [1412] = 1412, - [1413] = 1396, - [1414] = 1335, - [1415] = 1392, - [1416] = 1412, - [1417] = 1412, - [1418] = 1396, - [1419] = 1396, - [1420] = 1393, - [1421] = 1393, - [1422] = 1393, - [1423] = 1393, - [1424] = 1392, - [1425] = 1393, - [1426] = 1281, - [1427] = 1208, - [1428] = 1412, - [1429] = 1208, - [1430] = 1278, - [1431] = 1208, - [1432] = 1394, - [1433] = 1394, - [1434] = 1412, - [1435] = 1396, - [1436] = 1412, + [1394] = 1214, + [1395] = 1275, + [1396] = 1279, + [1397] = 1214, + [1398] = 1398, + [1399] = 1399, + [1400] = 1398, + [1401] = 1398, + [1402] = 1402, + [1403] = 1214, + [1404] = 1402, + [1405] = 1392, + [1406] = 1392, + [1407] = 1398, + [1408] = 1399, + [1409] = 1402, + [1410] = 1393, + [1411] = 1393, + [1412] = 1393, + [1413] = 1398, + [1414] = 1402, + [1415] = 1402, + [1416] = 1392, + [1417] = 1392, + [1418] = 1398, + [1419] = 1402, + [1420] = 1398, + [1421] = 1331, + [1422] = 1398, + [1423] = 1399, + [1424] = 1393, + [1425] = 1402, + [1426] = 1399, + [1427] = 1393, + [1428] = 1402, + [1429] = 1392, + [1430] = 1250, + [1431] = 1402, + [1432] = 1398, + [1433] = 1402, + [1434] = 1399, + [1435] = 1399, + [1436] = 1398, [1437] = 1437, - [1438] = 1437, - [1439] = 1437, + [1438] = 1438, + [1439] = 1438, [1440] = 1437, [1441] = 1437, - [1442] = 1437, - [1443] = 1437, - [1444] = 1437, + [1442] = 1438, + [1443] = 1438, + [1444] = 1438, [1445] = 1437, - [1446] = 1437, - [1447] = 1447, - [1448] = 1447, - [1449] = 1447, - [1450] = 1447, - [1451] = 1451, - [1452] = 1447, - [1453] = 1447, + [1446] = 1438, + [1447] = 1437, + [1448] = 1438, + [1449] = 1438, + [1450] = 1438, + [1451] = 1437, + [1452] = 1437, + [1453] = 1438, [1454] = 1454, [1455] = 1454, - [1456] = 1454, - [1457] = 1457, - [1458] = 1458, - [1459] = 1458, - [1460] = 1458, - [1461] = 1454, + [1456] = 1456, + [1457] = 1454, + [1458] = 1454, + [1459] = 1454, + [1460] = 1454, + [1461] = 1461, [1462] = 1462, - [1463] = 1454, - [1464] = 1462, + [1463] = 1462, + [1464] = 1461, [1465] = 1462, - [1466] = 1462, - [1467] = 1458, - [1468] = 1462, - [1469] = 1458, - [1470] = 1470, - [1471] = 1470, - [1472] = 1470, - [1473] = 1470, - [1474] = 1470, - [1475] = 1470, - [1476] = 1470, - [1477] = 1477, - [1478] = 212, - [1479] = 1479, - [1480] = 214, - [1481] = 1481, - [1482] = 1482, + [1466] = 1466, + [1467] = 1466, + [1468] = 1468, + [1469] = 1461, + [1470] = 1462, + [1471] = 1471, + [1472] = 1466, + [1473] = 1466, + [1474] = 1466, + [1475] = 1461, + [1476] = 1461, + [1477] = 1462, + [1478] = 1478, + [1479] = 215, + [1480] = 227, + [1481] = 1147, + [1482] = 1148, [1483] = 1483, - [1484] = 1484, + [1484] = 1151, [1485] = 1485, [1486] = 1486, [1487] = 1487, - [1488] = 950, - [1489] = 951, - [1490] = 212, - [1491] = 952, - [1492] = 1492, - [1493] = 1493, - [1494] = 214, - [1495] = 1495, + [1488] = 1488, + [1489] = 1489, + [1490] = 194, + [1491] = 199, + [1492] = 227, + [1493] = 1147, + [1494] = 1494, + [1495] = 198, [1496] = 1496, [1497] = 1497, - [1498] = 1498, + [1498] = 203, [1499] = 1499, - [1500] = 1500, - [1501] = 194, - [1502] = 205, - [1503] = 203, - [1504] = 198, + [1500] = 215, + [1501] = 1501, + [1502] = 1502, + [1503] = 1151, + [1504] = 1148, [1505] = 1505, [1506] = 1506, [1507] = 1507, @@ -5978,21 +6084,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1513, + [1513] = 1132, [1514] = 1514, [1515] = 1515, [1516] = 1516, [1517] = 1517, [1518] = 1518, [1519] = 1519, - [1520] = 1509, + [1520] = 1520, [1521] = 1521, [1522] = 1522, [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 1526, - [1527] = 1525, + [1526] = 693, + [1527] = 1527, [1528] = 1528, [1529] = 1529, [1530] = 1530, @@ -6001,24 +6107,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1533] = 1533, [1534] = 1534, [1535] = 1535, - [1536] = 1525, - [1537] = 219, + [1536] = 1536, + [1537] = 1537, [1538] = 1538, - [1539] = 1134, - [1540] = 216, - [1541] = 224, - [1542] = 1542, - [1543] = 1543, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 695, + [1543] = 1533, [1544] = 1544, [1545] = 1545, - [1546] = 1129, + [1546] = 1546, [1547] = 1547, - [1548] = 1125, + [1548] = 1548, [1549] = 1549, [1550] = 1550, - [1551] = 205, - [1552] = 203, - [1553] = 198, + [1551] = 1551, + [1552] = 1552, + [1553] = 1553, [1554] = 1554, [1555] = 1555, [1556] = 1556, @@ -6031,49 +6137,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1563] = 1563, [1564] = 1564, [1565] = 1565, - [1566] = 213, - [1567] = 1509, - [1568] = 1568, - [1569] = 691, + [1566] = 1566, + [1567] = 1567, + [1568] = 220, + [1569] = 221, [1570] = 1570, [1571] = 1571, - [1572] = 1572, + [1572] = 1534, [1573] = 1573, - [1574] = 694, - [1575] = 1575, - [1576] = 1576, + [1574] = 1574, + [1575] = 1123, + [1576] = 694, [1577] = 1577, - [1578] = 1525, + [1578] = 1122, [1579] = 1579, - [1580] = 1580, + [1580] = 1534, [1581] = 1581, [1582] = 1582, - [1583] = 1583, + [1583] = 203, [1584] = 1584, [1585] = 1585, [1586] = 1586, [1587] = 1587, [1588] = 1588, [1589] = 1589, - [1590] = 1509, + [1590] = 1590, [1591] = 1591, - [1592] = 1592, + [1592] = 233, [1593] = 1593, [1594] = 1594, [1595] = 1595, - [1596] = 695, - [1597] = 692, + [1596] = 1596, + [1597] = 1597, [1598] = 1598, [1599] = 1599, [1600] = 1600, [1601] = 1601, [1602] = 1602, - [1603] = 1603, - [1604] = 1525, - [1605] = 1605, + [1603] = 689, + [1604] = 194, + [1605] = 198, [1606] = 1606, [1607] = 1607, - [1608] = 1608, + [1608] = 1533, [1609] = 1609, [1610] = 1610, [1611] = 1611, @@ -6085,23 +6191,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1617] = 1617, [1618] = 1618, [1619] = 1619, - [1620] = 1620, + [1620] = 1534, [1621] = 1621, [1622] = 1622, - [1623] = 693, + [1623] = 1623, [1624] = 1624, - [1625] = 1625, - [1626] = 1626, + [1625] = 690, + [1626] = 225, [1627] = 1627, [1628] = 1628, [1629] = 1629, [1630] = 1630, [1631] = 1631, - [1632] = 1632, + [1632] = 1534, [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 1636, + [1636] = 1533, [1637] = 1637, [1638] = 1638, [1639] = 1639, @@ -6109,13 +6215,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1641] = 1641, [1642] = 1642, [1643] = 1643, - [1644] = 1636, - [1645] = 1637, + [1644] = 1644, + [1645] = 1645, [1646] = 1646, [1647] = 1647, - [1648] = 1638, + [1648] = 1648, [1649] = 1649, - [1650] = 1650, + [1650] = 1638, [1651] = 1651, [1652] = 1652, [1653] = 1653, @@ -6126,14 +6232,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1658] = 1658, [1659] = 1659, [1660] = 1660, - [1661] = 222, - [1662] = 1662, + [1661] = 1661, + [1662] = 1645, [1663] = 1663, - [1664] = 1664, - [1665] = 223, + [1664] = 1654, + [1665] = 1653, [1666] = 1666, [1667] = 1667, - [1668] = 1668, + [1668] = 1659, [1669] = 1669, [1670] = 1670, [1671] = 1671, @@ -6141,1022 +6247,1022 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1673] = 1673, [1674] = 1674, [1675] = 1675, - [1676] = 1639, - [1677] = 1677, - [1678] = 218, + [1676] = 1676, + [1677] = 1645, + [1678] = 1678, [1679] = 1679, [1680] = 1680, - [1681] = 1681, + [1681] = 1644, [1682] = 1682, - [1683] = 1683, - [1684] = 1684, - [1685] = 1685, + [1683] = 206, + [1684] = 221, + [1685] = 220, [1686] = 1686, [1687] = 1687, [1688] = 1688, [1689] = 1689, - [1690] = 1674, + [1690] = 1648, [1691] = 1691, - [1692] = 1675, + [1692] = 1485, [1693] = 1693, - [1694] = 1651, - [1695] = 219, + [1694] = 1694, + [1695] = 1695, [1696] = 1696, [1697] = 1697, [1698] = 1698, [1699] = 1699, [1700] = 1700, - [1701] = 1701, - [1702] = 1702, - [1703] = 1703, + [1701] = 1647, + [1702] = 1687, + [1703] = 1651, [1704] = 1704, - [1705] = 220, + [1705] = 1705, [1706] = 1706, - [1707] = 1674, + [1707] = 234, [1708] = 1708, - [1709] = 1675, + [1709] = 1640, [1710] = 1710, - [1711] = 1677, - [1712] = 231, + [1711] = 1711, + [1712] = 1712, [1713] = 1713, [1714] = 1714, - [1715] = 1715, - [1716] = 1716, + [1715] = 233, + [1716] = 1687, [1717] = 1717, [1718] = 1718, [1719] = 1719, [1720] = 1720, [1721] = 1721, [1722] = 1722, - [1723] = 1723, - [1724] = 230, - [1725] = 1654, - [1726] = 1663, - [1727] = 1697, + [1723] = 1659, + [1724] = 1724, + [1725] = 1640, + [1726] = 1638, + [1727] = 1727, [1728] = 1728, - [1729] = 1680, - [1730] = 1681, - [1731] = 1703, - [1732] = 1708, - [1733] = 213, - [1734] = 1719, - [1735] = 1720, + [1729] = 232, + [1730] = 1651, + [1731] = 1731, + [1732] = 1732, + [1733] = 1733, + [1734] = 1699, + [1735] = 1700, [1736] = 1736, - [1737] = 1721, - [1738] = 1722, + [1737] = 1737, + [1738] = 1738, [1739] = 1739, - [1740] = 1740, - [1741] = 1741, - [1742] = 1739, - [1743] = 1641, - [1744] = 1744, - [1745] = 1641, - [1746] = 1636, - [1747] = 1747, - [1748] = 1637, - [1749] = 1638, - [1750] = 1740, - [1751] = 1639, - [1752] = 1646, + [1740] = 212, + [1741] = 1711, + [1742] = 1742, + [1743] = 1672, + [1744] = 1488, + [1745] = 234, + [1746] = 1739, + [1747] = 1487, + [1748] = 1486, + [1749] = 1489, + [1750] = 226, + [1751] = 226, + [1752] = 224, [1753] = 1753, - [1754] = 1754, - [1755] = 1741, - [1756] = 1649, - [1757] = 231, - [1758] = 1758, + [1754] = 1706, + [1755] = 1717, + [1756] = 225, + [1757] = 1712, + [1758] = 1733, [1759] = 1759, - [1760] = 1760, - [1761] = 1716, - [1762] = 220, - [1763] = 1718, + [1760] = 212, + [1761] = 1670, + [1762] = 1708, + [1763] = 1696, [1764] = 1764, - [1765] = 1650, - [1766] = 223, - [1767] = 1767, - [1768] = 1768, - [1769] = 1769, - [1770] = 230, - [1771] = 218, - [1772] = 1717, - [1773] = 1773, - [1774] = 1713, + [1765] = 1694, + [1766] = 1695, + [1767] = 1696, + [1768] = 1708, + [1769] = 1712, + [1770] = 1724, + [1771] = 1682, + [1772] = 1772, + [1773] = 1638, + [1774] = 1666, [1775] = 1775, - [1776] = 1776, - [1777] = 1777, - [1778] = 1652, - [1779] = 1723, - [1780] = 1674, - [1781] = 1485, - [1782] = 1675, - [1783] = 1483, - [1784] = 1484, + [1776] = 1651, + [1777] = 1695, + [1778] = 1778, + [1779] = 1721, + [1780] = 1720, + [1781] = 1721, + [1782] = 1739, + [1783] = 1733, + [1784] = 1719, [1785] = 1785, - [1786] = 1649, - [1787] = 1787, - [1788] = 1650, - [1789] = 1651, - [1790] = 1710, - [1791] = 1677, - [1792] = 1713, + [1786] = 1786, + [1787] = 1651, + [1788] = 1788, + [1789] = 1688, + [1790] = 1790, + [1791] = 1791, + [1792] = 1638, [1793] = 1793, - [1794] = 1652, - [1795] = 1486, - [1796] = 1715, - [1797] = 1481, - [1798] = 216, - [1799] = 1799, - [1800] = 224, - [1801] = 222, - [1802] = 1646, - [1803] = 1803, - [1804] = 1710, - [1805] = 1674, - [1806] = 1675, - [1807] = 1716, - [1808] = 1717, - [1809] = 1723, + [1794] = 1670, + [1795] = 224, + [1796] = 1796, + [1797] = 1643, + [1798] = 1798, + [1799] = 1644, + [1800] = 206, + [1801] = 1719, + [1802] = 1802, + [1803] = 1647, + [1804] = 1648, + [1805] = 1653, + [1806] = 1654, + [1807] = 1807, + [1808] = 1663, + [1809] = 1699, [1810] = 1810, - [1811] = 1663, - [1812] = 1680, - [1813] = 1681, - [1814] = 1703, - [1815] = 1715, - [1816] = 1708, - [1817] = 1719, - [1818] = 1720, - [1819] = 1819, - [1820] = 1721, - [1821] = 1722, - [1822] = 1822, - [1823] = 1739, - [1824] = 1740, - [1825] = 1741, - [1826] = 1760, - [1827] = 1760, + [1811] = 1688, + [1812] = 1694, + [1813] = 1700, + [1814] = 1711, + [1815] = 1815, + [1816] = 1785, + [1817] = 1663, + [1818] = 1818, + [1819] = 1666, + [1820] = 1682, + [1821] = 1821, + [1822] = 1724, + [1823] = 1643, + [1824] = 1785, + [1825] = 1825, + [1826] = 1826, + [1827] = 1827, [1828] = 1828, - [1829] = 1723, + [1829] = 232, [1830] = 1830, - [1831] = 1681, - [1832] = 1716, - [1833] = 1833, - [1834] = 1713, - [1835] = 1641, - [1836] = 1703, - [1837] = 1636, - [1838] = 1838, - [1839] = 1649, - [1840] = 1840, - [1841] = 1708, - [1842] = 1637, - [1843] = 1719, - [1844] = 1720, - [1845] = 1638, - [1846] = 1639, - [1847] = 1721, - [1848] = 1542, - [1849] = 1722, - [1850] = 1677, - [1851] = 1851, - [1852] = 1852, - [1853] = 1853, - [1854] = 1544, + [1831] = 1720, + [1832] = 1695, + [1833] = 1647, + [1834] = 1643, + [1835] = 1733, + [1836] = 1739, + [1837] = 1644, + [1838] = 1717, + [1839] = 1839, + [1840] = 1721, + [1841] = 1648, + [1842] = 1720, + [1843] = 1653, + [1844] = 1653, + [1845] = 1648, + [1846] = 1151, + [1847] = 1654, + [1848] = 1848, + [1849] = 1663, + [1850] = 1850, + [1851] = 1699, + [1852] = 1647, + [1853] = 1644, + [1854] = 1700, [1855] = 1855, [1856] = 1856, [1857] = 1857, - [1858] = 1858, + [1858] = 1711, [1859] = 1859, - [1860] = 1860, - [1861] = 1852, - [1862] = 1862, - [1863] = 1744, - [1864] = 1864, - [1865] = 1715, - [1866] = 1500, - [1867] = 1718, - [1868] = 1650, - [1869] = 1869, - [1870] = 1651, - [1871] = 1499, - [1872] = 1728, - [1873] = 1654, - [1874] = 1697, - [1875] = 1830, - [1876] = 1493, - [1877] = 1739, - [1878] = 1492, - [1879] = 1740, + [1860] = 1712, + [1861] = 1663, + [1862] = 1699, + [1863] = 1494, + [1864] = 1708, + [1865] = 1643, + [1866] = 1711, + [1867] = 1785, + [1868] = 1666, + [1869] = 1696, + [1870] = 1682, + [1871] = 1857, + [1872] = 1724, + [1873] = 1672, + [1874] = 1695, + [1875] = 1694, + [1876] = 1876, + [1877] = 1877, + [1878] = 1659, + [1879] = 1645, [1880] = 1880, - [1881] = 1833, - [1882] = 1882, - [1883] = 1855, - [1884] = 1741, - [1885] = 1760, - [1886] = 1886, - [1887] = 1852, - [1888] = 1663, - [1889] = 1497, - [1890] = 1498, - [1891] = 1652, - [1892] = 1710, - [1893] = 1542, - [1894] = 1544, - [1895] = 1833, - [1896] = 1833, - [1897] = 1495, - [1898] = 1869, - [1899] = 1487, - [1900] = 952, - [1901] = 1852, - [1902] = 1833, - [1903] = 1710, - [1904] = 1677, - [1905] = 1713, - [1906] = 1715, - [1907] = 1716, - [1908] = 1717, - [1909] = 1723, - [1910] = 1663, - [1911] = 1680, - [1912] = 1681, - [1913] = 1703, - [1914] = 1708, - [1915] = 1719, - [1916] = 1720, - [1917] = 1721, - [1918] = 1722, - [1919] = 1739, - [1920] = 1740, - [1921] = 1741, - [1922] = 1760, - [1923] = 1641, - [1924] = 1636, - [1925] = 1637, - [1926] = 1638, - [1927] = 1639, - [1928] = 1646, + [1881] = 1706, + [1882] = 1688, + [1883] = 1719, + [1884] = 1733, + [1885] = 1739, + [1886] = 1721, + [1887] = 1720, + [1888] = 1712, + [1889] = 1708, + [1890] = 1719, + [1891] = 1891, + [1892] = 1696, + [1893] = 1688, + [1894] = 1654, + [1895] = 1694, + [1896] = 1670, + [1897] = 1640, + [1898] = 1687, + [1899] = 1700, + [1900] = 1900, + [1901] = 1901, + [1902] = 1571, + [1903] = 1496, + [1904] = 1904, + [1905] = 1857, + [1906] = 1785, + [1907] = 1573, + [1908] = 1908, + [1909] = 1848, + [1910] = 1910, + [1911] = 1911, + [1912] = 1850, + [1913] = 1913, + [1914] = 1666, + [1915] = 1682, + [1916] = 1857, + [1917] = 1724, + [1918] = 1918, + [1919] = 1901, + [1920] = 1687, + [1921] = 1908, + [1922] = 1573, + [1923] = 1571, + [1924] = 1501, + [1925] = 1502, + [1926] = 1497, + [1927] = 1927, + [1928] = 1499, [1929] = 1929, - [1930] = 1649, - [1931] = 1650, - [1932] = 1651, - [1933] = 1652, - [1934] = 1717, - [1935] = 1852, - [1936] = 1680, - [1937] = 1937, - [1938] = 1938, - [1939] = 951, + [1930] = 1507, + [1931] = 1670, + [1932] = 1850, + [1933] = 1933, + [1934] = 1506, + [1935] = 1505, + [1936] = 1936, + [1937] = 1640, + [1938] = 1645, + [1939] = 1939, [1940] = 1940, - [1941] = 1938, - [1942] = 1942, - [1943] = 1833, - [1944] = 1496, + [1941] = 1148, + [1942] = 1850, + [1943] = 1828, + [1944] = 1659, [1945] = 1945, - [1946] = 1646, - [1947] = 1833, - [1948] = 950, - [1949] = 1519, - [1950] = 1523, - [1951] = 1512, - [1952] = 1513, - [1953] = 1710, - [1954] = 1547, - [1955] = 1544, - [1956] = 1956, - [1957] = 1624, - [1958] = 1625, - [1959] = 1514, - [1960] = 1960, - [1961] = 1626, - [1962] = 1627, - [1963] = 1963, - [1964] = 1515, - [1965] = 1516, - [1966] = 1628, - [1967] = 1629, - [1968] = 1517, - [1969] = 1606, - [1970] = 1505, - [1971] = 1631, - [1972] = 1632, - [1973] = 1637, - [1974] = 1638, - [1975] = 1550, - [1976] = 1129, - [1977] = 1633, - [1978] = 1518, - [1979] = 1577, - [1980] = 1649, - [1981] = 1630, - [1982] = 1134, - [1983] = 1719, - [1984] = 1639, - [1985] = 1720, - [1986] = 1986, - [1987] = 1650, - [1988] = 1986, - [1989] = 1651, - [1990] = 1990, - [1991] = 1721, - [1992] = 1963, - [1993] = 1652, - [1994] = 1717, - [1995] = 1986, - [1996] = 1555, - [1997] = 1997, - [1998] = 1998, - [1999] = 1529, - [2000] = 194, - [2001] = 1723, - [2002] = 1608, - [2003] = 1609, - [2004] = 1556, - [2005] = 1557, - [2006] = 1542, - [2007] = 1610, - [2008] = 2008, - [2009] = 1722, - [2010] = 1544, - [2011] = 1612, - [2012] = 2012, - [2013] = 2013, - [2014] = 2014, - [2015] = 2015, - [2016] = 691, - [2017] = 1613, - [2018] = 1739, - [2019] = 1570, - [2020] = 1614, - [2021] = 1615, - [2022] = 1986, - [2023] = 1618, - [2024] = 1572, - [2025] = 1619, - [2026] = 1573, - [2027] = 1677, - [2028] = 1713, - [2029] = 694, - [2030] = 1736, - [2031] = 1620, - [2032] = 1575, - [2033] = 1747, - [2034] = 1559, - [2035] = 1560, - [2036] = 1622, - [2037] = 1561, - [2038] = 1562, - [2039] = 1521, - [2040] = 1526, - [2041] = 1563, - [2042] = 1621, - [2043] = 1528, - [2044] = 1530, - [2045] = 1531, - [2046] = 1532, - [2047] = 1697, - [2048] = 1736, - [2049] = 1653, - [2050] = 1740, - [2051] = 1741, - [2052] = 1681, - [2053] = 1654, - [2054] = 1533, - [2055] = 1860, + [1946] = 1850, + [1947] = 1147, + [1948] = 1948, + [1949] = 1850, + [1950] = 1807, + [1951] = 1891, + [1952] = 1850, + [1953] = 1857, + [1954] = 1598, + [1955] = 1581, + [1956] = 1596, + [1957] = 1595, + [1958] = 1785, + [1959] = 1959, + [1960] = 1594, + [1961] = 1593, + [1962] = 1666, + [1963] = 1682, + [1964] = 1964, + [1965] = 1591, + [1966] = 1590, + [1967] = 1589, + [1968] = 1588, + [1969] = 1587, + [1970] = 1586, + [1971] = 1971, + [1972] = 1585, + [1973] = 1584, + [1974] = 1582, + [1975] = 1724, + [1976] = 1717, + [1977] = 1123, + [1978] = 1579, + [1979] = 1508, + [1980] = 1577, + [1981] = 1981, + [1982] = 694, + [1983] = 1983, + [1984] = 1570, + [1985] = 1567, + [1986] = 1566, + [1987] = 1565, + [1988] = 1564, + [1989] = 1563, + [1990] = 1562, + [1991] = 1991, + [1992] = 1561, + [1993] = 1560, + [1994] = 1559, + [1995] = 1558, + [1996] = 1557, + [1997] = 1556, + [1998] = 1555, + [1999] = 1554, + [2000] = 1552, + [2001] = 1551, + [2002] = 1550, + [2003] = 2003, + [2004] = 1122, + [2005] = 1549, + [2006] = 1548, + [2007] = 1546, + [2008] = 695, + [2009] = 1541, + [2010] = 1540, + [2011] = 1539, + [2012] = 1706, + [2013] = 1538, + [2014] = 1537, + [2015] = 1536, + [2016] = 1535, + [2017] = 1532, + [2018] = 1634, + [2019] = 1531, + [2020] = 1530, + [2021] = 1529, + [2022] = 1528, + [2023] = 1527, + [2024] = 693, + [2025] = 1525, + [2026] = 1524, + [2027] = 1511, + [2028] = 1522, + [2029] = 1521, + [2030] = 1520, + [2031] = 1519, + [2032] = 1518, + [2033] = 1830, + [2034] = 1517, + [2035] = 1516, + [2036] = 1515, + [2037] = 1711, + [2038] = 1672, + [2039] = 1790, + [2040] = 1574, + [2041] = 1514, + [2042] = 1790, + [2043] = 1621, + [2044] = 1597, + [2045] = 1599, + [2046] = 199, + [2047] = 1772, + [2048] = 1616, + [2049] = 1700, + [2050] = 1699, + [2051] = 1600, + [2052] = 1601, + [2053] = 1971, + [2054] = 1663, + [2055] = 1654, [2056] = 1653, - [2057] = 692, - [2058] = 2012, - [2059] = 1598, - [2060] = 1534, - [2061] = 2061, - [2062] = 1535, - [2063] = 1538, - [2064] = 1599, - [2065] = 2065, - [2066] = 2066, - [2067] = 1558, - [2068] = 1564, - [2069] = 1595, - [2070] = 1986, - [2071] = 2071, - [2072] = 2072, - [2073] = 1601, - [2074] = 1602, - [2075] = 1603, - [2076] = 1760, - [2077] = 1986, - [2078] = 1680, - [2079] = 1591, + [2057] = 1648, + [2058] = 1647, + [2059] = 1644, + [2060] = 1602, + [2061] = 1643, + [2062] = 1688, + [2063] = 1719, + [2064] = 1733, + [2065] = 689, + [2066] = 1739, + [2067] = 1971, + [2068] = 1573, + [2069] = 1571, + [2070] = 1721, + [2071] = 1720, + [2072] = 1712, + [2073] = 1708, + [2074] = 1696, + [2075] = 1571, + [2076] = 1695, + [2077] = 1694, + [2078] = 1573, + [2079] = 1971, [2080] = 2080, - [2081] = 1703, - [2082] = 693, - [2083] = 1708, - [2084] = 1716, - [2085] = 1543, - [2086] = 1646, - [2087] = 1506, - [2088] = 1507, - [2089] = 1545, - [2090] = 1544, - [2091] = 1744, - [2092] = 194, - [2093] = 695, - [2094] = 2094, - [2095] = 1747, - [2096] = 1571, - [2097] = 1508, - [2098] = 2098, - [2099] = 1882, - [2100] = 1607, - [2101] = 2101, - [2102] = 1576, - [2103] = 2103, - [2104] = 1510, - [2105] = 2105, - [2106] = 1605, - [2107] = 1715, - [2108] = 1634, - [2109] = 1542, - [2110] = 1549, - [2111] = 1554, - [2112] = 1579, - [2113] = 1611, - [2114] = 2013, - [2115] = 1543, - [2116] = 1580, - [2117] = 2072, - [2118] = 1544, - [2119] = 1581, - [2120] = 1545, - [2121] = 1582, - [2122] = 1583, - [2123] = 1584, - [2124] = 1728, - [2125] = 1882, - [2126] = 1744, - [2127] = 1547, - [2128] = 1641, - [2129] = 1585, - [2130] = 2130, - [2131] = 1522, - [2132] = 2132, - [2133] = 1565, - [2134] = 1568, - [2135] = 1524, - [2136] = 2066, - [2137] = 1663, - [2138] = 1960, - [2139] = 1636, - [2140] = 1588, - [2141] = 1125, - [2142] = 1571, - [2143] = 1542, - [2144] = 1592, - [2145] = 1616, - [2146] = 1586, - [2147] = 1593, - [2148] = 2012, - [2149] = 1617, - [2150] = 2150, - [2151] = 1594, - [2152] = 1986, - [2153] = 1587, - [2154] = 1718, - [2155] = 1542, - [2156] = 1511, - [2157] = 1589, - [2158] = 1600, - [2159] = 1718, - [2160] = 1595, - [2161] = 225, - [2162] = 1736, - [2163] = 2163, - [2164] = 1793, - [2165] = 1642, - [2166] = 1643, - [2167] = 2167, - [2168] = 2168, - [2169] = 2169, - [2170] = 1647, - [2171] = 2171, - [2172] = 211, - [2173] = 1799, - [2174] = 1655, - [2175] = 1656, - [2176] = 1657, - [2177] = 1819, - [2178] = 1659, - [2179] = 2179, - [2180] = 2180, - [2181] = 2181, - [2182] = 226, - [2183] = 227, - [2184] = 1660, - [2185] = 228, - [2186] = 1662, - [2187] = 2187, - [2188] = 2188, - [2189] = 2163, - [2190] = 232, + [2081] = 1828, + [2082] = 2082, + [2083] = 2083, + [2084] = 1670, + [2085] = 2085, + [2086] = 1807, + [2087] = 2083, + [2088] = 2088, + [2089] = 1964, + [2090] = 1132, + [2091] = 1606, + [2092] = 1607, + [2093] = 1554, + [2094] = 1918, + [2095] = 1609, + [2096] = 1610, + [2097] = 1611, + [2098] = 1828, + [2099] = 1581, + [2100] = 1612, + [2101] = 1613, + [2102] = 1573, + [2103] = 1614, + [2104] = 1615, + [2105] = 1571, + [2106] = 2082, + [2107] = 1617, + [2108] = 1618, + [2109] = 1619, + [2110] = 1910, + [2111] = 2111, + [2112] = 1772, + [2113] = 1991, + [2114] = 1553, + [2115] = 1544, + [2116] = 1622, + [2117] = 2117, + [2118] = 1623, + [2119] = 1624, + [2120] = 1971, + [2121] = 690, + [2122] = 2122, + [2123] = 2111, + [2124] = 2124, + [2125] = 2125, + [2126] = 1910, + [2127] = 2127, + [2128] = 2088, + [2129] = 2129, + [2130] = 1830, + [2131] = 1687, + [2132] = 1971, + [2133] = 1640, + [2134] = 1971, + [2135] = 2135, + [2136] = 2136, + [2137] = 1628, + [2138] = 1629, + [2139] = 1630, + [2140] = 1631, + [2141] = 1645, + [2142] = 1633, + [2143] = 1659, + [2144] = 1571, + [2145] = 1621, + [2146] = 1573, + [2147] = 1574, + [2148] = 1635, + [2149] = 1637, + [2150] = 1512, + [2151] = 1523, + [2152] = 1627, + [2153] = 2153, + [2154] = 2154, + [2155] = 2155, + [2156] = 2156, + [2157] = 1510, + [2158] = 1509, + [2159] = 2088, + [2160] = 199, + [2161] = 2161, + [2162] = 1547, + [2163] = 1545, + [2164] = 2164, + [2165] = 1645, + [2166] = 1682, + [2167] = 1724, + [2168] = 1710, + [2169] = 1772, + [2170] = 2170, + [2171] = 208, + [2172] = 1661, + [2173] = 1802, + [2174] = 1660, + [2175] = 1798, + [2176] = 2176, + [2177] = 1641, + [2178] = 1657, + [2179] = 1574, + [2180] = 1634, + [2181] = 1687, + [2182] = 2182, + [2183] = 1691, + [2184] = 2184, + [2185] = 2185, + [2186] = 1646, + [2187] = 1640, + [2188] = 1645, + [2189] = 2170, + [2190] = 1659, [2191] = 2191, - [2192] = 233, - [2193] = 234, - [2194] = 235, - [2195] = 1862, + [2192] = 2192, + [2193] = 1634, + [2194] = 2170, + [2195] = 1790, [2196] = 2196, - [2197] = 2197, - [2198] = 2198, - [2199] = 1658, + [2197] = 1639, + [2198] = 1791, + [2199] = 2199, [2200] = 2200, - [2201] = 207, - [2202] = 208, - [2203] = 2203, - [2204] = 1664, - [2205] = 209, + [2201] = 1686, + [2202] = 1652, + [2203] = 1826, + [2204] = 2204, + [2205] = 1785, [2206] = 2206, [2207] = 2207, - [2208] = 210, - [2209] = 1693, - [2210] = 225, - [2211] = 2211, - [2212] = 2212, - [2213] = 2168, - [2214] = 2169, - [2215] = 1666, - [2216] = 1667, - [2217] = 211, - [2218] = 1882, - [2219] = 1668, - [2220] = 1669, - [2221] = 1670, - [2222] = 1653, - [2223] = 1671, - [2224] = 1672, - [2225] = 226, - [2226] = 227, - [2227] = 228, - [2228] = 1673, + [2208] = 1793, + [2209] = 1634, + [2210] = 1666, + [2211] = 1711, + [2212] = 1700, + [2213] = 2170, + [2214] = 1687, + [2215] = 1699, + [2216] = 219, + [2217] = 2217, + [2218] = 1663, + [2219] = 1654, + [2220] = 1640, + [2221] = 1645, + [2222] = 2088, + [2223] = 1659, + [2224] = 2224, + [2225] = 1653, + [2226] = 1736, + [2227] = 1679, + [2228] = 2228, [2229] = 2229, [2230] = 2230, - [2231] = 232, - [2232] = 233, - [2233] = 234, - [2234] = 235, - [2235] = 207, - [2236] = 208, - [2237] = 209, - [2238] = 210, - [2239] = 1595, - [2240] = 2168, - [2241] = 1543, - [2242] = 2169, - [2243] = 2015, - [2244] = 2244, - [2245] = 1545, - [2246] = 1747, - [2247] = 1736, - [2248] = 1691, - [2249] = 2187, - [2250] = 2012, - [2251] = 1744, - [2252] = 1747, - [2253] = 2168, - [2254] = 2169, - [2255] = 1679, - [2256] = 1682, - [2257] = 1683, - [2258] = 1654, - [2259] = 1697, - [2260] = 2168, - [2261] = 2169, - [2262] = 1684, - [2263] = 1736, - [2264] = 1685, - [2265] = 1686, - [2266] = 1687, - [2267] = 1747, - [2268] = 2168, - [2269] = 2169, - [2270] = 2270, - [2271] = 2271, - [2272] = 1571, - [2273] = 1547, - [2274] = 2168, - [2275] = 2169, - [2276] = 2270, - [2277] = 2271, - [2278] = 1542, - [2279] = 1544, - [2280] = 1542, - [2281] = 1544, - [2282] = 2270, - [2283] = 2271, - [2284] = 2270, - [2285] = 2271, - [2286] = 2270, - [2287] = 2271, - [2288] = 2288, - [2289] = 2289, - [2290] = 2290, - [2291] = 2291, - [2292] = 2292, - [2293] = 2293, + [2231] = 2231, + [2232] = 1796, + [2233] = 1648, + [2234] = 2234, + [2235] = 2235, + [2236] = 2191, + [2237] = 1827, + [2238] = 2122, + [2239] = 1670, + [2240] = 1694, + [2241] = 1695, + [2242] = 1621, + [2243] = 1738, + [2244] = 1790, + [2245] = 1670, + [2246] = 1694, + [2247] = 1695, + [2248] = 1737, + [2249] = 1672, + [2250] = 2207, + [2251] = 1676, + [2252] = 1693, + [2253] = 2253, + [2254] = 1671, + [2255] = 2182, + [2256] = 1669, + [2257] = 1667, + [2258] = 2258, + [2259] = 1647, + [2260] = 1689, + [2261] = 1828, + [2262] = 1696, + [2263] = 1732, + [2264] = 1644, + [2265] = 1706, + [2266] = 2170, + [2267] = 1717, + [2268] = 1708, + [2269] = 2088, + [2270] = 1712, + [2271] = 2204, + [2272] = 2206, + [2273] = 1731, + [2274] = 1720, + [2275] = 1721, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, + [2279] = 1643, + [2280] = 2280, + [2281] = 2170, + [2282] = 2282, + [2283] = 2184, + [2284] = 2284, + [2285] = 2185, + [2286] = 1728, + [2287] = 2088, + [2288] = 1939, + [2289] = 1727, + [2290] = 1695, + [2291] = 1647, + [2292] = 1772, + [2293] = 1688, [2294] = 2294, - [2295] = 2171, - [2296] = 2179, - [2297] = 2297, - [2298] = 1688, - [2299] = 1764, - [2300] = 2300, + [2295] = 2295, + [2296] = 1719, + [2297] = 1739, + [2298] = 2298, + [2299] = 1640, + [2300] = 2122, [2301] = 2301, [2302] = 2302, [2303] = 2303, [2304] = 2304, - [2305] = 2305, - [2306] = 2306, + [2305] = 1733, + [2306] = 1739, [2307] = 2307, - [2308] = 1773, - [2309] = 1696, - [2310] = 1698, - [2311] = 1710, - [2312] = 1677, - [2313] = 1713, - [2314] = 1715, - [2315] = 1716, - [2316] = 1717, - [2317] = 1723, - [2318] = 1663, - [2319] = 1680, - [2320] = 1681, - [2321] = 1703, - [2322] = 1708, - [2323] = 1719, - [2324] = 1720, - [2325] = 1721, - [2326] = 1722, - [2327] = 1739, - [2328] = 1740, - [2329] = 1741, - [2330] = 1760, - [2331] = 1641, - [2332] = 1636, - [2333] = 1637, - [2334] = 1638, - [2335] = 1639, - [2336] = 1646, - [2337] = 1758, - [2338] = 1635, - [2339] = 1699, - [2340] = 1700, - [2341] = 1701, - [2342] = 1702, - [2343] = 1710, - [2344] = 1677, - [2345] = 1713, - [2346] = 1715, - [2347] = 1716, - [2348] = 1717, - [2349] = 1723, - [2350] = 1663, - [2351] = 1680, - [2352] = 1681, - [2353] = 1703, - [2354] = 1708, - [2355] = 1719, - [2356] = 1720, - [2357] = 1721, - [2358] = 1722, - [2359] = 1739, - [2360] = 1740, - [2361] = 1741, - [2362] = 1760, - [2363] = 1641, - [2364] = 1636, - [2365] = 1637, - [2366] = 1638, - [2367] = 1639, - [2368] = 1646, - [2369] = 1759, - [2370] = 2370, - [2371] = 2371, - [2372] = 2372, - [2373] = 2373, - [2374] = 2374, - [2375] = 2375, - [2376] = 2206, - [2377] = 2292, + [2308] = 1721, + [2309] = 223, + [2310] = 2206, + [2311] = 222, + [2312] = 2204, + [2313] = 1772, + [2314] = 1720, + [2315] = 2315, + [2316] = 1821, + [2317] = 1712, + [2318] = 1678, + [2319] = 2319, + [2320] = 1708, + [2321] = 217, + [2322] = 1696, + [2323] = 2323, + [2324] = 2170, + [2325] = 2325, + [2326] = 1659, + [2327] = 1696, + [2328] = 1788, + [2329] = 1708, + [2330] = 1663, + [2331] = 2331, + [2332] = 2170, + [2333] = 1694, + [2334] = 1670, + [2335] = 2170, + [2336] = 1719, + [2337] = 1712, + [2338] = 1786, + [2339] = 1778, + [2340] = 1720, + [2341] = 1818, + [2342] = 1775, + [2343] = 2323, + [2344] = 1764, + [2345] = 209, + [2346] = 2346, + [2347] = 229, + [2348] = 218, + [2349] = 2349, + [2350] = 207, + [2351] = 2351, + [2352] = 1721, + [2353] = 2192, + [2354] = 1688, + [2355] = 1790, + [2356] = 1643, + [2357] = 1759, + [2358] = 2206, + [2359] = 228, + [2360] = 230, + [2361] = 2204, + [2362] = 235, + [2363] = 210, + [2364] = 2364, + [2365] = 1644, + [2366] = 1739, + [2367] = 2367, + [2368] = 1647, + [2369] = 1733, + [2370] = 1719, + [2371] = 1688, + [2372] = 1648, + [2373] = 1653, + [2374] = 1643, + [2375] = 1644, + [2376] = 210, + [2377] = 1753, [2378] = 2378, - [2379] = 2372, - [2380] = 2380, - [2381] = 2381, - [2382] = 2382, + [2379] = 2379, + [2380] = 217, + [2381] = 222, + [2382] = 223, [2383] = 2383, - [2384] = 2171, - [2385] = 1768, - [2386] = 1704, - [2387] = 1706, - [2388] = 1769, - [2389] = 2012, - [2390] = 2380, - [2391] = 2171, + [2384] = 2384, + [2385] = 2385, + [2386] = 2386, + [2387] = 2387, + [2388] = 2388, + [2389] = 1713, + [2390] = 2390, + [2391] = 1830, [2392] = 1649, - [2393] = 1650, - [2394] = 1651, - [2395] = 1652, - [2396] = 2171, - [2397] = 1649, - [2398] = 1650, - [2399] = 1651, - [2400] = 1652, - [2401] = 2401, - [2402] = 2171, - [2403] = 2171, - [2404] = 1775, + [2393] = 235, + [2394] = 1655, + [2395] = 2204, + [2396] = 1656, + [2397] = 2206, + [2398] = 230, + [2399] = 2399, + [2400] = 2164, + [2401] = 1910, + [2402] = 228, + [2403] = 1714, + [2404] = 2404, [2405] = 2405, - [2406] = 2406, - [2407] = 1776, - [2408] = 1777, - [2409] = 2015, - [2410] = 2171, - [2411] = 2411, + [2406] = 219, + [2407] = 1810, + [2408] = 1654, + [2409] = 1687, + [2410] = 1724, + [2411] = 1733, [2412] = 2412, - [2413] = 2171, - [2414] = 1710, - [2415] = 1677, - [2416] = 1713, - [2417] = 1715, - [2418] = 1716, - [2419] = 1717, - [2420] = 1723, - [2421] = 1663, - [2422] = 1680, - [2423] = 1681, - [2424] = 1703, - [2425] = 1708, - [2426] = 1719, - [2427] = 1720, - [2428] = 1721, - [2429] = 1722, - [2430] = 1739, - [2431] = 1740, - [2432] = 1741, - [2433] = 1760, - [2434] = 1641, - [2435] = 1636, - [2436] = 1637, - [2437] = 1638, - [2438] = 1639, - [2439] = 1646, - [2440] = 1649, - [2441] = 1650, - [2442] = 1651, - [2443] = 1652, - [2444] = 1595, - [2445] = 2171, - [2446] = 2012, - [2447] = 1649, - [2448] = 2448, - [2449] = 2448, - [2450] = 2450, - [2451] = 2012, - [2452] = 2452, - [2453] = 1543, - [2454] = 1545, - [2455] = 2455, - [2456] = 1595, - [2457] = 2448, - [2458] = 1571, - [2459] = 2459, - [2460] = 2460, - [2461] = 1736, - [2462] = 1653, - [2463] = 1747, - [2464] = 2464, - [2465] = 2465, - [2466] = 2466, - [2467] = 2467, - [2468] = 2448, - [2469] = 2469, - [2470] = 1547, - [2471] = 2471, - [2472] = 1654, - [2473] = 2473, - [2474] = 1542, - [2475] = 2475, - [2476] = 1544, - [2477] = 2477, - [2478] = 1929, - [2479] = 2479, - [2480] = 2480, - [2481] = 2481, - [2482] = 2448, - [2483] = 2483, - [2484] = 2484, - [2485] = 1650, - [2486] = 1651, - [2487] = 1652, - [2488] = 2488, + [2413] = 207, + [2414] = 218, + [2415] = 2206, + [2416] = 1573, + [2417] = 2204, + [2418] = 1682, + [2419] = 1682, + [2420] = 2420, + [2421] = 1581, + [2422] = 2422, + [2423] = 1554, + [2424] = 2424, + [2425] = 1648, + [2426] = 2426, + [2427] = 1653, + [2428] = 2428, + [2429] = 229, + [2430] = 1666, + [2431] = 1785, + [2432] = 1711, + [2433] = 1700, + [2434] = 1698, + [2435] = 1699, + [2436] = 2204, + [2437] = 2206, + [2438] = 2170, + [2439] = 2164, + [2440] = 2399, + [2441] = 1663, + [2442] = 1675, + [2443] = 2399, + [2444] = 209, + [2445] = 2445, + [2446] = 1724, + [2447] = 2164, + [2448] = 2164, + [2449] = 2399, + [2450] = 1573, + [2451] = 1571, + [2452] = 1571, + [2453] = 2399, + [2454] = 208, + [2455] = 1654, + [2456] = 1699, + [2457] = 1700, + [2458] = 1711, + [2459] = 1785, + [2460] = 1666, + [2461] = 1673, + [2462] = 2462, + [2463] = 1720, + [2464] = 2462, + [2465] = 1670, + [2466] = 1694, + [2467] = 1695, + [2468] = 1706, + [2469] = 1696, + [2470] = 1708, + [2471] = 1712, + [2472] = 2472, + [2473] = 1721, + [2474] = 2474, + [2475] = 1739, + [2476] = 1733, + [2477] = 1719, + [2478] = 2088, + [2479] = 1688, + [2480] = 1643, + [2481] = 1644, + [2482] = 1647, + [2483] = 1648, + [2484] = 1653, + [2485] = 1654, + [2486] = 1663, + [2487] = 1699, + [2488] = 1554, [2489] = 2489, - [2490] = 2490, - [2491] = 1653, - [2492] = 2492, - [2493] = 2448, - [2494] = 1571, - [2495] = 2490, - [2496] = 2467, - [2497] = 2455, - [2498] = 2469, - [2499] = 2448, + [2490] = 1700, + [2491] = 1711, + [2492] = 1634, + [2493] = 2088, + [2494] = 1785, + [2495] = 1573, + [2496] = 1571, + [2497] = 1666, + [2498] = 1682, + [2499] = 1724, [2500] = 2500, - [2501] = 1862, - [2502] = 2012, - [2503] = 1547, - [2504] = 1710, - [2505] = 1677, - [2506] = 1713, - [2507] = 1715, - [2508] = 1716, - [2509] = 1717, - [2510] = 1723, - [2511] = 1663, - [2512] = 1680, - [2513] = 1681, - [2514] = 1703, - [2515] = 1708, - [2516] = 1719, - [2517] = 1720, - [2518] = 1721, - [2519] = 1722, - [2520] = 1739, - [2521] = 1740, - [2522] = 1741, - [2523] = 1760, - [2524] = 1641, - [2525] = 1636, - [2526] = 1637, - [2527] = 1638, - [2528] = 1639, - [2529] = 1646, - [2530] = 2483, - [2531] = 2015, - [2532] = 2012, - [2533] = 1595, - [2534] = 2012, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, + [2504] = 2504, + [2505] = 2505, + [2506] = 2501, + [2507] = 2507, + [2508] = 2472, + [2509] = 2509, + [2510] = 2510, + [2511] = 2511, + [2512] = 2512, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2516, + [2517] = 2517, + [2518] = 2518, + [2519] = 1634, + [2520] = 1659, + [2521] = 1581, + [2522] = 2522, + [2523] = 2523, + [2524] = 2524, + [2525] = 1790, + [2526] = 1830, + [2527] = 2501, + [2528] = 1830, + [2529] = 1913, + [2530] = 2122, + [2531] = 2531, + [2532] = 2532, + [2533] = 1772, + [2534] = 2501, [2535] = 2535, - [2536] = 1595, - [2537] = 1697, - [2538] = 2012, - [2539] = 2539, - [2540] = 2540, - [2541] = 2541, + [2536] = 1939, + [2537] = 2537, + [2538] = 1687, + [2539] = 2513, + [2540] = 2501, + [2541] = 1640, [2542] = 2542, - [2543] = 2543, + [2543] = 1645, [2544] = 2544, - [2545] = 1653, - [2546] = 1653, + [2545] = 2545, + [2546] = 2546, [2547] = 2547, - [2548] = 1571, - [2549] = 1547, + [2548] = 2548, + [2549] = 2549, [2550] = 2550, - [2551] = 1736, - [2552] = 2552, + [2551] = 2551, + [2552] = 2544, [2553] = 2553, - [2554] = 1747, + [2554] = 2554, [2555] = 2555, [2556] = 2556, - [2557] = 2557, - [2558] = 950, + [2557] = 2522, + [2558] = 2501, [2559] = 2559, [2560] = 2560, - [2561] = 2561, - [2562] = 2562, + [2561] = 2088, + [2562] = 2088, [2563] = 2563, - [2564] = 1718, - [2565] = 951, - [2566] = 1654, - [2567] = 2567, - [2568] = 2568, + [2564] = 1621, + [2565] = 1574, + [2566] = 2501, + [2567] = 1554, + [2568] = 1581, [2569] = 2569, [2570] = 2570, [2571] = 2571, [2572] = 2572, - [2573] = 1862, + [2573] = 2573, [2574] = 2574, - [2575] = 952, - [2576] = 2271, - [2577] = 2270, - [2578] = 1595, - [2579] = 2271, - [2580] = 2580, - [2581] = 2271, - [2582] = 2582, - [2583] = 2583, - [2584] = 2270, - [2585] = 2271, - [2586] = 2270, + [2575] = 2575, + [2576] = 2576, + [2577] = 2577, + [2578] = 1830, + [2579] = 2579, + [2580] = 1634, + [2581] = 1790, + [2582] = 1830, + [2583] = 1772, + [2584] = 2584, + [2585] = 2585, + [2586] = 2586, [2587] = 2587, [2588] = 2588, - [2589] = 2015, - [2590] = 2590, + [2589] = 2589, + [2590] = 1939, [2591] = 2591, - [2592] = 2592, - [2593] = 2270, + [2592] = 1554, + [2593] = 2593, [2594] = 2594, - [2595] = 2595, + [2595] = 1672, [2596] = 2596, - [2597] = 2300, - [2598] = 2598, - [2599] = 2270, + [2597] = 2597, + [2598] = 1706, + [2599] = 1581, [2600] = 2600, [2601] = 2601, - [2602] = 1493, - [2603] = 2271, - [2604] = 2270, - [2605] = 1654, - [2606] = 2606, - [2607] = 2271, - [2608] = 2270, + [2602] = 2602, + [2603] = 2088, + [2604] = 2604, + [2605] = 2605, + [2606] = 1717, + [2607] = 2607, + [2608] = 2608, [2609] = 2609, [2610] = 2610, [2611] = 2611, - [2612] = 2271, - [2613] = 1718, - [2614] = 1697, + [2612] = 2612, + [2613] = 2613, + [2614] = 2614, [2615] = 2615, - [2616] = 1595, - [2617] = 1595, + [2616] = 1507, + [2617] = 2617, [2618] = 2618, - [2619] = 2619, - [2620] = 2620, - [2621] = 219, - [2622] = 219, + [2619] = 2164, + [2620] = 2399, + [2621] = 2621, + [2622] = 2622, [2623] = 2623, - [2624] = 2624, + [2624] = 2164, [2625] = 2625, - [2626] = 2626, - [2627] = 2627, - [2628] = 2628, - [2629] = 2629, - [2630] = 2630, - [2631] = 2631, + [2626] = 1205, + [2627] = 2122, + [2628] = 2164, + [2629] = 2399, + [2630] = 2399, + [2631] = 2399, [2632] = 2632, [2633] = 2633, - [2634] = 2634, - [2635] = 2635, - [2636] = 1270, - [2637] = 2637, - [2638] = 2638, + [2634] = 2307, + [2635] = 1634, + [2636] = 1672, + [2637] = 2164, + [2638] = 2399, [2639] = 2639, - [2640] = 2640, - [2641] = 2641, + [2640] = 1706, + [2641] = 1717, [2642] = 2642, - [2643] = 213, + [2643] = 2643, [2644] = 2644, [2645] = 2645, [2646] = 2646, - [2647] = 2619, + [2647] = 2164, [2648] = 2648, [2649] = 2649, [2650] = 2650, [2651] = 2651, - [2652] = 2652, - [2653] = 2653, - [2654] = 2654, - [2655] = 2655, - [2656] = 2619, - [2657] = 2657, - [2658] = 218, + [2652] = 1634, + [2653] = 2399, + [2654] = 2164, + [2655] = 2399, + [2656] = 1634, + [2657] = 2164, + [2658] = 2658, [2659] = 2659, [2660] = 2660, [2661] = 2661, [2662] = 2662, - [2663] = 2619, - [2664] = 213, - [2665] = 222, + [2663] = 2663, + [2664] = 2664, + [2665] = 2665, [2666] = 2666, - [2667] = 2619, + [2667] = 2667, [2668] = 2668, - [2669] = 2619, + [2669] = 2669, [2670] = 2670, [2671] = 2671, - [2672] = 2619, - [2673] = 2619, + [2672] = 2672, + [2673] = 2673, [2674] = 2674, [2675] = 2675, - [2676] = 2619, + [2676] = 2676, [2677] = 2677, [2678] = 2678, [2679] = 2679, [2680] = 2680, - [2681] = 1206, - [2682] = 2619, + [2681] = 2681, + [2682] = 2682, [2683] = 2683, [2684] = 2684, - [2685] = 2569, - [2686] = 2572, + [2685] = 2685, + [2686] = 2686, [2687] = 2687, [2688] = 2688, [2689] = 2689, - [2690] = 218, - [2691] = 222, + [2690] = 2690, + [2691] = 2691, [2692] = 2692, [2693] = 2693, [2694] = 2694, @@ -7164,45 +7270,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2696] = 2696, [2697] = 2697, [2698] = 2698, - [2699] = 2167, + [2699] = 2699, [2700] = 2700, - [2701] = 2181, + [2701] = 2701, [2702] = 2702, - [2703] = 2191, - [2704] = 2203, + [2703] = 1264, + [2704] = 206, [2705] = 2705, - [2706] = 2706, + [2706] = 225, [2707] = 2707, - [2708] = 2469, + [2708] = 2708, [2709] = 2709, - [2710] = 2490, - [2711] = 2465, + [2710] = 2710, + [2711] = 2711, [2712] = 2712, - [2713] = 2455, + [2713] = 2713, [2714] = 2714, - [2715] = 2490, - [2716] = 2467, - [2717] = 2455, + [2715] = 2715, + [2716] = 2716, + [2717] = 2717, [2718] = 2718, - [2719] = 2459, - [2720] = 2466, + [2719] = 2719, + [2720] = 2720, [2721] = 2721, - [2722] = 2469, - [2723] = 1238, + [2722] = 2722, + [2723] = 2723, [2724] = 2724, - [2725] = 2471, - [2726] = 2450, - [2727] = 2492, - [2728] = 2718, - [2729] = 2464, - [2730] = 2464, - [2731] = 2466, - [2732] = 2465, - [2733] = 2452, - [2734] = 2721, - [2735] = 2452, - [2736] = 2467, - [2737] = 2479, + [2725] = 2725, + [2726] = 2726, + [2727] = 2727, + [2728] = 2728, + [2729] = 2729, + [2730] = 2730, + [2731] = 2731, + [2732] = 2732, + [2733] = 2733, + [2734] = 2734, + [2735] = 2735, + [2736] = 2736, + [2737] = 2737, [2738] = 2738, [2739] = 2739, [2740] = 2740, @@ -7213,34 +7319,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2745] = 2745, [2746] = 2746, [2747] = 2747, - [2748] = 2741, + [2748] = 2748, [2749] = 2749, - [2750] = 2744, - [2751] = 2747, - [2752] = 2752, - [2753] = 2738, - [2754] = 2744, - [2755] = 2752, - [2756] = 2739, - [2757] = 2742, + [2750] = 2750, + [2751] = 2751, + [2752] = 234, + [2753] = 2753, + [2754] = 2754, + [2755] = 2755, + [2756] = 2756, + [2757] = 2757, [2758] = 2758, - [2759] = 1242, + [2759] = 2759, [2760] = 2760, - [2761] = 1225, + [2761] = 2761, [2762] = 2762, [2763] = 2763, - [2764] = 2480, + [2764] = 2764, [2765] = 2765, [2766] = 2766, [2767] = 2767, [2768] = 2768, - [2769] = 2769, - [2770] = 1267, + [2769] = 2748, + [2770] = 2770, [2771] = 2771, - [2772] = 1257, + [2772] = 2772, [2773] = 2773, [2774] = 2774, - [2775] = 1260, + [2775] = 2775, [2776] = 2776, [2777] = 2777, [2778] = 2778, @@ -7262,10 +7368,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2794] = 2794, [2795] = 2795, [2796] = 2796, - [2797] = 2797, + [2797] = 2748, [2798] = 2798, - [2799] = 2799, - [2800] = 2788, + [2799] = 2748, + [2800] = 2800, [2801] = 2801, [2802] = 2802, [2803] = 2803, @@ -7277,31 +7383,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2809] = 2809, [2810] = 2810, [2811] = 2811, - [2812] = 2785, + [2812] = 2812, [2813] = 2813, [2814] = 2814, - [2815] = 2805, + [2815] = 2815, [2816] = 2816, - [2817] = 2817, + [2817] = 2748, [2818] = 2818, - [2819] = 2802, + [2819] = 2819, [2820] = 2820, [2821] = 2821, [2822] = 2822, - [2823] = 2787, - [2824] = 2811, + [2823] = 2823, + [2824] = 2824, [2825] = 2825, - [2826] = 2813, - [2827] = 2789, - [2828] = 2790, - [2829] = 2791, - [2830] = 2825, + [2826] = 2826, + [2827] = 2827, + [2828] = 2828, + [2829] = 2829, + [2830] = 2830, [2831] = 2831, - [2832] = 2816, + [2832] = 2832, [2833] = 2833, [2834] = 2834, [2835] = 2835, - [2836] = 2836, + [2836] = 2748, [2837] = 2837, [2838] = 2838, [2839] = 2839, @@ -7310,325 +7416,325 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2842] = 2842, [2843] = 2843, [2844] = 2844, - [2845] = 1484, - [2846] = 1483, - [2847] = 1485, - [2848] = 1515, - [2849] = 1554, - [2850] = 1506, - [2851] = 1507, - [2852] = 1508, - [2853] = 1614, - [2854] = 1510, - [2855] = 1511, - [2856] = 1512, - [2857] = 1538, - [2858] = 1513, - [2859] = 1514, - [2860] = 1615, - [2861] = 1606, - [2862] = 1534, - [2863] = 1618, - [2864] = 1532, - [2865] = 1528, - [2866] = 1608, - [2867] = 1609, - [2868] = 1521, - [2869] = 1530, - [2870] = 1610, - [2871] = 1535, - [2872] = 1575, - [2873] = 1526, - [2874] = 1622, - [2875] = 1612, - [2876] = 1533, - [2877] = 1531, - [2878] = 1549, - [2879] = 1613, - [2880] = 1605, - [2881] = 1516, - [2882] = 214, - [2883] = 212, + [2845] = 2845, + [2846] = 2846, + [2847] = 2847, + [2848] = 2848, + [2849] = 2849, + [2850] = 2850, + [2851] = 2851, + [2852] = 2852, + [2853] = 2748, + [2854] = 2854, + [2855] = 2855, + [2856] = 2856, + [2857] = 2857, + [2858] = 2858, + [2859] = 2859, + [2860] = 2860, + [2861] = 2861, + [2862] = 2748, + [2863] = 2863, + [2864] = 2864, + [2865] = 2865, + [2866] = 2866, + [2867] = 2867, + [2868] = 2868, + [2869] = 2869, + [2870] = 2870, + [2871] = 2871, + [2872] = 2872, + [2873] = 2873, + [2874] = 2874, + [2875] = 2875, + [2876] = 2876, + [2877] = 2877, + [2878] = 2878, + [2879] = 2879, + [2880] = 2880, + [2881] = 2881, + [2882] = 2882, + [2883] = 2883, [2884] = 2884, - [2885] = 1631, - [2886] = 1632, - [2887] = 1626, - [2888] = 1624, - [2889] = 1625, - [2890] = 1629, - [2891] = 1486, - [2892] = 1572, - [2893] = 1505, - [2894] = 1598, - [2895] = 1570, - [2896] = 1484, - [2897] = 1600, - [2898] = 1499, - [2899] = 1617, - [2900] = 1602, - [2901] = 1485, - [2902] = 1483, - [2903] = 1587, - [2904] = 1559, - [2905] = 1498, - [2906] = 1497, - [2907] = 1591, - [2908] = 1492, - [2909] = 1496, - [2910] = 1484, - [2911] = 1592, + [2885] = 2885, + [2886] = 2886, + [2887] = 2887, + [2888] = 2888, + [2889] = 2889, + [2890] = 2890, + [2891] = 2891, + [2892] = 2892, + [2893] = 2893, + [2894] = 2894, + [2895] = 2895, + [2896] = 2896, + [2897] = 2748, + [2898] = 2898, + [2899] = 2899, + [2900] = 2900, + [2901] = 2901, + [2902] = 2902, + [2903] = 2903, + [2904] = 2904, + [2905] = 2905, + [2906] = 233, + [2907] = 2907, + [2908] = 2908, + [2909] = 2909, + [2910] = 2910, + [2911] = 2911, [2912] = 2912, - [2913] = 1634, - [2914] = 1610, - [2915] = 1582, - [2916] = 1633, - [2917] = 1565, - [2918] = 1507, - [2919] = 1584, - [2920] = 1630, - [2921] = 1568, + [2913] = 2913, + [2914] = 2914, + [2915] = 2915, + [2916] = 2916, + [2917] = 2917, + [2918] = 2918, + [2919] = 2919, + [2920] = 2920, + [2921] = 2921, [2922] = 2922, - [2923] = 1627, - [2924] = 1618, + [2923] = 2923, + [2924] = 2924, [2925] = 2925, [2926] = 2926, - [2927] = 1608, - [2928] = 1612, - [2929] = 1560, - [2930] = 2926, - [2931] = 1517, + [2927] = 2748, + [2928] = 233, + [2929] = 2929, + [2930] = 2930, + [2931] = 2931, [2932] = 2932, - [2933] = 2912, - [2934] = 1485, - [2935] = 2932, - [2936] = 1614, - [2937] = 2912, - [2938] = 1619, - [2939] = 1508, - [2940] = 2912, - [2941] = 2912, - [2942] = 1563, - [2943] = 1620, - [2944] = 1621, - [2945] = 1615, - [2946] = 1510, - [2947] = 1589, - [2948] = 1586, - [2949] = 2912, - [2950] = 1511, - [2951] = 1483, - [2952] = 1580, - [2953] = 1581, - [2954] = 2932, - [2955] = 1555, - [2956] = 2912, - [2957] = 1616, - [2958] = 1486, - [2959] = 1550, - [2960] = 1512, - [2961] = 1573, - [2962] = 2912, - [2963] = 2922, - [2964] = 2925, - [2965] = 2926, - [2966] = 2932, - [2967] = 1556, - [2968] = 1514, - [2969] = 1575, - [2970] = 1515, - [2971] = 1622, - [2972] = 1516, - [2973] = 1557, - [2974] = 2922, - [2975] = 1521, - [2976] = 1605, - [2977] = 1526, - [2978] = 1606, - [2979] = 1528, - [2980] = 1599, - [2981] = 2925, - [2982] = 1609, - [2983] = 1530, - [2984] = 1531, - [2985] = 1613, - [2986] = 1593, - [2987] = 1601, - [2988] = 2912, - [2989] = 1532, - [2990] = 2922, - [2991] = 1576, - [2992] = 1533, - [2993] = 1534, - [2994] = 2922, - [2995] = 2925, - [2996] = 1535, - [2997] = 2926, - [2998] = 2932, - [2999] = 1506, - [3000] = 2912, - [3001] = 1538, - [3002] = 1603, - [3003] = 1607, - [3004] = 1611, - [3005] = 1549, - [3006] = 2925, - [3007] = 1561, - [3008] = 1562, - [3009] = 1554, - [3010] = 2926, - [3011] = 1513, - [3012] = 3012, - [3013] = 1495, - [3014] = 3012, - [3015] = 1487, - [3016] = 1499, + [2933] = 2933, + [2934] = 2934, + [2935] = 2935, + [2936] = 2936, + [2937] = 2937, + [2938] = 2938, + [2939] = 2939, + [2940] = 2940, + [2941] = 2941, + [2942] = 2942, + [2943] = 2943, + [2944] = 2944, + [2945] = 2945, + [2946] = 2946, + [2947] = 225, + [2948] = 2948, + [2949] = 2949, + [2950] = 2950, + [2951] = 2951, + [2952] = 2952, + [2953] = 2953, + [2954] = 2954, + [2955] = 2955, + [2956] = 2956, + [2957] = 2957, + [2958] = 2958, + [2959] = 2959, + [2960] = 2960, + [2961] = 2961, + [2962] = 2962, + [2963] = 206, + [2964] = 2964, + [2965] = 2965, + [2966] = 2964, + [2967] = 2967, + [2968] = 2588, + [2969] = 2587, + [2970] = 234, + [2971] = 2971, + [2972] = 2972, + [2973] = 2973, + [2974] = 2974, + [2975] = 2975, + [2976] = 2304, + [2977] = 2445, + [2978] = 2978, + [2979] = 2302, + [2980] = 2384, + [2981] = 2388, + [2982] = 2982, + [2983] = 2983, + [2984] = 2420, + [2985] = 2985, + [2986] = 2986, + [2987] = 2987, + [2988] = 2988, + [2989] = 2386, + [2990] = 2990, + [2991] = 2991, + [2992] = 2992, + [2993] = 2379, + [2994] = 2199, + [2995] = 2383, + [2996] = 2996, + [2997] = 2997, + [2998] = 2422, + [2999] = 2999, + [3000] = 2424, + [3001] = 2303, + [3002] = 3002, + [3003] = 2301, + [3004] = 2428, + [3005] = 2385, + [3006] = 1246, + [3007] = 3007, + [3008] = 3008, + [3009] = 2518, + [3010] = 3010, + [3011] = 3011, + [3012] = 2550, + [3013] = 3013, + [3014] = 3014, + [3015] = 2556, + [3016] = 3016, [3017] = 3017, [3018] = 3018, - [3019] = 3019, + [3019] = 3018, [3020] = 3020, [3021] = 3021, - [3022] = 3022, + [3022] = 2522, [3023] = 3023, - [3024] = 3024, - [3025] = 3012, - [3026] = 3023, - [3027] = 3027, - [3028] = 3012, - [3029] = 3023, - [3030] = 3023, - [3031] = 3023, - [3032] = 1498, - [3033] = 3033, + [3024] = 2551, + [3025] = 3025, + [3026] = 2462, + [3027] = 2472, + [3028] = 3028, + [3029] = 2553, + [3030] = 2544, + [3031] = 2575, + [3032] = 2554, + [3033] = 2512, [3034] = 3034, - [3035] = 3035, - [3036] = 3012, + [3035] = 1301, + [3036] = 2546, [3037] = 3037, - [3038] = 3038, - [3039] = 3039, - [3040] = 1500, + [3038] = 2509, + [3039] = 2510, + [3040] = 3040, [3041] = 3041, [3042] = 3042, - [3043] = 3043, - [3044] = 3044, + [3043] = 3040, + [3044] = 3041, [3045] = 3045, [3046] = 3046, [3047] = 3047, - [3048] = 3048, + [3048] = 3021, [3049] = 3049, - [3050] = 3012, + [3050] = 3025, [3051] = 3051, - [3052] = 3052, - [3053] = 3012, - [3054] = 1579, - [3055] = 1486, - [3056] = 1598, - [3057] = 1600, - [3058] = 1602, + [3052] = 3028, + [3053] = 2537, + [3054] = 3054, + [3055] = 2542, + [3056] = 3023, + [3057] = 3057, + [3058] = 2548, [3059] = 3059, - [3060] = 1617, - [3061] = 1624, - [3062] = 1625, - [3063] = 1626, - [3064] = 1629, - [3065] = 1505, - [3066] = 1631, - [3067] = 1632, - [3068] = 3068, - [3069] = 3069, - [3070] = 1588, - [3071] = 1570, - [3072] = 1594, + [3060] = 3060, + [3061] = 2545, + [3062] = 2522, + [3063] = 3063, + [3064] = 3064, + [3065] = 3059, + [3066] = 2502, + [3067] = 3067, + [3068] = 3042, + [3069] = 3046, + [3070] = 3037, + [3071] = 2511, + [3072] = 3072, [3073] = 3073, - [3074] = 1558, - [3075] = 1564, - [3076] = 1572, - [3077] = 3077, - [3078] = 3078, - [3079] = 1518, - [3080] = 3080, - [3081] = 3024, - [3082] = 1583, - [3083] = 1585, - [3084] = 1134, - [3085] = 950, - [3086] = 1628, - [3087] = 1577, - [3088] = 1129, - [3089] = 951, - [3090] = 1125, - [3091] = 952, - [3092] = 3092, - [3093] = 3093, - [3094] = 1497, - [3095] = 1622, - [3096] = 1521, - [3097] = 1526, - [3098] = 1528, - [3099] = 1530, - [3100] = 1531, - [3101] = 1532, - [3102] = 1533, - [3103] = 1534, - [3104] = 1535, - [3105] = 1538, - [3106] = 3106, - [3107] = 1549, - [3108] = 1554, + [3074] = 2549, + [3075] = 3016, + [3076] = 2462, + [3077] = 3057, + [3078] = 2574, + [3079] = 2515, + [3080] = 2572, + [3081] = 2571, + [3082] = 3082, + [3083] = 3083, + [3084] = 2517, + [3085] = 2505, + [3086] = 2504, + [3087] = 3087, + [3088] = 3049, + [3089] = 3082, + [3090] = 3013, + [3091] = 3083, + [3092] = 2472, + [3093] = 1284, + [3094] = 3094, + [3095] = 3095, + [3096] = 3096, + [3097] = 3063, + [3098] = 2560, + [3099] = 2555, + [3100] = 3064, + [3101] = 3087, + [3102] = 3102, + [3103] = 3014, + [3104] = 2570, + [3105] = 3047, + [3106] = 3010, + [3107] = 2569, + [3108] = 3072, [3109] = 3109, - [3110] = 1605, - [3111] = 1606, - [3112] = 1608, - [3113] = 1609, - [3114] = 1610, - [3115] = 1612, - [3116] = 1613, - [3117] = 1614, - [3118] = 1615, - [3119] = 1618, - [3120] = 1506, - [3121] = 1507, - [3122] = 1508, - [3123] = 1510, - [3124] = 1511, - [3125] = 1512, - [3126] = 1513, - [3127] = 1514, - [3128] = 1515, - [3129] = 1516, - [3130] = 1575, - [3131] = 3131, - [3132] = 1559, - [3133] = 3133, + [3110] = 3109, + [3111] = 3111, + [3112] = 2524, + [3113] = 2500, + [3114] = 3114, + [3115] = 2523, + [3116] = 2544, + [3117] = 3073, + [3118] = 2474, + [3119] = 3095, + [3120] = 3067, + [3121] = 3060, + [3122] = 2573, + [3123] = 3011, + [3124] = 3096, + [3125] = 2489, + [3126] = 3111, + [3127] = 3034, + [3128] = 3128, + [3129] = 2559, + [3130] = 2547, + [3131] = 1313, + [3132] = 1308, + [3133] = 1273, [3134] = 3134, [3135] = 3135, - [3136] = 3135, - [3137] = 1495, + [3136] = 3136, + [3137] = 3137, [3138] = 3138, [3139] = 3139, [3140] = 3140, - [3141] = 3141, - [3142] = 3142, - [3143] = 3143, - [3144] = 1487, + [3141] = 3134, + [3142] = 3136, + [3143] = 3138, + [3144] = 3135, [3145] = 3145, - [3146] = 3146, + [3146] = 3139, [3147] = 3147, - [3148] = 1498, + [3148] = 3148, [3149] = 3149, [3150] = 3150, - [3151] = 1499, - [3152] = 1496, - [3153] = 3153, - [3154] = 1587, + [3151] = 3137, + [3152] = 3145, + [3153] = 3137, + [3154] = 3154, [3155] = 3155, [3156] = 3156, [3157] = 3157, - [3158] = 1483, + [3158] = 3158, [3159] = 3159, - [3160] = 1484, - [3161] = 3161, + [3160] = 3160, + [3161] = 2135, [3162] = 3162, - [3163] = 1500, + [3163] = 3163, [3164] = 3164, [3165] = 3165, [3166] = 3166, @@ -7644,427 +7750,427 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3176] = 3176, [3177] = 3177, [3178] = 3178, - [3179] = 3135, - [3180] = 212, - [3181] = 3135, - [3182] = 1591, - [3183] = 1492, - [3184] = 214, - [3185] = 3135, - [3186] = 1485, - [3187] = 1603, - [3188] = 1630, - [3189] = 1607, - [3190] = 1570, - [3191] = 1572, - [3192] = 1627, - [3193] = 950, - [3194] = 1611, - [3195] = 1563, - [3196] = 1598, - [3197] = 1600, - [3198] = 1602, - [3199] = 1628, - [3200] = 1617, - [3201] = 1624, - [3202] = 1625, - [3203] = 1626, - [3204] = 1629, - [3205] = 1505, - [3206] = 1631, - [3207] = 1632, - [3208] = 1517, - [3209] = 1579, - [3210] = 1518, - [3211] = 951, - [3212] = 1580, - [3213] = 1550, - [3214] = 3214, - [3215] = 693, - [3216] = 692, - [3217] = 691, - [3218] = 694, - [3219] = 1581, - [3220] = 1601, - [3221] = 1582, - [3222] = 1497, - [3223] = 1560, - [3224] = 1584, - [3225] = 1585, - [3226] = 952, - [3227] = 1565, - [3228] = 1568, - [3229] = 1588, - [3230] = 1592, - [3231] = 1593, - [3232] = 1594, - [3233] = 1558, - [3234] = 1564, + [3179] = 2503, + [3180] = 3180, + [3181] = 3181, + [3182] = 3182, + [3183] = 3183, + [3184] = 3184, + [3185] = 3185, + [3186] = 3186, + [3187] = 3187, + [3188] = 3182, + [3189] = 3189, + [3190] = 3190, + [3191] = 3191, + [3192] = 3192, + [3193] = 3193, + [3194] = 3194, + [3195] = 3195, + [3196] = 3196, + [3197] = 3197, + [3198] = 3198, + [3199] = 3199, + [3200] = 3200, + [3201] = 3201, + [3202] = 3202, + [3203] = 3203, + [3204] = 3204, + [3205] = 3205, + [3206] = 3206, + [3207] = 3207, + [3208] = 3208, + [3209] = 3209, + [3210] = 3210, + [3211] = 3211, + [3212] = 3181, + [3213] = 3213, + [3214] = 3191, + [3215] = 3215, + [3216] = 3216, + [3217] = 3194, + [3218] = 3218, + [3219] = 3195, + [3220] = 3197, + [3221] = 3190, + [3222] = 3222, + [3223] = 3204, + [3224] = 3224, + [3225] = 3225, + [3226] = 3226, + [3227] = 3227, + [3228] = 3228, + [3229] = 3229, + [3230] = 3205, + [3231] = 3231, + [3232] = 3232, + [3233] = 3233, + [3234] = 3234, [3235] = 3235, - [3236] = 695, - [3237] = 1599, - [3238] = 1633, - [3239] = 1573, - [3240] = 1576, + [3236] = 3236, + [3237] = 3237, + [3238] = 3238, + [3239] = 3239, + [3240] = 3227, [3241] = 3241, - [3242] = 1619, - [3243] = 1486, - [3244] = 1562, - [3245] = 1621, - [3246] = 1586, - [3247] = 1589, - [3248] = 1616, - [3249] = 1555, - [3250] = 1561, - [3251] = 1556, - [3252] = 1557, + [3242] = 3211, + [3243] = 3243, + [3244] = 3233, + [3245] = 3245, + [3246] = 3237, + [3247] = 3238, + [3248] = 3248, + [3249] = 3249, + [3250] = 3250, + [3251] = 3251, + [3252] = 3252, [3253] = 3253, - [3254] = 1620, - [3255] = 1634, - [3256] = 1577, - [3257] = 1583, + [3254] = 3254, + [3255] = 3187, + [3256] = 3189, + [3257] = 3202, [3258] = 3258, [3259] = 3259, [3260] = 3260, [3261] = 3261, - [3262] = 3259, - [3263] = 3263, - [3264] = 3264, - [3265] = 1498, - [3266] = 3266, - [3267] = 1486, - [3268] = 3268, + [3262] = 3262, + [3263] = 3203, + [3264] = 3210, + [3265] = 3207, + [3266] = 3198, + [3267] = 3267, + [3268] = 3192, [3269] = 3269, - [3270] = 1487, - [3271] = 3271, - [3272] = 1495, - [3273] = 3260, + [3270] = 3270, + [3271] = 3245, + [3272] = 3272, + [3273] = 3252, [3274] = 3274, - [3275] = 1496, + [3275] = 3275, [3276] = 3276, - [3277] = 3260, - [3278] = 1587, - [3279] = 3268, - [3280] = 1591, - [3281] = 1559, - [3282] = 1492, - [3283] = 3283, - [3284] = 3284, - [3285] = 3283, - [3286] = 1500, - [3287] = 3259, - [3288] = 3024, - [3289] = 3289, + [3277] = 3277, + [3278] = 3278, + [3279] = 3279, + [3280] = 3280, + [3281] = 3281, + [3282] = 3282, + [3283] = 3184, + [3284] = 3185, + [3285] = 3224, + [3286] = 3216, + [3287] = 3287, + [3288] = 3282, + [3289] = 3270, [3290] = 3290, - [3291] = 3291, - [3292] = 3292, - [3293] = 3293, - [3294] = 3294, - [3295] = 3295, - [3296] = 3296, - [3297] = 3292, - [3298] = 1550, + [3291] = 3254, + [3292] = 3259, + [3293] = 3199, + [3294] = 3201, + [3295] = 3206, + [3296] = 3287, + [3297] = 3222, + [3298] = 3234, [3299] = 3299, - [3300] = 3300, - [3301] = 3301, - [3302] = 3302, - [3303] = 3299, - [3304] = 3291, - [3305] = 3305, - [3306] = 3135, - [3307] = 3291, - [3308] = 3308, - [3309] = 3309, - [3310] = 3310, - [3311] = 3291, - [3312] = 3312, - [3313] = 3313, - [3314] = 3299, - [3315] = 1558, - [3316] = 3291, - [3317] = 1564, - [3318] = 3299, - [3319] = 3291, - [3320] = 3320, - [3321] = 3321, - [3322] = 3135, - [3323] = 3323, - [3324] = 3324, - [3325] = 3325, - [3326] = 3326, - [3327] = 3135, - [3328] = 3328, - [3329] = 3263, - [3330] = 3330, - [3331] = 3331, - [3332] = 3299, - [3333] = 3333, - [3334] = 3334, - [3335] = 3335, - [3336] = 3266, - [3337] = 3337, + [3300] = 1488, + [3301] = 1487, + [3302] = 1486, + [3303] = 1531, + [3304] = 1564, + [3305] = 1537, + [3306] = 1566, + [3307] = 1538, + [3308] = 1560, + [3309] = 1539, + [3310] = 1540, + [3311] = 1532, + [3312] = 1516, + [3313] = 1535, + [3314] = 1541, + [3315] = 1536, + [3316] = 1522, + [3317] = 1559, + [3318] = 1565, + [3319] = 1517, + [3320] = 1530, + [3321] = 1561, + [3322] = 1511, + [3323] = 1518, + [3324] = 1519, + [3325] = 1555, + [3326] = 1556, + [3327] = 1562, + [3328] = 1570, + [3329] = 1563, + [3330] = 1520, + [3331] = 1521, + [3332] = 1557, + [3333] = 1558, + [3334] = 1524, + [3335] = 1525, + [3336] = 1567, + [3337] = 227, [3338] = 3338, - [3339] = 3339, - [3340] = 3324, - [3341] = 3341, - [3342] = 1555, - [3343] = 3343, - [3344] = 1556, - [3345] = 1557, - [3346] = 1560, - [3347] = 1561, - [3348] = 1562, - [3349] = 1563, - [3350] = 3135, - [3351] = 3351, - [3352] = 3352, - [3353] = 3353, - [3354] = 691, - [3355] = 3135, - [3356] = 1498, - [3357] = 3357, - [3358] = 1573, - [3359] = 1576, - [3360] = 1634, - [3361] = 1579, - [3362] = 1580, - [3363] = 1581, - [3364] = 1582, - [3365] = 1583, - [3366] = 1584, - [3367] = 1585, - [3368] = 1586, + [3339] = 215, + [3340] = 1598, + [3341] = 1585, + [3342] = 1488, + [3343] = 1582, + [3344] = 1486, + [3345] = 1485, + [3346] = 1590, + [3347] = 1602, + [3348] = 1623, + [3349] = 1624, + [3350] = 1593, + [3351] = 1496, + [3352] = 1589, + [3353] = 1586, + [3354] = 1591, + [3355] = 1487, + [3356] = 1600, + [3357] = 1584, + [3358] = 1506, + [3359] = 1499, + [3360] = 1497, + [3361] = 1494, + [3362] = 1633, + [3363] = 1609, + [3364] = 1606, + [3365] = 1540, + [3366] = 3366, + [3367] = 1579, + [3368] = 1588, [3369] = 3369, - [3370] = 1589, - [3371] = 1134, - [3372] = 3308, - [3373] = 3373, - [3374] = 3374, - [3375] = 3295, - [3376] = 3337, - [3377] = 692, - [3378] = 3378, - [3379] = 3135, - [3380] = 1601, - [3381] = 3381, - [3382] = 1603, - [3383] = 3383, - [3384] = 3384, - [3385] = 3385, - [3386] = 3386, - [3387] = 1607, - [3388] = 1611, - [3389] = 3389, - [3390] = 1616, - [3391] = 1499, - [3392] = 3392, - [3393] = 3393, - [3394] = 1627, - [3395] = 1628, - [3396] = 3396, - [3397] = 3397, - [3398] = 3294, - [3399] = 1129, - [3400] = 3400, - [3401] = 1633, - [3402] = 1577, - [3403] = 3403, - [3404] = 1630, - [3405] = 694, - [3406] = 3294, - [3407] = 3407, - [3408] = 3135, - [3409] = 3409, - [3410] = 3410, - [3411] = 3411, - [3412] = 3412, - [3413] = 3299, - [3414] = 3414, - [3415] = 3299, - [3416] = 3295, - [3417] = 1565, - [3418] = 1568, - [3419] = 1588, - [3420] = 1125, - [3421] = 1592, - [3422] = 1593, - [3423] = 1594, - [3424] = 695, - [3425] = 3291, - [3426] = 3296, - [3427] = 1619, - [3428] = 1620, - [3429] = 3276, - [3430] = 1621, - [3431] = 693, - [3432] = 3369, - [3433] = 3433, - [3434] = 3353, - [3435] = 3435, - [3436] = 1517, - [3437] = 1518, - [3438] = 3438, - [3439] = 212, - [3440] = 1206, - [3441] = 3441, - [3442] = 214, - [3443] = 1134, - [3444] = 1129, - [3445] = 1125, - [3446] = 3446, - [3447] = 3299, - [3448] = 3448, - [3449] = 3449, - [3450] = 3450, - [3451] = 3451, - [3452] = 3452, - [3453] = 3453, - [3454] = 1599, - [3455] = 3455, - [3456] = 1497, - [3457] = 3457, - [3458] = 3455, - [3459] = 3459, - [3460] = 951, - [3461] = 3461, - [3462] = 1500, - [3463] = 952, - [3464] = 3457, - [3465] = 3465, - [3466] = 3466, - [3467] = 3457, - [3468] = 205, - [3469] = 203, - [3470] = 3455, + [3370] = 1577, + [3371] = 3371, + [3372] = 3371, + [3373] = 3369, + [3374] = 1607, + [3375] = 3375, + [3376] = 3366, + [3377] = 1610, + [3378] = 1515, + [3379] = 3379, + [3380] = 1612, + [3381] = 1614, + [3382] = 3369, + [3383] = 1615, + [3384] = 1616, + [3385] = 1594, + [3386] = 3379, + [3387] = 1488, + [3388] = 1595, + [3389] = 1487, + [3390] = 1618, + [3391] = 1596, + [3392] = 1486, + [3393] = 1619, + [3394] = 1597, + [3395] = 3375, + [3396] = 1516, + [3397] = 1485, + [3398] = 1599, + [3399] = 1517, + [3400] = 1518, + [3401] = 1519, + [3402] = 1628, + [3403] = 1601, + [3404] = 1629, + [3405] = 3369, + [3406] = 1630, + [3407] = 3366, + [3408] = 1631, + [3409] = 1520, + [3410] = 1635, + [3411] = 1521, + [3412] = 1637, + [3413] = 1522, + [3414] = 3366, + [3415] = 3375, + [3416] = 1511, + [3417] = 3371, + [3418] = 3379, + [3419] = 1622, + [3420] = 1570, + [3421] = 1524, + [3422] = 1523, + [3423] = 1567, + [3424] = 1525, + [3425] = 1530, + [3426] = 1531, + [3427] = 1532, + [3428] = 1535, + [3429] = 1536, + [3430] = 1537, + [3431] = 3369, + [3432] = 1548, + [3433] = 1566, + [3434] = 1538, + [3435] = 3369, + [3436] = 1512, + [3437] = 3375, + [3438] = 3369, + [3439] = 1529, + [3440] = 1549, + [3441] = 3371, + [3442] = 1528, + [3443] = 1527, + [3444] = 3379, + [3445] = 1551, + [3446] = 1565, + [3447] = 1539, + [3448] = 1552, + [3449] = 1541, + [3450] = 1564, + [3451] = 3369, + [3452] = 3371, + [3453] = 1555, + [3454] = 3379, + [3455] = 1556, + [3456] = 1557, + [3457] = 1563, + [3458] = 1558, + [3459] = 1559, + [3460] = 1560, + [3461] = 3375, + [3462] = 3369, + [3463] = 1561, + [3464] = 3366, + [3465] = 1562, + [3466] = 3369, + [3467] = 3467, + [3468] = 3468, + [3469] = 3469, + [3470] = 3470, [3471] = 3471, - [3472] = 1495, - [3473] = 3455, - [3474] = 1487, - [3475] = 3457, - [3476] = 3461, - [3477] = 3457, - [3478] = 3457, + [3472] = 3467, + [3473] = 3473, + [3474] = 3467, + [3475] = 3475, + [3476] = 3476, + [3477] = 3477, + [3478] = 3478, [3479] = 3479, - [3480] = 3457, + [3480] = 3480, [3481] = 3481, - [3482] = 3482, - [3483] = 3263, - [3484] = 3484, + [3482] = 3467, + [3483] = 3483, + [3484] = 3481, [3485] = 3485, - [3486] = 3457, - [3487] = 3487, + [3486] = 3481, + [3487] = 1496, [3488] = 3488, - [3489] = 3489, - [3490] = 950, - [3491] = 3491, - [3492] = 3455, + [3489] = 3481, + [3490] = 1501, + [3491] = 3481, + [3492] = 3492, [3493] = 3493, - [3494] = 3455, - [3495] = 3495, - [3496] = 3496, + [3494] = 3494, + [3495] = 1497, + [3496] = 3467, [3497] = 3497, - [3498] = 3498, + [3498] = 3467, [3499] = 3499, - [3500] = 1588, - [3501] = 1594, - [3502] = 1558, - [3503] = 1564, - [3504] = 3504, + [3500] = 1502, + [3501] = 3467, + [3502] = 3502, + [3503] = 3503, + [3504] = 1505, [3505] = 3505, - [3506] = 3214, - [3507] = 198, + [3506] = 3506, + [3507] = 3507, [3508] = 3508, - [3509] = 3509, - [3510] = 1518, - [3511] = 3511, - [3512] = 3512, + [3509] = 1546, + [3510] = 1564, + [3511] = 1587, + [3512] = 1485, [3513] = 3513, [3514] = 3514, [3515] = 3515, - [3516] = 3516, - [3517] = 3517, - [3518] = 3518, - [3519] = 3519, - [3520] = 3520, - [3521] = 3521, - [3522] = 3522, - [3523] = 3523, + [3516] = 1508, + [3517] = 1151, + [3518] = 1617, + [3519] = 1122, + [3520] = 1613, + [3521] = 1147, + [3522] = 1611, + [3523] = 1123, [3524] = 3524, - [3525] = 3525, - [3526] = 3526, - [3527] = 3310, + [3525] = 1148, + [3526] = 1132, + [3527] = 1514, [3528] = 3528, [3529] = 3529, - [3530] = 3511, - [3531] = 3531, - [3532] = 3532, + [3530] = 1510, + [3531] = 1499, + [3532] = 1509, [3533] = 3533, [3534] = 3534, - [3535] = 3535, - [3536] = 3536, + [3535] = 1550, + [3536] = 3471, [3537] = 3537, - [3538] = 3538, - [3539] = 3539, - [3540] = 3540, - [3541] = 3541, - [3542] = 3542, - [3543] = 3543, - [3544] = 3544, + [3538] = 1570, + [3539] = 1567, + [3540] = 1582, + [3541] = 1584, + [3542] = 1566, + [3543] = 1585, + [3544] = 1565, [3545] = 3545, - [3546] = 3546, + [3546] = 1563, [3547] = 3547, - [3548] = 3548, - [3549] = 3497, - [3550] = 3550, - [3551] = 3551, - [3552] = 3552, - [3553] = 3553, - [3554] = 216, - [3555] = 3555, - [3556] = 3556, - [3557] = 224, - [3558] = 3558, - [3559] = 3559, - [3560] = 3560, - [3561] = 3561, - [3562] = 3562, - [3563] = 3563, - [3564] = 3534, - [3565] = 3565, - [3566] = 3566, - [3567] = 3567, - [3568] = 3568, - [3569] = 3569, - [3570] = 3570, - [3571] = 3571, - [3572] = 3572, - [3573] = 3573, - [3574] = 3574, - [3575] = 3575, - [3576] = 3576, - [3577] = 3577, - [3578] = 3578, - [3579] = 3579, - [3580] = 3580, - [3581] = 3581, - [3582] = 3582, - [3583] = 3583, - [3584] = 3584, - [3585] = 3585, + [3548] = 1562, + [3549] = 1586, + [3550] = 1561, + [3551] = 1560, + [3552] = 1624, + [3553] = 1623, + [3554] = 1516, + [3555] = 1517, + [3556] = 1559, + [3557] = 1558, + [3558] = 1518, + [3559] = 1519, + [3560] = 1520, + [3561] = 1521, + [3562] = 1522, + [3563] = 1557, + [3564] = 1556, + [3565] = 1555, + [3566] = 1511, + [3567] = 1589, + [3568] = 1524, + [3569] = 1525, + [3570] = 1590, + [3571] = 1591, + [3572] = 1593, + [3573] = 1598, + [3574] = 1600, + [3575] = 1602, + [3576] = 1541, + [3577] = 1540, + [3578] = 1530, + [3579] = 1531, + [3580] = 1539, + [3581] = 1538, + [3582] = 1537, + [3583] = 1532, + [3584] = 1535, + [3585] = 1536, [3586] = 3586, [3587] = 3587, - [3588] = 3588, + [3588] = 1609, [3589] = 3589, - [3590] = 3590, + [3590] = 1494, [3591] = 3591, - [3592] = 3581, - [3593] = 3435, + [3592] = 1501, + [3593] = 1502, [3594] = 3594, [3595] = 3595, - [3596] = 1500, - [3597] = 3597, + [3596] = 3596, + [3597] = 3587, [3598] = 3598, - [3599] = 3599, + [3599] = 1496, [3600] = 3600, [3601] = 3601, [3602] = 3602, @@ -8072,383 +8178,383 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3604] = 3604, [3605] = 3605, [3606] = 3606, - [3607] = 3498, - [3608] = 3582, - [3609] = 3504, - [3610] = 3559, + [3607] = 3607, + [3608] = 1488, + [3609] = 1487, + [3610] = 1486, [3611] = 3611, [3612] = 3612, - [3613] = 3613, + [3613] = 1506, [3614] = 3614, [3615] = 3615, - [3616] = 3616, + [3616] = 1606, [3617] = 3617, - [3618] = 3618, - [3619] = 3414, + [3618] = 227, + [3619] = 3587, [3620] = 3620, [3621] = 3621, - [3622] = 3534, - [3623] = 3544, + [3622] = 3587, + [3623] = 3623, [3624] = 3624, [3625] = 3625, [3626] = 3626, - [3627] = 3627, + [3627] = 1497, [3628] = 3628, - [3629] = 3498, + [3629] = 215, [3630] = 3630, - [3631] = 3536, + [3631] = 1633, [3632] = 3632, - [3633] = 3321, - [3634] = 3634, + [3633] = 3633, + [3634] = 3587, [3635] = 3635, [3636] = 3636, - [3637] = 3572, + [3637] = 3637, [3638] = 3638, - [3639] = 3639, + [3639] = 1505, [3640] = 3640, [3641] = 3641, - [3642] = 3642, - [3643] = 3643, - [3644] = 3524, - [3645] = 3645, - [3646] = 3563, - [3647] = 3647, - [3648] = 3648, - [3649] = 3649, - [3650] = 3650, + [3642] = 1148, + [3643] = 1613, + [3644] = 1610, + [3645] = 1151, + [3646] = 1512, + [3647] = 694, + [3648] = 1147, + [3649] = 1624, + [3650] = 1630, [3651] = 3651, - [3652] = 3652, - [3653] = 3653, - [3654] = 1495, - [3655] = 3655, - [3656] = 3656, - [3657] = 1579, - [3658] = 1583, - [3659] = 1585, - [3660] = 3660, - [3661] = 1487, - [3662] = 3662, - [3663] = 3663, - [3664] = 3664, - [3665] = 3665, - [3666] = 3666, - [3667] = 3667, - [3668] = 3668, - [3669] = 3669, - [3670] = 3670, - [3671] = 3671, - [3672] = 3672, - [3673] = 3673, - [3674] = 3674, - [3675] = 3675, - [3676] = 3676, - [3677] = 3677, - [3678] = 3517, - [3679] = 3679, - [3680] = 3680, + [3652] = 1552, + [3653] = 1582, + [3654] = 1584, + [3655] = 1585, + [3656] = 1586, + [3657] = 1551, + [3658] = 1550, + [3659] = 1589, + [3660] = 1590, + [3661] = 1591, + [3662] = 1549, + [3663] = 1593, + [3664] = 1548, + [3665] = 1607, + [3666] = 1546, + [3667] = 1509, + [3668] = 1510, + [3669] = 1631, + [3670] = 695, + [3671] = 689, + [3672] = 1508, + [3673] = 1529, + [3674] = 1528, + [3675] = 1579, + [3676] = 1527, + [3677] = 1598, + [3678] = 1629, + [3679] = 693, + [3680] = 1600, [3681] = 3681, [3682] = 3682, - [3683] = 3568, - [3684] = 3305, - [3685] = 3685, - [3686] = 3612, - [3687] = 3687, - [3688] = 3688, - [3689] = 3518, - [3690] = 3690, - [3691] = 3691, - [3692] = 3692, - [3693] = 3693, + [3683] = 1628, + [3684] = 1611, + [3685] = 1515, + [3686] = 1601, + [3687] = 1602, + [3688] = 1514, + [3689] = 1499, + [3690] = 1623, + [3691] = 1612, + [3692] = 1599, + [3693] = 1597, [3694] = 3694, - [3695] = 3695, - [3696] = 3696, - [3697] = 3524, - [3698] = 3698, - [3699] = 3699, - [3700] = 3650, - [3701] = 1628, - [3702] = 3702, - [3703] = 3703, - [3704] = 3271, - [3705] = 1577, - [3706] = 3706, - [3707] = 3707, - [3708] = 3650, - [3709] = 3709, - [3710] = 3710, - [3711] = 3711, - [3712] = 3712, + [3695] = 1485, + [3696] = 1635, + [3697] = 1596, + [3698] = 1595, + [3699] = 1594, + [3700] = 1637, + [3701] = 690, + [3702] = 1622, + [3703] = 1577, + [3704] = 1587, + [3705] = 1619, + [3706] = 1618, + [3707] = 1614, + [3708] = 1523, + [3709] = 1615, + [3710] = 1617, + [3711] = 1616, + [3712] = 1588, [3713] = 3713, [3714] = 3714, - [3715] = 3715, - [3716] = 3509, - [3717] = 3717, - [3718] = 3718, - [3719] = 3719, + [3715] = 1609, + [3716] = 3716, + [3717] = 1606, + [3718] = 3714, + [3719] = 1497, [3720] = 3720, - [3721] = 3721, - [3722] = 3685, - [3723] = 3723, + [3721] = 3720, + [3722] = 3722, + [3723] = 3714, [3724] = 3724, - [3725] = 1579, - [3726] = 1583, - [3727] = 1585, + [3725] = 3716, + [3726] = 3471, + [3727] = 1494, [3728] = 3728, [3729] = 3729, - [3730] = 3528, - [3731] = 3626, + [3730] = 1502, + [3731] = 1501, [3732] = 3732, - [3733] = 3724, - [3734] = 3594, - [3735] = 3735, - [3736] = 3724, + [3733] = 3733, + [3734] = 1506, + [3735] = 1505, + [3736] = 3736, [3737] = 3737, - [3738] = 1564, - [3739] = 3604, - [3740] = 3740, - [3741] = 1558, - [3742] = 3721, - [3743] = 3266, - [3744] = 3744, + [3738] = 3738, + [3739] = 1485, + [3740] = 3728, + [3741] = 3720, + [3742] = 3742, + [3743] = 3743, + [3744] = 1633, [3745] = 3745, [3746] = 3746, - [3747] = 1628, - [3748] = 3748, - [3749] = 3749, - [3750] = 3552, - [3751] = 3553, - [3752] = 3752, - [3753] = 3744, - [3754] = 3558, - [3755] = 1518, - [3756] = 3756, - [3757] = 3756, - [3758] = 3758, - [3759] = 3759, - [3760] = 3732, + [3747] = 1619, + [3748] = 1622, + [3749] = 1577, + [3750] = 3750, + [3751] = 3750, + [3752] = 690, + [3753] = 1508, + [3754] = 3754, + [3755] = 3755, + [3756] = 3587, + [3757] = 1628, + [3758] = 1629, + [3759] = 1630, + [3760] = 1631, [3761] = 3761, - [3762] = 3724, - [3763] = 3749, - [3764] = 3670, + [3762] = 1635, + [3763] = 1637, + [3764] = 3764, [3765] = 3765, - [3766] = 3749, - [3767] = 3577, + [3766] = 3766, + [3767] = 3767, [3768] = 3768, - [3769] = 3769, - [3770] = 3770, - [3771] = 3761, - [3772] = 3724, - [3773] = 3663, - [3774] = 3761, + [3769] = 1617, + [3770] = 1616, + [3771] = 1523, + [3772] = 1497, + [3773] = 1579, + [3774] = 3587, [3775] = 3775, - [3776] = 3737, + [3776] = 1123, [3777] = 3777, - [3778] = 3768, + [3778] = 3778, [3779] = 3779, [3780] = 3780, [3781] = 3781, - [3782] = 3782, - [3783] = 3721, - [3784] = 3784, - [3785] = 1588, + [3782] = 3750, + [3783] = 3587, + [3784] = 3765, + [3785] = 3768, [3786] = 3786, - [3787] = 3737, - [3788] = 3784, - [3789] = 3585, + [3787] = 1615, + [3788] = 3768, + [3789] = 3789, [3790] = 3790, [3791] = 3791, - [3792] = 3792, - [3793] = 3737, - [3794] = 3735, - [3795] = 3514, - [3796] = 3276, - [3797] = 3797, + [3792] = 3768, + [3793] = 3793, + [3794] = 3794, + [3795] = 3750, + [3796] = 3796, + [3797] = 1614, [3798] = 3798, - [3799] = 3515, - [3800] = 3800, - [3801] = 3758, - [3802] = 3590, - [3803] = 3803, - [3804] = 3804, - [3805] = 3740, - [3806] = 3679, - [3807] = 3807, - [3808] = 3808, - [3809] = 691, - [3810] = 1577, - [3811] = 3681, - [3812] = 3522, - [3813] = 3635, - [3814] = 3512, - [3815] = 692, - [3816] = 3770, - [3817] = 3241, - [3818] = 3818, - [3819] = 3819, + [3799] = 3713, + [3800] = 1587, + [3801] = 1588, + [3802] = 3802, + [3803] = 3722, + [3804] = 1122, + [3805] = 3587, + [3806] = 3786, + [3807] = 1123, + [3808] = 1496, + [3809] = 3809, + [3810] = 1132, + [3811] = 3811, + [3812] = 1613, + [3813] = 227, + [3814] = 3814, + [3815] = 3815, + [3816] = 3816, + [3817] = 3587, + [3818] = 3802, + [3819] = 1612, [3820] = 3820, - [3821] = 3821, - [3822] = 694, + [3821] = 3750, + [3822] = 3822, [3823] = 3823, - [3824] = 3818, - [3825] = 1594, - [3826] = 3749, - [3827] = 695, - [3828] = 693, - [3829] = 3821, - [3830] = 3830, - [3831] = 3786, - [3832] = 3804, + [3824] = 1611, + [3825] = 215, + [3826] = 1594, + [3827] = 1595, + [3828] = 1596, + [3829] = 3829, + [3830] = 1610, + [3831] = 3831, + [3832] = 3832, [3833] = 3833, - [3834] = 3834, - [3835] = 3835, - [3836] = 3639, - [3837] = 3834, - [3838] = 3775, - [3839] = 3807, - [3840] = 3765, - [3841] = 3841, - [3842] = 3842, - [3843] = 3761, - [3844] = 3770, - [3845] = 3664, - [3846] = 3798, - [3847] = 1238, - [3848] = 3737, - [3849] = 3849, - [3850] = 3737, + [3834] = 1514, + [3835] = 3790, + [3836] = 1607, + [3837] = 3794, + [3838] = 3838, + [3839] = 3839, + [3840] = 3815, + [3841] = 3768, + [3842] = 1132, + [3843] = 3843, + [3844] = 1515, + [3845] = 1597, + [3846] = 3846, + [3847] = 3847, + [3848] = 3750, + [3849] = 3750, + [3850] = 3850, [3851] = 3768, - [3852] = 3849, - [3853] = 3803, - [3854] = 3792, - [3855] = 3800, - [3856] = 3721, - [3857] = 3724, - [3858] = 3721, - [3859] = 3761, + [3852] = 1618, + [3853] = 3853, + [3854] = 3854, + [3855] = 3855, + [3856] = 693, + [3857] = 1527, + [3858] = 3858, + [3859] = 3859, [3860] = 3860, - [3861] = 3721, - [3862] = 3862, - [3863] = 3863, - [3864] = 3665, - [3865] = 3595, - [3866] = 3749, - [3867] = 3867, - [3868] = 3761, - [3869] = 3667, - [3870] = 3769, - [3871] = 3749, - [3872] = 3520, - [3873] = 774, + [3861] = 3861, + [3862] = 1528, + [3863] = 1529, + [3864] = 3864, + [3865] = 695, + [3866] = 3866, + [3867] = 1599, + [3868] = 3868, + [3869] = 3815, + [3870] = 3768, + [3871] = 1601, + [3872] = 3872, + [3873] = 3873, [3874] = 3874, - [3875] = 3875, - [3876] = 3876, - [3877] = 889, - [3878] = 898, - [3879] = 902, - [3880] = 789, + [3875] = 3791, + [3876] = 3814, + [3877] = 3877, + [3878] = 3878, + [3879] = 1546, + [3880] = 3880, [3881] = 3881, - [3882] = 3882, + [3882] = 3587, [3883] = 3883, - [3884] = 3884, - [3885] = 3885, - [3886] = 792, + [3884] = 1548, + [3885] = 1549, + [3886] = 3886, [3887] = 3887, - [3888] = 3888, - [3889] = 795, - [3890] = 796, - [3891] = 797, - [3892] = 766, - [3893] = 787, - [3894] = 3894, - [3895] = 761, - [3896] = 3896, - [3897] = 803, - [3898] = 3898, + [3888] = 3587, + [3889] = 1122, + [3890] = 3890, + [3891] = 1550, + [3892] = 1551, + [3893] = 3893, + [3894] = 1552, + [3895] = 3750, + [3896] = 3764, + [3897] = 1512, + [3898] = 3738, [3899] = 3899, - [3900] = 3900, - [3901] = 3901, - [3902] = 3902, + [3900] = 3794, + [3901] = 689, + [3902] = 694, [3903] = 3903, - [3904] = 812, + [3904] = 3904, [3905] = 3905, - [3906] = 830, - [3907] = 831, - [3908] = 3908, + [3906] = 1510, + [3907] = 3907, + [3908] = 1509, [3909] = 3909, - [3910] = 833, + [3910] = 3910, [3911] = 3911, - [3912] = 836, - [3913] = 3913, - [3914] = 3914, + [3912] = 3912, + [3913] = 3909, + [3914] = 3911, [3915] = 3915, - [3916] = 3916, - [3917] = 3917, - [3918] = 3918, - [3919] = 3919, - [3920] = 3920, + [3916] = 3713, + [3917] = 3909, + [3918] = 3909, + [3919] = 1499, + [3920] = 3911, [3921] = 3921, [3922] = 3922, [3923] = 3923, [3924] = 3924, [3925] = 3925, [3926] = 3926, - [3927] = 3927, + [3927] = 1501, [3928] = 3928, - [3929] = 850, - [3930] = 852, - [3931] = 854, - [3932] = 855, - [3933] = 908, + [3929] = 3911, + [3930] = 3911, + [3931] = 3931, + [3932] = 1502, + [3933] = 1148, [3934] = 3934, - [3935] = 3935, - [3936] = 3936, - [3937] = 856, - [3938] = 857, - [3939] = 864, - [3940] = 773, - [3941] = 781, - [3942] = 754, - [3943] = 869, + [3935] = 3909, + [3936] = 1147, + [3937] = 1151, + [3938] = 3909, + [3939] = 203, + [3940] = 3911, + [3941] = 194, + [3942] = 1505, + [3943] = 3943, [3944] = 3944, [3945] = 3945, - [3946] = 3946, - [3947] = 3947, - [3948] = 3948, + [3946] = 3931, + [3947] = 3909, + [3948] = 3909, [3949] = 3949, [3950] = 3950, [3951] = 3951, [3952] = 3952, - [3953] = 887, - [3954] = 888, + [3953] = 3953, + [3954] = 3954, [3955] = 3955, [3956] = 3956, - [3957] = 3957, + [3957] = 3899, [3958] = 3958, [3959] = 3959, [3960] = 3960, [3961] = 3961, - [3962] = 891, + [3962] = 3962, [3963] = 3963, - [3964] = 760, - [3965] = 892, + [3964] = 3964, + [3965] = 3965, [3966] = 3966, - [3967] = 893, - [3968] = 3899, - [3969] = 894, - [3970] = 895, + [3967] = 3967, + [3968] = 3968, + [3969] = 3969, + [3970] = 3970, [3971] = 3971, - [3972] = 899, - [3973] = 901, + [3972] = 3972, + [3973] = 3973, [3974] = 3974, - [3975] = 786, + [3975] = 3975, [3976] = 3976, [3977] = 3977, - [3978] = 776, + [3978] = 3978, [3979] = 3979, [3980] = 3980, - [3981] = 846, + [3981] = 3981, [3982] = 3982, - [3983] = 784, + [3983] = 3983, [3984] = 3984, [3985] = 3985, [3986] = 3986, @@ -8464,28 +8570,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3996] = 3996, [3997] = 3997, [3998] = 3998, - [3999] = 3999, - [4000] = 798, - [4001] = 809, - [4002] = 821, - [4003] = 825, + [3999] = 3798, + [4000] = 4000, + [4001] = 4001, + [4002] = 4002, + [4003] = 4003, [4004] = 4004, - [4005] = 3991, + [4005] = 4005, [4006] = 4006, - [4007] = 3884, + [4007] = 4007, [4008] = 4008, [4009] = 4009, [4010] = 4010, [4011] = 4011, - [4012] = 3699, - [4013] = 3971, - [4014] = 3909, + [4012] = 4012, + [4013] = 3973, + [4014] = 3983, [4015] = 4015, - [4016] = 3920, + [4016] = 4016, [4017] = 4017, - [4018] = 3927, + [4018] = 4018, [4019] = 4019, - [4020] = 3952, + [4020] = 4020, [4021] = 4021, [4022] = 4022, [4023] = 4023, @@ -8499,13 +8605,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4031] = 4031, [4032] = 4032, [4033] = 4033, - [4034] = 3909, + [4034] = 4034, [4035] = 4035, [4036] = 4036, - [4037] = 3927, - [4038] = 4038, + [4037] = 221, + [4038] = 220, [4039] = 4039, - [4040] = 3952, + [4040] = 4040, [4041] = 4041, [4042] = 4042, [4043] = 4043, @@ -8516,11 +8622,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4048] = 4048, [4049] = 4049, [4050] = 4050, - [4051] = 3909, + [4051] = 4051, [4052] = 4052, - [4053] = 4053, + [4053] = 4008, [4054] = 4054, - [4055] = 3927, + [4055] = 4055, [4056] = 4056, [4057] = 4057, [4058] = 4058, @@ -8532,12 +8638,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4064] = 4064, [4065] = 4065, [4066] = 4066, - [4067] = 4067, - [4068] = 3979, + [4067] = 3955, + [4068] = 4068, [4069] = 4069, [4070] = 4070, - [4071] = 851, - [4072] = 4072, + [4071] = 4071, + [4072] = 1514, [4073] = 4073, [4074] = 4074, [4075] = 4075, @@ -8546,129 +8652,129 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4078] = 4078, [4079] = 4079, [4080] = 4080, - [4081] = 876, - [4082] = 880, + [4081] = 4081, + [4082] = 4082, [4083] = 4083, [4084] = 4084, - [4085] = 4038, + [4085] = 4085, [4086] = 4086, [4087] = 4087, - [4088] = 4088, + [4088] = 4060, [4089] = 4089, [4090] = 4090, - [4091] = 3875, - [4092] = 3924, + [4091] = 4091, + [4092] = 3958, [4093] = 4093, - [4094] = 3989, - [4095] = 3926, + [4094] = 4094, + [4095] = 4095, [4096] = 4096, [4097] = 4097, [4098] = 4098, [4099] = 4099, - [4100] = 4100, + [4100] = 3682, [4101] = 4101, - [4102] = 4102, + [4102] = 3976, [4103] = 4103, [4104] = 4104, - [4105] = 3884, + [4105] = 4105, [4106] = 4106, - [4107] = 3655, - [4108] = 4108, + [4107] = 4070, + [4108] = 3822, [4109] = 4109, [4110] = 4110, - [4111] = 4111, - [4112] = 3927, + [4111] = 1505, + [4112] = 3971, [4113] = 4113, - [4114] = 4114, + [4114] = 4035, [4115] = 4115, [4116] = 4116, [4117] = 4117, [4118] = 4118, - [4119] = 4039, - [4120] = 868, - [4121] = 890, + [4119] = 4083, + [4120] = 4070, + [4121] = 4060, [4122] = 4122, - [4123] = 3956, + [4123] = 4062, [4124] = 4124, - [4125] = 4125, + [4125] = 4097, [4126] = 4126, - [4127] = 3957, - [4128] = 4128, + [4127] = 4127, + [4128] = 3971, [4129] = 4129, [4130] = 4130, [4131] = 4131, [4132] = 4132, - [4133] = 4133, + [4133] = 1501, [4134] = 4134, - [4135] = 4135, + [4135] = 3853, [4136] = 4136, - [4137] = 4137, - [4138] = 4088, - [4139] = 4139, + [4137] = 4101, + [4138] = 1502, + [4139] = 3746, [4140] = 4140, - [4141] = 4141, - [4142] = 4142, + [4141] = 4011, + [4142] = 1611, [4143] = 4143, - [4144] = 4144, - [4145] = 4145, - [4146] = 3797, - [4147] = 4147, + [4144] = 1587, + [4145] = 1508, + [4146] = 4146, + [4147] = 198, [4148] = 4148, [4149] = 4149, - [4150] = 4150, - [4151] = 4151, - [4152] = 834, + [4150] = 3983, + [4151] = 1613, + [4152] = 4152, [4153] = 4153, [4154] = 4154, - [4155] = 842, + [4155] = 1617, [4156] = 4156, [4157] = 4157, [4158] = 4158, - [4159] = 3980, - [4160] = 4160, - [4161] = 4161, - [4162] = 4038, - [4163] = 4163, - [4164] = 4164, - [4165] = 4133, + [4159] = 3984, + [4160] = 3732, + [4161] = 4004, + [4162] = 1550, + [4163] = 1546, + [4164] = 1509, + [4165] = 1510, [4166] = 4166, - [4167] = 3958, - [4168] = 3875, - [4169] = 4098, - [4170] = 4100, + [4167] = 4167, + [4168] = 4168, + [4169] = 4169, + [4170] = 4170, [4171] = 4171, - [4172] = 4098, - [4173] = 4039, - [4174] = 4174, - [4175] = 4096, + [4172] = 4172, + [4173] = 4126, + [4174] = 4001, + [4175] = 4175, [4176] = 4176, - [4177] = 3560, - [4178] = 4100, - [4179] = 3535, - [4180] = 3984, - [4181] = 3935, + [4177] = 4177, + [4178] = 4033, + [4179] = 4179, + [4180] = 4180, + [4181] = 4181, [4182] = 4182, - [4183] = 4183, + [4183] = 1514, [4184] = 4184, - [4185] = 860, + [4185] = 4185, [4186] = 4186, [4187] = 4187, - [4188] = 4188, - [4189] = 4189, - [4190] = 866, - [4191] = 4191, - [4192] = 3963, - [4193] = 4193, - [4194] = 4194, + [4188] = 4030, + [4189] = 4032, + [4190] = 1510, + [4191] = 1509, + [4192] = 4177, + [4193] = 1546, + [4194] = 1550, [4195] = 4195, [4196] = 4196, - [4197] = 3966, + [4197] = 4029, [4198] = 4198, [4199] = 4199, [4200] = 4200, - [4201] = 231, - [4202] = 4125, - [4203] = 4203, + [4201] = 4201, + [4202] = 4202, + [4203] = 4199, [4204] = 4204, [4205] = 4205, [4206] = 4206, @@ -8676,113 +8782,113 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4208] = 4208, [4209] = 4209, [4210] = 4210, - [4211] = 230, - [4212] = 4212, - [4213] = 4213, + [4211] = 4211, + [4212] = 4200, + [4213] = 4201, [4214] = 4214, - [4215] = 4215, - [4216] = 4216, + [4215] = 4202, + [4216] = 4204, [4217] = 4217, [4218] = 4218, [4219] = 4219, [4220] = 4220, - [4221] = 4221, + [4221] = 4205, [4222] = 4222, [4223] = 4223, [4224] = 4224, - [4225] = 4225, + [4225] = 4206, [4226] = 4226, - [4227] = 4227, + [4227] = 4208, [4228] = 4228, - [4229] = 4229, - [4230] = 4230, - [4231] = 4126, + [4229] = 4209, + [4230] = 4198, + [4231] = 4231, [4232] = 4232, [4233] = 4233, [4234] = 4234, [4235] = 4235, - [4236] = 4236, + [4236] = 4210, [4237] = 4237, - [4238] = 4238, + [4238] = 4211, [4239] = 4239, [4240] = 4240, [4241] = 4241, - [4242] = 4242, - [4243] = 862, - [4244] = 3920, - [4245] = 863, - [4246] = 4246, + [4242] = 3722, + [4243] = 4243, + [4244] = 4244, + [4245] = 4245, + [4246] = 4220, [4247] = 4247, [4248] = 4248, [4249] = 4249, [4250] = 4250, - [4251] = 865, - [4252] = 4252, + [4251] = 1508, + [4252] = 1587, [4253] = 4253, - [4254] = 4254, + [4254] = 4222, [4255] = 4255, - [4256] = 4256, - [4257] = 4114, + [4256] = 4223, + [4257] = 4257, [4258] = 4258, - [4259] = 3947, + [4259] = 4259, [4260] = 4260, - [4261] = 3949, - [4262] = 4135, + [4261] = 4261, + [4262] = 4262, [4263] = 4263, [4264] = 4264, - [4265] = 4115, - [4266] = 3909, + [4265] = 4265, + [4266] = 4176, [4267] = 4267, [4268] = 4268, [4269] = 4269, - [4270] = 4270, - [4271] = 3987, + [4270] = 4224, + [4271] = 4271, [4272] = 4272, [4273] = 4273, - [4274] = 3790, - [4275] = 3841, + [4274] = 4274, + [4275] = 4275, [4276] = 4276, - [4277] = 4053, + [4277] = 4277, [4278] = 4278, - [4279] = 3781, - [4280] = 873, - [4281] = 874, - [4282] = 4282, - [4283] = 875, - [4284] = 4284, - [4285] = 4285, - [4286] = 877, - [4287] = 878, - [4288] = 758, + [4279] = 4279, + [4280] = 4280, + [4281] = 4226, + [4282] = 4228, + [4283] = 4283, + [4284] = 4172, + [4285] = 4277, + [4286] = 4276, + [4287] = 4287, + [4288] = 4288, [4289] = 4289, - [4290] = 4290, - [4291] = 879, - [4292] = 4292, - [4293] = 881, - [4294] = 882, - [4295] = 885, - [4296] = 4296, - [4297] = 3926, + [4290] = 4278, + [4291] = 4245, + [4292] = 3962, + [4293] = 4293, + [4294] = 4294, + [4295] = 4295, + [4296] = 4231, + [4297] = 3738, [4298] = 4298, - [4299] = 4299, - [4300] = 4300, - [4301] = 4258, + [4299] = 4233, + [4300] = 4182, + [4301] = 4234, [4302] = 4302, - [4303] = 3956, - [4304] = 3957, - [4305] = 4191, + [4303] = 4171, + [4304] = 4235, + [4305] = 4305, [4306] = 4306, - [4307] = 3584, - [4308] = 3971, + [4307] = 4207, + [4308] = 4308, [4309] = 4309, [4310] = 4310, - [4311] = 817, - [4312] = 818, - [4313] = 819, + [4311] = 4311, + [4312] = 4312, + [4313] = 4313, [4314] = 4314, [4315] = 4315, - [4316] = 4316, - [4317] = 4317, + [4316] = 4153, + [4317] = 4195, [4318] = 4318, [4319] = 4319, [4320] = 4320, @@ -8790,241 +8896,241 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4322] = 4322, [4323] = 4323, [4324] = 4324, - [4325] = 4325, - [4326] = 4326, - [4327] = 4327, - [4328] = 837, - [4329] = 838, - [4330] = 840, - [4331] = 4331, - [4332] = 1617, - [4333] = 1626, + [4325] = 4306, + [4326] = 4240, + [4327] = 4298, + [4328] = 4241, + [4329] = 4175, + [4330] = 4243, + [4331] = 4293, + [4332] = 4247, + [4333] = 4333, [4334] = 4334, - [4335] = 4116, - [4336] = 4336, - [4337] = 4117, + [4335] = 4335, + [4336] = 4248, + [4337] = 4337, [4338] = 4338, [4339] = 4339, - [4340] = 4340, + [4340] = 4152, [4341] = 4341, - [4342] = 4342, - [4343] = 4343, - [4344] = 4344, + [4342] = 4324, + [4343] = 4170, + [4344] = 4268, [4345] = 4345, - [4346] = 4346, - [4347] = 3917, - [4348] = 4348, - [4349] = 4349, - [4350] = 4350, - [4351] = 4351, - [4352] = 4352, - [4353] = 4052, + [4346] = 4249, + [4347] = 4250, + [4348] = 4255, + [4349] = 4262, + [4350] = 4323, + [4351] = 4322, + [4352] = 4267, + [4353] = 4263, [4354] = 4354, - [4355] = 4355, - [4356] = 4356, - [4357] = 4357, - [4358] = 4358, - [4359] = 4359, - [4360] = 4360, + [4355] = 4321, + [4356] = 4245, + [4357] = 4269, + [4358] = 4320, + [4359] = 4319, + [4360] = 4268, [4361] = 4361, - [4362] = 4362, - [4363] = 4363, + [4362] = 3694, + [4363] = 4318, [4364] = 4364, - [4365] = 4365, - [4366] = 4366, - [4367] = 4357, - [4368] = 4368, - [4369] = 4362, - [4370] = 4359, + [4365] = 4271, + [4366] = 4272, + [4367] = 4273, + [4368] = 4295, + [4369] = 4369, + [4370] = 4370, [4371] = 4371, [4372] = 4372, - [4373] = 4153, - [4374] = 4374, - [4375] = 4375, + [4373] = 4373, + [4374] = 4245, + [4375] = 4278, [4376] = 4376, - [4377] = 4374, - [4378] = 4354, - [4379] = 4354, - [4380] = 4357, + [4377] = 4277, + [4378] = 4276, + [4379] = 4379, + [4380] = 4207, [4381] = 4381, [4382] = 4382, - [4383] = 4383, - [4384] = 4354, - [4385] = 4361, - [4386] = 4366, + [4383] = 4315, + [4384] = 4384, + [4385] = 4385, + [4386] = 4245, [4387] = 4387, - [4388] = 4368, - [4389] = 4389, + [4388] = 4314, + [4389] = 4260, [4390] = 4390, - [4391] = 4391, - [4392] = 4392, - [4393] = 4357, - [4394] = 4360, + [4391] = 4253, + [4392] = 4268, + [4393] = 4393, + [4394] = 4394, [4395] = 4395, - [4396] = 4366, - [4397] = 4362, - [4398] = 4398, - [4399] = 4361, - [4400] = 4374, - [4401] = 4382, + [4396] = 4263, + [4397] = 4237, + [4398] = 4268, + [4399] = 4399, + [4400] = 4400, + [4401] = 4401, [4402] = 4402, - [4403] = 4360, - [4404] = 3699, - [4405] = 4361, - [4406] = 4406, + [4403] = 4403, + [4404] = 4140, + [4405] = 4277, + [4406] = 4276, [4407] = 4407, - [4408] = 4408, - [4409] = 4354, - [4410] = 4395, - [4411] = 4357, - [4412] = 4359, + [4408] = 4187, + [4409] = 4409, + [4410] = 4410, + [4411] = 4186, + [4412] = 4412, [4413] = 4413, - [4414] = 4414, - [4415] = 4415, - [4416] = 4360, - [4417] = 4361, - [4418] = 4374, - [4419] = 4382, - [4420] = 4382, - [4421] = 4374, - [4422] = 4395, - [4423] = 4423, + [4414] = 4185, + [4415] = 4207, + [4416] = 4416, + [4417] = 4417, + [4418] = 4302, + [4419] = 4180, + [4420] = 4179, + [4421] = 4421, + [4422] = 4294, + [4423] = 4305, [4424] = 4424, - [4425] = 4425, - [4426] = 4426, - [4427] = 4427, - [4428] = 4428, - [4429] = 4429, - [4430] = 4360, - [4431] = 4364, - [4432] = 4395, - [4433] = 4366, - [4434] = 4434, - [4435] = 4362, - [4436] = 4436, - [4437] = 4437, - [4438] = 4395, - [4439] = 4362, + [4425] = 4338, + [4426] = 4339, + [4427] = 4341, + [4428] = 693, + [4429] = 695, + [4430] = 694, + [4431] = 4431, + [4432] = 4432, + [4433] = 4433, + [4434] = 689, + [4435] = 4435, + [4436] = 690, + [4437] = 4134, + [4438] = 4245, + [4439] = 4439, [4440] = 4440, [4441] = 4441, - [4442] = 4442, + [4442] = 4207, [4443] = 4443, - [4444] = 4357, + [4444] = 4444, [4445] = 4445, - [4446] = 4359, - [4447] = 4360, - [4448] = 4361, - [4449] = 4354, - [4450] = 4408, - [4451] = 4372, - [4452] = 4395, + [4446] = 4446, + [4447] = 4373, + [4448] = 4372, + [4449] = 4449, + [4450] = 4450, + [4451] = 4371, + [4452] = 4370, [4453] = 4453, - [4454] = 4374, - [4455] = 4359, + [4454] = 4268, + [4455] = 4313, [4456] = 4456, - [4457] = 4157, + [4457] = 4312, [4458] = 4458, - [4459] = 4366, - [4460] = 4362, - [4461] = 4359, - [4462] = 4357, - [4463] = 4359, - [4464] = 4360, + [4459] = 4369, + [4460] = 4460, + [4461] = 4461, + [4462] = 4462, + [4463] = 4463, + [4464] = 4464, [4465] = 4465, - [4466] = 4443, - [4467] = 4361, - [4468] = 4391, - [4469] = 4407, - [4470] = 4470, - [4471] = 4364, - [4472] = 4428, - [4473] = 4364, - [4474] = 4362, - [4475] = 4475, - [4476] = 4441, - [4477] = 4364, - [4478] = 4402, - [4479] = 4479, - [4480] = 4480, - [4481] = 4440, - [4482] = 4482, - [4483] = 4354, - [4484] = 4437, - [4485] = 4395, - [4486] = 4364, + [4466] = 4466, + [4467] = 4467, + [4468] = 4279, + [4469] = 4166, + [4470] = 4089, + [4471] = 4471, + [4472] = 4311, + [4473] = 4387, + [4474] = 4184, + [4475] = 4394, + [4476] = 4395, + [4477] = 4399, + [4478] = 4400, + [4479] = 4310, + [4480] = 4167, + [4481] = 4168, + [4482] = 4106, + [4483] = 4401, + [4484] = 4402, + [4485] = 4485, + [4486] = 4486, [4487] = 4487, - [4488] = 4364, - [4489] = 4382, + [4488] = 4277, + [4489] = 4277, [4490] = 4490, [4491] = 4491, - [4492] = 4492, - [4493] = 4493, - [4494] = 4494, - [4495] = 4495, - [4496] = 4496, + [4492] = 4276, + [4493] = 4409, + [4494] = 4309, + [4495] = 4276, + [4496] = 4410, [4497] = 4497, - [4498] = 4498, - [4499] = 4499, - [4500] = 4500, - [4501] = 4501, - [4502] = 4502, - [4503] = 4503, + [4498] = 4412, + [4499] = 4413, + [4500] = 4207, + [4501] = 4417, + [4502] = 4421, + [4503] = 4424, [4504] = 4504, [4505] = 4505, - [4506] = 4026, + [4506] = 4506, [4507] = 4507, - [4508] = 4508, - [4509] = 4509, - [4510] = 4510, - [4511] = 4511, - [4512] = 4512, - [4513] = 4513, - [4514] = 4514, + [4508] = 4432, + [4509] = 4439, + [4510] = 4441, + [4511] = 4443, + [4512] = 4444, + [4513] = 4462, + [4514] = 4466, [4515] = 4515, - [4516] = 4516, - [4517] = 4517, + [4516] = 1611, + [4517] = 3972, [4518] = 4518, - [4519] = 4519, - [4520] = 4520, - [4521] = 4521, - [4522] = 4522, - [4523] = 4502, + [4519] = 4335, + [4520] = 4486, + [4521] = 4491, + [4522] = 4334, + [4523] = 4431, [4524] = 4524, - [4525] = 4511, - [4526] = 4526, - [4527] = 4527, - [4528] = 4528, - [4529] = 4529, - [4530] = 4530, - [4531] = 4531, - [4532] = 4532, - [4533] = 4533, - [4534] = 4534, - [4535] = 4535, - [4536] = 4536, - [4537] = 4537, + [4525] = 4308, + [4526] = 4244, + [4527] = 3968, + [4528] = 4333, + [4529] = 4040, + [4530] = 4103, + [4531] = 4104, + [4532] = 4181, + [4533] = 4105, + [4534] = 4214, + [4535] = 4109, + [4536] = 3963, + [4537] = 4504, [4538] = 4538, - [4539] = 4539, - [4540] = 4540, - [4541] = 4541, + [4539] = 4505, + [4540] = 4506, + [4541] = 4217, [4542] = 4542, - [4543] = 4543, - [4544] = 4544, + [4543] = 4218, + [4544] = 4219, [4545] = 4545, - [4546] = 4546, - [4547] = 4547, + [4546] = 4379, + [4547] = 4289, [4548] = 4548, - [4549] = 4549, - [4550] = 4550, - [4551] = 4527, - [4552] = 4552, - [4553] = 4528, - [4554] = 4554, - [4555] = 4555, - [4556] = 4556, - [4557] = 4557, - [4558] = 4158, - [4559] = 4559, + [4549] = 1617, + [4550] = 4257, + [4551] = 4258, + [4552] = 4288, + [4553] = 4259, + [4554] = 4287, + [4555] = 4261, + [4556] = 3986, + [4557] = 1613, + [4558] = 4264, + [4559] = 4265, [4560] = 4560, [4561] = 4561, [4562] = 4562, @@ -9033,33 +9139,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4565] = 4565, [4566] = 4566, [4567] = 4567, - [4568] = 4512, + [4568] = 4568, [4569] = 4569, [4570] = 4570, [4571] = 4571, - [4572] = 4572, + [4572] = 843, [4573] = 4573, [4574] = 4574, [4575] = 4575, - [4576] = 4521, - [4577] = 4577, - [4578] = 4502, - [4579] = 4511, - [4580] = 4580, - [4581] = 4527, - [4582] = 4528, - [4583] = 4583, - [4584] = 4584, + [4576] = 4576, + [4577] = 870, + [4578] = 819, + [4579] = 779, + [4580] = 754, + [4581] = 755, + [4582] = 846, + [4583] = 908, + [4584] = 905, [4585] = 4585, [4586] = 4586, [4587] = 4587, - [4588] = 4588, - [4589] = 4589, + [4588] = 881, + [4589] = 869, [4590] = 4590, - [4591] = 4591, - [4592] = 4533, + [4591] = 868, + [4592] = 4592, [4593] = 4593, - [4594] = 4535, + [4594] = 4594, [4595] = 4595, [4596] = 4596, [4597] = 4597, @@ -9072,10 +9178,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4604] = 4604, [4605] = 4605, [4606] = 4606, - [4607] = 4607, - [4608] = 4608, - [4609] = 4609, - [4610] = 4610, + [4607] = 865, + [4608] = 864, + [4609] = 863, + [4610] = 862, [4611] = 4611, [4612] = 4612, [4613] = 4613, @@ -9083,10 +9189,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4615] = 4615, [4616] = 4616, [4617] = 4617, - [4618] = 3595, + [4618] = 4618, [4619] = 4619, [4620] = 4620, - [4621] = 4621, + [4621] = 762, [4622] = 4622, [4623] = 4623, [4624] = 4624, @@ -9094,13 +9200,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4626] = 4626, [4627] = 4627, [4628] = 4628, - [4629] = 4511, - [4630] = 4527, - [4631] = 4528, + [4629] = 4629, + [4630] = 4630, + [4631] = 4631, [4632] = 4632, [4633] = 4633, [4634] = 4634, - [4635] = 4535, + [4635] = 4635, [4636] = 4636, [4637] = 4637, [4638] = 4638, @@ -9111,11 +9217,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4643] = 4643, [4644] = 4644, [4645] = 4645, - [4646] = 4515, - [4647] = 4527, - [4648] = 4528, + [4646] = 4646, + [4647] = 4647, + [4648] = 4648, [4649] = 4649, - [4650] = 4535, + [4650] = 4650, [4651] = 4651, [4652] = 4652, [4653] = 4653, @@ -9134,7 +9240,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4666] = 4666, [4667] = 4667, [4668] = 4668, - [4669] = 4518, + [4669] = 4669, [4670] = 4670, [4671] = 4671, [4672] = 4672, @@ -9143,59 +9249,59 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4675] = 4675, [4676] = 4676, [4677] = 4677, - [4678] = 4512, - [4679] = 4679, + [4678] = 4678, + [4679] = 4653, [4680] = 4680, - [4681] = 4526, + [4681] = 4681, [4682] = 4682, [4683] = 4683, [4684] = 4684, [4685] = 4685, [4686] = 4686, - [4687] = 4687, + [4687] = 4654, [4688] = 4688, - [4689] = 4689, - [4690] = 4533, + [4689] = 4655, + [4690] = 4690, [4691] = 4691, [4692] = 4692, [4693] = 4693, [4694] = 4694, - [4695] = 4512, - [4696] = 4530, + [4695] = 4695, + [4696] = 4696, [4697] = 4697, [4698] = 4698, - [4699] = 757, + [4699] = 871, [4700] = 4700, - [4701] = 4621, - [4702] = 4544, + [4701] = 789, + [4702] = 851, [4703] = 4703, [4704] = 4704, - [4705] = 4587, - [4706] = 4588, - [4707] = 4521, - [4708] = 4502, + [4705] = 4705, + [4706] = 4706, + [4707] = 4707, + [4708] = 815, [4709] = 4709, - [4710] = 4589, + [4710] = 4710, [4711] = 4711, [4712] = 4712, - [4713] = 4590, - [4714] = 4535, - [4715] = 4715, - [4716] = 4716, - [4717] = 4717, - [4718] = 4718, - [4719] = 4719, + [4713] = 4713, + [4714] = 4714, + [4715] = 829, + [4716] = 795, + [4717] = 793, + [4718] = 835, + [4719] = 836, [4720] = 4720, - [4721] = 4721, + [4721] = 790, [4722] = 4722, - [4723] = 4723, + [4723] = 4003, [4724] = 4724, - [4725] = 4725, + [4725] = 4698, [4726] = 4726, - [4727] = 4727, - [4728] = 4512, - [4729] = 4502, - [4730] = 4730, + [4727] = 867, + [4728] = 872, + [4729] = 874, + [4730] = 877, [4731] = 4731, [4732] = 4732, [4733] = 4733, @@ -9205,161 +9311,161 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4737] = 4737, [4738] = 4738, [4739] = 4739, - [4740] = 4740, + [4740] = 4656, [4741] = 4741, [4742] = 4742, - [4743] = 4743, - [4744] = 4744, + [4743] = 4658, + [4744] = 4660, [4745] = 4745, [4746] = 4746, - [4747] = 4737, - [4748] = 4533, - [4749] = 4511, - [4750] = 4750, + [4747] = 4747, + [4748] = 808, + [4749] = 4749, + [4750] = 816, [4751] = 4751, [4752] = 4752, - [4753] = 4753, - [4754] = 4153, - [4755] = 4659, - [4756] = 4520, - [4757] = 4757, + [4753] = 758, + [4754] = 765, + [4755] = 4755, + [4756] = 776, + [4757] = 814, [4758] = 4758, - [4759] = 4759, - [4760] = 4508, + [4759] = 828, + [4760] = 4760, [4761] = 4761, - [4762] = 4513, + [4762] = 813, [4763] = 4763, - [4764] = 4764, - [4765] = 4765, - [4766] = 4766, + [4764] = 786, + [4765] = 802, + [4766] = 801, [4767] = 4767, - [4768] = 4768, - [4769] = 4769, - [4770] = 4770, - [4771] = 4771, + [4768] = 800, + [4769] = 799, + [4770] = 792, + [4771] = 212, [4772] = 4772, [4773] = 4773, - [4774] = 4774, - [4775] = 4775, - [4776] = 4776, - [4777] = 4777, - [4778] = 4778, - [4779] = 4779, + [4774] = 4467, + [4775] = 4465, + [4776] = 4646, + [4777] = 4463, + [4778] = 4661, + [4779] = 4662, [4780] = 4780, - [4781] = 4512, - [4782] = 4709, + [4781] = 4781, + [4782] = 4782, [4783] = 4783, - [4784] = 4784, - [4785] = 4712, - [4786] = 4786, + [4784] = 4667, + [4785] = 883, + [4786] = 4669, [4787] = 4787, [4788] = 4788, - [4789] = 4535, - [4790] = 4790, - [4791] = 3528, - [4792] = 4792, - [4793] = 4541, - [4794] = 4680, + [4789] = 4789, + [4790] = 226, + [4791] = 4791, + [4792] = 4561, + [4793] = 4793, + [4794] = 4794, [4795] = 4795, [4796] = 4796, [4797] = 4797, [4798] = 4798, - [4799] = 4799, + [4799] = 4675, [4800] = 4800, [4801] = 4801, [4802] = 4802, - [4803] = 4803, + [4803] = 4722, [4804] = 4804, - [4805] = 4805, - [4806] = 4806, - [4807] = 4807, + [4805] = 4685, + [4806] = 4688, + [4807] = 756, [4808] = 4808, - [4809] = 4753, + [4809] = 4809, [4810] = 4810, - [4811] = 4811, - [4812] = 4796, - [4813] = 4813, - [4814] = 4814, - [4815] = 4815, - [4816] = 4816, + [4811] = 757, + [4812] = 4676, + [4813] = 4724, + [4814] = 887, + [4815] = 901, + [4816] = 876, [4817] = 4817, [4818] = 4818, [4819] = 4819, [4820] = 4820, - [4821] = 4821, - [4822] = 4822, - [4823] = 4823, + [4821] = 4626, + [4822] = 4600, + [4823] = 4596, [4824] = 4824, [4825] = 4825, - [4826] = 4826, - [4827] = 4827, - [4828] = 4828, - [4829] = 4739, - [4830] = 4830, + [4826] = 4692, + [4827] = 4695, + [4828] = 4726, + [4829] = 4703, + [4830] = 859, [4831] = 4831, - [4832] = 4832, - [4833] = 4527, - [4834] = 4746, + [4832] = 4645, + [4833] = 4783, + [4834] = 4834, [4835] = 4835, [4836] = 4836, [4837] = 4837, [4838] = 4838, [4839] = 4839, - [4840] = 4528, - [4841] = 4744, + [4840] = 4840, + [4841] = 4841, [4842] = 4842, - [4843] = 4843, + [4843] = 4731, [4844] = 4844, [4845] = 4845, - [4846] = 4846, - [4847] = 4847, - [4848] = 4848, - [4849] = 4849, + [4846] = 4737, + [4847] = 858, + [4848] = 4746, + [4849] = 860, [4850] = 4850, - [4851] = 4851, + [4851] = 4739, [4852] = 4852, [4853] = 4853, [4854] = 4854, [4855] = 4855, [4856] = 4856, - [4857] = 4665, + [4857] = 4741, [4858] = 4858, [4859] = 4859, - [4860] = 4860, + [4860] = 4747, [4861] = 4861, - [4862] = 4862, + [4862] = 4749, [4863] = 4863, [4864] = 4864, [4865] = 4865, [4866] = 4866, [4867] = 4867, - [4868] = 4868, - [4869] = 4666, + [4868] = 824, + [4869] = 825, [4870] = 4870, [4871] = 4871, - [4872] = 4872, - [4873] = 4873, - [4874] = 4685, + [4872] = 4130, + [4873] = 3985, + [4874] = 4644, [4875] = 4875, [4876] = 4876, [4877] = 4877, [4878] = 4878, [4879] = 4879, - [4880] = 4692, + [4880] = 4880, [4881] = 4881, - [4882] = 4882, + [4882] = 880, [4883] = 4883, - [4884] = 4884, + [4884] = 4682, [4885] = 4885, [4886] = 4886, [4887] = 4887, [4888] = 4888, [4889] = 4889, - [4890] = 4890, + [4890] = 875, [4891] = 4891, - [4892] = 4722, - [4893] = 4674, - [4894] = 4894, + [4892] = 830, + [4893] = 4893, + [4894] = 4403, [4895] = 4895, [4896] = 4896, [4897] = 4897, @@ -9367,54 +9473,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4899] = 4899, [4900] = 4900, [4901] = 4901, - [4902] = 3512, - [4903] = 4786, + [4902] = 4902, + [4903] = 4903, [4904] = 4904, [4905] = 4905, [4906] = 4906, [4907] = 4907, [4908] = 4908, [4909] = 4909, - [4910] = 4141, + [4910] = 4910, [4911] = 4911, [4912] = 4912, - [4913] = 4796, - [4914] = 4914, + [4913] = 839, + [4914] = 889, [4915] = 4915, [4916] = 4916, - [4917] = 4917, + [4917] = 885, [4918] = 4918, - [4919] = 4685, - [4920] = 4905, + [4919] = 888, + [4920] = 4920, [4921] = 4921, [4922] = 4922, - [4923] = 4675, - [4924] = 4924, + [4923] = 4923, + [4924] = 890, [4925] = 4925, - [4926] = 4926, - [4927] = 4565, + [4926] = 897, + [4927] = 4927, [4928] = 4928, - [4929] = 4929, - [4930] = 4596, + [4929] = 898, + [4930] = 4930, [4931] = 4931, - [4932] = 4932, + [4932] = 759, [4933] = 4933, [4934] = 4934, [4935] = 4935, - [4936] = 4512, - [4937] = 4821, + [4936] = 4936, + [4937] = 4937, [4938] = 4938, [4939] = 4939, - [4940] = 4823, + [4940] = 4758, [4941] = 4941, [4942] = 4942, [4943] = 4943, - [4944] = 4821, + [4944] = 4944, [4945] = 4945, [4946] = 4946, - [4947] = 4746, - [4948] = 4157, - [4949] = 4905, + [4947] = 4947, + [4948] = 4948, + [4949] = 4949, [4950] = 4950, [4951] = 4951, [4952] = 4952, @@ -9431,139 +9537,139 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4963] = 4963, [4964] = 4964, [4965] = 4965, - [4966] = 4691, - [4967] = 4967, - [4968] = 4968, + [4966] = 4966, + [4967] = 1593, + [4968] = 1589, [4969] = 4969, - [4970] = 4521, + [4970] = 4970, [4971] = 4971, [4972] = 4972, [4973] = 4973, - [4974] = 4974, - [4975] = 4975, + [4974] = 841, + [4975] = 838, [4976] = 4976, - [4977] = 4502, - [4978] = 4978, + [4977] = 4977, + [4978] = 4780, [4979] = 4979, [4980] = 4980, - [4981] = 4981, + [4981] = 4782, [4982] = 4982, - [4983] = 4511, + [4983] = 4902, [4984] = 4984, [4985] = 4985, [4986] = 4986, [4987] = 4987, - [4988] = 4527, - [4989] = 4528, + [4988] = 4988, + [4989] = 4989, [4990] = 4990, - [4991] = 4991, + [4991] = 855, [4992] = 4992, - [4993] = 4993, - [4994] = 4994, - [4995] = 4502, + [4993] = 4691, + [4994] = 4952, + [4995] = 4995, [4996] = 4996, [4997] = 4997, [4998] = 4998, [4999] = 4999, [5000] = 5000, [5001] = 5001, - [5002] = 4587, - [5003] = 4588, - [5004] = 5004, - [5005] = 4589, - [5006] = 4590, + [5002] = 5002, + [5003] = 4641, + [5004] = 4733, + [5005] = 5005, + [5006] = 5006, [5007] = 5007, - [5008] = 5008, + [5008] = 4742, [5009] = 5009, - [5010] = 5010, - [5011] = 5011, + [5010] = 4745, + [5011] = 4798, [5012] = 5012, [5013] = 5013, - [5014] = 5014, + [5014] = 4640, [5015] = 5015, - [5016] = 5016, - [5017] = 5017, + [5016] = 4767, + [5017] = 4835, [5018] = 5018, - [5019] = 5019, + [5019] = 861, [5020] = 5020, - [5021] = 5021, - [5022] = 4533, - [5023] = 5023, + [5021] = 4781, + [5022] = 5022, + [5023] = 4844, [5024] = 5024, [5025] = 5025, - [5026] = 5026, - [5027] = 5027, - [5028] = 5028, + [5026] = 4887, + [5027] = 4837, + [5028] = 4678, [5029] = 5029, [5030] = 5030, [5031] = 5031, - [5032] = 4535, - [5033] = 5033, + [5032] = 5015, + [5033] = 4639, [5034] = 5034, - [5035] = 5035, - [5036] = 5036, - [5037] = 5037, - [5038] = 5038, + [5035] = 4596, + [5036] = 4600, + [5037] = 4956, + [5038] = 4632, [5039] = 5039, - [5040] = 5040, + [5040] = 4855, [5041] = 5041, [5042] = 5042, - [5043] = 5043, + [5043] = 4617, [5044] = 5044, - [5045] = 5045, - [5046] = 5046, - [5047] = 5047, + [5045] = 4616, + [5046] = 5001, + [5047] = 894, [5048] = 5048, - [5049] = 1582, - [5050] = 1589, - [5051] = 5051, - [5052] = 5052, - [5053] = 5053, + [5049] = 5049, + [5050] = 900, + [5051] = 904, + [5052] = 4946, + [5053] = 820, [5054] = 5054, [5055] = 5055, [5056] = 5056, [5057] = 5057, [5058] = 5058, - [5059] = 5059, + [5059] = 4615, [5060] = 5060, [5061] = 5061, - [5062] = 5062, + [5062] = 4707, [5063] = 5063, [5064] = 5064, [5065] = 5065, [5066] = 5066, - [5067] = 4640, - [5068] = 5068, - [5069] = 4641, - [5070] = 3699, + [5067] = 4713, + [5068] = 778, + [5069] = 5069, + [5070] = 4628, [5071] = 5071, - [5072] = 3685, - [5073] = 5073, + [5072] = 5072, + [5073] = 4877, [5074] = 5074, [5075] = 5075, [5076] = 5076, [5077] = 5077, - [5078] = 4675, - [5079] = 5079, + [5078] = 5078, + [5079] = 5006, [5080] = 5080, - [5081] = 5081, - [5082] = 5082, + [5081] = 4614, + [5082] = 5042, [5083] = 5083, [5084] = 5084, [5085] = 5085, [5086] = 5086, [5087] = 5087, [5088] = 5088, - [5089] = 5089, - [5090] = 5090, + [5089] = 5018, + [5090] = 4603, [5091] = 5091, - [5092] = 5092, - [5093] = 4521, + [5092] = 4720, + [5093] = 5057, [5094] = 5094, [5095] = 5095, [5096] = 5096, [5097] = 5097, - [5098] = 5098, + [5098] = 4602, [5099] = 5099, [5100] = 5100, [5101] = 5101, @@ -9574,338 +9680,338 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5106] = 5106, [5107] = 5107, [5108] = 5108, - [5109] = 5109, + [5109] = 4606, [5110] = 5110, [5111] = 5111, - [5112] = 2659, - [5113] = 2660, + [5112] = 5112, + [5113] = 5113, [5114] = 5114, [5115] = 5115, - [5116] = 5116, - [5117] = 5117, - [5118] = 5118, + [5116] = 4897, + [5117] = 4901, + [5118] = 4909, [5119] = 5119, [5120] = 5120, [5121] = 5121, - [5122] = 5122, + [5122] = 4590, [5123] = 5123, - [5124] = 2640, + [5124] = 5057, [5125] = 5125, - [5126] = 2641, - [5127] = 5127, + [5126] = 4763, + [5127] = 4156, [5128] = 5128, - [5129] = 5123, + [5129] = 5015, [5130] = 5130, - [5131] = 5131, - [5132] = 5132, - [5133] = 5125, - [5134] = 5127, + [5131] = 4586, + [5132] = 4947, + [5133] = 5133, + [5134] = 5134, [5135] = 5135, - [5136] = 5136, + [5136] = 4900, [5137] = 5137, - [5138] = 5138, + [5138] = 4796, [5139] = 5139, - [5140] = 5140, + [5140] = 4899, [5141] = 5141, [5142] = 5142, - [5143] = 5143, + [5143] = 4951, [5144] = 5144, [5145] = 5145, [5146] = 5146, - [5147] = 5128, - [5148] = 5148, - [5149] = 5149, + [5147] = 5147, + [5148] = 4795, + [5149] = 4794, [5150] = 5150, - [5151] = 5151, + [5151] = 4955, [5152] = 5152, [5153] = 5153, - [5154] = 5154, + [5154] = 4624, [5155] = 5155, - [5156] = 5156, + [5156] = 4810, [5157] = 5157, - [5158] = 5158, + [5158] = 4595, [5159] = 5159, - [5160] = 5160, - [5161] = 5161, - [5162] = 5162, - [5163] = 5163, - [5164] = 5164, + [5160] = 4960, + [5161] = 4783, + [5162] = 5057, + [5163] = 4970, + [5164] = 5022, [5165] = 5165, [5166] = 5166, [5167] = 5167, - [5168] = 2651, - [5169] = 5169, + [5168] = 5168, + [5169] = 4817, [5170] = 5170, [5171] = 5171, - [5172] = 5164, - [5173] = 2652, - [5174] = 5174, + [5172] = 5088, + [5173] = 5173, + [5174] = 4571, [5175] = 5175, - [5176] = 5176, - [5177] = 5105, + [5176] = 5034, + [5177] = 5177, [5178] = 5178, - [5179] = 5179, + [5179] = 5130, [5180] = 5180, [5181] = 5181, [5182] = 5182, - [5183] = 5149, - [5184] = 5150, - [5185] = 5185, - [5186] = 2629, - [5187] = 5121, - [5188] = 5107, - [5189] = 5189, - [5190] = 5118, - [5191] = 5132, - [5192] = 1659, - [5193] = 5136, - [5194] = 5194, - [5195] = 2678, - [5196] = 2630, + [5183] = 5105, + [5184] = 4944, + [5185] = 4793, + [5186] = 5186, + [5187] = 5187, + [5188] = 4817, + [5189] = 4973, + [5190] = 4810, + [5191] = 5034, + [5192] = 4789, + [5193] = 5115, + [5194] = 4564, + [5195] = 4709, + [5196] = 5196, [5197] = 5197, [5198] = 5198, - [5199] = 5199, - [5200] = 5200, - [5201] = 5201, - [5202] = 2645, + [5199] = 5142, + [5200] = 4670, + [5201] = 4772, + [5202] = 4626, [5203] = 5203, - [5204] = 5116, - [5205] = 5205, + [5204] = 5022, + [5205] = 5123, [5206] = 5206, - [5207] = 5207, - [5208] = 5142, - [5209] = 5209, - [5210] = 5206, - [5211] = 5197, - [5212] = 5212, - [5213] = 5213, - [5214] = 1660, - [5215] = 5215, - [5216] = 5216, - [5217] = 5108, + [5207] = 4760, + [5208] = 5208, + [5209] = 5015, + [5210] = 5097, + [5211] = 4711, + [5212] = 4697, + [5213] = 4693, + [5214] = 5214, + [5215] = 5076, + [5216] = 5072, + [5217] = 5112, [5218] = 5218, - [5219] = 2674, - [5220] = 5220, - [5221] = 5221, - [5222] = 2620, - [5223] = 2675, - [5224] = 5121, - [5225] = 5103, - [5226] = 5132, - [5227] = 5136, - [5228] = 5185, - [5229] = 5220, + [5219] = 5219, + [5220] = 5064, + [5221] = 5113, + [5222] = 5061, + [5223] = 4562, + [5224] = 5104, + [5225] = 5225, + [5226] = 4568, + [5227] = 5227, + [5228] = 5214, + [5229] = 4946, [5230] = 5230, [5231] = 5231, - [5232] = 5103, - [5233] = 5233, - [5234] = 5234, - [5235] = 5230, - [5236] = 5231, - [5237] = 2623, - [5238] = 5238, - [5239] = 5239, - [5240] = 2624, + [5232] = 5232, + [5233] = 4987, + [5234] = 4995, + [5235] = 4686, + [5236] = 5236, + [5237] = 5060, + [5238] = 4680, + [5239] = 5111, + [5240] = 5240, [5241] = 5241, - [5242] = 5242, - [5243] = 5169, + [5242] = 4706, + [5243] = 5243, [5244] = 5244, [5245] = 5245, - [5246] = 5246, - [5247] = 5150, - [5248] = 5121, - [5249] = 2649, - [5250] = 5154, - [5251] = 5251, - [5252] = 3790, - [5253] = 5104, - [5254] = 3841, - [5255] = 5255, - [5256] = 2650, - [5257] = 3781, + [5246] = 4705, + [5247] = 4704, + [5248] = 4672, + [5249] = 5057, + [5250] = 5250, + [5251] = 4676, + [5252] = 4638, + [5253] = 5208, + [5254] = 5254, + [5255] = 4755, + [5256] = 5256, + [5257] = 5257, [5258] = 5258, - [5259] = 5259, - [5260] = 5260, - [5261] = 5261, - [5262] = 5262, - [5263] = 5128, - [5264] = 2635, - [5265] = 5265, + [5259] = 4569, + [5260] = 3993, + [5261] = 4755, + [5262] = 4734, + [5263] = 5263, + [5264] = 5015, + [5265] = 4941, [5266] = 5266, - [5267] = 5149, - [5268] = 5157, - [5269] = 5109, - [5270] = 5156, - [5271] = 5150, - [5272] = 5272, - [5273] = 5238, + [5267] = 4937, + [5268] = 5268, + [5269] = 5269, + [5270] = 5270, + [5271] = 5271, + [5272] = 5106, + [5273] = 5273, [5274] = 5274, [5275] = 5275, - [5276] = 5157, + [5276] = 5276, [5277] = 5277, [5278] = 5278, [5279] = 5279, [5280] = 5280, - [5281] = 5281, + [5281] = 5275, [5282] = 5282, - [5283] = 5122, - [5284] = 5220, + [5283] = 5283, + [5284] = 5284, [5285] = 5285, - [5286] = 5215, + [5286] = 5284, [5287] = 5287, - [5288] = 5288, + [5288] = 4732, [5289] = 5289, [5290] = 5290, - [5291] = 5291, - [5292] = 5120, - [5293] = 5230, + [5291] = 5284, + [5292] = 5279, + [5293] = 5293, [5294] = 5294, - [5295] = 5290, - [5296] = 5119, - [5297] = 5220, - [5298] = 5231, + [5295] = 5293, + [5296] = 5277, + [5297] = 5277, + [5298] = 5298, [5299] = 5299, - [5300] = 5300, - [5301] = 5301, - [5302] = 3797, + [5300] = 5274, + [5301] = 5275, + [5302] = 5302, [5303] = 5303, [5304] = 5304, - [5305] = 5239, - [5306] = 5306, - [5307] = 2646, - [5308] = 5308, - [5309] = 5145, - [5310] = 2648, - [5311] = 5146, - [5312] = 5103, - [5313] = 5150, - [5314] = 5287, - [5315] = 5132, - [5316] = 5135, - [5317] = 5317, - [5318] = 5230, - [5319] = 5111, - [5320] = 5120, - [5321] = 5130, - [5322] = 5140, - [5323] = 5152, - [5324] = 5132, - [5325] = 5325, + [5305] = 5282, + [5306] = 5294, + [5307] = 5277, + [5308] = 5293, + [5309] = 5283, + [5310] = 5310, + [5311] = 5310, + [5312] = 5312, + [5313] = 5279, + [5314] = 3993, + [5315] = 5289, + [5316] = 5289, + [5317] = 5284, + [5318] = 5318, + [5319] = 5282, + [5320] = 5275, + [5321] = 5280, + [5322] = 5322, + [5323] = 5323, + [5324] = 5324, + [5325] = 5277, [5326] = 5326, - [5327] = 5231, - [5328] = 5328, - [5329] = 5167, + [5327] = 5327, + [5328] = 5287, + [5329] = 5282, [5330] = 5330, - [5331] = 5331, - [5332] = 5332, - [5333] = 5199, + [5331] = 5275, + [5332] = 5303, + [5333] = 5302, [5334] = 5334, [5335] = 5335, - [5336] = 5128, - [5337] = 5337, - [5338] = 5148, - [5339] = 5149, + [5336] = 5298, + [5337] = 5274, + [5338] = 5284, + [5339] = 5339, [5340] = 5340, - [5341] = 5157, - [5342] = 5155, + [5341] = 5330, + [5342] = 5342, [5343] = 5343, - [5344] = 5294, - [5345] = 5121, - [5346] = 5153, + [5344] = 5282, + [5345] = 5345, + [5346] = 5299, [5347] = 5347, - [5348] = 5175, + [5348] = 5293, [5349] = 5349, - [5350] = 5350, - [5351] = 5182, - [5352] = 5118, - [5353] = 5132, - [5354] = 5354, - [5355] = 5142, - [5356] = 5194, - [5357] = 5220, - [5358] = 5358, - [5359] = 5103, - [5360] = 5203, - [5361] = 5230, - [5362] = 5258, - [5363] = 5136, - [5364] = 5231, - [5365] = 5136, - [5366] = 5128, - [5367] = 5262, - [5368] = 5245, - [5369] = 5265, - [5370] = 5358, - [5371] = 5150, - [5372] = 5266, - [5373] = 5178, - [5374] = 5374, + [5350] = 5274, + [5351] = 5298, + [5352] = 5274, + [5353] = 5298, + [5354] = 5279, + [5355] = 5355, + [5356] = 5298, + [5357] = 5293, + [5358] = 5279, + [5359] = 5289, + [5360] = 5304, + [5361] = 5284, + [5362] = 5342, + [5363] = 5363, + [5364] = 4773, + [5365] = 5365, + [5366] = 5304, + [5367] = 5283, + [5368] = 5298, + [5369] = 5369, + [5370] = 5274, + [5371] = 5371, + [5372] = 5283, + [5373] = 5275, + [5374] = 5282, [5375] = 5375, - [5376] = 5149, - [5377] = 5150, - [5378] = 5378, - [5379] = 5157, + [5376] = 5293, + [5377] = 5304, + [5378] = 5284, + [5379] = 5283, [5380] = 5380, [5381] = 5381, - [5382] = 5242, + [5382] = 5382, [5383] = 5383, - [5384] = 5384, - [5385] = 5170, - [5386] = 5148, - [5387] = 5260, - [5388] = 5121, - [5389] = 5205, - [5390] = 5242, + [5384] = 5304, + [5385] = 5277, + [5386] = 5386, + [5387] = 5304, + [5388] = 5388, + [5389] = 5389, + [5390] = 5283, [5391] = 5391, [5392] = 5392, - [5393] = 5393, - [5394] = 5394, - [5395] = 2653, - [5396] = 5396, - [5397] = 5198, + [5393] = 5298, + [5394] = 5274, + [5395] = 5275, + [5396] = 5282, + [5397] = 5277, [5398] = 5398, - [5399] = 5139, - [5400] = 2657, - [5401] = 5137, + [5399] = 5289, + [5400] = 5318, + [5401] = 5401, [5402] = 5402, - [5403] = 5144, - [5404] = 5404, - [5405] = 5160, + [5403] = 5403, + [5404] = 5290, + [5405] = 5405, [5406] = 5406, - [5407] = 5200, + [5407] = 5283, [5408] = 5408, - [5409] = 5409, + [5409] = 5304, [5410] = 5410, [5411] = 5411, [5412] = 5412, [5413] = 5413, [5414] = 5414, [5415] = 5415, - [5416] = 5216, + [5416] = 5416, [5417] = 5417, - [5418] = 5392, - [5419] = 5218, + [5418] = 5418, + [5419] = 5419, [5420] = 5420, - [5421] = 5221, + [5421] = 5421, [5422] = 5422, - [5423] = 5136, - [5424] = 5277, + [5423] = 5423, + [5424] = 5424, [5425] = 5425, - [5426] = 5410, - [5427] = 5332, + [5426] = 5426, + [5427] = 5427, [5428] = 5428, - [5429] = 5121, - [5430] = 1691, - [5431] = 5287, - [5432] = 5132, - [5433] = 5200, - [5434] = 5358, - [5435] = 5136, - [5436] = 5244, - [5437] = 5245, + [5429] = 5429, + [5430] = 5430, + [5431] = 5431, + [5432] = 5432, + [5433] = 5433, + [5434] = 5434, + [5435] = 5435, + [5436] = 5436, + [5437] = 5437, [5438] = 5438, - [5439] = 5278, - [5440] = 5440, + [5439] = 5439, + [5440] = 3993, [5441] = 5441, [5442] = 5442, [5443] = 5443, @@ -9914,387 +10020,2031 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5446] = 5446, [5447] = 5447, [5448] = 5448, - [5449] = 5446, + [5449] = 5449, [5450] = 5450, [5451] = 5451, [5452] = 5452, [5453] = 5453, [5454] = 5454, - [5455] = 5455, + [5455] = 5411, [5456] = 5456, [5457] = 5457, [5458] = 5458, [5459] = 5459, [5460] = 5460, [5461] = 5461, - [5462] = 5462, + [5462] = 4134, [5463] = 5463, [5464] = 5464, [5465] = 5465, - [5466] = 5441, + [5466] = 5466, [5467] = 5467, [5468] = 5468, - [5469] = 5462, + [5469] = 5469, [5470] = 5470, [5471] = 5471, [5472] = 5472, [5473] = 5473, - [5474] = 5472, + [5474] = 5474, [5475] = 5475, - [5476] = 5468, + [5476] = 5476, [5477] = 5477, [5478] = 5478, [5479] = 5479, [5480] = 5480, - [5481] = 5479, + [5481] = 5481, [5482] = 5482, - [5483] = 5468, - [5484] = 5448, + [5483] = 5483, + [5484] = 5484, [5485] = 5485, [5486] = 5486, [5487] = 5487, - [5488] = 5457, - [5489] = 5448, + [5488] = 5488, + [5489] = 5489, [5490] = 5490, [5491] = 5491, [5492] = 5492, [5493] = 5493, [5494] = 5494, [5495] = 5495, - [5496] = 5452, + [5496] = 5496, [5497] = 5497, - [5498] = 5453, + [5498] = 5498, [5499] = 5499, [5500] = 5500, - [5501] = 5454, - [5502] = 5450, - [5503] = 5451, + [5501] = 5501, + [5502] = 5502, + [5503] = 5503, [5504] = 5504, - [5505] = 5453, - [5506] = 5454, - [5507] = 5455, + [5505] = 5505, + [5506] = 5506, + [5507] = 5507, [5508] = 5508, - [5509] = 5463, + [5509] = 5509, [5510] = 5510, [5511] = 5511, - [5512] = 5471, - [5513] = 5485, + [5512] = 5512, + [5513] = 5513, [5514] = 5514, - [5515] = 5463, + [5515] = 5515, [5516] = 5516, - [5517] = 5457, - [5518] = 5468, - [5519] = 5495, + [5517] = 5517, + [5518] = 5518, + [5519] = 5519, [5520] = 5520, - [5521] = 5510, - [5522] = 5491, - [5523] = 5495, + [5521] = 5521, + [5522] = 5522, + [5523] = 5523, [5524] = 5524, - [5525] = 5480, + [5525] = 5525, [5526] = 5526, - [5527] = 5455, - [5528] = 5450, - [5529] = 5451, - [5530] = 5456, - [5531] = 5444, - [5532] = 5482, + [5527] = 5527, + [5528] = 5528, + [5529] = 5529, + [5530] = 5530, + [5531] = 5531, + [5532] = 5532, [5533] = 5533, - [5534] = 5453, - [5535] = 5454, - [5536] = 5446, - [5537] = 5455, - [5538] = 5462, + [5534] = 5534, + [5535] = 5535, + [5536] = 5536, + [5537] = 5537, + [5538] = 5538, [5539] = 5539, - [5540] = 5465, + [5540] = 5446, [5541] = 5541, - [5542] = 5443, - [5543] = 5494, - [5544] = 5441, + [5542] = 5542, + [5543] = 5543, + [5544] = 5544, [5545] = 5545, - [5546] = 5467, - [5547] = 5450, - [5548] = 5450, - [5549] = 5472, + [5546] = 5546, + [5547] = 5547, + [5548] = 5548, + [5549] = 5549, [5550] = 5550, [5551] = 5551, - [5552] = 5451, - [5553] = 5468, - [5554] = 5470, + [5552] = 5552, + [5553] = 5553, + [5554] = 5554, [5555] = 5555, - [5556] = 5485, - [5557] = 5504, + [5556] = 5556, + [5557] = 5557, [5558] = 5558, [5559] = 5559, - [5560] = 5473, - [5561] = 5514, - [5562] = 5456, - [5563] = 5463, + [5560] = 5560, + [5561] = 5561, + [5562] = 5562, + [5563] = 5563, [5564] = 5564, - [5565] = 5495, - [5566] = 5465, - [5567] = 5472, - [5568] = 5467, + [5565] = 5565, + [5566] = 5566, + [5567] = 5567, + [5568] = 5568, [5569] = 5569, - [5570] = 5504, - [5571] = 5516, - [5572] = 5453, - [5573] = 5550, - [5574] = 5454, - [5575] = 5455, - [5576] = 5479, - [5577] = 5539, + [5570] = 5570, + [5571] = 5571, + [5572] = 5572, + [5573] = 5573, + [5574] = 4089, + [5575] = 5575, + [5576] = 5576, + [5577] = 5577, [5578] = 5578, - [5579] = 5524, - [5580] = 5494, - [5581] = 5508, - [5582] = 5462, - [5583] = 5545, - [5584] = 5463, - [5585] = 5452, + [5579] = 5579, + [5580] = 5580, + [5581] = 5581, + [5582] = 5582, + [5583] = 5583, + [5584] = 5584, + [5585] = 5585, [5586] = 5586, [5587] = 5587, [5588] = 5588, - [5589] = 5539, + [5589] = 5589, [5590] = 5590, - [5591] = 5479, - [5592] = 5586, - [5593] = 5457, + [5591] = 5591, + [5592] = 5592, + [5593] = 5593, [5594] = 5594, [5595] = 5595, [5596] = 5596, - [5597] = 5533, - [5598] = 5569, - [5599] = 5539, + [5597] = 5597, + [5598] = 5598, + [5599] = 5599, [5600] = 5600, [5601] = 5601, [5602] = 5602, - [5603] = 5451, - [5604] = 5595, - [5605] = 5473, + [5603] = 5603, + [5604] = 5604, + [5605] = 5605, [5606] = 5606, - [5607] = 5454, - [5608] = 5606, - [5609] = 5448, - [5610] = 5516, + [5607] = 5607, + [5608] = 5608, + [5609] = 5609, + [5610] = 5610, [5611] = 5611, [5612] = 5612, - [5613] = 5613, - [5614] = 5495, - [5615] = 5600, - [5616] = 5457, - [5617] = 5611, - [5618] = 5495, + [5613] = 5508, + [5614] = 5614, + [5615] = 5615, + [5616] = 5616, + [5617] = 5617, + [5618] = 5618, [5619] = 5619, [5620] = 5620, - [5621] = 5539, + [5621] = 5621, [5622] = 5622, [5623] = 5623, [5624] = 5624, - [5625] = 5478, - [5626] = 5470, - [5627] = 5453, - [5628] = 5492, - [5629] = 5451, - [5630] = 5470, - [5631] = 5471, - [5632] = 5508, - [5633] = 5555, - [5634] = 5444, - [5635] = 5446, - [5636] = 5602, - [5637] = 5444, + [5625] = 5625, + [5626] = 5626, + [5627] = 5627, + [5628] = 5628, + [5629] = 5629, + [5630] = 5630, + [5631] = 5631, + [5632] = 5632, + [5633] = 5633, + [5634] = 5634, + [5635] = 5635, + [5636] = 5636, + [5637] = 5637, [5638] = 5638, - [5639] = 5472, - [5640] = 5441, - [5641] = 5446, - [5642] = 5454, - [5643] = 5479, - [5644] = 5611, - [5645] = 5497, + [5639] = 5639, + [5640] = 5640, + [5641] = 5641, + [5642] = 5642, + [5643] = 5643, + [5644] = 5644, + [5645] = 5645, [5646] = 5646, [5647] = 5647, - [5648] = 5569, + [5648] = 5648, [5649] = 5649, [5650] = 5650, - [5651] = 5494, - [5652] = 5587, - [5653] = 5472, - [5654] = 5510, - [5655] = 5559, - [5656] = 5482, - [5657] = 5444, - [5658] = 5455, + [5651] = 5651, + [5652] = 5652, + [5653] = 5653, + [5654] = 5654, + [5655] = 5655, + [5656] = 5656, + [5657] = 5657, + [5658] = 5658, [5659] = 5659, - [5660] = 5470, - [5661] = 5455, - [5662] = 5477, - [5663] = 5545, - [5664] = 5444, - [5665] = 5473, + [5660] = 5660, + [5661] = 5661, + [5662] = 5662, + [5663] = 5663, + [5664] = 5664, + [5665] = 5665, [5666] = 5666, - [5667] = 5587, - [5668] = 5446, - [5669] = 5524, - [5670] = 5485, + [5667] = 5667, + [5668] = 5668, + [5669] = 5669, + [5670] = 5670, [5671] = 5671, - [5672] = 5452, - [5673] = 5457, + [5672] = 5672, + [5673] = 5673, [5674] = 5674, - [5675] = 5441, - [5676] = 5611, - [5677] = 5586, - [5678] = 5472, - [5679] = 5649, - [5680] = 5569, - [5681] = 5450, - [5682] = 5451, + [5675] = 5675, + [5676] = 5676, + [5677] = 5677, + [5678] = 5678, + [5679] = 5679, + [5680] = 5680, + [5681] = 5681, + [5682] = 5682, [5683] = 5683, [5684] = 5684, - [5685] = 5453, - [5686] = 5454, + [5685] = 5685, + [5686] = 4732, [5687] = 5687, - [5688] = 5455, - [5689] = 5514, - [5690] = 5450, - [5691] = 5514, - [5692] = 5451, - [5693] = 5456, + [5688] = 5688, + [5689] = 5689, + [5690] = 5690, + [5691] = 5691, + [5692] = 5692, + [5693] = 5693, [5694] = 5694, - [5695] = 5595, - [5696] = 5465, - [5697] = 5453, - [5698] = 5467, - [5699] = 5456, - [5700] = 5454, - [5701] = 5455, - [5702] = 5465, - [5703] = 5467, - [5704] = 5504, - [5705] = 5485, - [5706] = 5463, - [5707] = 5444, - [5708] = 5495, + [5695] = 5695, + [5696] = 5696, + [5697] = 5697, + [5698] = 5698, + [5699] = 5699, + [5700] = 5700, + [5701] = 5701, + [5702] = 5702, + [5703] = 5703, + [5704] = 5704, + [5705] = 5705, + [5706] = 5706, + [5707] = 5707, + [5708] = 5708, [5709] = 5709, - [5710] = 5448, - [5711] = 5516, - [5712] = 5524, - [5713] = 5504, - [5714] = 5586, - [5715] = 5539, - [5716] = 5595, - [5717] = 5516, - [5718] = 5606, - [5719] = 5524, - [5720] = 5586, - [5721] = 5595, - [5722] = 5606, + [5710] = 5710, + [5711] = 5711, + [5712] = 5712, + [5713] = 5713, + [5714] = 5714, + [5715] = 5715, + [5716] = 5716, + [5717] = 5717, + [5718] = 4040, + [5719] = 5719, + [5720] = 5720, + [5721] = 5721, + [5722] = 5722, [5723] = 5723, - [5724] = 5494, - [5725] = 5611, + [5724] = 5724, + [5725] = 5725, [5726] = 5726, [5727] = 5727, - [5728] = 5463, - [5729] = 5499, - [5730] = 5450, - [5731] = 5569, - [5732] = 5606, - [5733] = 5451, - [5734] = 5620, - [5735] = 5470, - [5736] = 5452, - [5737] = 5491, - [5738] = 5453, - [5739] = 5463, - [5740] = 5454, - [5741] = 5455, - [5742] = 5569, + [5728] = 5728, + [5729] = 5729, + [5730] = 5571, + [5731] = 5731, + [5732] = 5732, + [5733] = 5733, + [5734] = 5734, + [5735] = 5452, + [5736] = 5736, + [5737] = 5454, + [5738] = 5738, + [5739] = 5739, + [5740] = 5463, + [5741] = 5741, + [5742] = 5742, [5743] = 5743, - [5744] = 5611, + [5744] = 5744, [5745] = 5745, - [5746] = 5588, - [5747] = 5747, - [5748] = 5494, + [5746] = 5000, + [5747] = 5472, + [5748] = 5748, [5749] = 5749, - [5750] = 5463, - [5751] = 5590, - [5752] = 5620, - [5753] = 5623, - [5754] = 5526, - [5755] = 5463, - [5756] = 5624, - [5757] = 5709, - [5758] = 5620, + [5750] = 5750, + [5751] = 5751, + [5752] = 5752, + [5753] = 5753, + [5754] = 5752, + [5755] = 5472, + [5756] = 5749, + [5757] = 5753, + [5758] = 5758, [5759] = 5759, [5760] = 5760, - [5761] = 5478, - [5762] = 5447, - [5763] = 5763, - [5764] = 5578, - [5765] = 5470, - [5766] = 5508, - [5767] = 5590, - [5768] = 5492, - [5769] = 5611, - [5770] = 5497, - [5771] = 5623, - [5772] = 5491, - [5773] = 5510, - [5774] = 5446, - [5775] = 5514, - [5776] = 5482, - [5777] = 5470, - [5778] = 5590, - [5779] = 5545, - [5780] = 5471, - [5781] = 5587, - [5782] = 5590, - [5783] = 5479, + [5761] = 5761, + [5762] = 4773, + [5763] = 5516, + [5764] = 5532, + [5765] = 5765, + [5766] = 4736, + [5767] = 5598, + [5768] = 5768, + [5769] = 5769, + [5770] = 5748, + [5771] = 5771, + [5772] = 5772, + [5773] = 5773, + [5774] = 5774, + [5775] = 5775, + [5776] = 5776, + [5777] = 5777, + [5778] = 5778, + [5779] = 5779, + [5780] = 5780, + [5781] = 5781, + [5782] = 5604, + [5783] = 5783, [5784] = 5784, - [5785] = 5470, - [5786] = 5786, - [5787] = 5452, - [5788] = 5624, - [5789] = 5470, - [5790] = 5478, - [5791] = 5475, - [5792] = 5492, - [5793] = 5497, - [5794] = 5453, + [5785] = 5785, + [5786] = 5508, + [5787] = 5787, + [5788] = 5788, + [5789] = 5789, + [5790] = 5790, + [5791] = 5703, + [5792] = 5623, + [5793] = 5711, + [5794] = 5794, [5795] = 5795, - [5796] = 5510, - [5797] = 5482, - [5798] = 5545, - [5799] = 5587, - [5800] = 5493, - [5801] = 5784, - [5802] = 5450, - [5803] = 5450, - [5804] = 5590, - [5805] = 5479, - [5806] = 5623, - [5807] = 5539, - [5808] = 5620, - [5809] = 5671, - [5810] = 5810, - [5811] = 5508, - [5812] = 5473, - [5813] = 5558, - [5814] = 5511, - [5815] = 5486, - [5816] = 5471, - [5817] = 5624, - [5818] = 5647, - [5819] = 5596, - [5820] = 5623, - [5821] = 5624, - [5822] = 5478, - [5823] = 5451, - [5824] = 5824, - [5825] = 5590, - [5826] = 5638, - [5827] = 5492, - [5828] = 5497, - [5829] = 5457, + [5796] = 5630, + [5797] = 5631, + [5798] = 5798, + [5799] = 5799, + [5800] = 5800, + [5801] = 5801, + [5802] = 5802, + [5803] = 5803, + [5804] = 5804, + [5805] = 5083, + [5806] = 5806, + [5807] = 5807, + [5808] = 5741, + [5809] = 5809, + [5810] = 5742, + [5811] = 5811, + [5812] = 5743, + [5813] = 5813, + [5814] = 5745, + [5815] = 5815, + [5816] = 5816, + [5817] = 5817, + [5818] = 5818, + [5819] = 5819, + [5820] = 5631, + [5821] = 5630, + [5822] = 5822, + [5823] = 5823, + [5824] = 5748, + [5825] = 5825, + [5826] = 5826, + [5827] = 5628, + [5828] = 5828, + [5829] = 5749, + [5830] = 5830, + [5831] = 5831, + [5832] = 5832, + [5833] = 5833, + [5834] = 5834, + [5835] = 5835, + [5836] = 5836, + [5837] = 5837, + [5838] = 5838, + [5839] = 5839, + [5840] = 5840, + [5841] = 5841, + [5842] = 5842, + [5843] = 5843, + [5844] = 5844, + [5845] = 5845, + [5846] = 5846, + [5847] = 5847, + [5848] = 5848, + [5849] = 5626, + [5850] = 5850, + [5851] = 5851, + [5852] = 5852, + [5853] = 5853, + [5854] = 5854, + [5855] = 5855, + [5856] = 5856, + [5857] = 5857, + [5858] = 5858, + [5859] = 5859, + [5860] = 5860, + [5861] = 5861, + [5862] = 5862, + [5863] = 5863, + [5864] = 5864, + [5865] = 5865, + [5866] = 5866, + [5867] = 5867, + [5868] = 5868, + [5869] = 5869, + [5870] = 5870, + [5871] = 5623, + [5872] = 5872, + [5873] = 5873, + [5874] = 5874, + [5875] = 5875, + [5876] = 5876, + [5877] = 5877, + [5878] = 5508, + [5879] = 5879, + [5880] = 5880, + [5881] = 5881, + [5882] = 5882, + [5883] = 5604, + [5884] = 5884, + [5885] = 5885, + [5886] = 5886, + [5887] = 5887, + [5888] = 5888, + [5889] = 5889, + [5890] = 5890, + [5891] = 5891, + [5892] = 5584, + [5893] = 5582, + [5894] = 5894, + [5895] = 5598, + [5896] = 5896, + [5897] = 5897, + [5898] = 5898, + [5899] = 5899, + [5900] = 5900, + [5901] = 5532, + [5902] = 5902, + [5903] = 5530, + [5904] = 5518, + [5905] = 5516, + [5906] = 5906, + [5907] = 5907, + [5908] = 5908, + [5909] = 5909, + [5910] = 5472, + [5911] = 5911, + [5912] = 5508, + [5913] = 5913, + [5914] = 5914, + [5915] = 5915, + [5916] = 5916, + [5917] = 5917, + [5918] = 5918, + [5919] = 5919, + [5920] = 5920, + [5921] = 5476, + [5922] = 5922, + [5923] = 5923, + [5924] = 5585, + [5925] = 5925, + [5926] = 5473, + [5927] = 5927, + [5928] = 753, + [5929] = 5604, + [5930] = 5930, + [5931] = 5472, + [5932] = 5932, + [5933] = 5508, + [5934] = 5934, + [5935] = 5935, + [5936] = 5936, + [5937] = 5937, + [5938] = 5938, + [5939] = 5623, + [5940] = 5940, + [5941] = 5941, + [5942] = 5942, + [5943] = 5630, + [5944] = 5631, + [5945] = 5945, + [5946] = 5946, + [5947] = 5947, + [5948] = 5948, + [5949] = 3986, + [5950] = 5950, + [5951] = 5474, + [5952] = 5952, + [5953] = 5953, + [5954] = 5954, + [5955] = 5955, + [5956] = 5956, + [5957] = 5472, + [5958] = 5958, + [5959] = 5959, + [5960] = 5960, + [5961] = 5961, + [5962] = 5748, + [5963] = 5470, + [5964] = 5964, + [5965] = 5965, + [5966] = 5966, + [5967] = 5749, + [5968] = 5968, + [5969] = 5969, + [5970] = 5970, + [5971] = 5971, + [5972] = 5435, + [5973] = 5434, + [5974] = 5974, + [5975] = 5975, + [5976] = 5976, + [5977] = 5977, + [5978] = 5415, + [5979] = 5979, + [5980] = 5980, + [5981] = 5981, + [5982] = 5749, + [5983] = 5631, + [5984] = 5630, + [5985] = 5985, + [5986] = 5749, + [5987] = 5631, + [5988] = 5630, + [5989] = 5623, + [5990] = 5990, + [5991] = 1614, + [5992] = 1607, + [5993] = 5749, + [5994] = 5748, + [5995] = 5745, + [5996] = 5743, + [5997] = 5742, + [5998] = 5741, + [5999] = 5631, + [6000] = 5630, + [6001] = 5623, + [6002] = 5469, + [6003] = 6003, + [6004] = 5508, + [6005] = 5468, + [6006] = 5604, + [6007] = 5422, + [6008] = 5467, + [6009] = 5466, + [6010] = 5678, + [6011] = 5683, + [6012] = 5454, + [6013] = 5465, + [6014] = 5452, + [6015] = 6015, + [6016] = 6016, + [6017] = 5451, + [6018] = 6018, + [6019] = 5463, + [6020] = 6020, + [6021] = 5472, + [6022] = 6022, + [6023] = 6023, + [6024] = 6024, + [6025] = 6025, + [6026] = 6026, + [6027] = 6027, + [6028] = 6028, + [6029] = 6029, + [6030] = 6030, + [6031] = 6031, + [6032] = 6032, + [6033] = 6033, + [6034] = 6034, + [6035] = 6035, + [6036] = 6036, + [6037] = 6037, + [6038] = 2745, + [6039] = 6039, + [6040] = 6040, + [6041] = 6041, + [6042] = 6042, + [6043] = 6043, + [6044] = 2744, + [6045] = 6045, + [6046] = 6046, + [6047] = 6047, + [6048] = 6048, + [6049] = 6049, + [6050] = 6050, + [6051] = 6051, + [6052] = 6052, + [6053] = 6053, + [6054] = 6054, + [6055] = 2741, + [6056] = 6056, + [6057] = 6057, + [6058] = 6058, + [6059] = 6059, + [6060] = 2740, + [6061] = 6061, + [6062] = 6062, + [6063] = 6063, + [6064] = 6064, + [6065] = 6065, + [6066] = 6066, + [6067] = 6067, + [6068] = 6068, + [6069] = 2739, + [6070] = 6070, + [6071] = 2738, + [6072] = 6072, + [6073] = 6073, + [6074] = 6074, + [6075] = 2737, + [6076] = 6076, + [6077] = 6077, + [6078] = 6078, + [6079] = 2792, + [6080] = 6080, + [6081] = 6081, + [6082] = 6082, + [6083] = 2791, + [6084] = 6084, + [6085] = 6085, + [6086] = 6086, + [6087] = 6087, + [6088] = 6088, + [6089] = 6089, + [6090] = 6090, + [6091] = 6091, + [6092] = 6092, + [6093] = 2736, + [6094] = 6094, + [6095] = 6095, + [6096] = 6096, + [6097] = 6097, + [6098] = 6098, + [6099] = 6099, + [6100] = 6100, + [6101] = 6101, + [6102] = 6048, + [6103] = 6103, + [6104] = 6104, + [6105] = 6105, + [6106] = 6106, + [6107] = 6107, + [6108] = 6036, + [6109] = 6051, + [6110] = 6110, + [6111] = 6056, + [6112] = 6112, + [6113] = 6074, + [6114] = 6076, + [6115] = 6077, + [6116] = 6086, + [6117] = 6088, + [6118] = 6097, + [6119] = 6110, + [6120] = 6120, + [6121] = 6120, + [6122] = 6122, + [6123] = 6123, + [6124] = 2735, + [6125] = 6125, + [6126] = 6122, + [6127] = 2859, + [6128] = 6128, + [6129] = 2734, + [6130] = 6130, + [6131] = 2733, + [6132] = 2732, + [6133] = 6133, + [6134] = 2834, + [6135] = 2824, + [6136] = 2768, + [6137] = 6137, + [6138] = 2742, + [6139] = 6139, + [6140] = 2767, + [6141] = 6141, + [6142] = 6142, + [6143] = 6143, + [6144] = 2731, + [6145] = 6145, + [6146] = 6146, + [6147] = 2730, + [6148] = 6148, + [6149] = 2816, + [6150] = 6123, + [6151] = 6151, + [6152] = 6152, + [6153] = 6153, + [6154] = 2729, + [6155] = 6155, + [6156] = 2728, + [6157] = 6157, + [6158] = 2727, + [6159] = 2726, + [6160] = 2725, + [6161] = 2724, + [6162] = 2723, + [6163] = 6163, + [6164] = 6164, + [6165] = 6165, + [6166] = 6166, + [6167] = 6167, + [6168] = 2722, + [6169] = 6169, + [6170] = 2935, + [6171] = 6171, + [6172] = 2930, + [6173] = 6173, + [6174] = 2926, + [6175] = 6175, + [6176] = 2717, + [6177] = 6177, + [6178] = 6178, + [6179] = 6179, + [6180] = 6087, + [6181] = 6181, + [6182] = 2919, + [6183] = 2721, + [6184] = 6184, + [6185] = 6185, + [6186] = 6186, + [6187] = 6187, + [6188] = 6188, + [6189] = 6189, + [6190] = 6190, + [6191] = 2718, + [6192] = 6192, + [6193] = 6193, + [6194] = 6194, + [6195] = 6195, + [6196] = 2716, + [6197] = 2715, + [6198] = 6198, + [6199] = 6199, + [6200] = 6200, + [6201] = 6201, + [6202] = 6202, + [6203] = 6087, + [6204] = 6112, + [6205] = 6205, + [6206] = 6206, + [6207] = 6207, + [6208] = 2714, + [6209] = 6209, + [6210] = 2713, + [6211] = 6125, + [6212] = 6130, + [6213] = 6213, + [6214] = 6214, + [6215] = 6025, + [6216] = 6216, + [6217] = 2912, + [6218] = 6218, + [6219] = 6030, + [6220] = 6220, + [6221] = 2712, + [6222] = 6034, + [6223] = 6223, + [6224] = 2911, + [6225] = 2907, + [6226] = 6226, + [6227] = 6227, + [6228] = 6228, + [6229] = 6229, + [6230] = 6230, + [6231] = 6231, + [6232] = 2711, + [6233] = 6233, + [6234] = 6234, + [6235] = 6137, + [6236] = 2710, + [6237] = 6067, + [6238] = 2893, + [6239] = 6239, + [6240] = 6141, + [6241] = 2709, + [6242] = 6107, + [6243] = 6142, + [6244] = 2708, + [6245] = 6143, + [6246] = 2892, + [6247] = 2888, + [6248] = 6146, + [6249] = 6249, + [6250] = 2885, + [6251] = 6094, + [6252] = 6252, + [6253] = 6148, + [6254] = 6201, + [6255] = 2879, + [6256] = 6256, + [6257] = 2790, + [6258] = 6258, + [6259] = 2922, + [6260] = 6260, + [6261] = 6087, + [6262] = 6256, + [6263] = 6263, + [6264] = 2876, + [6265] = 6265, + [6266] = 2874, + [6267] = 6267, + [6268] = 6059, + [6269] = 2873, + [6270] = 2872, + [6271] = 6271, + [6272] = 6272, + [6273] = 6084, + [6274] = 2871, + [6275] = 6275, + [6276] = 6276, + [6277] = 6277, + [6278] = 6082, + [6279] = 6080, + [6280] = 6280, + [6281] = 6078, + [6282] = 2870, + [6283] = 6283, + [6284] = 2869, + [6285] = 6285, + [6286] = 6286, + [6287] = 6151, + [6288] = 6288, + [6289] = 6289, + [6290] = 2868, + [6291] = 2789, + [6292] = 6292, + [6293] = 2866, + [6294] = 2864, + [6295] = 6295, + [6296] = 6066, + [6297] = 2861, + [6298] = 6065, + [6299] = 6299, + [6300] = 6300, + [6301] = 6301, + [6302] = 6059, + [6303] = 6063, + [6304] = 6304, + [6305] = 6152, + [6306] = 6306, + [6307] = 6307, + [6308] = 6308, + [6309] = 6309, + [6310] = 2860, + [6311] = 6311, + [6312] = 6312, + [6313] = 6313, + [6314] = 6314, + [6315] = 6315, + [6316] = 6316, + [6317] = 6317, + [6318] = 6318, + [6319] = 6319, + [6320] = 6320, + [6321] = 6321, + [6322] = 6153, + [6323] = 6323, + [6324] = 6050, + [6325] = 2856, + [6326] = 6049, + [6327] = 1818, + [6328] = 6328, + [6329] = 6329, + [6330] = 6309, + [6331] = 6331, + [6332] = 2840, + [6333] = 2835, + [6334] = 2828, + [6335] = 6200, + [6336] = 6312, + [6337] = 2827, + [6338] = 6338, + [6339] = 2894, + [6340] = 1810, + [6341] = 6341, + [6342] = 6342, + [6343] = 6155, + [6344] = 6344, + [6345] = 6345, + [6346] = 6346, + [6347] = 2857, + [6348] = 1714, + [6349] = 2702, + [6350] = 6350, + [6351] = 2701, + [6352] = 2850, + [6353] = 6353, + [6354] = 6354, + [6355] = 6355, + [6356] = 6356, + [6357] = 2700, + [6358] = 6358, + [6359] = 2699, + [6360] = 2698, + [6361] = 2697, + [6362] = 6313, + [6363] = 6363, + [6364] = 6364, + [6365] = 2696, + [6366] = 6366, + [6367] = 2695, + [6368] = 6368, + [6369] = 2694, + [6370] = 2693, + [6371] = 6371, + [6372] = 2692, + [6373] = 6373, + [6374] = 6374, + [6375] = 6375, + [6376] = 6376, + [6377] = 2691, + [6378] = 6378, + [6379] = 2690, + [6380] = 6380, + [6381] = 2689, + [6382] = 6382, + [6383] = 6041, + [6384] = 2688, + [6385] = 2687, + [6386] = 2818, + [6387] = 2660, + [6388] = 6040, + [6389] = 2686, + [6390] = 6390, + [6391] = 2685, + [6392] = 6392, + [6393] = 6393, + [6394] = 6394, + [6395] = 6395, + [6396] = 6157, + [6397] = 2684, + [6398] = 6398, + [6399] = 2849, + [6400] = 2661, + [6401] = 6401, + [6402] = 6402, + [6403] = 6403, + [6404] = 6404, + [6405] = 2682, + [6406] = 6406, + [6407] = 2681, + [6408] = 6408, + [6409] = 2680, + [6410] = 2679, + [6411] = 2678, + [6412] = 6412, + [6413] = 2677, + [6414] = 6414, + [6415] = 2676, + [6416] = 6416, + [6417] = 2675, + [6418] = 2674, + [6419] = 2672, + [6420] = 2671, + [6421] = 2670, + [6422] = 6422, + [6423] = 2669, + [6424] = 2813, + [6425] = 6425, + [6426] = 6426, + [6427] = 2668, + [6428] = 6428, + [6429] = 2666, + [6430] = 2665, + [6431] = 6431, + [6432] = 2664, + [6433] = 6433, + [6434] = 2812, + [6435] = 6435, + [6436] = 6436, + [6437] = 6437, + [6438] = 6438, + [6439] = 2663, + [6440] = 6440, + [6441] = 6321, + [6442] = 6072, + [6443] = 2875, + [6444] = 2880, + [6445] = 6445, + [6446] = 6446, + [6447] = 6447, + [6448] = 6448, + [6449] = 6449, + [6450] = 6450, + [6451] = 2921, + [6452] = 2743, + [6453] = 6453, + [6454] = 6454, + [6455] = 6455, + [6456] = 6456, + [6457] = 6457, + [6458] = 6458, + [6459] = 2747, + [6460] = 6024, + [6461] = 2749, + [6462] = 2662, + [6463] = 6463, + [6464] = 6464, + [6465] = 6465, + [6466] = 2765, + [6467] = 6467, + [6468] = 2766, + [6469] = 6469, + [6470] = 2771, + [6471] = 2772, + [6472] = 2775, + [6473] = 2776, + [6474] = 6474, + [6475] = 2777, + [6476] = 6476, + [6477] = 6477, + [6478] = 6478, + [6479] = 6479, + [6480] = 2778, + [6481] = 6481, + [6482] = 6482, + [6483] = 6483, + [6484] = 6484, + [6485] = 6485, + [6486] = 2779, + [6487] = 6487, + [6488] = 2785, + [6489] = 6489, + [6490] = 2786, + [6491] = 2719, + [6492] = 2794, + [6493] = 6493, + [6494] = 2673, + [6495] = 2667, + [6496] = 2795, + [6497] = 6497, + [6498] = 2796, + [6499] = 6499, + [6500] = 6500, + [6501] = 2801, + [6502] = 2805, + [6503] = 6503, + [6504] = 2814, + [6505] = 6505, + [6506] = 6506, + [6507] = 6507, + [6508] = 6508, + [6509] = 2815, + [6510] = 6510, + [6511] = 2820, + [6512] = 6512, + [6513] = 2821, + [6514] = 2823, + [6515] = 2825, + [6516] = 2826, + [6517] = 6229, + [6518] = 2788, + [6519] = 6519, + [6520] = 6520, + [6521] = 6521, + [6522] = 2811, + [6523] = 6523, + [6524] = 2810, + [6525] = 6525, + [6526] = 6526, + [6527] = 6026, + [6528] = 6027, + [6529] = 6063, + [6530] = 2809, + [6531] = 6065, + [6532] = 6066, + [6533] = 6029, + [6534] = 6032, + [6535] = 6039, + [6536] = 6045, + [6537] = 2784, + [6538] = 6046, + [6539] = 2783, + [6540] = 6052, + [6541] = 2782, + [6542] = 2904, + [6543] = 2901, + [6544] = 2781, + [6545] = 6545, + [6546] = 4403, + [6547] = 2808, + [6548] = 6548, + [6549] = 2807, + [6550] = 2806, + [6551] = 2804, + [6552] = 2803, + [6553] = 2802, + [6554] = 6187, + [6555] = 6315, + [6556] = 6058, + [6557] = 2800, + [6558] = 6057, + [6559] = 2787, + [6560] = 6163, + [6561] = 6164, + [6562] = 6166, + [6563] = 6167, + [6564] = 6173, + [6565] = 6139, + [6566] = 2957, + [6567] = 6177, + [6568] = 6178, + [6569] = 6179, + [6570] = 6181, + [6571] = 6165, + [6572] = 6184, + [6573] = 6573, + [6574] = 6574, + [6575] = 6185, + [6576] = 2858, + [6577] = 6577, + [6578] = 6223, + [6579] = 6040, + [6580] = 6087, + [6581] = 6061, + [6582] = 6188, + [6583] = 6189, + [6584] = 6084, + [6585] = 6082, + [6586] = 6080, + [6587] = 6078, + [6588] = 6588, + [6589] = 6589, + [6590] = 6590, + [6591] = 6591, + [6592] = 6592, + [6593] = 6593, + [6594] = 2881, + [6595] = 6595, + [6596] = 6070, + [6597] = 6597, + [6598] = 6190, + [6599] = 6066, + [6600] = 6065, + [6601] = 6192, + [6602] = 6063, + [6603] = 6195, + [6604] = 6592, + [6605] = 6198, + [6606] = 6199, + [6607] = 6607, + [6608] = 6590, + [6609] = 6068, + [6610] = 6078, + [6611] = 6080, + [6612] = 6082, + [6613] = 6084, + [6614] = 6087, + [6615] = 6346, + [6616] = 6202, + [6617] = 6205, + [6618] = 2829, + [6619] = 6619, + [6620] = 2830, + [6621] = 6621, + [6622] = 2831, + [6623] = 2832, + [6624] = 2833, + [6625] = 2837, + [6626] = 6626, + [6627] = 2838, + [6628] = 6628, + [6629] = 2839, + [6630] = 6630, + [6631] = 2841, + [6632] = 2842, + [6633] = 2843, + [6634] = 2844, + [6635] = 2845, + [6636] = 6636, + [6637] = 2846, + [6638] = 6638, + [6639] = 2847, + [6640] = 6640, + [6641] = 2848, + [6642] = 2851, + [6643] = 6643, + [6644] = 2852, + [6645] = 6645, + [6646] = 6646, + [6647] = 6647, + [6648] = 6648, + [6649] = 2793, + [6650] = 6650, + [6651] = 2855, + [6652] = 6652, + [6653] = 2863, + [6654] = 2865, + [6655] = 6655, + [6656] = 6398, + [6657] = 2878, + [6658] = 6133, + [6659] = 6659, + [6660] = 6660, + [6661] = 2819, + [6662] = 2882, + [6663] = 6663, + [6664] = 6207, + [6665] = 2883, + [6666] = 2884, + [6667] = 6667, + [6668] = 2886, + [6669] = 6573, + [6670] = 6209, + [6671] = 2887, + [6672] = 2889, + [6673] = 6213, + [6674] = 6674, + [6675] = 6214, + [6676] = 2891, + [6677] = 6216, + [6678] = 6678, + [6679] = 2895, + [6680] = 6680, + [6681] = 2898, + [6682] = 6682, + [6683] = 6674, + [6684] = 6218, + [6685] = 2899, + [6686] = 6275, + [6687] = 2900, + [6688] = 6688, + [6689] = 6689, + [6690] = 2902, + [6691] = 6691, + [6692] = 6692, + [6693] = 6693, + [6694] = 6226, + [6695] = 2903, + [6696] = 6696, + [6697] = 2905, + [6698] = 6698, + [6699] = 2908, + [6700] = 2913, + [6701] = 2914, + [6702] = 2915, + [6703] = 6703, + [6704] = 6704, + [6705] = 2955, + [6706] = 6706, + [6707] = 6040, + [6708] = 6228, + [6709] = 6230, + [6710] = 6049, + [6711] = 6711, + [6712] = 6231, + [6713] = 6713, + [6714] = 6714, + [6715] = 6193, + [6716] = 6239, + [6717] = 6717, + [6718] = 6718, + [6719] = 2917, + [6720] = 6720, + [6721] = 6721, + [6722] = 6722, + [6723] = 6723, + [6724] = 6344, + [6725] = 6345, + [6726] = 6726, + [6727] = 6727, + [6728] = 6728, + [6729] = 6729, + [6730] = 6328, + [6731] = 6731, + [6732] = 2918, + [6733] = 6733, + [6734] = 2920, + [6735] = 6735, + [6736] = 6087, + [6737] = 2854, + [6738] = 6041, + [6739] = 2924, + [6740] = 2929, + [6741] = 6741, + [6742] = 6329, + [6743] = 6714, + [6744] = 2931, + [6745] = 6059, + [6746] = 6746, + [6747] = 2932, + [6748] = 6748, + [6749] = 2933, + [6750] = 6059, + [6751] = 6751, + [6752] = 6364, + [6753] = 6084, + [6754] = 2934, + [6755] = 2936, + [6756] = 6085, + [6757] = 6082, + [6758] = 2938, + [6759] = 2939, + [6760] = 6573, + [6761] = 6080, + [6762] = 6762, + [6763] = 2940, + [6764] = 6764, + [6765] = 2941, + [6766] = 6766, + [6767] = 6667, + [6768] = 6078, + [6769] = 2942, + [6770] = 2943, + [6771] = 6771, + [6772] = 2944, + [6773] = 6773, + [6774] = 6774, + [6775] = 6775, + [6776] = 6049, + [6777] = 6777, + [6778] = 6778, + [6779] = 2945, + [6780] = 6780, + [6781] = 6040, + [6782] = 2948, + [6783] = 6783, + [6784] = 2949, + [6785] = 2950, + [6786] = 2951, + [6787] = 2952, + [6788] = 2953, + [6789] = 6590, + [6790] = 2954, + [6791] = 6607, + [6792] = 6366, + [6793] = 6090, + [6794] = 2956, + [6795] = 6592, + [6796] = 6796, + [6797] = 2937, + [6798] = 6798, + [6799] = 2925, + [6800] = 6091, + [6801] = 6801, + [6802] = 2923, + [6803] = 2910, + [6804] = 2896, + [6805] = 2890, + [6806] = 2774, + [6807] = 6659, + [6808] = 6655, + [6809] = 6438, + [6810] = 6810, + [6811] = 6368, + [6812] = 6426, + [6813] = 6371, + [6814] = 6382, + [6815] = 6358, + [6816] = 6356, + [6817] = 6354, + [6818] = 6092, + [6819] = 6353, + [6820] = 6095, + [6821] = 6821, + [6822] = 6341, + [6823] = 6823, + [6824] = 6320, + [6825] = 6825, + [6826] = 6319, + [6827] = 6317, + [6828] = 6828, + [6829] = 6096, + [6830] = 6048, + [6831] = 6316, + [6832] = 6314, + [6833] = 6267, + [6834] = 6373, + [6835] = 6374, + [6836] = 6836, + [6837] = 6375, + [6838] = 6098, + [6839] = 6376, + [6840] = 6378, + [6841] = 6380, + [6842] = 2916, + [6843] = 6100, + [6844] = 6390, + [6845] = 6392, + [6846] = 6393, + [6847] = 6394, + [6848] = 6101, + [6849] = 6395, + [6850] = 6850, + [6851] = 6851, + [6852] = 6103, + [6853] = 6342, + [6854] = 6401, + [6855] = 2770, + [6856] = 6104, + [6857] = 6105, + [6858] = 6858, + [6859] = 6859, + [6860] = 6402, + [6861] = 6861, + [6862] = 6403, + [6863] = 6059, + [6864] = 6864, + [6865] = 6404, + [6866] = 6406, + [6867] = 6049, + [6868] = 6408, + [6869] = 6040, + [6870] = 6206, + [6871] = 6871, + [6872] = 6414, + [6873] = 6873, + [6874] = 6874, + [6875] = 6875, + [6876] = 6876, + [6877] = 6416, + [6878] = 6106, + [6879] = 6422, + [6880] = 6880, + [6881] = 6597, + [6882] = 6425, + [6883] = 6428, + [6884] = 6431, + [6885] = 6433, + [6886] = 6577, + [6887] = 6435, + [6888] = 6028, + [6889] = 6165, + [6890] = 6436, + [6891] = 6595, + [6892] = 6892, + [6893] = 6437, + [6894] = 6058, + [6895] = 6062, + [6896] = 6073, + [6897] = 6252, + [6898] = 6263, + [6899] = 6899, + [6900] = 6900, + [6901] = 6901, + [6902] = 2946, + [6903] = 6903, + [6904] = 6764, + [6905] = 6905, + [6906] = 6548, + [6907] = 6545, + [6908] = 6525, + [6909] = 6331, + [6910] = 6323, + [6911] = 6308, + [6912] = 6912, + [6913] = 6306, + [6914] = 6914, + [6915] = 6440, + [6916] = 6304, + [6917] = 6023, + [6918] = 6445, + [6919] = 6446, + [6920] = 6300, + [6921] = 6295, + [6922] = 6292, + [6923] = 6288, + [6924] = 6283, + [6925] = 6265, + [6926] = 6447, + [6927] = 6448, + [6928] = 6260, + [6929] = 6593, + [6930] = 6363, + [6931] = 6931, + [6932] = 6258, + [6933] = 6220, + [6934] = 6450, + [6935] = 6059, + [6936] = 6186, + [6937] = 6175, + [6938] = 6271, + [6939] = 6049, + [6940] = 6285, + [6941] = 6040, + [6942] = 6801, + [6943] = 6798, + [6944] = 6796, + [6945] = 6783, + [6946] = 6780, + [6947] = 6591, + [6948] = 6589, + [6949] = 6777, + [6950] = 6453, + [6951] = 6951, + [6952] = 6775, + [6953] = 6588, + [6954] = 6774, + [6955] = 4467, + [6956] = 6773, + [6957] = 4465, + [6958] = 6771, + [6959] = 4463, + [6960] = 6766, + [6961] = 6481, + [6962] = 6762, + [6963] = 6726, + [6964] = 6748, + [6965] = 6965, + [6966] = 6746, + [6967] = 6741, + [6968] = 6735, + [6969] = 6733, + [6970] = 6728, + [6971] = 2751, + [6972] = 6454, + [6973] = 6489, + [6974] = 6974, + [6975] = 6455, + [6976] = 2758, + [6977] = 2659, + [6978] = 6456, + [6979] = 6723, + [6980] = 6722, + [6981] = 6721, + [6982] = 6457, + [6983] = 6720, + [6984] = 6066, + [6985] = 6718, + [6986] = 6986, + [6987] = 6458, + [6988] = 6717, + [6989] = 6989, + [6990] = 6523, + [6991] = 6463, + [6992] = 6065, + [6993] = 6711, + [6994] = 6464, + [6995] = 6706, + [6996] = 6063, + [6997] = 6703, + [6998] = 6698, + [6999] = 6465, + [7000] = 6696, + [7001] = 6704, + [7002] = 6693, + [7003] = 6338, + [7004] = 6692, + [7005] = 6691, + [7006] = 6689, + [7007] = 7007, + [7008] = 6682, + [7009] = 6467, + [7010] = 6680, + [7011] = 6678, + [7012] = 6652, + [7013] = 6650, + [7014] = 6648, + [7015] = 6049, + [7016] = 6469, + [7017] = 6647, + [7018] = 6646, + [7019] = 7019, + [7020] = 6645, + [7021] = 6643, + [7022] = 6474, + [7023] = 6050, + [7024] = 6640, + [7025] = 6638, + [7026] = 6636, + [7027] = 6630, + [7028] = 6628, + [7029] = 6626, + [7030] = 6526, + [7031] = 6318, + [7032] = 6512, + [7033] = 6510, + [7034] = 2761, + [7035] = 2762, + [7036] = 2763, + [7037] = 2764, + [7038] = 2760, + [7039] = 2877, + [7040] = 6476, + [7041] = 2683, + [7042] = 6477, + [7043] = 6478, + [7044] = 6899, + [7045] = 7045, + [7046] = 6479, + [7047] = 6412, + [7048] = 2705, + [7049] = 6900, + [7050] = 6521, + [7051] = 2707, + [7052] = 6520, + [7053] = 6901, + [7054] = 2720, + [7055] = 7055, + [7056] = 6519, + [7057] = 6482, + [7058] = 2746, + [7059] = 2750, + [7060] = 2753, + [7061] = 2754, + [7062] = 6346, + [7063] = 2755, + [7064] = 6483, + [7065] = 2756, + [7066] = 6508, + [7067] = 2757, + [7068] = 2759, + [7069] = 6484, + [7070] = 2773, + [7071] = 2780, + [7072] = 6507, + [7073] = 6506, + [7074] = 6505, + [7075] = 6503, + [7076] = 6500, + [7077] = 6497, + [7078] = 6493, + [7079] = 6449, + [7080] = 6487, + [7081] = 7081, + [7082] = 7082, + [7083] = 6485, + [7084] = 7084, + [7085] = 7085, + [7086] = 7086, + [7087] = 7087, + [7088] = 7088, + [7089] = 7089, + [7090] = 7090, + [7091] = 7091, + [7092] = 7092, + [7093] = 7093, + [7094] = 7094, + [7095] = 7093, + [7096] = 7094, + [7097] = 7092, + [7098] = 7091, + [7099] = 7089, + [7100] = 7100, + [7101] = 7101, + [7102] = 7102, + [7103] = 7103, + [7104] = 7104, + [7105] = 7088, + [7106] = 7106, + [7107] = 7088, + [7108] = 7089, + [7109] = 7091, + [7110] = 7092, + [7111] = 7093, + [7112] = 7094, + [7113] = 7113, + [7114] = 7114, + [7115] = 7115, + [7116] = 7116, + [7117] = 7117, + [7118] = 7118, + [7119] = 7119, + [7120] = 7120, + [7121] = 7121, + [7122] = 7104, + [7123] = 7123, + [7124] = 7088, + [7125] = 7125, + [7126] = 7126, + [7127] = 7089, + [7128] = 7128, + [7129] = 7129, + [7130] = 7091, + [7131] = 7092, + [7132] = 7093, + [7133] = 7094, + [7134] = 7134, + [7135] = 7135, + [7136] = 7136, + [7137] = 7137, + [7138] = 7138, + [7139] = 7139, + [7140] = 7094, + [7141] = 7141, + [7142] = 7142, + [7143] = 7143, + [7144] = 7093, + [7145] = 7145, + [7146] = 7146, + [7147] = 7147, + [7148] = 7148, + [7149] = 7149, + [7150] = 7150, + [7151] = 7151, + [7152] = 7152, + [7153] = 7153, + [7154] = 7154, + [7155] = 7104, + [7156] = 7156, + [7157] = 7123, + [7158] = 7088, + [7159] = 7159, + [7160] = 7160, + [7161] = 7161, + [7162] = 7089, + [7163] = 7092, + [7164] = 7091, + [7165] = 7091, + [7166] = 7089, + [7167] = 7092, + [7168] = 7093, + [7169] = 7094, + [7170] = 7170, + [7171] = 7171, + [7172] = 7172, + [7173] = 7173, + [7174] = 7174, + [7175] = 7088, + [7176] = 7176, + [7177] = 7177, + [7178] = 7178, + [7179] = 7179, + [7180] = 7180, + [7181] = 7181, + [7182] = 7182, + [7183] = 7183, + [7184] = 7184, + [7185] = 7185, + [7186] = 7085, + [7187] = 7187, + [7188] = 7188, + [7189] = 7189, + [7190] = 7190, + [7191] = 7174, + [7192] = 7104, + [7193] = 7190, + [7194] = 7194, + [7195] = 7195, + [7196] = 7123, + [7197] = 7197, + [7198] = 7088, + [7199] = 7089, + [7200] = 7200, + [7201] = 7091, + [7202] = 7092, + [7203] = 7146, + [7204] = 7102, + [7205] = 7093, + [7206] = 7094, + [7207] = 7086, + [7208] = 7208, + [7209] = 7182, + [7210] = 7210, + [7211] = 7113, + [7212] = 7145, + [7213] = 7184, + [7214] = 7195, + [7215] = 7183, + [7216] = 7189, + [7217] = 7085, + [7218] = 7090, + [7219] = 7181, + [7220] = 7182, + [7221] = 7221, + [7222] = 7101, + [7223] = 7102, + [7224] = 7103, + [7225] = 7106, + [7226] = 7113, + [7227] = 7117, + [7228] = 7119, + [7229] = 7197, + [7230] = 7086, + [7231] = 7197, + [7232] = 7086, + [7233] = 7210, + [7234] = 7183, + [7235] = 7183, + [7236] = 7145, + [7237] = 7237, + [7238] = 7116, + [7239] = 7177, + [7240] = 7176, + [7241] = 7172, + [7242] = 7242, + [7243] = 7170, + [7244] = 7161, + [7245] = 7152, + [7246] = 7149, + [7247] = 7141, + [7248] = 7139, + [7249] = 7138, + [7250] = 7137, + [7251] = 7251, + [7252] = 7252, + [7253] = 7253, + [7254] = 7254, + [7255] = 7137, + [7256] = 7256, + [7257] = 7257, + [7258] = 7188, + [7259] = 7259, + [7260] = 7260, + [7261] = 7261, + [7262] = 7262, + [7263] = 7113, + [7264] = 7106, + [7265] = 7103, + [7266] = 7102, + [7267] = 7101, + [7268] = 7137, + [7269] = 7269, + [7270] = 7183, + [7271] = 7086, + [7272] = 7197, + [7273] = 7120, + [7274] = 7180, + [7275] = 7090, + [7276] = 7185, + [7277] = 7208, + [7278] = 7113, + [7279] = 7197, + [7280] = 7280, + [7281] = 7281, + [7282] = 7282, + [7283] = 7184, + [7284] = 7189, + [7285] = 7102, + [7286] = 7189, + [7287] = 7187, + [7288] = 7085, + [7289] = 7090, + [7290] = 7184, + [7291] = 7101, + [7292] = 7102, + [7293] = 7103, + [7294] = 7106, + [7295] = 7295, + [7296] = 7194, + [7297] = 7092, + [7298] = 7242, + [7299] = 7182, + [7300] = 7113, + [7301] = 7208, + [7302] = 7302, + [7303] = 7184, + [7304] = 7104, + [7305] = 7146, + [7306] = 7251, + [7307] = 7145, + [7308] = 7182, + [7309] = 7309, + [7310] = 7185, + [7311] = 7311, + [7312] = 7269, + [7313] = 7282, + [7314] = 7088, + [7315] = 7208, + [7316] = 7252, + [7317] = 7253, + [7318] = 7184, + [7319] = 7104, + [7320] = 7185, + [7321] = 7088, + [7322] = 7322, + [7323] = 7254, + [7324] = 7322, + [7325] = 7197, + [7326] = 7089, + [7327] = 7091, + [7328] = 7086, + [7329] = 7092, + [7330] = 7183, + [7331] = 7331, + [7332] = 7332, + [7333] = 7089, + [7334] = 7177, + [7335] = 7335, + [7336] = 7336, + [7337] = 7337, + [7338] = 7338, + [7339] = 7176, + [7340] = 7340, + [7341] = 7172, + [7342] = 7170, + [7343] = 7161, + [7344] = 7344, + [7345] = 7345, + [7346] = 7152, + [7347] = 7123, + [7348] = 7348, + [7349] = 7149, + [7350] = 7141, + [7351] = 7139, + [7352] = 7180, + [7353] = 7138, + [7354] = 7091, + [7355] = 7137, + [7356] = 7251, + [7357] = 7357, + [7358] = 7332, + [7359] = 7253, + [7360] = 7254, + [7361] = 7256, + [7362] = 7257, + [7363] = 7259, + [7364] = 7260, + [7365] = 7106, + [7366] = 7366, + [7367] = 7103, + [7368] = 7261, + [7369] = 7262, + [7370] = 7177, + [7371] = 7176, + [7372] = 7372, + [7373] = 7172, + [7374] = 7170, + [7375] = 7094, + [7376] = 7161, + [7377] = 7152, + [7378] = 7093, + [7379] = 7149, + [7380] = 7146, + [7381] = 7262, + [7382] = 7261, + [7383] = 7092, + [7384] = 7260, + [7385] = 7091, + [7386] = 7089, + [7387] = 7259, + [7388] = 7257, + [7389] = 7256, + [7390] = 7254, + [7391] = 7253, + [7392] = 7392, + [7393] = 7252, + [7394] = 7251, + [7395] = 7088, + [7396] = 7181, + [7397] = 7137, + [7398] = 7141, + [7399] = 7262, + [7400] = 7261, + [7401] = 7260, + [7402] = 7259, + [7403] = 7138, + [7404] = 7257, + [7405] = 7139, + [7406] = 7406, + [7407] = 7340, + [7408] = 7256, + [7409] = 7409, + [7410] = 7146, + [7411] = 7254, + [7412] = 7181, + [7413] = 7253, + [7414] = 7252, + [7415] = 7251, + [7416] = 7147, + [7417] = 7141, + [7418] = 7149, + [7419] = 7152, + [7420] = 7161, + [7421] = 7170, + [7422] = 7146, + [7423] = 7181, + [7424] = 7172, + [7425] = 7176, + [7426] = 7146, + [7427] = 7177, + [7428] = 7093, + [7429] = 7139, + [7430] = 7146, + [7431] = 7431, + [7432] = 7344, + [7433] = 7345, + [7434] = 7146, + [7435] = 7142, + [7436] = 7183, + [7437] = 7094, + [7438] = 7138, + [7439] = 7123, + [7440] = 7086, + [7441] = 7197, + [7442] = 7256, + [7443] = 7113, + [7444] = 7252, + [7445] = 7409, + [7446] = 7406, + [7447] = 7106, + [7448] = 7103, + [7449] = 7181, + [7450] = 7182, + [7451] = 7102, + [7452] = 7101, + [7453] = 7094, + [7454] = 7200, + [7455] = 7093, + [7456] = 7146, + [7457] = 7085, + [7458] = 7189, + [7459] = 7118, + [7460] = 7126, + [7461] = 7184, + [7462] = 7145, + [7463] = 7182, + [7464] = 7208, + [7465] = 7185, + [7466] = 7137, + [7467] = 7262, + [7468] = 7261, + [7469] = 7260, + [7470] = 7181, + [7471] = 7180, + [7472] = 7259, + [7473] = 7257, }; static TSCharacterRange extras_character_set_1[] = { @@ -10317,645 +12067,615 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(97); + if (eof) ADVANCE(96); ADVANCE_MAP( - '!', 110, - '"', 129, + '!', 109, + '"', 128, '#', 10, - '$', 236, - '%', 181, - '&', 160, - '\'', 130, - '(', 111, - ')', 112, - '*', 100, - '+', 173, - ',', 107, - '-', 177, - '.', 127, - '/', 222, - '0', 227, - ':', 114, - ';', 113, - '<', 186, - '=', 103, - '>', 124, - '?', 242, - '@', 239, - '[', 115, - '\\', 55, - ']', 116, - '^', 163, - '`', 220, - '{', 106, - '|', 166, - '}', 108, - '~', 198, + '$', 235, + '%', 180, + '&', 159, + '\'', 129, + '(', 110, + ')', 111, + '*', 99, + '+', 172, + ',', 106, + '-', 176, + '.', 126, + '/', 221, + '0', 226, + ':', 113, + ';', 112, + '<', 185, + '=', 102, + '>', 123, + '?', 241, + '@', 238, + '[', 114, + '\\', 54, + ']', 115, + '^', 162, + '`', 219, + '{', 105, + '|', 165, + '}', 107, + '~', 197, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(94); - if (lookahead > '@') ADVANCE(237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(227); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(93); + if (lookahead > '@') ADVANCE(236); END_STATE(); case 1: if (lookahead == '\n') SKIP(1); - if (lookahead == '/') ADVANCE(118); - if (lookahead == '<') ADVANCE(120); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(119); - if (lookahead != 0) ADVANCE(117); + if (lookahead == '/') ADVANCE(117); + if (lookahead == '<') ADVANCE(119); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(118); + if (lookahead != 0) ADVANCE(116); END_STATE(); case 2: - if (lookahead == '\n') SKIP(29); - if (lookahead == '/') ADVANCE(22); - if (lookahead == '[') ADVANCE(39); - if (lookahead == '\\') ADVANCE(93); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(223); - if (lookahead != 0) ADVANCE(224); + if (lookahead == '\n') SKIP(28); + if (lookahead == '/') ADVANCE(21); + if (lookahead == '[') ADVANCE(38); + if (lookahead == '\\') ADVANCE(92); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(222); + if (lookahead != 0) ADVANCE(223); END_STATE(); case 3: ADVANCE_MAP( - '!', 110, - '"', 129, - '#', 38, - '%', 181, - '&', 160, - '\'', 130, - '(', 111, - ')', 112, - '*', 100, - '+', 172, - ',', 107, - '-', 176, - '.', 127, - '/', 179, - '0', 227, - ':', 114, - ';', 113, - '<', 186, - '=', 103, - '>', 124, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 163, - '`', 220, - '{', 105, - '|', 165, - '}', 108, - '~', 198, + '!', 109, + '"', 128, + '#', 37, + '%', 180, + '&', 159, + '\'', 129, + '(', 110, + ')', 111, + '*', 99, + '+', 171, + ',', 106, + '-', 175, + '.', 126, + '/', 178, + '0', 226, + ':', 113, + ';', 112, + '<', 185, + '=', 102, + '>', 123, + '?', 241, + '@', 238, + '[', 114, + '\\', 56, + ']', 115, + '^', 162, + '`', 219, + '{', 104, + '|', 164, + '}', 107, + '~', 197, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(227); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(3); - if (lookahead > '#') ADVANCE(237); + if (lookahead > '#') ADVANCE(236); END_STATE(); case 4: ADVANCE_MAP( - '!', 110, - '"', 129, - '#', 38, - '%', 181, - '&', 160, - '\'', 130, - '(', 111, - ')', 112, - '*', 100, - '+', 172, - ',', 107, - '-', 176, - '.', 127, - '/', 179, - '0', 227, - ':', 114, - '<', 186, - '=', 103, - '>', 124, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - '^', 163, - '`', 220, - '{', 106, - '|', 165, - '~', 198, + '!', 109, + '"', 128, + '#', 37, + '%', 180, + '&', 159, + '\'', 129, + '(', 110, + ')', 111, + '*', 99, + '+', 171, + ',', 106, + '-', 175, + '.', 126, + '/', 178, + '0', 226, + ':', 113, + '<', 185, + '=', 102, + '>', 123, + '?', 241, + '@', 238, + '[', 114, + '\\', 56, + '^', 162, + '`', 219, + '{', 105, + '|', 164, + '~', 197, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(227); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(4); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '{' || '~' < lookahead)) ADVANCE(236); END_STATE(); case 5: ADVANCE_MAP( - '!', 110, - '"', 129, - '#', 38, - '%', 181, - '&', 160, - '\'', 130, - '(', 111, - ')', 112, - '*', 100, - '+', 172, - ',', 107, - '-', 176, - '.', 128, - '/', 179, - '0', 227, - ':', 114, - ';', 113, - '<', 185, - '=', 103, - '>', 124, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 163, - '`', 220, - '{', 106, - '|', 166, - '}', 108, + '!', 109, + '"', 128, + '#', 37, + '%', 180, + '&', 159, + '\'', 129, + '(', 110, + ')', 111, + '*', 99, + '+', 171, + ',', 106, + '-', 175, + '.', 127, + '/', 178, + '0', 226, + ':', 113, + ';', 112, + '<', 184, + '=', 102, + '>', 123, + '?', 241, + '@', 238, + '[', 114, + '\\', 56, + ']', 115, + '^', 162, + '`', 219, + '{', 105, + '|', 165, + '}', 107, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(227); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '{' || '~' < lookahead)) ADVANCE(236); END_STATE(); case 6: ADVANCE_MAP( - '!', 110, - '"', 129, - '%', 181, - '&', 160, - '\'', 130, - '(', 111, - ')', 112, - '*', 100, - '+', 172, - ',', 107, - '-', 176, - '.', 126, - '/', 179, - ':', 114, - ';', 113, - '<', 185, - '=', 103, - '>', 124, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 163, - '`', 220, - '{', 105, - '|', 165, - '}', 108, + '!', 109, + '"', 128, + '%', 180, + '&', 159, + '\'', 129, + '(', 110, + ')', 111, + '*', 99, + '+', 171, + ',', 106, + '-', 175, + '.', 125, + '/', 178, + ':', 113, + ';', 112, + '<', 184, + '=', 102, + '>', 123, + '?', 241, + '@', 238, + '[', 114, + '\\', 56, + ']', 115, + '^', 162, + '`', 219, + '{', 104, + '|', 164, + '}', 107, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '{' || '~' < lookahead)) ADVANCE(236); END_STATE(); case 7: ADVANCE_MAP( - '!', 110, - '%', 180, - '&', 161, - '(', 111, - ')', 112, - '*', 101, - '+', 171, - ',', 107, - '-', 175, - '.', 126, - '/', 178, - ':', 114, - ';', 113, - '<', 187, - '=', 102, - '>', 125, - '?', 243, - '[', 115, - '\\', 57, - ']', 116, - '^', 162, - '`', 220, - '{', 105, - '|', 168, - '}', 108, + '!', 109, + '%', 179, + '&', 160, + '(', 110, + ')', 111, + '*', 100, + '+', 170, + ',', 106, + '-', 174, + '.', 125, + '/', 177, + ':', 113, + ';', 112, + '<', 186, + '=', 101, + '>', 124, + '?', 242, + '[', 114, + '\\', 56, + ']', 115, + '^', 161, + '`', 219, + '{', 104, + '|', 167, + '}', 107, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(7); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '{' || '~' < lookahead)) ADVANCE(236); END_STATE(); case 8: ADVANCE_MAP( - '!', 110, - '%', 180, - '&', 161, - '(', 111, - ')', 112, - '*', 101, - '+', 171, - ',', 107, - '-', 175, - '.', 126, - '/', 178, - ':', 114, - ';', 113, - '<', 187, - '=', 33, - '>', 125, - '?', 26, - '[', 115, - '\\', 57, - ']', 116, - '^', 162, - '`', 220, - '{', 105, - '|', 167, - '}', 108, + '!', 109, + '%', 179, + '&', 160, + '(', 110, + ')', 111, + '*', 100, + '+', 170, + ',', 106, + '-', 174, + '.', 125, + '/', 177, + ':', 113, + ';', 112, + '<', 186, + '=', 32, + '>', 124, + '?', 25, + '[', 114, + '\\', 56, + ']', 115, + '^', 161, + '`', 219, + '{', 104, + '|', 166, + '}', 107, ); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '`' || '~' < lookahead)) ADVANCE(237); + (lookahead < '`' || '~' < lookahead)) ADVANCE(236); END_STATE(); case 9: ADVANCE_MAP( - '!', 110, - '%', 180, - '&', 161, - '(', 111, - ')', 112, - '*', 101, - '+', 171, - ',', 107, - '-', 175, - '.', 126, - '/', 178, - ':', 114, - ';', 113, - '<', 187, - '=', 33, - '>', 125, - '?', 26, - '[', 115, - '\\', 57, - ']', 116, - '^', 162, - '`', 220, - '{', 105, - '|', 167, - '}', 108, + '!', 109, + '%', 179, + '&', 160, + '(', 110, + ')', 111, + '*', 100, + '+', 170, + ',', 106, + '-', 174, + '.', 125, + '/', 177, + ':', 113, + ';', 112, + '<', 186, + '=', 32, + '>', 124, + '?', 25, + '[', 114, + '\\', 56, + ']', 115, + '^', 161, + '`', 219, + '{', 104, + '|', 166, + '}', 107, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '{' || '~' < lookahead)) ADVANCE(236); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(98); - if (lookahead == '\\') ADVANCE(56); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(238); + if (lookahead == '!') ADVANCE(97); + if (lookahead == '\\') ADVANCE(55); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(237); END_STATE(); case 11: ADVANCE_MAP( - '!', 109, - '"', 129, - '#', 38, - '&', 159, - '\'', 130, - '(', 111, - ')', 112, - '*', 99, - '+', 171, - ',', 107, - '-', 175, - '.', 25, - '/', 178, - '0', 227, - '<', 189, - '?', 240, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 106, - '|', 164, - '~', 198, + '!', 108, + '"', 128, + '#', 37, + '&', 158, + '\'', 129, + '(', 110, + ')', 111, + '*', 98, + '+', 170, + ',', 106, + '-', 174, + '.', 24, + '/', 177, + '0', 226, + '<', 188, + '?', 239, + '@', 238, + '[', 114, + '\\', 56, + ']', 115, + '`', 219, + '{', 105, + '|', 163, + '~', 197, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(227); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '{' || '~' < lookahead)) ADVANCE(236); END_STATE(); case 12: ADVANCE_MAP( - '!', 109, - '"', 129, - '#', 38, - '&', 159, - '\'', 130, - '(', 111, - ')', 112, - '*', 99, - '+', 170, - ',', 107, - '-', 174, - '.', 127, - '/', 22, - '0', 227, - ':', 114, - ';', 113, - '<', 184, - '=', 104, - '>', 123, - '?', 240, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 106, - '|', 169, - '}', 108, + '!', 108, + '"', 128, + '#', 37, + '&', 158, + '\'', 129, + '(', 110, + ')', 111, + '*', 98, + '+', 169, + ',', 106, + '-', 173, + '.', 126, + '/', 21, + '0', 226, + ':', 113, + ';', 112, + '<', 183, + '=', 103, + '>', 122, + '?', 239, + '@', 238, + '[', 114, + '\\', 56, + ']', 115, + '`', 219, + '{', 105, + '|', 168, + '}', 107, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(227); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(12); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '{' || '~' < lookahead)) ADVANCE(236); END_STATE(); case 13: ADVANCE_MAP( - '!', 109, - '"', 129, - '#', 38, - '&', 159, - '\'', 130, - '(', 111, - ')', 112, - '*', 99, - '+', 170, - ',', 107, - '-', 174, - '.', 127, - '/', 22, - '0', 227, - ':', 114, - ';', 113, - '<', 184, - '=', 104, - '>', 123, - '?', 240, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '{', 105, - '|', 169, - '}', 108, + '!', 108, + '"', 128, + '#', 37, + '&', 158, + '\'', 129, + '(', 110, + ')', 111, + '*', 98, + '+', 169, + ',', 106, + '-', 173, + '.', 126, + '/', 21, + '0', 226, + ':', 113, + ';', 112, + '<', 183, + '=', 103, + '>', 122, + '?', 239, + '@', 238, + '[', 114, + '\\', 56, + ']', 115, + '{', 104, + '|', 168, + '}', 107, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(227); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(13); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '{' || '~' < lookahead)) ADVANCE(236); END_STATE(); case 14: ADVANCE_MAP( - '!', 109, - '"', 129, - '#', 38, - '&', 159, - '\'', 130, - '(', 111, - ')', 112, - '+', 171, - ',', 107, - '-', 175, + '"', 128, + '#', 37, + '&', 158, + '\'', 129, + '(', 110, + ')', 111, + '*', 98, + ',', 106, '.', 127, - '/', 178, - '0', 227, - ':', 114, - ';', 113, - '<', 189, - '=', 104, - '>', 123, - '?', 241, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 105, - '|', 169, - '}', 108, - '~', 198, + '/', 21, + '0', 226, + ':', 113, + ';', 112, + '<', 183, + '=', 103, + '>', 122, + '?', 240, + '@', 238, + '[', 114, + '\\', 56, + ']', 115, + '`', 219, + '{', 104, + '|', 168, + '}', 107, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(227); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(237); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(236); END_STATE(); case 15: - ADVANCE_MAP( - '"', 129, - '&', 159, - '\'', 130, - '(', 111, - ')', 112, - '*', 99, - ',', 107, - '.', 126, - '/', 22, - ':', 114, - ';', 113, - '<', 184, - '=', 104, - '>', 123, - '?', 241, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 105, - '|', 169, - '}', 108, - ); + if (lookahead == '"') ADVANCE(128); + if (lookahead == '/') ADVANCE(21); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(15); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(129); - if (lookahead == '/') ADVANCE(22); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16); - END_STATE(); - case 17: - if (lookahead == '"') ADVANCE(129); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '\\') ADVANCE(58); + if (lookahead == '"') ADVANCE(128); + if (lookahead == '/') ADVANCE(200); + if (lookahead == '\\') ADVANCE(57); if (lookahead == '\n' || - lookahead == '\r') SKIP(16); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(204); - if (lookahead != 0) ADVANCE(206); + lookahead == '\r') SKIP(15); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(203); + if (lookahead != 0) ADVANCE(205); END_STATE(); - case 18: + case 17: ADVANCE_MAP( - '$', 59, - '+', 36, - '-', 37, - '/', 22, - ':', 114, - '?', 32, - '\\', 58, - '`', 220, + '$', 58, + '+', 35, + '-', 36, + '/', 21, + ':', 113, + '?', 31, + '\\', 57, + '`', 219, ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(18); + END_STATE(); + case 18: + if (lookahead == '$') ADVANCE(58); + if (lookahead == '+') ADVANCE(35); + if (lookahead == '-') ADVANCE(36); + if (lookahead == '/') ADVANCE(21); + if (lookahead == ':') ADVANCE(113); + if (lookahead == '?') ADVANCE(31); + if (lookahead == '`') ADVANCE(219); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(18); END_STATE(); case 19: - if (lookahead == '$') ADVANCE(59); - if (lookahead == '+') ADVANCE(36); - if (lookahead == '-') ADVANCE(37); - if (lookahead == '/') ADVANCE(22); - if (lookahead == ':') ADVANCE(114); - if (lookahead == '?') ADVANCE(32); - if (lookahead == '`') ADVANCE(220); + if (lookahead == '\'') ADVANCE(129); + if (lookahead == '/') ADVANCE(21); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); END_STATE(); case 20: - if (lookahead == '\'') ADVANCE(130); - if (lookahead == '/') ADVANCE(22); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(20); + if (lookahead == '\'') ADVANCE(129); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '\\') ADVANCE(57); + if (lookahead == '\n' || + lookahead == '\r') SKIP(19); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(209); + if (lookahead != 0) ADVANCE(211); END_STATE(); case 21: - if (lookahead == '\'') ADVANCE(130); - if (lookahead == '/') ADVANCE(207); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == '\n' || - lookahead == '\r') SKIP(20); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(210); - if (lookahead != 0) ADVANCE(212); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(218); END_STATE(); case 22: - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(219); + if (lookahead == '*') ADVANCE(22); + if (lookahead == '/') ADVANCE(217); + if (lookahead != 0) ADVANCE(23); END_STATE(); case 23: - if (lookahead == '*') ADVANCE(23); - if (lookahead == '/') ADVANCE(218); - if (lookahead != 0) ADVANCE(24); + if (lookahead == '*') ADVANCE(22); + if (lookahead != 0) ADVANCE(23); END_STATE(); case 24: - if (lookahead == '*') ADVANCE(23); - if (lookahead != 0) ADVANCE(24); + if (lookahead == '.') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(232); END_STATE(); case 25: - if (lookahead == '.') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + if (lookahead == '.') ADVANCE(131); + if (lookahead == '?') ADVANCE(195); END_STATE(); case 26: - if (lookahead == '.') ADVANCE(132); - if (lookahead == '?') ADVANCE(196); + if (lookahead == '.') ADVANCE(147); END_STATE(); case 27: - if (lookahead == '.') ADVANCE(148); + if (lookahead == '/') ADVANCE(221); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(28); END_STATE(); case 28: - if (lookahead == '/') ADVANCE(222); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(29); + if (lookahead == '/') ADVANCE(21); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(28); END_STATE(); case 29: - if (lookahead == '/') ADVANCE(22); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(29); + if (lookahead == ':') ADVANCE(244); END_STATE(); case 30: - if (lookahead == ':') ADVANCE(245); + if (lookahead == ':') ADVANCE(243); END_STATE(); case 31: - if (lookahead == ':') ADVANCE(244); + if (lookahead == ':') ADVANCE(245); END_STATE(); case 32: - if (lookahead == ':') ADVANCE(246); + if (lookahead == '=') ADVANCE(190); END_STATE(); case 33: - if (lookahead == '=') ADVANCE(191); + if (lookahead == '>') ADVANCE(120); END_STATE(); case 34: if (lookahead == '>') ADVANCE(121); END_STATE(); case 35: - if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(29); END_STATE(); case 36: if (lookahead == '?') ADVANCE(30); END_STATE(); case 37: - if (lookahead == '?') ADVANCE(31); + if (lookahead == '\\') ADVANCE(55); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(237); END_STATE(); case 38: - if (lookahead == '\\') ADVANCE(56); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(238); + if (lookahead == '\\') ADVANCE(91); + if (lookahead == ']') ADVANCE(223); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(38); END_STATE(); case 39: - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(224); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(39); + if (lookahead == 'a') ADVANCE(51); END_STATE(); case 40: if (lookahead == 'a') ADVANCE(52); END_STATE(); case 41: - if (lookahead == 'a') ADVANCE(53); + if (lookahead == 'e') ADVANCE(47); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(48); + if (lookahead == 'e') ADVANCE(33); END_STATE(); case 43: if (lookahead == 'e') ADVANCE(34); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(35); + if (lookahead == 'e') ADVANCE(48); END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(49); + if (lookahead == 'l') ADVANCE(39); END_STATE(); case 46: if (lookahead == 'l') ADVANCE(40); END_STATE(); case 47: - if (lookahead == 'l') ADVANCE(41); + if (lookahead == 'm') ADVANCE(49); END_STATE(); case 48: if (lookahead == 'm') ADVANCE(50); END_STATE(); case 49: - if (lookahead == 'm') ADVANCE(51); + if (lookahead == 'p') ADVANCE(45); END_STATE(); case 50: if (lookahead == 'p') ADVANCE(46); END_STATE(); case 51: - if (lookahead == 'p') ADVANCE(47); + if (lookahead == 't') ADVANCE(42); END_STATE(); case 52: if (lookahead == 't') ADVANCE(43); @@ -10964,35 +12684,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(44); END_STATE(); case 54: - if (lookahead == 't') ADVANCE(45); + if (lookahead == 'u') ADVANCE(59); + if (lookahead == 'x') ADVANCE(83); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(216); + if (lookahead != 0) ADVANCE(212); END_STATE(); case 55: if (lookahead == 'u') ADVANCE(60); - if (lookahead == 'x') ADVANCE(84); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(215); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(217); - if (lookahead != 0) ADVANCE(213); END_STATE(); case 56: if (lookahead == 'u') ADVANCE(61); END_STATE(); case 57: if (lookahead == 'u') ADVANCE(62); + if (lookahead == 'x') ADVANCE(83); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(216); + if (lookahead != 0) ADVANCE(212); END_STATE(); case 58: - if (lookahead == 'u') ADVANCE(63); - if (lookahead == 'x') ADVANCE(84); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(215); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(217); - if (lookahead != 0) ADVANCE(213); + if (lookahead == '{') ADVANCE(220); END_STATE(); case 59: - if (lookahead == '{') ADVANCE(221); + if (lookahead == '{') ADVANCE(78); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); END_STATE(); case 60: - if (lookahead == '{') ADVANCE(79); + if (lookahead == '{') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); @@ -11004,16 +12727,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); END_STATE(); case 62: - if (lookahead == '{') ADVANCE(83); + if (lookahead == '{') ADVANCE(84); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); END_STATE(); case 63: - if (lookahead == '{') ADVANCE(85); + if (lookahead == '}') ADVANCE(236); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); END_STATE(); case 64: if (lookahead == '}') ADVANCE(237); @@ -11022,7 +12745,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); END_STATE(); case 65: - if (lookahead == '}') ADVANCE(238); + if (lookahead == '}') ADVANCE(212); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); @@ -11034,34 +12757,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); END_STATE(); case 67: - if (lookahead == '}') ADVANCE(214); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + if (lookahead == '+' || + lookahead == '-') ADVANCE(73); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); END_STATE(); case 68: - if (lookahead == '+' || - lookahead == '-') ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); + if (lookahead == '0' || + lookahead == '1') ADVANCE(229); END_STATE(); case 69: - if (lookahead == '0' || - lookahead == '1') ADVANCE(230); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(230); END_STATE(); case 70: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(227); END_STATE(); case 71: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(232); END_STATE(); case 72: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); END_STATE(); case 73: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); END_STATE(); case 74: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(236); END_STATE(); case 75: if (('0' <= lookahead && lookahead <= '9') || @@ -11071,67 +12793,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 76: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(238); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(212); END_STATE(); case 77: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(213); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(231); END_STATE(); case 78: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); END_STATE(); case 79: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(213); END_STATE(); case 80: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(214); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); case 81: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(84); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); END_STATE(); case 82: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); END_STATE(); case 83: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(76); END_STATE(); case 84: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); END_STATE(); case 85: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(79); END_STATE(); case 86: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(75); END_STATE(); case 87: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(76); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(74); END_STATE(); case 88: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(75); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(85); END_STATE(); case 89: if (('0' <= lookahead && lookahead <= '9') || @@ -11144,833 +12866,828 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); END_STATE(); case 91: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(38); END_STATE(); case 92: if (lookahead != 0 && - lookahead != '\n') ADVANCE(39); + lookahead != '\n') ADVANCE(223); END_STATE(); case 93: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(224); + if (eof) ADVANCE(96); + ADVANCE_MAP( + '!', 109, + '"', 128, + '#', 10, + '$', 235, + '%', 180, + '&', 159, + '\'', 129, + '(', 110, + ')', 111, + '*', 99, + '+', 172, + ',', 106, + '-', 176, + '.', 126, + '/', 178, + '0', 226, + ':', 113, + ';', 112, + '<', 185, + '=', 102, + '>', 123, + '?', 241, + '@', 238, + '[', 114, + '\\', 56, + ']', 115, + '^', 162, + '`', 219, + '{', 105, + '|', 165, + '}', 107, + '~', 197, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(227); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(93); + if (lookahead > '@') ADVANCE(236); END_STATE(); case 94: - if (eof) ADVANCE(97); + if (eof) ADVANCE(96); ADVANCE_MAP( - '!', 110, - '"', 129, - '#', 10, - '$', 236, - '%', 181, + '!', 109, + '"', 128, + '#', 37, + '%', 179, '&', 160, - '\'', 130, - '(', 111, - ')', 112, + '\'', 129, + '(', 110, + ')', 111, '*', 100, - '+', 173, - ',', 107, - '-', 177, + '+', 170, + ',', 106, + '-', 174, '.', 127, - '/', 179, - '0', 227, - ':', 114, - ';', 113, - '<', 186, - '=', 103, + '/', 177, + '0', 226, + ':', 113, + ';', 112, + '<', 187, + '=', 101, '>', 124, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 163, - '`', 220, - '{', 106, + '?', 25, + '@', 238, + '[', 114, + '\\', 56, + ']', 115, + '^', 161, + '`', 219, + '{', 104, '|', 166, - '}', 108, - '~', 198, + '}', 107, + '~', 197, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(227); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(94); - if (lookahead > '@') ADVANCE(237); + if (lookahead > '#') ADVANCE(236); END_STATE(); case 95: - if (eof) ADVANCE(97); + if (eof) ADVANCE(96); ADVANCE_MAP( - '!', 110, - '"', 129, - '#', 38, - '%', 180, - '&', 161, - '\'', 130, - '(', 111, - ')', 112, - '*', 101, - '+', 171, - ',', 107, - '-', 175, - '.', 128, - '/', 178, - '0', 227, - ':', 114, - ';', 113, + '!', 108, + '"', 128, + '#', 10, + '&', 158, + '\'', 129, + '(', 110, + ')', 111, + '*', 98, + '+', 170, + ',', 106, + '-', 174, + '.', 126, + '/', 177, + '0', 226, + ':', 113, + ';', 112, '<', 188, - '=', 102, - '>', 125, - '?', 26, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 162, - '`', 220, - '{', 105, - '|', 167, - '}', 108, - '~', 198, + '=', 103, + '>', 122, + '?', 239, + '@', 238, + '[', 114, + '\\', 56, + ']', 115, + '`', 219, + '{', 104, + '|', 168, + '}', 107, + '~', 197, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(227); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(95); - if (lookahead > '#') ADVANCE(237); - END_STATE(); - case 96: - if (eof) ADVANCE(97); - ADVANCE_MAP( - '!', 109, - '"', 129, - '#', 10, - '&', 159, - '\'', 130, - '(', 111, - ')', 112, - '*', 99, - '+', 171, - ',', 107, - '-', 175, - '.', 127, - '/', 178, - '0', 227, - ':', 114, - ';', 113, - '<', 189, - '=', 104, - '>', 123, - '?', 240, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 105, - '|', 169, - '}', 108, - '~', 198, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(96); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(237); + (lookahead < '[' || '^' < lookahead)) ADVANCE(236); END_STATE(); - case 97: + case 96: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 98: + case 97: ACCEPT_TOKEN(sym_hash_bang_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(98); + lookahead != '\n') ADVANCE(97); + END_STATE(); + case 98: + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 99: ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '=') ADVANCE(134); END_STATE(); case 100: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(183); - if (lookahead == '=') ADVANCE(135); + if (lookahead == '*') ADVANCE(181); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(182); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(190); END_STATE(); case 102: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(191); + if (lookahead == '=') ADVANCE(190); + if (lookahead == '>') ADVANCE(130); END_STATE(); case 103: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(191); - if (lookahead == '>') ADVANCE(131); + if (lookahead == '>') ADVANCE(130); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 105: ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '|') ADVANCE(246); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(247); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 109: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(192); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(193); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(sym__glimmer_template_content); END_STATE(); case 117: ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(218); END_STATE(); case 118: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(219); + if (lookahead == '/') ADVANCE(117); + if (lookahead == '<') ADVANCE(119); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n') ADVANCE(118); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(116); END_STATE(); case 119: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(118); - if (lookahead == '<') ADVANCE(120); - if ((set_contains(extras_character_set_1, 10, lookahead)) && - lookahead != '\n') ADVANCE(119); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(117); + if (lookahead == '/') ADVANCE(53); END_STATE(); case 120: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(54); + ACCEPT_TOKEN(sym_glimmer_opening_tag); END_STATE(); case 121: - ACCEPT_TOKEN(sym_glimmer_opening_tag); + ACCEPT_TOKEN(sym_glimmer_closing_tag); END_STATE(); case 122: - ACCEPT_TOKEN(sym_glimmer_closing_tag); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 123: ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(194); + if (lookahead == '>') ADVANCE(152); END_STATE(); case 124: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(195); + if (lookahead == '=') ADVANCE(194); if (lookahead == '>') ADVANCE(153); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(195); - if (lookahead == '>') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 126: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(232); END_STATE(); case 127: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(232); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_QMARK_DOT); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 149: ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(144); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 151: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(145); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(140); + if (lookahead == '>') ADVANCE(155); END_STATE(); case 153: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(141); - if (lookahead == '>') ADVANCE(156); + if (lookahead == '>') ADVANCE(154); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); case 155: ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(141); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(142); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(142); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 159: ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(149); + if (lookahead == '=') ADVANCE(138); END_STATE(); case 160: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(150); - if (lookahead == '=') ADVANCE(139); + if (lookahead == '&') ADVANCE(148); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 162: ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(137); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 164: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(139); + if (lookahead == '|') ADVANCE(151); END_STATE(); case 165: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(140); - if (lookahead == '|') ADVANCE(152); + if (lookahead == '=') ADVANCE(139); + if (lookahead == '|') ADVANCE(151); + if (lookahead == '}') ADVANCE(247); END_STATE(); case 166: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(140); - if (lookahead == '|') ADVANCE(152); - if (lookahead == '}') ADVANCE(248); + if (lookahead == '|') ADVANCE(150); END_STATE(); case 167: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(151); + if (lookahead == '|') ADVANCE(150); + if (lookahead == '}') ADVANCE(247); END_STATE(); case 168: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(151); - if (lookahead == '}') ADVANCE(248); + if (lookahead == '}') ADVANCE(247); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '}') ADVANCE(248); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 170: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(198); END_STATE(); case 171: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(199); + if (lookahead == '+') ADVANCE(198); + if (lookahead == '=') ADVANCE(132); END_STATE(); case 172: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(199); - if (lookahead == '=') ADVANCE(133); + if (lookahead == '+') ADVANCE(198); + if (lookahead == '=') ADVANCE(132); + if (lookahead == '?') ADVANCE(29); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(199); - if (lookahead == '=') ADVANCE(133); - if (lookahead == '?') ADVANCE(30); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 174: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(199); END_STATE(); case 175: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(200); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '=') ADVANCE(133); END_STATE(); case 176: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '=') ADVANCE(134); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '=') ADVANCE(133); + if (lookahead == '?') ADVANCE(30); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '?') ADVANCE(31); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(218); END_STATE(); case 178: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(219); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(218); + if (lookahead == '=') ADVANCE(135); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(219); - if (lookahead == '=') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 180: ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(136); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 182: ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(143); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(144); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 184: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(157); + if (lookahead == '=') ADVANCE(189); END_STATE(); case 185: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(158); - if (lookahead == '=') ADVANCE(190); + if (lookahead == '<') ADVANCE(157); + if (lookahead == '=') ADVANCE(189); + if (lookahead == 't') ADVANCE(41); END_STATE(); case 186: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(158); - if (lookahead == '=') ADVANCE(190); - if (lookahead == 't') ADVANCE(42); + if (lookahead == '<') ADVANCE(156); + if (lookahead == '=') ADVANCE(189); END_STATE(); case 187: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(157); - if (lookahead == '=') ADVANCE(190); + if (lookahead == '<') ADVANCE(156); + if (lookahead == '=') ADVANCE(189); + if (lookahead == 't') ADVANCE(41); END_STATE(); case 188: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(157); - if (lookahead == '=') ADVANCE(190); - if (lookahead == 't') ADVANCE(42); + if (lookahead == 't') ADVANCE(41); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == 't') ADVANCE(42); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(191); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(192); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(193); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 196: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(147); - END_STATE(); - case 198: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 199: + case 198: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 200: + case 199: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 201: + case 200: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(203); - if (lookahead == '/') ADVANCE(205); + if (lookahead == '*') ADVANCE(202); + if (lookahead == '/') ADVANCE(204); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(206); + lookahead != '\\') ADVANCE(205); END_STATE(); - case 202: + case 201: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(202); - if (lookahead == '/') ADVANCE(206); + if (lookahead == '*') ADVANCE(201); + if (lookahead == '/') ADVANCE(205); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(203); + lookahead != '\\') ADVANCE(202); END_STATE(); - case 203: + case 202: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(202); + if (lookahead == '*') ADVANCE(201); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(203); + lookahead != '\\') ADVANCE(202); END_STATE(); - case 204: + case 203: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(201); + if (lookahead == '/') ADVANCE(200); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(204); + lookahead != '\r') ADVANCE(203); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(206); + lookahead != '\\') ADVANCE(205); END_STATE(); - case 205: + case 204: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(206); + lookahead == 0x2029) ADVANCE(205); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(205); + lookahead != '\\') ADVANCE(204); END_STATE(); - case 206: + case 205: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(206); + lookahead != '\\') ADVANCE(205); END_STATE(); - case 207: + case 206: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(209); - if (lookahead == '/') ADVANCE(211); + if (lookahead == '*') ADVANCE(208); + if (lookahead == '/') ADVANCE(210); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(212); + lookahead != '\\') ADVANCE(211); END_STATE(); - case 208: + case 207: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(208); - if (lookahead == '/') ADVANCE(212); + if (lookahead == '*') ADVANCE(207); + if (lookahead == '/') ADVANCE(211); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(209); + lookahead != '\\') ADVANCE(208); END_STATE(); - case 209: + case 208: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(208); + if (lookahead == '*') ADVANCE(207); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(209); + lookahead != '\\') ADVANCE(208); END_STATE(); - case 210: + case 209: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(207); + if (lookahead == '/') ADVANCE(206); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(210); + lookahead != '\r') ADVANCE(209); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(212); + lookahead != '\\') ADVANCE(211); END_STATE(); - case 211: + case 210: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(212); + lookahead == 0x2029) ADVANCE(211); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(211); + lookahead != '\\') ADVANCE(210); END_STATE(); - case 212: + case 211: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(212); + lookahead != '\\') ADVANCE(211); + END_STATE(); + case 212: + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 213: ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(56); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(236); END_STATE(); case 214: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(57); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(237); + if (lookahead == '\n' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(212); END_STATE(); case 215: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\n' || - lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(213); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(212); END_STATE(); case 216: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(213); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(215); END_STATE(); case 217: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(216); - END_STATE(); - case 218: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 219: + case 218: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != 0x2028 && - lookahead != 0x2029) ADVANCE(219); + lookahead != 0x2029) ADVANCE(218); END_STATE(); - case 220: + case 219: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 221: + case 220: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 222: + case 221: ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); - case 223: + case 222: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(29); - if (lookahead == '/') ADVANCE(22); - if (lookahead == '[') ADVANCE(39); - if (lookahead == '\\') ADVANCE(93); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(223); - if (lookahead != 0) ADVANCE(224); + if (lookahead == '\n') SKIP(28); + if (lookahead == '/') ADVANCE(21); + if (lookahead == '[') ADVANCE(38); + if (lookahead == '\\') ADVANCE(92); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(222); + if (lookahead != 0) ADVANCE(223); END_STATE(); - case 224: + case 223: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(39); - if (lookahead == '\\') ADVANCE(93); + if (lookahead == '[') ADVANCE(38); + if (lookahead == '\\') ADVANCE(92); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(224); + lookahead != '/') ADVANCE(223); END_STATE(); - case 225: + case 224: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(57); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(237); + if (lookahead == '\\') ADVANCE(56); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(236); END_STATE(); - case 226: + case 225: ACCEPT_TOKEN(sym_number); END_STATE(); - case 227: + case 226: ACCEPT_TOKEN(sym_number); ADVANCE_MAP( - '.', 235, - '0', 229, - '_', 73, - 'n', 226, - 'B', 69, - 'b', 69, - 'E', 68, - 'e', 68, - 'O', 70, - 'o', 70, - 'X', 78, - 'x', 78, + '.', 234, + '0', 228, + '_', 72, + 'n', 225, + 'B', 68, + 'b', 68, + 'E', 67, + 'e', 67, + 'O', 69, + 'o', 69, + 'X', 77, + 'x', 77, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(227); END_STATE(); - case 228: + case 227: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(235); - if (lookahead == '_') ADVANCE(71); - if (lookahead == 'n') ADVANCE(226); + if (lookahead == '.') ADVANCE(234); + if (lookahead == '_') ADVANCE(70); + if (lookahead == 'n') ADVANCE(225); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); + lookahead == 'e') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(227); + END_STATE(); + case 228: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(72); + if (lookahead == 'n') ADVANCE(225); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); END_STATE(); case 229: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(73); - if (lookahead == 'n') ADVANCE(226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == '_') ADVANCE(68); + if (lookahead == 'n') ADVANCE(225); + if (lookahead == '0' || + lookahead == '1') ADVANCE(229); END_STATE(); case 230: ACCEPT_TOKEN(sym_number); if (lookahead == '_') ADVANCE(69); - if (lookahead == 'n') ADVANCE(226); - if (lookahead == '0' || - lookahead == '1') ADVANCE(230); + if (lookahead == 'n') ADVANCE(225); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(230); END_STATE(); case 231: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(70); - if (lookahead == 'n') ADVANCE(226); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(231); + if (lookahead == '_') ADVANCE(77); + if (lookahead == 'n') ADVANCE(225); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(231); END_STATE(); case 232: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(78); - if (lookahead == 'n') ADVANCE(226); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); + if (lookahead == '_') ADVANCE(71); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(232); END_STATE(); case 233: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(72); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); + if (lookahead == '_') ADVANCE(73); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); END_STATE(); case 234: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(232); END_STATE(); case 235: - ACCEPT_TOKEN(sym_number); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(56); + if (lookahead == '{') ADVANCE(220); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(236); END_STATE(); case 236: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(57); - if (lookahead == '{') ADVANCE(221); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(237); + if (lookahead == '\\') ADVANCE(56); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(236); END_STATE(); case 237: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(57); + ACCEPT_TOKEN(sym_private_property_identifier); + if (lookahead == '\\') ADVANCE(55); if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(237); END_STATE(); case 238: - ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(56); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(238); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 240: ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(131); END_STATE(); case 241: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(132); + if (lookahead == '.') ADVANCE(131); + if (lookahead == '?') ADVANCE(196); END_STATE(); case 242: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '?') ADVANCE(197); + if (lookahead == '.') ADVANCE(131); + if (lookahead == '?') ADVANCE(195); END_STATE(); case 243: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '?') ADVANCE(196); - END_STATE(); - case 244: ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); END_STATE(); - case 245: + case 244: ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON); END_STATE(); - case 246: + case 245: ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); - case 247: + case 246: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 248: + case 247: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); default: @@ -13114,101 +14831,101 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 96, .external_lex_state = 2}, + [1] = {.lex_state = 95, .external_lex_state = 2}, [2] = {.lex_state = 4, .external_lex_state = 3}, [3] = {.lex_state = 4, .external_lex_state = 3}, - [4] = {.lex_state = 96, .external_lex_state = 2}, - [5] = {.lex_state = 96, .external_lex_state = 2}, - [6] = {.lex_state = 96, .external_lex_state = 2}, - [7] = {.lex_state = 96, .external_lex_state = 2}, - [8] = {.lex_state = 96, .external_lex_state = 2}, - [9] = {.lex_state = 96, .external_lex_state = 2}, - [10] = {.lex_state = 96, .external_lex_state = 2}, - [11] = {.lex_state = 96, .external_lex_state = 2}, - [12] = {.lex_state = 96, .external_lex_state = 2}, - [13] = {.lex_state = 96, .external_lex_state = 2}, - [14] = {.lex_state = 96, .external_lex_state = 2}, - [15] = {.lex_state = 96, .external_lex_state = 2}, - [16] = {.lex_state = 96, .external_lex_state = 2}, - [17] = {.lex_state = 96, .external_lex_state = 2}, - [18] = {.lex_state = 96, .external_lex_state = 2}, - [19] = {.lex_state = 96, .external_lex_state = 2}, - [20] = {.lex_state = 96, .external_lex_state = 2}, - [21] = {.lex_state = 96, .external_lex_state = 2}, - [22] = {.lex_state = 96, .external_lex_state = 2}, - [23] = {.lex_state = 96, .external_lex_state = 2}, - [24] = {.lex_state = 96, .external_lex_state = 2}, - [25] = {.lex_state = 96, .external_lex_state = 2}, - [26] = {.lex_state = 96, .external_lex_state = 2}, - [27] = {.lex_state = 96, .external_lex_state = 2}, - [28] = {.lex_state = 96, .external_lex_state = 2}, - [29] = {.lex_state = 96, .external_lex_state = 2}, - [30] = {.lex_state = 96, .external_lex_state = 2}, - [31] = {.lex_state = 96, .external_lex_state = 2}, - [32] = {.lex_state = 11, .external_lex_state = 2}, - [33] = {.lex_state = 96, .external_lex_state = 2}, - [34] = {.lex_state = 96, .external_lex_state = 2}, - [35] = {.lex_state = 96, .external_lex_state = 2}, - [36] = {.lex_state = 96, .external_lex_state = 2}, - [37] = {.lex_state = 96, .external_lex_state = 2}, - [38] = {.lex_state = 96, .external_lex_state = 2}, - [39] = {.lex_state = 96, .external_lex_state = 2}, - [40] = {.lex_state = 96, .external_lex_state = 2}, - [41] = {.lex_state = 96, .external_lex_state = 2}, - [42] = {.lex_state = 96, .external_lex_state = 2}, - [43] = {.lex_state = 96, .external_lex_state = 2}, - [44] = {.lex_state = 96, .external_lex_state = 2}, - [45] = {.lex_state = 11, .external_lex_state = 2}, - [46] = {.lex_state = 96, .external_lex_state = 2}, - [47] = {.lex_state = 96, .external_lex_state = 2}, - [48] = {.lex_state = 96, .external_lex_state = 2}, - [49] = {.lex_state = 96, .external_lex_state = 2}, - [50] = {.lex_state = 11, .external_lex_state = 2}, - [51] = {.lex_state = 11, .external_lex_state = 2}, - [52] = {.lex_state = 11, .external_lex_state = 2}, - [53] = {.lex_state = 96, .external_lex_state = 2}, - [54] = {.lex_state = 11, .external_lex_state = 2}, - [55] = {.lex_state = 11, .external_lex_state = 2}, + [4] = {.lex_state = 95, .external_lex_state = 2}, + [5] = {.lex_state = 95, .external_lex_state = 2}, + [6] = {.lex_state = 95, .external_lex_state = 2}, + [7] = {.lex_state = 95, .external_lex_state = 2}, + [8] = {.lex_state = 95, .external_lex_state = 2}, + [9] = {.lex_state = 95, .external_lex_state = 2}, + [10] = {.lex_state = 95, .external_lex_state = 2}, + [11] = {.lex_state = 95, .external_lex_state = 2}, + [12] = {.lex_state = 95, .external_lex_state = 2}, + [13] = {.lex_state = 95, .external_lex_state = 2}, + [14] = {.lex_state = 95, .external_lex_state = 2}, + [15] = {.lex_state = 95, .external_lex_state = 2}, + [16] = {.lex_state = 95, .external_lex_state = 2}, + [17] = {.lex_state = 95, .external_lex_state = 2}, + [18] = {.lex_state = 95, .external_lex_state = 2}, + [19] = {.lex_state = 95, .external_lex_state = 2}, + [20] = {.lex_state = 95, .external_lex_state = 2}, + [21] = {.lex_state = 95, .external_lex_state = 2}, + [22] = {.lex_state = 95, .external_lex_state = 2}, + [23] = {.lex_state = 95, .external_lex_state = 2}, + [24] = {.lex_state = 95, .external_lex_state = 2}, + [25] = {.lex_state = 95, .external_lex_state = 2}, + [26] = {.lex_state = 95, .external_lex_state = 2}, + [27] = {.lex_state = 95, .external_lex_state = 2}, + [28] = {.lex_state = 95, .external_lex_state = 2}, + [29] = {.lex_state = 95, .external_lex_state = 2}, + [30] = {.lex_state = 95, .external_lex_state = 2}, + [31] = {.lex_state = 11, .external_lex_state = 2}, + [32] = {.lex_state = 95, .external_lex_state = 2}, + [33] = {.lex_state = 95, .external_lex_state = 2}, + [34] = {.lex_state = 95, .external_lex_state = 2}, + [35] = {.lex_state = 95, .external_lex_state = 2}, + [36] = {.lex_state = 95, .external_lex_state = 2}, + [37] = {.lex_state = 95, .external_lex_state = 2}, + [38] = {.lex_state = 95, .external_lex_state = 2}, + [39] = {.lex_state = 11, .external_lex_state = 2}, + [40] = {.lex_state = 95, .external_lex_state = 2}, + [41] = {.lex_state = 95, .external_lex_state = 2}, + [42] = {.lex_state = 11, .external_lex_state = 2}, + [43] = {.lex_state = 11, .external_lex_state = 2}, + [44] = {.lex_state = 11, .external_lex_state = 2}, + [45] = {.lex_state = 95, .external_lex_state = 2}, + [46] = {.lex_state = 95, .external_lex_state = 2}, + [47] = {.lex_state = 11, .external_lex_state = 2}, + [48] = {.lex_state = 95, .external_lex_state = 2}, + [49] = {.lex_state = 11, .external_lex_state = 2}, + [50] = {.lex_state = 95, .external_lex_state = 2}, + [51] = {.lex_state = 95, .external_lex_state = 2}, + [52] = {.lex_state = 95, .external_lex_state = 2}, + [53] = {.lex_state = 95, .external_lex_state = 2}, + [54] = {.lex_state = 95, .external_lex_state = 2}, + [55] = {.lex_state = 95, .external_lex_state = 2}, [56] = {.lex_state = 11, .external_lex_state = 2}, [57] = {.lex_state = 11, .external_lex_state = 2}, [58] = {.lex_state = 11, .external_lex_state = 2}, - [59] = {.lex_state = 96, .external_lex_state = 2}, + [59] = {.lex_state = 95, .external_lex_state = 2}, [60] = {.lex_state = 3, .external_lex_state = 4}, [61] = {.lex_state = 3, .external_lex_state = 4}, [62] = {.lex_state = 3, .external_lex_state = 4}, - [63] = {.lex_state = 3, .external_lex_state = 3}, + [63] = {.lex_state = 11, .external_lex_state = 2}, [64] = {.lex_state = 3, .external_lex_state = 3}, - [65] = {.lex_state = 11, .external_lex_state = 2}, - [66] = {.lex_state = 3, .external_lex_state = 3}, + [65] = {.lex_state = 3, .external_lex_state = 3}, + [66] = {.lex_state = 11, .external_lex_state = 2}, [67] = {.lex_state = 3, .external_lex_state = 3}, - [68] = {.lex_state = 11, .external_lex_state = 2}, + [68] = {.lex_state = 3, .external_lex_state = 3}, [69] = {.lex_state = 3, .external_lex_state = 3}, [70] = {.lex_state = 3, .external_lex_state = 3}, [71] = {.lex_state = 3, .external_lex_state = 3}, - [72] = {.lex_state = 3, .external_lex_state = 3}, - [73] = {.lex_state = 11, .external_lex_state = 2}, - [74] = {.lex_state = 3, .external_lex_state = 3}, + [72] = {.lex_state = 11, .external_lex_state = 2}, + [73] = {.lex_state = 3, .external_lex_state = 3}, + [74] = {.lex_state = 11, .external_lex_state = 2}, [75] = {.lex_state = 11, .external_lex_state = 2}, - [76] = {.lex_state = 11, .external_lex_state = 2}, + [76] = {.lex_state = 3, .external_lex_state = 3}, [77] = {.lex_state = 3, .external_lex_state = 3}, [78] = {.lex_state = 11, .external_lex_state = 2}, [79] = {.lex_state = 11, .external_lex_state = 2}, [80] = {.lex_state = 11, .external_lex_state = 2}, - [81] = {.lex_state = 3, .external_lex_state = 4}, + [81] = {.lex_state = 3, .external_lex_state = 3}, [82] = {.lex_state = 3, .external_lex_state = 4}, - [83] = {.lex_state = 3, .external_lex_state = 4}, + [83] = {.lex_state = 3, .external_lex_state = 3}, [84] = {.lex_state = 3, .external_lex_state = 4}, - [85] = {.lex_state = 3, .external_lex_state = 4}, - [86] = {.lex_state = 3, .external_lex_state = 3}, + [85] = {.lex_state = 3, .external_lex_state = 3}, + [86] = {.lex_state = 3, .external_lex_state = 4}, [87] = {.lex_state = 3, .external_lex_state = 3}, [88] = {.lex_state = 3, .external_lex_state = 4}, [89] = {.lex_state = 3, .external_lex_state = 3}, [90] = {.lex_state = 3, .external_lex_state = 4}, [91] = {.lex_state = 3, .external_lex_state = 4}, - [92] = {.lex_state = 3, .external_lex_state = 3}, - [93] = {.lex_state = 3, .external_lex_state = 3}, - [94] = {.lex_state = 3, .external_lex_state = 3}, - [95] = {.lex_state = 3, .external_lex_state = 4}, + [92] = {.lex_state = 3, .external_lex_state = 4}, + [93] = {.lex_state = 3, .external_lex_state = 4}, + [94] = {.lex_state = 3, .external_lex_state = 4}, + [95] = {.lex_state = 3, .external_lex_state = 3}, [96] = {.lex_state = 3, .external_lex_state = 3}, [97] = {.lex_state = 3, .external_lex_state = 3}, [98] = {.lex_state = 3, .external_lex_state = 3}, @@ -13217,15 +14934,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 3, .external_lex_state = 3}, [102] = {.lex_state = 3, .external_lex_state = 3}, [103] = {.lex_state = 3, .external_lex_state = 3}, - [104] = {.lex_state = 3, .external_lex_state = 4}, + [104] = {.lex_state = 3, .external_lex_state = 3}, [105] = {.lex_state = 3, .external_lex_state = 3}, - [106] = {.lex_state = 3, .external_lex_state = 3}, - [107] = {.lex_state = 3, .external_lex_state = 4}, + [106] = {.lex_state = 3, .external_lex_state = 4}, + [107] = {.lex_state = 3, .external_lex_state = 3}, [108] = {.lex_state = 3, .external_lex_state = 3}, [109] = {.lex_state = 3, .external_lex_state = 3}, [110] = {.lex_state = 3, .external_lex_state = 3}, [111] = {.lex_state = 3, .external_lex_state = 4}, - [112] = {.lex_state = 3, .external_lex_state = 3}, + [112] = {.lex_state = 3, .external_lex_state = 4}, [113] = {.lex_state = 3, .external_lex_state = 3}, [114] = {.lex_state = 3, .external_lex_state = 3}, [115] = {.lex_state = 3, .external_lex_state = 3}, @@ -13240,7 +14957,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [124] = {.lex_state = 3, .external_lex_state = 3}, [125] = {.lex_state = 3, .external_lex_state = 3}, [126] = {.lex_state = 3, .external_lex_state = 3}, - [127] = {.lex_state = 11, .external_lex_state = 2}, + [127] = {.lex_state = 3, .external_lex_state = 3}, [128] = {.lex_state = 3, .external_lex_state = 3}, [129] = {.lex_state = 3, .external_lex_state = 3}, [130] = {.lex_state = 3, .external_lex_state = 3}, @@ -13250,7 +14967,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 3, .external_lex_state = 3}, [135] = {.lex_state = 3, .external_lex_state = 3}, [136] = {.lex_state = 3, .external_lex_state = 3}, - [137] = {.lex_state = 3, .external_lex_state = 3}, + [137] = {.lex_state = 11, .external_lex_state = 2}, [138] = {.lex_state = 11, .external_lex_state = 2}, [139] = {.lex_state = 11, .external_lex_state = 2}, [140] = {.lex_state = 11, .external_lex_state = 2}, @@ -13264,522 +14981,522 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [148] = {.lex_state = 11, .external_lex_state = 2}, [149] = {.lex_state = 11, .external_lex_state = 2}, [150] = {.lex_state = 11, .external_lex_state = 2}, - [151] = {.lex_state = 95, .external_lex_state = 3}, - [152] = {.lex_state = 95, .external_lex_state = 4}, - [153] = {.lex_state = 95, .external_lex_state = 4}, - [154] = {.lex_state = 95, .external_lex_state = 3}, - [155] = {.lex_state = 95, .external_lex_state = 4}, - [156] = {.lex_state = 95, .external_lex_state = 3}, - [157] = {.lex_state = 95, .external_lex_state = 3}, - [158] = {.lex_state = 95, .external_lex_state = 3}, - [159] = {.lex_state = 95, .external_lex_state = 3}, - [160] = {.lex_state = 95, .external_lex_state = 3}, - [161] = {.lex_state = 96, .external_lex_state = 2}, - [162] = {.lex_state = 5, .external_lex_state = 4}, - [163] = {.lex_state = 96, .external_lex_state = 2}, - [164] = {.lex_state = 5, .external_lex_state = 4}, - [165] = {.lex_state = 96, .external_lex_state = 2}, - [166] = {.lex_state = 96, .external_lex_state = 2}, - [167] = {.lex_state = 96, .external_lex_state = 2}, - [168] = {.lex_state = 96, .external_lex_state = 2}, - [169] = {.lex_state = 5, .external_lex_state = 3}, + [151] = {.lex_state = 94, .external_lex_state = 4}, + [152] = {.lex_state = 94, .external_lex_state = 3}, + [153] = {.lex_state = 94, .external_lex_state = 4}, + [154] = {.lex_state = 94, .external_lex_state = 3}, + [155] = {.lex_state = 94, .external_lex_state = 4}, + [156] = {.lex_state = 94, .external_lex_state = 3}, + [157] = {.lex_state = 94, .external_lex_state = 3}, + [158] = {.lex_state = 94, .external_lex_state = 3}, + [159] = {.lex_state = 94, .external_lex_state = 3}, + [160] = {.lex_state = 94, .external_lex_state = 3}, + [161] = {.lex_state = 95, .external_lex_state = 2}, + [162] = {.lex_state = 95, .external_lex_state = 2}, + [163] = {.lex_state = 95, .external_lex_state = 2}, + [164] = {.lex_state = 95, .external_lex_state = 2}, + [165] = {.lex_state = 5, .external_lex_state = 3}, + [166] = {.lex_state = 95, .external_lex_state = 2}, + [167] = {.lex_state = 95, .external_lex_state = 2}, + [168] = {.lex_state = 5, .external_lex_state = 4}, + [169] = {.lex_state = 5, .external_lex_state = 4}, [170] = {.lex_state = 5, .external_lex_state = 3}, [171] = {.lex_state = 5, .external_lex_state = 3}, [172] = {.lex_state = 5, .external_lex_state = 3}, [173] = {.lex_state = 5, .external_lex_state = 3}, - [174] = {.lex_state = 5, .external_lex_state = 3}, + [174] = {.lex_state = 5, .external_lex_state = 4}, [175] = {.lex_state = 5, .external_lex_state = 3}, - [176] = {.lex_state = 5, .external_lex_state = 4}, + [176] = {.lex_state = 5, .external_lex_state = 3}, [177] = {.lex_state = 5, .external_lex_state = 3}, [178] = {.lex_state = 5, .external_lex_state = 3}, [179] = {.lex_state = 5, .external_lex_state = 3}, [180] = {.lex_state = 5, .external_lex_state = 3}, [181] = {.lex_state = 5, .external_lex_state = 3}, - [182] = {.lex_state = 96, .external_lex_state = 2}, - [183] = {.lex_state = 96, .external_lex_state = 2}, - [184] = {.lex_state = 96, .external_lex_state = 2}, - [185] = {.lex_state = 96, .external_lex_state = 2}, - [186] = {.lex_state = 96, .external_lex_state = 2}, - [187] = {.lex_state = 96, .external_lex_state = 2}, - [188] = {.lex_state = 96, .external_lex_state = 2}, - [189] = {.lex_state = 96, .external_lex_state = 2}, - [190] = {.lex_state = 96, .external_lex_state = 2}, - [191] = {.lex_state = 96, .external_lex_state = 2}, - [192] = {.lex_state = 96, .external_lex_state = 2}, - [193] = {.lex_state = 96, .external_lex_state = 2}, - [194] = {.lex_state = 95, .external_lex_state = 4}, - [195] = {.lex_state = 96, .external_lex_state = 2}, - [196] = {.lex_state = 96, .external_lex_state = 2}, - [197] = {.lex_state = 96, .external_lex_state = 2}, - [198] = {.lex_state = 95, .external_lex_state = 4}, - [199] = {.lex_state = 96, .external_lex_state = 2}, - [200] = {.lex_state = 96, .external_lex_state = 2}, - [201] = {.lex_state = 96, .external_lex_state = 2}, - [202] = {.lex_state = 96, .external_lex_state = 2}, - [203] = {.lex_state = 95, .external_lex_state = 4}, - [204] = {.lex_state = 96, .external_lex_state = 2}, - [205] = {.lex_state = 95, .external_lex_state = 4}, - [206] = {.lex_state = 96, .external_lex_state = 2}, - [207] = {.lex_state = 95, .external_lex_state = 4}, - [208] = {.lex_state = 95, .external_lex_state = 4}, - [209] = {.lex_state = 95, .external_lex_state = 4}, - [210] = {.lex_state = 95, .external_lex_state = 4}, - [211] = {.lex_state = 95, .external_lex_state = 4}, - [212] = {.lex_state = 95, .external_lex_state = 4}, - [213] = {.lex_state = 95, .external_lex_state = 4}, - [214] = {.lex_state = 95, .external_lex_state = 4}, - [215] = {.lex_state = 96, .external_lex_state = 2}, - [216] = {.lex_state = 95, .external_lex_state = 4}, - [217] = {.lex_state = 96, .external_lex_state = 2}, - [218] = {.lex_state = 95, .external_lex_state = 4}, - [219] = {.lex_state = 95, .external_lex_state = 4}, - [220] = {.lex_state = 95, .external_lex_state = 4}, - [221] = {.lex_state = 96, .external_lex_state = 5}, - [222] = {.lex_state = 95, .external_lex_state = 4}, - [223] = {.lex_state = 95, .external_lex_state = 4}, - [224] = {.lex_state = 95, .external_lex_state = 4}, - [225] = {.lex_state = 95, .external_lex_state = 4}, - [226] = {.lex_state = 95, .external_lex_state = 4}, - [227] = {.lex_state = 95, .external_lex_state = 4}, - [228] = {.lex_state = 95, .external_lex_state = 4}, - [229] = {.lex_state = 96, .external_lex_state = 2}, - [230] = {.lex_state = 95, .external_lex_state = 4}, - [231] = {.lex_state = 95, .external_lex_state = 4}, - [232] = {.lex_state = 95, .external_lex_state = 4}, - [233] = {.lex_state = 95, .external_lex_state = 4}, - [234] = {.lex_state = 95, .external_lex_state = 4}, - [235] = {.lex_state = 95, .external_lex_state = 4}, - [236] = {.lex_state = 96, .external_lex_state = 2}, - [237] = {.lex_state = 96, .external_lex_state = 2}, - [238] = {.lex_state = 96, .external_lex_state = 2}, - [239] = {.lex_state = 96, .external_lex_state = 2}, - [240] = {.lex_state = 96, .external_lex_state = 2}, - [241] = {.lex_state = 96, .external_lex_state = 2}, - [242] = {.lex_state = 96, .external_lex_state = 2}, - [243] = {.lex_state = 96, .external_lex_state = 2}, - [244] = {.lex_state = 96, .external_lex_state = 2}, + [182] = {.lex_state = 95, .external_lex_state = 2}, + [183] = {.lex_state = 95, .external_lex_state = 2}, + [184] = {.lex_state = 95, .external_lex_state = 2}, + [185] = {.lex_state = 95, .external_lex_state = 2}, + [186] = {.lex_state = 95, .external_lex_state = 2}, + [187] = {.lex_state = 95, .external_lex_state = 2}, + [188] = {.lex_state = 95, .external_lex_state = 2}, + [189] = {.lex_state = 95, .external_lex_state = 2}, + [190] = {.lex_state = 95, .external_lex_state = 2}, + [191] = {.lex_state = 95, .external_lex_state = 2}, + [192] = {.lex_state = 95, .external_lex_state = 2}, + [193] = {.lex_state = 95, .external_lex_state = 2}, + [194] = {.lex_state = 94, .external_lex_state = 4}, + [195] = {.lex_state = 95, .external_lex_state = 2}, + [196] = {.lex_state = 95, .external_lex_state = 2}, + [197] = {.lex_state = 95, .external_lex_state = 2}, + [198] = {.lex_state = 94, .external_lex_state = 4}, + [199] = {.lex_state = 94, .external_lex_state = 4}, + [200] = {.lex_state = 95, .external_lex_state = 2}, + [201] = {.lex_state = 95, .external_lex_state = 2}, + [202] = {.lex_state = 95, .external_lex_state = 2}, + [203] = {.lex_state = 94, .external_lex_state = 4}, + [204] = {.lex_state = 95, .external_lex_state = 2}, + [205] = {.lex_state = 95, .external_lex_state = 2}, + [206] = {.lex_state = 94, .external_lex_state = 4}, + [207] = {.lex_state = 94, .external_lex_state = 4}, + [208] = {.lex_state = 94, .external_lex_state = 4}, + [209] = {.lex_state = 94, .external_lex_state = 4}, + [210] = {.lex_state = 94, .external_lex_state = 4}, + [211] = {.lex_state = 95, .external_lex_state = 2}, + [212] = {.lex_state = 94, .external_lex_state = 4}, + [213] = {.lex_state = 95, .external_lex_state = 2}, + [214] = {.lex_state = 95, .external_lex_state = 2}, + [215] = {.lex_state = 94, .external_lex_state = 4}, + [216] = {.lex_state = 95, .external_lex_state = 2}, + [217] = {.lex_state = 94, .external_lex_state = 4}, + [218] = {.lex_state = 94, .external_lex_state = 4}, + [219] = {.lex_state = 94, .external_lex_state = 4}, + [220] = {.lex_state = 94, .external_lex_state = 4}, + [221] = {.lex_state = 94, .external_lex_state = 4}, + [222] = {.lex_state = 94, .external_lex_state = 4}, + [223] = {.lex_state = 94, .external_lex_state = 4}, + [224] = {.lex_state = 94, .external_lex_state = 4}, + [225] = {.lex_state = 94, .external_lex_state = 4}, + [226] = {.lex_state = 94, .external_lex_state = 4}, + [227] = {.lex_state = 94, .external_lex_state = 4}, + [228] = {.lex_state = 94, .external_lex_state = 4}, + [229] = {.lex_state = 94, .external_lex_state = 4}, + [230] = {.lex_state = 94, .external_lex_state = 4}, + [231] = {.lex_state = 95, .external_lex_state = 5}, + [232] = {.lex_state = 94, .external_lex_state = 4}, + [233] = {.lex_state = 94, .external_lex_state = 4}, + [234] = {.lex_state = 94, .external_lex_state = 4}, + [235] = {.lex_state = 94, .external_lex_state = 4}, + [236] = {.lex_state = 95, .external_lex_state = 2}, + [237] = {.lex_state = 95, .external_lex_state = 2}, + [238] = {.lex_state = 95, .external_lex_state = 2}, + [239] = {.lex_state = 95, .external_lex_state = 2}, + [240] = {.lex_state = 95, .external_lex_state = 2}, + [241] = {.lex_state = 95, .external_lex_state = 2}, + [242] = {.lex_state = 95, .external_lex_state = 2}, + [243] = {.lex_state = 95, .external_lex_state = 2}, + [244] = {.lex_state = 95, .external_lex_state = 2}, [245] = {.lex_state = 3, .external_lex_state = 3}, - [246] = {.lex_state = 96, .external_lex_state = 2}, - [247] = {.lex_state = 96, .external_lex_state = 2}, - [248] = {.lex_state = 96, .external_lex_state = 2}, - [249] = {.lex_state = 96, .external_lex_state = 2}, - [250] = {.lex_state = 96, .external_lex_state = 2}, - [251] = {.lex_state = 96, .external_lex_state = 2}, - [252] = {.lex_state = 96, .external_lex_state = 2}, - [253] = {.lex_state = 96, .external_lex_state = 2}, - [254] = {.lex_state = 96, .external_lex_state = 2}, - [255] = {.lex_state = 96, .external_lex_state = 2}, - [256] = {.lex_state = 96, .external_lex_state = 2}, - [257] = {.lex_state = 3, .external_lex_state = 3}, - [258] = {.lex_state = 3, .external_lex_state = 3}, - [259] = {.lex_state = 96, .external_lex_state = 2}, - [260] = {.lex_state = 96, .external_lex_state = 2}, - [261] = {.lex_state = 96, .external_lex_state = 2}, - [262] = {.lex_state = 96, .external_lex_state = 2}, + [246] = {.lex_state = 3, .external_lex_state = 3}, + [247] = {.lex_state = 95, .external_lex_state = 2}, + [248] = {.lex_state = 95, .external_lex_state = 2}, + [249] = {.lex_state = 95, .external_lex_state = 2}, + [250] = {.lex_state = 95, .external_lex_state = 2}, + [251] = {.lex_state = 95, .external_lex_state = 2}, + [252] = {.lex_state = 3, .external_lex_state = 3}, + [253] = {.lex_state = 95, .external_lex_state = 2}, + [254] = {.lex_state = 95, .external_lex_state = 2}, + [255] = {.lex_state = 95, .external_lex_state = 2}, + [256] = {.lex_state = 95, .external_lex_state = 2}, + [257] = {.lex_state = 95, .external_lex_state = 2}, + [258] = {.lex_state = 95, .external_lex_state = 2}, + [259] = {.lex_state = 95, .external_lex_state = 2}, + [260] = {.lex_state = 95, .external_lex_state = 2}, + [261] = {.lex_state = 95, .external_lex_state = 2}, + [262] = {.lex_state = 95, .external_lex_state = 2}, [263] = {.lex_state = 3, .external_lex_state = 3}, - [264] = {.lex_state = 96, .external_lex_state = 2}, - [265] = {.lex_state = 96, .external_lex_state = 2}, - [266] = {.lex_state = 96, .external_lex_state = 2}, - [267] = {.lex_state = 96, .external_lex_state = 2}, - [268] = {.lex_state = 96, .external_lex_state = 2}, - [269] = {.lex_state = 96, .external_lex_state = 2}, - [270] = {.lex_state = 96, .external_lex_state = 2}, - [271] = {.lex_state = 96, .external_lex_state = 2}, - [272] = {.lex_state = 96, .external_lex_state = 2}, - [273] = {.lex_state = 96, .external_lex_state = 2}, - [274] = {.lex_state = 96, .external_lex_state = 2}, - [275] = {.lex_state = 96, .external_lex_state = 2}, - [276] = {.lex_state = 96, .external_lex_state = 2}, - [277] = {.lex_state = 96, .external_lex_state = 2}, - [278] = {.lex_state = 96, .external_lex_state = 2}, - [279] = {.lex_state = 96, .external_lex_state = 2}, - [280] = {.lex_state = 96, .external_lex_state = 2}, - [281] = {.lex_state = 96, .external_lex_state = 2}, - [282] = {.lex_state = 96, .external_lex_state = 2}, - [283] = {.lex_state = 96, .external_lex_state = 2}, - [284] = {.lex_state = 96, .external_lex_state = 2}, - [285] = {.lex_state = 96, .external_lex_state = 2}, - [286] = {.lex_state = 96, .external_lex_state = 2}, - [287] = {.lex_state = 96, .external_lex_state = 2}, - [288] = {.lex_state = 96, .external_lex_state = 2}, - [289] = {.lex_state = 96, .external_lex_state = 5}, - [290] = {.lex_state = 96, .external_lex_state = 2}, - [291] = {.lex_state = 96, .external_lex_state = 2}, - [292] = {.lex_state = 96, .external_lex_state = 2}, - [293] = {.lex_state = 96, .external_lex_state = 2}, - [294] = {.lex_state = 96, .external_lex_state = 2}, - [295] = {.lex_state = 96, .external_lex_state = 2}, - [296] = {.lex_state = 96, .external_lex_state = 2}, - [297] = {.lex_state = 96, .external_lex_state = 2}, - [298] = {.lex_state = 96, .external_lex_state = 2}, - [299] = {.lex_state = 96, .external_lex_state = 2}, - [300] = {.lex_state = 96, .external_lex_state = 2}, - [301] = {.lex_state = 96, .external_lex_state = 2}, - [302] = {.lex_state = 96, .external_lex_state = 2}, - [303] = {.lex_state = 96, .external_lex_state = 2}, - [304] = {.lex_state = 96, .external_lex_state = 2}, - [305] = {.lex_state = 96, .external_lex_state = 2}, - [306] = {.lex_state = 96, .external_lex_state = 2}, - [307] = {.lex_state = 96, .external_lex_state = 2}, - [308] = {.lex_state = 96, .external_lex_state = 2}, - [309] = {.lex_state = 96, .external_lex_state = 2}, - [310] = {.lex_state = 96, .external_lex_state = 2}, - [311] = {.lex_state = 96, .external_lex_state = 2}, - [312] = {.lex_state = 96, .external_lex_state = 2}, - [313] = {.lex_state = 96, .external_lex_state = 2}, - [314] = {.lex_state = 96, .external_lex_state = 2}, - [315] = {.lex_state = 96, .external_lex_state = 2}, - [316] = {.lex_state = 96, .external_lex_state = 2}, - [317] = {.lex_state = 96, .external_lex_state = 2}, - [318] = {.lex_state = 96, .external_lex_state = 2}, - [319] = {.lex_state = 96, .external_lex_state = 2}, - [320] = {.lex_state = 96, .external_lex_state = 2}, - [321] = {.lex_state = 96, .external_lex_state = 2}, - [322] = {.lex_state = 96, .external_lex_state = 2}, - [323] = {.lex_state = 96, .external_lex_state = 2}, - [324] = {.lex_state = 96, .external_lex_state = 2}, - [325] = {.lex_state = 96, .external_lex_state = 2}, - [326] = {.lex_state = 96, .external_lex_state = 2}, - [327] = {.lex_state = 96, .external_lex_state = 2}, - [328] = {.lex_state = 96, .external_lex_state = 2}, - [329] = {.lex_state = 96, .external_lex_state = 2}, - [330] = {.lex_state = 96, .external_lex_state = 2}, - [331] = {.lex_state = 96, .external_lex_state = 2}, - [332] = {.lex_state = 96, .external_lex_state = 2}, - [333] = {.lex_state = 96, .external_lex_state = 2}, - [334] = {.lex_state = 96, .external_lex_state = 2}, - [335] = {.lex_state = 96, .external_lex_state = 2}, - [336] = {.lex_state = 96, .external_lex_state = 2}, - [337] = {.lex_state = 96, .external_lex_state = 2}, - [338] = {.lex_state = 96, .external_lex_state = 2}, - [339] = {.lex_state = 96, .external_lex_state = 2}, - [340] = {.lex_state = 96, .external_lex_state = 2}, - [341] = {.lex_state = 96, .external_lex_state = 2}, - [342] = {.lex_state = 96, .external_lex_state = 2}, - [343] = {.lex_state = 96, .external_lex_state = 2}, - [344] = {.lex_state = 96, .external_lex_state = 2}, - [345] = {.lex_state = 96, .external_lex_state = 2}, - [346] = {.lex_state = 96, .external_lex_state = 2}, - [347] = {.lex_state = 96, .external_lex_state = 2}, - [348] = {.lex_state = 96, .external_lex_state = 2}, - [349] = {.lex_state = 96, .external_lex_state = 2}, - [350] = {.lex_state = 96, .external_lex_state = 2}, - [351] = {.lex_state = 96, .external_lex_state = 2}, - [352] = {.lex_state = 96, .external_lex_state = 2}, - [353] = {.lex_state = 96, .external_lex_state = 2}, - [354] = {.lex_state = 96, .external_lex_state = 2}, - [355] = {.lex_state = 96, .external_lex_state = 2}, - [356] = {.lex_state = 96, .external_lex_state = 2}, - [357] = {.lex_state = 96, .external_lex_state = 2}, - [358] = {.lex_state = 96, .external_lex_state = 2}, - [359] = {.lex_state = 96, .external_lex_state = 2}, - [360] = {.lex_state = 96, .external_lex_state = 2}, - [361] = {.lex_state = 96, .external_lex_state = 2}, - [362] = {.lex_state = 96, .external_lex_state = 2}, - [363] = {.lex_state = 96, .external_lex_state = 2}, - [364] = {.lex_state = 96, .external_lex_state = 2}, - [365] = {.lex_state = 96, .external_lex_state = 2}, - [366] = {.lex_state = 96, .external_lex_state = 2}, - [367] = {.lex_state = 96, .external_lex_state = 2}, - [368] = {.lex_state = 96, .external_lex_state = 2}, - [369] = {.lex_state = 96, .external_lex_state = 2}, - [370] = {.lex_state = 96, .external_lex_state = 2}, - [371] = {.lex_state = 96, .external_lex_state = 2}, - [372] = {.lex_state = 96, .external_lex_state = 2}, - [373] = {.lex_state = 96, .external_lex_state = 2}, - [374] = {.lex_state = 96, .external_lex_state = 2}, - [375] = {.lex_state = 96, .external_lex_state = 2}, - [376] = {.lex_state = 96, .external_lex_state = 2}, - [377] = {.lex_state = 96, .external_lex_state = 2}, - [378] = {.lex_state = 96, .external_lex_state = 2}, - [379] = {.lex_state = 96, .external_lex_state = 2}, - [380] = {.lex_state = 96, .external_lex_state = 2}, - [381] = {.lex_state = 96, .external_lex_state = 2}, - [382] = {.lex_state = 96, .external_lex_state = 2}, - [383] = {.lex_state = 96, .external_lex_state = 2}, - [384] = {.lex_state = 96, .external_lex_state = 2}, - [385] = {.lex_state = 96, .external_lex_state = 2}, - [386] = {.lex_state = 96, .external_lex_state = 2}, - [387] = {.lex_state = 96, .external_lex_state = 2}, - [388] = {.lex_state = 96, .external_lex_state = 2}, - [389] = {.lex_state = 96, .external_lex_state = 2}, - [390] = {.lex_state = 96, .external_lex_state = 2}, - [391] = {.lex_state = 96, .external_lex_state = 2}, - [392] = {.lex_state = 96, .external_lex_state = 2}, - [393] = {.lex_state = 96, .external_lex_state = 2}, - [394] = {.lex_state = 96, .external_lex_state = 2}, - [395] = {.lex_state = 96, .external_lex_state = 2}, - [396] = {.lex_state = 96, .external_lex_state = 2}, - [397] = {.lex_state = 96, .external_lex_state = 2}, - [398] = {.lex_state = 96, .external_lex_state = 2}, - [399] = {.lex_state = 96, .external_lex_state = 2}, - [400] = {.lex_state = 96, .external_lex_state = 2}, - [401] = {.lex_state = 96, .external_lex_state = 2}, - [402] = {.lex_state = 96, .external_lex_state = 2}, - [403] = {.lex_state = 96, .external_lex_state = 2}, - [404] = {.lex_state = 96, .external_lex_state = 2}, - [405] = {.lex_state = 96, .external_lex_state = 2}, - [406] = {.lex_state = 96, .external_lex_state = 2}, - [407] = {.lex_state = 96, .external_lex_state = 2}, - [408] = {.lex_state = 96, .external_lex_state = 2}, - [409] = {.lex_state = 96, .external_lex_state = 2}, - [410] = {.lex_state = 96, .external_lex_state = 2}, - [411] = {.lex_state = 96, .external_lex_state = 2}, - [412] = {.lex_state = 96, .external_lex_state = 2}, - [413] = {.lex_state = 96, .external_lex_state = 2}, - [414] = {.lex_state = 96, .external_lex_state = 2}, - [415] = {.lex_state = 96, .external_lex_state = 2}, - [416] = {.lex_state = 96, .external_lex_state = 2}, - [417] = {.lex_state = 96, .external_lex_state = 2}, - [418] = {.lex_state = 96, .external_lex_state = 2}, - [419] = {.lex_state = 96, .external_lex_state = 2}, - [420] = {.lex_state = 96, .external_lex_state = 2}, - [421] = {.lex_state = 96, .external_lex_state = 2}, - [422] = {.lex_state = 96, .external_lex_state = 2}, - [423] = {.lex_state = 96, .external_lex_state = 2}, - [424] = {.lex_state = 96, .external_lex_state = 2}, - [425] = {.lex_state = 96, .external_lex_state = 2}, - [426] = {.lex_state = 96, .external_lex_state = 2}, - [427] = {.lex_state = 96, .external_lex_state = 2}, - [428] = {.lex_state = 96, .external_lex_state = 2}, - [429] = {.lex_state = 96, .external_lex_state = 2}, - [430] = {.lex_state = 96, .external_lex_state = 2}, - [431] = {.lex_state = 96, .external_lex_state = 2}, - [432] = {.lex_state = 96, .external_lex_state = 2}, - [433] = {.lex_state = 96, .external_lex_state = 2}, - [434] = {.lex_state = 96, .external_lex_state = 2}, - [435] = {.lex_state = 96, .external_lex_state = 2}, - [436] = {.lex_state = 96, .external_lex_state = 2}, - [437] = {.lex_state = 96, .external_lex_state = 2}, - [438] = {.lex_state = 96, .external_lex_state = 2}, - [439] = {.lex_state = 96, .external_lex_state = 2}, - [440] = {.lex_state = 96, .external_lex_state = 2}, - [441] = {.lex_state = 96, .external_lex_state = 2}, - [442] = {.lex_state = 96, .external_lex_state = 2}, - [443] = {.lex_state = 96, .external_lex_state = 2}, - [444] = {.lex_state = 96, .external_lex_state = 2}, - [445] = {.lex_state = 96, .external_lex_state = 2}, - [446] = {.lex_state = 96, .external_lex_state = 2}, - [447] = {.lex_state = 96, .external_lex_state = 2}, - [448] = {.lex_state = 96, .external_lex_state = 2}, - [449] = {.lex_state = 96, .external_lex_state = 2}, - [450] = {.lex_state = 96, .external_lex_state = 2}, - [451] = {.lex_state = 96, .external_lex_state = 2}, - [452] = {.lex_state = 96, .external_lex_state = 2}, - [453] = {.lex_state = 96, .external_lex_state = 2}, - [454] = {.lex_state = 96, .external_lex_state = 2}, - [455] = {.lex_state = 96, .external_lex_state = 2}, - [456] = {.lex_state = 96, .external_lex_state = 2}, - [457] = {.lex_state = 96, .external_lex_state = 2}, - [458] = {.lex_state = 96, .external_lex_state = 2}, - [459] = {.lex_state = 96, .external_lex_state = 2}, - [460] = {.lex_state = 96, .external_lex_state = 2}, - [461] = {.lex_state = 96, .external_lex_state = 2}, - [462] = {.lex_state = 96, .external_lex_state = 2}, - [463] = {.lex_state = 96, .external_lex_state = 2}, - [464] = {.lex_state = 96, .external_lex_state = 2}, - [465] = {.lex_state = 96, .external_lex_state = 2}, - [466] = {.lex_state = 96, .external_lex_state = 2}, - [467] = {.lex_state = 96, .external_lex_state = 2}, - [468] = {.lex_state = 96, .external_lex_state = 2}, - [469] = {.lex_state = 96, .external_lex_state = 2}, - [470] = {.lex_state = 96, .external_lex_state = 2}, - [471] = {.lex_state = 96, .external_lex_state = 2}, - [472] = {.lex_state = 96, .external_lex_state = 2}, - [473] = {.lex_state = 96, .external_lex_state = 2}, - [474] = {.lex_state = 96, .external_lex_state = 2}, - [475] = {.lex_state = 96, .external_lex_state = 2}, - [476] = {.lex_state = 96, .external_lex_state = 2}, - [477] = {.lex_state = 96, .external_lex_state = 2}, - [478] = {.lex_state = 96, .external_lex_state = 2}, - [479] = {.lex_state = 96, .external_lex_state = 2}, - [480] = {.lex_state = 96, .external_lex_state = 2}, - [481] = {.lex_state = 96, .external_lex_state = 2}, - [482] = {.lex_state = 96, .external_lex_state = 2}, - [483] = {.lex_state = 96, .external_lex_state = 2}, - [484] = {.lex_state = 96, .external_lex_state = 2}, - [485] = {.lex_state = 96, .external_lex_state = 2}, - [486] = {.lex_state = 96, .external_lex_state = 2}, - [487] = {.lex_state = 96, .external_lex_state = 2}, - [488] = {.lex_state = 96, .external_lex_state = 2}, - [489] = {.lex_state = 96, .external_lex_state = 2}, - [490] = {.lex_state = 96, .external_lex_state = 2}, - [491] = {.lex_state = 96, .external_lex_state = 2}, - [492] = {.lex_state = 96, .external_lex_state = 2}, - [493] = {.lex_state = 96, .external_lex_state = 2}, - [494] = {.lex_state = 96, .external_lex_state = 2}, - [495] = {.lex_state = 96, .external_lex_state = 2}, - [496] = {.lex_state = 96, .external_lex_state = 2}, - [497] = {.lex_state = 96, .external_lex_state = 2}, - [498] = {.lex_state = 96, .external_lex_state = 2}, - [499] = {.lex_state = 96, .external_lex_state = 2}, - [500] = {.lex_state = 96, .external_lex_state = 2}, - [501] = {.lex_state = 96, .external_lex_state = 2}, - [502] = {.lex_state = 96, .external_lex_state = 2}, - [503] = {.lex_state = 96, .external_lex_state = 2}, - [504] = {.lex_state = 96, .external_lex_state = 2}, - [505] = {.lex_state = 96, .external_lex_state = 2}, - [506] = {.lex_state = 96, .external_lex_state = 2}, - [507] = {.lex_state = 96, .external_lex_state = 2}, - [508] = {.lex_state = 96, .external_lex_state = 2}, - [509] = {.lex_state = 96, .external_lex_state = 2}, - [510] = {.lex_state = 96, .external_lex_state = 2}, - [511] = {.lex_state = 96, .external_lex_state = 2}, - [512] = {.lex_state = 96, .external_lex_state = 2}, - [513] = {.lex_state = 96, .external_lex_state = 2}, - [514] = {.lex_state = 96, .external_lex_state = 2}, - [515] = {.lex_state = 96, .external_lex_state = 2}, - [516] = {.lex_state = 96, .external_lex_state = 2}, - [517] = {.lex_state = 96, .external_lex_state = 2}, - [518] = {.lex_state = 96, .external_lex_state = 2}, - [519] = {.lex_state = 96, .external_lex_state = 2}, - [520] = {.lex_state = 96, .external_lex_state = 2}, - [521] = {.lex_state = 96, .external_lex_state = 2}, - [522] = {.lex_state = 96, .external_lex_state = 2}, - [523] = {.lex_state = 96, .external_lex_state = 2}, - [524] = {.lex_state = 96, .external_lex_state = 2}, - [525] = {.lex_state = 96, .external_lex_state = 2}, - [526] = {.lex_state = 96, .external_lex_state = 2}, - [527] = {.lex_state = 96, .external_lex_state = 2}, - [528] = {.lex_state = 96, .external_lex_state = 2}, - [529] = {.lex_state = 96, .external_lex_state = 2}, - [530] = {.lex_state = 96, .external_lex_state = 2}, - [531] = {.lex_state = 96, .external_lex_state = 2}, - [532] = {.lex_state = 96, .external_lex_state = 2}, - [533] = {.lex_state = 96, .external_lex_state = 2}, - [534] = {.lex_state = 96, .external_lex_state = 2}, - [535] = {.lex_state = 96, .external_lex_state = 2}, - [536] = {.lex_state = 96, .external_lex_state = 2}, - [537] = {.lex_state = 96, .external_lex_state = 2}, - [538] = {.lex_state = 96, .external_lex_state = 2}, - [539] = {.lex_state = 96, .external_lex_state = 2}, - [540] = {.lex_state = 96, .external_lex_state = 2}, - [541] = {.lex_state = 96, .external_lex_state = 2}, - [542] = {.lex_state = 96, .external_lex_state = 2}, - [543] = {.lex_state = 96, .external_lex_state = 2}, - [544] = {.lex_state = 96, .external_lex_state = 2}, - [545] = {.lex_state = 96, .external_lex_state = 2}, - [546] = {.lex_state = 96, .external_lex_state = 2}, - [547] = {.lex_state = 96, .external_lex_state = 2}, - [548] = {.lex_state = 96, .external_lex_state = 2}, - [549] = {.lex_state = 96, .external_lex_state = 2}, - [550] = {.lex_state = 96, .external_lex_state = 2}, - [551] = {.lex_state = 96, .external_lex_state = 2}, - [552] = {.lex_state = 96, .external_lex_state = 2}, - [553] = {.lex_state = 96, .external_lex_state = 2}, - [554] = {.lex_state = 96, .external_lex_state = 2}, - [555] = {.lex_state = 96, .external_lex_state = 2}, - [556] = {.lex_state = 96, .external_lex_state = 2}, - [557] = {.lex_state = 96, .external_lex_state = 2}, - [558] = {.lex_state = 96, .external_lex_state = 2}, - [559] = {.lex_state = 96, .external_lex_state = 2}, - [560] = {.lex_state = 96, .external_lex_state = 2}, - [561] = {.lex_state = 96, .external_lex_state = 2}, - [562] = {.lex_state = 96, .external_lex_state = 2}, - [563] = {.lex_state = 96, .external_lex_state = 2}, - [564] = {.lex_state = 96, .external_lex_state = 2}, - [565] = {.lex_state = 96, .external_lex_state = 2}, - [566] = {.lex_state = 96, .external_lex_state = 2}, - [567] = {.lex_state = 96, .external_lex_state = 2}, - [568] = {.lex_state = 96, .external_lex_state = 2}, - [569] = {.lex_state = 96, .external_lex_state = 2}, - [570] = {.lex_state = 96, .external_lex_state = 2}, - [571] = {.lex_state = 96, .external_lex_state = 2}, - [572] = {.lex_state = 96, .external_lex_state = 2}, - [573] = {.lex_state = 96, .external_lex_state = 2}, - [574] = {.lex_state = 96, .external_lex_state = 2}, - [575] = {.lex_state = 96, .external_lex_state = 2}, - [576] = {.lex_state = 96, .external_lex_state = 2}, - [577] = {.lex_state = 96, .external_lex_state = 2}, - [578] = {.lex_state = 96, .external_lex_state = 2}, - [579] = {.lex_state = 96, .external_lex_state = 2}, - [580] = {.lex_state = 96, .external_lex_state = 2}, - [581] = {.lex_state = 96, .external_lex_state = 2}, - [582] = {.lex_state = 96, .external_lex_state = 2}, - [583] = {.lex_state = 96, .external_lex_state = 2}, - [584] = {.lex_state = 96, .external_lex_state = 2}, - [585] = {.lex_state = 96, .external_lex_state = 2}, - [586] = {.lex_state = 96, .external_lex_state = 2}, - [587] = {.lex_state = 96, .external_lex_state = 2}, - [588] = {.lex_state = 96, .external_lex_state = 2}, - [589] = {.lex_state = 96, .external_lex_state = 2}, - [590] = {.lex_state = 96, .external_lex_state = 2}, - [591] = {.lex_state = 96, .external_lex_state = 2}, - [592] = {.lex_state = 96, .external_lex_state = 2}, - [593] = {.lex_state = 96, .external_lex_state = 2}, - [594] = {.lex_state = 96, .external_lex_state = 2}, - [595] = {.lex_state = 96, .external_lex_state = 2}, - [596] = {.lex_state = 96, .external_lex_state = 2}, - [597] = {.lex_state = 96, .external_lex_state = 2}, - [598] = {.lex_state = 96, .external_lex_state = 2}, - [599] = {.lex_state = 96, .external_lex_state = 2}, - [600] = {.lex_state = 96, .external_lex_state = 2}, - [601] = {.lex_state = 96, .external_lex_state = 2}, - [602] = {.lex_state = 96, .external_lex_state = 2}, - [603] = {.lex_state = 96, .external_lex_state = 2}, - [604] = {.lex_state = 96, .external_lex_state = 2}, - [605] = {.lex_state = 96, .external_lex_state = 2}, - [606] = {.lex_state = 96, .external_lex_state = 2}, - [607] = {.lex_state = 96, .external_lex_state = 2}, - [608] = {.lex_state = 96, .external_lex_state = 2}, - [609] = {.lex_state = 96, .external_lex_state = 2}, - [610] = {.lex_state = 96, .external_lex_state = 2}, - [611] = {.lex_state = 96, .external_lex_state = 2}, - [612] = {.lex_state = 96, .external_lex_state = 2}, - [613] = {.lex_state = 96, .external_lex_state = 2}, - [614] = {.lex_state = 96, .external_lex_state = 2}, - [615] = {.lex_state = 96, .external_lex_state = 2}, - [616] = {.lex_state = 96, .external_lex_state = 2}, - [617] = {.lex_state = 96, .external_lex_state = 2}, - [618] = {.lex_state = 96, .external_lex_state = 2}, - [619] = {.lex_state = 96, .external_lex_state = 2}, - [620] = {.lex_state = 96, .external_lex_state = 2}, - [621] = {.lex_state = 96, .external_lex_state = 2}, - [622] = {.lex_state = 96, .external_lex_state = 2}, - [623] = {.lex_state = 96, .external_lex_state = 2}, - [624] = {.lex_state = 96, .external_lex_state = 2}, - [625] = {.lex_state = 96, .external_lex_state = 2}, - [626] = {.lex_state = 96, .external_lex_state = 2}, - [627] = {.lex_state = 96, .external_lex_state = 2}, - [628] = {.lex_state = 96, .external_lex_state = 2}, - [629] = {.lex_state = 96, .external_lex_state = 2}, - [630] = {.lex_state = 96, .external_lex_state = 2}, - [631] = {.lex_state = 96, .external_lex_state = 2}, - [632] = {.lex_state = 96, .external_lex_state = 2}, - [633] = {.lex_state = 96, .external_lex_state = 2}, - [634] = {.lex_state = 96, .external_lex_state = 2}, - [635] = {.lex_state = 96, .external_lex_state = 2}, - [636] = {.lex_state = 96, .external_lex_state = 2}, - [637] = {.lex_state = 96, .external_lex_state = 2}, - [638] = {.lex_state = 96, .external_lex_state = 2}, - [639] = {.lex_state = 96, .external_lex_state = 2}, - [640] = {.lex_state = 96, .external_lex_state = 2}, - [641] = {.lex_state = 96, .external_lex_state = 2}, - [642] = {.lex_state = 96, .external_lex_state = 2}, - [643] = {.lex_state = 96, .external_lex_state = 2}, - [644] = {.lex_state = 96, .external_lex_state = 2}, - [645] = {.lex_state = 96, .external_lex_state = 2}, - [646] = {.lex_state = 96, .external_lex_state = 2}, - [647] = {.lex_state = 96, .external_lex_state = 2}, - [648] = {.lex_state = 96, .external_lex_state = 2}, - [649] = {.lex_state = 96, .external_lex_state = 2}, - [650] = {.lex_state = 96, .external_lex_state = 2}, - [651] = {.lex_state = 96, .external_lex_state = 2}, - [652] = {.lex_state = 96, .external_lex_state = 2}, - [653] = {.lex_state = 96, .external_lex_state = 2}, - [654] = {.lex_state = 96, .external_lex_state = 2}, - [655] = {.lex_state = 96, .external_lex_state = 2}, - [656] = {.lex_state = 96, .external_lex_state = 2}, - [657] = {.lex_state = 96, .external_lex_state = 2}, - [658] = {.lex_state = 96, .external_lex_state = 2}, - [659] = {.lex_state = 96, .external_lex_state = 2}, - [660] = {.lex_state = 96, .external_lex_state = 2}, - [661] = {.lex_state = 96, .external_lex_state = 2}, - [662] = {.lex_state = 96, .external_lex_state = 2}, - [663] = {.lex_state = 96, .external_lex_state = 2}, - [664] = {.lex_state = 96, .external_lex_state = 2}, - [665] = {.lex_state = 96, .external_lex_state = 2}, - [666] = {.lex_state = 96, .external_lex_state = 2}, + [264] = {.lex_state = 95, .external_lex_state = 2}, + [265] = {.lex_state = 95, .external_lex_state = 2}, + [266] = {.lex_state = 95, .external_lex_state = 2}, + [267] = {.lex_state = 95, .external_lex_state = 2}, + [268] = {.lex_state = 95, .external_lex_state = 2}, + [269] = {.lex_state = 95, .external_lex_state = 2}, + [270] = {.lex_state = 95, .external_lex_state = 2}, + [271] = {.lex_state = 95, .external_lex_state = 2}, + [272] = {.lex_state = 95, .external_lex_state = 2}, + [273] = {.lex_state = 95, .external_lex_state = 2}, + [274] = {.lex_state = 95, .external_lex_state = 2}, + [275] = {.lex_state = 95, .external_lex_state = 2}, + [276] = {.lex_state = 95, .external_lex_state = 2}, + [277] = {.lex_state = 95, .external_lex_state = 2}, + [278] = {.lex_state = 95, .external_lex_state = 2}, + [279] = {.lex_state = 95, .external_lex_state = 2}, + [280] = {.lex_state = 95, .external_lex_state = 2}, + [281] = {.lex_state = 95, .external_lex_state = 2}, + [282] = {.lex_state = 95, .external_lex_state = 2}, + [283] = {.lex_state = 95, .external_lex_state = 2}, + [284] = {.lex_state = 95, .external_lex_state = 2}, + [285] = {.lex_state = 95, .external_lex_state = 2}, + [286] = {.lex_state = 95, .external_lex_state = 2}, + [287] = {.lex_state = 95, .external_lex_state = 2}, + [288] = {.lex_state = 95, .external_lex_state = 2}, + [289] = {.lex_state = 95, .external_lex_state = 5}, + [290] = {.lex_state = 95, .external_lex_state = 2}, + [291] = {.lex_state = 95, .external_lex_state = 2}, + [292] = {.lex_state = 95, .external_lex_state = 2}, + [293] = {.lex_state = 95, .external_lex_state = 2}, + [294] = {.lex_state = 95, .external_lex_state = 2}, + [295] = {.lex_state = 95, .external_lex_state = 2}, + [296] = {.lex_state = 95, .external_lex_state = 2}, + [297] = {.lex_state = 95, .external_lex_state = 2}, + [298] = {.lex_state = 95, .external_lex_state = 2}, + [299] = {.lex_state = 95, .external_lex_state = 2}, + [300] = {.lex_state = 95, .external_lex_state = 2}, + [301] = {.lex_state = 95, .external_lex_state = 2}, + [302] = {.lex_state = 95, .external_lex_state = 2}, + [303] = {.lex_state = 95, .external_lex_state = 2}, + [304] = {.lex_state = 95, .external_lex_state = 2}, + [305] = {.lex_state = 95, .external_lex_state = 2}, + [306] = {.lex_state = 95, .external_lex_state = 2}, + [307] = {.lex_state = 95, .external_lex_state = 2}, + [308] = {.lex_state = 95, .external_lex_state = 2}, + [309] = {.lex_state = 95, .external_lex_state = 2}, + [310] = {.lex_state = 95, .external_lex_state = 2}, + [311] = {.lex_state = 95, .external_lex_state = 2}, + [312] = {.lex_state = 95, .external_lex_state = 2}, + [313] = {.lex_state = 95, .external_lex_state = 2}, + [314] = {.lex_state = 95, .external_lex_state = 2}, + [315] = {.lex_state = 95, .external_lex_state = 2}, + [316] = {.lex_state = 95, .external_lex_state = 2}, + [317] = {.lex_state = 95, .external_lex_state = 2}, + [318] = {.lex_state = 95, .external_lex_state = 2}, + [319] = {.lex_state = 95, .external_lex_state = 2}, + [320] = {.lex_state = 95, .external_lex_state = 2}, + [321] = {.lex_state = 95, .external_lex_state = 2}, + [322] = {.lex_state = 95, .external_lex_state = 2}, + [323] = {.lex_state = 95, .external_lex_state = 2}, + [324] = {.lex_state = 95, .external_lex_state = 2}, + [325] = {.lex_state = 95, .external_lex_state = 2}, + [326] = {.lex_state = 95, .external_lex_state = 2}, + [327] = {.lex_state = 95, .external_lex_state = 2}, + [328] = {.lex_state = 95, .external_lex_state = 2}, + [329] = {.lex_state = 95, .external_lex_state = 2}, + [330] = {.lex_state = 95, .external_lex_state = 2}, + [331] = {.lex_state = 95, .external_lex_state = 2}, + [332] = {.lex_state = 95, .external_lex_state = 2}, + [333] = {.lex_state = 95, .external_lex_state = 2}, + [334] = {.lex_state = 95, .external_lex_state = 2}, + [335] = {.lex_state = 95, .external_lex_state = 2}, + [336] = {.lex_state = 95, .external_lex_state = 2}, + [337] = {.lex_state = 95, .external_lex_state = 2}, + [338] = {.lex_state = 95, .external_lex_state = 2}, + [339] = {.lex_state = 95, .external_lex_state = 2}, + [340] = {.lex_state = 95, .external_lex_state = 2}, + [341] = {.lex_state = 95, .external_lex_state = 2}, + [342] = {.lex_state = 95, .external_lex_state = 2}, + [343] = {.lex_state = 95, .external_lex_state = 2}, + [344] = {.lex_state = 95, .external_lex_state = 2}, + [345] = {.lex_state = 95, .external_lex_state = 2}, + [346] = {.lex_state = 95, .external_lex_state = 2}, + [347] = {.lex_state = 95, .external_lex_state = 2}, + [348] = {.lex_state = 95, .external_lex_state = 2}, + [349] = {.lex_state = 95, .external_lex_state = 2}, + [350] = {.lex_state = 95, .external_lex_state = 2}, + [351] = {.lex_state = 95, .external_lex_state = 2}, + [352] = {.lex_state = 95, .external_lex_state = 2}, + [353] = {.lex_state = 95, .external_lex_state = 2}, + [354] = {.lex_state = 95, .external_lex_state = 2}, + [355] = {.lex_state = 95, .external_lex_state = 2}, + [356] = {.lex_state = 95, .external_lex_state = 2}, + [357] = {.lex_state = 95, .external_lex_state = 2}, + [358] = {.lex_state = 95, .external_lex_state = 2}, + [359] = {.lex_state = 95, .external_lex_state = 2}, + [360] = {.lex_state = 95, .external_lex_state = 2}, + [361] = {.lex_state = 95, .external_lex_state = 2}, + [362] = {.lex_state = 95, .external_lex_state = 2}, + [363] = {.lex_state = 95, .external_lex_state = 2}, + [364] = {.lex_state = 95, .external_lex_state = 2}, + [365] = {.lex_state = 95, .external_lex_state = 2}, + [366] = {.lex_state = 95, .external_lex_state = 2}, + [367] = {.lex_state = 95, .external_lex_state = 2}, + [368] = {.lex_state = 95, .external_lex_state = 2}, + [369] = {.lex_state = 95, .external_lex_state = 2}, + [370] = {.lex_state = 95, .external_lex_state = 2}, + [371] = {.lex_state = 95, .external_lex_state = 2}, + [372] = {.lex_state = 95, .external_lex_state = 2}, + [373] = {.lex_state = 95, .external_lex_state = 2}, + [374] = {.lex_state = 95, .external_lex_state = 2}, + [375] = {.lex_state = 95, .external_lex_state = 2}, + [376] = {.lex_state = 95, .external_lex_state = 2}, + [377] = {.lex_state = 95, .external_lex_state = 2}, + [378] = {.lex_state = 95, .external_lex_state = 2}, + [379] = {.lex_state = 95, .external_lex_state = 2}, + [380] = {.lex_state = 95, .external_lex_state = 2}, + [381] = {.lex_state = 95, .external_lex_state = 2}, + [382] = {.lex_state = 95, .external_lex_state = 2}, + [383] = {.lex_state = 95, .external_lex_state = 2}, + [384] = {.lex_state = 95, .external_lex_state = 2}, + [385] = {.lex_state = 95, .external_lex_state = 2}, + [386] = {.lex_state = 95, .external_lex_state = 2}, + [387] = {.lex_state = 95, .external_lex_state = 2}, + [388] = {.lex_state = 95, .external_lex_state = 2}, + [389] = {.lex_state = 95, .external_lex_state = 2}, + [390] = {.lex_state = 95, .external_lex_state = 2}, + [391] = {.lex_state = 95, .external_lex_state = 2}, + [392] = {.lex_state = 95, .external_lex_state = 2}, + [393] = {.lex_state = 95, .external_lex_state = 2}, + [394] = {.lex_state = 95, .external_lex_state = 2}, + [395] = {.lex_state = 95, .external_lex_state = 2}, + [396] = {.lex_state = 95, .external_lex_state = 2}, + [397] = {.lex_state = 95, .external_lex_state = 2}, + [398] = {.lex_state = 95, .external_lex_state = 2}, + [399] = {.lex_state = 95, .external_lex_state = 2}, + [400] = {.lex_state = 95, .external_lex_state = 2}, + [401] = {.lex_state = 95, .external_lex_state = 2}, + [402] = {.lex_state = 95, .external_lex_state = 2}, + [403] = {.lex_state = 95, .external_lex_state = 2}, + [404] = {.lex_state = 95, .external_lex_state = 2}, + [405] = {.lex_state = 95, .external_lex_state = 2}, + [406] = {.lex_state = 95, .external_lex_state = 2}, + [407] = {.lex_state = 95, .external_lex_state = 2}, + [408] = {.lex_state = 95, .external_lex_state = 2}, + [409] = {.lex_state = 95, .external_lex_state = 2}, + [410] = {.lex_state = 95, .external_lex_state = 2}, + [411] = {.lex_state = 95, .external_lex_state = 2}, + [412] = {.lex_state = 95, .external_lex_state = 2}, + [413] = {.lex_state = 95, .external_lex_state = 2}, + [414] = {.lex_state = 95, .external_lex_state = 2}, + [415] = {.lex_state = 95, .external_lex_state = 2}, + [416] = {.lex_state = 95, .external_lex_state = 2}, + [417] = {.lex_state = 95, .external_lex_state = 2}, + [418] = {.lex_state = 95, .external_lex_state = 2}, + [419] = {.lex_state = 95, .external_lex_state = 2}, + [420] = {.lex_state = 95, .external_lex_state = 2}, + [421] = {.lex_state = 95, .external_lex_state = 2}, + [422] = {.lex_state = 95, .external_lex_state = 2}, + [423] = {.lex_state = 95, .external_lex_state = 2}, + [424] = {.lex_state = 95, .external_lex_state = 2}, + [425] = {.lex_state = 95, .external_lex_state = 2}, + [426] = {.lex_state = 95, .external_lex_state = 2}, + [427] = {.lex_state = 95, .external_lex_state = 2}, + [428] = {.lex_state = 95, .external_lex_state = 2}, + [429] = {.lex_state = 95, .external_lex_state = 2}, + [430] = {.lex_state = 95, .external_lex_state = 2}, + [431] = {.lex_state = 95, .external_lex_state = 2}, + [432] = {.lex_state = 95, .external_lex_state = 2}, + [433] = {.lex_state = 95, .external_lex_state = 2}, + [434] = {.lex_state = 95, .external_lex_state = 2}, + [435] = {.lex_state = 95, .external_lex_state = 2}, + [436] = {.lex_state = 95, .external_lex_state = 2}, + [437] = {.lex_state = 95, .external_lex_state = 2}, + [438] = {.lex_state = 95, .external_lex_state = 2}, + [439] = {.lex_state = 95, .external_lex_state = 2}, + [440] = {.lex_state = 95, .external_lex_state = 2}, + [441] = {.lex_state = 95, .external_lex_state = 2}, + [442] = {.lex_state = 95, .external_lex_state = 2}, + [443] = {.lex_state = 95, .external_lex_state = 2}, + [444] = {.lex_state = 95, .external_lex_state = 2}, + [445] = {.lex_state = 95, .external_lex_state = 2}, + [446] = {.lex_state = 95, .external_lex_state = 2}, + [447] = {.lex_state = 95, .external_lex_state = 2}, + [448] = {.lex_state = 95, .external_lex_state = 2}, + [449] = {.lex_state = 95, .external_lex_state = 2}, + [450] = {.lex_state = 95, .external_lex_state = 2}, + [451] = {.lex_state = 95, .external_lex_state = 2}, + [452] = {.lex_state = 95, .external_lex_state = 2}, + [453] = {.lex_state = 95, .external_lex_state = 2}, + [454] = {.lex_state = 95, .external_lex_state = 2}, + [455] = {.lex_state = 95, .external_lex_state = 2}, + [456] = {.lex_state = 95, .external_lex_state = 2}, + [457] = {.lex_state = 95, .external_lex_state = 2}, + [458] = {.lex_state = 95, .external_lex_state = 2}, + [459] = {.lex_state = 95, .external_lex_state = 2}, + [460] = {.lex_state = 95, .external_lex_state = 2}, + [461] = {.lex_state = 95, .external_lex_state = 2}, + [462] = {.lex_state = 95, .external_lex_state = 2}, + [463] = {.lex_state = 95, .external_lex_state = 2}, + [464] = {.lex_state = 95, .external_lex_state = 2}, + [465] = {.lex_state = 95, .external_lex_state = 2}, + [466] = {.lex_state = 95, .external_lex_state = 2}, + [467] = {.lex_state = 95, .external_lex_state = 2}, + [468] = {.lex_state = 95, .external_lex_state = 2}, + [469] = {.lex_state = 95, .external_lex_state = 2}, + [470] = {.lex_state = 95, .external_lex_state = 2}, + [471] = {.lex_state = 95, .external_lex_state = 2}, + [472] = {.lex_state = 95, .external_lex_state = 2}, + [473] = {.lex_state = 95, .external_lex_state = 2}, + [474] = {.lex_state = 95, .external_lex_state = 2}, + [475] = {.lex_state = 95, .external_lex_state = 2}, + [476] = {.lex_state = 95, .external_lex_state = 2}, + [477] = {.lex_state = 95, .external_lex_state = 2}, + [478] = {.lex_state = 95, .external_lex_state = 2}, + [479] = {.lex_state = 95, .external_lex_state = 2}, + [480] = {.lex_state = 95, .external_lex_state = 2}, + [481] = {.lex_state = 95, .external_lex_state = 2}, + [482] = {.lex_state = 95, .external_lex_state = 2}, + [483] = {.lex_state = 95, .external_lex_state = 2}, + [484] = {.lex_state = 95, .external_lex_state = 2}, + [485] = {.lex_state = 95, .external_lex_state = 2}, + [486] = {.lex_state = 95, .external_lex_state = 2}, + [487] = {.lex_state = 95, .external_lex_state = 2}, + [488] = {.lex_state = 95, .external_lex_state = 2}, + [489] = {.lex_state = 95, .external_lex_state = 2}, + [490] = {.lex_state = 95, .external_lex_state = 2}, + [491] = {.lex_state = 95, .external_lex_state = 2}, + [492] = {.lex_state = 95, .external_lex_state = 2}, + [493] = {.lex_state = 95, .external_lex_state = 2}, + [494] = {.lex_state = 95, .external_lex_state = 2}, + [495] = {.lex_state = 95, .external_lex_state = 2}, + [496] = {.lex_state = 95, .external_lex_state = 2}, + [497] = {.lex_state = 95, .external_lex_state = 2}, + [498] = {.lex_state = 95, .external_lex_state = 2}, + [499] = {.lex_state = 95, .external_lex_state = 2}, + [500] = {.lex_state = 95, .external_lex_state = 2}, + [501] = {.lex_state = 95, .external_lex_state = 2}, + [502] = {.lex_state = 95, .external_lex_state = 2}, + [503] = {.lex_state = 95, .external_lex_state = 2}, + [504] = {.lex_state = 95, .external_lex_state = 2}, + [505] = {.lex_state = 95, .external_lex_state = 2}, + [506] = {.lex_state = 95, .external_lex_state = 2}, + [507] = {.lex_state = 95, .external_lex_state = 2}, + [508] = {.lex_state = 95, .external_lex_state = 2}, + [509] = {.lex_state = 95, .external_lex_state = 2}, + [510] = {.lex_state = 95, .external_lex_state = 2}, + [511] = {.lex_state = 95, .external_lex_state = 2}, + [512] = {.lex_state = 95, .external_lex_state = 2}, + [513] = {.lex_state = 95, .external_lex_state = 2}, + [514] = {.lex_state = 95, .external_lex_state = 2}, + [515] = {.lex_state = 95, .external_lex_state = 2}, + [516] = {.lex_state = 95, .external_lex_state = 2}, + [517] = {.lex_state = 95, .external_lex_state = 2}, + [518] = {.lex_state = 95, .external_lex_state = 2}, + [519] = {.lex_state = 95, .external_lex_state = 2}, + [520] = {.lex_state = 95, .external_lex_state = 2}, + [521] = {.lex_state = 95, .external_lex_state = 2}, + [522] = {.lex_state = 95, .external_lex_state = 2}, + [523] = {.lex_state = 95, .external_lex_state = 2}, + [524] = {.lex_state = 95, .external_lex_state = 2}, + [525] = {.lex_state = 95, .external_lex_state = 2}, + [526] = {.lex_state = 95, .external_lex_state = 2}, + [527] = {.lex_state = 95, .external_lex_state = 2}, + [528] = {.lex_state = 95, .external_lex_state = 2}, + [529] = {.lex_state = 95, .external_lex_state = 2}, + [530] = {.lex_state = 95, .external_lex_state = 2}, + [531] = {.lex_state = 95, .external_lex_state = 2}, + [532] = {.lex_state = 95, .external_lex_state = 2}, + [533] = {.lex_state = 95, .external_lex_state = 2}, + [534] = {.lex_state = 95, .external_lex_state = 2}, + [535] = {.lex_state = 95, .external_lex_state = 2}, + [536] = {.lex_state = 95, .external_lex_state = 2}, + [537] = {.lex_state = 95, .external_lex_state = 2}, + [538] = {.lex_state = 95, .external_lex_state = 2}, + [539] = {.lex_state = 95, .external_lex_state = 2}, + [540] = {.lex_state = 95, .external_lex_state = 2}, + [541] = {.lex_state = 95, .external_lex_state = 2}, + [542] = {.lex_state = 95, .external_lex_state = 2}, + [543] = {.lex_state = 95, .external_lex_state = 2}, + [544] = {.lex_state = 95, .external_lex_state = 2}, + [545] = {.lex_state = 95, .external_lex_state = 2}, + [546] = {.lex_state = 95, .external_lex_state = 2}, + [547] = {.lex_state = 95, .external_lex_state = 2}, + [548] = {.lex_state = 95, .external_lex_state = 2}, + [549] = {.lex_state = 95, .external_lex_state = 2}, + [550] = {.lex_state = 95, .external_lex_state = 2}, + [551] = {.lex_state = 95, .external_lex_state = 2}, + [552] = {.lex_state = 95, .external_lex_state = 2}, + [553] = {.lex_state = 95, .external_lex_state = 2}, + [554] = {.lex_state = 95, .external_lex_state = 2}, + [555] = {.lex_state = 95, .external_lex_state = 2}, + [556] = {.lex_state = 95, .external_lex_state = 2}, + [557] = {.lex_state = 95, .external_lex_state = 2}, + [558] = {.lex_state = 95, .external_lex_state = 2}, + [559] = {.lex_state = 95, .external_lex_state = 2}, + [560] = {.lex_state = 95, .external_lex_state = 2}, + [561] = {.lex_state = 95, .external_lex_state = 2}, + [562] = {.lex_state = 95, .external_lex_state = 2}, + [563] = {.lex_state = 95, .external_lex_state = 2}, + [564] = {.lex_state = 95, .external_lex_state = 2}, + [565] = {.lex_state = 95, .external_lex_state = 2}, + [566] = {.lex_state = 95, .external_lex_state = 2}, + [567] = {.lex_state = 95, .external_lex_state = 2}, + [568] = {.lex_state = 95, .external_lex_state = 2}, + [569] = {.lex_state = 95, .external_lex_state = 2}, + [570] = {.lex_state = 95, .external_lex_state = 2}, + [571] = {.lex_state = 95, .external_lex_state = 2}, + [572] = {.lex_state = 95, .external_lex_state = 2}, + [573] = {.lex_state = 95, .external_lex_state = 2}, + [574] = {.lex_state = 95, .external_lex_state = 2}, + [575] = {.lex_state = 95, .external_lex_state = 2}, + [576] = {.lex_state = 95, .external_lex_state = 2}, + [577] = {.lex_state = 95, .external_lex_state = 2}, + [578] = {.lex_state = 95, .external_lex_state = 2}, + [579] = {.lex_state = 95, .external_lex_state = 2}, + [580] = {.lex_state = 95, .external_lex_state = 2}, + [581] = {.lex_state = 95, .external_lex_state = 2}, + [582] = {.lex_state = 95, .external_lex_state = 2}, + [583] = {.lex_state = 95, .external_lex_state = 2}, + [584] = {.lex_state = 95, .external_lex_state = 2}, + [585] = {.lex_state = 95, .external_lex_state = 2}, + [586] = {.lex_state = 95, .external_lex_state = 2}, + [587] = {.lex_state = 95, .external_lex_state = 2}, + [588] = {.lex_state = 95, .external_lex_state = 2}, + [589] = {.lex_state = 95, .external_lex_state = 2}, + [590] = {.lex_state = 95, .external_lex_state = 2}, + [591] = {.lex_state = 95, .external_lex_state = 2}, + [592] = {.lex_state = 95, .external_lex_state = 2}, + [593] = {.lex_state = 95, .external_lex_state = 2}, + [594] = {.lex_state = 95, .external_lex_state = 2}, + [595] = {.lex_state = 95, .external_lex_state = 2}, + [596] = {.lex_state = 95, .external_lex_state = 2}, + [597] = {.lex_state = 95, .external_lex_state = 2}, + [598] = {.lex_state = 95, .external_lex_state = 2}, + [599] = {.lex_state = 95, .external_lex_state = 2}, + [600] = {.lex_state = 95, .external_lex_state = 2}, + [601] = {.lex_state = 95, .external_lex_state = 2}, + [602] = {.lex_state = 95, .external_lex_state = 2}, + [603] = {.lex_state = 95, .external_lex_state = 2}, + [604] = {.lex_state = 95, .external_lex_state = 2}, + [605] = {.lex_state = 95, .external_lex_state = 2}, + [606] = {.lex_state = 95, .external_lex_state = 2}, + [607] = {.lex_state = 95, .external_lex_state = 2}, + [608] = {.lex_state = 95, .external_lex_state = 2}, + [609] = {.lex_state = 95, .external_lex_state = 2}, + [610] = {.lex_state = 95, .external_lex_state = 2}, + [611] = {.lex_state = 95, .external_lex_state = 2}, + [612] = {.lex_state = 95, .external_lex_state = 2}, + [613] = {.lex_state = 95, .external_lex_state = 2}, + [614] = {.lex_state = 95, .external_lex_state = 2}, + [615] = {.lex_state = 95, .external_lex_state = 2}, + [616] = {.lex_state = 95, .external_lex_state = 2}, + [617] = {.lex_state = 95, .external_lex_state = 2}, + [618] = {.lex_state = 95, .external_lex_state = 2}, + [619] = {.lex_state = 95, .external_lex_state = 2}, + [620] = {.lex_state = 95, .external_lex_state = 2}, + [621] = {.lex_state = 95, .external_lex_state = 2}, + [622] = {.lex_state = 95, .external_lex_state = 2}, + [623] = {.lex_state = 95, .external_lex_state = 2}, + [624] = {.lex_state = 95, .external_lex_state = 2}, + [625] = {.lex_state = 95, .external_lex_state = 2}, + [626] = {.lex_state = 95, .external_lex_state = 2}, + [627] = {.lex_state = 95, .external_lex_state = 2}, + [628] = {.lex_state = 95, .external_lex_state = 2}, + [629] = {.lex_state = 95, .external_lex_state = 2}, + [630] = {.lex_state = 95, .external_lex_state = 2}, + [631] = {.lex_state = 95, .external_lex_state = 2}, + [632] = {.lex_state = 95, .external_lex_state = 2}, + [633] = {.lex_state = 95, .external_lex_state = 2}, + [634] = {.lex_state = 95, .external_lex_state = 2}, + [635] = {.lex_state = 95, .external_lex_state = 2}, + [636] = {.lex_state = 95, .external_lex_state = 2}, + [637] = {.lex_state = 95, .external_lex_state = 2}, + [638] = {.lex_state = 95, .external_lex_state = 2}, + [639] = {.lex_state = 95, .external_lex_state = 2}, + [640] = {.lex_state = 95, .external_lex_state = 2}, + [641] = {.lex_state = 95, .external_lex_state = 2}, + [642] = {.lex_state = 95, .external_lex_state = 2}, + [643] = {.lex_state = 95, .external_lex_state = 2}, + [644] = {.lex_state = 95, .external_lex_state = 2}, + [645] = {.lex_state = 95, .external_lex_state = 2}, + [646] = {.lex_state = 95, .external_lex_state = 2}, + [647] = {.lex_state = 95, .external_lex_state = 2}, + [648] = {.lex_state = 95, .external_lex_state = 2}, + [649] = {.lex_state = 95, .external_lex_state = 2}, + [650] = {.lex_state = 95, .external_lex_state = 2}, + [651] = {.lex_state = 95, .external_lex_state = 2}, + [652] = {.lex_state = 95, .external_lex_state = 2}, + [653] = {.lex_state = 95, .external_lex_state = 2}, + [654] = {.lex_state = 95, .external_lex_state = 2}, + [655] = {.lex_state = 95, .external_lex_state = 2}, + [656] = {.lex_state = 95, .external_lex_state = 2}, + [657] = {.lex_state = 95, .external_lex_state = 2}, + [658] = {.lex_state = 95, .external_lex_state = 2}, + [659] = {.lex_state = 95, .external_lex_state = 2}, + [660] = {.lex_state = 95, .external_lex_state = 2}, + [661] = {.lex_state = 95, .external_lex_state = 2}, + [662] = {.lex_state = 95, .external_lex_state = 2}, + [663] = {.lex_state = 95, .external_lex_state = 2}, + [664] = {.lex_state = 95, .external_lex_state = 2}, + [665] = {.lex_state = 95, .external_lex_state = 2}, + [666] = {.lex_state = 95, .external_lex_state = 2}, [667] = {.lex_state = 6, .external_lex_state = 4}, [668] = {.lex_state = 6, .external_lex_state = 4}, [669] = {.lex_state = 6, .external_lex_state = 4}, @@ -13794,21 +15511,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [678] = {.lex_state = 5, .external_lex_state = 4}, [679] = {.lex_state = 5, .external_lex_state = 4}, [680] = {.lex_state = 5, .external_lex_state = 4}, - [681] = {.lex_state = 96, .external_lex_state = 2}, - [682] = {.lex_state = 96, .external_lex_state = 2}, + [681] = {.lex_state = 5, .external_lex_state = 4}, + [682] = {.lex_state = 5, .external_lex_state = 4}, [683] = {.lex_state = 5, .external_lex_state = 4}, - [684] = {.lex_state = 5, .external_lex_state = 4}, + [684] = {.lex_state = 95, .external_lex_state = 2}, [685] = {.lex_state = 5, .external_lex_state = 4}, [686] = {.lex_state = 5, .external_lex_state = 4}, - [687] = {.lex_state = 5, .external_lex_state = 4}, + [687] = {.lex_state = 95, .external_lex_state = 2}, [688] = {.lex_state = 5, .external_lex_state = 4}, - [689] = {.lex_state = 5, .external_lex_state = 4}, - [690] = {.lex_state = 5, .external_lex_state = 4}, - [691] = {.lex_state = 96, .external_lex_state = 2}, - [692] = {.lex_state = 96, .external_lex_state = 2}, - [693] = {.lex_state = 96, .external_lex_state = 2}, - [694] = {.lex_state = 96, .external_lex_state = 2}, - [695] = {.lex_state = 96, .external_lex_state = 2}, + [689] = {.lex_state = 95, .external_lex_state = 2}, + [690] = {.lex_state = 95, .external_lex_state = 2}, + [691] = {.lex_state = 5, .external_lex_state = 4}, + [692] = {.lex_state = 5, .external_lex_state = 4}, + [693] = {.lex_state = 95, .external_lex_state = 2}, + [694] = {.lex_state = 95, .external_lex_state = 2}, + [695] = {.lex_state = 95, .external_lex_state = 2}, [696] = {.lex_state = 5, .external_lex_state = 4}, [697] = {.lex_state = 5, .external_lex_state = 4}, [698] = {.lex_state = 5, .external_lex_state = 4}, @@ -13819,209 +15536,209 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [703] = {.lex_state = 5, .external_lex_state = 4}, [704] = {.lex_state = 5, .external_lex_state = 3}, [705] = {.lex_state = 5, .external_lex_state = 3}, - [706] = {.lex_state = 5, .external_lex_state = 3}, - [707] = {.lex_state = 5, .external_lex_state = 3}, - [708] = {.lex_state = 5, .external_lex_state = 4}, + [706] = {.lex_state = 5, .external_lex_state = 4}, + [707] = {.lex_state = 5, .external_lex_state = 4}, + [708] = {.lex_state = 5, .external_lex_state = 3}, [709] = {.lex_state = 5, .external_lex_state = 4}, - [710] = {.lex_state = 5, .external_lex_state = 3}, - [711] = {.lex_state = 5, .external_lex_state = 4}, + [710] = {.lex_state = 5, .external_lex_state = 4}, + [711] = {.lex_state = 5, .external_lex_state = 3}, [712] = {.lex_state = 5, .external_lex_state = 4}, - [713] = {.lex_state = 5, .external_lex_state = 4}, - [714] = {.lex_state = 5, .external_lex_state = 4}, + [713] = {.lex_state = 5, .external_lex_state = 3}, + [714] = {.lex_state = 5, .external_lex_state = 3}, [715] = {.lex_state = 5, .external_lex_state = 4}, - [716] = {.lex_state = 5, .external_lex_state = 3}, - [717] = {.lex_state = 96, .external_lex_state = 5}, - [718] = {.lex_state = 96, .external_lex_state = 2}, - [719] = {.lex_state = 5, .external_lex_state = 3}, - [720] = {.lex_state = 6, .external_lex_state = 3}, - [721] = {.lex_state = 5, .external_lex_state = 3}, + [716] = {.lex_state = 5, .external_lex_state = 4}, + [717] = {.lex_state = 5, .external_lex_state = 3}, + [718] = {.lex_state = 6, .external_lex_state = 3}, + [719] = {.lex_state = 95, .external_lex_state = 2}, + [720] = {.lex_state = 5, .external_lex_state = 3}, + [721] = {.lex_state = 6, .external_lex_state = 3}, [722] = {.lex_state = 5, .external_lex_state = 3}, - [723] = {.lex_state = 6, .external_lex_state = 3}, + [723] = {.lex_state = 95, .external_lex_state = 5}, [724] = {.lex_state = 5, .external_lex_state = 3}, - [725] = {.lex_state = 96, .external_lex_state = 5}, - [726] = {.lex_state = 96, .external_lex_state = 5}, - [727] = {.lex_state = 5, .external_lex_state = 4}, - [728] = {.lex_state = 96, .external_lex_state = 5}, - [729] = {.lex_state = 5, .external_lex_state = 3}, - [730] = {.lex_state = 5, .external_lex_state = 4}, - [731] = {.lex_state = 5, .external_lex_state = 3}, - [732] = {.lex_state = 96, .external_lex_state = 5}, - [733] = {.lex_state = 5, .external_lex_state = 3}, - [734] = {.lex_state = 96, .external_lex_state = 5}, - [735] = {.lex_state = 96, .external_lex_state = 5}, - [736] = {.lex_state = 96, .external_lex_state = 2}, - [737] = {.lex_state = 96, .external_lex_state = 5}, - [738] = {.lex_state = 5, .external_lex_state = 4}, - [739] = {.lex_state = 5, .external_lex_state = 4}, - [740] = {.lex_state = 5, .external_lex_state = 4}, - [741] = {.lex_state = 96, .external_lex_state = 2}, + [725] = {.lex_state = 95, .external_lex_state = 5}, + [726] = {.lex_state = 5, .external_lex_state = 4}, + [727] = {.lex_state = 5, .external_lex_state = 3}, + [728] = {.lex_state = 5, .external_lex_state = 4}, + [729] = {.lex_state = 95, .external_lex_state = 5}, + [730] = {.lex_state = 95, .external_lex_state = 5}, + [731] = {.lex_state = 95, .external_lex_state = 5}, + [732] = {.lex_state = 95, .external_lex_state = 5}, + [733] = {.lex_state = 95, .external_lex_state = 2}, + [734] = {.lex_state = 5, .external_lex_state = 4}, + [735] = {.lex_state = 95, .external_lex_state = 5}, + [736] = {.lex_state = 5, .external_lex_state = 4}, + [737] = {.lex_state = 5, .external_lex_state = 4}, + [738] = {.lex_state = 95, .external_lex_state = 2}, + [739] = {.lex_state = 5, .external_lex_state = 3}, + [740] = {.lex_state = 5, .external_lex_state = 3}, + [741] = {.lex_state = 95, .external_lex_state = 5}, [742] = {.lex_state = 5, .external_lex_state = 3}, [743] = {.lex_state = 5, .external_lex_state = 3}, - [744] = {.lex_state = 96, .external_lex_state = 2}, - [745] = {.lex_state = 96, .external_lex_state = 2}, + [744] = {.lex_state = 5, .external_lex_state = 3}, + [745] = {.lex_state = 95, .external_lex_state = 2}, [746] = {.lex_state = 5, .external_lex_state = 3}, - [747] = {.lex_state = 96, .external_lex_state = 2}, + [747] = {.lex_state = 5, .external_lex_state = 3}, [748] = {.lex_state = 5, .external_lex_state = 3}, - [749] = {.lex_state = 5, .external_lex_state = 3}, + [749] = {.lex_state = 95, .external_lex_state = 2}, [750] = {.lex_state = 5, .external_lex_state = 3}, [751] = {.lex_state = 5, .external_lex_state = 3}, - [752] = {.lex_state = 5, .external_lex_state = 3}, - [753] = {.lex_state = 96, .external_lex_state = 2}, - [754] = {.lex_state = 96, .external_lex_state = 5}, - [755] = {.lex_state = 5, .external_lex_state = 3}, - [756] = {.lex_state = 5, .external_lex_state = 3}, - [757] = {.lex_state = 96, .external_lex_state = 2}, - [758] = {.lex_state = 96, .external_lex_state = 5}, - [759] = {.lex_state = 5, .external_lex_state = 3}, - [760] = {.lex_state = 96, .external_lex_state = 5}, - [761] = {.lex_state = 96, .external_lex_state = 5}, - [762] = {.lex_state = 5, .external_lex_state = 3}, + [752] = {.lex_state = 95, .external_lex_state = 2}, + [753] = {.lex_state = 95, .external_lex_state = 2}, + [754] = {.lex_state = 95, .external_lex_state = 5}, + [755] = {.lex_state = 95, .external_lex_state = 5}, + [756] = {.lex_state = 95, .external_lex_state = 5}, + [757] = {.lex_state = 95, .external_lex_state = 5}, + [758] = {.lex_state = 95, .external_lex_state = 5}, + [759] = {.lex_state = 95, .external_lex_state = 5}, + [760] = {.lex_state = 95, .external_lex_state = 5}, + [761] = {.lex_state = 5, .external_lex_state = 3}, + [762] = {.lex_state = 95, .external_lex_state = 5}, [763] = {.lex_state = 5, .external_lex_state = 3}, - [764] = {.lex_state = 96, .external_lex_state = 2}, - [765] = {.lex_state = 96, .external_lex_state = 5}, - [766] = {.lex_state = 96, .external_lex_state = 5}, - [767] = {.lex_state = 96, .external_lex_state = 2}, - [768] = {.lex_state = 96, .external_lex_state = 5}, - [769] = {.lex_state = 96, .external_lex_state = 2}, - [770] = {.lex_state = 5, .external_lex_state = 3}, - [771] = {.lex_state = 5, .external_lex_state = 3}, - [772] = {.lex_state = 96, .external_lex_state = 2}, - [773] = {.lex_state = 96, .external_lex_state = 5}, - [774] = {.lex_state = 96, .external_lex_state = 5}, - [775] = {.lex_state = 96, .external_lex_state = 2}, - [776] = {.lex_state = 96, .external_lex_state = 5}, + [764] = {.lex_state = 5, .external_lex_state = 3}, + [765] = {.lex_state = 95, .external_lex_state = 5}, + [766] = {.lex_state = 5, .external_lex_state = 3}, + [767] = {.lex_state = 5, .external_lex_state = 3}, + [768] = {.lex_state = 95, .external_lex_state = 5}, + [769] = {.lex_state = 95, .external_lex_state = 2}, + [770] = {.lex_state = 95, .external_lex_state = 2}, + [771] = {.lex_state = 95, .external_lex_state = 2}, + [772] = {.lex_state = 95, .external_lex_state = 2}, + [773] = {.lex_state = 95, .external_lex_state = 2}, + [774] = {.lex_state = 95, .external_lex_state = 2}, + [775] = {.lex_state = 5, .external_lex_state = 3}, + [776] = {.lex_state = 95, .external_lex_state = 5}, [777] = {.lex_state = 5, .external_lex_state = 3}, - [778] = {.lex_state = 96, .external_lex_state = 2}, - [779] = {.lex_state = 5, .external_lex_state = 3}, - [780] = {.lex_state = 96, .external_lex_state = 2}, - [781] = {.lex_state = 96, .external_lex_state = 5}, + [778] = {.lex_state = 95, .external_lex_state = 5}, + [779] = {.lex_state = 95, .external_lex_state = 5}, + [780] = {.lex_state = 95, .external_lex_state = 5}, + [781] = {.lex_state = 5, .external_lex_state = 3}, [782] = {.lex_state = 5, .external_lex_state = 3}, [783] = {.lex_state = 5, .external_lex_state = 3}, - [784] = {.lex_state = 96, .external_lex_state = 5}, - [785] = {.lex_state = 96, .external_lex_state = 5}, - [786] = {.lex_state = 96, .external_lex_state = 5}, - [787] = {.lex_state = 96, .external_lex_state = 5}, - [788] = {.lex_state = 96, .external_lex_state = 2}, - [789] = {.lex_state = 96, .external_lex_state = 2}, - [790] = {.lex_state = 96, .external_lex_state = 2}, - [791] = {.lex_state = 96, .external_lex_state = 2}, - [792] = {.lex_state = 96, .external_lex_state = 2}, - [793] = {.lex_state = 96, .external_lex_state = 2}, - [794] = {.lex_state = 96, .external_lex_state = 2}, - [795] = {.lex_state = 96, .external_lex_state = 2}, - [796] = {.lex_state = 96, .external_lex_state = 2}, - [797] = {.lex_state = 96, .external_lex_state = 2}, - [798] = {.lex_state = 96, .external_lex_state = 2}, - [799] = {.lex_state = 96, .external_lex_state = 2}, - [800] = {.lex_state = 96, .external_lex_state = 2}, - [801] = {.lex_state = 96, .external_lex_state = 2}, - [802] = {.lex_state = 96, .external_lex_state = 2}, - [803] = {.lex_state = 96, .external_lex_state = 2}, - [804] = {.lex_state = 96, .external_lex_state = 2}, - [805] = {.lex_state = 96, .external_lex_state = 2}, - [806] = {.lex_state = 96, .external_lex_state = 2}, - [807] = {.lex_state = 96, .external_lex_state = 2}, - [808] = {.lex_state = 96, .external_lex_state = 2}, - [809] = {.lex_state = 96, .external_lex_state = 2}, - [810] = {.lex_state = 96, .external_lex_state = 2}, - [811] = {.lex_state = 96, .external_lex_state = 2}, - [812] = {.lex_state = 96, .external_lex_state = 2}, - [813] = {.lex_state = 96, .external_lex_state = 2}, - [814] = {.lex_state = 96, .external_lex_state = 2}, - [815] = {.lex_state = 96, .external_lex_state = 2}, - [816] = {.lex_state = 96, .external_lex_state = 2}, - [817] = {.lex_state = 96, .external_lex_state = 2}, - [818] = {.lex_state = 96, .external_lex_state = 2}, - [819] = {.lex_state = 96, .external_lex_state = 2}, - [820] = {.lex_state = 96, .external_lex_state = 2}, - [821] = {.lex_state = 96, .external_lex_state = 2}, - [822] = {.lex_state = 96, .external_lex_state = 2}, - [823] = {.lex_state = 96, .external_lex_state = 2}, - [824] = {.lex_state = 96, .external_lex_state = 2}, - [825] = {.lex_state = 96, .external_lex_state = 2}, - [826] = {.lex_state = 96, .external_lex_state = 2}, - [827] = {.lex_state = 96, .external_lex_state = 2}, - [828] = {.lex_state = 96, .external_lex_state = 2}, - [829] = {.lex_state = 96, .external_lex_state = 2}, - [830] = {.lex_state = 96, .external_lex_state = 2}, - [831] = {.lex_state = 96, .external_lex_state = 2}, - [832] = {.lex_state = 96, .external_lex_state = 2}, - [833] = {.lex_state = 96, .external_lex_state = 2}, - [834] = {.lex_state = 96, .external_lex_state = 2}, - [835] = {.lex_state = 96, .external_lex_state = 2}, - [836] = {.lex_state = 96, .external_lex_state = 2}, - [837] = {.lex_state = 96, .external_lex_state = 2}, - [838] = {.lex_state = 96, .external_lex_state = 2}, - [839] = {.lex_state = 12, .external_lex_state = 2}, - [840] = {.lex_state = 96, .external_lex_state = 2}, - [841] = {.lex_state = 96, .external_lex_state = 2}, - [842] = {.lex_state = 96, .external_lex_state = 2}, - [843] = {.lex_state = 96, .external_lex_state = 2}, - [844] = {.lex_state = 96, .external_lex_state = 2}, - [845] = {.lex_state = 96, .external_lex_state = 2}, - [846] = {.lex_state = 96, .external_lex_state = 2}, - [847] = {.lex_state = 96, .external_lex_state = 2}, - [848] = {.lex_state = 96, .external_lex_state = 2}, - [849] = {.lex_state = 96, .external_lex_state = 2}, - [850] = {.lex_state = 96, .external_lex_state = 2}, - [851] = {.lex_state = 96, .external_lex_state = 2}, - [852] = {.lex_state = 96, .external_lex_state = 2}, - [853] = {.lex_state = 12, .external_lex_state = 2}, - [854] = {.lex_state = 96, .external_lex_state = 2}, - [855] = {.lex_state = 96, .external_lex_state = 2}, - [856] = {.lex_state = 96, .external_lex_state = 2}, - [857] = {.lex_state = 96, .external_lex_state = 2}, - [858] = {.lex_state = 96, .external_lex_state = 2}, - [859] = {.lex_state = 96, .external_lex_state = 2}, - [860] = {.lex_state = 96, .external_lex_state = 2}, - [861] = {.lex_state = 96, .external_lex_state = 2}, - [862] = {.lex_state = 96, .external_lex_state = 2}, - [863] = {.lex_state = 96, .external_lex_state = 2}, - [864] = {.lex_state = 96, .external_lex_state = 2}, - [865] = {.lex_state = 96, .external_lex_state = 2}, - [866] = {.lex_state = 96, .external_lex_state = 2}, - [867] = {.lex_state = 12, .external_lex_state = 2}, - [868] = {.lex_state = 96, .external_lex_state = 2}, - [869] = {.lex_state = 96, .external_lex_state = 2}, - [870] = {.lex_state = 96, .external_lex_state = 2}, - [871] = {.lex_state = 96, .external_lex_state = 2}, - [872] = {.lex_state = 96, .external_lex_state = 2}, - [873] = {.lex_state = 96, .external_lex_state = 2}, - [874] = {.lex_state = 96, .external_lex_state = 2}, - [875] = {.lex_state = 96, .external_lex_state = 2}, - [876] = {.lex_state = 96, .external_lex_state = 2}, - [877] = {.lex_state = 96, .external_lex_state = 2}, - [878] = {.lex_state = 96, .external_lex_state = 2}, - [879] = {.lex_state = 96, .external_lex_state = 2}, - [880] = {.lex_state = 96, .external_lex_state = 2}, - [881] = {.lex_state = 96, .external_lex_state = 2}, - [882] = {.lex_state = 96, .external_lex_state = 2}, - [883] = {.lex_state = 96, .external_lex_state = 2}, - [884] = {.lex_state = 12, .external_lex_state = 2}, - [885] = {.lex_state = 96, .external_lex_state = 2}, - [886] = {.lex_state = 96, .external_lex_state = 2}, - [887] = {.lex_state = 96, .external_lex_state = 2}, - [888] = {.lex_state = 96, .external_lex_state = 2}, - [889] = {.lex_state = 96, .external_lex_state = 2}, - [890] = {.lex_state = 96, .external_lex_state = 2}, - [891] = {.lex_state = 96, .external_lex_state = 2}, - [892] = {.lex_state = 96, .external_lex_state = 2}, - [893] = {.lex_state = 96, .external_lex_state = 2}, - [894] = {.lex_state = 96, .external_lex_state = 2}, - [895] = {.lex_state = 96, .external_lex_state = 2}, - [896] = {.lex_state = 96, .external_lex_state = 2}, - [897] = {.lex_state = 96, .external_lex_state = 2}, - [898] = {.lex_state = 96, .external_lex_state = 2}, - [899] = {.lex_state = 96, .external_lex_state = 2}, - [900] = {.lex_state = 96, .external_lex_state = 2}, - [901] = {.lex_state = 96, .external_lex_state = 2}, - [902] = {.lex_state = 96, .external_lex_state = 2}, - [903] = {.lex_state = 96, .external_lex_state = 2}, - [904] = {.lex_state = 96, .external_lex_state = 2}, - [905] = {.lex_state = 96, .external_lex_state = 2}, - [906] = {.lex_state = 12, .external_lex_state = 2}, - [907] = {.lex_state = 96, .external_lex_state = 2}, - [908] = {.lex_state = 96, .external_lex_state = 2}, + [784] = {.lex_state = 5, .external_lex_state = 3}, + [785] = {.lex_state = 95, .external_lex_state = 2}, + [786] = {.lex_state = 95, .external_lex_state = 5}, + [787] = {.lex_state = 95, .external_lex_state = 2}, + [788] = {.lex_state = 95, .external_lex_state = 2}, + [789] = {.lex_state = 95, .external_lex_state = 2}, + [790] = {.lex_state = 95, .external_lex_state = 2}, + [791] = {.lex_state = 95, .external_lex_state = 2}, + [792] = {.lex_state = 95, .external_lex_state = 2}, + [793] = {.lex_state = 95, .external_lex_state = 2}, + [794] = {.lex_state = 95, .external_lex_state = 2}, + [795] = {.lex_state = 95, .external_lex_state = 2}, + [796] = {.lex_state = 95, .external_lex_state = 2}, + [797] = {.lex_state = 95, .external_lex_state = 2}, + [798] = {.lex_state = 95, .external_lex_state = 2}, + [799] = {.lex_state = 95, .external_lex_state = 2}, + [800] = {.lex_state = 95, .external_lex_state = 2}, + [801] = {.lex_state = 95, .external_lex_state = 2}, + [802] = {.lex_state = 95, .external_lex_state = 2}, + [803] = {.lex_state = 95, .external_lex_state = 2}, + [804] = {.lex_state = 95, .external_lex_state = 2}, + [805] = {.lex_state = 95, .external_lex_state = 2}, + [806] = {.lex_state = 95, .external_lex_state = 2}, + [807] = {.lex_state = 95, .external_lex_state = 2}, + [808] = {.lex_state = 95, .external_lex_state = 2}, + [809] = {.lex_state = 95, .external_lex_state = 2}, + [810] = {.lex_state = 95, .external_lex_state = 2}, + [811] = {.lex_state = 95, .external_lex_state = 2}, + [812] = {.lex_state = 95, .external_lex_state = 2}, + [813] = {.lex_state = 95, .external_lex_state = 2}, + [814] = {.lex_state = 95, .external_lex_state = 2}, + [815] = {.lex_state = 95, .external_lex_state = 2}, + [816] = {.lex_state = 95, .external_lex_state = 2}, + [817] = {.lex_state = 95, .external_lex_state = 2}, + [818] = {.lex_state = 95, .external_lex_state = 2}, + [819] = {.lex_state = 95, .external_lex_state = 2}, + [820] = {.lex_state = 95, .external_lex_state = 2}, + [821] = {.lex_state = 12, .external_lex_state = 2}, + [822] = {.lex_state = 95, .external_lex_state = 2}, + [823] = {.lex_state = 95, .external_lex_state = 2}, + [824] = {.lex_state = 95, .external_lex_state = 2}, + [825] = {.lex_state = 95, .external_lex_state = 2}, + [826] = {.lex_state = 95, .external_lex_state = 2}, + [827] = {.lex_state = 95, .external_lex_state = 2}, + [828] = {.lex_state = 95, .external_lex_state = 2}, + [829] = {.lex_state = 95, .external_lex_state = 2}, + [830] = {.lex_state = 95, .external_lex_state = 2}, + [831] = {.lex_state = 95, .external_lex_state = 2}, + [832] = {.lex_state = 95, .external_lex_state = 2}, + [833] = {.lex_state = 95, .external_lex_state = 2}, + [834] = {.lex_state = 95, .external_lex_state = 2}, + [835] = {.lex_state = 95, .external_lex_state = 2}, + [836] = {.lex_state = 95, .external_lex_state = 2}, + [837] = {.lex_state = 95, .external_lex_state = 2}, + [838] = {.lex_state = 95, .external_lex_state = 2}, + [839] = {.lex_state = 95, .external_lex_state = 2}, + [840] = {.lex_state = 95, .external_lex_state = 2}, + [841] = {.lex_state = 95, .external_lex_state = 2}, + [842] = {.lex_state = 12, .external_lex_state = 2}, + [843] = {.lex_state = 95, .external_lex_state = 2}, + [844] = {.lex_state = 95, .external_lex_state = 2}, + [845] = {.lex_state = 95, .external_lex_state = 2}, + [846] = {.lex_state = 95, .external_lex_state = 2}, + [847] = {.lex_state = 12, .external_lex_state = 2}, + [848] = {.lex_state = 95, .external_lex_state = 2}, + [849] = {.lex_state = 95, .external_lex_state = 2}, + [850] = {.lex_state = 95, .external_lex_state = 2}, + [851] = {.lex_state = 95, .external_lex_state = 2}, + [852] = {.lex_state = 95, .external_lex_state = 2}, + [853] = {.lex_state = 95, .external_lex_state = 2}, + [854] = {.lex_state = 12, .external_lex_state = 2}, + [855] = {.lex_state = 95, .external_lex_state = 2}, + [856] = {.lex_state = 95, .external_lex_state = 2}, + [857] = {.lex_state = 95, .external_lex_state = 2}, + [858] = {.lex_state = 95, .external_lex_state = 2}, + [859] = {.lex_state = 95, .external_lex_state = 2}, + [860] = {.lex_state = 95, .external_lex_state = 2}, + [861] = {.lex_state = 95, .external_lex_state = 2}, + [862] = {.lex_state = 95, .external_lex_state = 2}, + [863] = {.lex_state = 95, .external_lex_state = 2}, + [864] = {.lex_state = 95, .external_lex_state = 2}, + [865] = {.lex_state = 95, .external_lex_state = 2}, + [866] = {.lex_state = 12, .external_lex_state = 2}, + [867] = {.lex_state = 95, .external_lex_state = 2}, + [868] = {.lex_state = 95, .external_lex_state = 2}, + [869] = {.lex_state = 95, .external_lex_state = 2}, + [870] = {.lex_state = 95, .external_lex_state = 2}, + [871] = {.lex_state = 95, .external_lex_state = 2}, + [872] = {.lex_state = 95, .external_lex_state = 2}, + [873] = {.lex_state = 95, .external_lex_state = 2}, + [874] = {.lex_state = 95, .external_lex_state = 2}, + [875] = {.lex_state = 95, .external_lex_state = 2}, + [876] = {.lex_state = 95, .external_lex_state = 2}, + [877] = {.lex_state = 95, .external_lex_state = 2}, + [878] = {.lex_state = 95, .external_lex_state = 2}, + [879] = {.lex_state = 95, .external_lex_state = 2}, + [880] = {.lex_state = 95, .external_lex_state = 2}, + [881] = {.lex_state = 95, .external_lex_state = 2}, + [882] = {.lex_state = 95, .external_lex_state = 2}, + [883] = {.lex_state = 95, .external_lex_state = 2}, + [884] = {.lex_state = 95, .external_lex_state = 2}, + [885] = {.lex_state = 95, .external_lex_state = 2}, + [886] = {.lex_state = 95, .external_lex_state = 2}, + [887] = {.lex_state = 95, .external_lex_state = 2}, + [888] = {.lex_state = 95, .external_lex_state = 2}, + [889] = {.lex_state = 95, .external_lex_state = 2}, + [890] = {.lex_state = 95, .external_lex_state = 2}, + [891] = {.lex_state = 95, .external_lex_state = 2}, + [892] = {.lex_state = 95, .external_lex_state = 2}, + [893] = {.lex_state = 95, .external_lex_state = 2}, + [894] = {.lex_state = 95, .external_lex_state = 2}, + [895] = {.lex_state = 95, .external_lex_state = 2}, + [896] = {.lex_state = 95, .external_lex_state = 2}, + [897] = {.lex_state = 95, .external_lex_state = 2}, + [898] = {.lex_state = 95, .external_lex_state = 2}, + [899] = {.lex_state = 95, .external_lex_state = 2}, + [900] = {.lex_state = 95, .external_lex_state = 2}, + [901] = {.lex_state = 95, .external_lex_state = 2}, + [902] = {.lex_state = 95, .external_lex_state = 2}, + [903] = {.lex_state = 95, .external_lex_state = 2}, + [904] = {.lex_state = 95, .external_lex_state = 2}, + [905] = {.lex_state = 95, .external_lex_state = 2}, + [906] = {.lex_state = 95, .external_lex_state = 2}, + [907] = {.lex_state = 95, .external_lex_state = 2}, + [908] = {.lex_state = 95, .external_lex_state = 2}, [909] = {.lex_state = 12, .external_lex_state = 2}, [910] = {.lex_state = 12, .external_lex_state = 2}, [911] = {.lex_state = 12, .external_lex_state = 2}, @@ -14033,19 +15750,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [917] = {.lex_state = 12, .external_lex_state = 2}, [918] = {.lex_state = 12, .external_lex_state = 2}, [919] = {.lex_state = 12, .external_lex_state = 2}, - [920] = {.lex_state = 96, .external_lex_state = 2}, - [921] = {.lex_state = 96, .external_lex_state = 2}, - [922] = {.lex_state = 96, .external_lex_state = 2}, - [923] = {.lex_state = 96, .external_lex_state = 2}, - [924] = {.lex_state = 96, .external_lex_state = 2}, - [925] = {.lex_state = 96, .external_lex_state = 2}, - [926] = {.lex_state = 96, .external_lex_state = 2}, - [927] = {.lex_state = 96, .external_lex_state = 2}, - [928] = {.lex_state = 96, .external_lex_state = 2}, - [929] = {.lex_state = 96, .external_lex_state = 2}, - [930] = {.lex_state = 96, .external_lex_state = 2}, - [931] = {.lex_state = 96, .external_lex_state = 2}, - [932] = {.lex_state = 96, .external_lex_state = 2}, + [920] = {.lex_state = 95, .external_lex_state = 2}, + [921] = {.lex_state = 95, .external_lex_state = 2}, + [922] = {.lex_state = 95, .external_lex_state = 2}, + [923] = {.lex_state = 95, .external_lex_state = 2}, + [924] = {.lex_state = 95, .external_lex_state = 2}, + [925] = {.lex_state = 95, .external_lex_state = 2}, + [926] = {.lex_state = 95, .external_lex_state = 2}, + [927] = {.lex_state = 95, .external_lex_state = 2}, + [928] = {.lex_state = 95, .external_lex_state = 2}, + [929] = {.lex_state = 95, .external_lex_state = 2}, + [930] = {.lex_state = 95, .external_lex_state = 2}, + [931] = {.lex_state = 95, .external_lex_state = 2}, + [932] = {.lex_state = 95, .external_lex_state = 2}, [933] = {.lex_state = 12, .external_lex_state = 2}, [934] = {.lex_state = 12, .external_lex_state = 2}, [935] = {.lex_state = 12, .external_lex_state = 2}, @@ -14063,9 +15780,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [947] = {.lex_state = 12, .external_lex_state = 2}, [948] = {.lex_state = 12, .external_lex_state = 2}, [949] = {.lex_state = 12, .external_lex_state = 2}, - [950] = {.lex_state = 14, .external_lex_state = 2}, - [951] = {.lex_state = 14, .external_lex_state = 2}, - [952] = {.lex_state = 14, .external_lex_state = 2}, + [950] = {.lex_state = 12, .external_lex_state = 2}, + [951] = {.lex_state = 12, .external_lex_state = 2}, + [952] = {.lex_state = 12, .external_lex_state = 2}, [953] = {.lex_state = 12, .external_lex_state = 2}, [954] = {.lex_state = 12, .external_lex_state = 2}, [955] = {.lex_state = 12, .external_lex_state = 2}, @@ -14234,260 +15951,260 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1118] = {.lex_state = 12, .external_lex_state = 2}, [1119] = {.lex_state = 12, .external_lex_state = 2}, [1120] = {.lex_state = 12, .external_lex_state = 2}, - [1121] = {.lex_state = 12, .external_lex_state = 2}, - [1122] = {.lex_state = 12, .external_lex_state = 2}, - [1123] = {.lex_state = 12, .external_lex_state = 2}, + [1121] = {.lex_state = 13, .external_lex_state = 2}, + [1122] = {.lex_state = 95, .external_lex_state = 2}, + [1123] = {.lex_state = 95, .external_lex_state = 2}, [1124] = {.lex_state = 13, .external_lex_state = 2}, - [1125] = {.lex_state = 96, .external_lex_state = 2}, + [1125] = {.lex_state = 13, .external_lex_state = 2}, [1126] = {.lex_state = 13, .external_lex_state = 2}, [1127] = {.lex_state = 13, .external_lex_state = 2}, [1128] = {.lex_state = 13, .external_lex_state = 2}, - [1129] = {.lex_state = 96, .external_lex_state = 2}, + [1129] = {.lex_state = 13, .external_lex_state = 2}, [1130] = {.lex_state = 13, .external_lex_state = 2}, [1131] = {.lex_state = 13, .external_lex_state = 2}, - [1132] = {.lex_state = 13, .external_lex_state = 2}, + [1132] = {.lex_state = 95, .external_lex_state = 2}, [1133] = {.lex_state = 13, .external_lex_state = 2}, - [1134] = {.lex_state = 96, .external_lex_state = 2}, + [1134] = {.lex_state = 13, .external_lex_state = 2}, [1135] = {.lex_state = 13, .external_lex_state = 2}, - [1136] = {.lex_state = 13, .external_lex_state = 2}, - [1137] = {.lex_state = 13, .external_lex_state = 2}, - [1138] = {.lex_state = 13, .external_lex_state = 2}, + [1136] = {.lex_state = 5, .external_lex_state = 4}, + [1137] = {.lex_state = 5, .external_lex_state = 4}, + [1138] = {.lex_state = 5, .external_lex_state = 4}, [1139] = {.lex_state = 6, .external_lex_state = 4}, - [1140] = {.lex_state = 5, .external_lex_state = 4}, - [1141] = {.lex_state = 5, .external_lex_state = 4}, + [1140] = {.lex_state = 6, .external_lex_state = 4}, + [1141] = {.lex_state = 6, .external_lex_state = 4}, [1142] = {.lex_state = 5, .external_lex_state = 4}, - [1143] = {.lex_state = 6, .external_lex_state = 4}, - [1144] = {.lex_state = 6, .external_lex_state = 4}, - [1145] = {.lex_state = 5, .external_lex_state = 4}, - [1146] = {.lex_state = 5, .external_lex_state = 4}, - [1147] = {.lex_state = 5, .external_lex_state = 4}, - [1148] = {.lex_state = 5, .external_lex_state = 3}, - [1149] = {.lex_state = 5, .external_lex_state = 3}, + [1143] = {.lex_state = 5, .external_lex_state = 4}, + [1144] = {.lex_state = 5, .external_lex_state = 4}, + [1145] = {.lex_state = 5, .external_lex_state = 3}, + [1146] = {.lex_state = 5, .external_lex_state = 3}, + [1147] = {.lex_state = 95, .external_lex_state = 2}, + [1148] = {.lex_state = 95, .external_lex_state = 2}, + [1149] = {.lex_state = 13, .external_lex_state = 2}, [1150] = {.lex_state = 13, .external_lex_state = 2}, - [1151] = {.lex_state = 13, .external_lex_state = 2}, + [1151] = {.lex_state = 95, .external_lex_state = 2}, [1152] = {.lex_state = 5, .external_lex_state = 3}, - [1153] = {.lex_state = 6, .external_lex_state = 4}, - [1154] = {.lex_state = 5, .external_lex_state = 4}, - [1155] = {.lex_state = 6, .external_lex_state = 4}, + [1153] = {.lex_state = 5, .external_lex_state = 4}, + [1154] = {.lex_state = 6, .external_lex_state = 4}, + [1155] = {.lex_state = 5, .external_lex_state = 4}, [1156] = {.lex_state = 5, .external_lex_state = 4}, - [1157] = {.lex_state = 6, .external_lex_state = 4}, + [1157] = {.lex_state = 5, .external_lex_state = 4}, [1158] = {.lex_state = 5, .external_lex_state = 4}, [1159] = {.lex_state = 5, .external_lex_state = 3}, - [1160] = {.lex_state = 5, .external_lex_state = 4}, + [1160] = {.lex_state = 6, .external_lex_state = 4}, [1161] = {.lex_state = 5, .external_lex_state = 4}, [1162] = {.lex_state = 5, .external_lex_state = 3}, [1163] = {.lex_state = 5, .external_lex_state = 4}, - [1164] = {.lex_state = 5, .external_lex_state = 4}, - [1165] = {.lex_state = 5, .external_lex_state = 4}, - [1166] = {.lex_state = 5, .external_lex_state = 3}, + [1164] = {.lex_state = 6, .external_lex_state = 4}, + [1165] = {.lex_state = 5, .external_lex_state = 3}, + [1166] = {.lex_state = 5, .external_lex_state = 4}, [1167] = {.lex_state = 5, .external_lex_state = 4}, - [1168] = {.lex_state = 5, .external_lex_state = 4}, + [1168] = {.lex_state = 5, .external_lex_state = 3}, [1169] = {.lex_state = 5, .external_lex_state = 4}, - [1170] = {.lex_state = 5, .external_lex_state = 4}, + [1170] = {.lex_state = 6, .external_lex_state = 3}, [1171] = {.lex_state = 5, .external_lex_state = 3}, [1172] = {.lex_state = 6, .external_lex_state = 3}, [1173] = {.lex_state = 5, .external_lex_state = 3}, - [1174] = {.lex_state = 5, .external_lex_state = 3}, - [1175] = {.lex_state = 6, .external_lex_state = 3}, - [1176] = {.lex_state = 5, .external_lex_state = 3}, - [1177] = {.lex_state = 5, .external_lex_state = 4}, + [1174] = {.lex_state = 5, .external_lex_state = 4}, + [1175] = {.lex_state = 5, .external_lex_state = 3}, + [1176] = {.lex_state = 5, .external_lex_state = 4}, + [1177] = {.lex_state = 6, .external_lex_state = 3}, [1178] = {.lex_state = 5, .external_lex_state = 4}, [1179] = {.lex_state = 5, .external_lex_state = 4}, - [1180] = {.lex_state = 5, .external_lex_state = 4}, - [1181] = {.lex_state = 6, .external_lex_state = 4}, + [1180] = {.lex_state = 6, .external_lex_state = 3}, + [1181] = {.lex_state = 6, .external_lex_state = 3}, [1182] = {.lex_state = 6, .external_lex_state = 3}, - [1183] = {.lex_state = 6, .external_lex_state = 3}, - [1184] = {.lex_state = 6, .external_lex_state = 3}, - [1185] = {.lex_state = 6, .external_lex_state = 3}, + [1183] = {.lex_state = 5, .external_lex_state = 4}, + [1184] = {.lex_state = 5, .external_lex_state = 3}, + [1185] = {.lex_state = 6, .external_lex_state = 4}, [1186] = {.lex_state = 5, .external_lex_state = 4}, - [1187] = {.lex_state = 5, .external_lex_state = 4}, + [1187] = {.lex_state = 6, .external_lex_state = 3}, [1188] = {.lex_state = 5, .external_lex_state = 4}, - [1189] = {.lex_state = 6, .external_lex_state = 3}, - [1190] = {.lex_state = 5, .external_lex_state = 3}, - [1191] = {.lex_state = 6, .external_lex_state = 3}, - [1192] = {.lex_state = 5, .external_lex_state = 4}, - [1193] = {.lex_state = 5, .external_lex_state = 4}, - [1194] = {.lex_state = 5, .external_lex_state = 3}, - [1195] = {.lex_state = 5, .external_lex_state = 3}, - [1196] = {.lex_state = 6, .external_lex_state = 3}, - [1197] = {.lex_state = 6, .external_lex_state = 3}, + [1189] = {.lex_state = 5, .external_lex_state = 3}, + [1190] = {.lex_state = 5, .external_lex_state = 4}, + [1191] = {.lex_state = 5, .external_lex_state = 4}, + [1192] = {.lex_state = 6, .external_lex_state = 3}, + [1193] = {.lex_state = 6, .external_lex_state = 3}, + [1194] = {.lex_state = 6, .external_lex_state = 3}, + [1195] = {.lex_state = 6, .external_lex_state = 3}, + [1196] = {.lex_state = 6, .external_lex_state = 4}, + [1197] = {.lex_state = 5, .external_lex_state = 4}, [1198] = {.lex_state = 5, .external_lex_state = 4}, - [1199] = {.lex_state = 6, .external_lex_state = 3}, - [1200] = {.lex_state = 6, .external_lex_state = 4}, + [1199] = {.lex_state = 5, .external_lex_state = 3}, + [1200] = {.lex_state = 5, .external_lex_state = 4}, [1201] = {.lex_state = 5, .external_lex_state = 4}, [1202] = {.lex_state = 5, .external_lex_state = 4}, [1203] = {.lex_state = 6, .external_lex_state = 3}, [1204] = {.lex_state = 5, .external_lex_state = 4}, - [1205] = {.lex_state = 6, .external_lex_state = 3}, - [1206] = {.lex_state = 96, .external_lex_state = 2}, + [1205] = {.lex_state = 95, .external_lex_state = 2}, + [1206] = {.lex_state = 5, .external_lex_state = 3}, [1207] = {.lex_state = 5, .external_lex_state = 3}, - [1208] = {.lex_state = 6, .external_lex_state = 3}, + [1208] = {.lex_state = 5, .external_lex_state = 3}, [1209] = {.lex_state = 5, .external_lex_state = 4}, [1210] = {.lex_state = 5, .external_lex_state = 3}, [1211] = {.lex_state = 5, .external_lex_state = 3}, [1212] = {.lex_state = 5, .external_lex_state = 3}, - [1213] = {.lex_state = 5, .external_lex_state = 3}, - [1214] = {.lex_state = 5, .external_lex_state = 3}, - [1215] = {.lex_state = 5, .external_lex_state = 3}, + [1213] = {.lex_state = 5, .external_lex_state = 4}, + [1214] = {.lex_state = 6, .external_lex_state = 3}, + [1215] = {.lex_state = 6, .external_lex_state = 3}, [1216] = {.lex_state = 5, .external_lex_state = 3}, [1217] = {.lex_state = 5, .external_lex_state = 3}, [1218] = {.lex_state = 5, .external_lex_state = 3}, - [1219] = {.lex_state = 5, .external_lex_state = 4}, - [1220] = {.lex_state = 6, .external_lex_state = 3}, + [1219] = {.lex_state = 5, .external_lex_state = 3}, + [1220] = {.lex_state = 5, .external_lex_state = 3}, [1221] = {.lex_state = 5, .external_lex_state = 3}, - [1222] = {.lex_state = 6, .external_lex_state = 3}, - [1223] = {.lex_state = 5, .external_lex_state = 3}, - [1224] = {.lex_state = 96, .external_lex_state = 2}, - [1225] = {.lex_state = 96, .external_lex_state = 2}, + [1222] = {.lex_state = 5, .external_lex_state = 3}, + [1223] = {.lex_state = 5, .external_lex_state = 4}, + [1224] = {.lex_state = 5, .external_lex_state = 4}, + [1225] = {.lex_state = 5, .external_lex_state = 4}, [1226] = {.lex_state = 5, .external_lex_state = 3}, [1227] = {.lex_state = 5, .external_lex_state = 3}, [1228] = {.lex_state = 5, .external_lex_state = 3}, - [1229] = {.lex_state = 5, .external_lex_state = 4}, + [1229] = {.lex_state = 5, .external_lex_state = 3}, [1230] = {.lex_state = 5, .external_lex_state = 3}, - [1231] = {.lex_state = 5, .external_lex_state = 4}, + [1231] = {.lex_state = 5, .external_lex_state = 3}, [1232] = {.lex_state = 5, .external_lex_state = 3}, - [1233] = {.lex_state = 5, .external_lex_state = 3}, - [1234] = {.lex_state = 5, .external_lex_state = 3}, + [1233] = {.lex_state = 6, .external_lex_state = 3}, + [1234] = {.lex_state = 95, .external_lex_state = 2}, [1235] = {.lex_state = 5, .external_lex_state = 3}, [1236] = {.lex_state = 5, .external_lex_state = 3}, [1237] = {.lex_state = 5, .external_lex_state = 3}, - [1238] = {.lex_state = 96, .external_lex_state = 2}, + [1238] = {.lex_state = 5, .external_lex_state = 4}, [1239] = {.lex_state = 5, .external_lex_state = 3}, [1240] = {.lex_state = 5, .external_lex_state = 3}, [1241] = {.lex_state = 5, .external_lex_state = 3}, - [1242] = {.lex_state = 96, .external_lex_state = 2}, - [1243] = {.lex_state = 5, .external_lex_state = 4}, - [1244] = {.lex_state = 5, .external_lex_state = 4}, + [1242] = {.lex_state = 5, .external_lex_state = 3}, + [1243] = {.lex_state = 6, .external_lex_state = 3}, + [1244] = {.lex_state = 5, .external_lex_state = 3}, [1245] = {.lex_state = 5, .external_lex_state = 3}, - [1246] = {.lex_state = 5, .external_lex_state = 3}, + [1246] = {.lex_state = 95, .external_lex_state = 2}, [1247] = {.lex_state = 5, .external_lex_state = 3}, [1248] = {.lex_state = 5, .external_lex_state = 3}, [1249] = {.lex_state = 5, .external_lex_state = 3}, [1250] = {.lex_state = 5, .external_lex_state = 3}, - [1251] = {.lex_state = 5, .external_lex_state = 3}, - [1252] = {.lex_state = 5, .external_lex_state = 4}, - [1253] = {.lex_state = 5, .external_lex_state = 4}, - [1254] = {.lex_state = 5, .external_lex_state = 3}, - [1255] = {.lex_state = 5, .external_lex_state = 4}, - [1256] = {.lex_state = 5, .external_lex_state = 4}, - [1257] = {.lex_state = 96, .external_lex_state = 2}, - [1258] = {.lex_state = 5, .external_lex_state = 3}, + [1251] = {.lex_state = 5, .external_lex_state = 4}, + [1252] = {.lex_state = 5, .external_lex_state = 3}, + [1253] = {.lex_state = 5, .external_lex_state = 3}, + [1254] = {.lex_state = 6, .external_lex_state = 3}, + [1255] = {.lex_state = 5, .external_lex_state = 3}, + [1256] = {.lex_state = 5, .external_lex_state = 3}, + [1257] = {.lex_state = 5, .external_lex_state = 4}, + [1258] = {.lex_state = 5, .external_lex_state = 4}, [1259] = {.lex_state = 5, .external_lex_state = 3}, - [1260] = {.lex_state = 96, .external_lex_state = 2}, - [1261] = {.lex_state = 5, .external_lex_state = 3}, - [1262] = {.lex_state = 6, .external_lex_state = 3}, - [1263] = {.lex_state = 5, .external_lex_state = 3}, - [1264] = {.lex_state = 5, .external_lex_state = 4}, + [1260] = {.lex_state = 5, .external_lex_state = 4}, + [1261] = {.lex_state = 5, .external_lex_state = 4}, + [1262] = {.lex_state = 5, .external_lex_state = 4}, + [1263] = {.lex_state = 5, .external_lex_state = 4}, + [1264] = {.lex_state = 95, .external_lex_state = 2}, [1265] = {.lex_state = 5, .external_lex_state = 3}, - [1266] = {.lex_state = 5, .external_lex_state = 4}, - [1267] = {.lex_state = 96, .external_lex_state = 2}, + [1266] = {.lex_state = 5, .external_lex_state = 3}, + [1267] = {.lex_state = 5, .external_lex_state = 4}, [1268] = {.lex_state = 5, .external_lex_state = 3}, [1269] = {.lex_state = 5, .external_lex_state = 3}, - [1270] = {.lex_state = 96, .external_lex_state = 2}, - [1271] = {.lex_state = 5, .external_lex_state = 4}, - [1272] = {.lex_state = 5, .external_lex_state = 3}, - [1273] = {.lex_state = 5, .external_lex_state = 3}, - [1274] = {.lex_state = 5, .external_lex_state = 3}, + [1270] = {.lex_state = 5, .external_lex_state = 3}, + [1271] = {.lex_state = 5, .external_lex_state = 3}, + [1272] = {.lex_state = 5, .external_lex_state = 4}, + [1273] = {.lex_state = 95, .external_lex_state = 2}, + [1274] = {.lex_state = 5, .external_lex_state = 4}, [1275] = {.lex_state = 5, .external_lex_state = 4}, [1276] = {.lex_state = 5, .external_lex_state = 4}, - [1277] = {.lex_state = 5, .external_lex_state = 3}, - [1278] = {.lex_state = 5, .external_lex_state = 3}, + [1277] = {.lex_state = 5, .external_lex_state = 4}, + [1278] = {.lex_state = 5, .external_lex_state = 4}, [1279] = {.lex_state = 5, .external_lex_state = 4}, [1280] = {.lex_state = 5, .external_lex_state = 4}, [1281] = {.lex_state = 5, .external_lex_state = 4}, [1282] = {.lex_state = 5, .external_lex_state = 4}, - [1283] = {.lex_state = 5, .external_lex_state = 4}, - [1284] = {.lex_state = 5, .external_lex_state = 3}, + [1283] = {.lex_state = 5, .external_lex_state = 3}, + [1284] = {.lex_state = 95, .external_lex_state = 2}, [1285] = {.lex_state = 5, .external_lex_state = 4}, - [1286] = {.lex_state = 5, .external_lex_state = 4}, - [1287] = {.lex_state = 5, .external_lex_state = 4}, - [1288] = {.lex_state = 5, .external_lex_state = 4}, + [1286] = {.lex_state = 5, .external_lex_state = 3}, + [1287] = {.lex_state = 5, .external_lex_state = 3}, + [1288] = {.lex_state = 5, .external_lex_state = 3}, [1289] = {.lex_state = 5, .external_lex_state = 3}, [1290] = {.lex_state = 5, .external_lex_state = 4}, - [1291] = {.lex_state = 5, .external_lex_state = 4}, - [1292] = {.lex_state = 5, .external_lex_state = 4}, - [1293] = {.lex_state = 5, .external_lex_state = 4}, - [1294] = {.lex_state = 5, .external_lex_state = 3}, + [1291] = {.lex_state = 5, .external_lex_state = 3}, + [1292] = {.lex_state = 5, .external_lex_state = 3}, + [1293] = {.lex_state = 5, .external_lex_state = 3}, + [1294] = {.lex_state = 5, .external_lex_state = 4}, [1295] = {.lex_state = 5, .external_lex_state = 4}, [1296] = {.lex_state = 5, .external_lex_state = 3}, - [1297] = {.lex_state = 6, .external_lex_state = 3}, - [1298] = {.lex_state = 5, .external_lex_state = 4}, - [1299] = {.lex_state = 5, .external_lex_state = 3}, + [1297] = {.lex_state = 5, .external_lex_state = 4}, + [1298] = {.lex_state = 5, .external_lex_state = 3}, + [1299] = {.lex_state = 5, .external_lex_state = 4}, [1300] = {.lex_state = 5, .external_lex_state = 4}, - [1301] = {.lex_state = 5, .external_lex_state = 3}, - [1302] = {.lex_state = 5, .external_lex_state = 3}, - [1303] = {.lex_state = 5, .external_lex_state = 4}, + [1301] = {.lex_state = 95, .external_lex_state = 2}, + [1302] = {.lex_state = 5, .external_lex_state = 4}, + [1303] = {.lex_state = 5, .external_lex_state = 3}, [1304] = {.lex_state = 5, .external_lex_state = 4}, - [1305] = {.lex_state = 5, .external_lex_state = 4}, + [1305] = {.lex_state = 6, .external_lex_state = 3}, [1306] = {.lex_state = 5, .external_lex_state = 3}, - [1307] = {.lex_state = 5, .external_lex_state = 3}, - [1308] = {.lex_state = 5, .external_lex_state = 3}, + [1307] = {.lex_state = 5, .external_lex_state = 4}, + [1308] = {.lex_state = 95, .external_lex_state = 2}, [1309] = {.lex_state = 5, .external_lex_state = 3}, [1310] = {.lex_state = 5, .external_lex_state = 4}, [1311] = {.lex_state = 5, .external_lex_state = 4}, [1312] = {.lex_state = 5, .external_lex_state = 3}, - [1313] = {.lex_state = 5, .external_lex_state = 4}, + [1313] = {.lex_state = 95, .external_lex_state = 2}, [1314] = {.lex_state = 5, .external_lex_state = 3}, [1315] = {.lex_state = 5, .external_lex_state = 3}, [1316] = {.lex_state = 5, .external_lex_state = 4}, - [1317] = {.lex_state = 5, .external_lex_state = 3}, + [1317] = {.lex_state = 5, .external_lex_state = 4}, [1318] = {.lex_state = 5, .external_lex_state = 3}, - [1319] = {.lex_state = 5, .external_lex_state = 4}, + [1319] = {.lex_state = 5, .external_lex_state = 3}, [1320] = {.lex_state = 5, .external_lex_state = 4}, - [1321] = {.lex_state = 5, .external_lex_state = 3}, + [1321] = {.lex_state = 5, .external_lex_state = 4}, [1322] = {.lex_state = 5, .external_lex_state = 3}, [1323] = {.lex_state = 5, .external_lex_state = 3}, - [1324] = {.lex_state = 5, .external_lex_state = 4}, - [1325] = {.lex_state = 5, .external_lex_state = 4}, + [1324] = {.lex_state = 5, .external_lex_state = 3}, + [1325] = {.lex_state = 5, .external_lex_state = 3}, [1326] = {.lex_state = 5, .external_lex_state = 3}, [1327] = {.lex_state = 5, .external_lex_state = 3}, - [1328] = {.lex_state = 5, .external_lex_state = 3}, - [1329] = {.lex_state = 5, .external_lex_state = 3}, - [1330] = {.lex_state = 5, .external_lex_state = 3}, - [1331] = {.lex_state = 6, .external_lex_state = 3}, + [1328] = {.lex_state = 5, .external_lex_state = 4}, + [1329] = {.lex_state = 5, .external_lex_state = 4}, + [1330] = {.lex_state = 5, .external_lex_state = 4}, + [1331] = {.lex_state = 5, .external_lex_state = 4}, [1332] = {.lex_state = 5, .external_lex_state = 3}, - [1333] = {.lex_state = 5, .external_lex_state = 3}, + [1333] = {.lex_state = 5, .external_lex_state = 4}, [1334] = {.lex_state = 5, .external_lex_state = 3}, - [1335] = {.lex_state = 5, .external_lex_state = 4}, + [1335] = {.lex_state = 5, .external_lex_state = 3}, [1336] = {.lex_state = 6, .external_lex_state = 3}, - [1337] = {.lex_state = 5, .external_lex_state = 3}, + [1337] = {.lex_state = 6, .external_lex_state = 3}, [1338] = {.lex_state = 5, .external_lex_state = 3}, - [1339] = {.lex_state = 5, .external_lex_state = 3}, - [1340] = {.lex_state = 5, .external_lex_state = 4}, - [1341] = {.lex_state = 5, .external_lex_state = 4}, + [1339] = {.lex_state = 5, .external_lex_state = 4}, + [1340] = {.lex_state = 5, .external_lex_state = 3}, + [1341] = {.lex_state = 5, .external_lex_state = 3}, [1342] = {.lex_state = 5, .external_lex_state = 3}, [1343] = {.lex_state = 5, .external_lex_state = 3}, [1344] = {.lex_state = 5, .external_lex_state = 3}, - [1345] = {.lex_state = 5, .external_lex_state = 4}, + [1345] = {.lex_state = 5, .external_lex_state = 3}, [1346] = {.lex_state = 5, .external_lex_state = 3}, - [1347] = {.lex_state = 5, .external_lex_state = 3}, + [1347] = {.lex_state = 6, .external_lex_state = 3}, [1348] = {.lex_state = 5, .external_lex_state = 4}, [1349] = {.lex_state = 5, .external_lex_state = 3}, [1350] = {.lex_state = 5, .external_lex_state = 3}, - [1351] = {.lex_state = 6, .external_lex_state = 3}, + [1351] = {.lex_state = 5, .external_lex_state = 3}, [1352] = {.lex_state = 6, .external_lex_state = 3}, - [1353] = {.lex_state = 5, .external_lex_state = 4}, - [1354] = {.lex_state = 5, .external_lex_state = 3}, - [1355] = {.lex_state = 5, .external_lex_state = 3}, - [1356] = {.lex_state = 5, .external_lex_state = 3}, + [1353] = {.lex_state = 5, .external_lex_state = 3}, + [1354] = {.lex_state = 12, .external_lex_state = 2}, + [1355] = {.lex_state = 12, .external_lex_state = 2}, + [1356] = {.lex_state = 5, .external_lex_state = 4}, [1357] = {.lex_state = 5, .external_lex_state = 3}, [1358] = {.lex_state = 12, .external_lex_state = 2}, [1359] = {.lex_state = 12, .external_lex_state = 2}, - [1360] = {.lex_state = 12, .external_lex_state = 2}, - [1361] = {.lex_state = 5, .external_lex_state = 4}, - [1362] = {.lex_state = 12, .external_lex_state = 2}, + [1360] = {.lex_state = 5, .external_lex_state = 4}, + [1361] = {.lex_state = 5, .external_lex_state = 3}, + [1362] = {.lex_state = 5, .external_lex_state = 3}, [1363] = {.lex_state = 5, .external_lex_state = 3}, - [1364] = {.lex_state = 5, .external_lex_state = 3}, - [1365] = {.lex_state = 5, .external_lex_state = 4}, + [1364] = {.lex_state = 12, .external_lex_state = 2}, + [1365] = {.lex_state = 5, .external_lex_state = 3}, [1366] = {.lex_state = 5, .external_lex_state = 3}, [1367] = {.lex_state = 5, .external_lex_state = 3}, - [1368] = {.lex_state = 12, .external_lex_state = 2}, - [1369] = {.lex_state = 5, .external_lex_state = 3}, - [1370] = {.lex_state = 6, .external_lex_state = 3}, - [1371] = {.lex_state = 12, .external_lex_state = 2}, - [1372] = {.lex_state = 5, .external_lex_state = 3}, + [1368] = {.lex_state = 5, .external_lex_state = 3}, + [1369] = {.lex_state = 5, .external_lex_state = 4}, + [1370] = {.lex_state = 12, .external_lex_state = 2}, + [1371] = {.lex_state = 5, .external_lex_state = 3}, + [1372] = {.lex_state = 5, .external_lex_state = 4}, [1373] = {.lex_state = 5, .external_lex_state = 3}, - [1374] = {.lex_state = 5, .external_lex_state = 4}, + [1374] = {.lex_state = 6, .external_lex_state = 3}, [1375] = {.lex_state = 5, .external_lex_state = 3}, [1376] = {.lex_state = 5, .external_lex_state = 3}, [1377] = {.lex_state = 5, .external_lex_state = 3}, @@ -14496,39 +16213,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1380] = {.lex_state = 5, .external_lex_state = 3}, [1381] = {.lex_state = 5, .external_lex_state = 3}, [1382] = {.lex_state = 5, .external_lex_state = 3}, - [1383] = {.lex_state = 5, .external_lex_state = 4}, + [1383] = {.lex_state = 5, .external_lex_state = 3}, [1384] = {.lex_state = 5, .external_lex_state = 3}, [1385] = {.lex_state = 5, .external_lex_state = 3}, - [1386] = {.lex_state = 5, .external_lex_state = 3}, + [1386] = {.lex_state = 5, .external_lex_state = 4}, [1387] = {.lex_state = 5, .external_lex_state = 3}, [1388] = {.lex_state = 5, .external_lex_state = 3}, [1389] = {.lex_state = 5, .external_lex_state = 3}, [1390] = {.lex_state = 5, .external_lex_state = 3}, [1391] = {.lex_state = 5, .external_lex_state = 3}, [1392] = {.lex_state = 12, .external_lex_state = 2}, - [1393] = {.lex_state = 5, .external_lex_state = 3}, - [1394] = {.lex_state = 12, .external_lex_state = 2}, + [1393] = {.lex_state = 12, .external_lex_state = 2}, + [1394] = {.lex_state = 5, .external_lex_state = 3}, [1395] = {.lex_state = 5, .external_lex_state = 3}, [1396] = {.lex_state = 5, .external_lex_state = 3}, [1397] = {.lex_state = 5, .external_lex_state = 3}, - [1398] = {.lex_state = 12, .external_lex_state = 2}, - [1399] = {.lex_state = 5, .external_lex_state = 3}, - [1400] = {.lex_state = 12, .external_lex_state = 2}, + [1398] = {.lex_state = 5, .external_lex_state = 3}, + [1399] = {.lex_state = 12, .external_lex_state = 2}, + [1400] = {.lex_state = 5, .external_lex_state = 3}, [1401] = {.lex_state = 5, .external_lex_state = 3}, - [1402] = {.lex_state = 12, .external_lex_state = 2}, + [1402] = {.lex_state = 5, .external_lex_state = 3}, [1403] = {.lex_state = 5, .external_lex_state = 3}, [1404] = {.lex_state = 5, .external_lex_state = 3}, - [1405] = {.lex_state = 5, .external_lex_state = 3}, - [1406] = {.lex_state = 5, .external_lex_state = 3}, - [1407] = {.lex_state = 12, .external_lex_state = 2}, - [1408] = {.lex_state = 5, .external_lex_state = 3}, - [1409] = {.lex_state = 12, .external_lex_state = 2}, - [1410] = {.lex_state = 5, .external_lex_state = 3}, + [1405] = {.lex_state = 12, .external_lex_state = 2}, + [1406] = {.lex_state = 12, .external_lex_state = 2}, + [1407] = {.lex_state = 5, .external_lex_state = 3}, + [1408] = {.lex_state = 12, .external_lex_state = 2}, + [1409] = {.lex_state = 5, .external_lex_state = 3}, + [1410] = {.lex_state = 12, .external_lex_state = 2}, [1411] = {.lex_state = 12, .external_lex_state = 2}, [1412] = {.lex_state = 12, .external_lex_state = 2}, [1413] = {.lex_state = 5, .external_lex_state = 3}, [1414] = {.lex_state = 5, .external_lex_state = 3}, - [1415] = {.lex_state = 12, .external_lex_state = 2}, + [1415] = {.lex_state = 5, .external_lex_state = 3}, [1416] = {.lex_state = 12, .external_lex_state = 2}, [1417] = {.lex_state = 12, .external_lex_state = 2}, [1418] = {.lex_state = 5, .external_lex_state = 3}, @@ -14536,37 +16253,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1420] = {.lex_state = 5, .external_lex_state = 3}, [1421] = {.lex_state = 5, .external_lex_state = 3}, [1422] = {.lex_state = 5, .external_lex_state = 3}, - [1423] = {.lex_state = 5, .external_lex_state = 3}, + [1423] = {.lex_state = 12, .external_lex_state = 2}, [1424] = {.lex_state = 12, .external_lex_state = 2}, [1425] = {.lex_state = 5, .external_lex_state = 3}, - [1426] = {.lex_state = 5, .external_lex_state = 3}, - [1427] = {.lex_state = 5, .external_lex_state = 3}, - [1428] = {.lex_state = 12, .external_lex_state = 2}, - [1429] = {.lex_state = 5, .external_lex_state = 3}, + [1426] = {.lex_state = 12, .external_lex_state = 2}, + [1427] = {.lex_state = 12, .external_lex_state = 2}, + [1428] = {.lex_state = 5, .external_lex_state = 3}, + [1429] = {.lex_state = 12, .external_lex_state = 2}, [1430] = {.lex_state = 5, .external_lex_state = 3}, [1431] = {.lex_state = 5, .external_lex_state = 3}, - [1432] = {.lex_state = 12, .external_lex_state = 2}, - [1433] = {.lex_state = 12, .external_lex_state = 2}, + [1432] = {.lex_state = 5, .external_lex_state = 3}, + [1433] = {.lex_state = 5, .external_lex_state = 3}, [1434] = {.lex_state = 12, .external_lex_state = 2}, - [1435] = {.lex_state = 5, .external_lex_state = 3}, - [1436] = {.lex_state = 12, .external_lex_state = 2}, - [1437] = {.lex_state = 5, .external_lex_state = 3}, + [1435] = {.lex_state = 12, .external_lex_state = 2}, + [1436] = {.lex_state = 5, .external_lex_state = 3}, + [1437] = {.lex_state = 95, .external_lex_state = 2}, [1438] = {.lex_state = 5, .external_lex_state = 3}, [1439] = {.lex_state = 5, .external_lex_state = 3}, - [1440] = {.lex_state = 5, .external_lex_state = 3}, - [1441] = {.lex_state = 5, .external_lex_state = 3}, + [1440] = {.lex_state = 95, .external_lex_state = 2}, + [1441] = {.lex_state = 95, .external_lex_state = 2}, [1442] = {.lex_state = 5, .external_lex_state = 3}, [1443] = {.lex_state = 5, .external_lex_state = 3}, [1444] = {.lex_state = 5, .external_lex_state = 3}, - [1445] = {.lex_state = 5, .external_lex_state = 3}, + [1445] = {.lex_state = 95, .external_lex_state = 2}, [1446] = {.lex_state = 5, .external_lex_state = 3}, - [1447] = {.lex_state = 12, .external_lex_state = 2}, - [1448] = {.lex_state = 12, .external_lex_state = 2}, - [1449] = {.lex_state = 12, .external_lex_state = 2}, - [1450] = {.lex_state = 12, .external_lex_state = 2}, - [1451] = {.lex_state = 12, .external_lex_state = 2}, - [1452] = {.lex_state = 12, .external_lex_state = 2}, - [1453] = {.lex_state = 12, .external_lex_state = 2}, + [1447] = {.lex_state = 95, .external_lex_state = 2}, + [1448] = {.lex_state = 5, .external_lex_state = 3}, + [1449] = {.lex_state = 5, .external_lex_state = 3}, + [1450] = {.lex_state = 5, .external_lex_state = 3}, + [1451] = {.lex_state = 95, .external_lex_state = 2}, + [1452] = {.lex_state = 95, .external_lex_state = 2}, + [1453] = {.lex_state = 5, .external_lex_state = 3}, [1454] = {.lex_state = 12, .external_lex_state = 2}, [1455] = {.lex_state = 12, .external_lex_state = 2}, [1456] = {.lex_state = 12, .external_lex_state = 2}, @@ -14575,49 +16292,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1459] = {.lex_state = 12, .external_lex_state = 2}, [1460] = {.lex_state = 12, .external_lex_state = 2}, [1461] = {.lex_state = 12, .external_lex_state = 2}, - [1462] = {.lex_state = 13, .external_lex_state = 5}, + [1462] = {.lex_state = 12, .external_lex_state = 2}, [1463] = {.lex_state = 12, .external_lex_state = 2}, - [1464] = {.lex_state = 13, .external_lex_state = 5}, - [1465] = {.lex_state = 13, .external_lex_state = 5}, + [1464] = {.lex_state = 12, .external_lex_state = 2}, + [1465] = {.lex_state = 12, .external_lex_state = 2}, [1466] = {.lex_state = 13, .external_lex_state = 5}, - [1467] = {.lex_state = 12, .external_lex_state = 2}, - [1468] = {.lex_state = 13, .external_lex_state = 5}, + [1467] = {.lex_state = 13, .external_lex_state = 5}, + [1468] = {.lex_state = 95, .external_lex_state = 2}, [1469] = {.lex_state = 12, .external_lex_state = 2}, - [1470] = {.lex_state = 96, .external_lex_state = 2}, - [1471] = {.lex_state = 96, .external_lex_state = 2}, - [1472] = {.lex_state = 96, .external_lex_state = 2}, - [1473] = {.lex_state = 96, .external_lex_state = 2}, - [1474] = {.lex_state = 96, .external_lex_state = 2}, - [1475] = {.lex_state = 96, .external_lex_state = 2}, - [1476] = {.lex_state = 96, .external_lex_state = 2}, - [1477] = {.lex_state = 13, .external_lex_state = 5}, - [1478] = {.lex_state = 7, .external_lex_state = 4}, - [1479] = {.lex_state = 13, .external_lex_state = 5}, + [1470] = {.lex_state = 12, .external_lex_state = 2}, + [1471] = {.lex_state = 12, .external_lex_state = 2}, + [1472] = {.lex_state = 13, .external_lex_state = 5}, + [1473] = {.lex_state = 13, .external_lex_state = 5}, + [1474] = {.lex_state = 13, .external_lex_state = 5}, + [1475] = {.lex_state = 12, .external_lex_state = 2}, + [1476] = {.lex_state = 12, .external_lex_state = 2}, + [1477] = {.lex_state = 12, .external_lex_state = 2}, + [1478] = {.lex_state = 13, .external_lex_state = 5}, + [1479] = {.lex_state = 7, .external_lex_state = 4}, [1480] = {.lex_state = 7, .external_lex_state = 4}, - [1481] = {.lex_state = 7, .external_lex_state = 3}, - [1482] = {.lex_state = 96, .external_lex_state = 2}, - [1483] = {.lex_state = 7, .external_lex_state = 3}, - [1484] = {.lex_state = 7, .external_lex_state = 3}, + [1481] = {.lex_state = 14, .external_lex_state = 2}, + [1482] = {.lex_state = 14, .external_lex_state = 2}, + [1483] = {.lex_state = 13, .external_lex_state = 5}, + [1484] = {.lex_state = 14, .external_lex_state = 2}, [1485] = {.lex_state = 7, .external_lex_state = 3}, [1486] = {.lex_state = 7, .external_lex_state = 3}, [1487] = {.lex_state = 7, .external_lex_state = 3}, [1488] = {.lex_state = 7, .external_lex_state = 3}, [1489] = {.lex_state = 7, .external_lex_state = 3}, - [1490] = {.lex_state = 7, .external_lex_state = 3}, - [1491] = {.lex_state = 7, .external_lex_state = 3}, + [1490] = {.lex_state = 7, .external_lex_state = 4}, + [1491] = {.lex_state = 7, .external_lex_state = 4}, [1492] = {.lex_state = 7, .external_lex_state = 3}, [1493] = {.lex_state = 7, .external_lex_state = 3}, [1494] = {.lex_state = 7, .external_lex_state = 3}, - [1495] = {.lex_state = 7, .external_lex_state = 3}, + [1495] = {.lex_state = 7, .external_lex_state = 4}, [1496] = {.lex_state = 7, .external_lex_state = 3}, [1497] = {.lex_state = 7, .external_lex_state = 3}, - [1498] = {.lex_state = 7, .external_lex_state = 3}, + [1498] = {.lex_state = 7, .external_lex_state = 4}, [1499] = {.lex_state = 7, .external_lex_state = 3}, [1500] = {.lex_state = 7, .external_lex_state = 3}, - [1501] = {.lex_state = 7, .external_lex_state = 4}, - [1502] = {.lex_state = 7, .external_lex_state = 4}, - [1503] = {.lex_state = 7, .external_lex_state = 4}, - [1504] = {.lex_state = 7, .external_lex_state = 4}, + [1501] = {.lex_state = 7, .external_lex_state = 3}, + [1502] = {.lex_state = 7, .external_lex_state = 3}, + [1503] = {.lex_state = 7, .external_lex_state = 3}, + [1504] = {.lex_state = 7, .external_lex_state = 3}, [1505] = {.lex_state = 7, .external_lex_state = 3}, [1506] = {.lex_state = 7, .external_lex_state = 3}, [1507] = {.lex_state = 7, .external_lex_state = 3}, @@ -14638,23 +16355,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1522] = {.lex_state = 7, .external_lex_state = 3}, [1523] = {.lex_state = 7, .external_lex_state = 3}, [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 12, .external_lex_state = 5}, + [1525] = {.lex_state = 7, .external_lex_state = 3}, [1526] = {.lex_state = 7, .external_lex_state = 3}, - [1527] = {.lex_state = 12, .external_lex_state = 5}, + [1527] = {.lex_state = 7, .external_lex_state = 3}, [1528] = {.lex_state = 7, .external_lex_state = 3}, [1529] = {.lex_state = 7, .external_lex_state = 3}, [1530] = {.lex_state = 7, .external_lex_state = 3}, [1531] = {.lex_state = 7, .external_lex_state = 3}, [1532] = {.lex_state = 7, .external_lex_state = 3}, [1533] = {.lex_state = 7, .external_lex_state = 3}, - [1534] = {.lex_state = 7, .external_lex_state = 3}, + [1534] = {.lex_state = 12, .external_lex_state = 5}, [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 12, .external_lex_state = 5}, - [1537] = {.lex_state = 7, .external_lex_state = 4}, + [1536] = {.lex_state = 7, .external_lex_state = 3}, + [1537] = {.lex_state = 7, .external_lex_state = 3}, [1538] = {.lex_state = 7, .external_lex_state = 3}, [1539] = {.lex_state = 7, .external_lex_state = 3}, - [1540] = {.lex_state = 7, .external_lex_state = 4}, - [1541] = {.lex_state = 7, .external_lex_state = 4}, + [1540] = {.lex_state = 7, .external_lex_state = 3}, + [1541] = {.lex_state = 7, .external_lex_state = 3}, [1542] = {.lex_state = 7, .external_lex_state = 3}, [1543] = {.lex_state = 7, .external_lex_state = 3}, [1544] = {.lex_state = 7, .external_lex_state = 3}, @@ -14679,21 +16396,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1563] = {.lex_state = 7, .external_lex_state = 3}, [1564] = {.lex_state = 7, .external_lex_state = 3}, [1565] = {.lex_state = 7, .external_lex_state = 3}, - [1566] = {.lex_state = 7, .external_lex_state = 4}, + [1566] = {.lex_state = 7, .external_lex_state = 3}, [1567] = {.lex_state = 7, .external_lex_state = 3}, - [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 7, .external_lex_state = 3}, + [1568] = {.lex_state = 7, .external_lex_state = 4}, + [1569] = {.lex_state = 7, .external_lex_state = 4}, [1570] = {.lex_state = 7, .external_lex_state = 3}, [1571] = {.lex_state = 7, .external_lex_state = 3}, - [1572] = {.lex_state = 7, .external_lex_state = 3}, + [1572] = {.lex_state = 12, .external_lex_state = 5}, [1573] = {.lex_state = 7, .external_lex_state = 3}, [1574] = {.lex_state = 7, .external_lex_state = 3}, [1575] = {.lex_state = 7, .external_lex_state = 3}, [1576] = {.lex_state = 7, .external_lex_state = 3}, [1577] = {.lex_state = 7, .external_lex_state = 3}, - [1578] = {.lex_state = 12, .external_lex_state = 5}, + [1578] = {.lex_state = 7, .external_lex_state = 3}, [1579] = {.lex_state = 7, .external_lex_state = 3}, - [1580] = {.lex_state = 7, .external_lex_state = 3}, + [1580] = {.lex_state = 12, .external_lex_state = 5}, [1581] = {.lex_state = 7, .external_lex_state = 3}, [1582] = {.lex_state = 7, .external_lex_state = 3}, [1583] = {.lex_state = 7, .external_lex_state = 3}, @@ -14705,7 +16422,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1589] = {.lex_state = 7, .external_lex_state = 3}, [1590] = {.lex_state = 7, .external_lex_state = 3}, [1591] = {.lex_state = 7, .external_lex_state = 3}, - [1592] = {.lex_state = 7, .external_lex_state = 3}, + [1592] = {.lex_state = 7, .external_lex_state = 4}, [1593] = {.lex_state = 7, .external_lex_state = 3}, [1594] = {.lex_state = 7, .external_lex_state = 3}, [1595] = {.lex_state = 7, .external_lex_state = 3}, @@ -14717,7 +16434,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1601] = {.lex_state = 7, .external_lex_state = 3}, [1602] = {.lex_state = 7, .external_lex_state = 3}, [1603] = {.lex_state = 7, .external_lex_state = 3}, - [1604] = {.lex_state = 12, .external_lex_state = 5}, + [1604] = {.lex_state = 7, .external_lex_state = 3}, [1605] = {.lex_state = 7, .external_lex_state = 3}, [1606] = {.lex_state = 7, .external_lex_state = 3}, [1607] = {.lex_state = 7, .external_lex_state = 3}, @@ -14733,218 +16450,218 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1617] = {.lex_state = 7, .external_lex_state = 3}, [1618] = {.lex_state = 7, .external_lex_state = 3}, [1619] = {.lex_state = 7, .external_lex_state = 3}, - [1620] = {.lex_state = 7, .external_lex_state = 3}, + [1620] = {.lex_state = 12, .external_lex_state = 5}, [1621] = {.lex_state = 7, .external_lex_state = 3}, [1622] = {.lex_state = 7, .external_lex_state = 3}, [1623] = {.lex_state = 7, .external_lex_state = 3}, [1624] = {.lex_state = 7, .external_lex_state = 3}, [1625] = {.lex_state = 7, .external_lex_state = 3}, - [1626] = {.lex_state = 7, .external_lex_state = 3}, + [1626] = {.lex_state = 7, .external_lex_state = 4}, [1627] = {.lex_state = 7, .external_lex_state = 3}, [1628] = {.lex_state = 7, .external_lex_state = 3}, [1629] = {.lex_state = 7, .external_lex_state = 3}, [1630] = {.lex_state = 7, .external_lex_state = 3}, [1631] = {.lex_state = 7, .external_lex_state = 3}, - [1632] = {.lex_state = 7, .external_lex_state = 3}, + [1632] = {.lex_state = 12, .external_lex_state = 5}, [1633] = {.lex_state = 7, .external_lex_state = 3}, [1634] = {.lex_state = 7, .external_lex_state = 3}, [1635] = {.lex_state = 7, .external_lex_state = 3}, - [1636] = {.lex_state = 7, .external_lex_state = 4}, - [1637] = {.lex_state = 7, .external_lex_state = 4}, - [1638] = {.lex_state = 7, .external_lex_state = 4}, - [1639] = {.lex_state = 7, .external_lex_state = 4}, - [1640] = {.lex_state = 7, .external_lex_state = 4}, - [1641] = {.lex_state = 7, .external_lex_state = 4}, - [1642] = {.lex_state = 7, .external_lex_state = 3}, - [1643] = {.lex_state = 7, .external_lex_state = 3}, + [1636] = {.lex_state = 7, .external_lex_state = 3}, + [1637] = {.lex_state = 7, .external_lex_state = 3}, + [1638] = {.lex_state = 12, .external_lex_state = 5}, + [1639] = {.lex_state = 7, .external_lex_state = 3}, + [1640] = {.lex_state = 7, .external_lex_state = 3}, + [1641] = {.lex_state = 7, .external_lex_state = 3}, + [1642] = {.lex_state = 95, .external_lex_state = 2}, + [1643] = {.lex_state = 7, .external_lex_state = 4}, [1644] = {.lex_state = 7, .external_lex_state = 4}, - [1645] = {.lex_state = 7, .external_lex_state = 4}, - [1646] = {.lex_state = 7, .external_lex_state = 4}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, + [1645] = {.lex_state = 7, .external_lex_state = 3}, + [1646] = {.lex_state = 7, .external_lex_state = 3}, + [1647] = {.lex_state = 7, .external_lex_state = 4}, [1648] = {.lex_state = 7, .external_lex_state = 4}, [1649] = {.lex_state = 7, .external_lex_state = 3}, - [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 3}, + [1650] = {.lex_state = 12, .external_lex_state = 5}, + [1651] = {.lex_state = 12, .external_lex_state = 5}, [1652] = {.lex_state = 7, .external_lex_state = 3}, - [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 7, .external_lex_state = 3}, + [1653] = {.lex_state = 7, .external_lex_state = 4}, + [1654] = {.lex_state = 7, .external_lex_state = 4}, [1655] = {.lex_state = 7, .external_lex_state = 3}, [1656] = {.lex_state = 7, .external_lex_state = 3}, [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, + [1658] = {.lex_state = 7, .external_lex_state = 4}, [1659] = {.lex_state = 7, .external_lex_state = 3}, [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 7, .external_lex_state = 4}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, + [1661] = {.lex_state = 7, .external_lex_state = 3}, + [1662] = {.lex_state = 7, .external_lex_state = 4}, [1663] = {.lex_state = 7, .external_lex_state = 4}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 7, .external_lex_state = 3}, - [1666] = {.lex_state = 7, .external_lex_state = 3}, + [1664] = {.lex_state = 7, .external_lex_state = 4}, + [1665] = {.lex_state = 7, .external_lex_state = 4}, + [1666] = {.lex_state = 7, .external_lex_state = 4}, [1667] = {.lex_state = 7, .external_lex_state = 3}, - [1668] = {.lex_state = 7, .external_lex_state = 3}, + [1668] = {.lex_state = 7, .external_lex_state = 4}, [1669] = {.lex_state = 7, .external_lex_state = 3}, - [1670] = {.lex_state = 7, .external_lex_state = 3}, + [1670] = {.lex_state = 7, .external_lex_state = 4}, [1671] = {.lex_state = 7, .external_lex_state = 3}, [1672] = {.lex_state = 7, .external_lex_state = 3}, [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 12, .external_lex_state = 5}, - [1675] = {.lex_state = 12, .external_lex_state = 5}, - [1676] = {.lex_state = 7, .external_lex_state = 4}, + [1674] = {.lex_state = 7, .external_lex_state = 4}, + [1675] = {.lex_state = 7, .external_lex_state = 3}, + [1676] = {.lex_state = 7, .external_lex_state = 3}, [1677] = {.lex_state = 7, .external_lex_state = 4}, - [1678] = {.lex_state = 7, .external_lex_state = 4}, + [1678] = {.lex_state = 7, .external_lex_state = 3}, [1679] = {.lex_state = 7, .external_lex_state = 3}, [1680] = {.lex_state = 7, .external_lex_state = 4}, [1681] = {.lex_state = 7, .external_lex_state = 4}, - [1682] = {.lex_state = 7, .external_lex_state = 3}, + [1682] = {.lex_state = 7, .external_lex_state = 4}, [1683] = {.lex_state = 7, .external_lex_state = 3}, [1684] = {.lex_state = 7, .external_lex_state = 3}, [1685] = {.lex_state = 7, .external_lex_state = 3}, [1686] = {.lex_state = 7, .external_lex_state = 3}, - [1687] = {.lex_state = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 7, .external_lex_state = 3}, - [1689] = {.lex_state = 7, .external_lex_state = 4}, - [1690] = {.lex_state = 12, .external_lex_state = 5}, + [1687] = {.lex_state = 7, .external_lex_state = 4}, + [1688] = {.lex_state = 7, .external_lex_state = 4}, + [1689] = {.lex_state = 7, .external_lex_state = 3}, + [1690] = {.lex_state = 7, .external_lex_state = 4}, [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 12, .external_lex_state = 5}, + [1692] = {.lex_state = 7, .external_lex_state = 4}, [1693] = {.lex_state = 7, .external_lex_state = 3}, [1694] = {.lex_state = 7, .external_lex_state = 4}, [1695] = {.lex_state = 7, .external_lex_state = 4}, - [1696] = {.lex_state = 7, .external_lex_state = 3}, - [1697] = {.lex_state = 7, .external_lex_state = 3}, + [1696] = {.lex_state = 7, .external_lex_state = 4}, + [1697] = {.lex_state = 7, .external_lex_state = 4}, [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 7, .external_lex_state = 3}, - [1700] = {.lex_state = 7, .external_lex_state = 3}, - [1701] = {.lex_state = 7, .external_lex_state = 3}, + [1699] = {.lex_state = 7, .external_lex_state = 4}, + [1700] = {.lex_state = 7, .external_lex_state = 4}, + [1701] = {.lex_state = 7, .external_lex_state = 4}, [1702] = {.lex_state = 7, .external_lex_state = 3}, - [1703] = {.lex_state = 7, .external_lex_state = 4}, - [1704] = {.lex_state = 7, .external_lex_state = 3}, + [1703] = {.lex_state = 12, .external_lex_state = 5}, + [1704] = {.lex_state = 7, .external_lex_state = 4}, [1705] = {.lex_state = 7, .external_lex_state = 4}, [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 12, .external_lex_state = 5}, + [1707] = {.lex_state = 7, .external_lex_state = 4}, [1708] = {.lex_state = 7, .external_lex_state = 4}, - [1709] = {.lex_state = 12, .external_lex_state = 5}, + [1709] = {.lex_state = 7, .external_lex_state = 4}, [1710] = {.lex_state = 7, .external_lex_state = 3}, - [1711] = {.lex_state = 7, .external_lex_state = 3}, + [1711] = {.lex_state = 7, .external_lex_state = 4}, [1712] = {.lex_state = 7, .external_lex_state = 4}, [1713] = {.lex_state = 7, .external_lex_state = 3}, - [1714] = {.lex_state = 12, .external_lex_state = 5}, - [1715] = {.lex_state = 7, .external_lex_state = 3}, - [1716] = {.lex_state = 7, .external_lex_state = 3}, + [1714] = {.lex_state = 7, .external_lex_state = 3}, + [1715] = {.lex_state = 7, .external_lex_state = 4}, + [1716] = {.lex_state = 7, .external_lex_state = 4}, [1717] = {.lex_state = 7, .external_lex_state = 3}, - [1718] = {.lex_state = 7, .external_lex_state = 3}, + [1718] = {.lex_state = 7, .external_lex_state = 4}, [1719] = {.lex_state = 7, .external_lex_state = 4}, [1720] = {.lex_state = 7, .external_lex_state = 4}, [1721] = {.lex_state = 7, .external_lex_state = 4}, [1722] = {.lex_state = 7, .external_lex_state = 4}, - [1723] = {.lex_state = 7, .external_lex_state = 3}, + [1723] = {.lex_state = 7, .external_lex_state = 4}, [1724] = {.lex_state = 7, .external_lex_state = 4}, - [1725] = {.lex_state = 7, .external_lex_state = 3}, - [1726] = {.lex_state = 7, .external_lex_state = 3}, + [1725] = {.lex_state = 7, .external_lex_state = 4}, + [1726] = {.lex_state = 12, .external_lex_state = 5}, [1727] = {.lex_state = 7, .external_lex_state = 3}, [1728] = {.lex_state = 7, .external_lex_state = 3}, [1729] = {.lex_state = 7, .external_lex_state = 3}, - [1730] = {.lex_state = 7, .external_lex_state = 3}, + [1730] = {.lex_state = 12, .external_lex_state = 5}, [1731] = {.lex_state = 7, .external_lex_state = 3}, [1732] = {.lex_state = 7, .external_lex_state = 3}, [1733] = {.lex_state = 7, .external_lex_state = 4}, - [1734] = {.lex_state = 7, .external_lex_state = 3}, - [1735] = {.lex_state = 7, .external_lex_state = 3}, + [1734] = {.lex_state = 7, .external_lex_state = 4}, + [1735] = {.lex_state = 7, .external_lex_state = 4}, [1736] = {.lex_state = 7, .external_lex_state = 3}, [1737] = {.lex_state = 7, .external_lex_state = 3}, [1738] = {.lex_state = 7, .external_lex_state = 3}, - [1739] = {.lex_state = 7, .external_lex_state = 3}, - [1740] = {.lex_state = 7, .external_lex_state = 3}, - [1741] = {.lex_state = 7, .external_lex_state = 3}, - [1742] = {.lex_state = 7, .external_lex_state = 4}, - [1743] = {.lex_state = 7, .external_lex_state = 4}, + [1739] = {.lex_state = 7, .external_lex_state = 4}, + [1740] = {.lex_state = 7, .external_lex_state = 4}, + [1741] = {.lex_state = 7, .external_lex_state = 4}, + [1742] = {.lex_state = 12, .external_lex_state = 5}, + [1743] = {.lex_state = 7, .external_lex_state = 3}, [1744] = {.lex_state = 7, .external_lex_state = 4}, [1745] = {.lex_state = 7, .external_lex_state = 3}, - [1746] = {.lex_state = 7, .external_lex_state = 3}, - [1747] = {.lex_state = 7, .external_lex_state = 3}, - [1748] = {.lex_state = 7, .external_lex_state = 3}, - [1749] = {.lex_state = 7, .external_lex_state = 3}, - [1750] = {.lex_state = 7, .external_lex_state = 4}, - [1751] = {.lex_state = 7, .external_lex_state = 3}, - [1752] = {.lex_state = 7, .external_lex_state = 3}, - [1753] = {.lex_state = 7, .external_lex_state = 4}, - [1754] = {.lex_state = 12, .external_lex_state = 5}, - [1755] = {.lex_state = 7, .external_lex_state = 4}, + [1746] = {.lex_state = 7, .external_lex_state = 4}, + [1747] = {.lex_state = 7, .external_lex_state = 4}, + [1748] = {.lex_state = 7, .external_lex_state = 4}, + [1749] = {.lex_state = 7, .external_lex_state = 4}, + [1750] = {.lex_state = 7, .external_lex_state = 3}, + [1751] = {.lex_state = 7, .external_lex_state = 4}, + [1752] = {.lex_state = 7, .external_lex_state = 4}, + [1753] = {.lex_state = 7, .external_lex_state = 3}, + [1754] = {.lex_state = 7, .external_lex_state = 3}, + [1755] = {.lex_state = 7, .external_lex_state = 3}, [1756] = {.lex_state = 7, .external_lex_state = 4}, - [1757] = {.lex_state = 7, .external_lex_state = 3}, - [1758] = {.lex_state = 7, .external_lex_state = 3}, + [1757] = {.lex_state = 7, .external_lex_state = 4}, + [1758] = {.lex_state = 7, .external_lex_state = 4}, [1759] = {.lex_state = 7, .external_lex_state = 3}, - [1760] = {.lex_state = 7, .external_lex_state = 4}, - [1761] = {.lex_state = 7, .external_lex_state = 4}, - [1762] = {.lex_state = 7, .external_lex_state = 3}, - [1763] = {.lex_state = 7, .external_lex_state = 3}, + [1760] = {.lex_state = 7, .external_lex_state = 3}, + [1761] = {.lex_state = 7, .external_lex_state = 3}, + [1762] = {.lex_state = 7, .external_lex_state = 4}, + [1763] = {.lex_state = 7, .external_lex_state = 4}, [1764] = {.lex_state = 7, .external_lex_state = 3}, - [1765] = {.lex_state = 7, .external_lex_state = 4}, - [1766] = {.lex_state = 7, .external_lex_state = 4}, - [1767] = {.lex_state = 7, .external_lex_state = 4}, + [1765] = {.lex_state = 7, .external_lex_state = 3}, + [1766] = {.lex_state = 7, .external_lex_state = 3}, + [1767] = {.lex_state = 7, .external_lex_state = 3}, [1768] = {.lex_state = 7, .external_lex_state = 3}, [1769] = {.lex_state = 7, .external_lex_state = 3}, - [1770] = {.lex_state = 7, .external_lex_state = 3}, - [1771] = {.lex_state = 7, .external_lex_state = 3}, - [1772] = {.lex_state = 7, .external_lex_state = 4}, - [1773] = {.lex_state = 7, .external_lex_state = 3}, + [1770] = {.lex_state = 7, .external_lex_state = 4}, + [1771] = {.lex_state = 7, .external_lex_state = 4}, + [1772] = {.lex_state = 7, .external_lex_state = 3}, + [1773] = {.lex_state = 12, .external_lex_state = 5}, [1774] = {.lex_state = 7, .external_lex_state = 4}, [1775] = {.lex_state = 7, .external_lex_state = 3}, - [1776] = {.lex_state = 7, .external_lex_state = 3}, - [1777] = {.lex_state = 7, .external_lex_state = 3}, - [1778] = {.lex_state = 7, .external_lex_state = 4}, + [1776] = {.lex_state = 12, .external_lex_state = 5}, + [1777] = {.lex_state = 7, .external_lex_state = 4}, + [1778] = {.lex_state = 7, .external_lex_state = 3}, [1779] = {.lex_state = 7, .external_lex_state = 4}, - [1780] = {.lex_state = 12, .external_lex_state = 5}, - [1781] = {.lex_state = 7, .external_lex_state = 4}, - [1782] = {.lex_state = 12, .external_lex_state = 5}, - [1783] = {.lex_state = 7, .external_lex_state = 4}, - [1784] = {.lex_state = 7, .external_lex_state = 4}, - [1785] = {.lex_state = 13, .external_lex_state = 5}, - [1786] = {.lex_state = 7, .external_lex_state = 4}, - [1787] = {.lex_state = 7, .external_lex_state = 4}, - [1788] = {.lex_state = 7, .external_lex_state = 4}, - [1789] = {.lex_state = 7, .external_lex_state = 4}, - [1790] = {.lex_state = 7, .external_lex_state = 4}, - [1791] = {.lex_state = 7, .external_lex_state = 4}, - [1792] = {.lex_state = 7, .external_lex_state = 4}, + [1780] = {.lex_state = 7, .external_lex_state = 3}, + [1781] = {.lex_state = 7, .external_lex_state = 3}, + [1782] = {.lex_state = 7, .external_lex_state = 3}, + [1783] = {.lex_state = 7, .external_lex_state = 3}, + [1784] = {.lex_state = 7, .external_lex_state = 3}, + [1785] = {.lex_state = 7, .external_lex_state = 4}, + [1786] = {.lex_state = 7, .external_lex_state = 3}, + [1787] = {.lex_state = 12, .external_lex_state = 5}, + [1788] = {.lex_state = 7, .external_lex_state = 3}, + [1789] = {.lex_state = 7, .external_lex_state = 3}, + [1790] = {.lex_state = 7, .external_lex_state = 3}, + [1791] = {.lex_state = 7, .external_lex_state = 3}, + [1792] = {.lex_state = 12, .external_lex_state = 5}, [1793] = {.lex_state = 7, .external_lex_state = 3}, [1794] = {.lex_state = 7, .external_lex_state = 4}, - [1795] = {.lex_state = 7, .external_lex_state = 4}, - [1796] = {.lex_state = 7, .external_lex_state = 4}, - [1797] = {.lex_state = 7, .external_lex_state = 4}, + [1795] = {.lex_state = 7, .external_lex_state = 3}, + [1796] = {.lex_state = 7, .external_lex_state = 3}, + [1797] = {.lex_state = 7, .external_lex_state = 3}, [1798] = {.lex_state = 7, .external_lex_state = 3}, [1799] = {.lex_state = 7, .external_lex_state = 3}, - [1800] = {.lex_state = 7, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 3}, - [1802] = {.lex_state = 7, .external_lex_state = 4}, - [1803] = {.lex_state = 7, .external_lex_state = 4}, - [1804] = {.lex_state = 7, .external_lex_state = 4}, - [1805] = {.lex_state = 12, .external_lex_state = 5}, - [1806] = {.lex_state = 12, .external_lex_state = 5}, - [1807] = {.lex_state = 7, .external_lex_state = 4}, - [1808] = {.lex_state = 7, .external_lex_state = 4}, - [1809] = {.lex_state = 7, .external_lex_state = 4}, - [1810] = {.lex_state = 7, .external_lex_state = 4}, + [1800] = {.lex_state = 7, .external_lex_state = 4}, + [1801] = {.lex_state = 7, .external_lex_state = 4}, + [1802] = {.lex_state = 7, .external_lex_state = 3}, + [1803] = {.lex_state = 7, .external_lex_state = 3}, + [1804] = {.lex_state = 7, .external_lex_state = 3}, + [1805] = {.lex_state = 7, .external_lex_state = 3}, + [1806] = {.lex_state = 7, .external_lex_state = 3}, + [1807] = {.lex_state = 7, .external_lex_state = 3}, + [1808] = {.lex_state = 7, .external_lex_state = 3}, + [1809] = {.lex_state = 7, .external_lex_state = 3}, + [1810] = {.lex_state = 7, .external_lex_state = 3}, [1811] = {.lex_state = 7, .external_lex_state = 4}, [1812] = {.lex_state = 7, .external_lex_state = 4}, - [1813] = {.lex_state = 7, .external_lex_state = 4}, - [1814] = {.lex_state = 7, .external_lex_state = 4}, - [1815] = {.lex_state = 7, .external_lex_state = 4}, - [1816] = {.lex_state = 7, .external_lex_state = 4}, + [1813] = {.lex_state = 7, .external_lex_state = 3}, + [1814] = {.lex_state = 7, .external_lex_state = 3}, + [1815] = {.lex_state = 12, .external_lex_state = 5}, + [1816] = {.lex_state = 7, .external_lex_state = 3}, [1817] = {.lex_state = 7, .external_lex_state = 4}, - [1818] = {.lex_state = 7, .external_lex_state = 4}, + [1818] = {.lex_state = 7, .external_lex_state = 3}, [1819] = {.lex_state = 7, .external_lex_state = 3}, - [1820] = {.lex_state = 7, .external_lex_state = 4}, - [1821] = {.lex_state = 7, .external_lex_state = 4}, - [1822] = {.lex_state = 7, .external_lex_state = 4}, + [1820] = {.lex_state = 7, .external_lex_state = 3}, + [1821] = {.lex_state = 7, .external_lex_state = 3}, + [1822] = {.lex_state = 7, .external_lex_state = 3}, [1823] = {.lex_state = 7, .external_lex_state = 4}, [1824] = {.lex_state = 7, .external_lex_state = 4}, - [1825] = {.lex_state = 7, .external_lex_state = 4}, - [1826] = {.lex_state = 7, .external_lex_state = 4}, + [1825] = {.lex_state = 13, .external_lex_state = 5}, + [1826] = {.lex_state = 7, .external_lex_state = 3}, [1827] = {.lex_state = 7, .external_lex_state = 3}, - [1828] = {.lex_state = 7, .external_lex_state = 3}, - [1829] = {.lex_state = 7, .external_lex_state = 3}, + [1828] = {.lex_state = 7, .external_lex_state = 4}, + [1829] = {.lex_state = 7, .external_lex_state = 4}, [1830] = {.lex_state = 7, .external_lex_state = 3}, - [1831] = {.lex_state = 7, .external_lex_state = 3}, + [1831] = {.lex_state = 7, .external_lex_state = 4}, [1832] = {.lex_state = 7, .external_lex_state = 3}, [1833] = {.lex_state = 7, .external_lex_state = 3}, [1834] = {.lex_state = 7, .external_lex_state = 3}, @@ -14952,131 +16669,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1836] = {.lex_state = 7, .external_lex_state = 3}, [1837] = {.lex_state = 7, .external_lex_state = 3}, [1838] = {.lex_state = 7, .external_lex_state = 3}, - [1839] = {.lex_state = 7, .external_lex_state = 3}, - [1840] = {.lex_state = 12, .external_lex_state = 5}, + [1839] = {.lex_state = 7, .external_lex_state = 4}, + [1840] = {.lex_state = 7, .external_lex_state = 3}, [1841] = {.lex_state = 7, .external_lex_state = 3}, [1842] = {.lex_state = 7, .external_lex_state = 3}, [1843] = {.lex_state = 7, .external_lex_state = 3}, [1844] = {.lex_state = 7, .external_lex_state = 3}, [1845] = {.lex_state = 7, .external_lex_state = 3}, - [1846] = {.lex_state = 7, .external_lex_state = 3}, + [1846] = {.lex_state = 7, .external_lex_state = 4}, [1847] = {.lex_state = 7, .external_lex_state = 3}, - [1848] = {.lex_state = 7, .external_lex_state = 4}, + [1848] = {.lex_state = 7, .external_lex_state = 3}, [1849] = {.lex_state = 7, .external_lex_state = 3}, [1850] = {.lex_state = 7, .external_lex_state = 3}, [1851] = {.lex_state = 7, .external_lex_state = 3}, - [1852] = {.lex_state = 12, .external_lex_state = 5}, + [1852] = {.lex_state = 7, .external_lex_state = 3}, [1853] = {.lex_state = 7, .external_lex_state = 3}, - [1854] = {.lex_state = 7, .external_lex_state = 4}, - [1855] = {.lex_state = 7, .external_lex_state = 3}, + [1854] = {.lex_state = 7, .external_lex_state = 3}, + [1855] = {.lex_state = 12, .external_lex_state = 5}, [1856] = {.lex_state = 7, .external_lex_state = 3}, - [1857] = {.lex_state = 7, .external_lex_state = 3}, - [1858] = {.lex_state = 12, .external_lex_state = 5}, - [1859] = {.lex_state = 12, .external_lex_state = 5}, + [1857] = {.lex_state = 12, .external_lex_state = 5}, + [1858] = {.lex_state = 7, .external_lex_state = 3}, + [1859] = {.lex_state = 7, .external_lex_state = 3}, [1860] = {.lex_state = 7, .external_lex_state = 3}, - [1861] = {.lex_state = 12, .external_lex_state = 5}, + [1861] = {.lex_state = 7, .external_lex_state = 3}, [1862] = {.lex_state = 7, .external_lex_state = 3}, [1863] = {.lex_state = 7, .external_lex_state = 4}, [1864] = {.lex_state = 7, .external_lex_state = 3}, [1865] = {.lex_state = 7, .external_lex_state = 3}, - [1866] = {.lex_state = 7, .external_lex_state = 4}, + [1866] = {.lex_state = 7, .external_lex_state = 3}, [1867] = {.lex_state = 7, .external_lex_state = 3}, [1868] = {.lex_state = 7, .external_lex_state = 3}, [1869] = {.lex_state = 7, .external_lex_state = 3}, [1870] = {.lex_state = 7, .external_lex_state = 3}, - [1871] = {.lex_state = 7, .external_lex_state = 4}, - [1872] = {.lex_state = 7, .external_lex_state = 4}, + [1871] = {.lex_state = 12, .external_lex_state = 5}, + [1872] = {.lex_state = 7, .external_lex_state = 3}, [1873] = {.lex_state = 7, .external_lex_state = 3}, [1874] = {.lex_state = 7, .external_lex_state = 3}, [1875] = {.lex_state = 7, .external_lex_state = 3}, - [1876] = {.lex_state = 7, .external_lex_state = 4}, + [1876] = {.lex_state = 7, .external_lex_state = 3}, [1877] = {.lex_state = 7, .external_lex_state = 3}, - [1878] = {.lex_state = 7, .external_lex_state = 4}, + [1878] = {.lex_state = 7, .external_lex_state = 3}, [1879] = {.lex_state = 7, .external_lex_state = 3}, - [1880] = {.lex_state = 7, .external_lex_state = 4}, + [1880] = {.lex_state = 7, .external_lex_state = 3}, [1881] = {.lex_state = 7, .external_lex_state = 3}, - [1882] = {.lex_state = 7, .external_lex_state = 4}, + [1882] = {.lex_state = 7, .external_lex_state = 3}, [1883] = {.lex_state = 7, .external_lex_state = 3}, [1884] = {.lex_state = 7, .external_lex_state = 3}, [1885] = {.lex_state = 7, .external_lex_state = 3}, [1886] = {.lex_state = 7, .external_lex_state = 3}, - [1887] = {.lex_state = 12, .external_lex_state = 5}, + [1887] = {.lex_state = 7, .external_lex_state = 3}, [1888] = {.lex_state = 7, .external_lex_state = 3}, - [1889] = {.lex_state = 7, .external_lex_state = 4}, - [1890] = {.lex_state = 7, .external_lex_state = 4}, + [1889] = {.lex_state = 7, .external_lex_state = 3}, + [1890] = {.lex_state = 7, .external_lex_state = 3}, [1891] = {.lex_state = 7, .external_lex_state = 3}, [1892] = {.lex_state = 7, .external_lex_state = 3}, - [1893] = {.lex_state = 7, .external_lex_state = 4}, - [1894] = {.lex_state = 7, .external_lex_state = 4}, + [1893] = {.lex_state = 7, .external_lex_state = 3}, + [1894] = {.lex_state = 7, .external_lex_state = 3}, [1895] = {.lex_state = 7, .external_lex_state = 3}, [1896] = {.lex_state = 7, .external_lex_state = 3}, - [1897] = {.lex_state = 7, .external_lex_state = 4}, + [1897] = {.lex_state = 7, .external_lex_state = 3}, [1898] = {.lex_state = 7, .external_lex_state = 3}, - [1899] = {.lex_state = 7, .external_lex_state = 4}, - [1900] = {.lex_state = 7, .external_lex_state = 4}, - [1901] = {.lex_state = 12, .external_lex_state = 5}, - [1902] = {.lex_state = 7, .external_lex_state = 3}, - [1903] = {.lex_state = 7, .external_lex_state = 3}, - [1904] = {.lex_state = 7, .external_lex_state = 3}, - [1905] = {.lex_state = 7, .external_lex_state = 3}, + [1899] = {.lex_state = 7, .external_lex_state = 3}, + [1900] = {.lex_state = 7, .external_lex_state = 3}, + [1901] = {.lex_state = 7, .external_lex_state = 3}, + [1902] = {.lex_state = 7, .external_lex_state = 4}, + [1903] = {.lex_state = 7, .external_lex_state = 4}, + [1904] = {.lex_state = 12, .external_lex_state = 5}, + [1905] = {.lex_state = 12, .external_lex_state = 5}, [1906] = {.lex_state = 7, .external_lex_state = 3}, - [1907] = {.lex_state = 7, .external_lex_state = 3}, + [1907] = {.lex_state = 7, .external_lex_state = 4}, [1908] = {.lex_state = 7, .external_lex_state = 3}, [1909] = {.lex_state = 7, .external_lex_state = 3}, - [1910] = {.lex_state = 7, .external_lex_state = 3}, + [1910] = {.lex_state = 7, .external_lex_state = 4}, [1911] = {.lex_state = 7, .external_lex_state = 3}, [1912] = {.lex_state = 7, .external_lex_state = 3}, [1913] = {.lex_state = 7, .external_lex_state = 3}, [1914] = {.lex_state = 7, .external_lex_state = 3}, [1915] = {.lex_state = 7, .external_lex_state = 3}, - [1916] = {.lex_state = 7, .external_lex_state = 3}, + [1916] = {.lex_state = 12, .external_lex_state = 5}, [1917] = {.lex_state = 7, .external_lex_state = 3}, [1918] = {.lex_state = 7, .external_lex_state = 3}, [1919] = {.lex_state = 7, .external_lex_state = 3}, [1920] = {.lex_state = 7, .external_lex_state = 3}, [1921] = {.lex_state = 7, .external_lex_state = 3}, - [1922] = {.lex_state = 7, .external_lex_state = 3}, - [1923] = {.lex_state = 7, .external_lex_state = 3}, - [1924] = {.lex_state = 7, .external_lex_state = 3}, - [1925] = {.lex_state = 7, .external_lex_state = 3}, - [1926] = {.lex_state = 7, .external_lex_state = 3}, - [1927] = {.lex_state = 7, .external_lex_state = 3}, - [1928] = {.lex_state = 7, .external_lex_state = 3}, + [1922] = {.lex_state = 7, .external_lex_state = 4}, + [1923] = {.lex_state = 7, .external_lex_state = 4}, + [1924] = {.lex_state = 7, .external_lex_state = 4}, + [1925] = {.lex_state = 7, .external_lex_state = 4}, + [1926] = {.lex_state = 7, .external_lex_state = 4}, + [1927] = {.lex_state = 95, .external_lex_state = 2}, + [1928] = {.lex_state = 7, .external_lex_state = 4}, [1929] = {.lex_state = 7, .external_lex_state = 3}, - [1930] = {.lex_state = 7, .external_lex_state = 3}, + [1930] = {.lex_state = 7, .external_lex_state = 4}, [1931] = {.lex_state = 7, .external_lex_state = 3}, [1932] = {.lex_state = 7, .external_lex_state = 3}, [1933] = {.lex_state = 7, .external_lex_state = 3}, - [1934] = {.lex_state = 7, .external_lex_state = 3}, - [1935] = {.lex_state = 12, .external_lex_state = 5}, + [1934] = {.lex_state = 7, .external_lex_state = 4}, + [1935] = {.lex_state = 7, .external_lex_state = 4}, [1936] = {.lex_state = 7, .external_lex_state = 3}, [1937] = {.lex_state = 7, .external_lex_state = 3}, [1938] = {.lex_state = 7, .external_lex_state = 3}, - [1939] = {.lex_state = 7, .external_lex_state = 4}, + [1939] = {.lex_state = 7, .external_lex_state = 3}, [1940] = {.lex_state = 7, .external_lex_state = 3}, - [1941] = {.lex_state = 7, .external_lex_state = 3}, + [1941] = {.lex_state = 7, .external_lex_state = 4}, [1942] = {.lex_state = 7, .external_lex_state = 3}, - [1943] = {.lex_state = 7, .external_lex_state = 3}, - [1944] = {.lex_state = 7, .external_lex_state = 4}, + [1943] = {.lex_state = 7, .external_lex_state = 4}, + [1944] = {.lex_state = 7, .external_lex_state = 3}, [1945] = {.lex_state = 7, .external_lex_state = 3}, [1946] = {.lex_state = 7, .external_lex_state = 3}, - [1947] = {.lex_state = 7, .external_lex_state = 3}, - [1948] = {.lex_state = 7, .external_lex_state = 4}, - [1949] = {.lex_state = 7, .external_lex_state = 4}, + [1947] = {.lex_state = 7, .external_lex_state = 4}, + [1948] = {.lex_state = 12, .external_lex_state = 5}, + [1949] = {.lex_state = 7, .external_lex_state = 3}, [1950] = {.lex_state = 7, .external_lex_state = 4}, - [1951] = {.lex_state = 7, .external_lex_state = 4}, - [1952] = {.lex_state = 7, .external_lex_state = 4}, - [1953] = {.lex_state = 7, .external_lex_state = 4}, + [1951] = {.lex_state = 7, .external_lex_state = 3}, + [1952] = {.lex_state = 7, .external_lex_state = 3}, + [1953] = {.lex_state = 12, .external_lex_state = 5}, [1954] = {.lex_state = 7, .external_lex_state = 4}, - [1955] = {.lex_state = 7, .external_lex_state = 3}, - [1956] = {.lex_state = 12, .external_lex_state = 5}, + [1955] = {.lex_state = 7, .external_lex_state = 4}, + [1956] = {.lex_state = 7, .external_lex_state = 4}, [1957] = {.lex_state = 7, .external_lex_state = 4}, [1958] = {.lex_state = 7, .external_lex_state = 4}, - [1959] = {.lex_state = 7, .external_lex_state = 4}, + [1959] = {.lex_state = 12, .external_lex_state = 5}, [1960] = {.lex_state = 7, .external_lex_state = 4}, [1961] = {.lex_state = 7, .external_lex_state = 4}, [1962] = {.lex_state = 7, .external_lex_state = 4}, - [1963] = {.lex_state = 96, .external_lex_state = 2}, + [1963] = {.lex_state = 7, .external_lex_state = 4}, [1964] = {.lex_state = 7, .external_lex_state = 4}, [1965] = {.lex_state = 7, .external_lex_state = 4}, [1966] = {.lex_state = 7, .external_lex_state = 4}, @@ -15084,7 +16801,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1968] = {.lex_state = 7, .external_lex_state = 4}, [1969] = {.lex_state = 7, .external_lex_state = 4}, [1970] = {.lex_state = 7, .external_lex_state = 4}, - [1971] = {.lex_state = 7, .external_lex_state = 4}, + [1971] = {.lex_state = 12, .external_lex_state = 2}, [1972] = {.lex_state = 7, .external_lex_state = 4}, [1973] = {.lex_state = 7, .external_lex_state = 4}, [1974] = {.lex_state = 7, .external_lex_state = 4}, @@ -15094,48 +16811,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1978] = {.lex_state = 7, .external_lex_state = 4}, [1979] = {.lex_state = 7, .external_lex_state = 4}, [1980] = {.lex_state = 7, .external_lex_state = 4}, - [1981] = {.lex_state = 7, .external_lex_state = 4}, + [1981] = {.lex_state = 12, .external_lex_state = 5}, [1982] = {.lex_state = 7, .external_lex_state = 4}, - [1983] = {.lex_state = 7, .external_lex_state = 4}, + [1983] = {.lex_state = 12, .external_lex_state = 5}, [1984] = {.lex_state = 7, .external_lex_state = 4}, [1985] = {.lex_state = 7, .external_lex_state = 4}, - [1986] = {.lex_state = 12, .external_lex_state = 2}, + [1986] = {.lex_state = 7, .external_lex_state = 4}, [1987] = {.lex_state = 7, .external_lex_state = 4}, - [1988] = {.lex_state = 12, .external_lex_state = 2}, + [1988] = {.lex_state = 7, .external_lex_state = 4}, [1989] = {.lex_state = 7, .external_lex_state = 4}, - [1990] = {.lex_state = 7, .external_lex_state = 3}, - [1991] = {.lex_state = 7, .external_lex_state = 4}, - [1992] = {.lex_state = 96, .external_lex_state = 2}, + [1990] = {.lex_state = 7, .external_lex_state = 4}, + [1991] = {.lex_state = 95, .external_lex_state = 2}, + [1992] = {.lex_state = 7, .external_lex_state = 4}, [1993] = {.lex_state = 7, .external_lex_state = 4}, [1994] = {.lex_state = 7, .external_lex_state = 4}, - [1995] = {.lex_state = 12, .external_lex_state = 2}, + [1995] = {.lex_state = 7, .external_lex_state = 4}, [1996] = {.lex_state = 7, .external_lex_state = 4}, - [1997] = {.lex_state = 7, .external_lex_state = 3}, - [1998] = {.lex_state = 7, .external_lex_state = 3}, + [1997] = {.lex_state = 7, .external_lex_state = 4}, + [1998] = {.lex_state = 7, .external_lex_state = 4}, [1999] = {.lex_state = 7, .external_lex_state = 4}, [2000] = {.lex_state = 7, .external_lex_state = 4}, [2001] = {.lex_state = 7, .external_lex_state = 4}, [2002] = {.lex_state = 7, .external_lex_state = 4}, - [2003] = {.lex_state = 7, .external_lex_state = 4}, + [2003] = {.lex_state = 7, .external_lex_state = 3}, [2004] = {.lex_state = 7, .external_lex_state = 4}, [2005] = {.lex_state = 7, .external_lex_state = 4}, - [2006] = {.lex_state = 7, .external_lex_state = 3}, + [2006] = {.lex_state = 7, .external_lex_state = 4}, [2007] = {.lex_state = 7, .external_lex_state = 4}, - [2008] = {.lex_state = 12, .external_lex_state = 5}, + [2008] = {.lex_state = 7, .external_lex_state = 4}, [2009] = {.lex_state = 7, .external_lex_state = 4}, - [2010] = {.lex_state = 7, .external_lex_state = 3}, + [2010] = {.lex_state = 7, .external_lex_state = 4}, [2011] = {.lex_state = 7, .external_lex_state = 4}, - [2012] = {.lex_state = 7, .external_lex_state = 3}, + [2012] = {.lex_state = 7, .external_lex_state = 4}, [2013] = {.lex_state = 7, .external_lex_state = 4}, - [2014] = {.lex_state = 12, .external_lex_state = 5}, - [2015] = {.lex_state = 8, .external_lex_state = 3}, + [2014] = {.lex_state = 7, .external_lex_state = 4}, + [2015] = {.lex_state = 7, .external_lex_state = 4}, [2016] = {.lex_state = 7, .external_lex_state = 4}, [2017] = {.lex_state = 7, .external_lex_state = 4}, [2018] = {.lex_state = 7, .external_lex_state = 4}, [2019] = {.lex_state = 7, .external_lex_state = 4}, [2020] = {.lex_state = 7, .external_lex_state = 4}, [2021] = {.lex_state = 7, .external_lex_state = 4}, - [2022] = {.lex_state = 12, .external_lex_state = 2}, + [2022] = {.lex_state = 7, .external_lex_state = 4}, [2023] = {.lex_state = 7, .external_lex_state = 4}, [2024] = {.lex_state = 7, .external_lex_state = 4}, [2025] = {.lex_state = 7, .external_lex_state = 4}, @@ -15166,89 +16883,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2050] = {.lex_state = 7, .external_lex_state = 4}, [2051] = {.lex_state = 7, .external_lex_state = 4}, [2052] = {.lex_state = 7, .external_lex_state = 4}, - [2053] = {.lex_state = 7, .external_lex_state = 4}, + [2053] = {.lex_state = 12, .external_lex_state = 2}, [2054] = {.lex_state = 7, .external_lex_state = 4}, - [2055] = {.lex_state = 7, .external_lex_state = 3}, + [2055] = {.lex_state = 7, .external_lex_state = 4}, [2056] = {.lex_state = 7, .external_lex_state = 4}, [2057] = {.lex_state = 7, .external_lex_state = 4}, [2058] = {.lex_state = 7, .external_lex_state = 4}, [2059] = {.lex_state = 7, .external_lex_state = 4}, [2060] = {.lex_state = 7, .external_lex_state = 4}, - [2061] = {.lex_state = 7, .external_lex_state = 3}, + [2061] = {.lex_state = 7, .external_lex_state = 4}, [2062] = {.lex_state = 7, .external_lex_state = 4}, [2063] = {.lex_state = 7, .external_lex_state = 4}, [2064] = {.lex_state = 7, .external_lex_state = 4}, - [2065] = {.lex_state = 12, .external_lex_state = 5}, - [2066] = {.lex_state = 7, .external_lex_state = 3}, - [2067] = {.lex_state = 7, .external_lex_state = 4}, - [2068] = {.lex_state = 7, .external_lex_state = 4}, - [2069] = {.lex_state = 7, .external_lex_state = 4}, - [2070] = {.lex_state = 12, .external_lex_state = 2}, - [2071] = {.lex_state = 12, .external_lex_state = 5}, - [2072] = {.lex_state = 7, .external_lex_state = 3}, + [2065] = {.lex_state = 7, .external_lex_state = 4}, + [2066] = {.lex_state = 7, .external_lex_state = 4}, + [2067] = {.lex_state = 12, .external_lex_state = 2}, + [2068] = {.lex_state = 7, .external_lex_state = 3}, + [2069] = {.lex_state = 7, .external_lex_state = 3}, + [2070] = {.lex_state = 7, .external_lex_state = 4}, + [2071] = {.lex_state = 7, .external_lex_state = 4}, + [2072] = {.lex_state = 7, .external_lex_state = 4}, [2073] = {.lex_state = 7, .external_lex_state = 4}, [2074] = {.lex_state = 7, .external_lex_state = 4}, - [2075] = {.lex_state = 7, .external_lex_state = 4}, + [2075] = {.lex_state = 7, .external_lex_state = 3}, [2076] = {.lex_state = 7, .external_lex_state = 4}, - [2077] = {.lex_state = 12, .external_lex_state = 2}, - [2078] = {.lex_state = 7, .external_lex_state = 4}, - [2079] = {.lex_state = 7, .external_lex_state = 4}, - [2080] = {.lex_state = 7, .external_lex_state = 4}, - [2081] = {.lex_state = 7, .external_lex_state = 4}, + [2077] = {.lex_state = 7, .external_lex_state = 4}, + [2078] = {.lex_state = 7, .external_lex_state = 3}, + [2079] = {.lex_state = 12, .external_lex_state = 2}, + [2080] = {.lex_state = 12, .external_lex_state = 5}, + [2081] = {.lex_state = 7, .external_lex_state = 3}, [2082] = {.lex_state = 7, .external_lex_state = 4}, - [2083] = {.lex_state = 7, .external_lex_state = 4}, + [2083] = {.lex_state = 7, .external_lex_state = 3}, [2084] = {.lex_state = 7, .external_lex_state = 4}, - [2085] = {.lex_state = 7, .external_lex_state = 4}, - [2086] = {.lex_state = 7, .external_lex_state = 4}, - [2087] = {.lex_state = 7, .external_lex_state = 4}, + [2085] = {.lex_state = 12, .external_lex_state = 5}, + [2086] = {.lex_state = 7, .external_lex_state = 3}, + [2087] = {.lex_state = 7, .external_lex_state = 3}, [2088] = {.lex_state = 7, .external_lex_state = 4}, [2089] = {.lex_state = 7, .external_lex_state = 4}, - [2090] = {.lex_state = 7, .external_lex_state = 3}, - [2091] = {.lex_state = 7, .external_lex_state = 3}, + [2090] = {.lex_state = 7, .external_lex_state = 4}, + [2091] = {.lex_state = 7, .external_lex_state = 4}, [2092] = {.lex_state = 7, .external_lex_state = 4}, [2093] = {.lex_state = 7, .external_lex_state = 4}, - [2094] = {.lex_state = 12, .external_lex_state = 5}, + [2094] = {.lex_state = 7, .external_lex_state = 3}, [2095] = {.lex_state = 7, .external_lex_state = 4}, [2096] = {.lex_state = 7, .external_lex_state = 4}, [2097] = {.lex_state = 7, .external_lex_state = 4}, - [2098] = {.lex_state = 12, .external_lex_state = 5}, - [2099] = {.lex_state = 7, .external_lex_state = 3}, + [2098] = {.lex_state = 7, .external_lex_state = 3}, + [2099] = {.lex_state = 7, .external_lex_state = 4}, [2100] = {.lex_state = 7, .external_lex_state = 4}, - [2101] = {.lex_state = 12, .external_lex_state = 5}, - [2102] = {.lex_state = 7, .external_lex_state = 4}, - [2103] = {.lex_state = 12, .external_lex_state = 5}, + [2101] = {.lex_state = 7, .external_lex_state = 4}, + [2102] = {.lex_state = 7, .external_lex_state = 3}, + [2103] = {.lex_state = 7, .external_lex_state = 4}, [2104] = {.lex_state = 7, .external_lex_state = 4}, - [2105] = {.lex_state = 12, .external_lex_state = 5}, + [2105] = {.lex_state = 7, .external_lex_state = 3}, [2106] = {.lex_state = 7, .external_lex_state = 4}, [2107] = {.lex_state = 7, .external_lex_state = 4}, [2108] = {.lex_state = 7, .external_lex_state = 4}, - [2109] = {.lex_state = 7, .external_lex_state = 3}, - [2110] = {.lex_state = 7, .external_lex_state = 4}, - [2111] = {.lex_state = 7, .external_lex_state = 4}, + [2109] = {.lex_state = 7, .external_lex_state = 4}, + [2110] = {.lex_state = 7, .external_lex_state = 3}, + [2111] = {.lex_state = 7, .external_lex_state = 3}, [2112] = {.lex_state = 7, .external_lex_state = 4}, - [2113] = {.lex_state = 7, .external_lex_state = 4}, + [2113] = {.lex_state = 95, .external_lex_state = 2}, [2114] = {.lex_state = 7, .external_lex_state = 4}, [2115] = {.lex_state = 7, .external_lex_state = 4}, [2116] = {.lex_state = 7, .external_lex_state = 4}, - [2117] = {.lex_state = 7, .external_lex_state = 3}, - [2118] = {.lex_state = 7, .external_lex_state = 3}, + [2117] = {.lex_state = 12, .external_lex_state = 5}, + [2118] = {.lex_state = 7, .external_lex_state = 4}, [2119] = {.lex_state = 7, .external_lex_state = 4}, - [2120] = {.lex_state = 7, .external_lex_state = 4}, + [2120] = {.lex_state = 12, .external_lex_state = 2}, [2121] = {.lex_state = 7, .external_lex_state = 4}, - [2122] = {.lex_state = 7, .external_lex_state = 4}, - [2123] = {.lex_state = 7, .external_lex_state = 4}, - [2124] = {.lex_state = 7, .external_lex_state = 3}, - [2125] = {.lex_state = 7, .external_lex_state = 3}, + [2122] = {.lex_state = 8, .external_lex_state = 3}, + [2123] = {.lex_state = 7, .external_lex_state = 3}, + [2124] = {.lex_state = 12, .external_lex_state = 5}, + [2125] = {.lex_state = 12, .external_lex_state = 5}, [2126] = {.lex_state = 7, .external_lex_state = 3}, - [2127] = {.lex_state = 7, .external_lex_state = 4}, + [2127] = {.lex_state = 12, .external_lex_state = 5}, [2128] = {.lex_state = 7, .external_lex_state = 4}, - [2129] = {.lex_state = 7, .external_lex_state = 4}, - [2130] = {.lex_state = 12, .external_lex_state = 5}, + [2129] = {.lex_state = 12, .external_lex_state = 5}, + [2130] = {.lex_state = 7, .external_lex_state = 4}, [2131] = {.lex_state = 7, .external_lex_state = 4}, - [2132] = {.lex_state = 12, .external_lex_state = 5}, + [2132] = {.lex_state = 12, .external_lex_state = 2}, [2133] = {.lex_state = 7, .external_lex_state = 4}, - [2134] = {.lex_state = 7, .external_lex_state = 4}, - [2135] = {.lex_state = 7, .external_lex_state = 4}, + [2134] = {.lex_state = 12, .external_lex_state = 2}, + [2135] = {.lex_state = 12, .external_lex_state = 5}, [2136] = {.lex_state = 7, .external_lex_state = 3}, [2137] = {.lex_state = 7, .external_lex_state = 4}, [2138] = {.lex_state = 7, .external_lex_state = 4}, @@ -15256,3693 +16973,5337 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2140] = {.lex_state = 7, .external_lex_state = 4}, [2141] = {.lex_state = 7, .external_lex_state = 4}, [2142] = {.lex_state = 7, .external_lex_state = 4}, - [2143] = {.lex_state = 7, .external_lex_state = 3}, - [2144] = {.lex_state = 7, .external_lex_state = 4}, + [2143] = {.lex_state = 7, .external_lex_state = 4}, + [2144] = {.lex_state = 7, .external_lex_state = 3}, [2145] = {.lex_state = 7, .external_lex_state = 4}, - [2146] = {.lex_state = 7, .external_lex_state = 4}, + [2146] = {.lex_state = 7, .external_lex_state = 3}, [2147] = {.lex_state = 7, .external_lex_state = 4}, [2148] = {.lex_state = 7, .external_lex_state = 4}, [2149] = {.lex_state = 7, .external_lex_state = 4}, - [2150] = {.lex_state = 12, .external_lex_state = 5}, + [2150] = {.lex_state = 7, .external_lex_state = 4}, [2151] = {.lex_state = 7, .external_lex_state = 4}, - [2152] = {.lex_state = 12, .external_lex_state = 2}, - [2153] = {.lex_state = 7, .external_lex_state = 4}, - [2154] = {.lex_state = 7, .external_lex_state = 4}, - [2155] = {.lex_state = 7, .external_lex_state = 3}, + [2152] = {.lex_state = 7, .external_lex_state = 4}, + [2153] = {.lex_state = 7, .external_lex_state = 3}, + [2154] = {.lex_state = 7, .external_lex_state = 3}, + [2155] = {.lex_state = 12, .external_lex_state = 5}, [2156] = {.lex_state = 7, .external_lex_state = 4}, [2157] = {.lex_state = 7, .external_lex_state = 4}, [2158] = {.lex_state = 7, .external_lex_state = 4}, - [2159] = {.lex_state = 7, .external_lex_state = 4}, - [2160] = {.lex_state = 7, .external_lex_state = 3}, - [2161] = {.lex_state = 7, .external_lex_state = 4}, - [2162] = {.lex_state = 7, .external_lex_state = 3}, - [2163] = {.lex_state = 7, .external_lex_state = 3}, - [2164] = {.lex_state = 7, .external_lex_state = 4}, - [2165] = {.lex_state = 7, .external_lex_state = 4}, - [2166] = {.lex_state = 7, .external_lex_state = 4}, - [2167] = {.lex_state = 12, .external_lex_state = 5}, - [2168] = {.lex_state = 12, .external_lex_state = 2}, - [2169] = {.lex_state = 12, .external_lex_state = 2}, - [2170] = {.lex_state = 7, .external_lex_state = 4}, - [2171] = {.lex_state = 7, .external_lex_state = 3}, + [2159] = {.lex_state = 7, .external_lex_state = 3}, + [2160] = {.lex_state = 7, .external_lex_state = 4}, + [2161] = {.lex_state = 12, .external_lex_state = 5}, + [2162] = {.lex_state = 7, .external_lex_state = 4}, + [2163] = {.lex_state = 7, .external_lex_state = 4}, + [2164] = {.lex_state = 12, .external_lex_state = 5}, + [2165] = {.lex_state = 7, .external_lex_state = 3}, + [2166] = {.lex_state = 7, .external_lex_state = 3}, + [2167] = {.lex_state = 7, .external_lex_state = 3}, + [2168] = {.lex_state = 7, .external_lex_state = 4}, + [2169] = {.lex_state = 7, .external_lex_state = 3}, + [2170] = {.lex_state = 7, .external_lex_state = 3}, + [2171] = {.lex_state = 7, .external_lex_state = 4}, [2172] = {.lex_state = 7, .external_lex_state = 4}, [2173] = {.lex_state = 7, .external_lex_state = 4}, [2174] = {.lex_state = 7, .external_lex_state = 4}, [2175] = {.lex_state = 7, .external_lex_state = 4}, - [2176] = {.lex_state = 7, .external_lex_state = 4}, + [2176] = {.lex_state = 12, .external_lex_state = 5}, [2177] = {.lex_state = 7, .external_lex_state = 4}, [2178] = {.lex_state = 7, .external_lex_state = 4}, [2179] = {.lex_state = 7, .external_lex_state = 3}, [2180] = {.lex_state = 7, .external_lex_state = 4}, - [2181] = {.lex_state = 12, .external_lex_state = 5}, - [2182] = {.lex_state = 7, .external_lex_state = 4}, + [2181] = {.lex_state = 7, .external_lex_state = 3}, + [2182] = {.lex_state = 12, .external_lex_state = 5}, [2183] = {.lex_state = 7, .external_lex_state = 4}, - [2184] = {.lex_state = 7, .external_lex_state = 4}, - [2185] = {.lex_state = 7, .external_lex_state = 4}, + [2184] = {.lex_state = 12, .external_lex_state = 5}, + [2185] = {.lex_state = 7, .external_lex_state = 3}, [2186] = {.lex_state = 7, .external_lex_state = 4}, [2187] = {.lex_state = 7, .external_lex_state = 3}, - [2188] = {.lex_state = 96, .external_lex_state = 2}, + [2188] = {.lex_state = 7, .external_lex_state = 3}, [2189] = {.lex_state = 7, .external_lex_state = 3}, - [2190] = {.lex_state = 7, .external_lex_state = 4}, + [2190] = {.lex_state = 7, .external_lex_state = 3}, [2191] = {.lex_state = 12, .external_lex_state = 5}, - [2192] = {.lex_state = 7, .external_lex_state = 4}, - [2193] = {.lex_state = 7, .external_lex_state = 4}, - [2194] = {.lex_state = 7, .external_lex_state = 4}, + [2192] = {.lex_state = 7, .external_lex_state = 3}, + [2193] = {.lex_state = 7, .external_lex_state = 3}, + [2194] = {.lex_state = 7, .external_lex_state = 3}, [2195] = {.lex_state = 7, .external_lex_state = 3}, - [2196] = {.lex_state = 7, .external_lex_state = 3}, - [2197] = {.lex_state = 7, .external_lex_state = 3}, - [2198] = {.lex_state = 7, .external_lex_state = 3}, - [2199] = {.lex_state = 7, .external_lex_state = 4}, - [2200] = {.lex_state = 7, .external_lex_state = 3}, + [2196] = {.lex_state = 7, .external_lex_state = 4}, + [2197] = {.lex_state = 7, .external_lex_state = 4}, + [2198] = {.lex_state = 7, .external_lex_state = 4}, + [2199] = {.lex_state = 12, .external_lex_state = 5}, + [2200] = {.lex_state = 12, .external_lex_state = 5}, [2201] = {.lex_state = 7, .external_lex_state = 4}, [2202] = {.lex_state = 7, .external_lex_state = 4}, - [2203] = {.lex_state = 12, .external_lex_state = 5}, - [2204] = {.lex_state = 7, .external_lex_state = 4}, - [2205] = {.lex_state = 7, .external_lex_state = 4}, - [2206] = {.lex_state = 12, .external_lex_state = 5}, + [2203] = {.lex_state = 7, .external_lex_state = 4}, + [2204] = {.lex_state = 12, .external_lex_state = 2}, + [2205] = {.lex_state = 7, .external_lex_state = 3}, + [2206] = {.lex_state = 12, .external_lex_state = 2}, [2207] = {.lex_state = 12, .external_lex_state = 5}, [2208] = {.lex_state = 7, .external_lex_state = 4}, [2209] = {.lex_state = 7, .external_lex_state = 4}, - [2210] = {.lex_state = 7, .external_lex_state = 4}, - [2211] = {.lex_state = 12, .external_lex_state = 5}, + [2210] = {.lex_state = 7, .external_lex_state = 3}, + [2211] = {.lex_state = 7, .external_lex_state = 3}, [2212] = {.lex_state = 7, .external_lex_state = 3}, - [2213] = {.lex_state = 12, .external_lex_state = 2}, - [2214] = {.lex_state = 12, .external_lex_state = 2}, - [2215] = {.lex_state = 7, .external_lex_state = 4}, + [2213] = {.lex_state = 7, .external_lex_state = 3}, + [2214] = {.lex_state = 7, .external_lex_state = 3}, + [2215] = {.lex_state = 7, .external_lex_state = 3}, [2216] = {.lex_state = 7, .external_lex_state = 4}, - [2217] = {.lex_state = 7, .external_lex_state = 4}, + [2217] = {.lex_state = 12, .external_lex_state = 5}, [2218] = {.lex_state = 7, .external_lex_state = 3}, - [2219] = {.lex_state = 7, .external_lex_state = 4}, - [2220] = {.lex_state = 7, .external_lex_state = 4}, - [2221] = {.lex_state = 7, .external_lex_state = 4}, + [2219] = {.lex_state = 7, .external_lex_state = 3}, + [2220] = {.lex_state = 7, .external_lex_state = 3}, + [2221] = {.lex_state = 7, .external_lex_state = 3}, [2222] = {.lex_state = 7, .external_lex_state = 3}, - [2223] = {.lex_state = 7, .external_lex_state = 4}, - [2224] = {.lex_state = 7, .external_lex_state = 4}, - [2225] = {.lex_state = 7, .external_lex_state = 4}, + [2223] = {.lex_state = 7, .external_lex_state = 3}, + [2224] = {.lex_state = 7, .external_lex_state = 3}, + [2225] = {.lex_state = 7, .external_lex_state = 3}, [2226] = {.lex_state = 7, .external_lex_state = 4}, [2227] = {.lex_state = 7, .external_lex_state = 4}, - [2228] = {.lex_state = 7, .external_lex_state = 4}, - [2229] = {.lex_state = 12, .external_lex_state = 5}, + [2228] = {.lex_state = 7, .external_lex_state = 3}, + [2229] = {.lex_state = 7, .external_lex_state = 3}, [2230] = {.lex_state = 12, .external_lex_state = 5}, - [2231] = {.lex_state = 7, .external_lex_state = 4}, + [2231] = {.lex_state = 7, .external_lex_state = 3}, [2232] = {.lex_state = 7, .external_lex_state = 4}, - [2233] = {.lex_state = 7, .external_lex_state = 4}, - [2234] = {.lex_state = 7, .external_lex_state = 4}, - [2235] = {.lex_state = 7, .external_lex_state = 4}, - [2236] = {.lex_state = 7, .external_lex_state = 4}, + [2233] = {.lex_state = 7, .external_lex_state = 3}, + [2234] = {.lex_state = 12, .external_lex_state = 5}, + [2235] = {.lex_state = 12, .external_lex_state = 5}, + [2236] = {.lex_state = 12, .external_lex_state = 5}, [2237] = {.lex_state = 7, .external_lex_state = 4}, - [2238] = {.lex_state = 7, .external_lex_state = 4}, - [2239] = {.lex_state = 7, .external_lex_state = 4}, - [2240] = {.lex_state = 12, .external_lex_state = 2}, + [2238] = {.lex_state = 8, .external_lex_state = 4}, + [2239] = {.lex_state = 7, .external_lex_state = 3}, + [2240] = {.lex_state = 7, .external_lex_state = 3}, [2241] = {.lex_state = 7, .external_lex_state = 3}, - [2242] = {.lex_state = 12, .external_lex_state = 2}, - [2243] = {.lex_state = 8, .external_lex_state = 4}, - [2244] = {.lex_state = 96, .external_lex_state = 2}, + [2242] = {.lex_state = 7, .external_lex_state = 3}, + [2243] = {.lex_state = 7, .external_lex_state = 4}, + [2244] = {.lex_state = 7, .external_lex_state = 3}, [2245] = {.lex_state = 7, .external_lex_state = 3}, [2246] = {.lex_state = 7, .external_lex_state = 3}, [2247] = {.lex_state = 7, .external_lex_state = 3}, [2248] = {.lex_state = 7, .external_lex_state = 4}, - [2249] = {.lex_state = 7, .external_lex_state = 3}, - [2250] = {.lex_state = 7, .external_lex_state = 4}, - [2251] = {.lex_state = 7, .external_lex_state = 3}, - [2252] = {.lex_state = 7, .external_lex_state = 3}, - [2253] = {.lex_state = 12, .external_lex_state = 2}, - [2254] = {.lex_state = 12, .external_lex_state = 2}, - [2255] = {.lex_state = 7, .external_lex_state = 4}, + [2249] = {.lex_state = 7, .external_lex_state = 4}, + [2250] = {.lex_state = 12, .external_lex_state = 5}, + [2251] = {.lex_state = 7, .external_lex_state = 4}, + [2252] = {.lex_state = 7, .external_lex_state = 4}, + [2253] = {.lex_state = 12, .external_lex_state = 5}, + [2254] = {.lex_state = 7, .external_lex_state = 4}, + [2255] = {.lex_state = 12, .external_lex_state = 5}, [2256] = {.lex_state = 7, .external_lex_state = 4}, [2257] = {.lex_state = 7, .external_lex_state = 4}, - [2258] = {.lex_state = 7, .external_lex_state = 4}, - [2259] = {.lex_state = 7, .external_lex_state = 4}, - [2260] = {.lex_state = 12, .external_lex_state = 2}, - [2261] = {.lex_state = 12, .external_lex_state = 2}, - [2262] = {.lex_state = 7, .external_lex_state = 4}, - [2263] = {.lex_state = 7, .external_lex_state = 3}, - [2264] = {.lex_state = 7, .external_lex_state = 4}, + [2258] = {.lex_state = 7, .external_lex_state = 3}, + [2259] = {.lex_state = 7, .external_lex_state = 3}, + [2260] = {.lex_state = 7, .external_lex_state = 4}, + [2261] = {.lex_state = 7, .external_lex_state = 3}, + [2262] = {.lex_state = 7, .external_lex_state = 3}, + [2263] = {.lex_state = 7, .external_lex_state = 4}, + [2264] = {.lex_state = 7, .external_lex_state = 3}, [2265] = {.lex_state = 7, .external_lex_state = 4}, - [2266] = {.lex_state = 7, .external_lex_state = 4}, - [2267] = {.lex_state = 7, .external_lex_state = 3}, - [2268] = {.lex_state = 12, .external_lex_state = 2}, - [2269] = {.lex_state = 12, .external_lex_state = 2}, - [2270] = {.lex_state = 12, .external_lex_state = 5}, - [2271] = {.lex_state = 12, .external_lex_state = 5}, - [2272] = {.lex_state = 7, .external_lex_state = 3}, - [2273] = {.lex_state = 7, .external_lex_state = 3}, - [2274] = {.lex_state = 12, .external_lex_state = 2}, - [2275] = {.lex_state = 12, .external_lex_state = 2}, - [2276] = {.lex_state = 12, .external_lex_state = 5}, - [2277] = {.lex_state = 12, .external_lex_state = 5}, - [2278] = {.lex_state = 7, .external_lex_state = 3}, + [2266] = {.lex_state = 7, .external_lex_state = 3}, + [2267] = {.lex_state = 7, .external_lex_state = 4}, + [2268] = {.lex_state = 7, .external_lex_state = 3}, + [2269] = {.lex_state = 7, .external_lex_state = 4}, + [2270] = {.lex_state = 7, .external_lex_state = 3}, + [2271] = {.lex_state = 12, .external_lex_state = 2}, + [2272] = {.lex_state = 12, .external_lex_state = 2}, + [2273] = {.lex_state = 7, .external_lex_state = 4}, + [2274] = {.lex_state = 7, .external_lex_state = 3}, + [2275] = {.lex_state = 7, .external_lex_state = 3}, + [2276] = {.lex_state = 7, .external_lex_state = 3}, + [2277] = {.lex_state = 7, .external_lex_state = 3}, + [2278] = {.lex_state = 12, .external_lex_state = 5}, [2279] = {.lex_state = 7, .external_lex_state = 3}, - [2280] = {.lex_state = 7, .external_lex_state = 4}, - [2281] = {.lex_state = 7, .external_lex_state = 4}, - [2282] = {.lex_state = 12, .external_lex_state = 5}, + [2280] = {.lex_state = 7, .external_lex_state = 3}, + [2281] = {.lex_state = 7, .external_lex_state = 3}, + [2282] = {.lex_state = 7, .external_lex_state = 3}, [2283] = {.lex_state = 12, .external_lex_state = 5}, [2284] = {.lex_state = 12, .external_lex_state = 5}, - [2285] = {.lex_state = 12, .external_lex_state = 5}, - [2286] = {.lex_state = 12, .external_lex_state = 5}, - [2287] = {.lex_state = 12, .external_lex_state = 5}, + [2285] = {.lex_state = 7, .external_lex_state = 3}, + [2286] = {.lex_state = 7, .external_lex_state = 4}, + [2287] = {.lex_state = 7, .external_lex_state = 3}, [2288] = {.lex_state = 7, .external_lex_state = 3}, - [2289] = {.lex_state = 7, .external_lex_state = 3}, + [2289] = {.lex_state = 7, .external_lex_state = 4}, [2290] = {.lex_state = 7, .external_lex_state = 3}, [2291] = {.lex_state = 7, .external_lex_state = 3}, - [2292] = {.lex_state = 12, .external_lex_state = 5}, - [2293] = {.lex_state = 12, .external_lex_state = 5}, - [2294] = {.lex_state = 12, .external_lex_state = 5}, + [2292] = {.lex_state = 7, .external_lex_state = 3}, + [2293] = {.lex_state = 7, .external_lex_state = 3}, + [2294] = {.lex_state = 7, .external_lex_state = 3}, [2295] = {.lex_state = 7, .external_lex_state = 3}, [2296] = {.lex_state = 7, .external_lex_state = 3}, - [2297] = {.lex_state = 12, .external_lex_state = 5}, - [2298] = {.lex_state = 7, .external_lex_state = 4}, - [2299] = {.lex_state = 7, .external_lex_state = 4}, - [2300] = {.lex_state = 7, .external_lex_state = 4}, - [2301] = {.lex_state = 7, .external_lex_state = 4}, + [2297] = {.lex_state = 7, .external_lex_state = 3}, + [2298] = {.lex_state = 12, .external_lex_state = 5}, + [2299] = {.lex_state = 7, .external_lex_state = 3}, + [2300] = {.lex_state = 8, .external_lex_state = 4}, + [2301] = {.lex_state = 12, .external_lex_state = 5}, [2302] = {.lex_state = 12, .external_lex_state = 5}, [2303] = {.lex_state = 12, .external_lex_state = 5}, - [2304] = {.lex_state = 7, .external_lex_state = 3}, - [2305] = {.lex_state = 12, .external_lex_state = 5}, - [2306] = {.lex_state = 12, .external_lex_state = 5}, - [2307] = {.lex_state = 7, .external_lex_state = 3}, - [2308] = {.lex_state = 7, .external_lex_state = 4}, + [2304] = {.lex_state = 12, .external_lex_state = 5}, + [2305] = {.lex_state = 7, .external_lex_state = 3}, + [2306] = {.lex_state = 7, .external_lex_state = 3}, + [2307] = {.lex_state = 7, .external_lex_state = 4}, + [2308] = {.lex_state = 7, .external_lex_state = 3}, [2309] = {.lex_state = 7, .external_lex_state = 4}, - [2310] = {.lex_state = 7, .external_lex_state = 4}, - [2311] = {.lex_state = 7, .external_lex_state = 3}, - [2312] = {.lex_state = 7, .external_lex_state = 3}, + [2310] = {.lex_state = 12, .external_lex_state = 2}, + [2311] = {.lex_state = 7, .external_lex_state = 4}, + [2312] = {.lex_state = 12, .external_lex_state = 2}, [2313] = {.lex_state = 7, .external_lex_state = 3}, [2314] = {.lex_state = 7, .external_lex_state = 3}, - [2315] = {.lex_state = 7, .external_lex_state = 3}, - [2316] = {.lex_state = 7, .external_lex_state = 3}, + [2315] = {.lex_state = 12, .external_lex_state = 5}, + [2316] = {.lex_state = 7, .external_lex_state = 4}, [2317] = {.lex_state = 7, .external_lex_state = 3}, - [2318] = {.lex_state = 7, .external_lex_state = 3}, - [2319] = {.lex_state = 7, .external_lex_state = 3}, + [2318] = {.lex_state = 7, .external_lex_state = 4}, + [2319] = {.lex_state = 12, .external_lex_state = 5}, [2320] = {.lex_state = 7, .external_lex_state = 3}, - [2321] = {.lex_state = 7, .external_lex_state = 3}, + [2321] = {.lex_state = 7, .external_lex_state = 4}, [2322] = {.lex_state = 7, .external_lex_state = 3}, [2323] = {.lex_state = 7, .external_lex_state = 3}, [2324] = {.lex_state = 7, .external_lex_state = 3}, [2325] = {.lex_state = 7, .external_lex_state = 3}, [2326] = {.lex_state = 7, .external_lex_state = 3}, [2327] = {.lex_state = 7, .external_lex_state = 3}, - [2328] = {.lex_state = 7, .external_lex_state = 3}, + [2328] = {.lex_state = 7, .external_lex_state = 4}, [2329] = {.lex_state = 7, .external_lex_state = 3}, [2330] = {.lex_state = 7, .external_lex_state = 3}, - [2331] = {.lex_state = 7, .external_lex_state = 3}, + [2331] = {.lex_state = 12, .external_lex_state = 5}, [2332] = {.lex_state = 7, .external_lex_state = 3}, [2333] = {.lex_state = 7, .external_lex_state = 3}, [2334] = {.lex_state = 7, .external_lex_state = 3}, [2335] = {.lex_state = 7, .external_lex_state = 3}, [2336] = {.lex_state = 7, .external_lex_state = 3}, - [2337] = {.lex_state = 7, .external_lex_state = 4}, + [2337] = {.lex_state = 7, .external_lex_state = 3}, [2338] = {.lex_state = 7, .external_lex_state = 4}, [2339] = {.lex_state = 7, .external_lex_state = 4}, - [2340] = {.lex_state = 7, .external_lex_state = 4}, + [2340] = {.lex_state = 7, .external_lex_state = 3}, [2341] = {.lex_state = 7, .external_lex_state = 4}, [2342] = {.lex_state = 7, .external_lex_state = 4}, [2343] = {.lex_state = 7, .external_lex_state = 3}, - [2344] = {.lex_state = 7, .external_lex_state = 3}, - [2345] = {.lex_state = 7, .external_lex_state = 3}, - [2346] = {.lex_state = 7, .external_lex_state = 3}, - [2347] = {.lex_state = 7, .external_lex_state = 3}, - [2348] = {.lex_state = 7, .external_lex_state = 3}, - [2349] = {.lex_state = 7, .external_lex_state = 3}, - [2350] = {.lex_state = 7, .external_lex_state = 3}, - [2351] = {.lex_state = 7, .external_lex_state = 3}, + [2344] = {.lex_state = 7, .external_lex_state = 4}, + [2345] = {.lex_state = 7, .external_lex_state = 4}, + [2346] = {.lex_state = 7, .external_lex_state = 4}, + [2347] = {.lex_state = 7, .external_lex_state = 4}, + [2348] = {.lex_state = 7, .external_lex_state = 4}, + [2349] = {.lex_state = 12, .external_lex_state = 5}, + [2350] = {.lex_state = 7, .external_lex_state = 4}, + [2351] = {.lex_state = 12, .external_lex_state = 5}, [2352] = {.lex_state = 7, .external_lex_state = 3}, [2353] = {.lex_state = 7, .external_lex_state = 3}, [2354] = {.lex_state = 7, .external_lex_state = 3}, [2355] = {.lex_state = 7, .external_lex_state = 3}, [2356] = {.lex_state = 7, .external_lex_state = 3}, - [2357] = {.lex_state = 7, .external_lex_state = 3}, - [2358] = {.lex_state = 7, .external_lex_state = 3}, - [2359] = {.lex_state = 7, .external_lex_state = 3}, - [2360] = {.lex_state = 7, .external_lex_state = 3}, - [2361] = {.lex_state = 7, .external_lex_state = 3}, - [2362] = {.lex_state = 7, .external_lex_state = 3}, - [2363] = {.lex_state = 7, .external_lex_state = 3}, - [2364] = {.lex_state = 7, .external_lex_state = 3}, + [2357] = {.lex_state = 7, .external_lex_state = 4}, + [2358] = {.lex_state = 12, .external_lex_state = 2}, + [2359] = {.lex_state = 7, .external_lex_state = 4}, + [2360] = {.lex_state = 7, .external_lex_state = 4}, + [2361] = {.lex_state = 12, .external_lex_state = 2}, + [2362] = {.lex_state = 7, .external_lex_state = 4}, + [2363] = {.lex_state = 7, .external_lex_state = 4}, + [2364] = {.lex_state = 12, .external_lex_state = 5}, [2365] = {.lex_state = 7, .external_lex_state = 3}, [2366] = {.lex_state = 7, .external_lex_state = 3}, - [2367] = {.lex_state = 7, .external_lex_state = 3}, + [2367] = {.lex_state = 12, .external_lex_state = 5}, [2368] = {.lex_state = 7, .external_lex_state = 3}, - [2369] = {.lex_state = 7, .external_lex_state = 4}, + [2369] = {.lex_state = 7, .external_lex_state = 3}, [2370] = {.lex_state = 7, .external_lex_state = 3}, - [2371] = {.lex_state = 12, .external_lex_state = 5}, - [2372] = {.lex_state = 12, .external_lex_state = 5}, - [2373] = {.lex_state = 12, .external_lex_state = 5}, - [2374] = {.lex_state = 12, .external_lex_state = 5}, - [2375] = {.lex_state = 12, .external_lex_state = 5}, - [2376] = {.lex_state = 12, .external_lex_state = 5}, - [2377] = {.lex_state = 12, .external_lex_state = 5}, + [2371] = {.lex_state = 7, .external_lex_state = 3}, + [2372] = {.lex_state = 7, .external_lex_state = 3}, + [2373] = {.lex_state = 7, .external_lex_state = 3}, + [2374] = {.lex_state = 7, .external_lex_state = 3}, + [2375] = {.lex_state = 7, .external_lex_state = 3}, + [2376] = {.lex_state = 7, .external_lex_state = 4}, + [2377] = {.lex_state = 7, .external_lex_state = 4}, [2378] = {.lex_state = 12, .external_lex_state = 5}, [2379] = {.lex_state = 12, .external_lex_state = 5}, - [2380] = {.lex_state = 12, .external_lex_state = 5}, - [2381] = {.lex_state = 12, .external_lex_state = 5}, - [2382] = {.lex_state = 12, .external_lex_state = 5}, + [2380] = {.lex_state = 7, .external_lex_state = 4}, + [2381] = {.lex_state = 7, .external_lex_state = 4}, + [2382] = {.lex_state = 7, .external_lex_state = 4}, [2383] = {.lex_state = 12, .external_lex_state = 5}, - [2384] = {.lex_state = 7, .external_lex_state = 3}, - [2385] = {.lex_state = 7, .external_lex_state = 4}, - [2386] = {.lex_state = 7, .external_lex_state = 4}, - [2387] = {.lex_state = 7, .external_lex_state = 4}, - [2388] = {.lex_state = 7, .external_lex_state = 4}, - [2389] = {.lex_state = 7, .external_lex_state = 3}, + [2384] = {.lex_state = 12, .external_lex_state = 5}, + [2385] = {.lex_state = 12, .external_lex_state = 5}, + [2386] = {.lex_state = 12, .external_lex_state = 5}, + [2387] = {.lex_state = 12, .external_lex_state = 5}, + [2388] = {.lex_state = 12, .external_lex_state = 5}, + [2389] = {.lex_state = 7, .external_lex_state = 4}, [2390] = {.lex_state = 12, .external_lex_state = 5}, [2391] = {.lex_state = 7, .external_lex_state = 3}, - [2392] = {.lex_state = 7, .external_lex_state = 3}, - [2393] = {.lex_state = 7, .external_lex_state = 3}, - [2394] = {.lex_state = 7, .external_lex_state = 3}, - [2395] = {.lex_state = 7, .external_lex_state = 3}, - [2396] = {.lex_state = 7, .external_lex_state = 3}, - [2397] = {.lex_state = 7, .external_lex_state = 3}, - [2398] = {.lex_state = 7, .external_lex_state = 3}, - [2399] = {.lex_state = 7, .external_lex_state = 3}, - [2400] = {.lex_state = 7, .external_lex_state = 3}, - [2401] = {.lex_state = 12, .external_lex_state = 5}, - [2402] = {.lex_state = 7, .external_lex_state = 3}, - [2403] = {.lex_state = 7, .external_lex_state = 3}, - [2404] = {.lex_state = 7, .external_lex_state = 4}, - [2405] = {.lex_state = 12, .external_lex_state = 5}, - [2406] = {.lex_state = 12, .external_lex_state = 5}, + [2392] = {.lex_state = 7, .external_lex_state = 4}, + [2393] = {.lex_state = 7, .external_lex_state = 4}, + [2394] = {.lex_state = 7, .external_lex_state = 4}, + [2395] = {.lex_state = 12, .external_lex_state = 2}, + [2396] = {.lex_state = 7, .external_lex_state = 4}, + [2397] = {.lex_state = 12, .external_lex_state = 2}, + [2398] = {.lex_state = 7, .external_lex_state = 4}, + [2399] = {.lex_state = 12, .external_lex_state = 5}, + [2400] = {.lex_state = 12, .external_lex_state = 5}, + [2401] = {.lex_state = 7, .external_lex_state = 3}, + [2402] = {.lex_state = 7, .external_lex_state = 4}, + [2403] = {.lex_state = 7, .external_lex_state = 4}, + [2404] = {.lex_state = 12, .external_lex_state = 5}, + [2405] = {.lex_state = 95, .external_lex_state = 2}, + [2406] = {.lex_state = 7, .external_lex_state = 4}, [2407] = {.lex_state = 7, .external_lex_state = 4}, - [2408] = {.lex_state = 7, .external_lex_state = 4}, - [2409] = {.lex_state = 8, .external_lex_state = 4}, + [2408] = {.lex_state = 7, .external_lex_state = 3}, + [2409] = {.lex_state = 7, .external_lex_state = 3}, [2410] = {.lex_state = 7, .external_lex_state = 3}, - [2411] = {.lex_state = 12, .external_lex_state = 5}, + [2411] = {.lex_state = 7, .external_lex_state = 3}, [2412] = {.lex_state = 12, .external_lex_state = 5}, - [2413] = {.lex_state = 7, .external_lex_state = 3}, - [2414] = {.lex_state = 7, .external_lex_state = 3}, - [2415] = {.lex_state = 7, .external_lex_state = 3}, + [2413] = {.lex_state = 7, .external_lex_state = 4}, + [2414] = {.lex_state = 7, .external_lex_state = 4}, + [2415] = {.lex_state = 12, .external_lex_state = 2}, [2416] = {.lex_state = 7, .external_lex_state = 3}, - [2417] = {.lex_state = 7, .external_lex_state = 3}, + [2417] = {.lex_state = 12, .external_lex_state = 2}, [2418] = {.lex_state = 7, .external_lex_state = 3}, [2419] = {.lex_state = 7, .external_lex_state = 3}, - [2420] = {.lex_state = 7, .external_lex_state = 3}, + [2420] = {.lex_state = 12, .external_lex_state = 5}, [2421] = {.lex_state = 7, .external_lex_state = 3}, - [2422] = {.lex_state = 7, .external_lex_state = 3}, + [2422] = {.lex_state = 12, .external_lex_state = 5}, [2423] = {.lex_state = 7, .external_lex_state = 3}, - [2424] = {.lex_state = 7, .external_lex_state = 3}, + [2424] = {.lex_state = 12, .external_lex_state = 5}, [2425] = {.lex_state = 7, .external_lex_state = 3}, - [2426] = {.lex_state = 7, .external_lex_state = 3}, + [2426] = {.lex_state = 12, .external_lex_state = 5}, [2427] = {.lex_state = 7, .external_lex_state = 3}, - [2428] = {.lex_state = 7, .external_lex_state = 3}, - [2429] = {.lex_state = 7, .external_lex_state = 3}, + [2428] = {.lex_state = 12, .external_lex_state = 5}, + [2429] = {.lex_state = 7, .external_lex_state = 4}, [2430] = {.lex_state = 7, .external_lex_state = 3}, [2431] = {.lex_state = 7, .external_lex_state = 3}, [2432] = {.lex_state = 7, .external_lex_state = 3}, [2433] = {.lex_state = 7, .external_lex_state = 3}, - [2434] = {.lex_state = 7, .external_lex_state = 3}, + [2434] = {.lex_state = 7, .external_lex_state = 4}, [2435] = {.lex_state = 7, .external_lex_state = 3}, - [2436] = {.lex_state = 7, .external_lex_state = 3}, - [2437] = {.lex_state = 7, .external_lex_state = 3}, + [2436] = {.lex_state = 12, .external_lex_state = 2}, + [2437] = {.lex_state = 12, .external_lex_state = 2}, [2438] = {.lex_state = 7, .external_lex_state = 3}, - [2439] = {.lex_state = 7, .external_lex_state = 3}, - [2440] = {.lex_state = 7, .external_lex_state = 3}, + [2439] = {.lex_state = 12, .external_lex_state = 5}, + [2440] = {.lex_state = 12, .external_lex_state = 5}, [2441] = {.lex_state = 7, .external_lex_state = 3}, - [2442] = {.lex_state = 7, .external_lex_state = 3}, - [2443] = {.lex_state = 7, .external_lex_state = 3}, + [2442] = {.lex_state = 7, .external_lex_state = 4}, + [2443] = {.lex_state = 12, .external_lex_state = 5}, [2444] = {.lex_state = 7, .external_lex_state = 4}, - [2445] = {.lex_state = 7, .external_lex_state = 3}, + [2445] = {.lex_state = 12, .external_lex_state = 5}, [2446] = {.lex_state = 7, .external_lex_state = 3}, - [2447] = {.lex_state = 7, .external_lex_state = 3}, - [2448] = {.lex_state = 12, .external_lex_state = 2}, - [2449] = {.lex_state = 12, .external_lex_state = 2}, - [2450] = {.lex_state = 12, .external_lex_state = 5}, - [2451] = {.lex_state = 7, .external_lex_state = 3}, - [2452] = {.lex_state = 12, .external_lex_state = 5}, - [2453] = {.lex_state = 7, .external_lex_state = 3}, - [2454] = {.lex_state = 7, .external_lex_state = 3}, - [2455] = {.lex_state = 12, .external_lex_state = 5}, + [2447] = {.lex_state = 12, .external_lex_state = 5}, + [2448] = {.lex_state = 12, .external_lex_state = 5}, + [2449] = {.lex_state = 12, .external_lex_state = 5}, + [2450] = {.lex_state = 7, .external_lex_state = 4}, + [2451] = {.lex_state = 7, .external_lex_state = 4}, + [2452] = {.lex_state = 7, .external_lex_state = 3}, + [2453] = {.lex_state = 12, .external_lex_state = 5}, + [2454] = {.lex_state = 7, .external_lex_state = 4}, + [2455] = {.lex_state = 7, .external_lex_state = 3}, [2456] = {.lex_state = 7, .external_lex_state = 3}, - [2457] = {.lex_state = 12, .external_lex_state = 2}, + [2457] = {.lex_state = 7, .external_lex_state = 3}, [2458] = {.lex_state = 7, .external_lex_state = 3}, - [2459] = {.lex_state = 12, .external_lex_state = 5}, - [2460] = {.lex_state = 12, .external_lex_state = 2}, + [2459] = {.lex_state = 7, .external_lex_state = 3}, + [2460] = {.lex_state = 7, .external_lex_state = 3}, [2461] = {.lex_state = 7, .external_lex_state = 4}, - [2462] = {.lex_state = 7, .external_lex_state = 4}, - [2463] = {.lex_state = 7, .external_lex_state = 4}, + [2462] = {.lex_state = 12, .external_lex_state = 5}, + [2463] = {.lex_state = 7, .external_lex_state = 3}, [2464] = {.lex_state = 12, .external_lex_state = 5}, - [2465] = {.lex_state = 12, .external_lex_state = 5}, - [2466] = {.lex_state = 12, .external_lex_state = 5}, - [2467] = {.lex_state = 12, .external_lex_state = 5}, - [2468] = {.lex_state = 12, .external_lex_state = 2}, - [2469] = {.lex_state = 12, .external_lex_state = 5}, + [2465] = {.lex_state = 7, .external_lex_state = 3}, + [2466] = {.lex_state = 7, .external_lex_state = 3}, + [2467] = {.lex_state = 7, .external_lex_state = 3}, + [2468] = {.lex_state = 7, .external_lex_state = 3}, + [2469] = {.lex_state = 7, .external_lex_state = 3}, [2470] = {.lex_state = 7, .external_lex_state = 3}, - [2471] = {.lex_state = 12, .external_lex_state = 5}, - [2472] = {.lex_state = 7, .external_lex_state = 3}, - [2473] = {.lex_state = 12, .external_lex_state = 5}, - [2474] = {.lex_state = 7, .external_lex_state = 3}, - [2475] = {.lex_state = 12, .external_lex_state = 5}, + [2471] = {.lex_state = 7, .external_lex_state = 3}, + [2472] = {.lex_state = 12, .external_lex_state = 5}, + [2473] = {.lex_state = 7, .external_lex_state = 3}, + [2474] = {.lex_state = 12, .external_lex_state = 5}, + [2475] = {.lex_state = 7, .external_lex_state = 3}, [2476] = {.lex_state = 7, .external_lex_state = 3}, - [2477] = {.lex_state = 12, .external_lex_state = 5}, + [2477] = {.lex_state = 7, .external_lex_state = 3}, [2478] = {.lex_state = 7, .external_lex_state = 3}, - [2479] = {.lex_state = 12, .external_lex_state = 5}, - [2480] = {.lex_state = 12, .external_lex_state = 5}, - [2481] = {.lex_state = 12, .external_lex_state = 5}, - [2482] = {.lex_state = 12, .external_lex_state = 2}, + [2479] = {.lex_state = 7, .external_lex_state = 3}, + [2480] = {.lex_state = 7, .external_lex_state = 3}, + [2481] = {.lex_state = 7, .external_lex_state = 3}, + [2482] = {.lex_state = 7, .external_lex_state = 3}, [2483] = {.lex_state = 7, .external_lex_state = 3}, - [2484] = {.lex_state = 12, .external_lex_state = 2}, + [2484] = {.lex_state = 7, .external_lex_state = 3}, [2485] = {.lex_state = 7, .external_lex_state = 3}, [2486] = {.lex_state = 7, .external_lex_state = 3}, [2487] = {.lex_state = 7, .external_lex_state = 3}, - [2488] = {.lex_state = 12, .external_lex_state = 5}, - [2489] = {.lex_state = 96, .external_lex_state = 2}, - [2490] = {.lex_state = 12, .external_lex_state = 5}, + [2488] = {.lex_state = 7, .external_lex_state = 4}, + [2489] = {.lex_state = 12, .external_lex_state = 5}, + [2490] = {.lex_state = 7, .external_lex_state = 3}, [2491] = {.lex_state = 7, .external_lex_state = 3}, - [2492] = {.lex_state = 12, .external_lex_state = 5}, - [2493] = {.lex_state = 12, .external_lex_state = 2}, - [2494] = {.lex_state = 7, .external_lex_state = 4}, - [2495] = {.lex_state = 12, .external_lex_state = 5}, - [2496] = {.lex_state = 12, .external_lex_state = 5}, - [2497] = {.lex_state = 12, .external_lex_state = 5}, - [2498] = {.lex_state = 12, .external_lex_state = 5}, - [2499] = {.lex_state = 12, .external_lex_state = 2}, + [2492] = {.lex_state = 7, .external_lex_state = 3}, + [2493] = {.lex_state = 7, .external_lex_state = 3}, + [2494] = {.lex_state = 7, .external_lex_state = 3}, + [2495] = {.lex_state = 7, .external_lex_state = 3}, + [2496] = {.lex_state = 7, .external_lex_state = 3}, + [2497] = {.lex_state = 7, .external_lex_state = 3}, + [2498] = {.lex_state = 7, .external_lex_state = 3}, + [2499] = {.lex_state = 7, .external_lex_state = 3}, [2500] = {.lex_state = 12, .external_lex_state = 5}, - [2501] = {.lex_state = 7, .external_lex_state = 3}, - [2502] = {.lex_state = 7, .external_lex_state = 3}, - [2503] = {.lex_state = 7, .external_lex_state = 4}, - [2504] = {.lex_state = 7, .external_lex_state = 3}, - [2505] = {.lex_state = 7, .external_lex_state = 3}, - [2506] = {.lex_state = 7, .external_lex_state = 3}, - [2507] = {.lex_state = 7, .external_lex_state = 3}, - [2508] = {.lex_state = 7, .external_lex_state = 3}, - [2509] = {.lex_state = 7, .external_lex_state = 3}, - [2510] = {.lex_state = 7, .external_lex_state = 3}, - [2511] = {.lex_state = 7, .external_lex_state = 3}, - [2512] = {.lex_state = 7, .external_lex_state = 3}, + [2501] = {.lex_state = 12, .external_lex_state = 2}, + [2502] = {.lex_state = 12, .external_lex_state = 5}, + [2503] = {.lex_state = 12, .external_lex_state = 5}, + [2504] = {.lex_state = 12, .external_lex_state = 5}, + [2505] = {.lex_state = 12, .external_lex_state = 5}, + [2506] = {.lex_state = 12, .external_lex_state = 2}, + [2507] = {.lex_state = 12, .external_lex_state = 2}, + [2508] = {.lex_state = 12, .external_lex_state = 5}, + [2509] = {.lex_state = 12, .external_lex_state = 5}, + [2510] = {.lex_state = 12, .external_lex_state = 5}, + [2511] = {.lex_state = 12, .external_lex_state = 5}, + [2512] = {.lex_state = 12, .external_lex_state = 5}, [2513] = {.lex_state = 7, .external_lex_state = 3}, - [2514] = {.lex_state = 7, .external_lex_state = 3}, - [2515] = {.lex_state = 7, .external_lex_state = 3}, - [2516] = {.lex_state = 7, .external_lex_state = 3}, - [2517] = {.lex_state = 7, .external_lex_state = 3}, - [2518] = {.lex_state = 7, .external_lex_state = 3}, + [2514] = {.lex_state = 12, .external_lex_state = 5}, + [2515] = {.lex_state = 12, .external_lex_state = 5}, + [2516] = {.lex_state = 12, .external_lex_state = 5}, + [2517] = {.lex_state = 12, .external_lex_state = 5}, + [2518] = {.lex_state = 12, .external_lex_state = 5}, [2519] = {.lex_state = 7, .external_lex_state = 3}, [2520] = {.lex_state = 7, .external_lex_state = 3}, - [2521] = {.lex_state = 7, .external_lex_state = 3}, - [2522] = {.lex_state = 7, .external_lex_state = 3}, - [2523] = {.lex_state = 7, .external_lex_state = 3}, - [2524] = {.lex_state = 7, .external_lex_state = 3}, - [2525] = {.lex_state = 7, .external_lex_state = 3}, + [2521] = {.lex_state = 7, .external_lex_state = 4}, + [2522] = {.lex_state = 12, .external_lex_state = 5}, + [2523] = {.lex_state = 12, .external_lex_state = 5}, + [2524] = {.lex_state = 12, .external_lex_state = 5}, + [2525] = {.lex_state = 7, .external_lex_state = 4}, [2526] = {.lex_state = 7, .external_lex_state = 3}, - [2527] = {.lex_state = 7, .external_lex_state = 3}, - [2528] = {.lex_state = 7, .external_lex_state = 3}, + [2527] = {.lex_state = 12, .external_lex_state = 2}, + [2528] = {.lex_state = 7, .external_lex_state = 4}, [2529] = {.lex_state = 7, .external_lex_state = 3}, - [2530] = {.lex_state = 7, .external_lex_state = 3}, - [2531] = {.lex_state = 8, .external_lex_state = 3}, - [2532] = {.lex_state = 7, .external_lex_state = 3}, - [2533] = {.lex_state = 7, .external_lex_state = 3}, - [2534] = {.lex_state = 7, .external_lex_state = 3}, - [2535] = {.lex_state = 96, .external_lex_state = 2}, - [2536] = {.lex_state = 7, .external_lex_state = 4}, - [2537] = {.lex_state = 7, .external_lex_state = 3}, + [2530] = {.lex_state = 8, .external_lex_state = 3}, + [2531] = {.lex_state = 12, .external_lex_state = 5}, + [2532] = {.lex_state = 12, .external_lex_state = 5}, + [2533] = {.lex_state = 7, .external_lex_state = 4}, + [2534] = {.lex_state = 12, .external_lex_state = 2}, + [2535] = {.lex_state = 12, .external_lex_state = 5}, + [2536] = {.lex_state = 7, .external_lex_state = 3}, + [2537] = {.lex_state = 12, .external_lex_state = 5}, [2538] = {.lex_state = 7, .external_lex_state = 3}, - [2539] = {.lex_state = 96, .external_lex_state = 5}, - [2540] = {.lex_state = 96, .external_lex_state = 5}, - [2541] = {.lex_state = 12, .external_lex_state = 2}, - [2542] = {.lex_state = 96, .external_lex_state = 5}, - [2543] = {.lex_state = 96, .external_lex_state = 5}, - [2544] = {.lex_state = 12, .external_lex_state = 2}, - [2545] = {.lex_state = 7, .external_lex_state = 3}, - [2546] = {.lex_state = 7, .external_lex_state = 3}, - [2547] = {.lex_state = 96, .external_lex_state = 5}, - [2548] = {.lex_state = 7, .external_lex_state = 3}, - [2549] = {.lex_state = 7, .external_lex_state = 3}, - [2550] = {.lex_state = 12, .external_lex_state = 2}, - [2551] = {.lex_state = 7, .external_lex_state = 3}, - [2552] = {.lex_state = 7, .external_lex_state = 3}, - [2553] = {.lex_state = 96, .external_lex_state = 5}, - [2554] = {.lex_state = 7, .external_lex_state = 3}, - [2555] = {.lex_state = 7, .external_lex_state = 3}, - [2556] = {.lex_state = 7, .external_lex_state = 3}, - [2557] = {.lex_state = 7, .external_lex_state = 3}, - [2558] = {.lex_state = 96, .external_lex_state = 2}, - [2559] = {.lex_state = 12, .external_lex_state = 2}, - [2560] = {.lex_state = 96, .external_lex_state = 5}, - [2561] = {.lex_state = 96, .external_lex_state = 5}, - [2562] = {.lex_state = 96, .external_lex_state = 5}, - [2563] = {.lex_state = 96, .external_lex_state = 5}, + [2539] = {.lex_state = 7, .external_lex_state = 3}, + [2540] = {.lex_state = 12, .external_lex_state = 2}, + [2541] = {.lex_state = 7, .external_lex_state = 3}, + [2542] = {.lex_state = 12, .external_lex_state = 5}, + [2543] = {.lex_state = 7, .external_lex_state = 3}, + [2544] = {.lex_state = 12, .external_lex_state = 5}, + [2545] = {.lex_state = 12, .external_lex_state = 5}, + [2546] = {.lex_state = 12, .external_lex_state = 5}, + [2547] = {.lex_state = 12, .external_lex_state = 5}, + [2548] = {.lex_state = 12, .external_lex_state = 5}, + [2549] = {.lex_state = 12, .external_lex_state = 5}, + [2550] = {.lex_state = 12, .external_lex_state = 5}, + [2551] = {.lex_state = 12, .external_lex_state = 5}, + [2552] = {.lex_state = 12, .external_lex_state = 5}, + [2553] = {.lex_state = 12, .external_lex_state = 5}, + [2554] = {.lex_state = 12, .external_lex_state = 5}, + [2555] = {.lex_state = 12, .external_lex_state = 5}, + [2556] = {.lex_state = 12, .external_lex_state = 5}, + [2557] = {.lex_state = 12, .external_lex_state = 5}, + [2558] = {.lex_state = 12, .external_lex_state = 2}, + [2559] = {.lex_state = 12, .external_lex_state = 5}, + [2560] = {.lex_state = 12, .external_lex_state = 5}, + [2561] = {.lex_state = 7, .external_lex_state = 3}, + [2562] = {.lex_state = 7, .external_lex_state = 3}, + [2563] = {.lex_state = 12, .external_lex_state = 2}, [2564] = {.lex_state = 7, .external_lex_state = 3}, - [2565] = {.lex_state = 96, .external_lex_state = 2}, - [2566] = {.lex_state = 7, .external_lex_state = 3}, + [2565] = {.lex_state = 7, .external_lex_state = 3}, + [2566] = {.lex_state = 12, .external_lex_state = 2}, [2567] = {.lex_state = 7, .external_lex_state = 3}, [2568] = {.lex_state = 7, .external_lex_state = 3}, [2569] = {.lex_state = 12, .external_lex_state = 5}, - [2570] = {.lex_state = 7, .external_lex_state = 3}, - [2571] = {.lex_state = 7, .external_lex_state = 3}, + [2570] = {.lex_state = 12, .external_lex_state = 5}, + [2571] = {.lex_state = 12, .external_lex_state = 5}, [2572] = {.lex_state = 12, .external_lex_state = 5}, - [2573] = {.lex_state = 7, .external_lex_state = 3}, - [2574] = {.lex_state = 12, .external_lex_state = 2}, - [2575] = {.lex_state = 96, .external_lex_state = 2}, - [2576] = {.lex_state = 12, .external_lex_state = 2}, - [2577] = {.lex_state = 12, .external_lex_state = 2}, + [2573] = {.lex_state = 12, .external_lex_state = 5}, + [2574] = {.lex_state = 12, .external_lex_state = 5}, + [2575] = {.lex_state = 12, .external_lex_state = 5}, + [2576] = {.lex_state = 95, .external_lex_state = 5}, + [2577] = {.lex_state = 7, .external_lex_state = 3}, [2578] = {.lex_state = 7, .external_lex_state = 3}, - [2579] = {.lex_state = 12, .external_lex_state = 2}, - [2580] = {.lex_state = 96, .external_lex_state = 5}, - [2581] = {.lex_state = 12, .external_lex_state = 2}, - [2582] = {.lex_state = 12, .external_lex_state = 2}, - [2583] = {.lex_state = 96, .external_lex_state = 5}, - [2584] = {.lex_state = 12, .external_lex_state = 2}, - [2585] = {.lex_state = 12, .external_lex_state = 2}, - [2586] = {.lex_state = 12, .external_lex_state = 2}, - [2587] = {.lex_state = 12, .external_lex_state = 2}, - [2588] = {.lex_state = 96, .external_lex_state = 5}, - [2589] = {.lex_state = 8, .external_lex_state = 3}, - [2590] = {.lex_state = 96, .external_lex_state = 5}, - [2591] = {.lex_state = 96, .external_lex_state = 5}, - [2592] = {.lex_state = 96, .external_lex_state = 5}, - [2593] = {.lex_state = 12, .external_lex_state = 2}, - [2594] = {.lex_state = 96, .external_lex_state = 5}, - [2595] = {.lex_state = 96, .external_lex_state = 5}, - [2596] = {.lex_state = 96, .external_lex_state = 5}, - [2597] = {.lex_state = 7, .external_lex_state = 3}, - [2598] = {.lex_state = 96, .external_lex_state = 5}, - [2599] = {.lex_state = 12, .external_lex_state = 2}, - [2600] = {.lex_state = 96, .external_lex_state = 5}, - [2601] = {.lex_state = 96, .external_lex_state = 5}, - [2602] = {.lex_state = 7, .external_lex_state = 3}, - [2603] = {.lex_state = 12, .external_lex_state = 2}, - [2604] = {.lex_state = 12, .external_lex_state = 2}, - [2605] = {.lex_state = 7, .external_lex_state = 3}, - [2606] = {.lex_state = 96, .external_lex_state = 5}, - [2607] = {.lex_state = 12, .external_lex_state = 2}, - [2608] = {.lex_state = 12, .external_lex_state = 2}, - [2609] = {.lex_state = 96, .external_lex_state = 5}, - [2610] = {.lex_state = 96, .external_lex_state = 5}, + [2579] = {.lex_state = 95, .external_lex_state = 5}, + [2580] = {.lex_state = 7, .external_lex_state = 4}, + [2581] = {.lex_state = 7, .external_lex_state = 3}, + [2582] = {.lex_state = 7, .external_lex_state = 3}, + [2583] = {.lex_state = 7, .external_lex_state = 3}, + [2584] = {.lex_state = 95, .external_lex_state = 5}, + [2585] = {.lex_state = 95, .external_lex_state = 5}, + [2586] = {.lex_state = 95, .external_lex_state = 5}, + [2587] = {.lex_state = 12, .external_lex_state = 5}, + [2588] = {.lex_state = 12, .external_lex_state = 5}, + [2589] = {.lex_state = 95, .external_lex_state = 2}, + [2590] = {.lex_state = 7, .external_lex_state = 3}, + [2591] = {.lex_state = 12, .external_lex_state = 2}, + [2592] = {.lex_state = 7, .external_lex_state = 3}, + [2593] = {.lex_state = 95, .external_lex_state = 5}, + [2594] = {.lex_state = 95, .external_lex_state = 5}, + [2595] = {.lex_state = 7, .external_lex_state = 3}, + [2596] = {.lex_state = 12, .external_lex_state = 2}, + [2597] = {.lex_state = 12, .external_lex_state = 2}, + [2598] = {.lex_state = 7, .external_lex_state = 3}, + [2599] = {.lex_state = 7, .external_lex_state = 3}, + [2600] = {.lex_state = 12, .external_lex_state = 2}, + [2601] = {.lex_state = 7, .external_lex_state = 3}, + [2602] = {.lex_state = 95, .external_lex_state = 5}, + [2603] = {.lex_state = 7, .external_lex_state = 3}, + [2604] = {.lex_state = 7, .external_lex_state = 3}, + [2605] = {.lex_state = 95, .external_lex_state = 5}, + [2606] = {.lex_state = 7, .external_lex_state = 3}, + [2607] = {.lex_state = 95, .external_lex_state = 5}, + [2608] = {.lex_state = 95, .external_lex_state = 2}, + [2609] = {.lex_state = 7, .external_lex_state = 3}, + [2610] = {.lex_state = 7, .external_lex_state = 3}, [2611] = {.lex_state = 12, .external_lex_state = 2}, - [2612] = {.lex_state = 12, .external_lex_state = 2}, + [2612] = {.lex_state = 7, .external_lex_state = 3}, [2613] = {.lex_state = 7, .external_lex_state = 3}, [2614] = {.lex_state = 7, .external_lex_state = 3}, - [2615] = {.lex_state = 96, .external_lex_state = 5}, + [2615] = {.lex_state = 95, .external_lex_state = 5}, [2616] = {.lex_state = 7, .external_lex_state = 3}, - [2617] = {.lex_state = 7, .external_lex_state = 3}, - [2618] = {.lex_state = 12, .external_lex_state = 2}, - [2619] = {.lex_state = 7, .external_lex_state = 3}, - [2620] = {.lex_state = 12, .external_lex_state = 5}, - [2621] = {.lex_state = 12, .external_lex_state = 5}, - [2622] = {.lex_state = 12, .external_lex_state = 5}, - [2623] = {.lex_state = 12, .external_lex_state = 5}, - [2624] = {.lex_state = 12, .external_lex_state = 5}, - [2625] = {.lex_state = 12, .external_lex_state = 5}, - [2626] = {.lex_state = 12, .external_lex_state = 5}, - [2627] = {.lex_state = 12, .external_lex_state = 5}, - [2628] = {.lex_state = 12, .external_lex_state = 5}, - [2629] = {.lex_state = 12, .external_lex_state = 5}, - [2630] = {.lex_state = 12, .external_lex_state = 5}, - [2631] = {.lex_state = 12, .external_lex_state = 5}, - [2632] = {.lex_state = 12, .external_lex_state = 5}, - [2633] = {.lex_state = 12, .external_lex_state = 5}, - [2634] = {.lex_state = 12, .external_lex_state = 5}, - [2635] = {.lex_state = 12, .external_lex_state = 5}, - [2636] = {.lex_state = 12, .external_lex_state = 2}, - [2637] = {.lex_state = 12, .external_lex_state = 5}, - [2638] = {.lex_state = 12, .external_lex_state = 5}, - [2639] = {.lex_state = 12, .external_lex_state = 5}, - [2640] = {.lex_state = 12, .external_lex_state = 5}, - [2641] = {.lex_state = 12, .external_lex_state = 5}, - [2642] = {.lex_state = 12, .external_lex_state = 5}, - [2643] = {.lex_state = 12, .external_lex_state = 5}, - [2644] = {.lex_state = 12, .external_lex_state = 5}, - [2645] = {.lex_state = 12, .external_lex_state = 5}, - [2646] = {.lex_state = 12, .external_lex_state = 5}, - [2647] = {.lex_state = 7, .external_lex_state = 3}, - [2648] = {.lex_state = 12, .external_lex_state = 5}, - [2649] = {.lex_state = 12, .external_lex_state = 5}, - [2650] = {.lex_state = 12, .external_lex_state = 5}, - [2651] = {.lex_state = 12, .external_lex_state = 5}, - [2652] = {.lex_state = 12, .external_lex_state = 5}, - [2653] = {.lex_state = 12, .external_lex_state = 5}, - [2654] = {.lex_state = 12, .external_lex_state = 5}, - [2655] = {.lex_state = 12, .external_lex_state = 5}, + [2617] = {.lex_state = 12, .external_lex_state = 2}, + [2618] = {.lex_state = 95, .external_lex_state = 5}, + [2619] = {.lex_state = 12, .external_lex_state = 2}, + [2620] = {.lex_state = 12, .external_lex_state = 2}, + [2621] = {.lex_state = 95, .external_lex_state = 5}, + [2622] = {.lex_state = 95, .external_lex_state = 5}, + [2623] = {.lex_state = 12, .external_lex_state = 2}, + [2624] = {.lex_state = 12, .external_lex_state = 2}, + [2625] = {.lex_state = 95, .external_lex_state = 5}, + [2626] = {.lex_state = 12, .external_lex_state = 2}, + [2627] = {.lex_state = 8, .external_lex_state = 3}, + [2628] = {.lex_state = 12, .external_lex_state = 2}, + [2629] = {.lex_state = 12, .external_lex_state = 2}, + [2630] = {.lex_state = 12, .external_lex_state = 2}, + [2631] = {.lex_state = 12, .external_lex_state = 2}, + [2632] = {.lex_state = 12, .external_lex_state = 2}, + [2633] = {.lex_state = 95, .external_lex_state = 5}, + [2634] = {.lex_state = 7, .external_lex_state = 3}, + [2635] = {.lex_state = 7, .external_lex_state = 3}, + [2636] = {.lex_state = 7, .external_lex_state = 3}, + [2637] = {.lex_state = 12, .external_lex_state = 2}, + [2638] = {.lex_state = 12, .external_lex_state = 2}, + [2639] = {.lex_state = 95, .external_lex_state = 5}, + [2640] = {.lex_state = 7, .external_lex_state = 3}, + [2641] = {.lex_state = 7, .external_lex_state = 3}, + [2642] = {.lex_state = 95, .external_lex_state = 5}, + [2643] = {.lex_state = 12, .external_lex_state = 2}, + [2644] = {.lex_state = 95, .external_lex_state = 5}, + [2645] = {.lex_state = 95, .external_lex_state = 5}, + [2646] = {.lex_state = 95, .external_lex_state = 5}, + [2647] = {.lex_state = 12, .external_lex_state = 2}, + [2648] = {.lex_state = 95, .external_lex_state = 5}, + [2649] = {.lex_state = 95, .external_lex_state = 5}, + [2650] = {.lex_state = 95, .external_lex_state = 5}, + [2651] = {.lex_state = 95, .external_lex_state = 5}, + [2652] = {.lex_state = 7, .external_lex_state = 3}, + [2653] = {.lex_state = 12, .external_lex_state = 2}, + [2654] = {.lex_state = 12, .external_lex_state = 2}, + [2655] = {.lex_state = 12, .external_lex_state = 2}, [2656] = {.lex_state = 7, .external_lex_state = 3}, - [2657] = {.lex_state = 12, .external_lex_state = 5}, - [2658] = {.lex_state = 12, .external_lex_state = 5}, + [2657] = {.lex_state = 12, .external_lex_state = 2}, + [2658] = {.lex_state = 95, .external_lex_state = 5}, [2659] = {.lex_state = 12, .external_lex_state = 5}, [2660] = {.lex_state = 12, .external_lex_state = 5}, [2661] = {.lex_state = 12, .external_lex_state = 5}, [2662] = {.lex_state = 12, .external_lex_state = 5}, - [2663] = {.lex_state = 7, .external_lex_state = 3}, + [2663] = {.lex_state = 12, .external_lex_state = 5}, [2664] = {.lex_state = 12, .external_lex_state = 5}, [2665] = {.lex_state = 12, .external_lex_state = 5}, [2666] = {.lex_state = 12, .external_lex_state = 5}, - [2667] = {.lex_state = 7, .external_lex_state = 3}, - [2668] = {.lex_state = 12, .external_lex_state = 2}, - [2669] = {.lex_state = 7, .external_lex_state = 3}, + [2667] = {.lex_state = 12, .external_lex_state = 5}, + [2668] = {.lex_state = 12, .external_lex_state = 5}, + [2669] = {.lex_state = 12, .external_lex_state = 5}, [2670] = {.lex_state = 12, .external_lex_state = 5}, [2671] = {.lex_state = 12, .external_lex_state = 5}, - [2672] = {.lex_state = 7, .external_lex_state = 3}, - [2673] = {.lex_state = 7, .external_lex_state = 3}, + [2672] = {.lex_state = 12, .external_lex_state = 5}, + [2673] = {.lex_state = 12, .external_lex_state = 5}, [2674] = {.lex_state = 12, .external_lex_state = 5}, [2675] = {.lex_state = 12, .external_lex_state = 5}, - [2676] = {.lex_state = 7, .external_lex_state = 3}, + [2676] = {.lex_state = 12, .external_lex_state = 5}, [2677] = {.lex_state = 12, .external_lex_state = 5}, [2678] = {.lex_state = 12, .external_lex_state = 5}, [2679] = {.lex_state = 12, .external_lex_state = 5}, [2680] = {.lex_state = 12, .external_lex_state = 5}, - [2681] = {.lex_state = 12, .external_lex_state = 2}, - [2682] = {.lex_state = 7, .external_lex_state = 3}, + [2681] = {.lex_state = 12, .external_lex_state = 5}, + [2682] = {.lex_state = 12, .external_lex_state = 5}, [2683] = {.lex_state = 12, .external_lex_state = 5}, - [2684] = {.lex_state = 12, .external_lex_state = 2}, - [2685] = {.lex_state = 12, .external_lex_state = 2}, - [2686] = {.lex_state = 12, .external_lex_state = 2}, - [2687] = {.lex_state = 12, .external_lex_state = 2}, - [2688] = {.lex_state = 12, .external_lex_state = 2}, - [2689] = {.lex_state = 12, .external_lex_state = 2}, - [2690] = {.lex_state = 12, .external_lex_state = 2}, - [2691] = {.lex_state = 12, .external_lex_state = 2}, - [2692] = {.lex_state = 12, .external_lex_state = 2}, - [2693] = {.lex_state = 12, .external_lex_state = 2}, - [2694] = {.lex_state = 12, .external_lex_state = 2}, - [2695] = {.lex_state = 12, .external_lex_state = 2}, - [2696] = {.lex_state = 12, .external_lex_state = 2}, - [2697] = {.lex_state = 12, .external_lex_state = 2}, - [2698] = {.lex_state = 12, .external_lex_state = 2}, - [2699] = {.lex_state = 12, .external_lex_state = 2}, - [2700] = {.lex_state = 96, .external_lex_state = 2}, - [2701] = {.lex_state = 12, .external_lex_state = 2}, - [2702] = {.lex_state = 12, .external_lex_state = 2}, + [2684] = {.lex_state = 12, .external_lex_state = 5}, + [2685] = {.lex_state = 12, .external_lex_state = 5}, + [2686] = {.lex_state = 12, .external_lex_state = 5}, + [2687] = {.lex_state = 12, .external_lex_state = 5}, + [2688] = {.lex_state = 12, .external_lex_state = 5}, + [2689] = {.lex_state = 12, .external_lex_state = 5}, + [2690] = {.lex_state = 12, .external_lex_state = 5}, + [2691] = {.lex_state = 12, .external_lex_state = 5}, + [2692] = {.lex_state = 12, .external_lex_state = 5}, + [2693] = {.lex_state = 12, .external_lex_state = 5}, + [2694] = {.lex_state = 12, .external_lex_state = 5}, + [2695] = {.lex_state = 12, .external_lex_state = 5}, + [2696] = {.lex_state = 12, .external_lex_state = 5}, + [2697] = {.lex_state = 12, .external_lex_state = 5}, + [2698] = {.lex_state = 12, .external_lex_state = 5}, + [2699] = {.lex_state = 12, .external_lex_state = 5}, + [2700] = {.lex_state = 12, .external_lex_state = 5}, + [2701] = {.lex_state = 12, .external_lex_state = 5}, + [2702] = {.lex_state = 12, .external_lex_state = 5}, [2703] = {.lex_state = 12, .external_lex_state = 2}, - [2704] = {.lex_state = 12, .external_lex_state = 2}, - [2705] = {.lex_state = 12, .external_lex_state = 2}, - [2706] = {.lex_state = 12, .external_lex_state = 2}, - [2707] = {.lex_state = 96, .external_lex_state = 2}, - [2708] = {.lex_state = 12, .external_lex_state = 2}, - [2709] = {.lex_state = 96, .external_lex_state = 2}, - [2710] = {.lex_state = 12, .external_lex_state = 2}, - [2711] = {.lex_state = 12, .external_lex_state = 2}, - [2712] = {.lex_state = 96, .external_lex_state = 2}, - [2713] = {.lex_state = 12, .external_lex_state = 2}, - [2714] = {.lex_state = 12, .external_lex_state = 2}, - [2715] = {.lex_state = 12, .external_lex_state = 2}, - [2716] = {.lex_state = 12, .external_lex_state = 2}, - [2717] = {.lex_state = 12, .external_lex_state = 2}, - [2718] = {.lex_state = 12, .external_lex_state = 2}, - [2719] = {.lex_state = 12, .external_lex_state = 2}, - [2720] = {.lex_state = 12, .external_lex_state = 2}, - [2721] = {.lex_state = 12, .external_lex_state = 2}, - [2722] = {.lex_state = 12, .external_lex_state = 2}, - [2723] = {.lex_state = 96, .external_lex_state = 2}, - [2724] = {.lex_state = 12, .external_lex_state = 2}, - [2725] = {.lex_state = 12, .external_lex_state = 2}, - [2726] = {.lex_state = 12, .external_lex_state = 2}, - [2727] = {.lex_state = 12, .external_lex_state = 2}, - [2728] = {.lex_state = 12, .external_lex_state = 2}, - [2729] = {.lex_state = 12, .external_lex_state = 2}, - [2730] = {.lex_state = 12, .external_lex_state = 2}, - [2731] = {.lex_state = 12, .external_lex_state = 2}, - [2732] = {.lex_state = 12, .external_lex_state = 2}, - [2733] = {.lex_state = 12, .external_lex_state = 2}, - [2734] = {.lex_state = 12, .external_lex_state = 2}, - [2735] = {.lex_state = 12, .external_lex_state = 2}, - [2736] = {.lex_state = 12, .external_lex_state = 2}, - [2737] = {.lex_state = 12, .external_lex_state = 2}, - [2738] = {.lex_state = 96, .external_lex_state = 2}, - [2739] = {.lex_state = 96, .external_lex_state = 2}, - [2740] = {.lex_state = 96, .external_lex_state = 2}, - [2741] = {.lex_state = 96, .external_lex_state = 2}, - [2742] = {.lex_state = 96, .external_lex_state = 2}, - [2743] = {.lex_state = 96, .external_lex_state = 2}, - [2744] = {.lex_state = 96, .external_lex_state = 2}, - [2745] = {.lex_state = 96, .external_lex_state = 2}, - [2746] = {.lex_state = 96, .external_lex_state = 2}, - [2747] = {.lex_state = 96, .external_lex_state = 2}, - [2748] = {.lex_state = 96, .external_lex_state = 2}, - [2749] = {.lex_state = 96, .external_lex_state = 2}, - [2750] = {.lex_state = 96, .external_lex_state = 2}, - [2751] = {.lex_state = 96, .external_lex_state = 2}, - [2752] = {.lex_state = 96, .external_lex_state = 2}, - [2753] = {.lex_state = 96, .external_lex_state = 2}, - [2754] = {.lex_state = 96, .external_lex_state = 2}, - [2755] = {.lex_state = 96, .external_lex_state = 2}, - [2756] = {.lex_state = 96, .external_lex_state = 2}, - [2757] = {.lex_state = 96, .external_lex_state = 2}, - [2758] = {.lex_state = 96, .external_lex_state = 2}, - [2759] = {.lex_state = 96, .external_lex_state = 2}, - [2760] = {.lex_state = 96, .external_lex_state = 2}, - [2761] = {.lex_state = 96, .external_lex_state = 2}, - [2762] = {.lex_state = 96, .external_lex_state = 2}, - [2763] = {.lex_state = 96, .external_lex_state = 2}, - [2764] = {.lex_state = 12, .external_lex_state = 2}, - [2765] = {.lex_state = 96, .external_lex_state = 2}, - [2766] = {.lex_state = 96, .external_lex_state = 2}, - [2767] = {.lex_state = 96, .external_lex_state = 2}, - [2768] = {.lex_state = 96, .external_lex_state = 2}, - [2769] = {.lex_state = 96, .external_lex_state = 2}, - [2770] = {.lex_state = 96, .external_lex_state = 2}, - [2771] = {.lex_state = 96, .external_lex_state = 2}, - [2772] = {.lex_state = 96, .external_lex_state = 2}, - [2773] = {.lex_state = 96, .external_lex_state = 2}, - [2774] = {.lex_state = 96, .external_lex_state = 2}, - [2775] = {.lex_state = 96, .external_lex_state = 2}, - [2776] = {.lex_state = 96, .external_lex_state = 2}, - [2777] = {.lex_state = 96, .external_lex_state = 2}, - [2778] = {.lex_state = 96, .external_lex_state = 2}, - [2779] = {.lex_state = 96, .external_lex_state = 2}, - [2780] = {.lex_state = 96, .external_lex_state = 2}, - [2781] = {.lex_state = 96, .external_lex_state = 2}, - [2782] = {.lex_state = 96, .external_lex_state = 2}, - [2783] = {.lex_state = 96, .external_lex_state = 2}, - [2784] = {.lex_state = 96, .external_lex_state = 2}, - [2785] = {.lex_state = 96, .external_lex_state = 2}, - [2786] = {.lex_state = 96, .external_lex_state = 2}, - [2787] = {.lex_state = 96, .external_lex_state = 2}, - [2788] = {.lex_state = 96, .external_lex_state = 2}, - [2789] = {.lex_state = 96, .external_lex_state = 2}, - [2790] = {.lex_state = 96, .external_lex_state = 2}, - [2791] = {.lex_state = 96, .external_lex_state = 2}, - [2792] = {.lex_state = 96, .external_lex_state = 2}, - [2793] = {.lex_state = 96, .external_lex_state = 2}, - [2794] = {.lex_state = 96, .external_lex_state = 2}, - [2795] = {.lex_state = 96, .external_lex_state = 2}, - [2796] = {.lex_state = 96, .external_lex_state = 2}, - [2797] = {.lex_state = 96, .external_lex_state = 2}, - [2798] = {.lex_state = 96, .external_lex_state = 2}, - [2799] = {.lex_state = 96, .external_lex_state = 2}, - [2800] = {.lex_state = 96, .external_lex_state = 2}, - [2801] = {.lex_state = 96, .external_lex_state = 2}, - [2802] = {.lex_state = 96, .external_lex_state = 2}, - [2803] = {.lex_state = 96, .external_lex_state = 2}, - [2804] = {.lex_state = 96, .external_lex_state = 2}, - [2805] = {.lex_state = 96, .external_lex_state = 2}, - [2806] = {.lex_state = 96, .external_lex_state = 2}, - [2807] = {.lex_state = 96, .external_lex_state = 2}, - [2808] = {.lex_state = 96, .external_lex_state = 2}, - [2809] = {.lex_state = 96, .external_lex_state = 2}, - [2810] = {.lex_state = 96, .external_lex_state = 2}, - [2811] = {.lex_state = 96, .external_lex_state = 2}, - [2812] = {.lex_state = 96, .external_lex_state = 2}, - [2813] = {.lex_state = 96, .external_lex_state = 2}, - [2814] = {.lex_state = 96, .external_lex_state = 2}, - [2815] = {.lex_state = 96, .external_lex_state = 2}, - [2816] = {.lex_state = 96, .external_lex_state = 2}, - [2817] = {.lex_state = 96, .external_lex_state = 2}, - [2818] = {.lex_state = 96, .external_lex_state = 2}, - [2819] = {.lex_state = 96, .external_lex_state = 2}, - [2820] = {.lex_state = 96, .external_lex_state = 2}, - [2821] = {.lex_state = 96, .external_lex_state = 2}, - [2822] = {.lex_state = 96, .external_lex_state = 2}, - [2823] = {.lex_state = 96, .external_lex_state = 2}, - [2824] = {.lex_state = 96, .external_lex_state = 2}, - [2825] = {.lex_state = 96, .external_lex_state = 2}, - [2826] = {.lex_state = 96, .external_lex_state = 2}, - [2827] = {.lex_state = 96, .external_lex_state = 2}, - [2828] = {.lex_state = 96, .external_lex_state = 2}, - [2829] = {.lex_state = 96, .external_lex_state = 2}, - [2830] = {.lex_state = 96, .external_lex_state = 2}, - [2831] = {.lex_state = 96, .external_lex_state = 2}, - [2832] = {.lex_state = 96, .external_lex_state = 2}, - [2833] = {.lex_state = 96, .external_lex_state = 2}, - [2834] = {.lex_state = 96, .external_lex_state = 2}, - [2835] = {.lex_state = 96, .external_lex_state = 2}, - [2836] = {.lex_state = 96, .external_lex_state = 2}, - [2837] = {.lex_state = 96, .external_lex_state = 2}, - [2838] = {.lex_state = 96, .external_lex_state = 2}, - [2839] = {.lex_state = 96, .external_lex_state = 2}, - [2840] = {.lex_state = 96, .external_lex_state = 2}, - [2841] = {.lex_state = 96, .external_lex_state = 2}, - [2842] = {.lex_state = 96, .external_lex_state = 2}, - [2843] = {.lex_state = 96, .external_lex_state = 2}, - [2844] = {.lex_state = 96, .external_lex_state = 2}, - [2845] = {.lex_state = 15, .external_lex_state = 2}, - [2846] = {.lex_state = 15, .external_lex_state = 2}, - [2847] = {.lex_state = 15, .external_lex_state = 2}, - [2848] = {.lex_state = 15, .external_lex_state = 2}, - [2849] = {.lex_state = 15, .external_lex_state = 2}, - [2850] = {.lex_state = 15, .external_lex_state = 2}, - [2851] = {.lex_state = 15, .external_lex_state = 2}, - [2852] = {.lex_state = 15, .external_lex_state = 2}, - [2853] = {.lex_state = 15, .external_lex_state = 2}, - [2854] = {.lex_state = 15, .external_lex_state = 2}, - [2855] = {.lex_state = 15, .external_lex_state = 2}, - [2856] = {.lex_state = 15, .external_lex_state = 2}, - [2857] = {.lex_state = 15, .external_lex_state = 2}, - [2858] = {.lex_state = 15, .external_lex_state = 2}, - [2859] = {.lex_state = 15, .external_lex_state = 2}, - [2860] = {.lex_state = 15, .external_lex_state = 2}, - [2861] = {.lex_state = 15, .external_lex_state = 2}, - [2862] = {.lex_state = 15, .external_lex_state = 2}, - [2863] = {.lex_state = 15, .external_lex_state = 2}, - [2864] = {.lex_state = 15, .external_lex_state = 2}, - [2865] = {.lex_state = 15, .external_lex_state = 2}, - [2866] = {.lex_state = 15, .external_lex_state = 2}, - [2867] = {.lex_state = 15, .external_lex_state = 2}, - [2868] = {.lex_state = 15, .external_lex_state = 2}, - [2869] = {.lex_state = 15, .external_lex_state = 2}, - [2870] = {.lex_state = 15, .external_lex_state = 2}, - [2871] = {.lex_state = 15, .external_lex_state = 2}, - [2872] = {.lex_state = 15, .external_lex_state = 2}, - [2873] = {.lex_state = 15, .external_lex_state = 2}, - [2874] = {.lex_state = 15, .external_lex_state = 2}, - [2875] = {.lex_state = 15, .external_lex_state = 2}, - [2876] = {.lex_state = 15, .external_lex_state = 2}, - [2877] = {.lex_state = 15, .external_lex_state = 2}, - [2878] = {.lex_state = 15, .external_lex_state = 2}, - [2879] = {.lex_state = 15, .external_lex_state = 2}, - [2880] = {.lex_state = 15, .external_lex_state = 2}, - [2881] = {.lex_state = 15, .external_lex_state = 2}, - [2882] = {.lex_state = 13, .external_lex_state = 5}, - [2883] = {.lex_state = 13, .external_lex_state = 5}, - [2884] = {.lex_state = 15, .external_lex_state = 2}, - [2885] = {.lex_state = 96, .external_lex_state = 2}, - [2886] = {.lex_state = 96, .external_lex_state = 2}, - [2887] = {.lex_state = 13, .external_lex_state = 2}, - [2888] = {.lex_state = 96, .external_lex_state = 2}, - [2889] = {.lex_state = 96, .external_lex_state = 2}, - [2890] = {.lex_state = 96, .external_lex_state = 2}, - [2891] = {.lex_state = 13, .external_lex_state = 2}, - [2892] = {.lex_state = 14, .external_lex_state = 2}, - [2893] = {.lex_state = 96, .external_lex_state = 2}, - [2894] = {.lex_state = 14, .external_lex_state = 2}, - [2895] = {.lex_state = 14, .external_lex_state = 2}, - [2896] = {.lex_state = 15, .external_lex_state = 5}, - [2897] = {.lex_state = 14, .external_lex_state = 2}, - [2898] = {.lex_state = 13, .external_lex_state = 2}, - [2899] = {.lex_state = 13, .external_lex_state = 2}, - [2900] = {.lex_state = 14, .external_lex_state = 2}, - [2901] = {.lex_state = 15, .external_lex_state = 5}, - [2902] = {.lex_state = 15, .external_lex_state = 5}, - [2903] = {.lex_state = 96, .external_lex_state = 2}, - [2904] = {.lex_state = 96, .external_lex_state = 2}, - [2905] = {.lex_state = 96, .external_lex_state = 2}, - [2906] = {.lex_state = 13, .external_lex_state = 2}, - [2907] = {.lex_state = 96, .external_lex_state = 2}, - [2908] = {.lex_state = 96, .external_lex_state = 2}, - [2909] = {.lex_state = 96, .external_lex_state = 2}, - [2910] = {.lex_state = 15, .external_lex_state = 6}, - [2911] = {.lex_state = 96, .external_lex_state = 2}, - [2912] = {.lex_state = 4, .external_lex_state = 2}, - [2913] = {.lex_state = 96, .external_lex_state = 2}, - [2914] = {.lex_state = 15, .external_lex_state = 5}, - [2915] = {.lex_state = 96, .external_lex_state = 2}, - [2916] = {.lex_state = 96, .external_lex_state = 2}, - [2917] = {.lex_state = 96, .external_lex_state = 2}, - [2918] = {.lex_state = 15, .external_lex_state = 5}, - [2919] = {.lex_state = 96, .external_lex_state = 2}, - [2920] = {.lex_state = 96, .external_lex_state = 2}, - [2921] = {.lex_state = 96, .external_lex_state = 2}, - [2922] = {.lex_state = 96, .external_lex_state = 2}, - [2923] = {.lex_state = 96, .external_lex_state = 2}, - [2924] = {.lex_state = 15, .external_lex_state = 5}, - [2925] = {.lex_state = 96, .external_lex_state = 2}, - [2926] = {.lex_state = 96, .external_lex_state = 2}, - [2927] = {.lex_state = 15, .external_lex_state = 5}, - [2928] = {.lex_state = 15, .external_lex_state = 5}, - [2929] = {.lex_state = 96, .external_lex_state = 2}, - [2930] = {.lex_state = 96, .external_lex_state = 2}, - [2931] = {.lex_state = 96, .external_lex_state = 2}, - [2932] = {.lex_state = 96, .external_lex_state = 2}, - [2933] = {.lex_state = 4, .external_lex_state = 2}, - [2934] = {.lex_state = 15, .external_lex_state = 6}, - [2935] = {.lex_state = 96, .external_lex_state = 2}, - [2936] = {.lex_state = 15, .external_lex_state = 5}, - [2937] = {.lex_state = 4, .external_lex_state = 2}, - [2938] = {.lex_state = 96, .external_lex_state = 2}, - [2939] = {.lex_state = 15, .external_lex_state = 5}, - [2940] = {.lex_state = 4, .external_lex_state = 2}, - [2941] = {.lex_state = 4, .external_lex_state = 2}, - [2942] = {.lex_state = 96, .external_lex_state = 2}, - [2943] = {.lex_state = 96, .external_lex_state = 2}, - [2944] = {.lex_state = 96, .external_lex_state = 2}, - [2945] = {.lex_state = 15, .external_lex_state = 5}, - [2946] = {.lex_state = 15, .external_lex_state = 5}, - [2947] = {.lex_state = 96, .external_lex_state = 2}, - [2948] = {.lex_state = 96, .external_lex_state = 2}, - [2949] = {.lex_state = 4, .external_lex_state = 2}, - [2950] = {.lex_state = 15, .external_lex_state = 5}, - [2951] = {.lex_state = 15, .external_lex_state = 6}, - [2952] = {.lex_state = 96, .external_lex_state = 2}, - [2953] = {.lex_state = 96, .external_lex_state = 2}, - [2954] = {.lex_state = 96, .external_lex_state = 2}, - [2955] = {.lex_state = 96, .external_lex_state = 2}, - [2956] = {.lex_state = 4, .external_lex_state = 2}, - [2957] = {.lex_state = 96, .external_lex_state = 2}, - [2958] = {.lex_state = 13, .external_lex_state = 5}, - [2959] = {.lex_state = 96, .external_lex_state = 2}, - [2960] = {.lex_state = 15, .external_lex_state = 5}, - [2961] = {.lex_state = 96, .external_lex_state = 2}, - [2962] = {.lex_state = 4, .external_lex_state = 2}, - [2963] = {.lex_state = 96, .external_lex_state = 2}, - [2964] = {.lex_state = 96, .external_lex_state = 2}, - [2965] = {.lex_state = 96, .external_lex_state = 2}, - [2966] = {.lex_state = 96, .external_lex_state = 2}, - [2967] = {.lex_state = 96, .external_lex_state = 2}, - [2968] = {.lex_state = 15, .external_lex_state = 5}, - [2969] = {.lex_state = 15, .external_lex_state = 5}, - [2970] = {.lex_state = 15, .external_lex_state = 5}, - [2971] = {.lex_state = 15, .external_lex_state = 5}, - [2972] = {.lex_state = 15, .external_lex_state = 5}, - [2973] = {.lex_state = 96, .external_lex_state = 2}, - [2974] = {.lex_state = 96, .external_lex_state = 2}, - [2975] = {.lex_state = 15, .external_lex_state = 5}, - [2976] = {.lex_state = 15, .external_lex_state = 5}, - [2977] = {.lex_state = 15, .external_lex_state = 5}, - [2978] = {.lex_state = 15, .external_lex_state = 5}, - [2979] = {.lex_state = 15, .external_lex_state = 5}, - [2980] = {.lex_state = 96, .external_lex_state = 2}, - [2981] = {.lex_state = 96, .external_lex_state = 2}, - [2982] = {.lex_state = 15, .external_lex_state = 5}, - [2983] = {.lex_state = 15, .external_lex_state = 5}, - [2984] = {.lex_state = 15, .external_lex_state = 5}, - [2985] = {.lex_state = 15, .external_lex_state = 5}, - [2986] = {.lex_state = 96, .external_lex_state = 2}, - [2987] = {.lex_state = 96, .external_lex_state = 2}, - [2988] = {.lex_state = 4, .external_lex_state = 2}, - [2989] = {.lex_state = 15, .external_lex_state = 5}, - [2990] = {.lex_state = 96, .external_lex_state = 2}, - [2991] = {.lex_state = 96, .external_lex_state = 2}, - [2992] = {.lex_state = 15, .external_lex_state = 5}, - [2993] = {.lex_state = 15, .external_lex_state = 5}, - [2994] = {.lex_state = 96, .external_lex_state = 2}, - [2995] = {.lex_state = 96, .external_lex_state = 2}, - [2996] = {.lex_state = 15, .external_lex_state = 5}, - [2997] = {.lex_state = 96, .external_lex_state = 2}, - [2998] = {.lex_state = 96, .external_lex_state = 2}, - [2999] = {.lex_state = 15, .external_lex_state = 5}, - [3000] = {.lex_state = 4, .external_lex_state = 2}, - [3001] = {.lex_state = 15, .external_lex_state = 5}, - [3002] = {.lex_state = 96, .external_lex_state = 2}, - [3003] = {.lex_state = 96, .external_lex_state = 2}, - [3004] = {.lex_state = 96, .external_lex_state = 2}, - [3005] = {.lex_state = 15, .external_lex_state = 5}, - [3006] = {.lex_state = 96, .external_lex_state = 2}, - [3007] = {.lex_state = 96, .external_lex_state = 2}, - [3008] = {.lex_state = 96, .external_lex_state = 2}, - [3009] = {.lex_state = 15, .external_lex_state = 5}, - [3010] = {.lex_state = 96, .external_lex_state = 2}, - [3011] = {.lex_state = 15, .external_lex_state = 5}, - [3012] = {.lex_state = 96, .external_lex_state = 2}, - [3013] = {.lex_state = 96, .external_lex_state = 2}, - [3014] = {.lex_state = 96, .external_lex_state = 2}, - [3015] = {.lex_state = 96, .external_lex_state = 2}, - [3016] = {.lex_state = 13, .external_lex_state = 5}, - [3017] = {.lex_state = 12, .external_lex_state = 5}, - [3018] = {.lex_state = 12, .external_lex_state = 5}, - [3019] = {.lex_state = 12, .external_lex_state = 5}, - [3020] = {.lex_state = 12, .external_lex_state = 5}, - [3021] = {.lex_state = 12, .external_lex_state = 5}, - [3022] = {.lex_state = 12, .external_lex_state = 5}, - [3023] = {.lex_state = 12, .external_lex_state = 5}, - [3024] = {.lex_state = 96, .external_lex_state = 2}, - [3025] = {.lex_state = 96, .external_lex_state = 2}, - [3026] = {.lex_state = 12, .external_lex_state = 5}, - [3027] = {.lex_state = 12, .external_lex_state = 5}, - [3028] = {.lex_state = 96, .external_lex_state = 2}, - [3029] = {.lex_state = 12, .external_lex_state = 5}, - [3030] = {.lex_state = 12, .external_lex_state = 5}, - [3031] = {.lex_state = 12, .external_lex_state = 5}, - [3032] = {.lex_state = 96, .external_lex_state = 5}, - [3033] = {.lex_state = 12, .external_lex_state = 5}, - [3034] = {.lex_state = 12, .external_lex_state = 5}, - [3035] = {.lex_state = 12, .external_lex_state = 5}, - [3036] = {.lex_state = 96, .external_lex_state = 2}, - [3037] = {.lex_state = 12, .external_lex_state = 5}, - [3038] = {.lex_state = 12, .external_lex_state = 5}, - [3039] = {.lex_state = 12, .external_lex_state = 5}, - [3040] = {.lex_state = 96, .external_lex_state = 2}, - [3041] = {.lex_state = 12, .external_lex_state = 5}, - [3042] = {.lex_state = 12, .external_lex_state = 5}, - [3043] = {.lex_state = 12, .external_lex_state = 5}, - [3044] = {.lex_state = 12, .external_lex_state = 5}, - [3045] = {.lex_state = 12, .external_lex_state = 5}, - [3046] = {.lex_state = 12, .external_lex_state = 5}, - [3047] = {.lex_state = 12, .external_lex_state = 5}, - [3048] = {.lex_state = 12, .external_lex_state = 5}, - [3049] = {.lex_state = 12, .external_lex_state = 5}, - [3050] = {.lex_state = 96, .external_lex_state = 2}, - [3051] = {.lex_state = 12, .external_lex_state = 5}, - [3052] = {.lex_state = 96, .external_lex_state = 2}, - [3053] = {.lex_state = 96, .external_lex_state = 2}, - [3054] = {.lex_state = 96, .external_lex_state = 2}, - [3055] = {.lex_state = 13, .external_lex_state = 6}, - [3056] = {.lex_state = 14, .external_lex_state = 5}, - [3057] = {.lex_state = 14, .external_lex_state = 5}, - [3058] = {.lex_state = 14, .external_lex_state = 5}, - [3059] = {.lex_state = 12, .external_lex_state = 5}, - [3060] = {.lex_state = 13, .external_lex_state = 5}, - [3061] = {.lex_state = 96, .external_lex_state = 5}, - [3062] = {.lex_state = 96, .external_lex_state = 5}, - [3063] = {.lex_state = 13, .external_lex_state = 5}, - [3064] = {.lex_state = 96, .external_lex_state = 5}, - [3065] = {.lex_state = 96, .external_lex_state = 5}, - [3066] = {.lex_state = 96, .external_lex_state = 5}, - [3067] = {.lex_state = 96, .external_lex_state = 5}, - [3068] = {.lex_state = 12, .external_lex_state = 5}, - [3069] = {.lex_state = 12, .external_lex_state = 5}, - [3070] = {.lex_state = 96, .external_lex_state = 2}, - [3071] = {.lex_state = 14, .external_lex_state = 5}, - [3072] = {.lex_state = 96, .external_lex_state = 2}, - [3073] = {.lex_state = 12, .external_lex_state = 5}, - [3074] = {.lex_state = 96, .external_lex_state = 2}, - [3075] = {.lex_state = 96, .external_lex_state = 2}, - [3076] = {.lex_state = 14, .external_lex_state = 5}, + [2704] = {.lex_state = 12, .external_lex_state = 5}, + [2705] = {.lex_state = 12, .external_lex_state = 5}, + [2706] = {.lex_state = 12, .external_lex_state = 5}, + [2707] = {.lex_state = 12, .external_lex_state = 5}, + [2708] = {.lex_state = 12, .external_lex_state = 5}, + [2709] = {.lex_state = 12, .external_lex_state = 5}, + [2710] = {.lex_state = 12, .external_lex_state = 5}, + [2711] = {.lex_state = 12, .external_lex_state = 5}, + [2712] = {.lex_state = 12, .external_lex_state = 5}, + [2713] = {.lex_state = 12, .external_lex_state = 5}, + [2714] = {.lex_state = 12, .external_lex_state = 5}, + [2715] = {.lex_state = 12, .external_lex_state = 5}, + [2716] = {.lex_state = 12, .external_lex_state = 5}, + [2717] = {.lex_state = 12, .external_lex_state = 5}, + [2718] = {.lex_state = 12, .external_lex_state = 5}, + [2719] = {.lex_state = 12, .external_lex_state = 5}, + [2720] = {.lex_state = 12, .external_lex_state = 5}, + [2721] = {.lex_state = 12, .external_lex_state = 5}, + [2722] = {.lex_state = 12, .external_lex_state = 5}, + [2723] = {.lex_state = 12, .external_lex_state = 5}, + [2724] = {.lex_state = 12, .external_lex_state = 5}, + [2725] = {.lex_state = 12, .external_lex_state = 5}, + [2726] = {.lex_state = 12, .external_lex_state = 5}, + [2727] = {.lex_state = 12, .external_lex_state = 5}, + [2728] = {.lex_state = 12, .external_lex_state = 5}, + [2729] = {.lex_state = 12, .external_lex_state = 5}, + [2730] = {.lex_state = 12, .external_lex_state = 5}, + [2731] = {.lex_state = 12, .external_lex_state = 5}, + [2732] = {.lex_state = 12, .external_lex_state = 5}, + [2733] = {.lex_state = 12, .external_lex_state = 5}, + [2734] = {.lex_state = 12, .external_lex_state = 5}, + [2735] = {.lex_state = 12, .external_lex_state = 5}, + [2736] = {.lex_state = 12, .external_lex_state = 5}, + [2737] = {.lex_state = 12, .external_lex_state = 5}, + [2738] = {.lex_state = 12, .external_lex_state = 5}, + [2739] = {.lex_state = 12, .external_lex_state = 5}, + [2740] = {.lex_state = 12, .external_lex_state = 5}, + [2741] = {.lex_state = 12, .external_lex_state = 5}, + [2742] = {.lex_state = 12, .external_lex_state = 5}, + [2743] = {.lex_state = 12, .external_lex_state = 5}, + [2744] = {.lex_state = 12, .external_lex_state = 5}, + [2745] = {.lex_state = 12, .external_lex_state = 5}, + [2746] = {.lex_state = 12, .external_lex_state = 5}, + [2747] = {.lex_state = 12, .external_lex_state = 5}, + [2748] = {.lex_state = 7, .external_lex_state = 3}, + [2749] = {.lex_state = 12, .external_lex_state = 5}, + [2750] = {.lex_state = 12, .external_lex_state = 5}, + [2751] = {.lex_state = 12, .external_lex_state = 5}, + [2752] = {.lex_state = 12, .external_lex_state = 5}, + [2753] = {.lex_state = 12, .external_lex_state = 5}, + [2754] = {.lex_state = 12, .external_lex_state = 5}, + [2755] = {.lex_state = 12, .external_lex_state = 5}, + [2756] = {.lex_state = 12, .external_lex_state = 5}, + [2757] = {.lex_state = 12, .external_lex_state = 5}, + [2758] = {.lex_state = 12, .external_lex_state = 5}, + [2759] = {.lex_state = 12, .external_lex_state = 5}, + [2760] = {.lex_state = 12, .external_lex_state = 5}, + [2761] = {.lex_state = 12, .external_lex_state = 5}, + [2762] = {.lex_state = 12, .external_lex_state = 5}, + [2763] = {.lex_state = 12, .external_lex_state = 5}, + [2764] = {.lex_state = 12, .external_lex_state = 5}, + [2765] = {.lex_state = 12, .external_lex_state = 5}, + [2766] = {.lex_state = 12, .external_lex_state = 5}, + [2767] = {.lex_state = 12, .external_lex_state = 5}, + [2768] = {.lex_state = 12, .external_lex_state = 5}, + [2769] = {.lex_state = 7, .external_lex_state = 3}, + [2770] = {.lex_state = 12, .external_lex_state = 5}, + [2771] = {.lex_state = 12, .external_lex_state = 5}, + [2772] = {.lex_state = 12, .external_lex_state = 5}, + [2773] = {.lex_state = 12, .external_lex_state = 5}, + [2774] = {.lex_state = 12, .external_lex_state = 5}, + [2775] = {.lex_state = 12, .external_lex_state = 5}, + [2776] = {.lex_state = 12, .external_lex_state = 5}, + [2777] = {.lex_state = 12, .external_lex_state = 5}, + [2778] = {.lex_state = 12, .external_lex_state = 5}, + [2779] = {.lex_state = 12, .external_lex_state = 5}, + [2780] = {.lex_state = 12, .external_lex_state = 5}, + [2781] = {.lex_state = 12, .external_lex_state = 5}, + [2782] = {.lex_state = 12, .external_lex_state = 5}, + [2783] = {.lex_state = 12, .external_lex_state = 5}, + [2784] = {.lex_state = 12, .external_lex_state = 5}, + [2785] = {.lex_state = 12, .external_lex_state = 5}, + [2786] = {.lex_state = 12, .external_lex_state = 5}, + [2787] = {.lex_state = 12, .external_lex_state = 5}, + [2788] = {.lex_state = 12, .external_lex_state = 5}, + [2789] = {.lex_state = 12, .external_lex_state = 5}, + [2790] = {.lex_state = 12, .external_lex_state = 5}, + [2791] = {.lex_state = 12, .external_lex_state = 5}, + [2792] = {.lex_state = 12, .external_lex_state = 5}, + [2793] = {.lex_state = 12, .external_lex_state = 5}, + [2794] = {.lex_state = 12, .external_lex_state = 5}, + [2795] = {.lex_state = 12, .external_lex_state = 5}, + [2796] = {.lex_state = 12, .external_lex_state = 5}, + [2797] = {.lex_state = 7, .external_lex_state = 3}, + [2798] = {.lex_state = 95, .external_lex_state = 2}, + [2799] = {.lex_state = 7, .external_lex_state = 3}, + [2800] = {.lex_state = 12, .external_lex_state = 5}, + [2801] = {.lex_state = 12, .external_lex_state = 5}, + [2802] = {.lex_state = 12, .external_lex_state = 5}, + [2803] = {.lex_state = 12, .external_lex_state = 5}, + [2804] = {.lex_state = 12, .external_lex_state = 5}, + [2805] = {.lex_state = 12, .external_lex_state = 5}, + [2806] = {.lex_state = 12, .external_lex_state = 5}, + [2807] = {.lex_state = 12, .external_lex_state = 5}, + [2808] = {.lex_state = 12, .external_lex_state = 5}, + [2809] = {.lex_state = 12, .external_lex_state = 5}, + [2810] = {.lex_state = 12, .external_lex_state = 5}, + [2811] = {.lex_state = 12, .external_lex_state = 5}, + [2812] = {.lex_state = 12, .external_lex_state = 5}, + [2813] = {.lex_state = 12, .external_lex_state = 5}, + [2814] = {.lex_state = 12, .external_lex_state = 5}, + [2815] = {.lex_state = 12, .external_lex_state = 5}, + [2816] = {.lex_state = 12, .external_lex_state = 5}, + [2817] = {.lex_state = 7, .external_lex_state = 3}, + [2818] = {.lex_state = 12, .external_lex_state = 5}, + [2819] = {.lex_state = 12, .external_lex_state = 5}, + [2820] = {.lex_state = 12, .external_lex_state = 5}, + [2821] = {.lex_state = 12, .external_lex_state = 5}, + [2822] = {.lex_state = 12, .external_lex_state = 2}, + [2823] = {.lex_state = 12, .external_lex_state = 5}, + [2824] = {.lex_state = 12, .external_lex_state = 5}, + [2825] = {.lex_state = 12, .external_lex_state = 5}, + [2826] = {.lex_state = 12, .external_lex_state = 5}, + [2827] = {.lex_state = 12, .external_lex_state = 5}, + [2828] = {.lex_state = 12, .external_lex_state = 5}, + [2829] = {.lex_state = 12, .external_lex_state = 5}, + [2830] = {.lex_state = 12, .external_lex_state = 5}, + [2831] = {.lex_state = 12, .external_lex_state = 5}, + [2832] = {.lex_state = 12, .external_lex_state = 5}, + [2833] = {.lex_state = 12, .external_lex_state = 5}, + [2834] = {.lex_state = 12, .external_lex_state = 5}, + [2835] = {.lex_state = 12, .external_lex_state = 5}, + [2836] = {.lex_state = 7, .external_lex_state = 3}, + [2837] = {.lex_state = 12, .external_lex_state = 5}, + [2838] = {.lex_state = 12, .external_lex_state = 5}, + [2839] = {.lex_state = 12, .external_lex_state = 5}, + [2840] = {.lex_state = 12, .external_lex_state = 5}, + [2841] = {.lex_state = 12, .external_lex_state = 5}, + [2842] = {.lex_state = 12, .external_lex_state = 5}, + [2843] = {.lex_state = 12, .external_lex_state = 5}, + [2844] = {.lex_state = 12, .external_lex_state = 5}, + [2845] = {.lex_state = 12, .external_lex_state = 5}, + [2846] = {.lex_state = 12, .external_lex_state = 5}, + [2847] = {.lex_state = 12, .external_lex_state = 5}, + [2848] = {.lex_state = 12, .external_lex_state = 5}, + [2849] = {.lex_state = 12, .external_lex_state = 5}, + [2850] = {.lex_state = 12, .external_lex_state = 5}, + [2851] = {.lex_state = 12, .external_lex_state = 5}, + [2852] = {.lex_state = 12, .external_lex_state = 5}, + [2853] = {.lex_state = 7, .external_lex_state = 3}, + [2854] = {.lex_state = 12, .external_lex_state = 5}, + [2855] = {.lex_state = 12, .external_lex_state = 5}, + [2856] = {.lex_state = 12, .external_lex_state = 5}, + [2857] = {.lex_state = 12, .external_lex_state = 5}, + [2858] = {.lex_state = 12, .external_lex_state = 5}, + [2859] = {.lex_state = 12, .external_lex_state = 5}, + [2860] = {.lex_state = 12, .external_lex_state = 5}, + [2861] = {.lex_state = 12, .external_lex_state = 5}, + [2862] = {.lex_state = 7, .external_lex_state = 3}, + [2863] = {.lex_state = 12, .external_lex_state = 5}, + [2864] = {.lex_state = 12, .external_lex_state = 5}, + [2865] = {.lex_state = 12, .external_lex_state = 5}, + [2866] = {.lex_state = 12, .external_lex_state = 5}, + [2867] = {.lex_state = 95, .external_lex_state = 2}, + [2868] = {.lex_state = 12, .external_lex_state = 5}, + [2869] = {.lex_state = 12, .external_lex_state = 5}, + [2870] = {.lex_state = 12, .external_lex_state = 5}, + [2871] = {.lex_state = 12, .external_lex_state = 5}, + [2872] = {.lex_state = 12, .external_lex_state = 5}, + [2873] = {.lex_state = 12, .external_lex_state = 5}, + [2874] = {.lex_state = 12, .external_lex_state = 5}, + [2875] = {.lex_state = 12, .external_lex_state = 5}, + [2876] = {.lex_state = 12, .external_lex_state = 5}, + [2877] = {.lex_state = 12, .external_lex_state = 5}, + [2878] = {.lex_state = 12, .external_lex_state = 5}, + [2879] = {.lex_state = 12, .external_lex_state = 5}, + [2880] = {.lex_state = 12, .external_lex_state = 5}, + [2881] = {.lex_state = 12, .external_lex_state = 5}, + [2882] = {.lex_state = 12, .external_lex_state = 5}, + [2883] = {.lex_state = 12, .external_lex_state = 5}, + [2884] = {.lex_state = 12, .external_lex_state = 5}, + [2885] = {.lex_state = 12, .external_lex_state = 5}, + [2886] = {.lex_state = 12, .external_lex_state = 5}, + [2887] = {.lex_state = 12, .external_lex_state = 5}, + [2888] = {.lex_state = 12, .external_lex_state = 5}, + [2889] = {.lex_state = 12, .external_lex_state = 5}, + [2890] = {.lex_state = 12, .external_lex_state = 5}, + [2891] = {.lex_state = 12, .external_lex_state = 5}, + [2892] = {.lex_state = 12, .external_lex_state = 5}, + [2893] = {.lex_state = 12, .external_lex_state = 5}, + [2894] = {.lex_state = 12, .external_lex_state = 5}, + [2895] = {.lex_state = 12, .external_lex_state = 5}, + [2896] = {.lex_state = 12, .external_lex_state = 5}, + [2897] = {.lex_state = 7, .external_lex_state = 3}, + [2898] = {.lex_state = 12, .external_lex_state = 5}, + [2899] = {.lex_state = 12, .external_lex_state = 5}, + [2900] = {.lex_state = 12, .external_lex_state = 5}, + [2901] = {.lex_state = 12, .external_lex_state = 5}, + [2902] = {.lex_state = 12, .external_lex_state = 5}, + [2903] = {.lex_state = 12, .external_lex_state = 5}, + [2904] = {.lex_state = 12, .external_lex_state = 5}, + [2905] = {.lex_state = 12, .external_lex_state = 5}, + [2906] = {.lex_state = 12, .external_lex_state = 5}, + [2907] = {.lex_state = 12, .external_lex_state = 5}, + [2908] = {.lex_state = 12, .external_lex_state = 5}, + [2909] = {.lex_state = 12, .external_lex_state = 5}, + [2910] = {.lex_state = 12, .external_lex_state = 5}, + [2911] = {.lex_state = 12, .external_lex_state = 5}, + [2912] = {.lex_state = 12, .external_lex_state = 5}, + [2913] = {.lex_state = 12, .external_lex_state = 5}, + [2914] = {.lex_state = 12, .external_lex_state = 5}, + [2915] = {.lex_state = 12, .external_lex_state = 5}, + [2916] = {.lex_state = 12, .external_lex_state = 5}, + [2917] = {.lex_state = 12, .external_lex_state = 5}, + [2918] = {.lex_state = 12, .external_lex_state = 5}, + [2919] = {.lex_state = 12, .external_lex_state = 5}, + [2920] = {.lex_state = 12, .external_lex_state = 5}, + [2921] = {.lex_state = 12, .external_lex_state = 5}, + [2922] = {.lex_state = 12, .external_lex_state = 5}, + [2923] = {.lex_state = 12, .external_lex_state = 5}, + [2924] = {.lex_state = 12, .external_lex_state = 5}, + [2925] = {.lex_state = 12, .external_lex_state = 5}, + [2926] = {.lex_state = 12, .external_lex_state = 5}, + [2927] = {.lex_state = 7, .external_lex_state = 3}, + [2928] = {.lex_state = 12, .external_lex_state = 5}, + [2929] = {.lex_state = 12, .external_lex_state = 5}, + [2930] = {.lex_state = 12, .external_lex_state = 5}, + [2931] = {.lex_state = 12, .external_lex_state = 5}, + [2932] = {.lex_state = 12, .external_lex_state = 5}, + [2933] = {.lex_state = 12, .external_lex_state = 5}, + [2934] = {.lex_state = 12, .external_lex_state = 5}, + [2935] = {.lex_state = 12, .external_lex_state = 5}, + [2936] = {.lex_state = 12, .external_lex_state = 5}, + [2937] = {.lex_state = 12, .external_lex_state = 5}, + [2938] = {.lex_state = 12, .external_lex_state = 5}, + [2939] = {.lex_state = 12, .external_lex_state = 5}, + [2940] = {.lex_state = 12, .external_lex_state = 5}, + [2941] = {.lex_state = 12, .external_lex_state = 5}, + [2942] = {.lex_state = 12, .external_lex_state = 5}, + [2943] = {.lex_state = 12, .external_lex_state = 5}, + [2944] = {.lex_state = 12, .external_lex_state = 5}, + [2945] = {.lex_state = 12, .external_lex_state = 5}, + [2946] = {.lex_state = 12, .external_lex_state = 5}, + [2947] = {.lex_state = 12, .external_lex_state = 5}, + [2948] = {.lex_state = 12, .external_lex_state = 5}, + [2949] = {.lex_state = 12, .external_lex_state = 5}, + [2950] = {.lex_state = 12, .external_lex_state = 5}, + [2951] = {.lex_state = 12, .external_lex_state = 5}, + [2952] = {.lex_state = 12, .external_lex_state = 5}, + [2953] = {.lex_state = 12, .external_lex_state = 5}, + [2954] = {.lex_state = 12, .external_lex_state = 5}, + [2955] = {.lex_state = 12, .external_lex_state = 5}, + [2956] = {.lex_state = 12, .external_lex_state = 5}, + [2957] = {.lex_state = 12, .external_lex_state = 5}, + [2958] = {.lex_state = 12, .external_lex_state = 2}, + [2959] = {.lex_state = 12, .external_lex_state = 2}, + [2960] = {.lex_state = 12, .external_lex_state = 2}, + [2961] = {.lex_state = 12, .external_lex_state = 2}, + [2962] = {.lex_state = 12, .external_lex_state = 2}, + [2963] = {.lex_state = 12, .external_lex_state = 2}, + [2964] = {.lex_state = 12, .external_lex_state = 2}, + [2965] = {.lex_state = 12, .external_lex_state = 2}, + [2966] = {.lex_state = 12, .external_lex_state = 2}, + [2967] = {.lex_state = 12, .external_lex_state = 2}, + [2968] = {.lex_state = 12, .external_lex_state = 2}, + [2969] = {.lex_state = 12, .external_lex_state = 2}, + [2970] = {.lex_state = 12, .external_lex_state = 2}, + [2971] = {.lex_state = 12, .external_lex_state = 2}, + [2972] = {.lex_state = 95, .external_lex_state = 2}, + [2973] = {.lex_state = 12, .external_lex_state = 2}, + [2974] = {.lex_state = 12, .external_lex_state = 2}, + [2975] = {.lex_state = 12, .external_lex_state = 2}, + [2976] = {.lex_state = 12, .external_lex_state = 2}, + [2977] = {.lex_state = 12, .external_lex_state = 2}, + [2978] = {.lex_state = 12, .external_lex_state = 2}, + [2979] = {.lex_state = 12, .external_lex_state = 2}, + [2980] = {.lex_state = 12, .external_lex_state = 2}, + [2981] = {.lex_state = 12, .external_lex_state = 2}, + [2982] = {.lex_state = 12, .external_lex_state = 2}, + [2983] = {.lex_state = 95, .external_lex_state = 2}, + [2984] = {.lex_state = 12, .external_lex_state = 2}, + [2985] = {.lex_state = 12, .external_lex_state = 2}, + [2986] = {.lex_state = 12, .external_lex_state = 2}, + [2987] = {.lex_state = 12, .external_lex_state = 2}, + [2988] = {.lex_state = 12, .external_lex_state = 2}, + [2989] = {.lex_state = 12, .external_lex_state = 2}, + [2990] = {.lex_state = 12, .external_lex_state = 2}, + [2991] = {.lex_state = 12, .external_lex_state = 2}, + [2992] = {.lex_state = 12, .external_lex_state = 2}, + [2993] = {.lex_state = 12, .external_lex_state = 2}, + [2994] = {.lex_state = 12, .external_lex_state = 2}, + [2995] = {.lex_state = 12, .external_lex_state = 2}, + [2996] = {.lex_state = 12, .external_lex_state = 2}, + [2997] = {.lex_state = 12, .external_lex_state = 2}, + [2998] = {.lex_state = 12, .external_lex_state = 2}, + [2999] = {.lex_state = 12, .external_lex_state = 2}, + [3000] = {.lex_state = 12, .external_lex_state = 2}, + [3001] = {.lex_state = 12, .external_lex_state = 2}, + [3002] = {.lex_state = 12, .external_lex_state = 2}, + [3003] = {.lex_state = 12, .external_lex_state = 2}, + [3004] = {.lex_state = 12, .external_lex_state = 2}, + [3005] = {.lex_state = 12, .external_lex_state = 2}, + [3006] = {.lex_state = 95, .external_lex_state = 2}, + [3007] = {.lex_state = 12, .external_lex_state = 2}, + [3008] = {.lex_state = 12, .external_lex_state = 2}, + [3009] = {.lex_state = 12, .external_lex_state = 2}, + [3010] = {.lex_state = 12, .external_lex_state = 2}, + [3011] = {.lex_state = 12, .external_lex_state = 2}, + [3012] = {.lex_state = 12, .external_lex_state = 2}, + [3013] = {.lex_state = 12, .external_lex_state = 2}, + [3014] = {.lex_state = 12, .external_lex_state = 2}, + [3015] = {.lex_state = 12, .external_lex_state = 2}, + [3016] = {.lex_state = 12, .external_lex_state = 2}, + [3017] = {.lex_state = 12, .external_lex_state = 2}, + [3018] = {.lex_state = 12, .external_lex_state = 2}, + [3019] = {.lex_state = 12, .external_lex_state = 2}, + [3020] = {.lex_state = 12, .external_lex_state = 2}, + [3021] = {.lex_state = 12, .external_lex_state = 2}, + [3022] = {.lex_state = 12, .external_lex_state = 2}, + [3023] = {.lex_state = 12, .external_lex_state = 2}, + [3024] = {.lex_state = 12, .external_lex_state = 2}, + [3025] = {.lex_state = 12, .external_lex_state = 2}, + [3026] = {.lex_state = 12, .external_lex_state = 2}, + [3027] = {.lex_state = 12, .external_lex_state = 2}, + [3028] = {.lex_state = 12, .external_lex_state = 2}, + [3029] = {.lex_state = 12, .external_lex_state = 2}, + [3030] = {.lex_state = 12, .external_lex_state = 2}, + [3031] = {.lex_state = 12, .external_lex_state = 2}, + [3032] = {.lex_state = 12, .external_lex_state = 2}, + [3033] = {.lex_state = 12, .external_lex_state = 2}, + [3034] = {.lex_state = 12, .external_lex_state = 2}, + [3035] = {.lex_state = 95, .external_lex_state = 2}, + [3036] = {.lex_state = 12, .external_lex_state = 2}, + [3037] = {.lex_state = 12, .external_lex_state = 2}, + [3038] = {.lex_state = 12, .external_lex_state = 2}, + [3039] = {.lex_state = 12, .external_lex_state = 2}, + [3040] = {.lex_state = 12, .external_lex_state = 2}, + [3041] = {.lex_state = 12, .external_lex_state = 2}, + [3042] = {.lex_state = 12, .external_lex_state = 2}, + [3043] = {.lex_state = 12, .external_lex_state = 2}, + [3044] = {.lex_state = 12, .external_lex_state = 2}, + [3045] = {.lex_state = 12, .external_lex_state = 2}, + [3046] = {.lex_state = 12, .external_lex_state = 2}, + [3047] = {.lex_state = 12, .external_lex_state = 2}, + [3048] = {.lex_state = 12, .external_lex_state = 2}, + [3049] = {.lex_state = 12, .external_lex_state = 2}, + [3050] = {.lex_state = 12, .external_lex_state = 2}, + [3051] = {.lex_state = 12, .external_lex_state = 2}, + [3052] = {.lex_state = 12, .external_lex_state = 2}, + [3053] = {.lex_state = 12, .external_lex_state = 2}, + [3054] = {.lex_state = 12, .external_lex_state = 2}, + [3055] = {.lex_state = 12, .external_lex_state = 2}, + [3056] = {.lex_state = 12, .external_lex_state = 2}, + [3057] = {.lex_state = 12, .external_lex_state = 2}, + [3058] = {.lex_state = 12, .external_lex_state = 2}, + [3059] = {.lex_state = 12, .external_lex_state = 2}, + [3060] = {.lex_state = 12, .external_lex_state = 2}, + [3061] = {.lex_state = 12, .external_lex_state = 2}, + [3062] = {.lex_state = 12, .external_lex_state = 2}, + [3063] = {.lex_state = 12, .external_lex_state = 2}, + [3064] = {.lex_state = 12, .external_lex_state = 2}, + [3065] = {.lex_state = 12, .external_lex_state = 2}, + [3066] = {.lex_state = 12, .external_lex_state = 2}, + [3067] = {.lex_state = 12, .external_lex_state = 2}, + [3068] = {.lex_state = 12, .external_lex_state = 2}, + [3069] = {.lex_state = 12, .external_lex_state = 2}, + [3070] = {.lex_state = 12, .external_lex_state = 2}, + [3071] = {.lex_state = 12, .external_lex_state = 2}, + [3072] = {.lex_state = 12, .external_lex_state = 2}, + [3073] = {.lex_state = 12, .external_lex_state = 2}, + [3074] = {.lex_state = 12, .external_lex_state = 2}, + [3075] = {.lex_state = 12, .external_lex_state = 2}, + [3076] = {.lex_state = 12, .external_lex_state = 2}, [3077] = {.lex_state = 12, .external_lex_state = 2}, - [3078] = {.lex_state = 12, .external_lex_state = 5}, - [3079] = {.lex_state = 96, .external_lex_state = 2}, - [3080] = {.lex_state = 12, .external_lex_state = 5}, - [3081] = {.lex_state = 96, .external_lex_state = 5}, - [3082] = {.lex_state = 96, .external_lex_state = 2}, - [3083] = {.lex_state = 96, .external_lex_state = 2}, - [3084] = {.lex_state = 96, .external_lex_state = 5}, - [3085] = {.lex_state = 14, .external_lex_state = 5}, - [3086] = {.lex_state = 96, .external_lex_state = 2}, - [3087] = {.lex_state = 96, .external_lex_state = 2}, - [3088] = {.lex_state = 96, .external_lex_state = 5}, - [3089] = {.lex_state = 14, .external_lex_state = 5}, - [3090] = {.lex_state = 96, .external_lex_state = 5}, - [3091] = {.lex_state = 14, .external_lex_state = 5}, - [3092] = {.lex_state = 12, .external_lex_state = 5}, - [3093] = {.lex_state = 12, .external_lex_state = 5}, - [3094] = {.lex_state = 13, .external_lex_state = 5}, - [3095] = {.lex_state = 15, .external_lex_state = 6}, - [3096] = {.lex_state = 15, .external_lex_state = 6}, - [3097] = {.lex_state = 15, .external_lex_state = 6}, - [3098] = {.lex_state = 15, .external_lex_state = 6}, - [3099] = {.lex_state = 15, .external_lex_state = 6}, - [3100] = {.lex_state = 15, .external_lex_state = 6}, - [3101] = {.lex_state = 15, .external_lex_state = 6}, - [3102] = {.lex_state = 15, .external_lex_state = 6}, - [3103] = {.lex_state = 15, .external_lex_state = 6}, - [3104] = {.lex_state = 15, .external_lex_state = 6}, - [3105] = {.lex_state = 15, .external_lex_state = 6}, - [3106] = {.lex_state = 12, .external_lex_state = 5}, - [3107] = {.lex_state = 15, .external_lex_state = 6}, - [3108] = {.lex_state = 15, .external_lex_state = 6}, - [3109] = {.lex_state = 12, .external_lex_state = 5}, - [3110] = {.lex_state = 15, .external_lex_state = 6}, - [3111] = {.lex_state = 15, .external_lex_state = 6}, - [3112] = {.lex_state = 15, .external_lex_state = 6}, - [3113] = {.lex_state = 15, .external_lex_state = 6}, - [3114] = {.lex_state = 15, .external_lex_state = 6}, - [3115] = {.lex_state = 15, .external_lex_state = 6}, - [3116] = {.lex_state = 15, .external_lex_state = 6}, - [3117] = {.lex_state = 15, .external_lex_state = 6}, - [3118] = {.lex_state = 15, .external_lex_state = 6}, - [3119] = {.lex_state = 15, .external_lex_state = 6}, - [3120] = {.lex_state = 15, .external_lex_state = 6}, - [3121] = {.lex_state = 15, .external_lex_state = 6}, - [3122] = {.lex_state = 15, .external_lex_state = 6}, - [3123] = {.lex_state = 15, .external_lex_state = 6}, - [3124] = {.lex_state = 15, .external_lex_state = 6}, - [3125] = {.lex_state = 15, .external_lex_state = 6}, - [3126] = {.lex_state = 15, .external_lex_state = 6}, - [3127] = {.lex_state = 15, .external_lex_state = 6}, - [3128] = {.lex_state = 15, .external_lex_state = 6}, - [3129] = {.lex_state = 15, .external_lex_state = 6}, - [3130] = {.lex_state = 15, .external_lex_state = 6}, - [3131] = {.lex_state = 12, .external_lex_state = 5}, - [3132] = {.lex_state = 96, .external_lex_state = 5}, - [3133] = {.lex_state = 12, .external_lex_state = 5}, - [3134] = {.lex_state = 12, .external_lex_state = 2}, - [3135] = {.lex_state = 12, .external_lex_state = 5}, - [3136] = {.lex_state = 12, .external_lex_state = 5}, - [3137] = {.lex_state = 96, .external_lex_state = 5}, - [3138] = {.lex_state = 12, .external_lex_state = 5}, - [3139] = {.lex_state = 12, .external_lex_state = 5}, - [3140] = {.lex_state = 12, .external_lex_state = 5}, - [3141] = {.lex_state = 12, .external_lex_state = 5}, - [3142] = {.lex_state = 12, .external_lex_state = 5}, - [3143] = {.lex_state = 96, .external_lex_state = 2}, - [3144] = {.lex_state = 96, .external_lex_state = 5}, - [3145] = {.lex_state = 12, .external_lex_state = 5}, - [3146] = {.lex_state = 12, .external_lex_state = 5}, - [3147] = {.lex_state = 12, .external_lex_state = 5}, - [3148] = {.lex_state = 96, .external_lex_state = 6}, - [3149] = {.lex_state = 12, .external_lex_state = 5}, - [3150] = {.lex_state = 12, .external_lex_state = 5}, - [3151] = {.lex_state = 13, .external_lex_state = 6}, - [3152] = {.lex_state = 96, .external_lex_state = 5}, - [3153] = {.lex_state = 12, .external_lex_state = 5}, - [3154] = {.lex_state = 96, .external_lex_state = 5}, - [3155] = {.lex_state = 12, .external_lex_state = 5}, - [3156] = {.lex_state = 12, .external_lex_state = 5}, - [3157] = {.lex_state = 12, .external_lex_state = 5}, - [3158] = {.lex_state = 15, .external_lex_state = 2}, - [3159] = {.lex_state = 12, .external_lex_state = 5}, - [3160] = {.lex_state = 15, .external_lex_state = 2}, - [3161] = {.lex_state = 12, .external_lex_state = 5}, - [3162] = {.lex_state = 12, .external_lex_state = 5}, - [3163] = {.lex_state = 96, .external_lex_state = 5}, - [3164] = {.lex_state = 12, .external_lex_state = 5}, - [3165] = {.lex_state = 12, .external_lex_state = 5}, - [3166] = {.lex_state = 12, .external_lex_state = 5}, - [3167] = {.lex_state = 12, .external_lex_state = 5}, - [3168] = {.lex_state = 12, .external_lex_state = 5}, - [3169] = {.lex_state = 12, .external_lex_state = 5}, - [3170] = {.lex_state = 12, .external_lex_state = 5}, - [3171] = {.lex_state = 12, .external_lex_state = 5}, - [3172] = {.lex_state = 12, .external_lex_state = 5}, - [3173] = {.lex_state = 12, .external_lex_state = 5}, - [3174] = {.lex_state = 12, .external_lex_state = 5}, - [3175] = {.lex_state = 12, .external_lex_state = 5}, - [3176] = {.lex_state = 12, .external_lex_state = 5}, - [3177] = {.lex_state = 12, .external_lex_state = 5}, - [3178] = {.lex_state = 12, .external_lex_state = 5}, - [3179] = {.lex_state = 12, .external_lex_state = 5}, - [3180] = {.lex_state = 12, .external_lex_state = 2}, - [3181] = {.lex_state = 12, .external_lex_state = 5}, - [3182] = {.lex_state = 96, .external_lex_state = 5}, - [3183] = {.lex_state = 96, .external_lex_state = 5}, - [3184] = {.lex_state = 12, .external_lex_state = 2}, - [3185] = {.lex_state = 12, .external_lex_state = 5}, - [3186] = {.lex_state = 15, .external_lex_state = 2}, - [3187] = {.lex_state = 96, .external_lex_state = 5}, - [3188] = {.lex_state = 96, .external_lex_state = 5}, - [3189] = {.lex_state = 96, .external_lex_state = 5}, - [3190] = {.lex_state = 14, .external_lex_state = 6}, - [3191] = {.lex_state = 14, .external_lex_state = 6}, - [3192] = {.lex_state = 96, .external_lex_state = 5}, - [3193] = {.lex_state = 14, .external_lex_state = 6}, - [3194] = {.lex_state = 96, .external_lex_state = 5}, - [3195] = {.lex_state = 96, .external_lex_state = 5}, - [3196] = {.lex_state = 14, .external_lex_state = 6}, - [3197] = {.lex_state = 14, .external_lex_state = 6}, - [3198] = {.lex_state = 14, .external_lex_state = 6}, - [3199] = {.lex_state = 96, .external_lex_state = 5}, - [3200] = {.lex_state = 13, .external_lex_state = 6}, - [3201] = {.lex_state = 96, .external_lex_state = 6}, - [3202] = {.lex_state = 96, .external_lex_state = 6}, - [3203] = {.lex_state = 13, .external_lex_state = 6}, - [3204] = {.lex_state = 96, .external_lex_state = 6}, - [3205] = {.lex_state = 96, .external_lex_state = 6}, - [3206] = {.lex_state = 96, .external_lex_state = 6}, - [3207] = {.lex_state = 96, .external_lex_state = 6}, - [3208] = {.lex_state = 96, .external_lex_state = 5}, - [3209] = {.lex_state = 96, .external_lex_state = 5}, - [3210] = {.lex_state = 96, .external_lex_state = 5}, - [3211] = {.lex_state = 14, .external_lex_state = 6}, - [3212] = {.lex_state = 96, .external_lex_state = 5}, - [3213] = {.lex_state = 96, .external_lex_state = 5}, - [3214] = {.lex_state = 12, .external_lex_state = 5}, - [3215] = {.lex_state = 96, .external_lex_state = 5}, - [3216] = {.lex_state = 96, .external_lex_state = 5}, - [3217] = {.lex_state = 96, .external_lex_state = 5}, - [3218] = {.lex_state = 96, .external_lex_state = 5}, - [3219] = {.lex_state = 96, .external_lex_state = 5}, - [3220] = {.lex_state = 96, .external_lex_state = 5}, - [3221] = {.lex_state = 96, .external_lex_state = 5}, - [3222] = {.lex_state = 13, .external_lex_state = 6}, - [3223] = {.lex_state = 96, .external_lex_state = 5}, - [3224] = {.lex_state = 96, .external_lex_state = 5}, - [3225] = {.lex_state = 96, .external_lex_state = 5}, - [3226] = {.lex_state = 14, .external_lex_state = 6}, - [3227] = {.lex_state = 96, .external_lex_state = 5}, - [3228] = {.lex_state = 96, .external_lex_state = 5}, - [3229] = {.lex_state = 96, .external_lex_state = 5}, - [3230] = {.lex_state = 96, .external_lex_state = 5}, - [3231] = {.lex_state = 96, .external_lex_state = 5}, - [3232] = {.lex_state = 96, .external_lex_state = 5}, - [3233] = {.lex_state = 96, .external_lex_state = 5}, - [3234] = {.lex_state = 96, .external_lex_state = 5}, - [3235] = {.lex_state = 12, .external_lex_state = 5}, - [3236] = {.lex_state = 96, .external_lex_state = 5}, - [3237] = {.lex_state = 96, .external_lex_state = 5}, - [3238] = {.lex_state = 96, .external_lex_state = 5}, - [3239] = {.lex_state = 96, .external_lex_state = 5}, - [3240] = {.lex_state = 96, .external_lex_state = 5}, - [3241] = {.lex_state = 12, .external_lex_state = 5}, - [3242] = {.lex_state = 96, .external_lex_state = 5}, - [3243] = {.lex_state = 12, .external_lex_state = 2}, - [3244] = {.lex_state = 96, .external_lex_state = 5}, - [3245] = {.lex_state = 96, .external_lex_state = 5}, - [3246] = {.lex_state = 96, .external_lex_state = 5}, - [3247] = {.lex_state = 96, .external_lex_state = 5}, - [3248] = {.lex_state = 96, .external_lex_state = 5}, - [3249] = {.lex_state = 96, .external_lex_state = 5}, - [3250] = {.lex_state = 96, .external_lex_state = 5}, - [3251] = {.lex_state = 96, .external_lex_state = 5}, - [3252] = {.lex_state = 96, .external_lex_state = 5}, - [3253] = {.lex_state = 96, .external_lex_state = 2}, - [3254] = {.lex_state = 96, .external_lex_state = 5}, - [3255] = {.lex_state = 96, .external_lex_state = 5}, - [3256] = {.lex_state = 96, .external_lex_state = 5}, - [3257] = {.lex_state = 96, .external_lex_state = 5}, - [3258] = {.lex_state = 96, .external_lex_state = 2}, - [3259] = {.lex_state = 13, .external_lex_state = 2}, - [3260] = {.lex_state = 13, .external_lex_state = 2}, - [3261] = {.lex_state = 13, .external_lex_state = 2}, - [3262] = {.lex_state = 13, .external_lex_state = 2}, - [3263] = {.lex_state = 96, .external_lex_state = 5}, - [3264] = {.lex_state = 96, .external_lex_state = 5}, - [3265] = {.lex_state = 96, .external_lex_state = 2}, - [3266] = {.lex_state = 96, .external_lex_state = 5}, - [3267] = {.lex_state = 12, .external_lex_state = 2}, - [3268] = {.lex_state = 13, .external_lex_state = 2}, - [3269] = {.lex_state = 96, .external_lex_state = 2}, - [3270] = {.lex_state = 96, .external_lex_state = 6}, - [3271] = {.lex_state = 12, .external_lex_state = 5}, - [3272] = {.lex_state = 96, .external_lex_state = 6}, - [3273] = {.lex_state = 13, .external_lex_state = 2}, - [3274] = {.lex_state = 96, .external_lex_state = 2}, - [3275] = {.lex_state = 96, .external_lex_state = 6}, - [3276] = {.lex_state = 96, .external_lex_state = 5}, - [3277] = {.lex_state = 13, .external_lex_state = 2}, - [3278] = {.lex_state = 96, .external_lex_state = 6}, - [3279] = {.lex_state = 13, .external_lex_state = 2}, - [3280] = {.lex_state = 96, .external_lex_state = 6}, - [3281] = {.lex_state = 96, .external_lex_state = 6}, - [3282] = {.lex_state = 96, .external_lex_state = 6}, - [3283] = {.lex_state = 13, .external_lex_state = 2}, - [3284] = {.lex_state = 96, .external_lex_state = 2}, - [3285] = {.lex_state = 13, .external_lex_state = 2}, - [3286] = {.lex_state = 96, .external_lex_state = 6}, - [3287] = {.lex_state = 13, .external_lex_state = 2}, - [3288] = {.lex_state = 96, .external_lex_state = 2}, - [3289] = {.lex_state = 96, .external_lex_state = 5}, - [3290] = {.lex_state = 96, .external_lex_state = 5}, - [3291] = {.lex_state = 15, .external_lex_state = 2}, - [3292] = {.lex_state = 13, .external_lex_state = 2}, - [3293] = {.lex_state = 96, .external_lex_state = 2}, - [3294] = {.lex_state = 13, .external_lex_state = 2}, - [3295] = {.lex_state = 13, .external_lex_state = 2}, - [3296] = {.lex_state = 13, .external_lex_state = 2}, - [3297] = {.lex_state = 13, .external_lex_state = 2}, - [3298] = {.lex_state = 96, .external_lex_state = 6}, - [3299] = {.lex_state = 15, .external_lex_state = 2}, - [3300] = {.lex_state = 96, .external_lex_state = 5}, - [3301] = {.lex_state = 96, .external_lex_state = 5}, - [3302] = {.lex_state = 96, .external_lex_state = 5}, - [3303] = {.lex_state = 15, .external_lex_state = 2}, - [3304] = {.lex_state = 15, .external_lex_state = 2}, - [3305] = {.lex_state = 96, .external_lex_state = 2}, - [3306] = {.lex_state = 12, .external_lex_state = 2}, - [3307] = {.lex_state = 15, .external_lex_state = 2}, - [3308] = {.lex_state = 13, .external_lex_state = 2}, - [3309] = {.lex_state = 13, .external_lex_state = 2}, - [3310] = {.lex_state = 96, .external_lex_state = 2}, - [3311] = {.lex_state = 15, .external_lex_state = 2}, - [3312] = {.lex_state = 96, .external_lex_state = 5}, - [3313] = {.lex_state = 96, .external_lex_state = 2}, - [3314] = {.lex_state = 15, .external_lex_state = 2}, - [3315] = {.lex_state = 96, .external_lex_state = 6}, - [3316] = {.lex_state = 15, .external_lex_state = 2}, - [3317] = {.lex_state = 96, .external_lex_state = 6}, - [3318] = {.lex_state = 15, .external_lex_state = 2}, - [3319] = {.lex_state = 15, .external_lex_state = 2}, - [3320] = {.lex_state = 96, .external_lex_state = 5}, - [3321] = {.lex_state = 96, .external_lex_state = 2}, - [3322] = {.lex_state = 12, .external_lex_state = 2}, - [3323] = {.lex_state = 96, .external_lex_state = 5}, - [3324] = {.lex_state = 13, .external_lex_state = 2}, - [3325] = {.lex_state = 96, .external_lex_state = 5}, - [3326] = {.lex_state = 96, .external_lex_state = 5}, - [3327] = {.lex_state = 12, .external_lex_state = 2}, - [3328] = {.lex_state = 96, .external_lex_state = 5}, - [3329] = {.lex_state = 96, .external_lex_state = 2}, - [3330] = {.lex_state = 96, .external_lex_state = 5}, - [3331] = {.lex_state = 96, .external_lex_state = 5}, - [3332] = {.lex_state = 15, .external_lex_state = 2}, - [3333] = {.lex_state = 96, .external_lex_state = 5}, - [3334] = {.lex_state = 96, .external_lex_state = 5}, - [3335] = {.lex_state = 96, .external_lex_state = 5}, - [3336] = {.lex_state = 96, .external_lex_state = 6}, - [3337] = {.lex_state = 13, .external_lex_state = 2}, - [3338] = {.lex_state = 96, .external_lex_state = 5}, - [3339] = {.lex_state = 96, .external_lex_state = 5}, - [3340] = {.lex_state = 13, .external_lex_state = 2}, - [3341] = {.lex_state = 96, .external_lex_state = 2}, - [3342] = {.lex_state = 96, .external_lex_state = 6}, - [3343] = {.lex_state = 96, .external_lex_state = 5}, - [3344] = {.lex_state = 96, .external_lex_state = 6}, - [3345] = {.lex_state = 96, .external_lex_state = 6}, - [3346] = {.lex_state = 96, .external_lex_state = 6}, - [3347] = {.lex_state = 96, .external_lex_state = 6}, - [3348] = {.lex_state = 96, .external_lex_state = 6}, - [3349] = {.lex_state = 96, .external_lex_state = 6}, - [3350] = {.lex_state = 12, .external_lex_state = 2}, - [3351] = {.lex_state = 96, .external_lex_state = 5}, - [3352] = {.lex_state = 96, .external_lex_state = 5}, - [3353] = {.lex_state = 13, .external_lex_state = 2}, - [3354] = {.lex_state = 96, .external_lex_state = 6}, - [3355] = {.lex_state = 12, .external_lex_state = 2}, - [3356] = {.lex_state = 96, .external_lex_state = 2}, - [3357] = {.lex_state = 96, .external_lex_state = 5}, - [3358] = {.lex_state = 96, .external_lex_state = 6}, - [3359] = {.lex_state = 96, .external_lex_state = 6}, - [3360] = {.lex_state = 96, .external_lex_state = 6}, - [3361] = {.lex_state = 96, .external_lex_state = 6}, - [3362] = {.lex_state = 96, .external_lex_state = 6}, - [3363] = {.lex_state = 96, .external_lex_state = 6}, - [3364] = {.lex_state = 96, .external_lex_state = 6}, - [3365] = {.lex_state = 96, .external_lex_state = 6}, - [3366] = {.lex_state = 96, .external_lex_state = 6}, - [3367] = {.lex_state = 96, .external_lex_state = 6}, - [3368] = {.lex_state = 96, .external_lex_state = 6}, - [3369] = {.lex_state = 15, .external_lex_state = 2}, - [3370] = {.lex_state = 96, .external_lex_state = 6}, - [3371] = {.lex_state = 11, .external_lex_state = 2}, - [3372] = {.lex_state = 13, .external_lex_state = 2}, - [3373] = {.lex_state = 96, .external_lex_state = 5}, - [3374] = {.lex_state = 96, .external_lex_state = 5}, - [3375] = {.lex_state = 13, .external_lex_state = 2}, - [3376] = {.lex_state = 13, .external_lex_state = 2}, - [3377] = {.lex_state = 96, .external_lex_state = 6}, - [3378] = {.lex_state = 96, .external_lex_state = 5}, - [3379] = {.lex_state = 12, .external_lex_state = 2}, - [3380] = {.lex_state = 96, .external_lex_state = 6}, - [3381] = {.lex_state = 96, .external_lex_state = 5}, - [3382] = {.lex_state = 96, .external_lex_state = 6}, - [3383] = {.lex_state = 96, .external_lex_state = 5}, - [3384] = {.lex_state = 96, .external_lex_state = 5}, - [3385] = {.lex_state = 96, .external_lex_state = 5}, - [3386] = {.lex_state = 96, .external_lex_state = 5}, - [3387] = {.lex_state = 96, .external_lex_state = 6}, - [3388] = {.lex_state = 96, .external_lex_state = 6}, - [3389] = {.lex_state = 96, .external_lex_state = 5}, - [3390] = {.lex_state = 96, .external_lex_state = 6}, - [3391] = {.lex_state = 12, .external_lex_state = 2}, - [3392] = {.lex_state = 96, .external_lex_state = 5}, - [3393] = {.lex_state = 96, .external_lex_state = 5}, - [3394] = {.lex_state = 96, .external_lex_state = 6}, - [3395] = {.lex_state = 96, .external_lex_state = 6}, - [3396] = {.lex_state = 96, .external_lex_state = 5}, - [3397] = {.lex_state = 96, .external_lex_state = 5}, - [3398] = {.lex_state = 13, .external_lex_state = 2}, - [3399] = {.lex_state = 11, .external_lex_state = 2}, - [3400] = {.lex_state = 96, .external_lex_state = 5}, - [3401] = {.lex_state = 96, .external_lex_state = 6}, - [3402] = {.lex_state = 96, .external_lex_state = 6}, - [3403] = {.lex_state = 96, .external_lex_state = 5}, - [3404] = {.lex_state = 96, .external_lex_state = 6}, - [3405] = {.lex_state = 96, .external_lex_state = 6}, - [3406] = {.lex_state = 13, .external_lex_state = 2}, - [3407] = {.lex_state = 96, .external_lex_state = 5}, - [3408] = {.lex_state = 12, .external_lex_state = 2}, - [3409] = {.lex_state = 96, .external_lex_state = 5}, - [3410] = {.lex_state = 96, .external_lex_state = 5}, - [3411] = {.lex_state = 96, .external_lex_state = 5}, - [3412] = {.lex_state = 96, .external_lex_state = 5}, - [3413] = {.lex_state = 15, .external_lex_state = 2}, - [3414] = {.lex_state = 96, .external_lex_state = 2}, - [3415] = {.lex_state = 15, .external_lex_state = 2}, - [3416] = {.lex_state = 13, .external_lex_state = 2}, - [3417] = {.lex_state = 96, .external_lex_state = 6}, - [3418] = {.lex_state = 96, .external_lex_state = 6}, - [3419] = {.lex_state = 96, .external_lex_state = 6}, - [3420] = {.lex_state = 11, .external_lex_state = 2}, - [3421] = {.lex_state = 96, .external_lex_state = 6}, - [3422] = {.lex_state = 96, .external_lex_state = 6}, - [3423] = {.lex_state = 96, .external_lex_state = 6}, - [3424] = {.lex_state = 96, .external_lex_state = 6}, - [3425] = {.lex_state = 15, .external_lex_state = 2}, - [3426] = {.lex_state = 13, .external_lex_state = 2}, - [3427] = {.lex_state = 96, .external_lex_state = 6}, - [3428] = {.lex_state = 96, .external_lex_state = 6}, - [3429] = {.lex_state = 96, .external_lex_state = 6}, - [3430] = {.lex_state = 96, .external_lex_state = 6}, - [3431] = {.lex_state = 96, .external_lex_state = 6}, - [3432] = {.lex_state = 15, .external_lex_state = 2}, - [3433] = {.lex_state = 96, .external_lex_state = 5}, - [3434] = {.lex_state = 13, .external_lex_state = 2}, - [3435] = {.lex_state = 96, .external_lex_state = 2}, - [3436] = {.lex_state = 96, .external_lex_state = 6}, - [3437] = {.lex_state = 96, .external_lex_state = 6}, - [3438] = {.lex_state = 96, .external_lex_state = 5}, - [3439] = {.lex_state = 96, .external_lex_state = 6}, - [3440] = {.lex_state = 12, .external_lex_state = 2}, - [3441] = {.lex_state = 96, .external_lex_state = 5}, - [3442] = {.lex_state = 96, .external_lex_state = 6}, - [3443] = {.lex_state = 96, .external_lex_state = 6}, - [3444] = {.lex_state = 96, .external_lex_state = 6}, - [3445] = {.lex_state = 96, .external_lex_state = 6}, - [3446] = {.lex_state = 96, .external_lex_state = 5}, - [3447] = {.lex_state = 15, .external_lex_state = 2}, - [3448] = {.lex_state = 96, .external_lex_state = 5}, - [3449] = {.lex_state = 96, .external_lex_state = 5}, - [3450] = {.lex_state = 96, .external_lex_state = 5}, - [3451] = {.lex_state = 96, .external_lex_state = 5}, - [3452] = {.lex_state = 96, .external_lex_state = 5}, - [3453] = {.lex_state = 96, .external_lex_state = 5}, - [3454] = {.lex_state = 96, .external_lex_state = 6}, - [3455] = {.lex_state = 96, .external_lex_state = 2}, - [3456] = {.lex_state = 12, .external_lex_state = 2}, - [3457] = {.lex_state = 18, .external_lex_state = 7}, - [3458] = {.lex_state = 96, .external_lex_state = 2}, - [3459] = {.lex_state = 18, .external_lex_state = 2}, - [3460] = {.lex_state = 14, .external_lex_state = 2}, - [3461] = {.lex_state = 96, .external_lex_state = 2}, - [3462] = {.lex_state = 96, .external_lex_state = 2}, - [3463] = {.lex_state = 14, .external_lex_state = 2}, - [3464] = {.lex_state = 18, .external_lex_state = 7}, - [3465] = {.lex_state = 18, .external_lex_state = 2}, - [3466] = {.lex_state = 18, .external_lex_state = 2}, - [3467] = {.lex_state = 18, .external_lex_state = 7}, - [3468] = {.lex_state = 96, .external_lex_state = 5}, - [3469] = {.lex_state = 96, .external_lex_state = 5}, - [3470] = {.lex_state = 96, .external_lex_state = 2}, - [3471] = {.lex_state = 18, .external_lex_state = 2}, - [3472] = {.lex_state = 96, .external_lex_state = 2}, - [3473] = {.lex_state = 96, .external_lex_state = 2}, - [3474] = {.lex_state = 96, .external_lex_state = 2}, - [3475] = {.lex_state = 18, .external_lex_state = 7}, - [3476] = {.lex_state = 96, .external_lex_state = 2}, - [3477] = {.lex_state = 18, .external_lex_state = 7}, - [3478] = {.lex_state = 18, .external_lex_state = 7}, - [3479] = {.lex_state = 96, .external_lex_state = 2}, - [3480] = {.lex_state = 18, .external_lex_state = 7}, - [3481] = {.lex_state = 18, .external_lex_state = 2}, - [3482] = {.lex_state = 18, .external_lex_state = 2}, - [3483] = {.lex_state = 96, .external_lex_state = 6}, - [3484] = {.lex_state = 96, .external_lex_state = 5}, - [3485] = {.lex_state = 96, .external_lex_state = 5}, - [3486] = {.lex_state = 18, .external_lex_state = 7}, - [3487] = {.lex_state = 96, .external_lex_state = 5}, - [3488] = {.lex_state = 96, .external_lex_state = 5}, - [3489] = {.lex_state = 18, .external_lex_state = 2}, - [3490] = {.lex_state = 14, .external_lex_state = 2}, - [3491] = {.lex_state = 18, .external_lex_state = 2}, - [3492] = {.lex_state = 96, .external_lex_state = 2}, - [3493] = {.lex_state = 18, .external_lex_state = 2}, - [3494] = {.lex_state = 96, .external_lex_state = 2}, - [3495] = {.lex_state = 96, .external_lex_state = 5}, - [3496] = {.lex_state = 96, .external_lex_state = 5}, - [3497] = {.lex_state = 96, .external_lex_state = 2}, - [3498] = {.lex_state = 96, .external_lex_state = 2}, - [3499] = {.lex_state = 96, .external_lex_state = 5}, - [3500] = {.lex_state = 96, .external_lex_state = 2}, - [3501] = {.lex_state = 96, .external_lex_state = 2}, - [3502] = {.lex_state = 96, .external_lex_state = 2}, - [3503] = {.lex_state = 96, .external_lex_state = 2}, - [3504] = {.lex_state = 96, .external_lex_state = 2}, - [3505] = {.lex_state = 96, .external_lex_state = 2}, - [3506] = {.lex_state = 12, .external_lex_state = 2}, - [3507] = {.lex_state = 96, .external_lex_state = 5}, - [3508] = {.lex_state = 96, .external_lex_state = 5}, - [3509] = {.lex_state = 96, .external_lex_state = 2}, - [3510] = {.lex_state = 96, .external_lex_state = 2}, - [3511] = {.lex_state = 12, .external_lex_state = 2}, - [3512] = {.lex_state = 96, .external_lex_state = 5}, - [3513] = {.lex_state = 96, .external_lex_state = 2}, - [3514] = {.lex_state = 96, .external_lex_state = 5}, - [3515] = {.lex_state = 96, .external_lex_state = 5}, - [3516] = {.lex_state = 96, .external_lex_state = 5}, - [3517] = {.lex_state = 96, .external_lex_state = 2}, - [3518] = {.lex_state = 12, .external_lex_state = 2}, - [3519] = {.lex_state = 96, .external_lex_state = 5}, - [3520] = {.lex_state = 96, .external_lex_state = 5}, - [3521] = {.lex_state = 96, .external_lex_state = 5}, - [3522] = {.lex_state = 96, .external_lex_state = 5}, - [3523] = {.lex_state = 96, .external_lex_state = 5}, - [3524] = {.lex_state = 12, .external_lex_state = 2}, - [3525] = {.lex_state = 96, .external_lex_state = 5}, - [3526] = {.lex_state = 96, .external_lex_state = 5}, - [3527] = {.lex_state = 96, .external_lex_state = 5}, - [3528] = {.lex_state = 96, .external_lex_state = 5}, - [3529] = {.lex_state = 96, .external_lex_state = 2}, - [3530] = {.lex_state = 12, .external_lex_state = 2}, - [3531] = {.lex_state = 96, .external_lex_state = 2}, - [3532] = {.lex_state = 96, .external_lex_state = 5}, - [3533] = {.lex_state = 96, .external_lex_state = 5}, - [3534] = {.lex_state = 96, .external_lex_state = 2}, - [3535] = {.lex_state = 96, .external_lex_state = 5}, - [3536] = {.lex_state = 96, .external_lex_state = 2}, - [3537] = {.lex_state = 96, .external_lex_state = 5}, - [3538] = {.lex_state = 96, .external_lex_state = 5}, - [3539] = {.lex_state = 96, .external_lex_state = 5}, - [3540] = {.lex_state = 96, .external_lex_state = 2}, - [3541] = {.lex_state = 96, .external_lex_state = 5}, - [3542] = {.lex_state = 96, .external_lex_state = 5}, - [3543] = {.lex_state = 96, .external_lex_state = 5}, - [3544] = {.lex_state = 96, .external_lex_state = 2}, - [3545] = {.lex_state = 96, .external_lex_state = 5}, - [3546] = {.lex_state = 96, .external_lex_state = 5}, - [3547] = {.lex_state = 96, .external_lex_state = 5}, - [3548] = {.lex_state = 96, .external_lex_state = 5}, - [3549] = {.lex_state = 96, .external_lex_state = 2}, - [3550] = {.lex_state = 96, .external_lex_state = 5}, - [3551] = {.lex_state = 96, .external_lex_state = 5}, - [3552] = {.lex_state = 96, .external_lex_state = 5}, - [3553] = {.lex_state = 96, .external_lex_state = 5}, - [3554] = {.lex_state = 96, .external_lex_state = 5}, - [3555] = {.lex_state = 96, .external_lex_state = 5}, - [3556] = {.lex_state = 96, .external_lex_state = 5}, - [3557] = {.lex_state = 96, .external_lex_state = 5}, - [3558] = {.lex_state = 96, .external_lex_state = 5}, - [3559] = {.lex_state = 96, .external_lex_state = 2}, - [3560] = {.lex_state = 96, .external_lex_state = 5}, - [3561] = {.lex_state = 96, .external_lex_state = 5}, - [3562] = {.lex_state = 96, .external_lex_state = 5}, - [3563] = {.lex_state = 96, .external_lex_state = 2}, - [3564] = {.lex_state = 96, .external_lex_state = 2}, - [3565] = {.lex_state = 96, .external_lex_state = 5}, - [3566] = {.lex_state = 96, .external_lex_state = 5}, - [3567] = {.lex_state = 96, .external_lex_state = 5}, - [3568] = {.lex_state = 12, .external_lex_state = 2}, - [3569] = {.lex_state = 96, .external_lex_state = 5}, - [3570] = {.lex_state = 96, .external_lex_state = 5}, - [3571] = {.lex_state = 96, .external_lex_state = 5}, - [3572] = {.lex_state = 96, .external_lex_state = 2}, - [3573] = {.lex_state = 96, .external_lex_state = 5}, - [3574] = {.lex_state = 96, .external_lex_state = 5}, - [3575] = {.lex_state = 96, .external_lex_state = 5}, - [3576] = {.lex_state = 96, .external_lex_state = 5}, - [3577] = {.lex_state = 96, .external_lex_state = 5}, - [3578] = {.lex_state = 96, .external_lex_state = 5}, - [3579] = {.lex_state = 96, .external_lex_state = 5}, - [3580] = {.lex_state = 96, .external_lex_state = 5}, - [3581] = {.lex_state = 96, .external_lex_state = 2}, - [3582] = {.lex_state = 96, .external_lex_state = 2}, - [3583] = {.lex_state = 96, .external_lex_state = 5}, - [3584] = {.lex_state = 96, .external_lex_state = 5}, - [3585] = {.lex_state = 96, .external_lex_state = 5}, - [3586] = {.lex_state = 96, .external_lex_state = 5}, - [3587] = {.lex_state = 96, .external_lex_state = 5}, - [3588] = {.lex_state = 96, .external_lex_state = 5}, - [3589] = {.lex_state = 96, .external_lex_state = 2}, - [3590] = {.lex_state = 96, .external_lex_state = 5}, - [3591] = {.lex_state = 96, .external_lex_state = 5}, - [3592] = {.lex_state = 96, .external_lex_state = 2}, - [3593] = {.lex_state = 96, .external_lex_state = 5}, - [3594] = {.lex_state = 96, .external_lex_state = 5}, - [3595] = {.lex_state = 96, .external_lex_state = 5}, - [3596] = {.lex_state = 96, .external_lex_state = 2}, - [3597] = {.lex_state = 96, .external_lex_state = 5}, - [3598] = {.lex_state = 96, .external_lex_state = 5}, - [3599] = {.lex_state = 96, .external_lex_state = 5}, - [3600] = {.lex_state = 96, .external_lex_state = 5}, - [3601] = {.lex_state = 96, .external_lex_state = 5}, - [3602] = {.lex_state = 96, .external_lex_state = 5}, - [3603] = {.lex_state = 96, .external_lex_state = 5}, - [3604] = {.lex_state = 96, .external_lex_state = 5}, - [3605] = {.lex_state = 96, .external_lex_state = 5}, - [3606] = {.lex_state = 96, .external_lex_state = 5}, - [3607] = {.lex_state = 96, .external_lex_state = 2}, - [3608] = {.lex_state = 96, .external_lex_state = 2}, - [3609] = {.lex_state = 96, .external_lex_state = 2}, - [3610] = {.lex_state = 96, .external_lex_state = 2}, - [3611] = {.lex_state = 96, .external_lex_state = 5}, - [3612] = {.lex_state = 12, .external_lex_state = 2}, - [3613] = {.lex_state = 96, .external_lex_state = 5}, - [3614] = {.lex_state = 96, .external_lex_state = 5}, - [3615] = {.lex_state = 96, .external_lex_state = 5}, - [3616] = {.lex_state = 96, .external_lex_state = 5}, - [3617] = {.lex_state = 96, .external_lex_state = 5}, - [3618] = {.lex_state = 96, .external_lex_state = 5}, - [3619] = {.lex_state = 96, .external_lex_state = 5}, - [3620] = {.lex_state = 96, .external_lex_state = 5}, - [3621] = {.lex_state = 96, .external_lex_state = 5}, - [3622] = {.lex_state = 96, .external_lex_state = 2}, - [3623] = {.lex_state = 96, .external_lex_state = 2}, - [3624] = {.lex_state = 96, .external_lex_state = 5}, - [3625] = {.lex_state = 96, .external_lex_state = 5}, - [3626] = {.lex_state = 96, .external_lex_state = 5}, - [3627] = {.lex_state = 96, .external_lex_state = 5}, - [3628] = {.lex_state = 96, .external_lex_state = 5}, - [3629] = {.lex_state = 96, .external_lex_state = 2}, - [3630] = {.lex_state = 12, .external_lex_state = 2}, - [3631] = {.lex_state = 96, .external_lex_state = 2}, - [3632] = {.lex_state = 96, .external_lex_state = 5}, - [3633] = {.lex_state = 96, .external_lex_state = 5}, - [3634] = {.lex_state = 96, .external_lex_state = 5}, - [3635] = {.lex_state = 96, .external_lex_state = 5}, - [3636] = {.lex_state = 96, .external_lex_state = 5}, - [3637] = {.lex_state = 96, .external_lex_state = 2}, - [3638] = {.lex_state = 12, .external_lex_state = 2}, - [3639] = {.lex_state = 96, .external_lex_state = 5}, - [3640] = {.lex_state = 96, .external_lex_state = 5}, - [3641] = {.lex_state = 96, .external_lex_state = 5}, - [3642] = {.lex_state = 96, .external_lex_state = 5}, - [3643] = {.lex_state = 96, .external_lex_state = 5}, - [3644] = {.lex_state = 12, .external_lex_state = 2}, - [3645] = {.lex_state = 96, .external_lex_state = 5}, - [3646] = {.lex_state = 96, .external_lex_state = 2}, - [3647] = {.lex_state = 96, .external_lex_state = 2}, - [3648] = {.lex_state = 96, .external_lex_state = 5}, - [3649] = {.lex_state = 96, .external_lex_state = 5}, - [3650] = {.lex_state = 12, .external_lex_state = 2}, - [3651] = {.lex_state = 96, .external_lex_state = 5}, - [3652] = {.lex_state = 96, .external_lex_state = 5}, - [3653] = {.lex_state = 96, .external_lex_state = 5}, - [3654] = {.lex_state = 96, .external_lex_state = 2}, - [3655] = {.lex_state = 96, .external_lex_state = 2}, - [3656] = {.lex_state = 12, .external_lex_state = 2}, - [3657] = {.lex_state = 96, .external_lex_state = 2}, - [3658] = {.lex_state = 96, .external_lex_state = 2}, - [3659] = {.lex_state = 96, .external_lex_state = 2}, - [3660] = {.lex_state = 96, .external_lex_state = 2}, - [3661] = {.lex_state = 96, .external_lex_state = 2}, - [3662] = {.lex_state = 96, .external_lex_state = 5}, - [3663] = {.lex_state = 96, .external_lex_state = 5}, - [3664] = {.lex_state = 96, .external_lex_state = 5}, - [3665] = {.lex_state = 96, .external_lex_state = 5}, - [3666] = {.lex_state = 96, .external_lex_state = 5}, - [3667] = {.lex_state = 96, .external_lex_state = 5}, - [3668] = {.lex_state = 96, .external_lex_state = 5}, - [3669] = {.lex_state = 96, .external_lex_state = 5}, - [3670] = {.lex_state = 96, .external_lex_state = 5}, - [3671] = {.lex_state = 96, .external_lex_state = 5}, - [3672] = {.lex_state = 96, .external_lex_state = 5}, - [3673] = {.lex_state = 96, .external_lex_state = 5}, - [3674] = {.lex_state = 96, .external_lex_state = 5}, - [3675] = {.lex_state = 96, .external_lex_state = 5}, - [3676] = {.lex_state = 96, .external_lex_state = 5}, - [3677] = {.lex_state = 96, .external_lex_state = 5}, - [3678] = {.lex_state = 96, .external_lex_state = 2}, - [3679] = {.lex_state = 96, .external_lex_state = 5}, - [3680] = {.lex_state = 12, .external_lex_state = 2}, - [3681] = {.lex_state = 96, .external_lex_state = 5}, - [3682] = {.lex_state = 96, .external_lex_state = 5}, - [3683] = {.lex_state = 12, .external_lex_state = 2}, - [3684] = {.lex_state = 96, .external_lex_state = 5}, - [3685] = {.lex_state = 96, .external_lex_state = 5}, - [3686] = {.lex_state = 12, .external_lex_state = 2}, - [3687] = {.lex_state = 96, .external_lex_state = 5}, - [3688] = {.lex_state = 96, .external_lex_state = 5}, - [3689] = {.lex_state = 12, .external_lex_state = 2}, - [3690] = {.lex_state = 96, .external_lex_state = 5}, - [3691] = {.lex_state = 96, .external_lex_state = 2}, - [3692] = {.lex_state = 96, .external_lex_state = 5}, - [3693] = {.lex_state = 96, .external_lex_state = 5}, - [3694] = {.lex_state = 96, .external_lex_state = 5}, - [3695] = {.lex_state = 96, .external_lex_state = 5}, - [3696] = {.lex_state = 96, .external_lex_state = 5}, - [3697] = {.lex_state = 12, .external_lex_state = 2}, - [3698] = {.lex_state = 96, .external_lex_state = 2}, - [3699] = {.lex_state = 96, .external_lex_state = 2}, - [3700] = {.lex_state = 12, .external_lex_state = 2}, - [3701] = {.lex_state = 96, .external_lex_state = 2}, - [3702] = {.lex_state = 96, .external_lex_state = 5}, - [3703] = {.lex_state = 96, .external_lex_state = 5}, - [3704] = {.lex_state = 12, .external_lex_state = 2}, - [3705] = {.lex_state = 96, .external_lex_state = 2}, - [3706] = {.lex_state = 96, .external_lex_state = 5}, - [3707] = {.lex_state = 96, .external_lex_state = 5}, - [3708] = {.lex_state = 12, .external_lex_state = 2}, - [3709] = {.lex_state = 96, .external_lex_state = 5}, - [3710] = {.lex_state = 96, .external_lex_state = 5}, - [3711] = {.lex_state = 96, .external_lex_state = 5}, - [3712] = {.lex_state = 96, .external_lex_state = 2}, - [3713] = {.lex_state = 96, .external_lex_state = 5}, - [3714] = {.lex_state = 96, .external_lex_state = 5}, - [3715] = {.lex_state = 96, .external_lex_state = 5}, - [3716] = {.lex_state = 96, .external_lex_state = 2}, - [3717] = {.lex_state = 96, .external_lex_state = 5}, - [3718] = {.lex_state = 96, .external_lex_state = 5}, - [3719] = {.lex_state = 96, .external_lex_state = 5}, - [3720] = {.lex_state = 96, .external_lex_state = 5}, - [3721] = {.lex_state = 96, .external_lex_state = 5}, - [3722] = {.lex_state = 96, .external_lex_state = 6}, - [3723] = {.lex_state = 12, .external_lex_state = 2}, - [3724] = {.lex_state = 96, .external_lex_state = 5}, - [3725] = {.lex_state = 96, .external_lex_state = 2}, - [3726] = {.lex_state = 96, .external_lex_state = 2}, - [3727] = {.lex_state = 96, .external_lex_state = 2}, - [3728] = {.lex_state = 12, .external_lex_state = 2}, - [3729] = {.lex_state = 12, .external_lex_state = 2}, - [3730] = {.lex_state = 96, .external_lex_state = 6}, - [3731] = {.lex_state = 96, .external_lex_state = 6}, - [3732] = {.lex_state = 18, .external_lex_state = 7}, - [3733] = {.lex_state = 96, .external_lex_state = 5}, - [3734] = {.lex_state = 96, .external_lex_state = 6}, - [3735] = {.lex_state = 96, .external_lex_state = 2}, - [3736] = {.lex_state = 96, .external_lex_state = 5}, - [3737] = {.lex_state = 96, .external_lex_state = 2}, - [3738] = {.lex_state = 96, .external_lex_state = 2}, - [3739] = {.lex_state = 96, .external_lex_state = 6}, - [3740] = {.lex_state = 12, .external_lex_state = 2}, - [3741] = {.lex_state = 96, .external_lex_state = 2}, - [3742] = {.lex_state = 96, .external_lex_state = 5}, - [3743] = {.lex_state = 96, .external_lex_state = 2}, - [3744] = {.lex_state = 12, .external_lex_state = 2}, - [3745] = {.lex_state = 12, .external_lex_state = 2}, - [3746] = {.lex_state = 96, .external_lex_state = 2}, - [3747] = {.lex_state = 96, .external_lex_state = 2}, - [3748] = {.lex_state = 12, .external_lex_state = 2}, - [3749] = {.lex_state = 96, .external_lex_state = 5}, - [3750] = {.lex_state = 96, .external_lex_state = 6}, - [3751] = {.lex_state = 96, .external_lex_state = 6}, - [3752] = {.lex_state = 96, .external_lex_state = 2}, - [3753] = {.lex_state = 12, .external_lex_state = 2}, - [3754] = {.lex_state = 96, .external_lex_state = 6}, - [3755] = {.lex_state = 96, .external_lex_state = 2}, + [3078] = {.lex_state = 12, .external_lex_state = 2}, + [3079] = {.lex_state = 12, .external_lex_state = 2}, + [3080] = {.lex_state = 12, .external_lex_state = 2}, + [3081] = {.lex_state = 12, .external_lex_state = 2}, + [3082] = {.lex_state = 12, .external_lex_state = 2}, + [3083] = {.lex_state = 12, .external_lex_state = 2}, + [3084] = {.lex_state = 12, .external_lex_state = 2}, + [3085] = {.lex_state = 12, .external_lex_state = 2}, + [3086] = {.lex_state = 12, .external_lex_state = 2}, + [3087] = {.lex_state = 12, .external_lex_state = 2}, + [3088] = {.lex_state = 12, .external_lex_state = 2}, + [3089] = {.lex_state = 12, .external_lex_state = 2}, + [3090] = {.lex_state = 12, .external_lex_state = 2}, + [3091] = {.lex_state = 12, .external_lex_state = 2}, + [3092] = {.lex_state = 12, .external_lex_state = 2}, + [3093] = {.lex_state = 95, .external_lex_state = 2}, + [3094] = {.lex_state = 12, .external_lex_state = 2}, + [3095] = {.lex_state = 12, .external_lex_state = 2}, + [3096] = {.lex_state = 12, .external_lex_state = 2}, + [3097] = {.lex_state = 12, .external_lex_state = 2}, + [3098] = {.lex_state = 12, .external_lex_state = 2}, + [3099] = {.lex_state = 12, .external_lex_state = 2}, + [3100] = {.lex_state = 12, .external_lex_state = 2}, + [3101] = {.lex_state = 12, .external_lex_state = 2}, + [3102] = {.lex_state = 12, .external_lex_state = 2}, + [3103] = {.lex_state = 12, .external_lex_state = 2}, + [3104] = {.lex_state = 12, .external_lex_state = 2}, + [3105] = {.lex_state = 12, .external_lex_state = 2}, + [3106] = {.lex_state = 12, .external_lex_state = 2}, + [3107] = {.lex_state = 12, .external_lex_state = 2}, + [3108] = {.lex_state = 12, .external_lex_state = 2}, + [3109] = {.lex_state = 12, .external_lex_state = 2}, + [3110] = {.lex_state = 12, .external_lex_state = 2}, + [3111] = {.lex_state = 12, .external_lex_state = 2}, + [3112] = {.lex_state = 12, .external_lex_state = 2}, + [3113] = {.lex_state = 12, .external_lex_state = 2}, + [3114] = {.lex_state = 95, .external_lex_state = 2}, + [3115] = {.lex_state = 12, .external_lex_state = 2}, + [3116] = {.lex_state = 12, .external_lex_state = 2}, + [3117] = {.lex_state = 12, .external_lex_state = 2}, + [3118] = {.lex_state = 12, .external_lex_state = 2}, + [3119] = {.lex_state = 12, .external_lex_state = 2}, + [3120] = {.lex_state = 12, .external_lex_state = 2}, + [3121] = {.lex_state = 12, .external_lex_state = 2}, + [3122] = {.lex_state = 12, .external_lex_state = 2}, + [3123] = {.lex_state = 12, .external_lex_state = 2}, + [3124] = {.lex_state = 12, .external_lex_state = 2}, + [3125] = {.lex_state = 12, .external_lex_state = 2}, + [3126] = {.lex_state = 12, .external_lex_state = 2}, + [3127] = {.lex_state = 12, .external_lex_state = 2}, + [3128] = {.lex_state = 95, .external_lex_state = 2}, + [3129] = {.lex_state = 12, .external_lex_state = 2}, + [3130] = {.lex_state = 12, .external_lex_state = 2}, + [3131] = {.lex_state = 95, .external_lex_state = 2}, + [3132] = {.lex_state = 95, .external_lex_state = 2}, + [3133] = {.lex_state = 95, .external_lex_state = 2}, + [3134] = {.lex_state = 95, .external_lex_state = 2}, + [3135] = {.lex_state = 95, .external_lex_state = 2}, + [3136] = {.lex_state = 95, .external_lex_state = 2}, + [3137] = {.lex_state = 95, .external_lex_state = 2}, + [3138] = {.lex_state = 95, .external_lex_state = 2}, + [3139] = {.lex_state = 95, .external_lex_state = 2}, + [3140] = {.lex_state = 95, .external_lex_state = 2}, + [3141] = {.lex_state = 95, .external_lex_state = 2}, + [3142] = {.lex_state = 95, .external_lex_state = 2}, + [3143] = {.lex_state = 95, .external_lex_state = 2}, + [3144] = {.lex_state = 95, .external_lex_state = 2}, + [3145] = {.lex_state = 95, .external_lex_state = 2}, + [3146] = {.lex_state = 95, .external_lex_state = 2}, + [3147] = {.lex_state = 95, .external_lex_state = 2}, + [3148] = {.lex_state = 95, .external_lex_state = 2}, + [3149] = {.lex_state = 95, .external_lex_state = 2}, + [3150] = {.lex_state = 95, .external_lex_state = 2}, + [3151] = {.lex_state = 95, .external_lex_state = 2}, + [3152] = {.lex_state = 95, .external_lex_state = 2}, + [3153] = {.lex_state = 95, .external_lex_state = 2}, + [3154] = {.lex_state = 95, .external_lex_state = 2}, + [3155] = {.lex_state = 95, .external_lex_state = 2}, + [3156] = {.lex_state = 95, .external_lex_state = 2}, + [3157] = {.lex_state = 95, .external_lex_state = 2}, + [3158] = {.lex_state = 95, .external_lex_state = 2}, + [3159] = {.lex_state = 95, .external_lex_state = 2}, + [3160] = {.lex_state = 95, .external_lex_state = 2}, + [3161] = {.lex_state = 12, .external_lex_state = 2}, + [3162] = {.lex_state = 95, .external_lex_state = 2}, + [3163] = {.lex_state = 95, .external_lex_state = 2}, + [3164] = {.lex_state = 95, .external_lex_state = 2}, + [3165] = {.lex_state = 95, .external_lex_state = 2}, + [3166] = {.lex_state = 95, .external_lex_state = 2}, + [3167] = {.lex_state = 95, .external_lex_state = 2}, + [3168] = {.lex_state = 95, .external_lex_state = 2}, + [3169] = {.lex_state = 95, .external_lex_state = 2}, + [3170] = {.lex_state = 95, .external_lex_state = 2}, + [3171] = {.lex_state = 95, .external_lex_state = 2}, + [3172] = {.lex_state = 95, .external_lex_state = 2}, + [3173] = {.lex_state = 95, .external_lex_state = 2}, + [3174] = {.lex_state = 95, .external_lex_state = 2}, + [3175] = {.lex_state = 95, .external_lex_state = 2}, + [3176] = {.lex_state = 95, .external_lex_state = 2}, + [3177] = {.lex_state = 95, .external_lex_state = 2}, + [3178] = {.lex_state = 95, .external_lex_state = 2}, + [3179] = {.lex_state = 12, .external_lex_state = 2}, + [3180] = {.lex_state = 95, .external_lex_state = 2}, + [3181] = {.lex_state = 95, .external_lex_state = 2}, + [3182] = {.lex_state = 95, .external_lex_state = 2}, + [3183] = {.lex_state = 95, .external_lex_state = 2}, + [3184] = {.lex_state = 95, .external_lex_state = 2}, + [3185] = {.lex_state = 95, .external_lex_state = 2}, + [3186] = {.lex_state = 95, .external_lex_state = 2}, + [3187] = {.lex_state = 95, .external_lex_state = 2}, + [3188] = {.lex_state = 95, .external_lex_state = 2}, + [3189] = {.lex_state = 95, .external_lex_state = 2}, + [3190] = {.lex_state = 95, .external_lex_state = 2}, + [3191] = {.lex_state = 95, .external_lex_state = 2}, + [3192] = {.lex_state = 95, .external_lex_state = 2}, + [3193] = {.lex_state = 95, .external_lex_state = 2}, + [3194] = {.lex_state = 95, .external_lex_state = 2}, + [3195] = {.lex_state = 95, .external_lex_state = 2}, + [3196] = {.lex_state = 95, .external_lex_state = 2}, + [3197] = {.lex_state = 95, .external_lex_state = 2}, + [3198] = {.lex_state = 95, .external_lex_state = 2}, + [3199] = {.lex_state = 95, .external_lex_state = 2}, + [3200] = {.lex_state = 95, .external_lex_state = 2}, + [3201] = {.lex_state = 95, .external_lex_state = 2}, + [3202] = {.lex_state = 95, .external_lex_state = 2}, + [3203] = {.lex_state = 95, .external_lex_state = 2}, + [3204] = {.lex_state = 95, .external_lex_state = 2}, + [3205] = {.lex_state = 95, .external_lex_state = 2}, + [3206] = {.lex_state = 95, .external_lex_state = 2}, + [3207] = {.lex_state = 95, .external_lex_state = 2}, + [3208] = {.lex_state = 95, .external_lex_state = 2}, + [3209] = {.lex_state = 95, .external_lex_state = 2}, + [3210] = {.lex_state = 95, .external_lex_state = 2}, + [3211] = {.lex_state = 95, .external_lex_state = 2}, + [3212] = {.lex_state = 95, .external_lex_state = 2}, + [3213] = {.lex_state = 95, .external_lex_state = 2}, + [3214] = {.lex_state = 95, .external_lex_state = 2}, + [3215] = {.lex_state = 95, .external_lex_state = 2}, + [3216] = {.lex_state = 95, .external_lex_state = 2}, + [3217] = {.lex_state = 95, .external_lex_state = 2}, + [3218] = {.lex_state = 95, .external_lex_state = 2}, + [3219] = {.lex_state = 95, .external_lex_state = 2}, + [3220] = {.lex_state = 95, .external_lex_state = 2}, + [3221] = {.lex_state = 95, .external_lex_state = 2}, + [3222] = {.lex_state = 95, .external_lex_state = 2}, + [3223] = {.lex_state = 95, .external_lex_state = 2}, + [3224] = {.lex_state = 95, .external_lex_state = 2}, + [3225] = {.lex_state = 95, .external_lex_state = 2}, + [3226] = {.lex_state = 95, .external_lex_state = 2}, + [3227] = {.lex_state = 95, .external_lex_state = 2}, + [3228] = {.lex_state = 95, .external_lex_state = 2}, + [3229] = {.lex_state = 95, .external_lex_state = 2}, + [3230] = {.lex_state = 95, .external_lex_state = 2}, + [3231] = {.lex_state = 95, .external_lex_state = 2}, + [3232] = {.lex_state = 95, .external_lex_state = 2}, + [3233] = {.lex_state = 95, .external_lex_state = 2}, + [3234] = {.lex_state = 95, .external_lex_state = 2}, + [3235] = {.lex_state = 95, .external_lex_state = 2}, + [3236] = {.lex_state = 95, .external_lex_state = 2}, + [3237] = {.lex_state = 95, .external_lex_state = 2}, + [3238] = {.lex_state = 95, .external_lex_state = 2}, + [3239] = {.lex_state = 95, .external_lex_state = 2}, + [3240] = {.lex_state = 95, .external_lex_state = 2}, + [3241] = {.lex_state = 95, .external_lex_state = 2}, + [3242] = {.lex_state = 95, .external_lex_state = 2}, + [3243] = {.lex_state = 95, .external_lex_state = 2}, + [3244] = {.lex_state = 95, .external_lex_state = 2}, + [3245] = {.lex_state = 95, .external_lex_state = 2}, + [3246] = {.lex_state = 95, .external_lex_state = 2}, + [3247] = {.lex_state = 95, .external_lex_state = 2}, + [3248] = {.lex_state = 95, .external_lex_state = 2}, + [3249] = {.lex_state = 95, .external_lex_state = 2}, + [3250] = {.lex_state = 95, .external_lex_state = 2}, + [3251] = {.lex_state = 95, .external_lex_state = 2}, + [3252] = {.lex_state = 95, .external_lex_state = 2}, + [3253] = {.lex_state = 95, .external_lex_state = 2}, + [3254] = {.lex_state = 95, .external_lex_state = 2}, + [3255] = {.lex_state = 95, .external_lex_state = 2}, + [3256] = {.lex_state = 95, .external_lex_state = 2}, + [3257] = {.lex_state = 95, .external_lex_state = 2}, + [3258] = {.lex_state = 95, .external_lex_state = 2}, + [3259] = {.lex_state = 95, .external_lex_state = 2}, + [3260] = {.lex_state = 95, .external_lex_state = 2}, + [3261] = {.lex_state = 95, .external_lex_state = 2}, + [3262] = {.lex_state = 95, .external_lex_state = 2}, + [3263] = {.lex_state = 95, .external_lex_state = 2}, + [3264] = {.lex_state = 95, .external_lex_state = 2}, + [3265] = {.lex_state = 95, .external_lex_state = 2}, + [3266] = {.lex_state = 95, .external_lex_state = 2}, + [3267] = {.lex_state = 95, .external_lex_state = 2}, + [3268] = {.lex_state = 95, .external_lex_state = 2}, + [3269] = {.lex_state = 95, .external_lex_state = 2}, + [3270] = {.lex_state = 95, .external_lex_state = 2}, + [3271] = {.lex_state = 95, .external_lex_state = 2}, + [3272] = {.lex_state = 95, .external_lex_state = 2}, + [3273] = {.lex_state = 95, .external_lex_state = 2}, + [3274] = {.lex_state = 95, .external_lex_state = 2}, + [3275] = {.lex_state = 95, .external_lex_state = 2}, + [3276] = {.lex_state = 95, .external_lex_state = 2}, + [3277] = {.lex_state = 95, .external_lex_state = 2}, + [3278] = {.lex_state = 95, .external_lex_state = 2}, + [3279] = {.lex_state = 95, .external_lex_state = 2}, + [3280] = {.lex_state = 95, .external_lex_state = 2}, + [3281] = {.lex_state = 95, .external_lex_state = 2}, + [3282] = {.lex_state = 95, .external_lex_state = 2}, + [3283] = {.lex_state = 95, .external_lex_state = 2}, + [3284] = {.lex_state = 95, .external_lex_state = 2}, + [3285] = {.lex_state = 95, .external_lex_state = 2}, + [3286] = {.lex_state = 95, .external_lex_state = 2}, + [3287] = {.lex_state = 95, .external_lex_state = 2}, + [3288] = {.lex_state = 95, .external_lex_state = 2}, + [3289] = {.lex_state = 95, .external_lex_state = 2}, + [3290] = {.lex_state = 95, .external_lex_state = 2}, + [3291] = {.lex_state = 95, .external_lex_state = 2}, + [3292] = {.lex_state = 95, .external_lex_state = 2}, + [3293] = {.lex_state = 95, .external_lex_state = 2}, + [3294] = {.lex_state = 95, .external_lex_state = 2}, + [3295] = {.lex_state = 95, .external_lex_state = 2}, + [3296] = {.lex_state = 95, .external_lex_state = 2}, + [3297] = {.lex_state = 95, .external_lex_state = 2}, + [3298] = {.lex_state = 95, .external_lex_state = 2}, + [3299] = {.lex_state = 95, .external_lex_state = 2}, + [3300] = {.lex_state = 14, .external_lex_state = 2}, + [3301] = {.lex_state = 14, .external_lex_state = 2}, + [3302] = {.lex_state = 14, .external_lex_state = 2}, + [3303] = {.lex_state = 14, .external_lex_state = 2}, + [3304] = {.lex_state = 14, .external_lex_state = 2}, + [3305] = {.lex_state = 14, .external_lex_state = 2}, + [3306] = {.lex_state = 14, .external_lex_state = 2}, + [3307] = {.lex_state = 14, .external_lex_state = 2}, + [3308] = {.lex_state = 14, .external_lex_state = 2}, + [3309] = {.lex_state = 14, .external_lex_state = 2}, + [3310] = {.lex_state = 14, .external_lex_state = 2}, + [3311] = {.lex_state = 14, .external_lex_state = 2}, + [3312] = {.lex_state = 14, .external_lex_state = 2}, + [3313] = {.lex_state = 14, .external_lex_state = 2}, + [3314] = {.lex_state = 14, .external_lex_state = 2}, + [3315] = {.lex_state = 14, .external_lex_state = 2}, + [3316] = {.lex_state = 14, .external_lex_state = 2}, + [3317] = {.lex_state = 14, .external_lex_state = 2}, + [3318] = {.lex_state = 14, .external_lex_state = 2}, + [3319] = {.lex_state = 14, .external_lex_state = 2}, + [3320] = {.lex_state = 14, .external_lex_state = 2}, + [3321] = {.lex_state = 14, .external_lex_state = 2}, + [3322] = {.lex_state = 14, .external_lex_state = 2}, + [3323] = {.lex_state = 14, .external_lex_state = 2}, + [3324] = {.lex_state = 14, .external_lex_state = 2}, + [3325] = {.lex_state = 14, .external_lex_state = 2}, + [3326] = {.lex_state = 14, .external_lex_state = 2}, + [3327] = {.lex_state = 14, .external_lex_state = 2}, + [3328] = {.lex_state = 14, .external_lex_state = 2}, + [3329] = {.lex_state = 14, .external_lex_state = 2}, + [3330] = {.lex_state = 14, .external_lex_state = 2}, + [3331] = {.lex_state = 14, .external_lex_state = 2}, + [3332] = {.lex_state = 14, .external_lex_state = 2}, + [3333] = {.lex_state = 14, .external_lex_state = 2}, + [3334] = {.lex_state = 14, .external_lex_state = 2}, + [3335] = {.lex_state = 14, .external_lex_state = 2}, + [3336] = {.lex_state = 14, .external_lex_state = 2}, + [3337] = {.lex_state = 13, .external_lex_state = 5}, + [3338] = {.lex_state = 14, .external_lex_state = 2}, + [3339] = {.lex_state = 13, .external_lex_state = 5}, + [3340] = {.lex_state = 14, .external_lex_state = 2}, + [3341] = {.lex_state = 95, .external_lex_state = 2}, + [3342] = {.lex_state = 14, .external_lex_state = 5}, + [3343] = {.lex_state = 95, .external_lex_state = 2}, + [3344] = {.lex_state = 14, .external_lex_state = 5}, + [3345] = {.lex_state = 13, .external_lex_state = 2}, + [3346] = {.lex_state = 95, .external_lex_state = 2}, + [3347] = {.lex_state = 14, .external_lex_state = 2}, + [3348] = {.lex_state = 14, .external_lex_state = 2}, + [3349] = {.lex_state = 14, .external_lex_state = 2}, + [3350] = {.lex_state = 13, .external_lex_state = 2}, + [3351] = {.lex_state = 13, .external_lex_state = 2}, + [3352] = {.lex_state = 13, .external_lex_state = 2}, + [3353] = {.lex_state = 95, .external_lex_state = 2}, + [3354] = {.lex_state = 95, .external_lex_state = 2}, + [3355] = {.lex_state = 14, .external_lex_state = 5}, + [3356] = {.lex_state = 14, .external_lex_state = 2}, + [3357] = {.lex_state = 95, .external_lex_state = 2}, + [3358] = {.lex_state = 95, .external_lex_state = 2}, + [3359] = {.lex_state = 13, .external_lex_state = 2}, + [3360] = {.lex_state = 95, .external_lex_state = 2}, + [3361] = {.lex_state = 95, .external_lex_state = 2}, + [3362] = {.lex_state = 95, .external_lex_state = 2}, + [3363] = {.lex_state = 95, .external_lex_state = 2}, + [3364] = {.lex_state = 95, .external_lex_state = 2}, + [3365] = {.lex_state = 14, .external_lex_state = 5}, + [3366] = {.lex_state = 95, .external_lex_state = 2}, + [3367] = {.lex_state = 95, .external_lex_state = 2}, + [3368] = {.lex_state = 95, .external_lex_state = 2}, + [3369] = {.lex_state = 4, .external_lex_state = 2}, + [3370] = {.lex_state = 95, .external_lex_state = 2}, + [3371] = {.lex_state = 95, .external_lex_state = 2}, + [3372] = {.lex_state = 95, .external_lex_state = 2}, + [3373] = {.lex_state = 4, .external_lex_state = 2}, + [3374] = {.lex_state = 95, .external_lex_state = 2}, + [3375] = {.lex_state = 95, .external_lex_state = 2}, + [3376] = {.lex_state = 95, .external_lex_state = 2}, + [3377] = {.lex_state = 95, .external_lex_state = 2}, + [3378] = {.lex_state = 95, .external_lex_state = 2}, + [3379] = {.lex_state = 95, .external_lex_state = 2}, + [3380] = {.lex_state = 95, .external_lex_state = 2}, + [3381] = {.lex_state = 95, .external_lex_state = 2}, + [3382] = {.lex_state = 4, .external_lex_state = 2}, + [3383] = {.lex_state = 95, .external_lex_state = 2}, + [3384] = {.lex_state = 95, .external_lex_state = 2}, + [3385] = {.lex_state = 95, .external_lex_state = 2}, + [3386] = {.lex_state = 95, .external_lex_state = 2}, + [3387] = {.lex_state = 14, .external_lex_state = 6}, + [3388] = {.lex_state = 95, .external_lex_state = 2}, + [3389] = {.lex_state = 14, .external_lex_state = 6}, + [3390] = {.lex_state = 95, .external_lex_state = 2}, + [3391] = {.lex_state = 95, .external_lex_state = 2}, + [3392] = {.lex_state = 14, .external_lex_state = 6}, + [3393] = {.lex_state = 95, .external_lex_state = 2}, + [3394] = {.lex_state = 95, .external_lex_state = 2}, + [3395] = {.lex_state = 95, .external_lex_state = 2}, + [3396] = {.lex_state = 14, .external_lex_state = 5}, + [3397] = {.lex_state = 13, .external_lex_state = 5}, + [3398] = {.lex_state = 95, .external_lex_state = 2}, + [3399] = {.lex_state = 14, .external_lex_state = 5}, + [3400] = {.lex_state = 14, .external_lex_state = 5}, + [3401] = {.lex_state = 14, .external_lex_state = 5}, + [3402] = {.lex_state = 95, .external_lex_state = 2}, + [3403] = {.lex_state = 95, .external_lex_state = 2}, + [3404] = {.lex_state = 95, .external_lex_state = 2}, + [3405] = {.lex_state = 4, .external_lex_state = 2}, + [3406] = {.lex_state = 95, .external_lex_state = 2}, + [3407] = {.lex_state = 95, .external_lex_state = 2}, + [3408] = {.lex_state = 95, .external_lex_state = 2}, + [3409] = {.lex_state = 14, .external_lex_state = 5}, + [3410] = {.lex_state = 95, .external_lex_state = 2}, + [3411] = {.lex_state = 14, .external_lex_state = 5}, + [3412] = {.lex_state = 95, .external_lex_state = 2}, + [3413] = {.lex_state = 14, .external_lex_state = 5}, + [3414] = {.lex_state = 95, .external_lex_state = 2}, + [3415] = {.lex_state = 95, .external_lex_state = 2}, + [3416] = {.lex_state = 14, .external_lex_state = 5}, + [3417] = {.lex_state = 95, .external_lex_state = 2}, + [3418] = {.lex_state = 95, .external_lex_state = 2}, + [3419] = {.lex_state = 95, .external_lex_state = 2}, + [3420] = {.lex_state = 14, .external_lex_state = 5}, + [3421] = {.lex_state = 14, .external_lex_state = 5}, + [3422] = {.lex_state = 95, .external_lex_state = 2}, + [3423] = {.lex_state = 14, .external_lex_state = 5}, + [3424] = {.lex_state = 14, .external_lex_state = 5}, + [3425] = {.lex_state = 14, .external_lex_state = 5}, + [3426] = {.lex_state = 14, .external_lex_state = 5}, + [3427] = {.lex_state = 14, .external_lex_state = 5}, + [3428] = {.lex_state = 14, .external_lex_state = 5}, + [3429] = {.lex_state = 14, .external_lex_state = 5}, + [3430] = {.lex_state = 14, .external_lex_state = 5}, + [3431] = {.lex_state = 4, .external_lex_state = 2}, + [3432] = {.lex_state = 95, .external_lex_state = 2}, + [3433] = {.lex_state = 14, .external_lex_state = 5}, + [3434] = {.lex_state = 14, .external_lex_state = 5}, + [3435] = {.lex_state = 4, .external_lex_state = 2}, + [3436] = {.lex_state = 95, .external_lex_state = 2}, + [3437] = {.lex_state = 95, .external_lex_state = 2}, + [3438] = {.lex_state = 4, .external_lex_state = 2}, + [3439] = {.lex_state = 95, .external_lex_state = 2}, + [3440] = {.lex_state = 95, .external_lex_state = 2}, + [3441] = {.lex_state = 95, .external_lex_state = 2}, + [3442] = {.lex_state = 95, .external_lex_state = 2}, + [3443] = {.lex_state = 95, .external_lex_state = 2}, + [3444] = {.lex_state = 95, .external_lex_state = 2}, + [3445] = {.lex_state = 95, .external_lex_state = 2}, + [3446] = {.lex_state = 14, .external_lex_state = 5}, + [3447] = {.lex_state = 14, .external_lex_state = 5}, + [3448] = {.lex_state = 95, .external_lex_state = 2}, + [3449] = {.lex_state = 14, .external_lex_state = 5}, + [3450] = {.lex_state = 14, .external_lex_state = 5}, + [3451] = {.lex_state = 4, .external_lex_state = 2}, + [3452] = {.lex_state = 95, .external_lex_state = 2}, + [3453] = {.lex_state = 14, .external_lex_state = 5}, + [3454] = {.lex_state = 95, .external_lex_state = 2}, + [3455] = {.lex_state = 14, .external_lex_state = 5}, + [3456] = {.lex_state = 14, .external_lex_state = 5}, + [3457] = {.lex_state = 14, .external_lex_state = 5}, + [3458] = {.lex_state = 14, .external_lex_state = 5}, + [3459] = {.lex_state = 14, .external_lex_state = 5}, + [3460] = {.lex_state = 14, .external_lex_state = 5}, + [3461] = {.lex_state = 95, .external_lex_state = 2}, + [3462] = {.lex_state = 4, .external_lex_state = 2}, + [3463] = {.lex_state = 14, .external_lex_state = 5}, + [3464] = {.lex_state = 95, .external_lex_state = 2}, + [3465] = {.lex_state = 14, .external_lex_state = 5}, + [3466] = {.lex_state = 4, .external_lex_state = 2}, + [3467] = {.lex_state = 95, .external_lex_state = 2}, + [3468] = {.lex_state = 95, .external_lex_state = 2}, + [3469] = {.lex_state = 12, .external_lex_state = 5}, + [3470] = {.lex_state = 12, .external_lex_state = 5}, + [3471] = {.lex_state = 95, .external_lex_state = 2}, + [3472] = {.lex_state = 95, .external_lex_state = 2}, + [3473] = {.lex_state = 12, .external_lex_state = 5}, + [3474] = {.lex_state = 95, .external_lex_state = 2}, + [3475] = {.lex_state = 12, .external_lex_state = 5}, + [3476] = {.lex_state = 12, .external_lex_state = 5}, + [3477] = {.lex_state = 12, .external_lex_state = 5}, + [3478] = {.lex_state = 12, .external_lex_state = 5}, + [3479] = {.lex_state = 12, .external_lex_state = 5}, + [3480] = {.lex_state = 12, .external_lex_state = 5}, + [3481] = {.lex_state = 12, .external_lex_state = 5}, + [3482] = {.lex_state = 95, .external_lex_state = 2}, + [3483] = {.lex_state = 12, .external_lex_state = 5}, + [3484] = {.lex_state = 12, .external_lex_state = 5}, + [3485] = {.lex_state = 12, .external_lex_state = 5}, + [3486] = {.lex_state = 12, .external_lex_state = 5}, + [3487] = {.lex_state = 13, .external_lex_state = 5}, + [3488] = {.lex_state = 12, .external_lex_state = 5}, + [3489] = {.lex_state = 12, .external_lex_state = 5}, + [3490] = {.lex_state = 95, .external_lex_state = 2}, + [3491] = {.lex_state = 12, .external_lex_state = 5}, + [3492] = {.lex_state = 12, .external_lex_state = 5}, + [3493] = {.lex_state = 12, .external_lex_state = 5}, + [3494] = {.lex_state = 12, .external_lex_state = 5}, + [3495] = {.lex_state = 95, .external_lex_state = 5}, + [3496] = {.lex_state = 95, .external_lex_state = 2}, + [3497] = {.lex_state = 12, .external_lex_state = 5}, + [3498] = {.lex_state = 95, .external_lex_state = 2}, + [3499] = {.lex_state = 12, .external_lex_state = 5}, + [3500] = {.lex_state = 95, .external_lex_state = 2}, + [3501] = {.lex_state = 95, .external_lex_state = 2}, + [3502] = {.lex_state = 12, .external_lex_state = 5}, + [3503] = {.lex_state = 12, .external_lex_state = 5}, + [3504] = {.lex_state = 95, .external_lex_state = 2}, + [3505] = {.lex_state = 12, .external_lex_state = 5}, + [3506] = {.lex_state = 12, .external_lex_state = 5}, + [3507] = {.lex_state = 12, .external_lex_state = 5}, + [3508] = {.lex_state = 12, .external_lex_state = 5}, + [3509] = {.lex_state = 95, .external_lex_state = 2}, + [3510] = {.lex_state = 14, .external_lex_state = 6}, + [3511] = {.lex_state = 95, .external_lex_state = 2}, + [3512] = {.lex_state = 13, .external_lex_state = 6}, + [3513] = {.lex_state = 12, .external_lex_state = 5}, + [3514] = {.lex_state = 12, .external_lex_state = 5}, + [3515] = {.lex_state = 12, .external_lex_state = 5}, + [3516] = {.lex_state = 95, .external_lex_state = 2}, + [3517] = {.lex_state = 14, .external_lex_state = 5}, + [3518] = {.lex_state = 95, .external_lex_state = 2}, + [3519] = {.lex_state = 95, .external_lex_state = 5}, + [3520] = {.lex_state = 95, .external_lex_state = 2}, + [3521] = {.lex_state = 14, .external_lex_state = 5}, + [3522] = {.lex_state = 95, .external_lex_state = 2}, + [3523] = {.lex_state = 95, .external_lex_state = 5}, + [3524] = {.lex_state = 12, .external_lex_state = 5}, + [3525] = {.lex_state = 14, .external_lex_state = 5}, + [3526] = {.lex_state = 95, .external_lex_state = 5}, + [3527] = {.lex_state = 95, .external_lex_state = 2}, + [3528] = {.lex_state = 12, .external_lex_state = 5}, + [3529] = {.lex_state = 12, .external_lex_state = 5}, + [3530] = {.lex_state = 95, .external_lex_state = 2}, + [3531] = {.lex_state = 13, .external_lex_state = 5}, + [3532] = {.lex_state = 95, .external_lex_state = 2}, + [3533] = {.lex_state = 12, .external_lex_state = 2}, + [3534] = {.lex_state = 12, .external_lex_state = 5}, + [3535] = {.lex_state = 95, .external_lex_state = 2}, + [3536] = {.lex_state = 95, .external_lex_state = 5}, + [3537] = {.lex_state = 12, .external_lex_state = 5}, + [3538] = {.lex_state = 14, .external_lex_state = 6}, + [3539] = {.lex_state = 14, .external_lex_state = 6}, + [3540] = {.lex_state = 95, .external_lex_state = 5}, + [3541] = {.lex_state = 95, .external_lex_state = 5}, + [3542] = {.lex_state = 14, .external_lex_state = 6}, + [3543] = {.lex_state = 95, .external_lex_state = 5}, + [3544] = {.lex_state = 14, .external_lex_state = 6}, + [3545] = {.lex_state = 12, .external_lex_state = 5}, + [3546] = {.lex_state = 14, .external_lex_state = 6}, + [3547] = {.lex_state = 12, .external_lex_state = 5}, + [3548] = {.lex_state = 14, .external_lex_state = 6}, + [3549] = {.lex_state = 95, .external_lex_state = 5}, + [3550] = {.lex_state = 14, .external_lex_state = 6}, + [3551] = {.lex_state = 14, .external_lex_state = 6}, + [3552] = {.lex_state = 14, .external_lex_state = 5}, + [3553] = {.lex_state = 14, .external_lex_state = 5}, + [3554] = {.lex_state = 14, .external_lex_state = 6}, + [3555] = {.lex_state = 14, .external_lex_state = 6}, + [3556] = {.lex_state = 14, .external_lex_state = 6}, + [3557] = {.lex_state = 14, .external_lex_state = 6}, + [3558] = {.lex_state = 14, .external_lex_state = 6}, + [3559] = {.lex_state = 14, .external_lex_state = 6}, + [3560] = {.lex_state = 14, .external_lex_state = 6}, + [3561] = {.lex_state = 14, .external_lex_state = 6}, + [3562] = {.lex_state = 14, .external_lex_state = 6}, + [3563] = {.lex_state = 14, .external_lex_state = 6}, + [3564] = {.lex_state = 14, .external_lex_state = 6}, + [3565] = {.lex_state = 14, .external_lex_state = 6}, + [3566] = {.lex_state = 14, .external_lex_state = 6}, + [3567] = {.lex_state = 13, .external_lex_state = 5}, + [3568] = {.lex_state = 14, .external_lex_state = 6}, + [3569] = {.lex_state = 14, .external_lex_state = 6}, + [3570] = {.lex_state = 95, .external_lex_state = 5}, + [3571] = {.lex_state = 95, .external_lex_state = 5}, + [3572] = {.lex_state = 13, .external_lex_state = 5}, + [3573] = {.lex_state = 14, .external_lex_state = 5}, + [3574] = {.lex_state = 14, .external_lex_state = 5}, + [3575] = {.lex_state = 14, .external_lex_state = 5}, + [3576] = {.lex_state = 14, .external_lex_state = 6}, + [3577] = {.lex_state = 14, .external_lex_state = 6}, + [3578] = {.lex_state = 14, .external_lex_state = 6}, + [3579] = {.lex_state = 14, .external_lex_state = 6}, + [3580] = {.lex_state = 14, .external_lex_state = 6}, + [3581] = {.lex_state = 14, .external_lex_state = 6}, + [3582] = {.lex_state = 14, .external_lex_state = 6}, + [3583] = {.lex_state = 14, .external_lex_state = 6}, + [3584] = {.lex_state = 14, .external_lex_state = 6}, + [3585] = {.lex_state = 14, .external_lex_state = 6}, + [3586] = {.lex_state = 12, .external_lex_state = 5}, + [3587] = {.lex_state = 12, .external_lex_state = 5}, + [3588] = {.lex_state = 95, .external_lex_state = 5}, + [3589] = {.lex_state = 12, .external_lex_state = 5}, + [3590] = {.lex_state = 95, .external_lex_state = 5}, + [3591] = {.lex_state = 12, .external_lex_state = 5}, + [3592] = {.lex_state = 95, .external_lex_state = 5}, + [3593] = {.lex_state = 95, .external_lex_state = 5}, + [3594] = {.lex_state = 12, .external_lex_state = 5}, + [3595] = {.lex_state = 12, .external_lex_state = 5}, + [3596] = {.lex_state = 12, .external_lex_state = 5}, + [3597] = {.lex_state = 12, .external_lex_state = 5}, + [3598] = {.lex_state = 12, .external_lex_state = 5}, + [3599] = {.lex_state = 13, .external_lex_state = 6}, + [3600] = {.lex_state = 12, .external_lex_state = 5}, + [3601] = {.lex_state = 12, .external_lex_state = 5}, + [3602] = {.lex_state = 12, .external_lex_state = 2}, + [3603] = {.lex_state = 12, .external_lex_state = 5}, + [3604] = {.lex_state = 12, .external_lex_state = 5}, + [3605] = {.lex_state = 12, .external_lex_state = 5}, + [3606] = {.lex_state = 12, .external_lex_state = 5}, + [3607] = {.lex_state = 12, .external_lex_state = 5}, + [3608] = {.lex_state = 14, .external_lex_state = 2}, + [3609] = {.lex_state = 14, .external_lex_state = 2}, + [3610] = {.lex_state = 14, .external_lex_state = 2}, + [3611] = {.lex_state = 12, .external_lex_state = 5}, + [3612] = {.lex_state = 12, .external_lex_state = 5}, + [3613] = {.lex_state = 95, .external_lex_state = 5}, + [3614] = {.lex_state = 12, .external_lex_state = 5}, + [3615] = {.lex_state = 12, .external_lex_state = 5}, + [3616] = {.lex_state = 95, .external_lex_state = 5}, + [3617] = {.lex_state = 12, .external_lex_state = 5}, + [3618] = {.lex_state = 12, .external_lex_state = 2}, + [3619] = {.lex_state = 12, .external_lex_state = 5}, + [3620] = {.lex_state = 12, .external_lex_state = 5}, + [3621] = {.lex_state = 12, .external_lex_state = 5}, + [3622] = {.lex_state = 12, .external_lex_state = 5}, + [3623] = {.lex_state = 12, .external_lex_state = 5}, + [3624] = {.lex_state = 12, .external_lex_state = 5}, + [3625] = {.lex_state = 12, .external_lex_state = 5}, + [3626] = {.lex_state = 12, .external_lex_state = 5}, + [3627] = {.lex_state = 95, .external_lex_state = 6}, + [3628] = {.lex_state = 12, .external_lex_state = 5}, + [3629] = {.lex_state = 12, .external_lex_state = 2}, + [3630] = {.lex_state = 12, .external_lex_state = 5}, + [3631] = {.lex_state = 95, .external_lex_state = 5}, + [3632] = {.lex_state = 12, .external_lex_state = 5}, + [3633] = {.lex_state = 12, .external_lex_state = 5}, + [3634] = {.lex_state = 12, .external_lex_state = 5}, + [3635] = {.lex_state = 12, .external_lex_state = 5}, + [3636] = {.lex_state = 12, .external_lex_state = 5}, + [3637] = {.lex_state = 12, .external_lex_state = 5}, + [3638] = {.lex_state = 12, .external_lex_state = 5}, + [3639] = {.lex_state = 95, .external_lex_state = 5}, + [3640] = {.lex_state = 12, .external_lex_state = 5}, + [3641] = {.lex_state = 95, .external_lex_state = 2}, + [3642] = {.lex_state = 14, .external_lex_state = 6}, + [3643] = {.lex_state = 95, .external_lex_state = 5}, + [3644] = {.lex_state = 95, .external_lex_state = 5}, + [3645] = {.lex_state = 14, .external_lex_state = 6}, + [3646] = {.lex_state = 95, .external_lex_state = 5}, + [3647] = {.lex_state = 95, .external_lex_state = 5}, + [3648] = {.lex_state = 14, .external_lex_state = 6}, + [3649] = {.lex_state = 14, .external_lex_state = 6}, + [3650] = {.lex_state = 95, .external_lex_state = 5}, + [3651] = {.lex_state = 95, .external_lex_state = 2}, + [3652] = {.lex_state = 95, .external_lex_state = 5}, + [3653] = {.lex_state = 95, .external_lex_state = 6}, + [3654] = {.lex_state = 95, .external_lex_state = 6}, + [3655] = {.lex_state = 95, .external_lex_state = 6}, + [3656] = {.lex_state = 95, .external_lex_state = 6}, + [3657] = {.lex_state = 95, .external_lex_state = 5}, + [3658] = {.lex_state = 95, .external_lex_state = 5}, + [3659] = {.lex_state = 13, .external_lex_state = 6}, + [3660] = {.lex_state = 95, .external_lex_state = 6}, + [3661] = {.lex_state = 95, .external_lex_state = 6}, + [3662] = {.lex_state = 95, .external_lex_state = 5}, + [3663] = {.lex_state = 13, .external_lex_state = 6}, + [3664] = {.lex_state = 95, .external_lex_state = 5}, + [3665] = {.lex_state = 95, .external_lex_state = 5}, + [3666] = {.lex_state = 95, .external_lex_state = 5}, + [3667] = {.lex_state = 95, .external_lex_state = 5}, + [3668] = {.lex_state = 95, .external_lex_state = 5}, + [3669] = {.lex_state = 95, .external_lex_state = 5}, + [3670] = {.lex_state = 95, .external_lex_state = 5}, + [3671] = {.lex_state = 95, .external_lex_state = 5}, + [3672] = {.lex_state = 95, .external_lex_state = 5}, + [3673] = {.lex_state = 95, .external_lex_state = 5}, + [3674] = {.lex_state = 95, .external_lex_state = 5}, + [3675] = {.lex_state = 95, .external_lex_state = 5}, + [3676] = {.lex_state = 95, .external_lex_state = 5}, + [3677] = {.lex_state = 14, .external_lex_state = 6}, + [3678] = {.lex_state = 95, .external_lex_state = 5}, + [3679] = {.lex_state = 95, .external_lex_state = 5}, + [3680] = {.lex_state = 14, .external_lex_state = 6}, + [3681] = {.lex_state = 12, .external_lex_state = 5}, + [3682] = {.lex_state = 12, .external_lex_state = 5}, + [3683] = {.lex_state = 95, .external_lex_state = 5}, + [3684] = {.lex_state = 95, .external_lex_state = 5}, + [3685] = {.lex_state = 95, .external_lex_state = 5}, + [3686] = {.lex_state = 95, .external_lex_state = 5}, + [3687] = {.lex_state = 14, .external_lex_state = 6}, + [3688] = {.lex_state = 95, .external_lex_state = 5}, + [3689] = {.lex_state = 13, .external_lex_state = 6}, + [3690] = {.lex_state = 14, .external_lex_state = 6}, + [3691] = {.lex_state = 95, .external_lex_state = 5}, + [3692] = {.lex_state = 95, .external_lex_state = 5}, + [3693] = {.lex_state = 95, .external_lex_state = 5}, + [3694] = {.lex_state = 12, .external_lex_state = 5}, + [3695] = {.lex_state = 12, .external_lex_state = 2}, + [3696] = {.lex_state = 95, .external_lex_state = 5}, + [3697] = {.lex_state = 95, .external_lex_state = 5}, + [3698] = {.lex_state = 95, .external_lex_state = 5}, + [3699] = {.lex_state = 95, .external_lex_state = 5}, + [3700] = {.lex_state = 95, .external_lex_state = 5}, + [3701] = {.lex_state = 95, .external_lex_state = 5}, + [3702] = {.lex_state = 95, .external_lex_state = 5}, + [3703] = {.lex_state = 95, .external_lex_state = 5}, + [3704] = {.lex_state = 95, .external_lex_state = 5}, + [3705] = {.lex_state = 95, .external_lex_state = 5}, + [3706] = {.lex_state = 95, .external_lex_state = 5}, + [3707] = {.lex_state = 95, .external_lex_state = 5}, + [3708] = {.lex_state = 95, .external_lex_state = 5}, + [3709] = {.lex_state = 95, .external_lex_state = 5}, + [3710] = {.lex_state = 95, .external_lex_state = 5}, + [3711] = {.lex_state = 95, .external_lex_state = 5}, + [3712] = {.lex_state = 95, .external_lex_state = 5}, + [3713] = {.lex_state = 95, .external_lex_state = 5}, + [3714] = {.lex_state = 13, .external_lex_state = 2}, + [3715] = {.lex_state = 95, .external_lex_state = 6}, + [3716] = {.lex_state = 13, .external_lex_state = 2}, + [3717] = {.lex_state = 95, .external_lex_state = 6}, + [3718] = {.lex_state = 13, .external_lex_state = 2}, + [3719] = {.lex_state = 95, .external_lex_state = 2}, + [3720] = {.lex_state = 13, .external_lex_state = 2}, + [3721] = {.lex_state = 13, .external_lex_state = 2}, + [3722] = {.lex_state = 95, .external_lex_state = 5}, + [3723] = {.lex_state = 13, .external_lex_state = 2}, + [3724] = {.lex_state = 95, .external_lex_state = 2}, + [3725] = {.lex_state = 13, .external_lex_state = 2}, + [3726] = {.lex_state = 95, .external_lex_state = 2}, + [3727] = {.lex_state = 95, .external_lex_state = 6}, + [3728] = {.lex_state = 13, .external_lex_state = 2}, + [3729] = {.lex_state = 13, .external_lex_state = 2}, + [3730] = {.lex_state = 95, .external_lex_state = 6}, + [3731] = {.lex_state = 95, .external_lex_state = 6}, + [3732] = {.lex_state = 12, .external_lex_state = 5}, + [3733] = {.lex_state = 95, .external_lex_state = 2}, + [3734] = {.lex_state = 95, .external_lex_state = 6}, + [3735] = {.lex_state = 95, .external_lex_state = 6}, + [3736] = {.lex_state = 95, .external_lex_state = 2}, + [3737] = {.lex_state = 95, .external_lex_state = 2}, + [3738] = {.lex_state = 95, .external_lex_state = 5}, + [3739] = {.lex_state = 12, .external_lex_state = 2}, + [3740] = {.lex_state = 13, .external_lex_state = 2}, + [3741] = {.lex_state = 13, .external_lex_state = 2}, + [3742] = {.lex_state = 95, .external_lex_state = 5}, + [3743] = {.lex_state = 95, .external_lex_state = 5}, + [3744] = {.lex_state = 95, .external_lex_state = 6}, + [3745] = {.lex_state = 95, .external_lex_state = 5}, + [3746] = {.lex_state = 95, .external_lex_state = 2}, + [3747] = {.lex_state = 95, .external_lex_state = 6}, + [3748] = {.lex_state = 95, .external_lex_state = 6}, + [3749] = {.lex_state = 95, .external_lex_state = 6}, + [3750] = {.lex_state = 14, .external_lex_state = 2}, + [3751] = {.lex_state = 14, .external_lex_state = 2}, + [3752] = {.lex_state = 95, .external_lex_state = 6}, + [3753] = {.lex_state = 95, .external_lex_state = 6}, + [3754] = {.lex_state = 95, .external_lex_state = 5}, + [3755] = {.lex_state = 95, .external_lex_state = 5}, [3756] = {.lex_state = 12, .external_lex_state = 2}, - [3757] = {.lex_state = 12, .external_lex_state = 2}, - [3758] = {.lex_state = 12, .external_lex_state = 2}, - [3759] = {.lex_state = 96, .external_lex_state = 2}, - [3760] = {.lex_state = 18, .external_lex_state = 7}, - [3761] = {.lex_state = 96, .external_lex_state = 5}, - [3762] = {.lex_state = 96, .external_lex_state = 5}, - [3763] = {.lex_state = 96, .external_lex_state = 5}, - [3764] = {.lex_state = 96, .external_lex_state = 6}, - [3765] = {.lex_state = 12, .external_lex_state = 2}, - [3766] = {.lex_state = 96, .external_lex_state = 5}, - [3767] = {.lex_state = 96, .external_lex_state = 6}, - [3768] = {.lex_state = 12, .external_lex_state = 2}, - [3769] = {.lex_state = 15, .external_lex_state = 2}, - [3770] = {.lex_state = 12, .external_lex_state = 2}, - [3771] = {.lex_state = 96, .external_lex_state = 5}, - [3772] = {.lex_state = 96, .external_lex_state = 5}, - [3773] = {.lex_state = 96, .external_lex_state = 6}, - [3774] = {.lex_state = 96, .external_lex_state = 5}, - [3775] = {.lex_state = 12, .external_lex_state = 2}, - [3776] = {.lex_state = 96, .external_lex_state = 2}, - [3777] = {.lex_state = 96, .external_lex_state = 2}, - [3778] = {.lex_state = 12, .external_lex_state = 2}, - [3779] = {.lex_state = 96, .external_lex_state = 2}, - [3780] = {.lex_state = 96, .external_lex_state = 2}, - [3781] = {.lex_state = 96, .external_lex_state = 5}, - [3782] = {.lex_state = 12, .external_lex_state = 2}, - [3783] = {.lex_state = 96, .external_lex_state = 5}, - [3784] = {.lex_state = 12, .external_lex_state = 2}, - [3785] = {.lex_state = 96, .external_lex_state = 2}, - [3786] = {.lex_state = 12, .external_lex_state = 2}, - [3787] = {.lex_state = 96, .external_lex_state = 2}, - [3788] = {.lex_state = 12, .external_lex_state = 2}, - [3789] = {.lex_state = 96, .external_lex_state = 6}, - [3790] = {.lex_state = 96, .external_lex_state = 5}, - [3791] = {.lex_state = 12, .external_lex_state = 2}, - [3792] = {.lex_state = 12, .external_lex_state = 2}, - [3793] = {.lex_state = 96, .external_lex_state = 2}, - [3794] = {.lex_state = 96, .external_lex_state = 2}, - [3795] = {.lex_state = 96, .external_lex_state = 6}, - [3796] = {.lex_state = 96, .external_lex_state = 2}, - [3797] = {.lex_state = 96, .external_lex_state = 5}, - [3798] = {.lex_state = 18, .external_lex_state = 7}, - [3799] = {.lex_state = 96, .external_lex_state = 6}, - [3800] = {.lex_state = 12, .external_lex_state = 2}, - [3801] = {.lex_state = 12, .external_lex_state = 2}, - [3802] = {.lex_state = 96, .external_lex_state = 6}, - [3803] = {.lex_state = 96, .external_lex_state = 2}, - [3804] = {.lex_state = 12, .external_lex_state = 2}, + [3757] = {.lex_state = 95, .external_lex_state = 6}, + [3758] = {.lex_state = 95, .external_lex_state = 6}, + [3759] = {.lex_state = 95, .external_lex_state = 6}, + [3760] = {.lex_state = 95, .external_lex_state = 6}, + [3761] = {.lex_state = 95, .external_lex_state = 5}, + [3762] = {.lex_state = 95, .external_lex_state = 6}, + [3763] = {.lex_state = 95, .external_lex_state = 6}, + [3764] = {.lex_state = 13, .external_lex_state = 2}, + [3765] = {.lex_state = 13, .external_lex_state = 2}, + [3766] = {.lex_state = 95, .external_lex_state = 5}, + [3767] = {.lex_state = 95, .external_lex_state = 5}, + [3768] = {.lex_state = 14, .external_lex_state = 2}, + [3769] = {.lex_state = 95, .external_lex_state = 6}, + [3770] = {.lex_state = 95, .external_lex_state = 6}, + [3771] = {.lex_state = 95, .external_lex_state = 6}, + [3772] = {.lex_state = 95, .external_lex_state = 2}, + [3773] = {.lex_state = 95, .external_lex_state = 6}, + [3774] = {.lex_state = 12, .external_lex_state = 2}, + [3775] = {.lex_state = 95, .external_lex_state = 5}, + [3776] = {.lex_state = 11, .external_lex_state = 2}, + [3777] = {.lex_state = 13, .external_lex_state = 2}, + [3778] = {.lex_state = 95, .external_lex_state = 5}, + [3779] = {.lex_state = 95, .external_lex_state = 2}, + [3780] = {.lex_state = 95, .external_lex_state = 5}, + [3781] = {.lex_state = 95, .external_lex_state = 5}, + [3782] = {.lex_state = 14, .external_lex_state = 2}, + [3783] = {.lex_state = 12, .external_lex_state = 2}, + [3784] = {.lex_state = 13, .external_lex_state = 2}, + [3785] = {.lex_state = 14, .external_lex_state = 2}, + [3786] = {.lex_state = 13, .external_lex_state = 2}, + [3787] = {.lex_state = 95, .external_lex_state = 6}, + [3788] = {.lex_state = 14, .external_lex_state = 2}, + [3789] = {.lex_state = 95, .external_lex_state = 5}, + [3790] = {.lex_state = 13, .external_lex_state = 2}, + [3791] = {.lex_state = 13, .external_lex_state = 2}, + [3792] = {.lex_state = 14, .external_lex_state = 2}, + [3793] = {.lex_state = 95, .external_lex_state = 5}, + [3794] = {.lex_state = 13, .external_lex_state = 2}, + [3795] = {.lex_state = 14, .external_lex_state = 2}, + [3796] = {.lex_state = 95, .external_lex_state = 5}, + [3797] = {.lex_state = 95, .external_lex_state = 6}, + [3798] = {.lex_state = 95, .external_lex_state = 2}, + [3799] = {.lex_state = 95, .external_lex_state = 2}, + [3800] = {.lex_state = 95, .external_lex_state = 6}, + [3801] = {.lex_state = 95, .external_lex_state = 6}, + [3802] = {.lex_state = 13, .external_lex_state = 2}, + [3803] = {.lex_state = 95, .external_lex_state = 6}, + [3804] = {.lex_state = 95, .external_lex_state = 6}, [3805] = {.lex_state = 12, .external_lex_state = 2}, - [3806] = {.lex_state = 96, .external_lex_state = 6}, - [3807] = {.lex_state = 12, .external_lex_state = 2}, - [3808] = {.lex_state = 18, .external_lex_state = 7}, - [3809] = {.lex_state = 96, .external_lex_state = 2}, - [3810] = {.lex_state = 96, .external_lex_state = 2}, - [3811] = {.lex_state = 96, .external_lex_state = 6}, - [3812] = {.lex_state = 96, .external_lex_state = 6}, - [3813] = {.lex_state = 96, .external_lex_state = 6}, - [3814] = {.lex_state = 96, .external_lex_state = 6}, - [3815] = {.lex_state = 96, .external_lex_state = 2}, - [3816] = {.lex_state = 12, .external_lex_state = 2}, + [3806] = {.lex_state = 13, .external_lex_state = 2}, + [3807] = {.lex_state = 95, .external_lex_state = 6}, + [3808] = {.lex_state = 12, .external_lex_state = 2}, + [3809] = {.lex_state = 95, .external_lex_state = 5}, + [3810] = {.lex_state = 95, .external_lex_state = 6}, + [3811] = {.lex_state = 95, .external_lex_state = 2}, + [3812] = {.lex_state = 95, .external_lex_state = 6}, + [3813] = {.lex_state = 95, .external_lex_state = 6}, + [3814] = {.lex_state = 14, .external_lex_state = 2}, + [3815] = {.lex_state = 13, .external_lex_state = 2}, + [3816] = {.lex_state = 95, .external_lex_state = 5}, [3817] = {.lex_state = 12, .external_lex_state = 2}, - [3818] = {.lex_state = 12, .external_lex_state = 2}, - [3819] = {.lex_state = 12, .external_lex_state = 2}, - [3820] = {.lex_state = 96, .external_lex_state = 2}, - [3821] = {.lex_state = 12, .external_lex_state = 2}, - [3822] = {.lex_state = 96, .external_lex_state = 2}, - [3823] = {.lex_state = 96, .external_lex_state = 2}, - [3824] = {.lex_state = 12, .external_lex_state = 2}, - [3825] = {.lex_state = 96, .external_lex_state = 2}, - [3826] = {.lex_state = 96, .external_lex_state = 5}, - [3827] = {.lex_state = 96, .external_lex_state = 2}, - [3828] = {.lex_state = 96, .external_lex_state = 2}, - [3829] = {.lex_state = 12, .external_lex_state = 2}, - [3830] = {.lex_state = 12, .external_lex_state = 2}, - [3831] = {.lex_state = 12, .external_lex_state = 2}, - [3832] = {.lex_state = 12, .external_lex_state = 2}, - [3833] = {.lex_state = 12, .external_lex_state = 2}, - [3834] = {.lex_state = 12, .external_lex_state = 2}, - [3835] = {.lex_state = 96, .external_lex_state = 2}, - [3836] = {.lex_state = 96, .external_lex_state = 6}, - [3837] = {.lex_state = 12, .external_lex_state = 2}, - [3838] = {.lex_state = 12, .external_lex_state = 2}, - [3839] = {.lex_state = 12, .external_lex_state = 2}, - [3840] = {.lex_state = 12, .external_lex_state = 2}, - [3841] = {.lex_state = 96, .external_lex_state = 5}, - [3842] = {.lex_state = 96, .external_lex_state = 5}, - [3843] = {.lex_state = 96, .external_lex_state = 5}, - [3844] = {.lex_state = 12, .external_lex_state = 2}, - [3845] = {.lex_state = 96, .external_lex_state = 6}, - [3846] = {.lex_state = 18, .external_lex_state = 7}, - [3847] = {.lex_state = 96, .external_lex_state = 2}, - [3848] = {.lex_state = 96, .external_lex_state = 2}, - [3849] = {.lex_state = 96, .external_lex_state = 2}, - [3850] = {.lex_state = 96, .external_lex_state = 2}, - [3851] = {.lex_state = 12, .external_lex_state = 2}, - [3852] = {.lex_state = 96, .external_lex_state = 2}, - [3853] = {.lex_state = 96, .external_lex_state = 2}, - [3854] = {.lex_state = 12, .external_lex_state = 2}, - [3855] = {.lex_state = 12, .external_lex_state = 2}, - [3856] = {.lex_state = 96, .external_lex_state = 5}, - [3857] = {.lex_state = 96, .external_lex_state = 5}, - [3858] = {.lex_state = 96, .external_lex_state = 5}, - [3859] = {.lex_state = 96, .external_lex_state = 5}, - [3860] = {.lex_state = 96, .external_lex_state = 2}, - [3861] = {.lex_state = 96, .external_lex_state = 5}, - [3862] = {.lex_state = 12, .external_lex_state = 2}, - [3863] = {.lex_state = 96, .external_lex_state = 2}, - [3864] = {.lex_state = 96, .external_lex_state = 6}, - [3865] = {.lex_state = 96, .external_lex_state = 6}, - [3866] = {.lex_state = 96, .external_lex_state = 5}, - [3867] = {.lex_state = 12, .external_lex_state = 2}, - [3868] = {.lex_state = 96, .external_lex_state = 5}, - [3869] = {.lex_state = 96, .external_lex_state = 6}, - [3870] = {.lex_state = 15, .external_lex_state = 2}, - [3871] = {.lex_state = 96, .external_lex_state = 5}, - [3872] = {.lex_state = 96, .external_lex_state = 6}, - [3873] = {.lex_state = 96, .external_lex_state = 5}, - [3874] = {.lex_state = 96, .external_lex_state = 5}, - [3875] = {.lex_state = 96, .external_lex_state = 2}, - [3876] = {.lex_state = 96, .external_lex_state = 5}, - [3877] = {.lex_state = 96, .external_lex_state = 5}, - [3878] = {.lex_state = 96, .external_lex_state = 5}, - [3879] = {.lex_state = 96, .external_lex_state = 5}, - [3880] = {.lex_state = 96, .external_lex_state = 5}, - [3881] = {.lex_state = 96, .external_lex_state = 2}, - [3882] = {.lex_state = 96, .external_lex_state = 5}, - [3883] = {.lex_state = 96, .external_lex_state = 5}, - [3884] = {.lex_state = 96, .external_lex_state = 2}, - [3885] = {.lex_state = 96, .external_lex_state = 5}, - [3886] = {.lex_state = 96, .external_lex_state = 5}, - [3887] = {.lex_state = 96, .external_lex_state = 5}, - [3888] = {.lex_state = 96, .external_lex_state = 2}, - [3889] = {.lex_state = 96, .external_lex_state = 5}, - [3890] = {.lex_state = 96, .external_lex_state = 5}, - [3891] = {.lex_state = 96, .external_lex_state = 5}, - [3892] = {.lex_state = 96, .external_lex_state = 5}, - [3893] = {.lex_state = 96, .external_lex_state = 5}, - [3894] = {.lex_state = 96, .external_lex_state = 2}, - [3895] = {.lex_state = 96, .external_lex_state = 5}, - [3896] = {.lex_state = 96, .external_lex_state = 2}, - [3897] = {.lex_state = 96, .external_lex_state = 5}, - [3898] = {.lex_state = 96, .external_lex_state = 2}, - [3899] = {.lex_state = 12, .external_lex_state = 2}, - [3900] = {.lex_state = 96, .external_lex_state = 5}, - [3901] = {.lex_state = 96, .external_lex_state = 5}, - [3902] = {.lex_state = 96, .external_lex_state = 5}, - [3903] = {.lex_state = 96, .external_lex_state = 5}, - [3904] = {.lex_state = 96, .external_lex_state = 5}, - [3905] = {.lex_state = 96, .external_lex_state = 5}, - [3906] = {.lex_state = 96, .external_lex_state = 5}, - [3907] = {.lex_state = 96, .external_lex_state = 5}, - [3908] = {.lex_state = 96, .external_lex_state = 5}, - [3909] = {.lex_state = 18, .external_lex_state = 8}, - [3910] = {.lex_state = 96, .external_lex_state = 5}, - [3911] = {.lex_state = 96, .external_lex_state = 5}, - [3912] = {.lex_state = 96, .external_lex_state = 5}, - [3913] = {.lex_state = 96, .external_lex_state = 5}, - [3914] = {.lex_state = 96, .external_lex_state = 5}, - [3915] = {.lex_state = 96, .external_lex_state = 5}, - [3916] = {.lex_state = 96, .external_lex_state = 2}, - [3917] = {.lex_state = 96, .external_lex_state = 2}, - [3918] = {.lex_state = 96, .external_lex_state = 5}, - [3919] = {.lex_state = 96, .external_lex_state = 5}, - [3920] = {.lex_state = 96, .external_lex_state = 6}, - [3921] = {.lex_state = 96, .external_lex_state = 5}, - [3922] = {.lex_state = 96, .external_lex_state = 2}, - [3923] = {.lex_state = 96, .external_lex_state = 5}, - [3924] = {.lex_state = 12, .external_lex_state = 2}, - [3925] = {.lex_state = 96, .external_lex_state = 2}, - [3926] = {.lex_state = 96, .external_lex_state = 2}, - [3927] = {.lex_state = 18, .external_lex_state = 8}, - [3928] = {.lex_state = 96, .external_lex_state = 5}, - [3929] = {.lex_state = 96, .external_lex_state = 5}, - [3930] = {.lex_state = 96, .external_lex_state = 5}, - [3931] = {.lex_state = 96, .external_lex_state = 5}, - [3932] = {.lex_state = 96, .external_lex_state = 5}, - [3933] = {.lex_state = 96, .external_lex_state = 5}, - [3934] = {.lex_state = 96, .external_lex_state = 2}, - [3935] = {.lex_state = 4, .external_lex_state = 2}, - [3936] = {.lex_state = 96, .external_lex_state = 5}, - [3937] = {.lex_state = 96, .external_lex_state = 5}, - [3938] = {.lex_state = 96, .external_lex_state = 5}, - [3939] = {.lex_state = 96, .external_lex_state = 5}, - [3940] = {.lex_state = 96, .external_lex_state = 5}, - [3941] = {.lex_state = 96, .external_lex_state = 5}, - [3942] = {.lex_state = 96, .external_lex_state = 5}, - [3943] = {.lex_state = 96, .external_lex_state = 5}, - [3944] = {.lex_state = 96, .external_lex_state = 5}, - [3945] = {.lex_state = 96, .external_lex_state = 5}, - [3946] = {.lex_state = 96, .external_lex_state = 5}, - [3947] = {.lex_state = 96, .external_lex_state = 6}, - [3948] = {.lex_state = 96, .external_lex_state = 5}, - [3949] = {.lex_state = 96, .external_lex_state = 5}, - [3950] = {.lex_state = 96, .external_lex_state = 5}, - [3951] = {.lex_state = 96, .external_lex_state = 5}, - [3952] = {.lex_state = 96, .external_lex_state = 6}, - [3953] = {.lex_state = 96, .external_lex_state = 5}, - [3954] = {.lex_state = 96, .external_lex_state = 5}, - [3955] = {.lex_state = 96, .external_lex_state = 5}, - [3956] = {.lex_state = 96, .external_lex_state = 2}, - [3957] = {.lex_state = 96, .external_lex_state = 2}, - [3958] = {.lex_state = 96, .external_lex_state = 2}, - [3959] = {.lex_state = 96, .external_lex_state = 5}, - [3960] = {.lex_state = 12, .external_lex_state = 2}, - [3961] = {.lex_state = 96, .external_lex_state = 5}, - [3962] = {.lex_state = 96, .external_lex_state = 5}, - [3963] = {.lex_state = 96, .external_lex_state = 6}, - [3964] = {.lex_state = 96, .external_lex_state = 5}, - [3965] = {.lex_state = 96, .external_lex_state = 5}, - [3966] = {.lex_state = 96, .external_lex_state = 5}, - [3967] = {.lex_state = 96, .external_lex_state = 5}, - [3968] = {.lex_state = 12, .external_lex_state = 2}, - [3969] = {.lex_state = 96, .external_lex_state = 5}, - [3970] = {.lex_state = 96, .external_lex_state = 5}, - [3971] = {.lex_state = 96, .external_lex_state = 2}, - [3972] = {.lex_state = 96, .external_lex_state = 5}, - [3973] = {.lex_state = 96, .external_lex_state = 5}, - [3974] = {.lex_state = 96, .external_lex_state = 5}, - [3975] = {.lex_state = 96, .external_lex_state = 5}, - [3976] = {.lex_state = 96, .external_lex_state = 5}, - [3977] = {.lex_state = 96, .external_lex_state = 5}, - [3978] = {.lex_state = 96, .external_lex_state = 5}, - [3979] = {.lex_state = 12, .external_lex_state = 2}, - [3980] = {.lex_state = 96, .external_lex_state = 5}, - [3981] = {.lex_state = 96, .external_lex_state = 5}, - [3982] = {.lex_state = 96, .external_lex_state = 5}, - [3983] = {.lex_state = 96, .external_lex_state = 5}, + [3818] = {.lex_state = 13, .external_lex_state = 2}, + [3819] = {.lex_state = 95, .external_lex_state = 6}, + [3820] = {.lex_state = 95, .external_lex_state = 2}, + [3821] = {.lex_state = 14, .external_lex_state = 2}, + [3822] = {.lex_state = 95, .external_lex_state = 2}, + [3823] = {.lex_state = 95, .external_lex_state = 5}, + [3824] = {.lex_state = 95, .external_lex_state = 6}, + [3825] = {.lex_state = 95, .external_lex_state = 6}, + [3826] = {.lex_state = 95, .external_lex_state = 6}, + [3827] = {.lex_state = 95, .external_lex_state = 6}, + [3828] = {.lex_state = 95, .external_lex_state = 6}, + [3829] = {.lex_state = 95, .external_lex_state = 5}, + [3830] = {.lex_state = 95, .external_lex_state = 6}, + [3831] = {.lex_state = 95, .external_lex_state = 5}, + [3832] = {.lex_state = 95, .external_lex_state = 5}, + [3833] = {.lex_state = 95, .external_lex_state = 5}, + [3834] = {.lex_state = 95, .external_lex_state = 6}, + [3835] = {.lex_state = 13, .external_lex_state = 2}, + [3836] = {.lex_state = 95, .external_lex_state = 6}, + [3837] = {.lex_state = 13, .external_lex_state = 2}, + [3838] = {.lex_state = 95, .external_lex_state = 5}, + [3839] = {.lex_state = 95, .external_lex_state = 5}, + [3840] = {.lex_state = 13, .external_lex_state = 2}, + [3841] = {.lex_state = 14, .external_lex_state = 2}, + [3842] = {.lex_state = 11, .external_lex_state = 2}, + [3843] = {.lex_state = 95, .external_lex_state = 5}, + [3844] = {.lex_state = 95, .external_lex_state = 6}, + [3845] = {.lex_state = 95, .external_lex_state = 6}, + [3846] = {.lex_state = 95, .external_lex_state = 5}, + [3847] = {.lex_state = 95, .external_lex_state = 5}, + [3848] = {.lex_state = 14, .external_lex_state = 2}, + [3849] = {.lex_state = 14, .external_lex_state = 2}, + [3850] = {.lex_state = 95, .external_lex_state = 5}, + [3851] = {.lex_state = 14, .external_lex_state = 2}, + [3852] = {.lex_state = 95, .external_lex_state = 6}, + [3853] = {.lex_state = 95, .external_lex_state = 2}, + [3854] = {.lex_state = 95, .external_lex_state = 5}, + [3855] = {.lex_state = 95, .external_lex_state = 5}, + [3856] = {.lex_state = 95, .external_lex_state = 6}, + [3857] = {.lex_state = 95, .external_lex_state = 6}, + [3858] = {.lex_state = 95, .external_lex_state = 5}, + [3859] = {.lex_state = 95, .external_lex_state = 5}, + [3860] = {.lex_state = 95, .external_lex_state = 5}, + [3861] = {.lex_state = 95, .external_lex_state = 5}, + [3862] = {.lex_state = 95, .external_lex_state = 6}, + [3863] = {.lex_state = 95, .external_lex_state = 6}, + [3864] = {.lex_state = 95, .external_lex_state = 5}, + [3865] = {.lex_state = 95, .external_lex_state = 6}, + [3866] = {.lex_state = 95, .external_lex_state = 5}, + [3867] = {.lex_state = 95, .external_lex_state = 6}, + [3868] = {.lex_state = 95, .external_lex_state = 5}, + [3869] = {.lex_state = 13, .external_lex_state = 2}, + [3870] = {.lex_state = 14, .external_lex_state = 2}, + [3871] = {.lex_state = 95, .external_lex_state = 6}, + [3872] = {.lex_state = 95, .external_lex_state = 5}, + [3873] = {.lex_state = 95, .external_lex_state = 5}, + [3874] = {.lex_state = 95, .external_lex_state = 5}, + [3875] = {.lex_state = 13, .external_lex_state = 2}, + [3876] = {.lex_state = 14, .external_lex_state = 2}, + [3877] = {.lex_state = 95, .external_lex_state = 5}, + [3878] = {.lex_state = 95, .external_lex_state = 5}, + [3879] = {.lex_state = 95, .external_lex_state = 6}, + [3880] = {.lex_state = 95, .external_lex_state = 5}, + [3881] = {.lex_state = 95, .external_lex_state = 5}, + [3882] = {.lex_state = 12, .external_lex_state = 2}, + [3883] = {.lex_state = 95, .external_lex_state = 5}, + [3884] = {.lex_state = 95, .external_lex_state = 6}, + [3885] = {.lex_state = 95, .external_lex_state = 6}, + [3886] = {.lex_state = 95, .external_lex_state = 5}, + [3887] = {.lex_state = 95, .external_lex_state = 5}, + [3888] = {.lex_state = 12, .external_lex_state = 2}, + [3889] = {.lex_state = 11, .external_lex_state = 2}, + [3890] = {.lex_state = 95, .external_lex_state = 5}, + [3891] = {.lex_state = 95, .external_lex_state = 6}, + [3892] = {.lex_state = 95, .external_lex_state = 6}, + [3893] = {.lex_state = 95, .external_lex_state = 5}, + [3894] = {.lex_state = 95, .external_lex_state = 6}, + [3895] = {.lex_state = 14, .external_lex_state = 2}, + [3896] = {.lex_state = 13, .external_lex_state = 2}, + [3897] = {.lex_state = 95, .external_lex_state = 6}, + [3898] = {.lex_state = 95, .external_lex_state = 6}, + [3899] = {.lex_state = 95, .external_lex_state = 2}, + [3900] = {.lex_state = 13, .external_lex_state = 2}, + [3901] = {.lex_state = 95, .external_lex_state = 6}, + [3902] = {.lex_state = 95, .external_lex_state = 6}, + [3903] = {.lex_state = 95, .external_lex_state = 5}, + [3904] = {.lex_state = 95, .external_lex_state = 5}, + [3905] = {.lex_state = 95, .external_lex_state = 5}, + [3906] = {.lex_state = 95, .external_lex_state = 6}, + [3907] = {.lex_state = 95, .external_lex_state = 5}, + [3908] = {.lex_state = 95, .external_lex_state = 6}, + [3909] = {.lex_state = 17, .external_lex_state = 7}, + [3910] = {.lex_state = 17, .external_lex_state = 2}, + [3911] = {.lex_state = 95, .external_lex_state = 2}, + [3912] = {.lex_state = 17, .external_lex_state = 2}, + [3913] = {.lex_state = 17, .external_lex_state = 7}, + [3914] = {.lex_state = 95, .external_lex_state = 2}, + [3915] = {.lex_state = 95, .external_lex_state = 2}, + [3916] = {.lex_state = 95, .external_lex_state = 6}, + [3917] = {.lex_state = 17, .external_lex_state = 7}, + [3918] = {.lex_state = 17, .external_lex_state = 7}, + [3919] = {.lex_state = 12, .external_lex_state = 2}, + [3920] = {.lex_state = 95, .external_lex_state = 2}, + [3921] = {.lex_state = 17, .external_lex_state = 2}, + [3922] = {.lex_state = 17, .external_lex_state = 2}, + [3923] = {.lex_state = 95, .external_lex_state = 5}, + [3924] = {.lex_state = 95, .external_lex_state = 5}, + [3925] = {.lex_state = 95, .external_lex_state = 5}, + [3926] = {.lex_state = 17, .external_lex_state = 2}, + [3927] = {.lex_state = 95, .external_lex_state = 2}, + [3928] = {.lex_state = 17, .external_lex_state = 2}, + [3929] = {.lex_state = 95, .external_lex_state = 2}, + [3930] = {.lex_state = 95, .external_lex_state = 2}, + [3931] = {.lex_state = 95, .external_lex_state = 2}, + [3932] = {.lex_state = 95, .external_lex_state = 2}, + [3933] = {.lex_state = 14, .external_lex_state = 2}, + [3934] = {.lex_state = 95, .external_lex_state = 5}, + [3935] = {.lex_state = 17, .external_lex_state = 7}, + [3936] = {.lex_state = 14, .external_lex_state = 2}, + [3937] = {.lex_state = 14, .external_lex_state = 2}, + [3938] = {.lex_state = 17, .external_lex_state = 7}, + [3939] = {.lex_state = 95, .external_lex_state = 5}, + [3940] = {.lex_state = 95, .external_lex_state = 2}, + [3941] = {.lex_state = 95, .external_lex_state = 5}, + [3942] = {.lex_state = 95, .external_lex_state = 2}, + [3943] = {.lex_state = 17, .external_lex_state = 2}, + [3944] = {.lex_state = 17, .external_lex_state = 2}, + [3945] = {.lex_state = 17, .external_lex_state = 2}, + [3946] = {.lex_state = 95, .external_lex_state = 2}, + [3947] = {.lex_state = 17, .external_lex_state = 7}, + [3948] = {.lex_state = 17, .external_lex_state = 7}, + [3949] = {.lex_state = 95, .external_lex_state = 5}, + [3950] = {.lex_state = 95, .external_lex_state = 5}, + [3951] = {.lex_state = 95, .external_lex_state = 5}, + [3952] = {.lex_state = 95, .external_lex_state = 5}, + [3953] = {.lex_state = 95, .external_lex_state = 5}, + [3954] = {.lex_state = 95, .external_lex_state = 5}, + [3955] = {.lex_state = 95, .external_lex_state = 2}, + [3956] = {.lex_state = 95, .external_lex_state = 5}, + [3957] = {.lex_state = 95, .external_lex_state = 5}, + [3958] = {.lex_state = 95, .external_lex_state = 2}, + [3959] = {.lex_state = 95, .external_lex_state = 5}, + [3960] = {.lex_state = 95, .external_lex_state = 5}, + [3961] = {.lex_state = 95, .external_lex_state = 5}, + [3962] = {.lex_state = 95, .external_lex_state = 5}, + [3963] = {.lex_state = 95, .external_lex_state = 5}, + [3964] = {.lex_state = 95, .external_lex_state = 2}, + [3965] = {.lex_state = 95, .external_lex_state = 2}, + [3966] = {.lex_state = 95, .external_lex_state = 5}, + [3967] = {.lex_state = 95, .external_lex_state = 5}, + [3968] = {.lex_state = 95, .external_lex_state = 5}, + [3969] = {.lex_state = 95, .external_lex_state = 5}, + [3970] = {.lex_state = 95, .external_lex_state = 5}, + [3971] = {.lex_state = 12, .external_lex_state = 2}, + [3972] = {.lex_state = 95, .external_lex_state = 5}, + [3973] = {.lex_state = 95, .external_lex_state = 2}, + [3974] = {.lex_state = 95, .external_lex_state = 5}, + [3975] = {.lex_state = 95, .external_lex_state = 5}, + [3976] = {.lex_state = 12, .external_lex_state = 2}, + [3977] = {.lex_state = 95, .external_lex_state = 5}, + [3978] = {.lex_state = 95, .external_lex_state = 5}, + [3979] = {.lex_state = 95, .external_lex_state = 2}, + [3980] = {.lex_state = 95, .external_lex_state = 2}, + [3981] = {.lex_state = 95, .external_lex_state = 5}, + [3982] = {.lex_state = 95, .external_lex_state = 5}, + [3983] = {.lex_state = 12, .external_lex_state = 2}, [3984] = {.lex_state = 12, .external_lex_state = 2}, - [3985] = {.lex_state = 12, .external_lex_state = 2}, - [3986] = {.lex_state = 96, .external_lex_state = 5}, - [3987] = {.lex_state = 12, .external_lex_state = 2}, - [3988] = {.lex_state = 96, .external_lex_state = 5}, - [3989] = {.lex_state = 12, .external_lex_state = 2}, - [3990] = {.lex_state = 96, .external_lex_state = 5}, - [3991] = {.lex_state = 12, .external_lex_state = 2}, - [3992] = {.lex_state = 96, .external_lex_state = 5}, - [3993] = {.lex_state = 96, .external_lex_state = 5}, - [3994] = {.lex_state = 96, .external_lex_state = 5}, - [3995] = {.lex_state = 96, .external_lex_state = 5}, - [3996] = {.lex_state = 96, .external_lex_state = 5}, - [3997] = {.lex_state = 96, .external_lex_state = 5}, - [3998] = {.lex_state = 96, .external_lex_state = 5}, - [3999] = {.lex_state = 96, .external_lex_state = 5}, - [4000] = {.lex_state = 96, .external_lex_state = 5}, - [4001] = {.lex_state = 96, .external_lex_state = 5}, - [4002] = {.lex_state = 96, .external_lex_state = 5}, - [4003] = {.lex_state = 96, .external_lex_state = 5}, - [4004] = {.lex_state = 96, .external_lex_state = 5}, - [4005] = {.lex_state = 12, .external_lex_state = 2}, - [4006] = {.lex_state = 96, .external_lex_state = 5}, - [4007] = {.lex_state = 96, .external_lex_state = 2}, - [4008] = {.lex_state = 96, .external_lex_state = 5}, - [4009] = {.lex_state = 96, .external_lex_state = 2}, - [4010] = {.lex_state = 12, .external_lex_state = 2}, - [4011] = {.lex_state = 96, .external_lex_state = 5}, - [4012] = {.lex_state = 96, .external_lex_state = 2}, - [4013] = {.lex_state = 96, .external_lex_state = 2}, - [4014] = {.lex_state = 18, .external_lex_state = 8}, - [4015] = {.lex_state = 96, .external_lex_state = 5}, - [4016] = {.lex_state = 96, .external_lex_state = 6}, - [4017] = {.lex_state = 96, .external_lex_state = 5}, - [4018] = {.lex_state = 18, .external_lex_state = 8}, - [4019] = {.lex_state = 96, .external_lex_state = 5}, - [4020] = {.lex_state = 96, .external_lex_state = 6}, - [4021] = {.lex_state = 96, .external_lex_state = 5}, - [4022] = {.lex_state = 96, .external_lex_state = 5}, - [4023] = {.lex_state = 96, .external_lex_state = 2}, - [4024] = {.lex_state = 96, .external_lex_state = 5}, - [4025] = {.lex_state = 96, .external_lex_state = 2}, - [4026] = {.lex_state = 96, .external_lex_state = 2}, - [4027] = {.lex_state = 96, .external_lex_state = 5}, - [4028] = {.lex_state = 96, .external_lex_state = 5}, - [4029] = {.lex_state = 96, .external_lex_state = 5}, - [4030] = {.lex_state = 96, .external_lex_state = 5}, - [4031] = {.lex_state = 96, .external_lex_state = 5}, - [4032] = {.lex_state = 96, .external_lex_state = 5}, - [4033] = {.lex_state = 96, .external_lex_state = 5}, - [4034] = {.lex_state = 18, .external_lex_state = 8}, - [4035] = {.lex_state = 96, .external_lex_state = 5}, - [4036] = {.lex_state = 96, .external_lex_state = 5}, - [4037] = {.lex_state = 18, .external_lex_state = 8}, - [4038] = {.lex_state = 12, .external_lex_state = 2}, + [3985] = {.lex_state = 95, .external_lex_state = 5}, + [3986] = {.lex_state = 95, .external_lex_state = 5}, + [3987] = {.lex_state = 95, .external_lex_state = 5}, + [3988] = {.lex_state = 95, .external_lex_state = 5}, + [3989] = {.lex_state = 95, .external_lex_state = 2}, + [3990] = {.lex_state = 95, .external_lex_state = 5}, + [3991] = {.lex_state = 95, .external_lex_state = 5}, + [3992] = {.lex_state = 95, .external_lex_state = 5}, + [3993] = {.lex_state = 95, .external_lex_state = 2}, + [3994] = {.lex_state = 95, .external_lex_state = 5}, + [3995] = {.lex_state = 95, .external_lex_state = 5}, + [3996] = {.lex_state = 95, .external_lex_state = 5}, + [3997] = {.lex_state = 95, .external_lex_state = 5}, + [3998] = {.lex_state = 95, .external_lex_state = 5}, + [3999] = {.lex_state = 95, .external_lex_state = 5}, + [4000] = {.lex_state = 95, .external_lex_state = 5}, + [4001] = {.lex_state = 95, .external_lex_state = 2}, + [4002] = {.lex_state = 95, .external_lex_state = 2}, + [4003] = {.lex_state = 95, .external_lex_state = 5}, + [4004] = {.lex_state = 12, .external_lex_state = 2}, + [4005] = {.lex_state = 95, .external_lex_state = 2}, + [4006] = {.lex_state = 95, .external_lex_state = 5}, + [4007] = {.lex_state = 95, .external_lex_state = 5}, + [4008] = {.lex_state = 95, .external_lex_state = 2}, + [4009] = {.lex_state = 95, .external_lex_state = 5}, + [4010] = {.lex_state = 95, .external_lex_state = 2}, + [4011] = {.lex_state = 95, .external_lex_state = 2}, + [4012] = {.lex_state = 95, .external_lex_state = 5}, + [4013] = {.lex_state = 95, .external_lex_state = 2}, + [4014] = {.lex_state = 12, .external_lex_state = 2}, + [4015] = {.lex_state = 95, .external_lex_state = 5}, + [4016] = {.lex_state = 95, .external_lex_state = 5}, + [4017] = {.lex_state = 95, .external_lex_state = 5}, + [4018] = {.lex_state = 95, .external_lex_state = 5}, + [4019] = {.lex_state = 95, .external_lex_state = 5}, + [4020] = {.lex_state = 95, .external_lex_state = 5}, + [4021] = {.lex_state = 95, .external_lex_state = 5}, + [4022] = {.lex_state = 95, .external_lex_state = 5}, + [4023] = {.lex_state = 95, .external_lex_state = 5}, + [4024] = {.lex_state = 95, .external_lex_state = 5}, + [4025] = {.lex_state = 95, .external_lex_state = 5}, + [4026] = {.lex_state = 95, .external_lex_state = 5}, + [4027] = {.lex_state = 95, .external_lex_state = 5}, + [4028] = {.lex_state = 95, .external_lex_state = 5}, + [4029] = {.lex_state = 95, .external_lex_state = 5}, + [4030] = {.lex_state = 95, .external_lex_state = 5}, + [4031] = {.lex_state = 95, .external_lex_state = 5}, + [4032] = {.lex_state = 95, .external_lex_state = 5}, + [4033] = {.lex_state = 95, .external_lex_state = 5}, + [4034] = {.lex_state = 95, .external_lex_state = 5}, + [4035] = {.lex_state = 12, .external_lex_state = 2}, + [4036] = {.lex_state = 95, .external_lex_state = 5}, + [4037] = {.lex_state = 95, .external_lex_state = 5}, + [4038] = {.lex_state = 95, .external_lex_state = 5}, [4039] = {.lex_state = 12, .external_lex_state = 2}, - [4040] = {.lex_state = 96, .external_lex_state = 6}, - [4041] = {.lex_state = 96, .external_lex_state = 5}, - [4042] = {.lex_state = 96, .external_lex_state = 5}, - [4043] = {.lex_state = 96, .external_lex_state = 5}, - [4044] = {.lex_state = 96, .external_lex_state = 5}, - [4045] = {.lex_state = 96, .external_lex_state = 5}, - [4046] = {.lex_state = 96, .external_lex_state = 5}, - [4047] = {.lex_state = 96, .external_lex_state = 5}, - [4048] = {.lex_state = 96, .external_lex_state = 5}, - [4049] = {.lex_state = 96, .external_lex_state = 5}, - [4050] = {.lex_state = 96, .external_lex_state = 5}, - [4051] = {.lex_state = 18, .external_lex_state = 8}, - [4052] = {.lex_state = 12, .external_lex_state = 2}, - [4053] = {.lex_state = 96, .external_lex_state = 2}, - [4054] = {.lex_state = 96, .external_lex_state = 5}, - [4055] = {.lex_state = 18, .external_lex_state = 8}, - [4056] = {.lex_state = 96, .external_lex_state = 5}, - [4057] = {.lex_state = 96, .external_lex_state = 5}, - [4058] = {.lex_state = 12, .external_lex_state = 2}, - [4059] = {.lex_state = 96, .external_lex_state = 5}, - [4060] = {.lex_state = 96, .external_lex_state = 5}, - [4061] = {.lex_state = 96, .external_lex_state = 5}, - [4062] = {.lex_state = 96, .external_lex_state = 5}, - [4063] = {.lex_state = 96, .external_lex_state = 5}, - [4064] = {.lex_state = 96, .external_lex_state = 2}, - [4065] = {.lex_state = 96, .external_lex_state = 5}, - [4066] = {.lex_state = 96, .external_lex_state = 2}, - [4067] = {.lex_state = 96, .external_lex_state = 5}, - [4068] = {.lex_state = 12, .external_lex_state = 2}, - [4069] = {.lex_state = 96, .external_lex_state = 5}, - [4070] = {.lex_state = 96, .external_lex_state = 5}, - [4071] = {.lex_state = 96, .external_lex_state = 5}, - [4072] = {.lex_state = 12, .external_lex_state = 2}, - [4073] = {.lex_state = 96, .external_lex_state = 5}, - [4074] = {.lex_state = 96, .external_lex_state = 5}, - [4075] = {.lex_state = 96, .external_lex_state = 5}, - [4076] = {.lex_state = 96, .external_lex_state = 5}, - [4077] = {.lex_state = 96, .external_lex_state = 5}, - [4078] = {.lex_state = 96, .external_lex_state = 5}, - [4079] = {.lex_state = 96, .external_lex_state = 5}, - [4080] = {.lex_state = 96, .external_lex_state = 5}, - [4081] = {.lex_state = 96, .external_lex_state = 5}, - [4082] = {.lex_state = 96, .external_lex_state = 5}, - [4083] = {.lex_state = 96, .external_lex_state = 5}, - [4084] = {.lex_state = 96, .external_lex_state = 5}, - [4085] = {.lex_state = 12, .external_lex_state = 2}, - [4086] = {.lex_state = 96, .external_lex_state = 5}, - [4087] = {.lex_state = 96, .external_lex_state = 5}, - [4088] = {.lex_state = 12, .external_lex_state = 2}, - [4089] = {.lex_state = 12, .external_lex_state = 2}, - [4090] = {.lex_state = 96, .external_lex_state = 5}, - [4091] = {.lex_state = 96, .external_lex_state = 2}, - [4092] = {.lex_state = 12, .external_lex_state = 2}, - [4093] = {.lex_state = 96, .external_lex_state = 5}, - [4094] = {.lex_state = 12, .external_lex_state = 2}, - [4095] = {.lex_state = 96, .external_lex_state = 2}, - [4096] = {.lex_state = 12, .external_lex_state = 2}, - [4097] = {.lex_state = 96, .external_lex_state = 5}, - [4098] = {.lex_state = 12, .external_lex_state = 2}, - [4099] = {.lex_state = 96, .external_lex_state = 5}, + [4040] = {.lex_state = 95, .external_lex_state = 5}, + [4041] = {.lex_state = 95, .external_lex_state = 5}, + [4042] = {.lex_state = 95, .external_lex_state = 5}, + [4043] = {.lex_state = 95, .external_lex_state = 5}, + [4044] = {.lex_state = 95, .external_lex_state = 5}, + [4045] = {.lex_state = 95, .external_lex_state = 5}, + [4046] = {.lex_state = 95, .external_lex_state = 5}, + [4047] = {.lex_state = 95, .external_lex_state = 2}, + [4048] = {.lex_state = 95, .external_lex_state = 5}, + [4049] = {.lex_state = 95, .external_lex_state = 5}, + [4050] = {.lex_state = 95, .external_lex_state = 5}, + [4051] = {.lex_state = 12, .external_lex_state = 2}, + [4052] = {.lex_state = 95, .external_lex_state = 5}, + [4053] = {.lex_state = 95, .external_lex_state = 2}, + [4054] = {.lex_state = 95, .external_lex_state = 5}, + [4055] = {.lex_state = 95, .external_lex_state = 5}, + [4056] = {.lex_state = 95, .external_lex_state = 2}, + [4057] = {.lex_state = 95, .external_lex_state = 5}, + [4058] = {.lex_state = 95, .external_lex_state = 5}, + [4059] = {.lex_state = 95, .external_lex_state = 5}, + [4060] = {.lex_state = 95, .external_lex_state = 2}, + [4061] = {.lex_state = 95, .external_lex_state = 5}, + [4062] = {.lex_state = 95, .external_lex_state = 2}, + [4063] = {.lex_state = 95, .external_lex_state = 5}, + [4064] = {.lex_state = 95, .external_lex_state = 5}, + [4065] = {.lex_state = 95, .external_lex_state = 5}, + [4066] = {.lex_state = 95, .external_lex_state = 5}, + [4067] = {.lex_state = 95, .external_lex_state = 2}, + [4068] = {.lex_state = 95, .external_lex_state = 5}, + [4069] = {.lex_state = 95, .external_lex_state = 5}, + [4070] = {.lex_state = 95, .external_lex_state = 2}, + [4071] = {.lex_state = 12, .external_lex_state = 2}, + [4072] = {.lex_state = 95, .external_lex_state = 2}, + [4073] = {.lex_state = 95, .external_lex_state = 5}, + [4074] = {.lex_state = 95, .external_lex_state = 5}, + [4075] = {.lex_state = 95, .external_lex_state = 2}, + [4076] = {.lex_state = 95, .external_lex_state = 5}, + [4077] = {.lex_state = 95, .external_lex_state = 5}, + [4078] = {.lex_state = 95, .external_lex_state = 5}, + [4079] = {.lex_state = 95, .external_lex_state = 5}, + [4080] = {.lex_state = 95, .external_lex_state = 5}, + [4081] = {.lex_state = 95, .external_lex_state = 5}, + [4082] = {.lex_state = 95, .external_lex_state = 5}, + [4083] = {.lex_state = 95, .external_lex_state = 2}, + [4084] = {.lex_state = 95, .external_lex_state = 5}, + [4085] = {.lex_state = 95, .external_lex_state = 5}, + [4086] = {.lex_state = 95, .external_lex_state = 5}, + [4087] = {.lex_state = 95, .external_lex_state = 5}, + [4088] = {.lex_state = 95, .external_lex_state = 2}, + [4089] = {.lex_state = 95, .external_lex_state = 5}, + [4090] = {.lex_state = 95, .external_lex_state = 5}, + [4091] = {.lex_state = 95, .external_lex_state = 5}, + [4092] = {.lex_state = 95, .external_lex_state = 2}, + [4093] = {.lex_state = 95, .external_lex_state = 5}, + [4094] = {.lex_state = 95, .external_lex_state = 5}, + [4095] = {.lex_state = 95, .external_lex_state = 5}, + [4096] = {.lex_state = 95, .external_lex_state = 5}, + [4097] = {.lex_state = 95, .external_lex_state = 2}, + [4098] = {.lex_state = 95, .external_lex_state = 5}, + [4099] = {.lex_state = 95, .external_lex_state = 5}, [4100] = {.lex_state = 12, .external_lex_state = 2}, - [4101] = {.lex_state = 96, .external_lex_state = 5}, - [4102] = {.lex_state = 96, .external_lex_state = 5}, - [4103] = {.lex_state = 96, .external_lex_state = 5}, - [4104] = {.lex_state = 96, .external_lex_state = 5}, - [4105] = {.lex_state = 96, .external_lex_state = 2}, - [4106] = {.lex_state = 96, .external_lex_state = 5}, - [4107] = {.lex_state = 96, .external_lex_state = 2}, - [4108] = {.lex_state = 96, .external_lex_state = 5}, - [4109] = {.lex_state = 96, .external_lex_state = 5}, - [4110] = {.lex_state = 96, .external_lex_state = 5}, - [4111] = {.lex_state = 96, .external_lex_state = 5}, - [4112] = {.lex_state = 18, .external_lex_state = 8}, - [4113] = {.lex_state = 96, .external_lex_state = 5}, + [4101] = {.lex_state = 95, .external_lex_state = 2}, + [4102] = {.lex_state = 12, .external_lex_state = 2}, + [4103] = {.lex_state = 95, .external_lex_state = 5}, + [4104] = {.lex_state = 95, .external_lex_state = 5}, + [4105] = {.lex_state = 95, .external_lex_state = 5}, + [4106] = {.lex_state = 95, .external_lex_state = 5}, + [4107] = {.lex_state = 95, .external_lex_state = 2}, + [4108] = {.lex_state = 95, .external_lex_state = 5}, + [4109] = {.lex_state = 95, .external_lex_state = 5}, + [4110] = {.lex_state = 95, .external_lex_state = 5}, + [4111] = {.lex_state = 95, .external_lex_state = 2}, + [4112] = {.lex_state = 12, .external_lex_state = 2}, + [4113] = {.lex_state = 95, .external_lex_state = 5}, [4114] = {.lex_state = 12, .external_lex_state = 2}, - [4115] = {.lex_state = 12, .external_lex_state = 2}, - [4116] = {.lex_state = 12, .external_lex_state = 2}, - [4117] = {.lex_state = 12, .external_lex_state = 2}, - [4118] = {.lex_state = 96, .external_lex_state = 5}, - [4119] = {.lex_state = 12, .external_lex_state = 2}, - [4120] = {.lex_state = 96, .external_lex_state = 5}, - [4121] = {.lex_state = 96, .external_lex_state = 5}, - [4122] = {.lex_state = 96, .external_lex_state = 2}, - [4123] = {.lex_state = 96, .external_lex_state = 2}, - [4124] = {.lex_state = 96, .external_lex_state = 5}, - [4125] = {.lex_state = 12, .external_lex_state = 2}, - [4126] = {.lex_state = 12, .external_lex_state = 2}, - [4127] = {.lex_state = 96, .external_lex_state = 2}, - [4128] = {.lex_state = 96, .external_lex_state = 5}, - [4129] = {.lex_state = 96, .external_lex_state = 5}, - [4130] = {.lex_state = 96, .external_lex_state = 2}, - [4131] = {.lex_state = 96, .external_lex_state = 5}, - [4132] = {.lex_state = 12, .external_lex_state = 2}, - [4133] = {.lex_state = 12, .external_lex_state = 2}, - [4134] = {.lex_state = 96, .external_lex_state = 5}, - [4135] = {.lex_state = 12, .external_lex_state = 2}, - [4136] = {.lex_state = 96, .external_lex_state = 2}, - [4137] = {.lex_state = 18, .external_lex_state = 8}, - [4138] = {.lex_state = 12, .external_lex_state = 2}, - [4139] = {.lex_state = 96, .external_lex_state = 2}, - [4140] = {.lex_state = 96, .external_lex_state = 5}, - [4141] = {.lex_state = 96, .external_lex_state = 2}, - [4142] = {.lex_state = 96, .external_lex_state = 5}, - [4143] = {.lex_state = 12, .external_lex_state = 2}, - [4144] = {.lex_state = 96, .external_lex_state = 5}, - [4145] = {.lex_state = 96, .external_lex_state = 5}, - [4146] = {.lex_state = 96, .external_lex_state = 6}, - [4147] = {.lex_state = 96, .external_lex_state = 5}, - [4148] = {.lex_state = 96, .external_lex_state = 5}, - [4149] = {.lex_state = 96, .external_lex_state = 5}, - [4150] = {.lex_state = 96, .external_lex_state = 5}, - [4151] = {.lex_state = 96, .external_lex_state = 5}, - [4152] = {.lex_state = 96, .external_lex_state = 5}, - [4153] = {.lex_state = 96, .external_lex_state = 2}, - [4154] = {.lex_state = 96, .external_lex_state = 5}, - [4155] = {.lex_state = 96, .external_lex_state = 5}, - [4156] = {.lex_state = 96, .external_lex_state = 5}, - [4157] = {.lex_state = 96, .external_lex_state = 2}, - [4158] = {.lex_state = 96, .external_lex_state = 2}, - [4159] = {.lex_state = 96, .external_lex_state = 5}, - [4160] = {.lex_state = 96, .external_lex_state = 5}, + [4115] = {.lex_state = 95, .external_lex_state = 5}, + [4116] = {.lex_state = 95, .external_lex_state = 5}, + [4117] = {.lex_state = 95, .external_lex_state = 5}, + [4118] = {.lex_state = 95, .external_lex_state = 5}, + [4119] = {.lex_state = 95, .external_lex_state = 2}, + [4120] = {.lex_state = 95, .external_lex_state = 2}, + [4121] = {.lex_state = 95, .external_lex_state = 2}, + [4122] = {.lex_state = 12, .external_lex_state = 2}, + [4123] = {.lex_state = 95, .external_lex_state = 2}, + [4124] = {.lex_state = 95, .external_lex_state = 5}, + [4125] = {.lex_state = 95, .external_lex_state = 2}, + [4126] = {.lex_state = 95, .external_lex_state = 2}, + [4127] = {.lex_state = 95, .external_lex_state = 5}, + [4128] = {.lex_state = 12, .external_lex_state = 2}, + [4129] = {.lex_state = 95, .external_lex_state = 5}, + [4130] = {.lex_state = 95, .external_lex_state = 5}, + [4131] = {.lex_state = 95, .external_lex_state = 5}, + [4132] = {.lex_state = 95, .external_lex_state = 5}, + [4133] = {.lex_state = 95, .external_lex_state = 2}, + [4134] = {.lex_state = 95, .external_lex_state = 5}, + [4135] = {.lex_state = 95, .external_lex_state = 5}, + [4136] = {.lex_state = 95, .external_lex_state = 5}, + [4137] = {.lex_state = 95, .external_lex_state = 2}, + [4138] = {.lex_state = 95, .external_lex_state = 2}, + [4139] = {.lex_state = 95, .external_lex_state = 5}, + [4140] = {.lex_state = 95, .external_lex_state = 5}, + [4141] = {.lex_state = 95, .external_lex_state = 2}, + [4142] = {.lex_state = 95, .external_lex_state = 2}, + [4143] = {.lex_state = 95, .external_lex_state = 5}, + [4144] = {.lex_state = 95, .external_lex_state = 2}, + [4145] = {.lex_state = 95, .external_lex_state = 2}, + [4146] = {.lex_state = 95, .external_lex_state = 5}, + [4147] = {.lex_state = 95, .external_lex_state = 5}, + [4148] = {.lex_state = 95, .external_lex_state = 5}, + [4149] = {.lex_state = 95, .external_lex_state = 5}, + [4150] = {.lex_state = 12, .external_lex_state = 2}, + [4151] = {.lex_state = 95, .external_lex_state = 2}, + [4152] = {.lex_state = 95, .external_lex_state = 5}, + [4153] = {.lex_state = 95, .external_lex_state = 5}, + [4154] = {.lex_state = 95, .external_lex_state = 5}, + [4155] = {.lex_state = 95, .external_lex_state = 2}, + [4156] = {.lex_state = 95, .external_lex_state = 2}, + [4157] = {.lex_state = 95, .external_lex_state = 5}, + [4158] = {.lex_state = 95, .external_lex_state = 5}, + [4159] = {.lex_state = 12, .external_lex_state = 2}, + [4160] = {.lex_state = 12, .external_lex_state = 2}, [4161] = {.lex_state = 12, .external_lex_state = 2}, - [4162] = {.lex_state = 12, .external_lex_state = 2}, - [4163] = {.lex_state = 15, .external_lex_state = 2}, - [4164] = {.lex_state = 96, .external_lex_state = 5}, - [4165] = {.lex_state = 12, .external_lex_state = 2}, - [4166] = {.lex_state = 96, .external_lex_state = 5}, - [4167] = {.lex_state = 96, .external_lex_state = 2}, - [4168] = {.lex_state = 96, .external_lex_state = 2}, - [4169] = {.lex_state = 12, .external_lex_state = 2}, - [4170] = {.lex_state = 12, .external_lex_state = 2}, - [4171] = {.lex_state = 96, .external_lex_state = 5}, - [4172] = {.lex_state = 12, .external_lex_state = 2}, - [4173] = {.lex_state = 12, .external_lex_state = 2}, - [4174] = {.lex_state = 96, .external_lex_state = 5}, + [4162] = {.lex_state = 95, .external_lex_state = 2}, + [4163] = {.lex_state = 95, .external_lex_state = 2}, + [4164] = {.lex_state = 95, .external_lex_state = 2}, + [4165] = {.lex_state = 95, .external_lex_state = 2}, + [4166] = {.lex_state = 95, .external_lex_state = 5}, + [4167] = {.lex_state = 95, .external_lex_state = 5}, + [4168] = {.lex_state = 95, .external_lex_state = 5}, + [4169] = {.lex_state = 95, .external_lex_state = 5}, + [4170] = {.lex_state = 95, .external_lex_state = 5}, + [4171] = {.lex_state = 95, .external_lex_state = 5}, + [4172] = {.lex_state = 95, .external_lex_state = 5}, + [4173] = {.lex_state = 95, .external_lex_state = 2}, + [4174] = {.lex_state = 95, .external_lex_state = 2}, [4175] = {.lex_state = 12, .external_lex_state = 2}, - [4176] = {.lex_state = 96, .external_lex_state = 5}, - [4177] = {.lex_state = 96, .external_lex_state = 2}, - [4178] = {.lex_state = 12, .external_lex_state = 2}, - [4179] = {.lex_state = 96, .external_lex_state = 2}, + [4176] = {.lex_state = 12, .external_lex_state = 2}, + [4177] = {.lex_state = 12, .external_lex_state = 2}, + [4178] = {.lex_state = 95, .external_lex_state = 6}, + [4179] = {.lex_state = 12, .external_lex_state = 2}, [4180] = {.lex_state = 12, .external_lex_state = 2}, - [4181] = {.lex_state = 4, .external_lex_state = 2}, - [4182] = {.lex_state = 96, .external_lex_state = 5}, - [4183] = {.lex_state = 96, .external_lex_state = 5}, - [4184] = {.lex_state = 96, .external_lex_state = 2}, - [4185] = {.lex_state = 96, .external_lex_state = 5}, - [4186] = {.lex_state = 96, .external_lex_state = 5}, - [4187] = {.lex_state = 96, .external_lex_state = 5}, - [4188] = {.lex_state = 96, .external_lex_state = 5}, - [4189] = {.lex_state = 12, .external_lex_state = 2}, - [4190] = {.lex_state = 96, .external_lex_state = 5}, - [4191] = {.lex_state = 12, .external_lex_state = 2}, - [4192] = {.lex_state = 96, .external_lex_state = 6}, - [4193] = {.lex_state = 96, .external_lex_state = 5}, - [4194] = {.lex_state = 96, .external_lex_state = 5}, - [4195] = {.lex_state = 96, .external_lex_state = 5}, - [4196] = {.lex_state = 96, .external_lex_state = 5}, - [4197] = {.lex_state = 96, .external_lex_state = 5}, - [4198] = {.lex_state = 96, .external_lex_state = 5}, - [4199] = {.lex_state = 96, .external_lex_state = 5}, - [4200] = {.lex_state = 96, .external_lex_state = 5}, - [4201] = {.lex_state = 96, .external_lex_state = 5}, + [4181] = {.lex_state = 12, .external_lex_state = 2}, + [4182] = {.lex_state = 12, .external_lex_state = 2}, + [4183] = {.lex_state = 95, .external_lex_state = 2}, + [4184] = {.lex_state = 12, .external_lex_state = 2}, + [4185] = {.lex_state = 12, .external_lex_state = 2}, + [4186] = {.lex_state = 12, .external_lex_state = 2}, + [4187] = {.lex_state = 12, .external_lex_state = 2}, + [4188] = {.lex_state = 95, .external_lex_state = 6}, + [4189] = {.lex_state = 95, .external_lex_state = 6}, + [4190] = {.lex_state = 95, .external_lex_state = 2}, + [4191] = {.lex_state = 95, .external_lex_state = 2}, + [4192] = {.lex_state = 12, .external_lex_state = 2}, + [4193] = {.lex_state = 95, .external_lex_state = 2}, + [4194] = {.lex_state = 95, .external_lex_state = 2}, + [4195] = {.lex_state = 14, .external_lex_state = 2}, + [4196] = {.lex_state = 12, .external_lex_state = 2}, + [4197] = {.lex_state = 95, .external_lex_state = 6}, + [4198] = {.lex_state = 12, .external_lex_state = 2}, + [4199] = {.lex_state = 12, .external_lex_state = 2}, + [4200] = {.lex_state = 12, .external_lex_state = 2}, + [4201] = {.lex_state = 12, .external_lex_state = 2}, [4202] = {.lex_state = 12, .external_lex_state = 2}, - [4203] = {.lex_state = 96, .external_lex_state = 5}, - [4204] = {.lex_state = 96, .external_lex_state = 5}, - [4205] = {.lex_state = 96, .external_lex_state = 5}, - [4206] = {.lex_state = 96, .external_lex_state = 5}, - [4207] = {.lex_state = 96, .external_lex_state = 5}, - [4208] = {.lex_state = 96, .external_lex_state = 5}, - [4209] = {.lex_state = 96, .external_lex_state = 5}, - [4210] = {.lex_state = 96, .external_lex_state = 5}, - [4211] = {.lex_state = 96, .external_lex_state = 5}, - [4212] = {.lex_state = 96, .external_lex_state = 5}, - [4213] = {.lex_state = 96, .external_lex_state = 5}, - [4214] = {.lex_state = 96, .external_lex_state = 5}, - [4215] = {.lex_state = 96, .external_lex_state = 5}, - [4216] = {.lex_state = 96, .external_lex_state = 5}, - [4217] = {.lex_state = 96, .external_lex_state = 5}, - [4218] = {.lex_state = 96, .external_lex_state = 5}, - [4219] = {.lex_state = 96, .external_lex_state = 5}, - [4220] = {.lex_state = 96, .external_lex_state = 5}, - [4221] = {.lex_state = 96, .external_lex_state = 5}, - [4222] = {.lex_state = 96, .external_lex_state = 5}, - [4223] = {.lex_state = 96, .external_lex_state = 5}, - [4224] = {.lex_state = 96, .external_lex_state = 5}, - [4225] = {.lex_state = 96, .external_lex_state = 5}, - [4226] = {.lex_state = 96, .external_lex_state = 5}, - [4227] = {.lex_state = 96, .external_lex_state = 5}, - [4228] = {.lex_state = 96, .external_lex_state = 5}, - [4229] = {.lex_state = 96, .external_lex_state = 5}, - [4230] = {.lex_state = 96, .external_lex_state = 5}, + [4203] = {.lex_state = 12, .external_lex_state = 2}, + [4204] = {.lex_state = 12, .external_lex_state = 2}, + [4205] = {.lex_state = 12, .external_lex_state = 2}, + [4206] = {.lex_state = 12, .external_lex_state = 2}, + [4207] = {.lex_state = 95, .external_lex_state = 5}, + [4208] = {.lex_state = 12, .external_lex_state = 2}, + [4209] = {.lex_state = 12, .external_lex_state = 2}, + [4210] = {.lex_state = 12, .external_lex_state = 2}, + [4211] = {.lex_state = 12, .external_lex_state = 2}, + [4212] = {.lex_state = 12, .external_lex_state = 2}, + [4213] = {.lex_state = 12, .external_lex_state = 2}, + [4214] = {.lex_state = 12, .external_lex_state = 2}, + [4215] = {.lex_state = 12, .external_lex_state = 2}, + [4216] = {.lex_state = 12, .external_lex_state = 2}, + [4217] = {.lex_state = 12, .external_lex_state = 2}, + [4218] = {.lex_state = 12, .external_lex_state = 2}, + [4219] = {.lex_state = 12, .external_lex_state = 2}, + [4220] = {.lex_state = 12, .external_lex_state = 2}, + [4221] = {.lex_state = 12, .external_lex_state = 2}, + [4222] = {.lex_state = 12, .external_lex_state = 2}, + [4223] = {.lex_state = 12, .external_lex_state = 2}, + [4224] = {.lex_state = 12, .external_lex_state = 2}, + [4225] = {.lex_state = 12, .external_lex_state = 2}, + [4226] = {.lex_state = 12, .external_lex_state = 2}, + [4227] = {.lex_state = 12, .external_lex_state = 2}, + [4228] = {.lex_state = 12, .external_lex_state = 2}, + [4229] = {.lex_state = 12, .external_lex_state = 2}, + [4230] = {.lex_state = 12, .external_lex_state = 2}, [4231] = {.lex_state = 12, .external_lex_state = 2}, - [4232] = {.lex_state = 96, .external_lex_state = 5}, - [4233] = {.lex_state = 96, .external_lex_state = 5}, - [4234] = {.lex_state = 96, .external_lex_state = 5}, - [4235] = {.lex_state = 96, .external_lex_state = 5}, - [4236] = {.lex_state = 96, .external_lex_state = 5}, - [4237] = {.lex_state = 96, .external_lex_state = 5}, - [4238] = {.lex_state = 96, .external_lex_state = 5}, - [4239] = {.lex_state = 96, .external_lex_state = 5}, - [4240] = {.lex_state = 96, .external_lex_state = 5}, - [4241] = {.lex_state = 96, .external_lex_state = 5}, - [4242] = {.lex_state = 96, .external_lex_state = 5}, - [4243] = {.lex_state = 96, .external_lex_state = 5}, - [4244] = {.lex_state = 96, .external_lex_state = 6}, - [4245] = {.lex_state = 96, .external_lex_state = 5}, - [4246] = {.lex_state = 96, .external_lex_state = 5}, + [4232] = {.lex_state = 12, .external_lex_state = 2}, + [4233] = {.lex_state = 12, .external_lex_state = 2}, + [4234] = {.lex_state = 12, .external_lex_state = 2}, + [4235] = {.lex_state = 12, .external_lex_state = 2}, + [4236] = {.lex_state = 12, .external_lex_state = 2}, + [4237] = {.lex_state = 17, .external_lex_state = 7}, + [4238] = {.lex_state = 12, .external_lex_state = 2}, + [4239] = {.lex_state = 12, .external_lex_state = 2}, + [4240] = {.lex_state = 12, .external_lex_state = 2}, + [4241] = {.lex_state = 12, .external_lex_state = 2}, + [4242] = {.lex_state = 95, .external_lex_state = 2}, + [4243] = {.lex_state = 12, .external_lex_state = 2}, + [4244] = {.lex_state = 95, .external_lex_state = 2}, + [4245] = {.lex_state = 95, .external_lex_state = 2}, + [4246] = {.lex_state = 12, .external_lex_state = 2}, [4247] = {.lex_state = 12, .external_lex_state = 2}, - [4248] = {.lex_state = 96, .external_lex_state = 5}, - [4249] = {.lex_state = 96, .external_lex_state = 5}, - [4250] = {.lex_state = 96, .external_lex_state = 5}, - [4251] = {.lex_state = 96, .external_lex_state = 5}, - [4252] = {.lex_state = 96, .external_lex_state = 5}, - [4253] = {.lex_state = 96, .external_lex_state = 5}, - [4254] = {.lex_state = 96, .external_lex_state = 5}, - [4255] = {.lex_state = 96, .external_lex_state = 5}, - [4256] = {.lex_state = 96, .external_lex_state = 2}, + [4248] = {.lex_state = 12, .external_lex_state = 2}, + [4249] = {.lex_state = 12, .external_lex_state = 2}, + [4250] = {.lex_state = 12, .external_lex_state = 2}, + [4251] = {.lex_state = 95, .external_lex_state = 2}, + [4252] = {.lex_state = 95, .external_lex_state = 2}, + [4253] = {.lex_state = 95, .external_lex_state = 2}, + [4254] = {.lex_state = 12, .external_lex_state = 2}, + [4255] = {.lex_state = 12, .external_lex_state = 2}, + [4256] = {.lex_state = 12, .external_lex_state = 2}, [4257] = {.lex_state = 12, .external_lex_state = 2}, [4258] = {.lex_state = 12, .external_lex_state = 2}, - [4259] = {.lex_state = 96, .external_lex_state = 6}, - [4260] = {.lex_state = 96, .external_lex_state = 5}, - [4261] = {.lex_state = 96, .external_lex_state = 5}, + [4259] = {.lex_state = 12, .external_lex_state = 2}, + [4260] = {.lex_state = 95, .external_lex_state = 2}, + [4261] = {.lex_state = 12, .external_lex_state = 2}, [4262] = {.lex_state = 12, .external_lex_state = 2}, - [4263] = {.lex_state = 96, .external_lex_state = 5}, - [4264] = {.lex_state = 96, .external_lex_state = 5}, + [4263] = {.lex_state = 12, .external_lex_state = 2}, + [4264] = {.lex_state = 12, .external_lex_state = 2}, [4265] = {.lex_state = 12, .external_lex_state = 2}, - [4266] = {.lex_state = 18, .external_lex_state = 8}, - [4267] = {.lex_state = 96, .external_lex_state = 5}, - [4268] = {.lex_state = 96, .external_lex_state = 5}, - [4269] = {.lex_state = 96, .external_lex_state = 5}, - [4270] = {.lex_state = 96, .external_lex_state = 5}, + [4266] = {.lex_state = 12, .external_lex_state = 2}, + [4267] = {.lex_state = 12, .external_lex_state = 2}, + [4268] = {.lex_state = 95, .external_lex_state = 5}, + [4269] = {.lex_state = 12, .external_lex_state = 2}, + [4270] = {.lex_state = 12, .external_lex_state = 2}, [4271] = {.lex_state = 12, .external_lex_state = 2}, - [4272] = {.lex_state = 96, .external_lex_state = 5}, - [4273] = {.lex_state = 96, .external_lex_state = 5}, - [4274] = {.lex_state = 96, .external_lex_state = 6}, - [4275] = {.lex_state = 96, .external_lex_state = 6}, - [4276] = {.lex_state = 96, .external_lex_state = 5}, - [4277] = {.lex_state = 96, .external_lex_state = 2}, - [4278] = {.lex_state = 96, .external_lex_state = 5}, - [4279] = {.lex_state = 96, .external_lex_state = 6}, - [4280] = {.lex_state = 96, .external_lex_state = 5}, - [4281] = {.lex_state = 96, .external_lex_state = 5}, + [4272] = {.lex_state = 12, .external_lex_state = 2}, + [4273] = {.lex_state = 12, .external_lex_state = 2}, + [4274] = {.lex_state = 12, .external_lex_state = 2}, + [4275] = {.lex_state = 12, .external_lex_state = 2}, + [4276] = {.lex_state = 95, .external_lex_state = 5}, + [4277] = {.lex_state = 95, .external_lex_state = 5}, + [4278] = {.lex_state = 12, .external_lex_state = 2}, + [4279] = {.lex_state = 12, .external_lex_state = 2}, + [4280] = {.lex_state = 12, .external_lex_state = 2}, + [4281] = {.lex_state = 12, .external_lex_state = 2}, [4282] = {.lex_state = 12, .external_lex_state = 2}, - [4283] = {.lex_state = 96, .external_lex_state = 5}, - [4284] = {.lex_state = 96, .external_lex_state = 5}, - [4285] = {.lex_state = 96, .external_lex_state = 5}, - [4286] = {.lex_state = 96, .external_lex_state = 5}, - [4287] = {.lex_state = 96, .external_lex_state = 5}, - [4288] = {.lex_state = 96, .external_lex_state = 5}, - [4289] = {.lex_state = 96, .external_lex_state = 5}, - [4290] = {.lex_state = 96, .external_lex_state = 5}, - [4291] = {.lex_state = 96, .external_lex_state = 5}, - [4292] = {.lex_state = 96, .external_lex_state = 5}, - [4293] = {.lex_state = 96, .external_lex_state = 5}, - [4294] = {.lex_state = 96, .external_lex_state = 5}, - [4295] = {.lex_state = 96, .external_lex_state = 5}, - [4296] = {.lex_state = 96, .external_lex_state = 5}, - [4297] = {.lex_state = 96, .external_lex_state = 2}, - [4298] = {.lex_state = 96, .external_lex_state = 5}, - [4299] = {.lex_state = 96, .external_lex_state = 5}, - [4300] = {.lex_state = 96, .external_lex_state = 5}, + [4283] = {.lex_state = 12, .external_lex_state = 2}, + [4284] = {.lex_state = 95, .external_lex_state = 6}, + [4285] = {.lex_state = 95, .external_lex_state = 5}, + [4286] = {.lex_state = 95, .external_lex_state = 5}, + [4287] = {.lex_state = 12, .external_lex_state = 2}, + [4288] = {.lex_state = 12, .external_lex_state = 2}, + [4289] = {.lex_state = 12, .external_lex_state = 2}, + [4290] = {.lex_state = 12, .external_lex_state = 2}, + [4291] = {.lex_state = 95, .external_lex_state = 2}, + [4292] = {.lex_state = 95, .external_lex_state = 6}, + [4293] = {.lex_state = 12, .external_lex_state = 2}, + [4294] = {.lex_state = 12, .external_lex_state = 2}, + [4295] = {.lex_state = 17, .external_lex_state = 7}, + [4296] = {.lex_state = 12, .external_lex_state = 2}, + [4297] = {.lex_state = 95, .external_lex_state = 2}, + [4298] = {.lex_state = 12, .external_lex_state = 2}, + [4299] = {.lex_state = 12, .external_lex_state = 2}, + [4300] = {.lex_state = 12, .external_lex_state = 2}, [4301] = {.lex_state = 12, .external_lex_state = 2}, - [4302] = {.lex_state = 96, .external_lex_state = 5}, - [4303] = {.lex_state = 96, .external_lex_state = 2}, - [4304] = {.lex_state = 96, .external_lex_state = 2}, + [4302] = {.lex_state = 12, .external_lex_state = 2}, + [4303] = {.lex_state = 95, .external_lex_state = 6}, + [4304] = {.lex_state = 12, .external_lex_state = 2}, [4305] = {.lex_state = 12, .external_lex_state = 2}, - [4306] = {.lex_state = 96, .external_lex_state = 5}, - [4307] = {.lex_state = 96, .external_lex_state = 2}, - [4308] = {.lex_state = 96, .external_lex_state = 2}, - [4309] = {.lex_state = 96, .external_lex_state = 5}, - [4310] = {.lex_state = 96, .external_lex_state = 2}, - [4311] = {.lex_state = 96, .external_lex_state = 5}, - [4312] = {.lex_state = 96, .external_lex_state = 5}, - [4313] = {.lex_state = 96, .external_lex_state = 5}, - [4314] = {.lex_state = 96, .external_lex_state = 5}, - [4315] = {.lex_state = 96, .external_lex_state = 5}, - [4316] = {.lex_state = 96, .external_lex_state = 5}, - [4317] = {.lex_state = 96, .external_lex_state = 5}, - [4318] = {.lex_state = 96, .external_lex_state = 5}, - [4319] = {.lex_state = 96, .external_lex_state = 5}, - [4320] = {.lex_state = 96, .external_lex_state = 5}, - [4321] = {.lex_state = 96, .external_lex_state = 5}, - [4322] = {.lex_state = 96, .external_lex_state = 5}, - [4323] = {.lex_state = 96, .external_lex_state = 5}, - [4324] = {.lex_state = 96, .external_lex_state = 5}, - [4325] = {.lex_state = 96, .external_lex_state = 5}, - [4326] = {.lex_state = 96, .external_lex_state = 5}, - [4327] = {.lex_state = 96, .external_lex_state = 5}, - [4328] = {.lex_state = 96, .external_lex_state = 5}, - [4329] = {.lex_state = 96, .external_lex_state = 5}, - [4330] = {.lex_state = 96, .external_lex_state = 5}, - [4331] = {.lex_state = 96, .external_lex_state = 5}, + [4306] = {.lex_state = 12, .external_lex_state = 2}, + [4307] = {.lex_state = 95, .external_lex_state = 5}, + [4308] = {.lex_state = 12, .external_lex_state = 2}, + [4309] = {.lex_state = 12, .external_lex_state = 2}, + [4310] = {.lex_state = 12, .external_lex_state = 2}, + [4311] = {.lex_state = 12, .external_lex_state = 2}, + [4312] = {.lex_state = 12, .external_lex_state = 2}, + [4313] = {.lex_state = 12, .external_lex_state = 2}, + [4314] = {.lex_state = 12, .external_lex_state = 2}, + [4315] = {.lex_state = 12, .external_lex_state = 2}, + [4316] = {.lex_state = 95, .external_lex_state = 6}, + [4317] = {.lex_state = 14, .external_lex_state = 2}, + [4318] = {.lex_state = 12, .external_lex_state = 2}, + [4319] = {.lex_state = 12, .external_lex_state = 2}, + [4320] = {.lex_state = 12, .external_lex_state = 2}, + [4321] = {.lex_state = 12, .external_lex_state = 2}, + [4322] = {.lex_state = 12, .external_lex_state = 2}, + [4323] = {.lex_state = 12, .external_lex_state = 2}, + [4324] = {.lex_state = 12, .external_lex_state = 2}, + [4325] = {.lex_state = 12, .external_lex_state = 2}, + [4326] = {.lex_state = 12, .external_lex_state = 2}, + [4327] = {.lex_state = 12, .external_lex_state = 2}, + [4328] = {.lex_state = 12, .external_lex_state = 2}, + [4329] = {.lex_state = 12, .external_lex_state = 2}, + [4330] = {.lex_state = 12, .external_lex_state = 2}, + [4331] = {.lex_state = 12, .external_lex_state = 2}, [4332] = {.lex_state = 12, .external_lex_state = 2}, [4333] = {.lex_state = 12, .external_lex_state = 2}, - [4334] = {.lex_state = 96, .external_lex_state = 5}, + [4334] = {.lex_state = 12, .external_lex_state = 2}, [4335] = {.lex_state = 12, .external_lex_state = 2}, - [4336] = {.lex_state = 96, .external_lex_state = 5}, + [4336] = {.lex_state = 12, .external_lex_state = 2}, [4337] = {.lex_state = 12, .external_lex_state = 2}, - [4338] = {.lex_state = 96, .external_lex_state = 5}, - [4339] = {.lex_state = 96, .external_lex_state = 5}, - [4340] = {.lex_state = 96, .external_lex_state = 5}, - [4341] = {.lex_state = 96, .external_lex_state = 5}, - [4342] = {.lex_state = 96, .external_lex_state = 5}, - [4343] = {.lex_state = 96, .external_lex_state = 5}, - [4344] = {.lex_state = 96, .external_lex_state = 5}, - [4345] = {.lex_state = 96, .external_lex_state = 5}, - [4346] = {.lex_state = 96, .external_lex_state = 5}, - [4347] = {.lex_state = 96, .external_lex_state = 2}, - [4348] = {.lex_state = 96, .external_lex_state = 5}, - [4349] = {.lex_state = 96, .external_lex_state = 5}, - [4350] = {.lex_state = 96, .external_lex_state = 5}, - [4351] = {.lex_state = 96, .external_lex_state = 5}, - [4352] = {.lex_state = 96, .external_lex_state = 5}, + [4338] = {.lex_state = 12, .external_lex_state = 2}, + [4339] = {.lex_state = 12, .external_lex_state = 2}, + [4340] = {.lex_state = 95, .external_lex_state = 6}, + [4341] = {.lex_state = 12, .external_lex_state = 2}, + [4342] = {.lex_state = 12, .external_lex_state = 2}, + [4343] = {.lex_state = 95, .external_lex_state = 6}, + [4344] = {.lex_state = 95, .external_lex_state = 5}, + [4345] = {.lex_state = 12, .external_lex_state = 2}, + [4346] = {.lex_state = 12, .external_lex_state = 2}, + [4347] = {.lex_state = 12, .external_lex_state = 2}, + [4348] = {.lex_state = 12, .external_lex_state = 2}, + [4349] = {.lex_state = 12, .external_lex_state = 2}, + [4350] = {.lex_state = 12, .external_lex_state = 2}, + [4351] = {.lex_state = 12, .external_lex_state = 2}, + [4352] = {.lex_state = 12, .external_lex_state = 2}, [4353] = {.lex_state = 12, .external_lex_state = 2}, [4354] = {.lex_state = 12, .external_lex_state = 2}, - [4355] = {.lex_state = 4, .external_lex_state = 2}, - [4356] = {.lex_state = 4, .external_lex_state = 2}, - [4357] = {.lex_state = 17, .external_lex_state = 9}, - [4358] = {.lex_state = 96, .external_lex_state = 2}, - [4359] = {.lex_state = 21, .external_lex_state = 9}, - [4360] = {.lex_state = 17, .external_lex_state = 9}, - [4361] = {.lex_state = 21, .external_lex_state = 9}, - [4362] = {.lex_state = 96, .external_lex_state = 2}, - [4363] = {.lex_state = 96, .external_lex_state = 6}, - [4364] = {.lex_state = 96, .external_lex_state = 2}, - [4365] = {.lex_state = 96, .external_lex_state = 2}, - [4366] = {.lex_state = 96, .external_lex_state = 2}, - [4367] = {.lex_state = 17, .external_lex_state = 9}, - [4368] = {.lex_state = 96, .external_lex_state = 2}, - [4369] = {.lex_state = 96, .external_lex_state = 2}, - [4370] = {.lex_state = 21, .external_lex_state = 9}, - [4371] = {.lex_state = 18, .external_lex_state = 7}, - [4372] = {.lex_state = 96, .external_lex_state = 2}, - [4373] = {.lex_state = 96, .external_lex_state = 5}, - [4374] = {.lex_state = 12, .external_lex_state = 2}, - [4375] = {.lex_state = 4, .external_lex_state = 2}, - [4376] = {.lex_state = 96, .external_lex_state = 2}, - [4377] = {.lex_state = 12, .external_lex_state = 2}, - [4378] = {.lex_state = 12, .external_lex_state = 2}, + [4355] = {.lex_state = 12, .external_lex_state = 2}, + [4356] = {.lex_state = 95, .external_lex_state = 2}, + [4357] = {.lex_state = 12, .external_lex_state = 2}, + [4358] = {.lex_state = 12, .external_lex_state = 2}, + [4359] = {.lex_state = 12, .external_lex_state = 2}, + [4360] = {.lex_state = 95, .external_lex_state = 5}, + [4361] = {.lex_state = 12, .external_lex_state = 2}, + [4362] = {.lex_state = 12, .external_lex_state = 2}, + [4363] = {.lex_state = 12, .external_lex_state = 2}, + [4364] = {.lex_state = 12, .external_lex_state = 2}, + [4365] = {.lex_state = 12, .external_lex_state = 2}, + [4366] = {.lex_state = 12, .external_lex_state = 2}, + [4367] = {.lex_state = 12, .external_lex_state = 2}, + [4368] = {.lex_state = 17, .external_lex_state = 7}, + [4369] = {.lex_state = 12, .external_lex_state = 2}, + [4370] = {.lex_state = 12, .external_lex_state = 2}, + [4371] = {.lex_state = 12, .external_lex_state = 2}, + [4372] = {.lex_state = 12, .external_lex_state = 2}, + [4373] = {.lex_state = 12, .external_lex_state = 2}, + [4374] = {.lex_state = 95, .external_lex_state = 2}, + [4375] = {.lex_state = 12, .external_lex_state = 2}, + [4376] = {.lex_state = 12, .external_lex_state = 2}, + [4377] = {.lex_state = 95, .external_lex_state = 5}, + [4378] = {.lex_state = 95, .external_lex_state = 5}, [4379] = {.lex_state = 12, .external_lex_state = 2}, - [4380] = {.lex_state = 17, .external_lex_state = 9}, - [4381] = {.lex_state = 96, .external_lex_state = 2}, - [4382] = {.lex_state = 96, .external_lex_state = 2}, - [4383] = {.lex_state = 4, .external_lex_state = 2}, - [4384] = {.lex_state = 12, .external_lex_state = 2}, - [4385] = {.lex_state = 21, .external_lex_state = 9}, - [4386] = {.lex_state = 96, .external_lex_state = 2}, - [4387] = {.lex_state = 96, .external_lex_state = 2}, - [4388] = {.lex_state = 96, .external_lex_state = 2}, - [4389] = {.lex_state = 96, .external_lex_state = 2}, - [4390] = {.lex_state = 96, .external_lex_state = 2}, - [4391] = {.lex_state = 96, .external_lex_state = 5}, - [4392] = {.lex_state = 96, .external_lex_state = 5}, - [4393] = {.lex_state = 17, .external_lex_state = 9}, - [4394] = {.lex_state = 17, .external_lex_state = 9}, + [4380] = {.lex_state = 95, .external_lex_state = 5}, + [4381] = {.lex_state = 12, .external_lex_state = 2}, + [4382] = {.lex_state = 95, .external_lex_state = 2}, + [4383] = {.lex_state = 12, .external_lex_state = 2}, + [4384] = {.lex_state = 95, .external_lex_state = 2}, + [4385] = {.lex_state = 12, .external_lex_state = 2}, + [4386] = {.lex_state = 95, .external_lex_state = 2}, + [4387] = {.lex_state = 12, .external_lex_state = 2}, + [4388] = {.lex_state = 12, .external_lex_state = 2}, + [4389] = {.lex_state = 95, .external_lex_state = 2}, + [4390] = {.lex_state = 12, .external_lex_state = 2}, + [4391] = {.lex_state = 95, .external_lex_state = 2}, + [4392] = {.lex_state = 95, .external_lex_state = 5}, + [4393] = {.lex_state = 95, .external_lex_state = 2}, + [4394] = {.lex_state = 12, .external_lex_state = 2}, [4395] = {.lex_state = 12, .external_lex_state = 2}, - [4396] = {.lex_state = 96, .external_lex_state = 2}, - [4397] = {.lex_state = 96, .external_lex_state = 2}, - [4398] = {.lex_state = 96, .external_lex_state = 2}, - [4399] = {.lex_state = 21, .external_lex_state = 9}, + [4396] = {.lex_state = 12, .external_lex_state = 2}, + [4397] = {.lex_state = 17, .external_lex_state = 7}, + [4398] = {.lex_state = 95, .external_lex_state = 5}, + [4399] = {.lex_state = 12, .external_lex_state = 2}, [4400] = {.lex_state = 12, .external_lex_state = 2}, - [4401] = {.lex_state = 96, .external_lex_state = 2}, - [4402] = {.lex_state = 96, .external_lex_state = 2}, - [4403] = {.lex_state = 17, .external_lex_state = 9}, - [4404] = {.lex_state = 96, .external_lex_state = 2}, - [4405] = {.lex_state = 21, .external_lex_state = 9}, - [4406] = {.lex_state = 96, .external_lex_state = 2}, - [4407] = {.lex_state = 96, .external_lex_state = 5}, - [4408] = {.lex_state = 96, .external_lex_state = 2}, + [4401] = {.lex_state = 12, .external_lex_state = 2}, + [4402] = {.lex_state = 12, .external_lex_state = 2}, + [4403] = {.lex_state = 95, .external_lex_state = 5}, + [4404] = {.lex_state = 95, .external_lex_state = 6}, + [4405] = {.lex_state = 95, .external_lex_state = 5}, + [4406] = {.lex_state = 95, .external_lex_state = 5}, + [4407] = {.lex_state = 95, .external_lex_state = 2}, + [4408] = {.lex_state = 12, .external_lex_state = 2}, [4409] = {.lex_state = 12, .external_lex_state = 2}, [4410] = {.lex_state = 12, .external_lex_state = 2}, - [4411] = {.lex_state = 17, .external_lex_state = 9}, - [4412] = {.lex_state = 21, .external_lex_state = 9}, - [4413] = {.lex_state = 96, .external_lex_state = 2}, - [4414] = {.lex_state = 96, .external_lex_state = 2}, - [4415] = {.lex_state = 96, .external_lex_state = 2}, - [4416] = {.lex_state = 17, .external_lex_state = 9}, - [4417] = {.lex_state = 21, .external_lex_state = 9}, + [4411] = {.lex_state = 12, .external_lex_state = 2}, + [4412] = {.lex_state = 12, .external_lex_state = 2}, + [4413] = {.lex_state = 12, .external_lex_state = 2}, + [4414] = {.lex_state = 12, .external_lex_state = 2}, + [4415] = {.lex_state = 95, .external_lex_state = 5}, + [4416] = {.lex_state = 17, .external_lex_state = 7}, + [4417] = {.lex_state = 12, .external_lex_state = 2}, [4418] = {.lex_state = 12, .external_lex_state = 2}, - [4419] = {.lex_state = 96, .external_lex_state = 2}, - [4420] = {.lex_state = 96, .external_lex_state = 2}, + [4419] = {.lex_state = 12, .external_lex_state = 2}, + [4420] = {.lex_state = 12, .external_lex_state = 2}, [4421] = {.lex_state = 12, .external_lex_state = 2}, [4422] = {.lex_state = 12, .external_lex_state = 2}, [4423] = {.lex_state = 12, .external_lex_state = 2}, - [4424] = {.lex_state = 96, .external_lex_state = 2}, - [4425] = {.lex_state = 96, .external_lex_state = 2}, - [4426] = {.lex_state = 4, .external_lex_state = 2}, - [4427] = {.lex_state = 96, .external_lex_state = 2}, - [4428] = {.lex_state = 96, .external_lex_state = 5}, - [4429] = {.lex_state = 96, .external_lex_state = 5}, - [4430] = {.lex_state = 17, .external_lex_state = 9}, - [4431] = {.lex_state = 96, .external_lex_state = 2}, + [4424] = {.lex_state = 12, .external_lex_state = 2}, + [4425] = {.lex_state = 12, .external_lex_state = 2}, + [4426] = {.lex_state = 12, .external_lex_state = 2}, + [4427] = {.lex_state = 12, .external_lex_state = 2}, + [4428] = {.lex_state = 95, .external_lex_state = 2}, + [4429] = {.lex_state = 95, .external_lex_state = 2}, + [4430] = {.lex_state = 95, .external_lex_state = 2}, + [4431] = {.lex_state = 12, .external_lex_state = 2}, [4432] = {.lex_state = 12, .external_lex_state = 2}, - [4433] = {.lex_state = 96, .external_lex_state = 2}, - [4434] = {.lex_state = 12, .external_lex_state = 2}, - [4435] = {.lex_state = 96, .external_lex_state = 2}, - [4436] = {.lex_state = 96, .external_lex_state = 2}, - [4437] = {.lex_state = 96, .external_lex_state = 5}, - [4438] = {.lex_state = 12, .external_lex_state = 2}, - [4439] = {.lex_state = 96, .external_lex_state = 2}, - [4440] = {.lex_state = 96, .external_lex_state = 5}, - [4441] = {.lex_state = 96, .external_lex_state = 5}, - [4442] = {.lex_state = 96, .external_lex_state = 2}, - [4443] = {.lex_state = 96, .external_lex_state = 2}, - [4444] = {.lex_state = 17, .external_lex_state = 9}, - [4445] = {.lex_state = 18, .external_lex_state = 7}, - [4446] = {.lex_state = 21, .external_lex_state = 9}, - [4447] = {.lex_state = 17, .external_lex_state = 9}, - [4448] = {.lex_state = 21, .external_lex_state = 9}, + [4433] = {.lex_state = 95, .external_lex_state = 5}, + [4434] = {.lex_state = 95, .external_lex_state = 2}, + [4435] = {.lex_state = 12, .external_lex_state = 2}, + [4436] = {.lex_state = 95, .external_lex_state = 2}, + [4437] = {.lex_state = 95, .external_lex_state = 6}, + [4438] = {.lex_state = 95, .external_lex_state = 2}, + [4439] = {.lex_state = 12, .external_lex_state = 2}, + [4440] = {.lex_state = 12, .external_lex_state = 2}, + [4441] = {.lex_state = 12, .external_lex_state = 2}, + [4442] = {.lex_state = 95, .external_lex_state = 5}, + [4443] = {.lex_state = 12, .external_lex_state = 2}, + [4444] = {.lex_state = 12, .external_lex_state = 2}, + [4445] = {.lex_state = 12, .external_lex_state = 2}, + [4446] = {.lex_state = 12, .external_lex_state = 2}, + [4447] = {.lex_state = 12, .external_lex_state = 2}, + [4448] = {.lex_state = 12, .external_lex_state = 2}, [4449] = {.lex_state = 12, .external_lex_state = 2}, - [4450] = {.lex_state = 96, .external_lex_state = 2}, - [4451] = {.lex_state = 96, .external_lex_state = 2}, + [4450] = {.lex_state = 12, .external_lex_state = 2}, + [4451] = {.lex_state = 12, .external_lex_state = 2}, [4452] = {.lex_state = 12, .external_lex_state = 2}, [4453] = {.lex_state = 12, .external_lex_state = 2}, - [4454] = {.lex_state = 12, .external_lex_state = 2}, - [4455] = {.lex_state = 21, .external_lex_state = 9}, - [4456] = {.lex_state = 17, .external_lex_state = 9}, - [4457] = {.lex_state = 96, .external_lex_state = 5}, - [4458] = {.lex_state = 21, .external_lex_state = 9}, - [4459] = {.lex_state = 96, .external_lex_state = 2}, - [4460] = {.lex_state = 96, .external_lex_state = 2}, - [4461] = {.lex_state = 21, .external_lex_state = 9}, - [4462] = {.lex_state = 17, .external_lex_state = 9}, - [4463] = {.lex_state = 21, .external_lex_state = 9}, - [4464] = {.lex_state = 17, .external_lex_state = 9}, - [4465] = {.lex_state = 96, .external_lex_state = 2}, - [4466] = {.lex_state = 96, .external_lex_state = 2}, - [4467] = {.lex_state = 21, .external_lex_state = 9}, - [4468] = {.lex_state = 96, .external_lex_state = 5}, - [4469] = {.lex_state = 96, .external_lex_state = 5}, - [4470] = {.lex_state = 96, .external_lex_state = 2}, - [4471] = {.lex_state = 96, .external_lex_state = 2}, - [4472] = {.lex_state = 96, .external_lex_state = 5}, - [4473] = {.lex_state = 96, .external_lex_state = 2}, - [4474] = {.lex_state = 96, .external_lex_state = 2}, - [4475] = {.lex_state = 96, .external_lex_state = 2}, - [4476] = {.lex_state = 96, .external_lex_state = 5}, - [4477] = {.lex_state = 96, .external_lex_state = 2}, - [4478] = {.lex_state = 96, .external_lex_state = 2}, - [4479] = {.lex_state = 96, .external_lex_state = 5}, - [4480] = {.lex_state = 96, .external_lex_state = 2}, - [4481] = {.lex_state = 96, .external_lex_state = 5}, - [4482] = {.lex_state = 96, .external_lex_state = 2}, + [4454] = {.lex_state = 95, .external_lex_state = 5}, + [4455] = {.lex_state = 12, .external_lex_state = 2}, + [4456] = {.lex_state = 12, .external_lex_state = 2}, + [4457] = {.lex_state = 12, .external_lex_state = 2}, + [4458] = {.lex_state = 12, .external_lex_state = 2}, + [4459] = {.lex_state = 12, .external_lex_state = 2}, + [4460] = {.lex_state = 95, .external_lex_state = 2}, + [4461] = {.lex_state = 95, .external_lex_state = 2}, + [4462] = {.lex_state = 12, .external_lex_state = 2}, + [4463] = {.lex_state = 95, .external_lex_state = 5}, + [4464] = {.lex_state = 95, .external_lex_state = 2}, + [4465] = {.lex_state = 95, .external_lex_state = 5}, + [4466] = {.lex_state = 12, .external_lex_state = 2}, + [4467] = {.lex_state = 95, .external_lex_state = 5}, + [4468] = {.lex_state = 12, .external_lex_state = 2}, + [4469] = {.lex_state = 95, .external_lex_state = 6}, + [4470] = {.lex_state = 95, .external_lex_state = 6}, + [4471] = {.lex_state = 12, .external_lex_state = 2}, + [4472] = {.lex_state = 12, .external_lex_state = 2}, + [4473] = {.lex_state = 12, .external_lex_state = 2}, + [4474] = {.lex_state = 12, .external_lex_state = 2}, + [4475] = {.lex_state = 12, .external_lex_state = 2}, + [4476] = {.lex_state = 12, .external_lex_state = 2}, + [4477] = {.lex_state = 12, .external_lex_state = 2}, + [4478] = {.lex_state = 12, .external_lex_state = 2}, + [4479] = {.lex_state = 12, .external_lex_state = 2}, + [4480] = {.lex_state = 95, .external_lex_state = 6}, + [4481] = {.lex_state = 95, .external_lex_state = 6}, + [4482] = {.lex_state = 95, .external_lex_state = 6}, [4483] = {.lex_state = 12, .external_lex_state = 2}, - [4484] = {.lex_state = 96, .external_lex_state = 5}, - [4485] = {.lex_state = 12, .external_lex_state = 2}, - [4486] = {.lex_state = 96, .external_lex_state = 2}, - [4487] = {.lex_state = 96, .external_lex_state = 2}, - [4488] = {.lex_state = 96, .external_lex_state = 2}, - [4489] = {.lex_state = 96, .external_lex_state = 2}, - [4490] = {.lex_state = 96, .external_lex_state = 5}, - [4491] = {.lex_state = 96, .external_lex_state = 5}, - [4492] = {.lex_state = 96, .external_lex_state = 5}, - [4493] = {.lex_state = 96, .external_lex_state = 5}, - [4494] = {.lex_state = 96, .external_lex_state = 5}, - [4495] = {.lex_state = 96, .external_lex_state = 5}, - [4496] = {.lex_state = 96, .external_lex_state = 5}, - [4497] = {.lex_state = 96, .external_lex_state = 5}, - [4498] = {.lex_state = 96, .external_lex_state = 5}, - [4499] = {.lex_state = 96, .external_lex_state = 5}, - [4500] = {.lex_state = 96, .external_lex_state = 2}, - [4501] = {.lex_state = 96, .external_lex_state = 5}, - [4502] = {.lex_state = 96, .external_lex_state = 2}, - [4503] = {.lex_state = 96, .external_lex_state = 5}, - [4504] = {.lex_state = 96, .external_lex_state = 5}, - [4505] = {.lex_state = 96, .external_lex_state = 5}, - [4506] = {.lex_state = 4, .external_lex_state = 2}, - [4507] = {.lex_state = 96, .external_lex_state = 5}, - [4508] = {.lex_state = 96, .external_lex_state = 2}, - [4509] = {.lex_state = 96, .external_lex_state = 5}, - [4510] = {.lex_state = 96, .external_lex_state = 2}, - [4511] = {.lex_state = 96, .external_lex_state = 2}, - [4512] = {.lex_state = 96, .external_lex_state = 2}, - [4513] = {.lex_state = 96, .external_lex_state = 2}, - [4514] = {.lex_state = 96, .external_lex_state = 5}, - [4515] = {.lex_state = 96, .external_lex_state = 2}, - [4516] = {.lex_state = 96, .external_lex_state = 5}, - [4517] = {.lex_state = 96, .external_lex_state = 5}, - [4518] = {.lex_state = 96, .external_lex_state = 2}, - [4519] = {.lex_state = 96, .external_lex_state = 5}, - [4520] = {.lex_state = 96, .external_lex_state = 2}, - [4521] = {.lex_state = 96, .external_lex_state = 2}, - [4522] = {.lex_state = 96, .external_lex_state = 5}, - [4523] = {.lex_state = 96, .external_lex_state = 2}, - [4524] = {.lex_state = 96, .external_lex_state = 5}, - [4525] = {.lex_state = 96, .external_lex_state = 2}, - [4526] = {.lex_state = 96, .external_lex_state = 2}, - [4527] = {.lex_state = 96, .external_lex_state = 2}, - [4528] = {.lex_state = 96, .external_lex_state = 2}, - [4529] = {.lex_state = 96, .external_lex_state = 5}, - [4530] = {.lex_state = 96, .external_lex_state = 2}, - [4531] = {.lex_state = 96, .external_lex_state = 5}, - [4532] = {.lex_state = 96, .external_lex_state = 5}, - [4533] = {.lex_state = 96, .external_lex_state = 2}, - [4534] = {.lex_state = 96, .external_lex_state = 5}, - [4535] = {.lex_state = 96, .external_lex_state = 2}, - [4536] = {.lex_state = 96, .external_lex_state = 5}, - [4537] = {.lex_state = 96, .external_lex_state = 5}, - [4538] = {.lex_state = 96, .external_lex_state = 5}, - [4539] = {.lex_state = 96, .external_lex_state = 2}, - [4540] = {.lex_state = 96, .external_lex_state = 5}, - [4541] = {.lex_state = 4, .external_lex_state = 2}, - [4542] = {.lex_state = 96, .external_lex_state = 5}, - [4543] = {.lex_state = 96, .external_lex_state = 5}, - [4544] = {.lex_state = 1, .external_lex_state = 2}, - [4545] = {.lex_state = 96, .external_lex_state = 5}, - [4546] = {.lex_state = 96, .external_lex_state = 5}, - [4547] = {.lex_state = 96, .external_lex_state = 5}, - [4548] = {.lex_state = 96, .external_lex_state = 5}, - [4549] = {.lex_state = 96, .external_lex_state = 5}, - [4550] = {.lex_state = 96, .external_lex_state = 5}, - [4551] = {.lex_state = 96, .external_lex_state = 2}, - [4552] = {.lex_state = 96, .external_lex_state = 5}, - [4553] = {.lex_state = 96, .external_lex_state = 2}, - [4554] = {.lex_state = 96, .external_lex_state = 5}, - [4555] = {.lex_state = 96, .external_lex_state = 5}, - [4556] = {.lex_state = 96, .external_lex_state = 5}, - [4557] = {.lex_state = 96, .external_lex_state = 5}, - [4558] = {.lex_state = 4, .external_lex_state = 2}, - [4559] = {.lex_state = 96, .external_lex_state = 5}, - [4560] = {.lex_state = 96, .external_lex_state = 5}, - [4561] = {.lex_state = 96, .external_lex_state = 5}, - [4562] = {.lex_state = 96, .external_lex_state = 5}, - [4563] = {.lex_state = 96, .external_lex_state = 2}, - [4564] = {.lex_state = 96, .external_lex_state = 5}, - [4565] = {.lex_state = 96, .external_lex_state = 2}, - [4566] = {.lex_state = 96, .external_lex_state = 5}, - [4567] = {.lex_state = 96, .external_lex_state = 5}, - [4568] = {.lex_state = 96, .external_lex_state = 2}, - [4569] = {.lex_state = 96, .external_lex_state = 2}, - [4570] = {.lex_state = 96, .external_lex_state = 5}, - [4571] = {.lex_state = 96, .external_lex_state = 5}, - [4572] = {.lex_state = 96, .external_lex_state = 5}, - [4573] = {.lex_state = 96, .external_lex_state = 5}, - [4574] = {.lex_state = 96, .external_lex_state = 5}, - [4575] = {.lex_state = 96, .external_lex_state = 5}, - [4576] = {.lex_state = 96, .external_lex_state = 2}, - [4577] = {.lex_state = 96, .external_lex_state = 5}, - [4578] = {.lex_state = 96, .external_lex_state = 2}, - [4579] = {.lex_state = 96, .external_lex_state = 2}, - [4580] = {.lex_state = 96, .external_lex_state = 5}, - [4581] = {.lex_state = 96, .external_lex_state = 2}, - [4582] = {.lex_state = 96, .external_lex_state = 2}, - [4583] = {.lex_state = 96, .external_lex_state = 5}, - [4584] = {.lex_state = 96, .external_lex_state = 5}, - [4585] = {.lex_state = 96, .external_lex_state = 5}, - [4586] = {.lex_state = 96, .external_lex_state = 5}, - [4587] = {.lex_state = 96, .external_lex_state = 2}, - [4588] = {.lex_state = 96, .external_lex_state = 2}, - [4589] = {.lex_state = 96, .external_lex_state = 2}, - [4590] = {.lex_state = 96, .external_lex_state = 2}, - [4591] = {.lex_state = 96, .external_lex_state = 5}, - [4592] = {.lex_state = 96, .external_lex_state = 2}, - [4593] = {.lex_state = 96, .external_lex_state = 5}, - [4594] = {.lex_state = 96, .external_lex_state = 2}, - [4595] = {.lex_state = 96, .external_lex_state = 5}, - [4596] = {.lex_state = 96, .external_lex_state = 2}, - [4597] = {.lex_state = 96, .external_lex_state = 5}, - [4598] = {.lex_state = 96, .external_lex_state = 5}, - [4599] = {.lex_state = 96, .external_lex_state = 5}, - [4600] = {.lex_state = 96, .external_lex_state = 5}, - [4601] = {.lex_state = 96, .external_lex_state = 5}, - [4602] = {.lex_state = 96, .external_lex_state = 5}, - [4603] = {.lex_state = 96, .external_lex_state = 5}, - [4604] = {.lex_state = 96, .external_lex_state = 5}, - [4605] = {.lex_state = 96, .external_lex_state = 5}, - [4606] = {.lex_state = 96, .external_lex_state = 5}, - [4607] = {.lex_state = 96, .external_lex_state = 5}, - [4608] = {.lex_state = 96, .external_lex_state = 5}, - [4609] = {.lex_state = 96, .external_lex_state = 5}, - [4610] = {.lex_state = 96, .external_lex_state = 5}, - [4611] = {.lex_state = 96, .external_lex_state = 5}, - [4612] = {.lex_state = 96, .external_lex_state = 5}, - [4613] = {.lex_state = 96, .external_lex_state = 5}, - [4614] = {.lex_state = 96, .external_lex_state = 5}, - [4615] = {.lex_state = 96, .external_lex_state = 5}, - [4616] = {.lex_state = 96, .external_lex_state = 5}, - [4617] = {.lex_state = 96, .external_lex_state = 5}, - [4618] = {.lex_state = 96, .external_lex_state = 2}, - [4619] = {.lex_state = 96, .external_lex_state = 5}, - [4620] = {.lex_state = 96, .external_lex_state = 5}, - [4621] = {.lex_state = 96, .external_lex_state = 2}, - [4622] = {.lex_state = 96, .external_lex_state = 2}, - [4623] = {.lex_state = 96, .external_lex_state = 5}, - [4624] = {.lex_state = 96, .external_lex_state = 5}, - [4625] = {.lex_state = 96, .external_lex_state = 5}, - [4626] = {.lex_state = 1, .external_lex_state = 2}, - [4627] = {.lex_state = 96, .external_lex_state = 5}, - [4628] = {.lex_state = 96, .external_lex_state = 5}, - [4629] = {.lex_state = 96, .external_lex_state = 2}, - [4630] = {.lex_state = 96, .external_lex_state = 2}, - [4631] = {.lex_state = 96, .external_lex_state = 2}, - [4632] = {.lex_state = 96, .external_lex_state = 5}, - [4633] = {.lex_state = 96, .external_lex_state = 5}, - [4634] = {.lex_state = 96, .external_lex_state = 5}, - [4635] = {.lex_state = 96, .external_lex_state = 2}, - [4636] = {.lex_state = 96, .external_lex_state = 5}, - [4637] = {.lex_state = 96, .external_lex_state = 5}, - [4638] = {.lex_state = 96, .external_lex_state = 5}, - [4639] = {.lex_state = 96, .external_lex_state = 5}, - [4640] = {.lex_state = 96, .external_lex_state = 5}, - [4641] = {.lex_state = 96, .external_lex_state = 5}, - [4642] = {.lex_state = 96, .external_lex_state = 5}, - [4643] = {.lex_state = 96, .external_lex_state = 5}, - [4644] = {.lex_state = 96, .external_lex_state = 5}, - [4645] = {.lex_state = 96, .external_lex_state = 5}, - [4646] = {.lex_state = 96, .external_lex_state = 2}, - [4647] = {.lex_state = 96, .external_lex_state = 2}, - [4648] = {.lex_state = 96, .external_lex_state = 2}, - [4649] = {.lex_state = 96, .external_lex_state = 5}, - [4650] = {.lex_state = 96, .external_lex_state = 2}, - [4651] = {.lex_state = 96, .external_lex_state = 5}, - [4652] = {.lex_state = 96, .external_lex_state = 5}, - [4653] = {.lex_state = 96, .external_lex_state = 5}, - [4654] = {.lex_state = 96, .external_lex_state = 5}, - [4655] = {.lex_state = 96, .external_lex_state = 5}, - [4656] = {.lex_state = 96, .external_lex_state = 5}, - [4657] = {.lex_state = 96, .external_lex_state = 5}, - [4658] = {.lex_state = 96, .external_lex_state = 5}, - [4659] = {.lex_state = 96, .external_lex_state = 2}, - [4660] = {.lex_state = 96, .external_lex_state = 5}, - [4661] = {.lex_state = 96, .external_lex_state = 5}, - [4662] = {.lex_state = 96, .external_lex_state = 5}, - [4663] = {.lex_state = 96, .external_lex_state = 5}, - [4664] = {.lex_state = 96, .external_lex_state = 5}, - [4665] = {.lex_state = 96, .external_lex_state = 2}, - [4666] = {.lex_state = 96, .external_lex_state = 2}, - [4667] = {.lex_state = 96, .external_lex_state = 5}, - [4668] = {.lex_state = 96, .external_lex_state = 5}, - [4669] = {.lex_state = 96, .external_lex_state = 2}, - [4670] = {.lex_state = 96, .external_lex_state = 2}, - [4671] = {.lex_state = 96, .external_lex_state = 5}, - [4672] = {.lex_state = 96, .external_lex_state = 5}, - [4673] = {.lex_state = 96, .external_lex_state = 2}, - [4674] = {.lex_state = 96, .external_lex_state = 2}, - [4675] = {.lex_state = 96, .external_lex_state = 2}, - [4676] = {.lex_state = 96, .external_lex_state = 5}, - [4677] = {.lex_state = 96, .external_lex_state = 5}, - [4678] = {.lex_state = 96, .external_lex_state = 2}, - [4679] = {.lex_state = 96, .external_lex_state = 5}, - [4680] = {.lex_state = 96, .external_lex_state = 2}, - [4681] = {.lex_state = 96, .external_lex_state = 2}, - [4682] = {.lex_state = 96, .external_lex_state = 5}, - [4683] = {.lex_state = 96, .external_lex_state = 5}, - [4684] = {.lex_state = 96, .external_lex_state = 5}, - [4685] = {.lex_state = 96, .external_lex_state = 2}, - [4686] = {.lex_state = 96, .external_lex_state = 5}, - [4687] = {.lex_state = 96, .external_lex_state = 5}, - [4688] = {.lex_state = 96, .external_lex_state = 5}, - [4689] = {.lex_state = 96, .external_lex_state = 5}, - [4690] = {.lex_state = 96, .external_lex_state = 2}, + [4484] = {.lex_state = 12, .external_lex_state = 2}, + [4485] = {.lex_state = 95, .external_lex_state = 2}, + [4486] = {.lex_state = 12, .external_lex_state = 2}, + [4487] = {.lex_state = 12, .external_lex_state = 2}, + [4488] = {.lex_state = 95, .external_lex_state = 5}, + [4489] = {.lex_state = 95, .external_lex_state = 5}, + [4490] = {.lex_state = 12, .external_lex_state = 2}, + [4491] = {.lex_state = 12, .external_lex_state = 2}, + [4492] = {.lex_state = 95, .external_lex_state = 5}, + [4493] = {.lex_state = 12, .external_lex_state = 2}, + [4494] = {.lex_state = 12, .external_lex_state = 2}, + [4495] = {.lex_state = 95, .external_lex_state = 5}, + [4496] = {.lex_state = 12, .external_lex_state = 2}, + [4497] = {.lex_state = 12, .external_lex_state = 2}, + [4498] = {.lex_state = 12, .external_lex_state = 2}, + [4499] = {.lex_state = 12, .external_lex_state = 2}, + [4500] = {.lex_state = 95, .external_lex_state = 5}, + [4501] = {.lex_state = 12, .external_lex_state = 2}, + [4502] = {.lex_state = 12, .external_lex_state = 2}, + [4503] = {.lex_state = 12, .external_lex_state = 2}, + [4504] = {.lex_state = 12, .external_lex_state = 2}, + [4505] = {.lex_state = 12, .external_lex_state = 2}, + [4506] = {.lex_state = 12, .external_lex_state = 2}, + [4507] = {.lex_state = 95, .external_lex_state = 2}, + [4508] = {.lex_state = 12, .external_lex_state = 2}, + [4509] = {.lex_state = 12, .external_lex_state = 2}, + [4510] = {.lex_state = 12, .external_lex_state = 2}, + [4511] = {.lex_state = 12, .external_lex_state = 2}, + [4512] = {.lex_state = 12, .external_lex_state = 2}, + [4513] = {.lex_state = 12, .external_lex_state = 2}, + [4514] = {.lex_state = 12, .external_lex_state = 2}, + [4515] = {.lex_state = 95, .external_lex_state = 2}, + [4516] = {.lex_state = 95, .external_lex_state = 2}, + [4517] = {.lex_state = 95, .external_lex_state = 6}, + [4518] = {.lex_state = 12, .external_lex_state = 2}, + [4519] = {.lex_state = 12, .external_lex_state = 2}, + [4520] = {.lex_state = 12, .external_lex_state = 2}, + [4521] = {.lex_state = 12, .external_lex_state = 2}, + [4522] = {.lex_state = 12, .external_lex_state = 2}, + [4523] = {.lex_state = 12, .external_lex_state = 2}, + [4524] = {.lex_state = 12, .external_lex_state = 2}, + [4525] = {.lex_state = 12, .external_lex_state = 2}, + [4526] = {.lex_state = 95, .external_lex_state = 2}, + [4527] = {.lex_state = 95, .external_lex_state = 6}, + [4528] = {.lex_state = 12, .external_lex_state = 2}, + [4529] = {.lex_state = 95, .external_lex_state = 6}, + [4530] = {.lex_state = 95, .external_lex_state = 6}, + [4531] = {.lex_state = 95, .external_lex_state = 6}, + [4532] = {.lex_state = 12, .external_lex_state = 2}, + [4533] = {.lex_state = 95, .external_lex_state = 6}, + [4534] = {.lex_state = 12, .external_lex_state = 2}, + [4535] = {.lex_state = 95, .external_lex_state = 6}, + [4536] = {.lex_state = 95, .external_lex_state = 6}, + [4537] = {.lex_state = 12, .external_lex_state = 2}, + [4538] = {.lex_state = 12, .external_lex_state = 2}, + [4539] = {.lex_state = 12, .external_lex_state = 2}, + [4540] = {.lex_state = 12, .external_lex_state = 2}, + [4541] = {.lex_state = 12, .external_lex_state = 2}, + [4542] = {.lex_state = 95, .external_lex_state = 2}, + [4543] = {.lex_state = 12, .external_lex_state = 2}, + [4544] = {.lex_state = 12, .external_lex_state = 2}, + [4545] = {.lex_state = 12, .external_lex_state = 2}, + [4546] = {.lex_state = 12, .external_lex_state = 2}, + [4547] = {.lex_state = 12, .external_lex_state = 2}, + [4548] = {.lex_state = 12, .external_lex_state = 2}, + [4549] = {.lex_state = 95, .external_lex_state = 2}, + [4550] = {.lex_state = 12, .external_lex_state = 2}, + [4551] = {.lex_state = 12, .external_lex_state = 2}, + [4552] = {.lex_state = 12, .external_lex_state = 2}, + [4553] = {.lex_state = 12, .external_lex_state = 2}, + [4554] = {.lex_state = 12, .external_lex_state = 2}, + [4555] = {.lex_state = 12, .external_lex_state = 2}, + [4556] = {.lex_state = 95, .external_lex_state = 6}, + [4557] = {.lex_state = 95, .external_lex_state = 2}, + [4558] = {.lex_state = 12, .external_lex_state = 2}, + [4559] = {.lex_state = 12, .external_lex_state = 2}, + [4560] = {.lex_state = 95, .external_lex_state = 5}, + [4561] = {.lex_state = 12, .external_lex_state = 2}, + [4562] = {.lex_state = 12, .external_lex_state = 2}, + [4563] = {.lex_state = 95, .external_lex_state = 5}, + [4564] = {.lex_state = 12, .external_lex_state = 2}, + [4565] = {.lex_state = 95, .external_lex_state = 5}, + [4566] = {.lex_state = 95, .external_lex_state = 5}, + [4567] = {.lex_state = 95, .external_lex_state = 5}, + [4568] = {.lex_state = 12, .external_lex_state = 2}, + [4569] = {.lex_state = 12, .external_lex_state = 2}, + [4570] = {.lex_state = 95, .external_lex_state = 5}, + [4571] = {.lex_state = 12, .external_lex_state = 2}, + [4572] = {.lex_state = 95, .external_lex_state = 5}, + [4573] = {.lex_state = 95, .external_lex_state = 5}, + [4574] = {.lex_state = 95, .external_lex_state = 5}, + [4575] = {.lex_state = 95, .external_lex_state = 5}, + [4576] = {.lex_state = 95, .external_lex_state = 5}, + [4577] = {.lex_state = 95, .external_lex_state = 5}, + [4578] = {.lex_state = 95, .external_lex_state = 5}, + [4579] = {.lex_state = 95, .external_lex_state = 5}, + [4580] = {.lex_state = 95, .external_lex_state = 5}, + [4581] = {.lex_state = 95, .external_lex_state = 5}, + [4582] = {.lex_state = 95, .external_lex_state = 5}, + [4583] = {.lex_state = 95, .external_lex_state = 5}, + [4584] = {.lex_state = 95, .external_lex_state = 5}, + [4585] = {.lex_state = 95, .external_lex_state = 5}, + [4586] = {.lex_state = 12, .external_lex_state = 2}, + [4587] = {.lex_state = 95, .external_lex_state = 5}, + [4588] = {.lex_state = 95, .external_lex_state = 5}, + [4589] = {.lex_state = 95, .external_lex_state = 5}, + [4590] = {.lex_state = 12, .external_lex_state = 2}, + [4591] = {.lex_state = 95, .external_lex_state = 5}, + [4592] = {.lex_state = 95, .external_lex_state = 5}, + [4593] = {.lex_state = 12, .external_lex_state = 2}, + [4594] = {.lex_state = 95, .external_lex_state = 5}, + [4595] = {.lex_state = 12, .external_lex_state = 2}, + [4596] = {.lex_state = 12, .external_lex_state = 2}, + [4597] = {.lex_state = 95, .external_lex_state = 5}, + [4598] = {.lex_state = 95, .external_lex_state = 5}, + [4599] = {.lex_state = 95, .external_lex_state = 5}, + [4600] = {.lex_state = 12, .external_lex_state = 2}, + [4601] = {.lex_state = 95, .external_lex_state = 5}, + [4602] = {.lex_state = 12, .external_lex_state = 2}, + [4603] = {.lex_state = 12, .external_lex_state = 2}, + [4604] = {.lex_state = 95, .external_lex_state = 5}, + [4605] = {.lex_state = 95, .external_lex_state = 5}, + [4606] = {.lex_state = 12, .external_lex_state = 2}, + [4607] = {.lex_state = 95, .external_lex_state = 5}, + [4608] = {.lex_state = 95, .external_lex_state = 5}, + [4609] = {.lex_state = 95, .external_lex_state = 5}, + [4610] = {.lex_state = 95, .external_lex_state = 5}, + [4611] = {.lex_state = 95, .external_lex_state = 5}, + [4612] = {.lex_state = 95, .external_lex_state = 5}, + [4613] = {.lex_state = 95, .external_lex_state = 5}, + [4614] = {.lex_state = 12, .external_lex_state = 2}, + [4615] = {.lex_state = 12, .external_lex_state = 2}, + [4616] = {.lex_state = 12, .external_lex_state = 2}, + [4617] = {.lex_state = 12, .external_lex_state = 2}, + [4618] = {.lex_state = 95, .external_lex_state = 5}, + [4619] = {.lex_state = 12, .external_lex_state = 2}, + [4620] = {.lex_state = 95, .external_lex_state = 5}, + [4621] = {.lex_state = 95, .external_lex_state = 5}, + [4622] = {.lex_state = 95, .external_lex_state = 5}, + [4623] = {.lex_state = 95, .external_lex_state = 5}, + [4624] = {.lex_state = 12, .external_lex_state = 2}, + [4625] = {.lex_state = 95, .external_lex_state = 5}, + [4626] = {.lex_state = 95, .external_lex_state = 2}, + [4627] = {.lex_state = 95, .external_lex_state = 5}, + [4628] = {.lex_state = 95, .external_lex_state = 6}, + [4629] = {.lex_state = 95, .external_lex_state = 5}, + [4630] = {.lex_state = 95, .external_lex_state = 5}, + [4631] = {.lex_state = 95, .external_lex_state = 5}, + [4632] = {.lex_state = 12, .external_lex_state = 2}, + [4633] = {.lex_state = 95, .external_lex_state = 5}, + [4634] = {.lex_state = 95, .external_lex_state = 5}, + [4635] = {.lex_state = 12, .external_lex_state = 2}, + [4636] = {.lex_state = 95, .external_lex_state = 5}, + [4637] = {.lex_state = 95, .external_lex_state = 5}, + [4638] = {.lex_state = 12, .external_lex_state = 2}, + [4639] = {.lex_state = 12, .external_lex_state = 2}, + [4640] = {.lex_state = 12, .external_lex_state = 2}, + [4641] = {.lex_state = 12, .external_lex_state = 2}, + [4642] = {.lex_state = 95, .external_lex_state = 5}, + [4643] = {.lex_state = 95, .external_lex_state = 5}, + [4644] = {.lex_state = 12, .external_lex_state = 2}, + [4645] = {.lex_state = 12, .external_lex_state = 2}, + [4646] = {.lex_state = 12, .external_lex_state = 2}, + [4647] = {.lex_state = 95, .external_lex_state = 5}, + [4648] = {.lex_state = 95, .external_lex_state = 5}, + [4649] = {.lex_state = 95, .external_lex_state = 5}, + [4650] = {.lex_state = 95, .external_lex_state = 5}, + [4651] = {.lex_state = 95, .external_lex_state = 2}, + [4652] = {.lex_state = 95, .external_lex_state = 5}, + [4653] = {.lex_state = 12, .external_lex_state = 2}, + [4654] = {.lex_state = 12, .external_lex_state = 2}, + [4655] = {.lex_state = 12, .external_lex_state = 2}, + [4656] = {.lex_state = 12, .external_lex_state = 2}, + [4657] = {.lex_state = 95, .external_lex_state = 5}, + [4658] = {.lex_state = 12, .external_lex_state = 2}, + [4659] = {.lex_state = 95, .external_lex_state = 2}, + [4660] = {.lex_state = 12, .external_lex_state = 2}, + [4661] = {.lex_state = 12, .external_lex_state = 2}, + [4662] = {.lex_state = 12, .external_lex_state = 2}, + [4663] = {.lex_state = 95, .external_lex_state = 2}, + [4664] = {.lex_state = 95, .external_lex_state = 5}, + [4665] = {.lex_state = 95, .external_lex_state = 2}, + [4666] = {.lex_state = 95, .external_lex_state = 5}, + [4667] = {.lex_state = 12, .external_lex_state = 2}, + [4668] = {.lex_state = 95, .external_lex_state = 5}, + [4669] = {.lex_state = 12, .external_lex_state = 2}, + [4670] = {.lex_state = 12, .external_lex_state = 2}, + [4671] = {.lex_state = 95, .external_lex_state = 5}, + [4672] = {.lex_state = 12, .external_lex_state = 2}, + [4673] = {.lex_state = 95, .external_lex_state = 5}, + [4674] = {.lex_state = 95, .external_lex_state = 5}, + [4675] = {.lex_state = 12, .external_lex_state = 2}, + [4676] = {.lex_state = 12, .external_lex_state = 2}, + [4677] = {.lex_state = 12, .external_lex_state = 2}, + [4678] = {.lex_state = 12, .external_lex_state = 2}, + [4679] = {.lex_state = 12, .external_lex_state = 2}, + [4680] = {.lex_state = 12, .external_lex_state = 2}, + [4681] = {.lex_state = 95, .external_lex_state = 5}, + [4682] = {.lex_state = 12, .external_lex_state = 2}, + [4683] = {.lex_state = 95, .external_lex_state = 5}, + [4684] = {.lex_state = 95, .external_lex_state = 5}, + [4685] = {.lex_state = 12, .external_lex_state = 2}, + [4686] = {.lex_state = 12, .external_lex_state = 2}, + [4687] = {.lex_state = 12, .external_lex_state = 2}, + [4688] = {.lex_state = 12, .external_lex_state = 2}, + [4689] = {.lex_state = 12, .external_lex_state = 2}, + [4690] = {.lex_state = 95, .external_lex_state = 5}, [4691] = {.lex_state = 12, .external_lex_state = 2}, - [4692] = {.lex_state = 96, .external_lex_state = 2}, - [4693] = {.lex_state = 96, .external_lex_state = 5}, - [4694] = {.lex_state = 96, .external_lex_state = 5}, - [4695] = {.lex_state = 96, .external_lex_state = 2}, - [4696] = {.lex_state = 96, .external_lex_state = 2}, - [4697] = {.lex_state = 96, .external_lex_state = 5}, - [4698] = {.lex_state = 96, .external_lex_state = 5}, - [4699] = {.lex_state = 96, .external_lex_state = 2}, - [4700] = {.lex_state = 96, .external_lex_state = 5}, - [4701] = {.lex_state = 96, .external_lex_state = 2}, - [4702] = {.lex_state = 1, .external_lex_state = 2}, - [4703] = {.lex_state = 96, .external_lex_state = 5}, - [4704] = {.lex_state = 96, .external_lex_state = 5}, - [4705] = {.lex_state = 96, .external_lex_state = 2}, - [4706] = {.lex_state = 96, .external_lex_state = 2}, - [4707] = {.lex_state = 96, .external_lex_state = 2}, - [4708] = {.lex_state = 96, .external_lex_state = 2}, - [4709] = {.lex_state = 4, .external_lex_state = 2}, - [4710] = {.lex_state = 96, .external_lex_state = 2}, - [4711] = {.lex_state = 96, .external_lex_state = 5}, - [4712] = {.lex_state = 96, .external_lex_state = 2}, - [4713] = {.lex_state = 96, .external_lex_state = 2}, - [4714] = {.lex_state = 96, .external_lex_state = 2}, - [4715] = {.lex_state = 96, .external_lex_state = 5}, - [4716] = {.lex_state = 96, .external_lex_state = 5}, - [4717] = {.lex_state = 96, .external_lex_state = 5}, - [4718] = {.lex_state = 96, .external_lex_state = 5}, - [4719] = {.lex_state = 96, .external_lex_state = 5}, - [4720] = {.lex_state = 96, .external_lex_state = 5}, - [4721] = {.lex_state = 96, .external_lex_state = 5}, - [4722] = {.lex_state = 1, .external_lex_state = 2}, - [4723] = {.lex_state = 96, .external_lex_state = 5}, - [4724] = {.lex_state = 96, .external_lex_state = 5}, - [4725] = {.lex_state = 96, .external_lex_state = 5}, - [4726] = {.lex_state = 96, .external_lex_state = 5}, - [4727] = {.lex_state = 96, .external_lex_state = 5}, - [4728] = {.lex_state = 96, .external_lex_state = 2}, - [4729] = {.lex_state = 96, .external_lex_state = 2}, - [4730] = {.lex_state = 96, .external_lex_state = 5}, - [4731] = {.lex_state = 96, .external_lex_state = 5}, - [4732] = {.lex_state = 96, .external_lex_state = 5}, - [4733] = {.lex_state = 96, .external_lex_state = 5}, - [4734] = {.lex_state = 96, .external_lex_state = 5}, - [4735] = {.lex_state = 96, .external_lex_state = 5}, - [4736] = {.lex_state = 96, .external_lex_state = 5}, - [4737] = {.lex_state = 96, .external_lex_state = 2}, - [4738] = {.lex_state = 96, .external_lex_state = 5}, - [4739] = {.lex_state = 96, .external_lex_state = 2}, - [4740] = {.lex_state = 96, .external_lex_state = 5}, - [4741] = {.lex_state = 96, .external_lex_state = 5}, - [4742] = {.lex_state = 96, .external_lex_state = 5}, - [4743] = {.lex_state = 96, .external_lex_state = 5}, - [4744] = {.lex_state = 96, .external_lex_state = 2}, - [4745] = {.lex_state = 96, .external_lex_state = 5}, - [4746] = {.lex_state = 96, .external_lex_state = 2}, - [4747] = {.lex_state = 96, .external_lex_state = 2}, - [4748] = {.lex_state = 96, .external_lex_state = 2}, - [4749] = {.lex_state = 96, .external_lex_state = 2}, - [4750] = {.lex_state = 96, .external_lex_state = 5}, - [4751] = {.lex_state = 96, .external_lex_state = 5}, - [4752] = {.lex_state = 96, .external_lex_state = 5}, - [4753] = {.lex_state = 96, .external_lex_state = 2}, - [4754] = {.lex_state = 96, .external_lex_state = 2}, - [4755] = {.lex_state = 96, .external_lex_state = 2}, - [4756] = {.lex_state = 96, .external_lex_state = 2}, - [4757] = {.lex_state = 96, .external_lex_state = 5}, - [4758] = {.lex_state = 96, .external_lex_state = 5}, - [4759] = {.lex_state = 96, .external_lex_state = 5}, - [4760] = {.lex_state = 96, .external_lex_state = 2}, - [4761] = {.lex_state = 96, .external_lex_state = 5}, - [4762] = {.lex_state = 96, .external_lex_state = 2}, - [4763] = {.lex_state = 96, .external_lex_state = 5}, - [4764] = {.lex_state = 96, .external_lex_state = 5}, - [4765] = {.lex_state = 96, .external_lex_state = 5}, - [4766] = {.lex_state = 96, .external_lex_state = 5}, - [4767] = {.lex_state = 96, .external_lex_state = 5}, - [4768] = {.lex_state = 96, .external_lex_state = 5}, - [4769] = {.lex_state = 96, .external_lex_state = 5}, - [4770] = {.lex_state = 96, .external_lex_state = 5}, - [4771] = {.lex_state = 96, .external_lex_state = 5}, - [4772] = {.lex_state = 96, .external_lex_state = 5}, - [4773] = {.lex_state = 96, .external_lex_state = 5}, - [4774] = {.lex_state = 96, .external_lex_state = 2}, - [4775] = {.lex_state = 96, .external_lex_state = 5}, - [4776] = {.lex_state = 96, .external_lex_state = 2}, - [4777] = {.lex_state = 96, .external_lex_state = 2}, - [4778] = {.lex_state = 96, .external_lex_state = 5}, - [4779] = {.lex_state = 4, .external_lex_state = 2}, - [4780] = {.lex_state = 96, .external_lex_state = 2}, - [4781] = {.lex_state = 96, .external_lex_state = 2}, - [4782] = {.lex_state = 4, .external_lex_state = 2}, - [4783] = {.lex_state = 96, .external_lex_state = 5}, - [4784] = {.lex_state = 96, .external_lex_state = 5}, - [4785] = {.lex_state = 96, .external_lex_state = 2}, - [4786] = {.lex_state = 96, .external_lex_state = 2}, - [4787] = {.lex_state = 96, .external_lex_state = 5}, - [4788] = {.lex_state = 96, .external_lex_state = 5}, - [4789] = {.lex_state = 96, .external_lex_state = 2}, - [4790] = {.lex_state = 96, .external_lex_state = 5}, - [4791] = {.lex_state = 96, .external_lex_state = 2}, - [4792] = {.lex_state = 96, .external_lex_state = 5}, - [4793] = {.lex_state = 4, .external_lex_state = 2}, - [4794] = {.lex_state = 96, .external_lex_state = 2}, - [4795] = {.lex_state = 96, .external_lex_state = 5}, - [4796] = {.lex_state = 96, .external_lex_state = 2}, - [4797] = {.lex_state = 96, .external_lex_state = 5}, - [4798] = {.lex_state = 96, .external_lex_state = 2}, - [4799] = {.lex_state = 96, .external_lex_state = 5}, - [4800] = {.lex_state = 96, .external_lex_state = 5}, - [4801] = {.lex_state = 96, .external_lex_state = 5}, - [4802] = {.lex_state = 96, .external_lex_state = 5}, - [4803] = {.lex_state = 96, .external_lex_state = 2}, - [4804] = {.lex_state = 96, .external_lex_state = 5}, - [4805] = {.lex_state = 96, .external_lex_state = 5}, - [4806] = {.lex_state = 96, .external_lex_state = 2}, - [4807] = {.lex_state = 96, .external_lex_state = 5}, - [4808] = {.lex_state = 96, .external_lex_state = 5}, - [4809] = {.lex_state = 96, .external_lex_state = 2}, - [4810] = {.lex_state = 96, .external_lex_state = 5}, - [4811] = {.lex_state = 96, .external_lex_state = 5}, - [4812] = {.lex_state = 96, .external_lex_state = 2}, - [4813] = {.lex_state = 96, .external_lex_state = 5}, - [4814] = {.lex_state = 96, .external_lex_state = 2}, - [4815] = {.lex_state = 96, .external_lex_state = 5}, - [4816] = {.lex_state = 96, .external_lex_state = 5}, - [4817] = {.lex_state = 96, .external_lex_state = 5}, - [4818] = {.lex_state = 96, .external_lex_state = 5}, - [4819] = {.lex_state = 96, .external_lex_state = 5}, - [4820] = {.lex_state = 96, .external_lex_state = 5}, - [4821] = {.lex_state = 96, .external_lex_state = 2}, - [4822] = {.lex_state = 96, .external_lex_state = 5}, - [4823] = {.lex_state = 96, .external_lex_state = 2}, - [4824] = {.lex_state = 96, .external_lex_state = 5}, - [4825] = {.lex_state = 96, .external_lex_state = 5}, - [4826] = {.lex_state = 96, .external_lex_state = 5}, - [4827] = {.lex_state = 96, .external_lex_state = 5}, - [4828] = {.lex_state = 96, .external_lex_state = 5}, - [4829] = {.lex_state = 96, .external_lex_state = 2}, - [4830] = {.lex_state = 96, .external_lex_state = 2}, - [4831] = {.lex_state = 96, .external_lex_state = 5}, - [4832] = {.lex_state = 96, .external_lex_state = 5}, - [4833] = {.lex_state = 96, .external_lex_state = 2}, - [4834] = {.lex_state = 96, .external_lex_state = 2}, - [4835] = {.lex_state = 96, .external_lex_state = 5}, - [4836] = {.lex_state = 96, .external_lex_state = 5}, - [4837] = {.lex_state = 96, .external_lex_state = 5}, - [4838] = {.lex_state = 96, .external_lex_state = 5}, - [4839] = {.lex_state = 96, .external_lex_state = 5}, - [4840] = {.lex_state = 96, .external_lex_state = 2}, - [4841] = {.lex_state = 96, .external_lex_state = 2}, - [4842] = {.lex_state = 96, .external_lex_state = 5}, - [4843] = {.lex_state = 96, .external_lex_state = 5}, - [4844] = {.lex_state = 96, .external_lex_state = 5}, - [4845] = {.lex_state = 96, .external_lex_state = 5}, - [4846] = {.lex_state = 96, .external_lex_state = 5}, - [4847] = {.lex_state = 96, .external_lex_state = 2}, - [4848] = {.lex_state = 96, .external_lex_state = 5}, - [4849] = {.lex_state = 96, .external_lex_state = 5}, - [4850] = {.lex_state = 96, .external_lex_state = 5}, - [4851] = {.lex_state = 96, .external_lex_state = 5}, - [4852] = {.lex_state = 96, .external_lex_state = 5}, - [4853] = {.lex_state = 96, .external_lex_state = 5}, - [4854] = {.lex_state = 96, .external_lex_state = 5}, - [4855] = {.lex_state = 96, .external_lex_state = 5}, - [4856] = {.lex_state = 96, .external_lex_state = 5}, - [4857] = {.lex_state = 96, .external_lex_state = 2}, - [4858] = {.lex_state = 96, .external_lex_state = 2}, - [4859] = {.lex_state = 96, .external_lex_state = 5}, - [4860] = {.lex_state = 96, .external_lex_state = 5}, - [4861] = {.lex_state = 96, .external_lex_state = 5}, - [4862] = {.lex_state = 96, .external_lex_state = 5}, - [4863] = {.lex_state = 96, .external_lex_state = 5}, - [4864] = {.lex_state = 96, .external_lex_state = 2}, - [4865] = {.lex_state = 96, .external_lex_state = 5}, - [4866] = {.lex_state = 96, .external_lex_state = 5}, - [4867] = {.lex_state = 96, .external_lex_state = 5}, - [4868] = {.lex_state = 96, .external_lex_state = 5}, - [4869] = {.lex_state = 96, .external_lex_state = 2}, - [4870] = {.lex_state = 96, .external_lex_state = 5}, - [4871] = {.lex_state = 96, .external_lex_state = 5}, - [4872] = {.lex_state = 96, .external_lex_state = 5}, - [4873] = {.lex_state = 96, .external_lex_state = 5}, - [4874] = {.lex_state = 96, .external_lex_state = 2}, - [4875] = {.lex_state = 96, .external_lex_state = 5}, - [4876] = {.lex_state = 96, .external_lex_state = 5}, - [4877] = {.lex_state = 96, .external_lex_state = 5}, - [4878] = {.lex_state = 96, .external_lex_state = 5}, - [4879] = {.lex_state = 96, .external_lex_state = 5}, - [4880] = {.lex_state = 96, .external_lex_state = 2}, - [4881] = {.lex_state = 96, .external_lex_state = 5}, - [4882] = {.lex_state = 96, .external_lex_state = 5}, - [4883] = {.lex_state = 96, .external_lex_state = 5}, - [4884] = {.lex_state = 96, .external_lex_state = 5}, - [4885] = {.lex_state = 96, .external_lex_state = 5}, - [4886] = {.lex_state = 96, .external_lex_state = 5}, - [4887] = {.lex_state = 96, .external_lex_state = 5}, - [4888] = {.lex_state = 96, .external_lex_state = 5}, - [4889] = {.lex_state = 96, .external_lex_state = 5}, - [4890] = {.lex_state = 96, .external_lex_state = 5}, - [4891] = {.lex_state = 96, .external_lex_state = 5}, - [4892] = {.lex_state = 1, .external_lex_state = 2}, - [4893] = {.lex_state = 96, .external_lex_state = 2}, - [4894] = {.lex_state = 96, .external_lex_state = 5}, - [4895] = {.lex_state = 96, .external_lex_state = 5}, - [4896] = {.lex_state = 96, .external_lex_state = 5}, - [4897] = {.lex_state = 96, .external_lex_state = 5}, - [4898] = {.lex_state = 96, .external_lex_state = 5}, - [4899] = {.lex_state = 96, .external_lex_state = 5}, - [4900] = {.lex_state = 96, .external_lex_state = 5}, - [4901] = {.lex_state = 96, .external_lex_state = 5}, - [4902] = {.lex_state = 96, .external_lex_state = 2}, - [4903] = {.lex_state = 96, .external_lex_state = 2}, - [4904] = {.lex_state = 96, .external_lex_state = 5}, - [4905] = {.lex_state = 96, .external_lex_state = 2}, - [4906] = {.lex_state = 96, .external_lex_state = 5}, - [4907] = {.lex_state = 96, .external_lex_state = 5}, - [4908] = {.lex_state = 96, .external_lex_state = 5}, - [4909] = {.lex_state = 96, .external_lex_state = 5}, - [4910] = {.lex_state = 4, .external_lex_state = 2}, - [4911] = {.lex_state = 96, .external_lex_state = 5}, - [4912] = {.lex_state = 96, .external_lex_state = 5}, - [4913] = {.lex_state = 96, .external_lex_state = 2}, - [4914] = {.lex_state = 96, .external_lex_state = 2}, - [4915] = {.lex_state = 96, .external_lex_state = 5}, - [4916] = {.lex_state = 96, .external_lex_state = 5}, - [4917] = {.lex_state = 96, .external_lex_state = 5}, - [4918] = {.lex_state = 96, .external_lex_state = 5}, - [4919] = {.lex_state = 96, .external_lex_state = 2}, - [4920] = {.lex_state = 96, .external_lex_state = 2}, - [4921] = {.lex_state = 96, .external_lex_state = 5}, - [4922] = {.lex_state = 96, .external_lex_state = 5}, - [4923] = {.lex_state = 96, .external_lex_state = 2}, - [4924] = {.lex_state = 96, .external_lex_state = 5}, - [4925] = {.lex_state = 96, .external_lex_state = 2}, - [4926] = {.lex_state = 96, .external_lex_state = 5}, - [4927] = {.lex_state = 96, .external_lex_state = 2}, - [4928] = {.lex_state = 96, .external_lex_state = 5}, - [4929] = {.lex_state = 96, .external_lex_state = 5}, - [4930] = {.lex_state = 96, .external_lex_state = 2}, - [4931] = {.lex_state = 96, .external_lex_state = 5}, - [4932] = {.lex_state = 96, .external_lex_state = 5}, - [4933] = {.lex_state = 96, .external_lex_state = 2}, - [4934] = {.lex_state = 96, .external_lex_state = 2}, - [4935] = {.lex_state = 96, .external_lex_state = 5}, - [4936] = {.lex_state = 96, .external_lex_state = 2}, - [4937] = {.lex_state = 96, .external_lex_state = 2}, - [4938] = {.lex_state = 96, .external_lex_state = 5}, - [4939] = {.lex_state = 96, .external_lex_state = 5}, - [4940] = {.lex_state = 96, .external_lex_state = 2}, - [4941] = {.lex_state = 96, .external_lex_state = 2}, - [4942] = {.lex_state = 96, .external_lex_state = 5}, - [4943] = {.lex_state = 96, .external_lex_state = 5}, - [4944] = {.lex_state = 96, .external_lex_state = 2}, - [4945] = {.lex_state = 96, .external_lex_state = 5}, - [4946] = {.lex_state = 96, .external_lex_state = 5}, - [4947] = {.lex_state = 96, .external_lex_state = 2}, - [4948] = {.lex_state = 96, .external_lex_state = 2}, - [4949] = {.lex_state = 96, .external_lex_state = 2}, - [4950] = {.lex_state = 96, .external_lex_state = 5}, - [4951] = {.lex_state = 96, .external_lex_state = 5}, - [4952] = {.lex_state = 96, .external_lex_state = 5}, - [4953] = {.lex_state = 96, .external_lex_state = 5}, - [4954] = {.lex_state = 96, .external_lex_state = 5}, - [4955] = {.lex_state = 96, .external_lex_state = 5}, - [4956] = {.lex_state = 96, .external_lex_state = 5}, - [4957] = {.lex_state = 96, .external_lex_state = 5}, - [4958] = {.lex_state = 96, .external_lex_state = 5}, - [4959] = {.lex_state = 96, .external_lex_state = 2}, - [4960] = {.lex_state = 96, .external_lex_state = 5}, - [4961] = {.lex_state = 96, .external_lex_state = 5}, - [4962] = {.lex_state = 96, .external_lex_state = 5}, - [4963] = {.lex_state = 96, .external_lex_state = 2}, - [4964] = {.lex_state = 96, .external_lex_state = 5}, - [4965] = {.lex_state = 96, .external_lex_state = 5}, - [4966] = {.lex_state = 12, .external_lex_state = 2}, - [4967] = {.lex_state = 96, .external_lex_state = 5}, - [4968] = {.lex_state = 96, .external_lex_state = 5}, - [4969] = {.lex_state = 96, .external_lex_state = 5}, - [4970] = {.lex_state = 96, .external_lex_state = 2}, - [4971] = {.lex_state = 96, .external_lex_state = 5}, - [4972] = {.lex_state = 96, .external_lex_state = 5}, - [4973] = {.lex_state = 96, .external_lex_state = 2}, - [4974] = {.lex_state = 96, .external_lex_state = 2}, - [4975] = {.lex_state = 96, .external_lex_state = 5}, - [4976] = {.lex_state = 96, .external_lex_state = 5}, - [4977] = {.lex_state = 96, .external_lex_state = 2}, - [4978] = {.lex_state = 96, .external_lex_state = 5}, - [4979] = {.lex_state = 96, .external_lex_state = 5}, - [4980] = {.lex_state = 96, .external_lex_state = 5}, - [4981] = {.lex_state = 96, .external_lex_state = 5}, - [4982] = {.lex_state = 96, .external_lex_state = 5}, - [4983] = {.lex_state = 96, .external_lex_state = 2}, - [4984] = {.lex_state = 96, .external_lex_state = 5}, - [4985] = {.lex_state = 18, .external_lex_state = 8}, - [4986] = {.lex_state = 96, .external_lex_state = 5}, - [4987] = {.lex_state = 96, .external_lex_state = 5}, - [4988] = {.lex_state = 96, .external_lex_state = 2}, - [4989] = {.lex_state = 96, .external_lex_state = 2}, - [4990] = {.lex_state = 96, .external_lex_state = 5}, - [4991] = {.lex_state = 96, .external_lex_state = 5}, - [4992] = {.lex_state = 96, .external_lex_state = 5}, - [4993] = {.lex_state = 96, .external_lex_state = 5}, - [4994] = {.lex_state = 96, .external_lex_state = 5}, - [4995] = {.lex_state = 96, .external_lex_state = 2}, - [4996] = {.lex_state = 96, .external_lex_state = 5}, - [4997] = {.lex_state = 96, .external_lex_state = 5}, - [4998] = {.lex_state = 96, .external_lex_state = 5}, - [4999] = {.lex_state = 96, .external_lex_state = 5}, - [5000] = {.lex_state = 96, .external_lex_state = 5}, - [5001] = {.lex_state = 96, .external_lex_state = 5}, - [5002] = {.lex_state = 96, .external_lex_state = 2}, - [5003] = {.lex_state = 96, .external_lex_state = 2}, - [5004] = {.lex_state = 96, .external_lex_state = 5}, - [5005] = {.lex_state = 96, .external_lex_state = 2}, - [5006] = {.lex_state = 96, .external_lex_state = 2}, - [5007] = {.lex_state = 96, .external_lex_state = 5}, - [5008] = {.lex_state = 96, .external_lex_state = 2}, - [5009] = {.lex_state = 96, .external_lex_state = 5}, - [5010] = {.lex_state = 96, .external_lex_state = 5}, - [5011] = {.lex_state = 96, .external_lex_state = 5}, - [5012] = {.lex_state = 96, .external_lex_state = 5}, - [5013] = {.lex_state = 96, .external_lex_state = 5}, - [5014] = {.lex_state = 96, .external_lex_state = 5}, - [5015] = {.lex_state = 96, .external_lex_state = 5}, - [5016] = {.lex_state = 96, .external_lex_state = 5}, - [5017] = {.lex_state = 96, .external_lex_state = 5}, - [5018] = {.lex_state = 96, .external_lex_state = 5}, - [5019] = {.lex_state = 96, .external_lex_state = 5}, - [5020] = {.lex_state = 96, .external_lex_state = 5}, - [5021] = {.lex_state = 96, .external_lex_state = 5}, - [5022] = {.lex_state = 96, .external_lex_state = 2}, - [5023] = {.lex_state = 96, .external_lex_state = 5}, - [5024] = {.lex_state = 96, .external_lex_state = 5}, - [5025] = {.lex_state = 96, .external_lex_state = 5}, - [5026] = {.lex_state = 96, .external_lex_state = 5}, - [5027] = {.lex_state = 96, .external_lex_state = 5}, - [5028] = {.lex_state = 96, .external_lex_state = 2}, - [5029] = {.lex_state = 96, .external_lex_state = 5}, - [5030] = {.lex_state = 96, .external_lex_state = 5}, - [5031] = {.lex_state = 96, .external_lex_state = 5}, - [5032] = {.lex_state = 96, .external_lex_state = 2}, - [5033] = {.lex_state = 96, .external_lex_state = 5}, - [5034] = {.lex_state = 96, .external_lex_state = 5}, - [5035] = {.lex_state = 96, .external_lex_state = 5}, - [5036] = {.lex_state = 96, .external_lex_state = 5}, - [5037] = {.lex_state = 96, .external_lex_state = 5}, - [5038] = {.lex_state = 96, .external_lex_state = 5}, - [5039] = {.lex_state = 96, .external_lex_state = 5}, - [5040] = {.lex_state = 96, .external_lex_state = 5}, - [5041] = {.lex_state = 96, .external_lex_state = 5}, - [5042] = {.lex_state = 96, .external_lex_state = 5}, - [5043] = {.lex_state = 96, .external_lex_state = 5}, - [5044] = {.lex_state = 96, .external_lex_state = 5}, - [5045] = {.lex_state = 96, .external_lex_state = 5}, - [5046] = {.lex_state = 96, .external_lex_state = 5}, - [5047] = {.lex_state = 96, .external_lex_state = 2}, - [5048] = {.lex_state = 96, .external_lex_state = 2}, - [5049] = {.lex_state = 4, .external_lex_state = 2}, - [5050] = {.lex_state = 4, .external_lex_state = 2}, - [5051] = {.lex_state = 96, .external_lex_state = 5}, - [5052] = {.lex_state = 96, .external_lex_state = 5}, - [5053] = {.lex_state = 96, .external_lex_state = 5}, - [5054] = {.lex_state = 96, .external_lex_state = 5}, - [5055] = {.lex_state = 96, .external_lex_state = 5}, - [5056] = {.lex_state = 96, .external_lex_state = 5}, - [5057] = {.lex_state = 96, .external_lex_state = 5}, - [5058] = {.lex_state = 96, .external_lex_state = 5}, - [5059] = {.lex_state = 96, .external_lex_state = 5}, - [5060] = {.lex_state = 96, .external_lex_state = 5}, - [5061] = {.lex_state = 96, .external_lex_state = 2}, - [5062] = {.lex_state = 96, .external_lex_state = 2}, - [5063] = {.lex_state = 96, .external_lex_state = 2}, - [5064] = {.lex_state = 96, .external_lex_state = 5}, - [5065] = {.lex_state = 96, .external_lex_state = 2}, - [5066] = {.lex_state = 96, .external_lex_state = 5}, - [5067] = {.lex_state = 96, .external_lex_state = 5}, - [5068] = {.lex_state = 96, .external_lex_state = 5}, - [5069] = {.lex_state = 96, .external_lex_state = 5}, - [5070] = {.lex_state = 96, .external_lex_state = 2}, - [5071] = {.lex_state = 96, .external_lex_state = 5}, - [5072] = {.lex_state = 96, .external_lex_state = 2}, - [5073] = {.lex_state = 96, .external_lex_state = 5}, - [5074] = {.lex_state = 96, .external_lex_state = 5}, - [5075] = {.lex_state = 96, .external_lex_state = 5}, - [5076] = {.lex_state = 96, .external_lex_state = 5}, - [5077] = {.lex_state = 96, .external_lex_state = 5}, - [5078] = {.lex_state = 96, .external_lex_state = 2}, - [5079] = {.lex_state = 96, .external_lex_state = 5}, - [5080] = {.lex_state = 96, .external_lex_state = 5}, - [5081] = {.lex_state = 96, .external_lex_state = 5}, - [5082] = {.lex_state = 96, .external_lex_state = 5}, - [5083] = {.lex_state = 96, .external_lex_state = 5}, - [5084] = {.lex_state = 96, .external_lex_state = 5}, - [5085] = {.lex_state = 96, .external_lex_state = 5}, - [5086] = {.lex_state = 96, .external_lex_state = 5}, - [5087] = {.lex_state = 96, .external_lex_state = 5}, - [5088] = {.lex_state = 96, .external_lex_state = 5}, - [5089] = {.lex_state = 96, .external_lex_state = 5}, - [5090] = {.lex_state = 96, .external_lex_state = 5}, - [5091] = {.lex_state = 96, .external_lex_state = 5}, - [5092] = {.lex_state = 96, .external_lex_state = 5}, - [5093] = {.lex_state = 96, .external_lex_state = 2}, - [5094] = {.lex_state = 96, .external_lex_state = 5}, - [5095] = {.lex_state = 96, .external_lex_state = 5}, - [5096] = {.lex_state = 96, .external_lex_state = 5}, - [5097] = {.lex_state = 96, .external_lex_state = 5}, - [5098] = {.lex_state = 96, .external_lex_state = 5}, - [5099] = {.lex_state = 96, .external_lex_state = 5}, - [5100] = {.lex_state = 96, .external_lex_state = 5}, - [5101] = {.lex_state = 96, .external_lex_state = 5}, - [5102] = {.lex_state = 96, .external_lex_state = 5}, - [5103] = {.lex_state = 96, .external_lex_state = 2}, - [5104] = {.lex_state = 96, .external_lex_state = 2}, - [5105] = {.lex_state = 96, .external_lex_state = 2}, - [5106] = {.lex_state = 96, .external_lex_state = 5}, - [5107] = {.lex_state = 96, .external_lex_state = 2}, - [5108] = {.lex_state = 96, .external_lex_state = 2}, - [5109] = {.lex_state = 96, .external_lex_state = 2}, - [5110] = {.lex_state = 96, .external_lex_state = 2}, - [5111] = {.lex_state = 96, .external_lex_state = 2}, - [5112] = {.lex_state = 96, .external_lex_state = 2}, - [5113] = {.lex_state = 96, .external_lex_state = 2}, - [5114] = {.lex_state = 96, .external_lex_state = 2}, - [5115] = {.lex_state = 96, .external_lex_state = 2}, - [5116] = {.lex_state = 96, .external_lex_state = 2}, - [5117] = {.lex_state = 96, .external_lex_state = 2}, - [5118] = {.lex_state = 96, .external_lex_state = 2}, - [5119] = {.lex_state = 96, .external_lex_state = 2}, - [5120] = {.lex_state = 96, .external_lex_state = 2}, - [5121] = {.lex_state = 96, .external_lex_state = 2}, - [5122] = {.lex_state = 96, .external_lex_state = 2}, - [5123] = {.lex_state = 96, .external_lex_state = 2}, - [5124] = {.lex_state = 96, .external_lex_state = 2}, - [5125] = {.lex_state = 96, .external_lex_state = 2}, - [5126] = {.lex_state = 96, .external_lex_state = 2}, - [5127] = {.lex_state = 96, .external_lex_state = 2}, - [5128] = {.lex_state = 96, .external_lex_state = 2}, - [5129] = {.lex_state = 96, .external_lex_state = 2}, - [5130] = {.lex_state = 96, .external_lex_state = 2}, - [5131] = {.lex_state = 96, .external_lex_state = 2}, - [5132] = {.lex_state = 96, .external_lex_state = 2}, - [5133] = {.lex_state = 96, .external_lex_state = 2}, - [5134] = {.lex_state = 96, .external_lex_state = 2}, - [5135] = {.lex_state = 96, .external_lex_state = 2}, - [5136] = {.lex_state = 96, .external_lex_state = 2}, - [5137] = {.lex_state = 96, .external_lex_state = 5}, - [5138] = {.lex_state = 96, .external_lex_state = 2}, - [5139] = {.lex_state = 96, .external_lex_state = 2}, - [5140] = {.lex_state = 96, .external_lex_state = 2}, - [5141] = {.lex_state = 96, .external_lex_state = 2}, - [5142] = {.lex_state = 96, .external_lex_state = 2}, - [5143] = {.lex_state = 96, .external_lex_state = 2}, - [5144] = {.lex_state = 96, .external_lex_state = 2}, - [5145] = {.lex_state = 96, .external_lex_state = 2}, - [5146] = {.lex_state = 96, .external_lex_state = 2}, - [5147] = {.lex_state = 96, .external_lex_state = 2}, - [5148] = {.lex_state = 96, .external_lex_state = 2}, - [5149] = {.lex_state = 96, .external_lex_state = 2}, - [5150] = {.lex_state = 96, .external_lex_state = 2}, - [5151] = {.lex_state = 96, .external_lex_state = 5}, - [5152] = {.lex_state = 96, .external_lex_state = 2}, - [5153] = {.lex_state = 96, .external_lex_state = 2}, - [5154] = {.lex_state = 96, .external_lex_state = 2}, - [5155] = {.lex_state = 96, .external_lex_state = 2}, - [5156] = {.lex_state = 96, .external_lex_state = 2}, - [5157] = {.lex_state = 96, .external_lex_state = 2}, - [5158] = {.lex_state = 96, .external_lex_state = 2}, - [5159] = {.lex_state = 96, .external_lex_state = 2}, - [5160] = {.lex_state = 96, .external_lex_state = 2}, - [5161] = {.lex_state = 96, .external_lex_state = 2}, - [5162] = {.lex_state = 96, .external_lex_state = 2}, - [5163] = {.lex_state = 96, .external_lex_state = 2}, - [5164] = {.lex_state = 96, .external_lex_state = 2}, - [5165] = {.lex_state = 96, .external_lex_state = 2}, - [5166] = {.lex_state = 96, .external_lex_state = 2}, - [5167] = {.lex_state = 96, .external_lex_state = 2}, - [5168] = {.lex_state = 96, .external_lex_state = 2}, - [5169] = {.lex_state = 96, .external_lex_state = 5}, - [5170] = {.lex_state = 96, .external_lex_state = 5}, - [5171] = {.lex_state = 96, .external_lex_state = 2}, - [5172] = {.lex_state = 96, .external_lex_state = 2}, - [5173] = {.lex_state = 96, .external_lex_state = 2}, - [5174] = {.lex_state = 96, .external_lex_state = 2}, - [5175] = {.lex_state = 96, .external_lex_state = 2}, - [5176] = {.lex_state = 96, .external_lex_state = 2}, - [5177] = {.lex_state = 96, .external_lex_state = 2}, - [5178] = {.lex_state = 96, .external_lex_state = 2}, - [5179] = {.lex_state = 96, .external_lex_state = 2}, - [5180] = {.lex_state = 96, .external_lex_state = 2}, - [5181] = {.lex_state = 96, .external_lex_state = 2}, - [5182] = {.lex_state = 96, .external_lex_state = 2}, - [5183] = {.lex_state = 96, .external_lex_state = 2}, - [5184] = {.lex_state = 96, .external_lex_state = 2}, - [5185] = {.lex_state = 96, .external_lex_state = 2}, - [5186] = {.lex_state = 96, .external_lex_state = 2}, - [5187] = {.lex_state = 96, .external_lex_state = 2}, - [5188] = {.lex_state = 96, .external_lex_state = 2}, - [5189] = {.lex_state = 96, .external_lex_state = 2}, - [5190] = {.lex_state = 96, .external_lex_state = 2}, - [5191] = {.lex_state = 96, .external_lex_state = 2}, - [5192] = {.lex_state = 96, .external_lex_state = 5}, - [5193] = {.lex_state = 96, .external_lex_state = 2}, - [5194] = {.lex_state = 96, .external_lex_state = 2}, - [5195] = {.lex_state = 96, .external_lex_state = 2}, - [5196] = {.lex_state = 96, .external_lex_state = 2}, - [5197] = {.lex_state = 96, .external_lex_state = 2}, - [5198] = {.lex_state = 96, .external_lex_state = 2}, - [5199] = {.lex_state = 96, .external_lex_state = 2}, - [5200] = {.lex_state = 96, .external_lex_state = 2}, - [5201] = {.lex_state = 96, .external_lex_state = 2}, - [5202] = {.lex_state = 96, .external_lex_state = 2}, - [5203] = {.lex_state = 96, .external_lex_state = 2}, - [5204] = {.lex_state = 96, .external_lex_state = 2}, - [5205] = {.lex_state = 96, .external_lex_state = 2}, - [5206] = {.lex_state = 96, .external_lex_state = 2}, - [5207] = {.lex_state = 96, .external_lex_state = 2}, - [5208] = {.lex_state = 96, .external_lex_state = 2}, - [5209] = {.lex_state = 96, .external_lex_state = 2}, - [5210] = {.lex_state = 96, .external_lex_state = 2}, - [5211] = {.lex_state = 96, .external_lex_state = 2}, - [5212] = {.lex_state = 96, .external_lex_state = 2}, - [5213] = {.lex_state = 96, .external_lex_state = 2}, - [5214] = {.lex_state = 96, .external_lex_state = 5}, - [5215] = {.lex_state = 96, .external_lex_state = 2}, - [5216] = {.lex_state = 96, .external_lex_state = 2}, - [5217] = {.lex_state = 96, .external_lex_state = 2}, - [5218] = {.lex_state = 96, .external_lex_state = 2}, - [5219] = {.lex_state = 96, .external_lex_state = 2}, - [5220] = {.lex_state = 96, .external_lex_state = 2}, - [5221] = {.lex_state = 96, .external_lex_state = 2}, - [5222] = {.lex_state = 96, .external_lex_state = 2}, - [5223] = {.lex_state = 96, .external_lex_state = 2}, - [5224] = {.lex_state = 96, .external_lex_state = 2}, - [5225] = {.lex_state = 96, .external_lex_state = 2}, - [5226] = {.lex_state = 96, .external_lex_state = 2}, - [5227] = {.lex_state = 96, .external_lex_state = 2}, - [5228] = {.lex_state = 96, .external_lex_state = 2}, - [5229] = {.lex_state = 96, .external_lex_state = 2}, - [5230] = {.lex_state = 96, .external_lex_state = 2}, - [5231] = {.lex_state = 96, .external_lex_state = 2}, - [5232] = {.lex_state = 96, .external_lex_state = 2}, - [5233] = {.lex_state = 96, .external_lex_state = 2}, - [5234] = {.lex_state = 96, .external_lex_state = 2}, - [5235] = {.lex_state = 96, .external_lex_state = 2}, - [5236] = {.lex_state = 96, .external_lex_state = 2}, - [5237] = {.lex_state = 96, .external_lex_state = 2}, - [5238] = {.lex_state = 96, .external_lex_state = 2}, - [5239] = {.lex_state = 96, .external_lex_state = 2}, - [5240] = {.lex_state = 96, .external_lex_state = 2}, - [5241] = {.lex_state = 96, .external_lex_state = 5}, - [5242] = {.lex_state = 96, .external_lex_state = 2}, - [5243] = {.lex_state = 96, .external_lex_state = 5}, - [5244] = {.lex_state = 96, .external_lex_state = 2}, - [5245] = {.lex_state = 96, .external_lex_state = 2}, - [5246] = {.lex_state = 96, .external_lex_state = 2}, - [5247] = {.lex_state = 96, .external_lex_state = 2}, - [5248] = {.lex_state = 96, .external_lex_state = 2}, - [5249] = {.lex_state = 96, .external_lex_state = 2}, - [5250] = {.lex_state = 96, .external_lex_state = 2}, - [5251] = {.lex_state = 96, .external_lex_state = 2}, - [5252] = {.lex_state = 96, .external_lex_state = 2}, - [5253] = {.lex_state = 96, .external_lex_state = 2}, - [5254] = {.lex_state = 96, .external_lex_state = 2}, - [5255] = {.lex_state = 96, .external_lex_state = 2}, - [5256] = {.lex_state = 96, .external_lex_state = 2}, - [5257] = {.lex_state = 96, .external_lex_state = 2}, - [5258] = {.lex_state = 96, .external_lex_state = 2}, - [5259] = {.lex_state = 96, .external_lex_state = 2}, - [5260] = {.lex_state = 96, .external_lex_state = 2}, - [5261] = {.lex_state = 96, .external_lex_state = 2}, - [5262] = {.lex_state = 96, .external_lex_state = 2}, - [5263] = {.lex_state = 96, .external_lex_state = 2}, - [5264] = {.lex_state = 96, .external_lex_state = 2}, - [5265] = {.lex_state = 96, .external_lex_state = 2}, - [5266] = {.lex_state = 96, .external_lex_state = 2}, - [5267] = {.lex_state = 96, .external_lex_state = 2}, - [5268] = {.lex_state = 96, .external_lex_state = 2}, - [5269] = {.lex_state = 96, .external_lex_state = 2}, - [5270] = {.lex_state = 96, .external_lex_state = 2}, - [5271] = {.lex_state = 96, .external_lex_state = 2}, - [5272] = {.lex_state = 96, .external_lex_state = 2}, - [5273] = {.lex_state = 96, .external_lex_state = 2}, - [5274] = {.lex_state = 96, .external_lex_state = 2}, - [5275] = {.lex_state = 96, .external_lex_state = 2}, - [5276] = {.lex_state = 96, .external_lex_state = 2}, - [5277] = {.lex_state = 96, .external_lex_state = 5}, - [5278] = {.lex_state = 96, .external_lex_state = 5}, - [5279] = {.lex_state = 96, .external_lex_state = 2}, - [5280] = {.lex_state = 96, .external_lex_state = 2}, - [5281] = {.lex_state = 96, .external_lex_state = 2}, - [5282] = {.lex_state = 96, .external_lex_state = 2}, - [5283] = {.lex_state = 96, .external_lex_state = 2}, - [5284] = {.lex_state = 96, .external_lex_state = 2}, - [5285] = {.lex_state = 96, .external_lex_state = 2}, - [5286] = {.lex_state = 96, .external_lex_state = 2}, - [5287] = {.lex_state = 96, .external_lex_state = 2}, - [5288] = {.lex_state = 96, .external_lex_state = 2}, - [5289] = {.lex_state = 96, .external_lex_state = 5}, - [5290] = {.lex_state = 96, .external_lex_state = 2}, - [5291] = {.lex_state = 96, .external_lex_state = 2}, - [5292] = {.lex_state = 96, .external_lex_state = 2}, - [5293] = {.lex_state = 96, .external_lex_state = 2}, - [5294] = {.lex_state = 96, .external_lex_state = 2}, - [5295] = {.lex_state = 96, .external_lex_state = 2}, - [5296] = {.lex_state = 96, .external_lex_state = 2}, - [5297] = {.lex_state = 96, .external_lex_state = 2}, - [5298] = {.lex_state = 96, .external_lex_state = 2}, - [5299] = {.lex_state = 96, .external_lex_state = 2}, - [5300] = {.lex_state = 96, .external_lex_state = 2}, - [5301] = {.lex_state = 96, .external_lex_state = 2}, - [5302] = {.lex_state = 96, .external_lex_state = 2}, - [5303] = {.lex_state = 96, .external_lex_state = 2}, - [5304] = {.lex_state = 96, .external_lex_state = 2}, - [5305] = {.lex_state = 96, .external_lex_state = 2}, - [5306] = {.lex_state = 96, .external_lex_state = 2}, - [5307] = {.lex_state = 96, .external_lex_state = 2}, - [5308] = {.lex_state = 96, .external_lex_state = 2}, - [5309] = {.lex_state = 96, .external_lex_state = 2}, - [5310] = {.lex_state = 96, .external_lex_state = 2}, - [5311] = {.lex_state = 96, .external_lex_state = 2}, - [5312] = {.lex_state = 96, .external_lex_state = 2}, - [5313] = {.lex_state = 96, .external_lex_state = 2}, - [5314] = {.lex_state = 96, .external_lex_state = 2}, - [5315] = {.lex_state = 96, .external_lex_state = 2}, - [5316] = {.lex_state = 96, .external_lex_state = 2}, - [5317] = {.lex_state = 96, .external_lex_state = 2}, - [5318] = {.lex_state = 96, .external_lex_state = 2}, - [5319] = {.lex_state = 96, .external_lex_state = 2}, - [5320] = {.lex_state = 96, .external_lex_state = 2}, - [5321] = {.lex_state = 96, .external_lex_state = 2}, - [5322] = {.lex_state = 96, .external_lex_state = 2}, - [5323] = {.lex_state = 96, .external_lex_state = 2}, - [5324] = {.lex_state = 96, .external_lex_state = 2}, - [5325] = {.lex_state = 96, .external_lex_state = 2}, - [5326] = {.lex_state = 96, .external_lex_state = 2}, - [5327] = {.lex_state = 96, .external_lex_state = 2}, - [5328] = {.lex_state = 96, .external_lex_state = 2}, - [5329] = {.lex_state = 96, .external_lex_state = 2}, - [5330] = {.lex_state = 96, .external_lex_state = 2}, - [5331] = {.lex_state = 96, .external_lex_state = 2}, - [5332] = {.lex_state = 96, .external_lex_state = 2}, - [5333] = {.lex_state = 96, .external_lex_state = 2}, - [5334] = {.lex_state = 96, .external_lex_state = 5}, - [5335] = {.lex_state = 96, .external_lex_state = 5}, - [5336] = {.lex_state = 96, .external_lex_state = 2}, - [5337] = {.lex_state = 96, .external_lex_state = 2}, - [5338] = {.lex_state = 96, .external_lex_state = 2}, - [5339] = {.lex_state = 96, .external_lex_state = 2}, - [5340] = {.lex_state = 96, .external_lex_state = 2}, - [5341] = {.lex_state = 96, .external_lex_state = 2}, - [5342] = {.lex_state = 96, .external_lex_state = 2}, - [5343] = {.lex_state = 96, .external_lex_state = 2}, - [5344] = {.lex_state = 96, .external_lex_state = 2}, - [5345] = {.lex_state = 96, .external_lex_state = 2}, - [5346] = {.lex_state = 96, .external_lex_state = 2}, - [5347] = {.lex_state = 96, .external_lex_state = 2}, - [5348] = {.lex_state = 96, .external_lex_state = 2}, - [5349] = {.lex_state = 96, .external_lex_state = 2}, - [5350] = {.lex_state = 96, .external_lex_state = 2}, - [5351] = {.lex_state = 96, .external_lex_state = 2}, - [5352] = {.lex_state = 96, .external_lex_state = 2}, - [5353] = {.lex_state = 96, .external_lex_state = 2}, - [5354] = {.lex_state = 96, .external_lex_state = 2}, - [5355] = {.lex_state = 96, .external_lex_state = 2}, - [5356] = {.lex_state = 96, .external_lex_state = 2}, - [5357] = {.lex_state = 96, .external_lex_state = 2}, - [5358] = {.lex_state = 96, .external_lex_state = 2}, - [5359] = {.lex_state = 96, .external_lex_state = 2}, - [5360] = {.lex_state = 96, .external_lex_state = 2}, - [5361] = {.lex_state = 96, .external_lex_state = 2}, - [5362] = {.lex_state = 96, .external_lex_state = 2}, - [5363] = {.lex_state = 96, .external_lex_state = 2}, - [5364] = {.lex_state = 96, .external_lex_state = 2}, - [5365] = {.lex_state = 96, .external_lex_state = 2}, - [5366] = {.lex_state = 96, .external_lex_state = 2}, - [5367] = {.lex_state = 96, .external_lex_state = 2}, - [5368] = {.lex_state = 96, .external_lex_state = 2}, - [5369] = {.lex_state = 96, .external_lex_state = 2}, - [5370] = {.lex_state = 96, .external_lex_state = 2}, - [5371] = {.lex_state = 96, .external_lex_state = 2}, - [5372] = {.lex_state = 96, .external_lex_state = 2}, - [5373] = {.lex_state = 96, .external_lex_state = 2}, - [5374] = {.lex_state = 96, .external_lex_state = 2}, - [5375] = {.lex_state = 96, .external_lex_state = 2}, - [5376] = {.lex_state = 96, .external_lex_state = 2}, - [5377] = {.lex_state = 96, .external_lex_state = 2}, - [5378] = {.lex_state = 96, .external_lex_state = 5}, - [5379] = {.lex_state = 96, .external_lex_state = 2}, - [5380] = {.lex_state = 96, .external_lex_state = 5}, - [5381] = {.lex_state = 96, .external_lex_state = 2}, - [5382] = {.lex_state = 96, .external_lex_state = 2}, - [5383] = {.lex_state = 96, .external_lex_state = 2}, - [5384] = {.lex_state = 96, .external_lex_state = 2}, - [5385] = {.lex_state = 96, .external_lex_state = 5}, - [5386] = {.lex_state = 96, .external_lex_state = 2}, - [5387] = {.lex_state = 96, .external_lex_state = 2}, - [5388] = {.lex_state = 96, .external_lex_state = 2}, - [5389] = {.lex_state = 96, .external_lex_state = 2}, - [5390] = {.lex_state = 96, .external_lex_state = 2}, - [5391] = {.lex_state = 96, .external_lex_state = 2}, - [5392] = {.lex_state = 96, .external_lex_state = 2}, - [5393] = {.lex_state = 96, .external_lex_state = 2}, - [5394] = {.lex_state = 96, .external_lex_state = 2}, - [5395] = {.lex_state = 96, .external_lex_state = 2}, - [5396] = {.lex_state = 96, .external_lex_state = 2}, - [5397] = {.lex_state = 96, .external_lex_state = 2}, - [5398] = {.lex_state = 96, .external_lex_state = 2}, - [5399] = {.lex_state = 96, .external_lex_state = 2}, - [5400] = {.lex_state = 96, .external_lex_state = 2}, - [5401] = {.lex_state = 96, .external_lex_state = 5}, - [5402] = {.lex_state = 96, .external_lex_state = 2}, - [5403] = {.lex_state = 96, .external_lex_state = 2}, - [5404] = {.lex_state = 96, .external_lex_state = 5}, - [5405] = {.lex_state = 96, .external_lex_state = 2}, - [5406] = {.lex_state = 96, .external_lex_state = 2}, - [5407] = {.lex_state = 96, .external_lex_state = 2}, - [5408] = {.lex_state = 96, .external_lex_state = 2}, - [5409] = {.lex_state = 96, .external_lex_state = 5}, - [5410] = {.lex_state = 96, .external_lex_state = 2}, - [5411] = {.lex_state = 96, .external_lex_state = 2}, - [5412] = {.lex_state = 96, .external_lex_state = 5}, - [5413] = {.lex_state = 96, .external_lex_state = 2}, - [5414] = {.lex_state = 96, .external_lex_state = 5}, - [5415] = {.lex_state = 96, .external_lex_state = 2}, - [5416] = {.lex_state = 96, .external_lex_state = 2}, - [5417] = {.lex_state = 96, .external_lex_state = 2}, - [5418] = {.lex_state = 96, .external_lex_state = 2}, - [5419] = {.lex_state = 96, .external_lex_state = 2}, - [5420] = {.lex_state = 96, .external_lex_state = 2}, - [5421] = {.lex_state = 96, .external_lex_state = 2}, - [5422] = {.lex_state = 96, .external_lex_state = 5}, - [5423] = {.lex_state = 96, .external_lex_state = 2}, - [5424] = {.lex_state = 96, .external_lex_state = 5}, - [5425] = {.lex_state = 96, .external_lex_state = 5}, - [5426] = {.lex_state = 96, .external_lex_state = 2}, - [5427] = {.lex_state = 96, .external_lex_state = 2}, - [5428] = {.lex_state = 96, .external_lex_state = 2}, - [5429] = {.lex_state = 96, .external_lex_state = 2}, - [5430] = {.lex_state = 96, .external_lex_state = 5}, - [5431] = {.lex_state = 96, .external_lex_state = 2}, - [5432] = {.lex_state = 96, .external_lex_state = 2}, - [5433] = {.lex_state = 96, .external_lex_state = 2}, - [5434] = {.lex_state = 96, .external_lex_state = 2}, - [5435] = {.lex_state = 96, .external_lex_state = 2}, - [5436] = {.lex_state = 96, .external_lex_state = 2}, - [5437] = {.lex_state = 96, .external_lex_state = 2}, - [5438] = {.lex_state = 96, .external_lex_state = 5}, - [5439] = {.lex_state = 96, .external_lex_state = 5}, - [5440] = {.lex_state = 96, .external_lex_state = 2}, - [5441] = {.lex_state = 96, .external_lex_state = 2}, - [5442] = {.lex_state = 96, .external_lex_state = 2}, - [5443] = {.lex_state = 96, .external_lex_state = 2}, - [5444] = {.lex_state = 96, .external_lex_state = 2}, - [5445] = {.lex_state = 96, .external_lex_state = 2}, - [5446] = {.lex_state = 96, .external_lex_state = 2}, - [5447] = {.lex_state = 96, .external_lex_state = 2}, - [5448] = {.lex_state = 96, .external_lex_state = 2}, - [5449] = {.lex_state = 96, .external_lex_state = 2}, - [5450] = {.lex_state = 96, .external_lex_state = 2}, - [5451] = {.lex_state = 96, .external_lex_state = 2}, - [5452] = {.lex_state = 96, .external_lex_state = 2}, - [5453] = {.lex_state = 96, .external_lex_state = 2}, - [5454] = {.lex_state = 96, .external_lex_state = 2}, - [5455] = {.lex_state = 96, .external_lex_state = 2}, - [5456] = {.lex_state = 96, .external_lex_state = 2}, - [5457] = {.lex_state = 96, .external_lex_state = 2}, - [5458] = {.lex_state = 96, .external_lex_state = 2}, - [5459] = {.lex_state = 96, .external_lex_state = 2}, - [5460] = {.lex_state = 96, .external_lex_state = 2}, - [5461] = {.lex_state = 96, .external_lex_state = 2}, - [5462] = {.lex_state = 96, .external_lex_state = 2}, - [5463] = {.lex_state = 96, .external_lex_state = 2}, - [5464] = {.lex_state = 96, .external_lex_state = 2}, - [5465] = {.lex_state = 96, .external_lex_state = 2}, - [5466] = {.lex_state = 96, .external_lex_state = 2}, - [5467] = {.lex_state = 96, .external_lex_state = 2}, - [5468] = {.lex_state = 96, .external_lex_state = 2}, - [5469] = {.lex_state = 96, .external_lex_state = 2}, - [5470] = {.lex_state = 96, .external_lex_state = 2}, - [5471] = {.lex_state = 28, .external_lex_state = 2}, - [5472] = {.lex_state = 96, .external_lex_state = 2}, - [5473] = {.lex_state = 96, .external_lex_state = 2}, - [5474] = {.lex_state = 96, .external_lex_state = 2}, - [5475] = {.lex_state = 96, .external_lex_state = 2}, - [5476] = {.lex_state = 96, .external_lex_state = 2}, - [5477] = {.lex_state = 96, .external_lex_state = 2}, - [5478] = {.lex_state = 96, .external_lex_state = 2}, - [5479] = {.lex_state = 96, .external_lex_state = 2}, - [5480] = {.lex_state = 96, .external_lex_state = 2}, - [5481] = {.lex_state = 96, .external_lex_state = 2}, - [5482] = {.lex_state = 96, .external_lex_state = 2}, - [5483] = {.lex_state = 96, .external_lex_state = 2}, - [5484] = {.lex_state = 96, .external_lex_state = 2}, - [5485] = {.lex_state = 96, .external_lex_state = 2}, - [5486] = {.lex_state = 96, .external_lex_state = 2}, - [5487] = {.lex_state = 96, .external_lex_state = 2}, - [5488] = {.lex_state = 96, .external_lex_state = 2}, - [5489] = {.lex_state = 96, .external_lex_state = 2}, - [5490] = {.lex_state = 96, .external_lex_state = 2}, - [5491] = {.lex_state = 96, .external_lex_state = 2}, - [5492] = {.lex_state = 96, .external_lex_state = 2}, - [5493] = {.lex_state = 96, .external_lex_state = 2}, - [5494] = {.lex_state = 96, .external_lex_state = 2}, - [5495] = {.lex_state = 96, .external_lex_state = 2}, - [5496] = {.lex_state = 96, .external_lex_state = 2}, - [5497] = {.lex_state = 96, .external_lex_state = 2}, - [5498] = {.lex_state = 96, .external_lex_state = 2}, - [5499] = {.lex_state = 96, .external_lex_state = 2}, - [5500] = {.lex_state = 96, .external_lex_state = 2}, - [5501] = {.lex_state = 96, .external_lex_state = 2}, - [5502] = {.lex_state = 96, .external_lex_state = 2}, - [5503] = {.lex_state = 96, .external_lex_state = 2}, - [5504] = {.lex_state = 96, .external_lex_state = 2}, - [5505] = {.lex_state = 96, .external_lex_state = 2}, - [5506] = {.lex_state = 96, .external_lex_state = 2}, - [5507] = {.lex_state = 96, .external_lex_state = 2}, - [5508] = {.lex_state = 2, .external_lex_state = 10}, - [5509] = {.lex_state = 96, .external_lex_state = 2}, - [5510] = {.lex_state = 96, .external_lex_state = 2}, - [5511] = {.lex_state = 96, .external_lex_state = 2}, - [5512] = {.lex_state = 28, .external_lex_state = 2}, - [5513] = {.lex_state = 96, .external_lex_state = 2}, - [5514] = {.lex_state = 96, .external_lex_state = 2}, - [5515] = {.lex_state = 96, .external_lex_state = 2}, - [5516] = {.lex_state = 96, .external_lex_state = 2}, - [5517] = {.lex_state = 96, .external_lex_state = 2}, - [5518] = {.lex_state = 96, .external_lex_state = 2}, - [5519] = {.lex_state = 96, .external_lex_state = 2}, - [5520] = {.lex_state = 96, .external_lex_state = 2}, - [5521] = {.lex_state = 96, .external_lex_state = 2}, - [5522] = {.lex_state = 96, .external_lex_state = 2}, - [5523] = {.lex_state = 96, .external_lex_state = 2}, - [5524] = {.lex_state = 96, .external_lex_state = 2}, - [5525] = {.lex_state = 96, .external_lex_state = 2}, - [5526] = {.lex_state = 96, .external_lex_state = 2}, - [5527] = {.lex_state = 96, .external_lex_state = 2}, - [5528] = {.lex_state = 96, .external_lex_state = 2}, - [5529] = {.lex_state = 96, .external_lex_state = 2}, - [5530] = {.lex_state = 96, .external_lex_state = 2}, - [5531] = {.lex_state = 96, .external_lex_state = 2}, - [5532] = {.lex_state = 96, .external_lex_state = 2}, - [5533] = {.lex_state = 96, .external_lex_state = 2}, - [5534] = {.lex_state = 96, .external_lex_state = 2}, - [5535] = {.lex_state = 96, .external_lex_state = 2}, - [5536] = {.lex_state = 96, .external_lex_state = 2}, - [5537] = {.lex_state = 96, .external_lex_state = 2}, - [5538] = {.lex_state = 96, .external_lex_state = 2}, - [5539] = {.lex_state = 96, .external_lex_state = 2}, - [5540] = {.lex_state = 96, .external_lex_state = 2}, - [5541] = {.lex_state = 96, .external_lex_state = 2}, - [5542] = {.lex_state = 96, .external_lex_state = 2}, - [5543] = {.lex_state = 96, .external_lex_state = 2}, - [5544] = {.lex_state = 96, .external_lex_state = 2}, - [5545] = {.lex_state = 96, .external_lex_state = 2}, - [5546] = {.lex_state = 96, .external_lex_state = 2}, - [5547] = {.lex_state = 96, .external_lex_state = 2}, - [5548] = {.lex_state = 96, .external_lex_state = 2}, - [5549] = {.lex_state = 96, .external_lex_state = 2}, - [5550] = {.lex_state = 96, .external_lex_state = 2}, - [5551] = {.lex_state = 96, .external_lex_state = 2}, - [5552] = {.lex_state = 96, .external_lex_state = 2}, - [5553] = {.lex_state = 96, .external_lex_state = 2}, - [5554] = {.lex_state = 96, .external_lex_state = 2}, - [5555] = {.lex_state = 96, .external_lex_state = 2}, - [5556] = {.lex_state = 96, .external_lex_state = 2}, - [5557] = {.lex_state = 96, .external_lex_state = 2}, - [5558] = {.lex_state = 96, .external_lex_state = 2}, - [5559] = {.lex_state = 96, .external_lex_state = 2}, - [5560] = {.lex_state = 96, .external_lex_state = 2}, - [5561] = {.lex_state = 96, .external_lex_state = 2}, - [5562] = {.lex_state = 96, .external_lex_state = 2}, - [5563] = {.lex_state = 96, .external_lex_state = 2}, - [5564] = {.lex_state = 96, .external_lex_state = 2}, - [5565] = {.lex_state = 96, .external_lex_state = 2}, - [5566] = {.lex_state = 96, .external_lex_state = 2}, - [5567] = {.lex_state = 96, .external_lex_state = 2}, - [5568] = {.lex_state = 96, .external_lex_state = 2}, - [5569] = {.lex_state = 96, .external_lex_state = 2}, - [5570] = {.lex_state = 96, .external_lex_state = 2}, - [5571] = {.lex_state = 96, .external_lex_state = 2}, - [5572] = {.lex_state = 96, .external_lex_state = 2}, - [5573] = {.lex_state = 96, .external_lex_state = 2}, - [5574] = {.lex_state = 96, .external_lex_state = 2}, - [5575] = {.lex_state = 96, .external_lex_state = 2}, - [5576] = {.lex_state = 96, .external_lex_state = 2}, - [5577] = {.lex_state = 96, .external_lex_state = 2}, - [5578] = {.lex_state = 96, .external_lex_state = 2}, - [5579] = {.lex_state = 96, .external_lex_state = 2}, - [5580] = {.lex_state = 96, .external_lex_state = 2}, - [5581] = {.lex_state = 2, .external_lex_state = 10}, - [5582] = {.lex_state = 96, .external_lex_state = 2}, - [5583] = {.lex_state = 96, .external_lex_state = 2}, - [5584] = {.lex_state = 96, .external_lex_state = 2}, - [5585] = {.lex_state = 96, .external_lex_state = 2}, - [5586] = {.lex_state = 96, .external_lex_state = 2}, - [5587] = {.lex_state = 96, .external_lex_state = 2}, - [5588] = {.lex_state = 96, .external_lex_state = 2}, - [5589] = {.lex_state = 96, .external_lex_state = 2}, - [5590] = {.lex_state = 96, .external_lex_state = 2}, - [5591] = {.lex_state = 96, .external_lex_state = 2}, - [5592] = {.lex_state = 96, .external_lex_state = 2}, - [5593] = {.lex_state = 96, .external_lex_state = 2}, - [5594] = {.lex_state = 96, .external_lex_state = 2}, - [5595] = {.lex_state = 96, .external_lex_state = 2}, - [5596] = {.lex_state = 96, .external_lex_state = 2}, - [5597] = {.lex_state = 96, .external_lex_state = 2}, - [5598] = {.lex_state = 96, .external_lex_state = 2}, - [5599] = {.lex_state = 96, .external_lex_state = 2}, - [5600] = {.lex_state = 96, .external_lex_state = 2}, - [5601] = {.lex_state = 96, .external_lex_state = 2}, - [5602] = {.lex_state = 96, .external_lex_state = 2}, - [5603] = {.lex_state = 96, .external_lex_state = 2}, - [5604] = {.lex_state = 96, .external_lex_state = 2}, - [5605] = {.lex_state = 96, .external_lex_state = 2}, - [5606] = {.lex_state = 96, .external_lex_state = 2}, - [5607] = {.lex_state = 96, .external_lex_state = 2}, - [5608] = {.lex_state = 96, .external_lex_state = 2}, - [5609] = {.lex_state = 96, .external_lex_state = 2}, - [5610] = {.lex_state = 96, .external_lex_state = 2}, - [5611] = {.lex_state = 96, .external_lex_state = 2}, - [5612] = {.lex_state = 96, .external_lex_state = 2}, - [5613] = {.lex_state = 96, .external_lex_state = 2}, - [5614] = {.lex_state = 96, .external_lex_state = 2}, - [5615] = {.lex_state = 96, .external_lex_state = 2}, - [5616] = {.lex_state = 96, .external_lex_state = 2}, - [5617] = {.lex_state = 96, .external_lex_state = 2}, - [5618] = {.lex_state = 96, .external_lex_state = 2}, - [5619] = {.lex_state = 96, .external_lex_state = 2}, - [5620] = {.lex_state = 96, .external_lex_state = 2}, - [5621] = {.lex_state = 96, .external_lex_state = 2}, - [5622] = {.lex_state = 96, .external_lex_state = 2}, - [5623] = {.lex_state = 96, .external_lex_state = 2}, - [5624] = {.lex_state = 96, .external_lex_state = 2}, - [5625] = {.lex_state = 96, .external_lex_state = 2}, - [5626] = {.lex_state = 96, .external_lex_state = 2}, - [5627] = {.lex_state = 96, .external_lex_state = 2}, - [5628] = {.lex_state = 96, .external_lex_state = 2}, - [5629] = {.lex_state = 96, .external_lex_state = 2}, - [5630] = {.lex_state = 96, .external_lex_state = 2}, - [5631] = {.lex_state = 28, .external_lex_state = 2}, - [5632] = {.lex_state = 2, .external_lex_state = 10}, - [5633] = {.lex_state = 96, .external_lex_state = 2}, - [5634] = {.lex_state = 96, .external_lex_state = 2}, - [5635] = {.lex_state = 96, .external_lex_state = 2}, - [5636] = {.lex_state = 96, .external_lex_state = 2}, - [5637] = {.lex_state = 96, .external_lex_state = 2}, - [5638] = {.lex_state = 96, .external_lex_state = 2}, - [5639] = {.lex_state = 96, .external_lex_state = 2}, - [5640] = {.lex_state = 96, .external_lex_state = 2}, - [5641] = {.lex_state = 96, .external_lex_state = 2}, - [5642] = {.lex_state = 96, .external_lex_state = 2}, - [5643] = {.lex_state = 96, .external_lex_state = 2}, - [5644] = {.lex_state = 96, .external_lex_state = 2}, - [5645] = {.lex_state = 96, .external_lex_state = 2}, - [5646] = {.lex_state = 96, .external_lex_state = 2}, - [5647] = {.lex_state = 96, .external_lex_state = 2}, - [5648] = {.lex_state = 96, .external_lex_state = 2}, - [5649] = {.lex_state = 96, .external_lex_state = 2}, - [5650] = {.lex_state = 96, .external_lex_state = 2}, - [5651] = {.lex_state = 96, .external_lex_state = 2}, - [5652] = {.lex_state = 96, .external_lex_state = 2}, - [5653] = {.lex_state = 96, .external_lex_state = 2}, - [5654] = {.lex_state = 96, .external_lex_state = 2}, - [5655] = {.lex_state = 96, .external_lex_state = 2}, - [5656] = {.lex_state = 96, .external_lex_state = 2}, - [5657] = {.lex_state = 96, .external_lex_state = 2}, - [5658] = {.lex_state = 96, .external_lex_state = 2}, - [5659] = {.lex_state = 96, .external_lex_state = 2}, - [5660] = {.lex_state = 96, .external_lex_state = 2}, - [5661] = {.lex_state = 96, .external_lex_state = 2}, - [5662] = {.lex_state = 96, .external_lex_state = 2}, - [5663] = {.lex_state = 96, .external_lex_state = 2}, - [5664] = {.lex_state = 96, .external_lex_state = 2}, - [5665] = {.lex_state = 96, .external_lex_state = 2}, - [5666] = {.lex_state = 96, .external_lex_state = 2}, - [5667] = {.lex_state = 96, .external_lex_state = 2}, - [5668] = {.lex_state = 96, .external_lex_state = 2}, - [5669] = {.lex_state = 96, .external_lex_state = 2}, - [5670] = {.lex_state = 96, .external_lex_state = 2}, - [5671] = {.lex_state = 96, .external_lex_state = 2}, - [5672] = {.lex_state = 96, .external_lex_state = 2}, - [5673] = {.lex_state = 96, .external_lex_state = 2}, - [5674] = {.lex_state = 96, .external_lex_state = 2}, - [5675] = {.lex_state = 96, .external_lex_state = 2}, - [5676] = {.lex_state = 96, .external_lex_state = 2}, - [5677] = {.lex_state = 96, .external_lex_state = 2}, - [5678] = {.lex_state = 96, .external_lex_state = 2}, - [5679] = {.lex_state = 96, .external_lex_state = 2}, - [5680] = {.lex_state = 96, .external_lex_state = 2}, - [5681] = {.lex_state = 96, .external_lex_state = 2}, - [5682] = {.lex_state = 96, .external_lex_state = 2}, - [5683] = {.lex_state = 96, .external_lex_state = 2}, - [5684] = {.lex_state = 96, .external_lex_state = 2}, - [5685] = {.lex_state = 96, .external_lex_state = 2}, - [5686] = {.lex_state = 96, .external_lex_state = 2}, - [5687] = {.lex_state = 96, .external_lex_state = 2}, - [5688] = {.lex_state = 96, .external_lex_state = 2}, - [5689] = {.lex_state = 96, .external_lex_state = 2}, - [5690] = {.lex_state = 96, .external_lex_state = 2}, - [5691] = {.lex_state = 96, .external_lex_state = 2}, - [5692] = {.lex_state = 96, .external_lex_state = 2}, - [5693] = {.lex_state = 96, .external_lex_state = 2}, - [5694] = {.lex_state = 96, .external_lex_state = 2}, - [5695] = {.lex_state = 96, .external_lex_state = 2}, - [5696] = {.lex_state = 96, .external_lex_state = 2}, - [5697] = {.lex_state = 96, .external_lex_state = 2}, - [5698] = {.lex_state = 96, .external_lex_state = 2}, - [5699] = {.lex_state = 96, .external_lex_state = 2}, - [5700] = {.lex_state = 96, .external_lex_state = 2}, - [5701] = {.lex_state = 96, .external_lex_state = 2}, - [5702] = {.lex_state = 96, .external_lex_state = 2}, - [5703] = {.lex_state = 96, .external_lex_state = 2}, - [5704] = {.lex_state = 96, .external_lex_state = 2}, - [5705] = {.lex_state = 96, .external_lex_state = 2}, - [5706] = {.lex_state = 96, .external_lex_state = 2}, - [5707] = {.lex_state = 96, .external_lex_state = 2}, - [5708] = {.lex_state = 96, .external_lex_state = 2}, - [5709] = {.lex_state = 96, .external_lex_state = 2}, - [5710] = {.lex_state = 96, .external_lex_state = 2}, - [5711] = {.lex_state = 96, .external_lex_state = 2}, - [5712] = {.lex_state = 96, .external_lex_state = 2}, - [5713] = {.lex_state = 96, .external_lex_state = 2}, - [5714] = {.lex_state = 96, .external_lex_state = 2}, - [5715] = {.lex_state = 96, .external_lex_state = 2}, - [5716] = {.lex_state = 96, .external_lex_state = 2}, - [5717] = {.lex_state = 96, .external_lex_state = 2}, - [5718] = {.lex_state = 96, .external_lex_state = 2}, - [5719] = {.lex_state = 96, .external_lex_state = 2}, - [5720] = {.lex_state = 96, .external_lex_state = 2}, - [5721] = {.lex_state = 96, .external_lex_state = 2}, - [5722] = {.lex_state = 96, .external_lex_state = 2}, - [5723] = {.lex_state = 96, .external_lex_state = 2}, - [5724] = {.lex_state = 96, .external_lex_state = 2}, - [5725] = {.lex_state = 96, .external_lex_state = 2}, - [5726] = {.lex_state = 96, .external_lex_state = 2}, - [5727] = {.lex_state = 96, .external_lex_state = 2}, - [5728] = {.lex_state = 96, .external_lex_state = 2}, - [5729] = {.lex_state = 96, .external_lex_state = 2}, - [5730] = {.lex_state = 96, .external_lex_state = 2}, - [5731] = {.lex_state = 96, .external_lex_state = 2}, - [5732] = {.lex_state = 96, .external_lex_state = 2}, - [5733] = {.lex_state = 96, .external_lex_state = 2}, - [5734] = {.lex_state = 96, .external_lex_state = 2}, - [5735] = {.lex_state = 96, .external_lex_state = 2}, - [5736] = {.lex_state = 96, .external_lex_state = 2}, - [5737] = {.lex_state = 96, .external_lex_state = 2}, - [5738] = {.lex_state = 96, .external_lex_state = 2}, - [5739] = {.lex_state = 96, .external_lex_state = 2}, - [5740] = {.lex_state = 96, .external_lex_state = 2}, - [5741] = {.lex_state = 96, .external_lex_state = 2}, - [5742] = {.lex_state = 96, .external_lex_state = 2}, - [5743] = {.lex_state = 96, .external_lex_state = 2}, - [5744] = {.lex_state = 96, .external_lex_state = 2}, - [5745] = {.lex_state = 96, .external_lex_state = 2}, - [5746] = {.lex_state = 96, .external_lex_state = 2}, - [5747] = {.lex_state = 96, .external_lex_state = 2}, - [5748] = {.lex_state = 96, .external_lex_state = 2}, - [5749] = {.lex_state = 96, .external_lex_state = 2}, - [5750] = {.lex_state = 96, .external_lex_state = 2}, - [5751] = {.lex_state = 96, .external_lex_state = 2}, - [5752] = {.lex_state = 96, .external_lex_state = 2}, - [5753] = {.lex_state = 96, .external_lex_state = 2}, - [5754] = {.lex_state = 96, .external_lex_state = 2}, - [5755] = {.lex_state = 96, .external_lex_state = 2}, - [5756] = {.lex_state = 96, .external_lex_state = 2}, - [5757] = {.lex_state = 96, .external_lex_state = 2}, - [5758] = {.lex_state = 96, .external_lex_state = 2}, - [5759] = {.lex_state = 96, .external_lex_state = 2}, - [5760] = {.lex_state = 96, .external_lex_state = 2}, - [5761] = {.lex_state = 96, .external_lex_state = 2}, - [5762] = {.lex_state = 96, .external_lex_state = 2}, - [5763] = {.lex_state = 96, .external_lex_state = 2}, - [5764] = {.lex_state = 96, .external_lex_state = 2}, - [5765] = {.lex_state = 96, .external_lex_state = 2}, - [5766] = {.lex_state = 2, .external_lex_state = 10}, - [5767] = {.lex_state = 96, .external_lex_state = 2}, - [5768] = {.lex_state = 96, .external_lex_state = 2}, - [5769] = {.lex_state = 96, .external_lex_state = 2}, - [5770] = {.lex_state = 96, .external_lex_state = 2}, - [5771] = {.lex_state = 96, .external_lex_state = 2}, - [5772] = {.lex_state = 96, .external_lex_state = 2}, - [5773] = {.lex_state = 96, .external_lex_state = 2}, - [5774] = {.lex_state = 96, .external_lex_state = 2}, - [5775] = {.lex_state = 96, .external_lex_state = 2}, - [5776] = {.lex_state = 96, .external_lex_state = 2}, - [5777] = {.lex_state = 96, .external_lex_state = 2}, - [5778] = {.lex_state = 96, .external_lex_state = 2}, - [5779] = {.lex_state = 96, .external_lex_state = 2}, - [5780] = {.lex_state = 28, .external_lex_state = 2}, - [5781] = {.lex_state = 96, .external_lex_state = 2}, - [5782] = {.lex_state = 96, .external_lex_state = 2}, - [5783] = {.lex_state = 96, .external_lex_state = 2}, - [5784] = {.lex_state = 96, .external_lex_state = 2}, - [5785] = {.lex_state = 96, .external_lex_state = 2}, - [5786] = {.lex_state = 96, .external_lex_state = 2}, - [5787] = {.lex_state = 96, .external_lex_state = 2}, - [5788] = {.lex_state = 96, .external_lex_state = 2}, - [5789] = {.lex_state = 96, .external_lex_state = 2}, - [5790] = {.lex_state = 96, .external_lex_state = 2}, - [5791] = {.lex_state = 96, .external_lex_state = 2}, - [5792] = {.lex_state = 96, .external_lex_state = 2}, - [5793] = {.lex_state = 96, .external_lex_state = 2}, - [5794] = {.lex_state = 96, .external_lex_state = 2}, - [5795] = {.lex_state = 96, .external_lex_state = 2}, - [5796] = {.lex_state = 96, .external_lex_state = 2}, - [5797] = {.lex_state = 96, .external_lex_state = 2}, - [5798] = {.lex_state = 96, .external_lex_state = 2}, - [5799] = {.lex_state = 96, .external_lex_state = 2}, - [5800] = {.lex_state = 96, .external_lex_state = 2}, - [5801] = {.lex_state = 96, .external_lex_state = 2}, - [5802] = {.lex_state = 96, .external_lex_state = 2}, - [5803] = {.lex_state = 96, .external_lex_state = 2}, - [5804] = {.lex_state = 96, .external_lex_state = 2}, - [5805] = {.lex_state = 96, .external_lex_state = 2}, - [5806] = {.lex_state = 96, .external_lex_state = 2}, - [5807] = {.lex_state = 96, .external_lex_state = 2}, - [5808] = {.lex_state = 96, .external_lex_state = 2}, - [5809] = {.lex_state = 96, .external_lex_state = 2}, - [5810] = {.lex_state = 96, .external_lex_state = 2}, - [5811] = {.lex_state = 2, .external_lex_state = 10}, - [5812] = {.lex_state = 96, .external_lex_state = 2}, - [5813] = {.lex_state = 96, .external_lex_state = 2}, - [5814] = {.lex_state = 96, .external_lex_state = 2}, - [5815] = {.lex_state = 96, .external_lex_state = 2}, - [5816] = {.lex_state = 28, .external_lex_state = 2}, - [5817] = {.lex_state = 96, .external_lex_state = 2}, - [5818] = {.lex_state = 96, .external_lex_state = 2}, - [5819] = {.lex_state = 96, .external_lex_state = 2}, - [5820] = {.lex_state = 96, .external_lex_state = 2}, - [5821] = {.lex_state = 96, .external_lex_state = 2}, - [5822] = {.lex_state = 96, .external_lex_state = 2}, - [5823] = {.lex_state = 96, .external_lex_state = 2}, - [5824] = {.lex_state = 96, .external_lex_state = 2}, - [5825] = {.lex_state = 96, .external_lex_state = 2}, - [5826] = {.lex_state = 96, .external_lex_state = 2}, - [5827] = {.lex_state = 96, .external_lex_state = 2}, - [5828] = {.lex_state = 96, .external_lex_state = 2}, - [5829] = {.lex_state = 96, .external_lex_state = 2}, + [4692] = {.lex_state = 12, .external_lex_state = 2}, + [4693] = {.lex_state = 12, .external_lex_state = 2}, + [4694] = {.lex_state = 95, .external_lex_state = 5}, + [4695] = {.lex_state = 12, .external_lex_state = 2}, + [4696] = {.lex_state = 95, .external_lex_state = 5}, + [4697] = {.lex_state = 12, .external_lex_state = 2}, + [4698] = {.lex_state = 12, .external_lex_state = 2}, + [4699] = {.lex_state = 95, .external_lex_state = 5}, + [4700] = {.lex_state = 95, .external_lex_state = 5}, + [4701] = {.lex_state = 95, .external_lex_state = 5}, + [4702] = {.lex_state = 95, .external_lex_state = 5}, + [4703] = {.lex_state = 12, .external_lex_state = 2}, + [4704] = {.lex_state = 12, .external_lex_state = 2}, + [4705] = {.lex_state = 12, .external_lex_state = 2}, + [4706] = {.lex_state = 12, .external_lex_state = 2}, + [4707] = {.lex_state = 95, .external_lex_state = 5}, + [4708] = {.lex_state = 95, .external_lex_state = 5}, + [4709] = {.lex_state = 12, .external_lex_state = 2}, + [4710] = {.lex_state = 95, .external_lex_state = 2}, + [4711] = {.lex_state = 12, .external_lex_state = 2}, + [4712] = {.lex_state = 95, .external_lex_state = 5}, + [4713] = {.lex_state = 95, .external_lex_state = 5}, + [4714] = {.lex_state = 95, .external_lex_state = 5}, + [4715] = {.lex_state = 95, .external_lex_state = 5}, + [4716] = {.lex_state = 95, .external_lex_state = 5}, + [4717] = {.lex_state = 95, .external_lex_state = 5}, + [4718] = {.lex_state = 95, .external_lex_state = 5}, + [4719] = {.lex_state = 95, .external_lex_state = 5}, + [4720] = {.lex_state = 95, .external_lex_state = 2}, + [4721] = {.lex_state = 95, .external_lex_state = 5}, + [4722] = {.lex_state = 12, .external_lex_state = 2}, + [4723] = {.lex_state = 95, .external_lex_state = 2}, + [4724] = {.lex_state = 12, .external_lex_state = 2}, + [4725] = {.lex_state = 12, .external_lex_state = 2}, + [4726] = {.lex_state = 12, .external_lex_state = 2}, + [4727] = {.lex_state = 95, .external_lex_state = 5}, + [4728] = {.lex_state = 95, .external_lex_state = 5}, + [4729] = {.lex_state = 95, .external_lex_state = 5}, + [4730] = {.lex_state = 95, .external_lex_state = 5}, + [4731] = {.lex_state = 12, .external_lex_state = 2}, + [4732] = {.lex_state = 95, .external_lex_state = 2}, + [4733] = {.lex_state = 12, .external_lex_state = 2}, + [4734] = {.lex_state = 12, .external_lex_state = 2}, + [4735] = {.lex_state = 95, .external_lex_state = 5}, + [4736] = {.lex_state = 95, .external_lex_state = 2}, + [4737] = {.lex_state = 12, .external_lex_state = 2}, + [4738] = {.lex_state = 95, .external_lex_state = 5}, + [4739] = {.lex_state = 12, .external_lex_state = 2}, + [4740] = {.lex_state = 12, .external_lex_state = 2}, + [4741] = {.lex_state = 12, .external_lex_state = 2}, + [4742] = {.lex_state = 12, .external_lex_state = 2}, + [4743] = {.lex_state = 12, .external_lex_state = 2}, + [4744] = {.lex_state = 12, .external_lex_state = 2}, + [4745] = {.lex_state = 12, .external_lex_state = 2}, + [4746] = {.lex_state = 12, .external_lex_state = 2}, + [4747] = {.lex_state = 12, .external_lex_state = 2}, + [4748] = {.lex_state = 95, .external_lex_state = 5}, + [4749] = {.lex_state = 12, .external_lex_state = 2}, + [4750] = {.lex_state = 95, .external_lex_state = 5}, + [4751] = {.lex_state = 12, .external_lex_state = 2}, + [4752] = {.lex_state = 95, .external_lex_state = 5}, + [4753] = {.lex_state = 95, .external_lex_state = 5}, + [4754] = {.lex_state = 95, .external_lex_state = 5}, + [4755] = {.lex_state = 95, .external_lex_state = 6}, + [4756] = {.lex_state = 95, .external_lex_state = 5}, + [4757] = {.lex_state = 95, .external_lex_state = 5}, + [4758] = {.lex_state = 12, .external_lex_state = 2}, + [4759] = {.lex_state = 95, .external_lex_state = 5}, + [4760] = {.lex_state = 12, .external_lex_state = 2}, + [4761] = {.lex_state = 95, .external_lex_state = 5}, + [4762] = {.lex_state = 95, .external_lex_state = 5}, + [4763] = {.lex_state = 12, .external_lex_state = 2}, + [4764] = {.lex_state = 95, .external_lex_state = 5}, + [4765] = {.lex_state = 95, .external_lex_state = 5}, + [4766] = {.lex_state = 95, .external_lex_state = 5}, + [4767] = {.lex_state = 12, .external_lex_state = 2}, + [4768] = {.lex_state = 95, .external_lex_state = 5}, + [4769] = {.lex_state = 95, .external_lex_state = 5}, + [4770] = {.lex_state = 95, .external_lex_state = 5}, + [4771] = {.lex_state = 95, .external_lex_state = 5}, + [4772] = {.lex_state = 12, .external_lex_state = 2}, + [4773] = {.lex_state = 95, .external_lex_state = 2}, + [4774] = {.lex_state = 95, .external_lex_state = 6}, + [4775] = {.lex_state = 95, .external_lex_state = 6}, + [4776] = {.lex_state = 12, .external_lex_state = 2}, + [4777] = {.lex_state = 95, .external_lex_state = 6}, + [4778] = {.lex_state = 12, .external_lex_state = 2}, + [4779] = {.lex_state = 12, .external_lex_state = 2}, + [4780] = {.lex_state = 12, .external_lex_state = 2}, + [4781] = {.lex_state = 12, .external_lex_state = 2}, + [4782] = {.lex_state = 12, .external_lex_state = 2}, + [4783] = {.lex_state = 12, .external_lex_state = 2}, + [4784] = {.lex_state = 12, .external_lex_state = 2}, + [4785] = {.lex_state = 95, .external_lex_state = 5}, + [4786] = {.lex_state = 12, .external_lex_state = 2}, + [4787] = {.lex_state = 95, .external_lex_state = 2}, + [4788] = {.lex_state = 95, .external_lex_state = 5}, + [4789] = {.lex_state = 12, .external_lex_state = 2}, + [4790] = {.lex_state = 95, .external_lex_state = 5}, + [4791] = {.lex_state = 95, .external_lex_state = 5}, + [4792] = {.lex_state = 12, .external_lex_state = 2}, + [4793] = {.lex_state = 12, .external_lex_state = 2}, + [4794] = {.lex_state = 12, .external_lex_state = 2}, + [4795] = {.lex_state = 12, .external_lex_state = 2}, + [4796] = {.lex_state = 12, .external_lex_state = 2}, + [4797] = {.lex_state = 12, .external_lex_state = 2}, + [4798] = {.lex_state = 12, .external_lex_state = 2}, + [4799] = {.lex_state = 12, .external_lex_state = 2}, + [4800] = {.lex_state = 12, .external_lex_state = 2}, + [4801] = {.lex_state = 95, .external_lex_state = 5}, + [4802] = {.lex_state = 95, .external_lex_state = 5}, + [4803] = {.lex_state = 12, .external_lex_state = 2}, + [4804] = {.lex_state = 17, .external_lex_state = 8}, + [4805] = {.lex_state = 12, .external_lex_state = 2}, + [4806] = {.lex_state = 12, .external_lex_state = 2}, + [4807] = {.lex_state = 95, .external_lex_state = 5}, + [4808] = {.lex_state = 95, .external_lex_state = 2}, + [4809] = {.lex_state = 95, .external_lex_state = 2}, + [4810] = {.lex_state = 95, .external_lex_state = 2}, + [4811] = {.lex_state = 95, .external_lex_state = 5}, + [4812] = {.lex_state = 12, .external_lex_state = 2}, + [4813] = {.lex_state = 12, .external_lex_state = 2}, + [4814] = {.lex_state = 95, .external_lex_state = 5}, + [4815] = {.lex_state = 95, .external_lex_state = 5}, + [4816] = {.lex_state = 95, .external_lex_state = 5}, + [4817] = {.lex_state = 95, .external_lex_state = 2}, + [4818] = {.lex_state = 95, .external_lex_state = 5}, + [4819] = {.lex_state = 95, .external_lex_state = 2}, + [4820] = {.lex_state = 95, .external_lex_state = 5}, + [4821] = {.lex_state = 95, .external_lex_state = 2}, + [4822] = {.lex_state = 12, .external_lex_state = 2}, + [4823] = {.lex_state = 12, .external_lex_state = 2}, + [4824] = {.lex_state = 95, .external_lex_state = 5}, + [4825] = {.lex_state = 95, .external_lex_state = 5}, + [4826] = {.lex_state = 12, .external_lex_state = 2}, + [4827] = {.lex_state = 12, .external_lex_state = 2}, + [4828] = {.lex_state = 12, .external_lex_state = 2}, + [4829] = {.lex_state = 12, .external_lex_state = 2}, + [4830] = {.lex_state = 95, .external_lex_state = 5}, + [4831] = {.lex_state = 95, .external_lex_state = 5}, + [4832] = {.lex_state = 12, .external_lex_state = 2}, + [4833] = {.lex_state = 12, .external_lex_state = 2}, + [4834] = {.lex_state = 95, .external_lex_state = 5}, + [4835] = {.lex_state = 12, .external_lex_state = 2}, + [4836] = {.lex_state = 95, .external_lex_state = 5}, + [4837] = {.lex_state = 12, .external_lex_state = 2}, + [4838] = {.lex_state = 95, .external_lex_state = 5}, + [4839] = {.lex_state = 12, .external_lex_state = 2}, + [4840] = {.lex_state = 95, .external_lex_state = 5}, + [4841] = {.lex_state = 95, .external_lex_state = 5}, + [4842] = {.lex_state = 95, .external_lex_state = 5}, + [4843] = {.lex_state = 12, .external_lex_state = 2}, + [4844] = {.lex_state = 12, .external_lex_state = 2}, + [4845] = {.lex_state = 95, .external_lex_state = 5}, + [4846] = {.lex_state = 12, .external_lex_state = 2}, + [4847] = {.lex_state = 95, .external_lex_state = 5}, + [4848] = {.lex_state = 12, .external_lex_state = 2}, + [4849] = {.lex_state = 95, .external_lex_state = 5}, + [4850] = {.lex_state = 95, .external_lex_state = 5}, + [4851] = {.lex_state = 12, .external_lex_state = 2}, + [4852] = {.lex_state = 95, .external_lex_state = 5}, + [4853] = {.lex_state = 95, .external_lex_state = 5}, + [4854] = {.lex_state = 95, .external_lex_state = 5}, + [4855] = {.lex_state = 12, .external_lex_state = 2}, + [4856] = {.lex_state = 95, .external_lex_state = 5}, + [4857] = {.lex_state = 12, .external_lex_state = 2}, + [4858] = {.lex_state = 95, .external_lex_state = 5}, + [4859] = {.lex_state = 95, .external_lex_state = 5}, + [4860] = {.lex_state = 12, .external_lex_state = 2}, + [4861] = {.lex_state = 95, .external_lex_state = 5}, + [4862] = {.lex_state = 12, .external_lex_state = 2}, + [4863] = {.lex_state = 95, .external_lex_state = 5}, + [4864] = {.lex_state = 95, .external_lex_state = 5}, + [4865] = {.lex_state = 95, .external_lex_state = 2}, + [4866] = {.lex_state = 95, .external_lex_state = 5}, + [4867] = {.lex_state = 95, .external_lex_state = 2}, + [4868] = {.lex_state = 95, .external_lex_state = 5}, + [4869] = {.lex_state = 95, .external_lex_state = 5}, + [4870] = {.lex_state = 95, .external_lex_state = 5}, + [4871] = {.lex_state = 95, .external_lex_state = 2}, + [4872] = {.lex_state = 95, .external_lex_state = 2}, + [4873] = {.lex_state = 95, .external_lex_state = 2}, + [4874] = {.lex_state = 12, .external_lex_state = 2}, + [4875] = {.lex_state = 95, .external_lex_state = 2}, + [4876] = {.lex_state = 95, .external_lex_state = 5}, + [4877] = {.lex_state = 12, .external_lex_state = 2}, + [4878] = {.lex_state = 95, .external_lex_state = 5}, + [4879] = {.lex_state = 95, .external_lex_state = 2}, + [4880] = {.lex_state = 95, .external_lex_state = 5}, + [4881] = {.lex_state = 95, .external_lex_state = 5}, + [4882] = {.lex_state = 95, .external_lex_state = 5}, + [4883] = {.lex_state = 95, .external_lex_state = 5}, + [4884] = {.lex_state = 12, .external_lex_state = 2}, + [4885] = {.lex_state = 95, .external_lex_state = 5}, + [4886] = {.lex_state = 95, .external_lex_state = 5}, + [4887] = {.lex_state = 12, .external_lex_state = 2}, + [4888] = {.lex_state = 95, .external_lex_state = 5}, + [4889] = {.lex_state = 95, .external_lex_state = 5}, + [4890] = {.lex_state = 95, .external_lex_state = 5}, + [4891] = {.lex_state = 95, .external_lex_state = 5}, + [4892] = {.lex_state = 95, .external_lex_state = 5}, + [4893] = {.lex_state = 95, .external_lex_state = 5}, + [4894] = {.lex_state = 95, .external_lex_state = 6}, + [4895] = {.lex_state = 95, .external_lex_state = 5}, + [4896] = {.lex_state = 12, .external_lex_state = 2}, + [4897] = {.lex_state = 12, .external_lex_state = 2}, + [4898] = {.lex_state = 95, .external_lex_state = 5}, + [4899] = {.lex_state = 12, .external_lex_state = 2}, + [4900] = {.lex_state = 12, .external_lex_state = 2}, + [4901] = {.lex_state = 12, .external_lex_state = 2}, + [4902] = {.lex_state = 12, .external_lex_state = 2}, + [4903] = {.lex_state = 95, .external_lex_state = 5}, + [4904] = {.lex_state = 12, .external_lex_state = 2}, + [4905] = {.lex_state = 95, .external_lex_state = 5}, + [4906] = {.lex_state = 95, .external_lex_state = 5}, + [4907] = {.lex_state = 95, .external_lex_state = 5}, + [4908] = {.lex_state = 95, .external_lex_state = 5}, + [4909] = {.lex_state = 12, .external_lex_state = 2}, + [4910] = {.lex_state = 95, .external_lex_state = 5}, + [4911] = {.lex_state = 12, .external_lex_state = 2}, + [4912] = {.lex_state = 95, .external_lex_state = 5}, + [4913] = {.lex_state = 95, .external_lex_state = 5}, + [4914] = {.lex_state = 95, .external_lex_state = 5}, + [4915] = {.lex_state = 95, .external_lex_state = 5}, + [4916] = {.lex_state = 95, .external_lex_state = 5}, + [4917] = {.lex_state = 95, .external_lex_state = 5}, + [4918] = {.lex_state = 95, .external_lex_state = 5}, + [4919] = {.lex_state = 95, .external_lex_state = 5}, + [4920] = {.lex_state = 95, .external_lex_state = 5}, + [4921] = {.lex_state = 95, .external_lex_state = 5}, + [4922] = {.lex_state = 95, .external_lex_state = 5}, + [4923] = {.lex_state = 95, .external_lex_state = 5}, + [4924] = {.lex_state = 95, .external_lex_state = 5}, + [4925] = {.lex_state = 95, .external_lex_state = 5}, + [4926] = {.lex_state = 95, .external_lex_state = 5}, + [4927] = {.lex_state = 95, .external_lex_state = 5}, + [4928] = {.lex_state = 95, .external_lex_state = 5}, + [4929] = {.lex_state = 95, .external_lex_state = 5}, + [4930] = {.lex_state = 95, .external_lex_state = 5}, + [4931] = {.lex_state = 95, .external_lex_state = 5}, + [4932] = {.lex_state = 95, .external_lex_state = 5}, + [4933] = {.lex_state = 95, .external_lex_state = 5}, + [4934] = {.lex_state = 12, .external_lex_state = 2}, + [4935] = {.lex_state = 95, .external_lex_state = 5}, + [4936] = {.lex_state = 95, .external_lex_state = 5}, + [4937] = {.lex_state = 95, .external_lex_state = 5}, + [4938] = {.lex_state = 95, .external_lex_state = 5}, + [4939] = {.lex_state = 95, .external_lex_state = 5}, + [4940] = {.lex_state = 12, .external_lex_state = 2}, + [4941] = {.lex_state = 95, .external_lex_state = 6}, + [4942] = {.lex_state = 95, .external_lex_state = 5}, + [4943] = {.lex_state = 95, .external_lex_state = 5}, + [4944] = {.lex_state = 12, .external_lex_state = 2}, + [4945] = {.lex_state = 12, .external_lex_state = 2}, + [4946] = {.lex_state = 95, .external_lex_state = 2}, + [4947] = {.lex_state = 12, .external_lex_state = 2}, + [4948] = {.lex_state = 95, .external_lex_state = 5}, + [4949] = {.lex_state = 95, .external_lex_state = 2}, + [4950] = {.lex_state = 95, .external_lex_state = 2}, + [4951] = {.lex_state = 12, .external_lex_state = 2}, + [4952] = {.lex_state = 12, .external_lex_state = 2}, + [4953] = {.lex_state = 95, .external_lex_state = 5}, + [4954] = {.lex_state = 12, .external_lex_state = 2}, + [4955] = {.lex_state = 12, .external_lex_state = 2}, + [4956] = {.lex_state = 12, .external_lex_state = 2}, + [4957] = {.lex_state = 95, .external_lex_state = 5}, + [4958] = {.lex_state = 95, .external_lex_state = 5}, + [4959] = {.lex_state = 95, .external_lex_state = 5}, + [4960] = {.lex_state = 12, .external_lex_state = 2}, + [4961] = {.lex_state = 95, .external_lex_state = 5}, + [4962] = {.lex_state = 95, .external_lex_state = 5}, + [4963] = {.lex_state = 95, .external_lex_state = 5}, + [4964] = {.lex_state = 95, .external_lex_state = 5}, + [4965] = {.lex_state = 95, .external_lex_state = 5}, + [4966] = {.lex_state = 95, .external_lex_state = 5}, + [4967] = {.lex_state = 12, .external_lex_state = 2}, + [4968] = {.lex_state = 12, .external_lex_state = 2}, + [4969] = {.lex_state = 95, .external_lex_state = 5}, + [4970] = {.lex_state = 12, .external_lex_state = 2}, + [4971] = {.lex_state = 95, .external_lex_state = 5}, + [4972] = {.lex_state = 95, .external_lex_state = 5}, + [4973] = {.lex_state = 12, .external_lex_state = 2}, + [4974] = {.lex_state = 95, .external_lex_state = 5}, + [4975] = {.lex_state = 95, .external_lex_state = 5}, + [4976] = {.lex_state = 12, .external_lex_state = 2}, + [4977] = {.lex_state = 95, .external_lex_state = 5}, + [4978] = {.lex_state = 12, .external_lex_state = 2}, + [4979] = {.lex_state = 95, .external_lex_state = 5}, + [4980] = {.lex_state = 95, .external_lex_state = 5}, + [4981] = {.lex_state = 12, .external_lex_state = 2}, + [4982] = {.lex_state = 95, .external_lex_state = 5}, + [4983] = {.lex_state = 12, .external_lex_state = 2}, + [4984] = {.lex_state = 95, .external_lex_state = 5}, + [4985] = {.lex_state = 95, .external_lex_state = 5}, + [4986] = {.lex_state = 95, .external_lex_state = 5}, + [4987] = {.lex_state = 12, .external_lex_state = 2}, + [4988] = {.lex_state = 95, .external_lex_state = 5}, + [4989] = {.lex_state = 95, .external_lex_state = 5}, + [4990] = {.lex_state = 95, .external_lex_state = 5}, + [4991] = {.lex_state = 95, .external_lex_state = 5}, + [4992] = {.lex_state = 95, .external_lex_state = 5}, + [4993] = {.lex_state = 12, .external_lex_state = 2}, + [4994] = {.lex_state = 12, .external_lex_state = 2}, + [4995] = {.lex_state = 4, .external_lex_state = 2}, + [4996] = {.lex_state = 12, .external_lex_state = 2}, + [4997] = {.lex_state = 95, .external_lex_state = 5}, + [4998] = {.lex_state = 95, .external_lex_state = 5}, + [4999] = {.lex_state = 95, .external_lex_state = 5}, + [5000] = {.lex_state = 95, .external_lex_state = 2}, + [5001] = {.lex_state = 12, .external_lex_state = 2}, + [5002] = {.lex_state = 95, .external_lex_state = 5}, + [5003] = {.lex_state = 12, .external_lex_state = 2}, + [5004] = {.lex_state = 12, .external_lex_state = 2}, + [5005] = {.lex_state = 95, .external_lex_state = 5}, + [5006] = {.lex_state = 12, .external_lex_state = 2}, + [5007] = {.lex_state = 95, .external_lex_state = 5}, + [5008] = {.lex_state = 12, .external_lex_state = 2}, + [5009] = {.lex_state = 95, .external_lex_state = 5}, + [5010] = {.lex_state = 12, .external_lex_state = 2}, + [5011] = {.lex_state = 12, .external_lex_state = 2}, + [5012] = {.lex_state = 95, .external_lex_state = 5}, + [5013] = {.lex_state = 95, .external_lex_state = 5}, + [5014] = {.lex_state = 12, .external_lex_state = 2}, + [5015] = {.lex_state = 17, .external_lex_state = 8}, + [5016] = {.lex_state = 12, .external_lex_state = 2}, + [5017] = {.lex_state = 12, .external_lex_state = 2}, + [5018] = {.lex_state = 12, .external_lex_state = 2}, + [5019] = {.lex_state = 95, .external_lex_state = 5}, + [5020] = {.lex_state = 95, .external_lex_state = 5}, + [5021] = {.lex_state = 12, .external_lex_state = 2}, + [5022] = {.lex_state = 95, .external_lex_state = 2}, + [5023] = {.lex_state = 12, .external_lex_state = 2}, + [5024] = {.lex_state = 95, .external_lex_state = 5}, + [5025] = {.lex_state = 95, .external_lex_state = 5}, + [5026] = {.lex_state = 12, .external_lex_state = 2}, + [5027] = {.lex_state = 12, .external_lex_state = 2}, + [5028] = {.lex_state = 12, .external_lex_state = 2}, + [5029] = {.lex_state = 95, .external_lex_state = 5}, + [5030] = {.lex_state = 95, .external_lex_state = 5}, + [5031] = {.lex_state = 95, .external_lex_state = 5}, + [5032] = {.lex_state = 17, .external_lex_state = 8}, + [5033] = {.lex_state = 12, .external_lex_state = 2}, + [5034] = {.lex_state = 95, .external_lex_state = 6}, + [5035] = {.lex_state = 12, .external_lex_state = 2}, + [5036] = {.lex_state = 12, .external_lex_state = 2}, + [5037] = {.lex_state = 12, .external_lex_state = 2}, + [5038] = {.lex_state = 12, .external_lex_state = 2}, + [5039] = {.lex_state = 95, .external_lex_state = 5}, + [5040] = {.lex_state = 12, .external_lex_state = 2}, + [5041] = {.lex_state = 95, .external_lex_state = 5}, + [5042] = {.lex_state = 95, .external_lex_state = 2}, + [5043] = {.lex_state = 12, .external_lex_state = 2}, + [5044] = {.lex_state = 95, .external_lex_state = 5}, + [5045] = {.lex_state = 12, .external_lex_state = 2}, + [5046] = {.lex_state = 12, .external_lex_state = 2}, + [5047] = {.lex_state = 95, .external_lex_state = 5}, + [5048] = {.lex_state = 95, .external_lex_state = 5}, + [5049] = {.lex_state = 12, .external_lex_state = 2}, + [5050] = {.lex_state = 95, .external_lex_state = 5}, + [5051] = {.lex_state = 95, .external_lex_state = 5}, + [5052] = {.lex_state = 95, .external_lex_state = 2}, + [5053] = {.lex_state = 95, .external_lex_state = 5}, + [5054] = {.lex_state = 12, .external_lex_state = 2}, + [5055] = {.lex_state = 12, .external_lex_state = 2}, + [5056] = {.lex_state = 95, .external_lex_state = 5}, + [5057] = {.lex_state = 17, .external_lex_state = 8}, + [5058] = {.lex_state = 95, .external_lex_state = 5}, + [5059] = {.lex_state = 12, .external_lex_state = 2}, + [5060] = {.lex_state = 12, .external_lex_state = 2}, + [5061] = {.lex_state = 12, .external_lex_state = 2}, + [5062] = {.lex_state = 95, .external_lex_state = 5}, + [5063] = {.lex_state = 95, .external_lex_state = 5}, + [5064] = {.lex_state = 12, .external_lex_state = 2}, + [5065] = {.lex_state = 12, .external_lex_state = 2}, + [5066] = {.lex_state = 95, .external_lex_state = 5}, + [5067] = {.lex_state = 95, .external_lex_state = 5}, + [5068] = {.lex_state = 95, .external_lex_state = 5}, + [5069] = {.lex_state = 95, .external_lex_state = 2}, + [5070] = {.lex_state = 95, .external_lex_state = 6}, + [5071] = {.lex_state = 95, .external_lex_state = 5}, + [5072] = {.lex_state = 12, .external_lex_state = 2}, + [5073] = {.lex_state = 12, .external_lex_state = 2}, + [5074] = {.lex_state = 95, .external_lex_state = 5}, + [5075] = {.lex_state = 95, .external_lex_state = 2}, + [5076] = {.lex_state = 12, .external_lex_state = 2}, + [5077] = {.lex_state = 12, .external_lex_state = 2}, + [5078] = {.lex_state = 95, .external_lex_state = 5}, + [5079] = {.lex_state = 12, .external_lex_state = 2}, + [5080] = {.lex_state = 95, .external_lex_state = 5}, + [5081] = {.lex_state = 12, .external_lex_state = 2}, + [5082] = {.lex_state = 95, .external_lex_state = 2}, + [5083] = {.lex_state = 95, .external_lex_state = 2}, + [5084] = {.lex_state = 95, .external_lex_state = 5}, + [5085] = {.lex_state = 95, .external_lex_state = 5}, + [5086] = {.lex_state = 95, .external_lex_state = 5}, + [5087] = {.lex_state = 95, .external_lex_state = 5}, + [5088] = {.lex_state = 95, .external_lex_state = 2}, + [5089] = {.lex_state = 12, .external_lex_state = 2}, + [5090] = {.lex_state = 12, .external_lex_state = 2}, + [5091] = {.lex_state = 95, .external_lex_state = 5}, + [5092] = {.lex_state = 95, .external_lex_state = 2}, + [5093] = {.lex_state = 17, .external_lex_state = 8}, + [5094] = {.lex_state = 95, .external_lex_state = 5}, + [5095] = {.lex_state = 95, .external_lex_state = 5}, + [5096] = {.lex_state = 12, .external_lex_state = 2}, + [5097] = {.lex_state = 12, .external_lex_state = 2}, + [5098] = {.lex_state = 12, .external_lex_state = 2}, + [5099] = {.lex_state = 12, .external_lex_state = 2}, + [5100] = {.lex_state = 95, .external_lex_state = 5}, + [5101] = {.lex_state = 95, .external_lex_state = 5}, + [5102] = {.lex_state = 95, .external_lex_state = 5}, + [5103] = {.lex_state = 95, .external_lex_state = 5}, + [5104] = {.lex_state = 12, .external_lex_state = 2}, + [5105] = {.lex_state = 12, .external_lex_state = 2}, + [5106] = {.lex_state = 12, .external_lex_state = 2}, + [5107] = {.lex_state = 95, .external_lex_state = 5}, + [5108] = {.lex_state = 95, .external_lex_state = 5}, + [5109] = {.lex_state = 12, .external_lex_state = 2}, + [5110] = {.lex_state = 95, .external_lex_state = 5}, + [5111] = {.lex_state = 12, .external_lex_state = 2}, + [5112] = {.lex_state = 12, .external_lex_state = 2}, + [5113] = {.lex_state = 12, .external_lex_state = 2}, + [5114] = {.lex_state = 95, .external_lex_state = 5}, + [5115] = {.lex_state = 95, .external_lex_state = 2}, + [5116] = {.lex_state = 12, .external_lex_state = 2}, + [5117] = {.lex_state = 12, .external_lex_state = 2}, + [5118] = {.lex_state = 12, .external_lex_state = 2}, + [5119] = {.lex_state = 95, .external_lex_state = 5}, + [5120] = {.lex_state = 95, .external_lex_state = 5}, + [5121] = {.lex_state = 12, .external_lex_state = 2}, + [5122] = {.lex_state = 12, .external_lex_state = 2}, + [5123] = {.lex_state = 12, .external_lex_state = 2}, + [5124] = {.lex_state = 17, .external_lex_state = 8}, + [5125] = {.lex_state = 95, .external_lex_state = 5}, + [5126] = {.lex_state = 12, .external_lex_state = 2}, + [5127] = {.lex_state = 95, .external_lex_state = 2}, + [5128] = {.lex_state = 95, .external_lex_state = 5}, + [5129] = {.lex_state = 17, .external_lex_state = 8}, + [5130] = {.lex_state = 12, .external_lex_state = 2}, + [5131] = {.lex_state = 12, .external_lex_state = 2}, + [5132] = {.lex_state = 12, .external_lex_state = 2}, + [5133] = {.lex_state = 95, .external_lex_state = 5}, + [5134] = {.lex_state = 12, .external_lex_state = 2}, + [5135] = {.lex_state = 12, .external_lex_state = 2}, + [5136] = {.lex_state = 12, .external_lex_state = 2}, + [5137] = {.lex_state = 95, .external_lex_state = 5}, + [5138] = {.lex_state = 12, .external_lex_state = 2}, + [5139] = {.lex_state = 95, .external_lex_state = 5}, + [5140] = {.lex_state = 12, .external_lex_state = 2}, + [5141] = {.lex_state = 95, .external_lex_state = 5}, + [5142] = {.lex_state = 12, .external_lex_state = 2}, + [5143] = {.lex_state = 12, .external_lex_state = 2}, + [5144] = {.lex_state = 95, .external_lex_state = 5}, + [5145] = {.lex_state = 95, .external_lex_state = 5}, + [5146] = {.lex_state = 95, .external_lex_state = 5}, + [5147] = {.lex_state = 95, .external_lex_state = 5}, + [5148] = {.lex_state = 12, .external_lex_state = 2}, + [5149] = {.lex_state = 12, .external_lex_state = 2}, + [5150] = {.lex_state = 95, .external_lex_state = 5}, + [5151] = {.lex_state = 12, .external_lex_state = 2}, + [5152] = {.lex_state = 95, .external_lex_state = 5}, + [5153] = {.lex_state = 12, .external_lex_state = 2}, + [5154] = {.lex_state = 12, .external_lex_state = 2}, + [5155] = {.lex_state = 95, .external_lex_state = 5}, + [5156] = {.lex_state = 95, .external_lex_state = 2}, + [5157] = {.lex_state = 95, .external_lex_state = 5}, + [5158] = {.lex_state = 12, .external_lex_state = 2}, + [5159] = {.lex_state = 95, .external_lex_state = 5}, + [5160] = {.lex_state = 12, .external_lex_state = 2}, + [5161] = {.lex_state = 12, .external_lex_state = 2}, + [5162] = {.lex_state = 17, .external_lex_state = 8}, + [5163] = {.lex_state = 12, .external_lex_state = 2}, + [5164] = {.lex_state = 95, .external_lex_state = 2}, + [5165] = {.lex_state = 12, .external_lex_state = 2}, + [5166] = {.lex_state = 12, .external_lex_state = 2}, + [5167] = {.lex_state = 95, .external_lex_state = 5}, + [5168] = {.lex_state = 95, .external_lex_state = 5}, + [5169] = {.lex_state = 95, .external_lex_state = 2}, + [5170] = {.lex_state = 95, .external_lex_state = 5}, + [5171] = {.lex_state = 95, .external_lex_state = 5}, + [5172] = {.lex_state = 95, .external_lex_state = 2}, + [5173] = {.lex_state = 95, .external_lex_state = 5}, + [5174] = {.lex_state = 12, .external_lex_state = 2}, + [5175] = {.lex_state = 95, .external_lex_state = 5}, + [5176] = {.lex_state = 95, .external_lex_state = 6}, + [5177] = {.lex_state = 95, .external_lex_state = 5}, + [5178] = {.lex_state = 12, .external_lex_state = 2}, + [5179] = {.lex_state = 12, .external_lex_state = 2}, + [5180] = {.lex_state = 95, .external_lex_state = 5}, + [5181] = {.lex_state = 95, .external_lex_state = 5}, + [5182] = {.lex_state = 95, .external_lex_state = 5}, + [5183] = {.lex_state = 12, .external_lex_state = 2}, + [5184] = {.lex_state = 12, .external_lex_state = 2}, + [5185] = {.lex_state = 12, .external_lex_state = 2}, + [5186] = {.lex_state = 95, .external_lex_state = 5}, + [5187] = {.lex_state = 95, .external_lex_state = 5}, + [5188] = {.lex_state = 95, .external_lex_state = 2}, + [5189] = {.lex_state = 12, .external_lex_state = 2}, + [5190] = {.lex_state = 95, .external_lex_state = 2}, + [5191] = {.lex_state = 95, .external_lex_state = 6}, + [5192] = {.lex_state = 12, .external_lex_state = 2}, + [5193] = {.lex_state = 95, .external_lex_state = 2}, + [5194] = {.lex_state = 12, .external_lex_state = 2}, + [5195] = {.lex_state = 12, .external_lex_state = 2}, + [5196] = {.lex_state = 95, .external_lex_state = 5}, + [5197] = {.lex_state = 95, .external_lex_state = 2}, + [5198] = {.lex_state = 95, .external_lex_state = 5}, + [5199] = {.lex_state = 12, .external_lex_state = 2}, + [5200] = {.lex_state = 12, .external_lex_state = 2}, + [5201] = {.lex_state = 12, .external_lex_state = 2}, + [5202] = {.lex_state = 95, .external_lex_state = 2}, + [5203] = {.lex_state = 95, .external_lex_state = 5}, + [5204] = {.lex_state = 95, .external_lex_state = 2}, + [5205] = {.lex_state = 12, .external_lex_state = 2}, + [5206] = {.lex_state = 95, .external_lex_state = 5}, + [5207] = {.lex_state = 12, .external_lex_state = 2}, + [5208] = {.lex_state = 12, .external_lex_state = 2}, + [5209] = {.lex_state = 17, .external_lex_state = 8}, + [5210] = {.lex_state = 12, .external_lex_state = 2}, + [5211] = {.lex_state = 12, .external_lex_state = 2}, + [5212] = {.lex_state = 12, .external_lex_state = 2}, + [5213] = {.lex_state = 12, .external_lex_state = 2}, + [5214] = {.lex_state = 12, .external_lex_state = 2}, + [5215] = {.lex_state = 12, .external_lex_state = 2}, + [5216] = {.lex_state = 12, .external_lex_state = 2}, + [5217] = {.lex_state = 12, .external_lex_state = 2}, + [5218] = {.lex_state = 95, .external_lex_state = 5}, + [5219] = {.lex_state = 95, .external_lex_state = 5}, + [5220] = {.lex_state = 12, .external_lex_state = 2}, + [5221] = {.lex_state = 12, .external_lex_state = 2}, + [5222] = {.lex_state = 12, .external_lex_state = 2}, + [5223] = {.lex_state = 12, .external_lex_state = 2}, + [5224] = {.lex_state = 12, .external_lex_state = 2}, + [5225] = {.lex_state = 95, .external_lex_state = 5}, + [5226] = {.lex_state = 12, .external_lex_state = 2}, + [5227] = {.lex_state = 95, .external_lex_state = 5}, + [5228] = {.lex_state = 12, .external_lex_state = 2}, + [5229] = {.lex_state = 95, .external_lex_state = 2}, + [5230] = {.lex_state = 12, .external_lex_state = 2}, + [5231] = {.lex_state = 95, .external_lex_state = 5}, + [5232] = {.lex_state = 95, .external_lex_state = 2}, + [5233] = {.lex_state = 12, .external_lex_state = 2}, + [5234] = {.lex_state = 4, .external_lex_state = 2}, + [5235] = {.lex_state = 12, .external_lex_state = 2}, + [5236] = {.lex_state = 95, .external_lex_state = 5}, + [5237] = {.lex_state = 12, .external_lex_state = 2}, + [5238] = {.lex_state = 12, .external_lex_state = 2}, + [5239] = {.lex_state = 12, .external_lex_state = 2}, + [5240] = {.lex_state = 95, .external_lex_state = 5}, + [5241] = {.lex_state = 95, .external_lex_state = 5}, + [5242] = {.lex_state = 12, .external_lex_state = 2}, + [5243] = {.lex_state = 95, .external_lex_state = 5}, + [5244] = {.lex_state = 12, .external_lex_state = 2}, + [5245] = {.lex_state = 95, .external_lex_state = 5}, + [5246] = {.lex_state = 12, .external_lex_state = 2}, + [5247] = {.lex_state = 12, .external_lex_state = 2}, + [5248] = {.lex_state = 12, .external_lex_state = 2}, + [5249] = {.lex_state = 17, .external_lex_state = 8}, + [5250] = {.lex_state = 14, .external_lex_state = 2}, + [5251] = {.lex_state = 12, .external_lex_state = 2}, + [5252] = {.lex_state = 12, .external_lex_state = 2}, + [5253] = {.lex_state = 12, .external_lex_state = 2}, + [5254] = {.lex_state = 95, .external_lex_state = 5}, + [5255] = {.lex_state = 95, .external_lex_state = 6}, + [5256] = {.lex_state = 95, .external_lex_state = 5}, + [5257] = {.lex_state = 12, .external_lex_state = 2}, + [5258] = {.lex_state = 95, .external_lex_state = 2}, + [5259] = {.lex_state = 12, .external_lex_state = 2}, + [5260] = {.lex_state = 95, .external_lex_state = 2}, + [5261] = {.lex_state = 95, .external_lex_state = 6}, + [5262] = {.lex_state = 12, .external_lex_state = 2}, + [5263] = {.lex_state = 95, .external_lex_state = 5}, + [5264] = {.lex_state = 17, .external_lex_state = 8}, + [5265] = {.lex_state = 95, .external_lex_state = 6}, + [5266] = {.lex_state = 95, .external_lex_state = 5}, + [5267] = {.lex_state = 95, .external_lex_state = 5}, + [5268] = {.lex_state = 95, .external_lex_state = 5}, + [5269] = {.lex_state = 12, .external_lex_state = 2}, + [5270] = {.lex_state = 95, .external_lex_state = 5}, + [5271] = {.lex_state = 95, .external_lex_state = 5}, + [5272] = {.lex_state = 12, .external_lex_state = 2}, + [5273] = {.lex_state = 95, .external_lex_state = 5}, + [5274] = {.lex_state = 20, .external_lex_state = 9}, + [5275] = {.lex_state = 16, .external_lex_state = 9}, + [5276] = {.lex_state = 95, .external_lex_state = 2}, + [5277] = {.lex_state = 95, .external_lex_state = 2}, + [5278] = {.lex_state = 95, .external_lex_state = 2}, + [5279] = {.lex_state = 95, .external_lex_state = 2}, + [5280] = {.lex_state = 95, .external_lex_state = 2}, + [5281] = {.lex_state = 16, .external_lex_state = 9}, + [5282] = {.lex_state = 20, .external_lex_state = 9}, + [5283] = {.lex_state = 12, .external_lex_state = 2}, + [5284] = {.lex_state = 95, .external_lex_state = 2}, + [5285] = {.lex_state = 95, .external_lex_state = 2}, + [5286] = {.lex_state = 95, .external_lex_state = 2}, + [5287] = {.lex_state = 95, .external_lex_state = 5}, + [5288] = {.lex_state = 95, .external_lex_state = 5}, + [5289] = {.lex_state = 95, .external_lex_state = 2}, + [5290] = {.lex_state = 95, .external_lex_state = 2}, + [5291] = {.lex_state = 95, .external_lex_state = 2}, + [5292] = {.lex_state = 95, .external_lex_state = 2}, + [5293] = {.lex_state = 12, .external_lex_state = 2}, + [5294] = {.lex_state = 95, .external_lex_state = 5}, + [5295] = {.lex_state = 12, .external_lex_state = 2}, + [5296] = {.lex_state = 95, .external_lex_state = 2}, + [5297] = {.lex_state = 95, .external_lex_state = 2}, + [5298] = {.lex_state = 16, .external_lex_state = 9}, + [5299] = {.lex_state = 95, .external_lex_state = 5}, + [5300] = {.lex_state = 20, .external_lex_state = 9}, + [5301] = {.lex_state = 16, .external_lex_state = 9}, + [5302] = {.lex_state = 95, .external_lex_state = 5}, + [5303] = {.lex_state = 95, .external_lex_state = 5}, + [5304] = {.lex_state = 12, .external_lex_state = 2}, + [5305] = {.lex_state = 20, .external_lex_state = 9}, + [5306] = {.lex_state = 95, .external_lex_state = 5}, + [5307] = {.lex_state = 95, .external_lex_state = 2}, + [5308] = {.lex_state = 12, .external_lex_state = 2}, + [5309] = {.lex_state = 12, .external_lex_state = 2}, + [5310] = {.lex_state = 95, .external_lex_state = 2}, + [5311] = {.lex_state = 95, .external_lex_state = 2}, + [5312] = {.lex_state = 12, .external_lex_state = 2}, + [5313] = {.lex_state = 95, .external_lex_state = 2}, + [5314] = {.lex_state = 95, .external_lex_state = 2}, + [5315] = {.lex_state = 95, .external_lex_state = 2}, + [5316] = {.lex_state = 95, .external_lex_state = 2}, + [5317] = {.lex_state = 95, .external_lex_state = 2}, + [5318] = {.lex_state = 95, .external_lex_state = 2}, + [5319] = {.lex_state = 20, .external_lex_state = 9}, + [5320] = {.lex_state = 16, .external_lex_state = 9}, + [5321] = {.lex_state = 95, .external_lex_state = 2}, + [5322] = {.lex_state = 95, .external_lex_state = 2}, + [5323] = {.lex_state = 4, .external_lex_state = 2}, + [5324] = {.lex_state = 4, .external_lex_state = 2}, + [5325] = {.lex_state = 95, .external_lex_state = 2}, + [5326] = {.lex_state = 4, .external_lex_state = 2}, + [5327] = {.lex_state = 95, .external_lex_state = 2}, + [5328] = {.lex_state = 95, .external_lex_state = 5}, + [5329] = {.lex_state = 20, .external_lex_state = 9}, + [5330] = {.lex_state = 95, .external_lex_state = 5}, + [5331] = {.lex_state = 16, .external_lex_state = 9}, + [5332] = {.lex_state = 95, .external_lex_state = 5}, + [5333] = {.lex_state = 95, .external_lex_state = 5}, + [5334] = {.lex_state = 12, .external_lex_state = 2}, + [5335] = {.lex_state = 95, .external_lex_state = 2}, + [5336] = {.lex_state = 16, .external_lex_state = 9}, + [5337] = {.lex_state = 20, .external_lex_state = 9}, + [5338] = {.lex_state = 95, .external_lex_state = 2}, + [5339] = {.lex_state = 16, .external_lex_state = 9}, + [5340] = {.lex_state = 20, .external_lex_state = 9}, + [5341] = {.lex_state = 95, .external_lex_state = 5}, + [5342] = {.lex_state = 95, .external_lex_state = 2}, + [5343] = {.lex_state = 95, .external_lex_state = 2}, + [5344] = {.lex_state = 20, .external_lex_state = 9}, + [5345] = {.lex_state = 4, .external_lex_state = 2}, + [5346] = {.lex_state = 95, .external_lex_state = 5}, + [5347] = {.lex_state = 95, .external_lex_state = 6}, + [5348] = {.lex_state = 12, .external_lex_state = 2}, + [5349] = {.lex_state = 95, .external_lex_state = 2}, + [5350] = {.lex_state = 20, .external_lex_state = 9}, + [5351] = {.lex_state = 16, .external_lex_state = 9}, + [5352] = {.lex_state = 20, .external_lex_state = 9}, + [5353] = {.lex_state = 16, .external_lex_state = 9}, + [5354] = {.lex_state = 95, .external_lex_state = 2}, + [5355] = {.lex_state = 95, .external_lex_state = 2}, + [5356] = {.lex_state = 16, .external_lex_state = 9}, + [5357] = {.lex_state = 12, .external_lex_state = 2}, + [5358] = {.lex_state = 95, .external_lex_state = 2}, + [5359] = {.lex_state = 95, .external_lex_state = 2}, + [5360] = {.lex_state = 12, .external_lex_state = 2}, + [5361] = {.lex_state = 95, .external_lex_state = 2}, + [5362] = {.lex_state = 95, .external_lex_state = 2}, + [5363] = {.lex_state = 95, .external_lex_state = 2}, + [5364] = {.lex_state = 95, .external_lex_state = 5}, + [5365] = {.lex_state = 95, .external_lex_state = 5}, + [5366] = {.lex_state = 12, .external_lex_state = 2}, + [5367] = {.lex_state = 12, .external_lex_state = 2}, + [5368] = {.lex_state = 16, .external_lex_state = 9}, + [5369] = {.lex_state = 95, .external_lex_state = 2}, + [5370] = {.lex_state = 20, .external_lex_state = 9}, + [5371] = {.lex_state = 95, .external_lex_state = 2}, + [5372] = {.lex_state = 12, .external_lex_state = 2}, + [5373] = {.lex_state = 16, .external_lex_state = 9}, + [5374] = {.lex_state = 20, .external_lex_state = 9}, + [5375] = {.lex_state = 95, .external_lex_state = 2}, + [5376] = {.lex_state = 12, .external_lex_state = 2}, + [5377] = {.lex_state = 12, .external_lex_state = 2}, + [5378] = {.lex_state = 95, .external_lex_state = 2}, + [5379] = {.lex_state = 12, .external_lex_state = 2}, + [5380] = {.lex_state = 95, .external_lex_state = 5}, + [5381] = {.lex_state = 95, .external_lex_state = 2}, + [5382] = {.lex_state = 95, .external_lex_state = 2}, + [5383] = {.lex_state = 95, .external_lex_state = 2}, + [5384] = {.lex_state = 12, .external_lex_state = 2}, + [5385] = {.lex_state = 95, .external_lex_state = 2}, + [5386] = {.lex_state = 95, .external_lex_state = 2}, + [5387] = {.lex_state = 12, .external_lex_state = 2}, + [5388] = {.lex_state = 12, .external_lex_state = 2}, + [5389] = {.lex_state = 95, .external_lex_state = 2}, + [5390] = {.lex_state = 12, .external_lex_state = 2}, + [5391] = {.lex_state = 17, .external_lex_state = 7}, + [5392] = {.lex_state = 95, .external_lex_state = 2}, + [5393] = {.lex_state = 16, .external_lex_state = 9}, + [5394] = {.lex_state = 20, .external_lex_state = 9}, + [5395] = {.lex_state = 16, .external_lex_state = 9}, + [5396] = {.lex_state = 20, .external_lex_state = 9}, + [5397] = {.lex_state = 95, .external_lex_state = 2}, + [5398] = {.lex_state = 95, .external_lex_state = 2}, + [5399] = {.lex_state = 95, .external_lex_state = 2}, + [5400] = {.lex_state = 95, .external_lex_state = 2}, + [5401] = {.lex_state = 17, .external_lex_state = 7}, + [5402] = {.lex_state = 4, .external_lex_state = 2}, + [5403] = {.lex_state = 95, .external_lex_state = 5}, + [5404] = {.lex_state = 95, .external_lex_state = 2}, + [5405] = {.lex_state = 95, .external_lex_state = 2}, + [5406] = {.lex_state = 95, .external_lex_state = 2}, + [5407] = {.lex_state = 12, .external_lex_state = 2}, + [5408] = {.lex_state = 95, .external_lex_state = 2}, + [5409] = {.lex_state = 12, .external_lex_state = 2}, + [5410] = {.lex_state = 95, .external_lex_state = 5}, + [5411] = {.lex_state = 95, .external_lex_state = 2}, + [5412] = {.lex_state = 95, .external_lex_state = 5}, + [5413] = {.lex_state = 95, .external_lex_state = 5}, + [5414] = {.lex_state = 95, .external_lex_state = 5}, + [5415] = {.lex_state = 95, .external_lex_state = 2}, + [5416] = {.lex_state = 95, .external_lex_state = 5}, + [5417] = {.lex_state = 95, .external_lex_state = 5}, + [5418] = {.lex_state = 95, .external_lex_state = 5}, + [5419] = {.lex_state = 95, .external_lex_state = 5}, + [5420] = {.lex_state = 95, .external_lex_state = 5}, + [5421] = {.lex_state = 95, .external_lex_state = 5}, + [5422] = {.lex_state = 1, .external_lex_state = 2}, + [5423] = {.lex_state = 95, .external_lex_state = 5}, + [5424] = {.lex_state = 95, .external_lex_state = 5}, + [5425] = {.lex_state = 95, .external_lex_state = 5}, + [5426] = {.lex_state = 95, .external_lex_state = 5}, + [5427] = {.lex_state = 95, .external_lex_state = 5}, + [5428] = {.lex_state = 95, .external_lex_state = 5}, + [5429] = {.lex_state = 95, .external_lex_state = 5}, + [5430] = {.lex_state = 95, .external_lex_state = 5}, + [5431] = {.lex_state = 95, .external_lex_state = 5}, + [5432] = {.lex_state = 95, .external_lex_state = 5}, + [5433] = {.lex_state = 95, .external_lex_state = 5}, + [5434] = {.lex_state = 95, .external_lex_state = 2}, + [5435] = {.lex_state = 95, .external_lex_state = 2}, + [5436] = {.lex_state = 95, .external_lex_state = 5}, + [5437] = {.lex_state = 95, .external_lex_state = 5}, + [5438] = {.lex_state = 95, .external_lex_state = 5}, + [5439] = {.lex_state = 95, .external_lex_state = 5}, + [5440] = {.lex_state = 95, .external_lex_state = 2}, + [5441] = {.lex_state = 95, .external_lex_state = 5}, + [5442] = {.lex_state = 95, .external_lex_state = 5}, + [5443] = {.lex_state = 95, .external_lex_state = 5}, + [5444] = {.lex_state = 95, .external_lex_state = 5}, + [5445] = {.lex_state = 95, .external_lex_state = 5}, + [5446] = {.lex_state = 12, .external_lex_state = 2}, + [5447] = {.lex_state = 95, .external_lex_state = 5}, + [5448] = {.lex_state = 95, .external_lex_state = 5}, + [5449] = {.lex_state = 95, .external_lex_state = 5}, + [5450] = {.lex_state = 95, .external_lex_state = 5}, + [5451] = {.lex_state = 95, .external_lex_state = 2}, + [5452] = {.lex_state = 95, .external_lex_state = 2}, + [5453] = {.lex_state = 95, .external_lex_state = 5}, + [5454] = {.lex_state = 95, .external_lex_state = 2}, + [5455] = {.lex_state = 95, .external_lex_state = 2}, + [5456] = {.lex_state = 95, .external_lex_state = 5}, + [5457] = {.lex_state = 95, .external_lex_state = 5}, + [5458] = {.lex_state = 95, .external_lex_state = 5}, + [5459] = {.lex_state = 95, .external_lex_state = 5}, + [5460] = {.lex_state = 95, .external_lex_state = 5}, + [5461] = {.lex_state = 95, .external_lex_state = 2}, + [5462] = {.lex_state = 95, .external_lex_state = 2}, + [5463] = {.lex_state = 95, .external_lex_state = 2}, + [5464] = {.lex_state = 95, .external_lex_state = 5}, + [5465] = {.lex_state = 95, .external_lex_state = 2}, + [5466] = {.lex_state = 95, .external_lex_state = 2}, + [5467] = {.lex_state = 95, .external_lex_state = 2}, + [5468] = {.lex_state = 95, .external_lex_state = 2}, + [5469] = {.lex_state = 1, .external_lex_state = 2}, + [5470] = {.lex_state = 95, .external_lex_state = 2}, + [5471] = {.lex_state = 95, .external_lex_state = 2}, + [5472] = {.lex_state = 95, .external_lex_state = 2}, + [5473] = {.lex_state = 95, .external_lex_state = 2}, + [5474] = {.lex_state = 95, .external_lex_state = 2}, + [5475] = {.lex_state = 95, .external_lex_state = 2}, + [5476] = {.lex_state = 95, .external_lex_state = 2}, + [5477] = {.lex_state = 95, .external_lex_state = 2}, + [5478] = {.lex_state = 95, .external_lex_state = 5}, + [5479] = {.lex_state = 95, .external_lex_state = 5}, + [5480] = {.lex_state = 95, .external_lex_state = 5}, + [5481] = {.lex_state = 95, .external_lex_state = 5}, + [5482] = {.lex_state = 95, .external_lex_state = 5}, + [5483] = {.lex_state = 95, .external_lex_state = 5}, + [5484] = {.lex_state = 95, .external_lex_state = 5}, + [5485] = {.lex_state = 95, .external_lex_state = 5}, + [5486] = {.lex_state = 95, .external_lex_state = 5}, + [5487] = {.lex_state = 95, .external_lex_state = 5}, + [5488] = {.lex_state = 95, .external_lex_state = 5}, + [5489] = {.lex_state = 95, .external_lex_state = 5}, + [5490] = {.lex_state = 95, .external_lex_state = 5}, + [5491] = {.lex_state = 95, .external_lex_state = 5}, + [5492] = {.lex_state = 95, .external_lex_state = 5}, + [5493] = {.lex_state = 95, .external_lex_state = 5}, + [5494] = {.lex_state = 95, .external_lex_state = 2}, + [5495] = {.lex_state = 95, .external_lex_state = 5}, + [5496] = {.lex_state = 95, .external_lex_state = 5}, + [5497] = {.lex_state = 95, .external_lex_state = 5}, + [5498] = {.lex_state = 95, .external_lex_state = 5}, + [5499] = {.lex_state = 95, .external_lex_state = 2}, + [5500] = {.lex_state = 95, .external_lex_state = 5}, + [5501] = {.lex_state = 95, .external_lex_state = 5}, + [5502] = {.lex_state = 95, .external_lex_state = 5}, + [5503] = {.lex_state = 95, .external_lex_state = 5}, + [5504] = {.lex_state = 95, .external_lex_state = 5}, + [5505] = {.lex_state = 95, .external_lex_state = 5}, + [5506] = {.lex_state = 95, .external_lex_state = 5}, + [5507] = {.lex_state = 95, .external_lex_state = 5}, + [5508] = {.lex_state = 95, .external_lex_state = 2}, + [5509] = {.lex_state = 95, .external_lex_state = 5}, + [5510] = {.lex_state = 95, .external_lex_state = 5}, + [5511] = {.lex_state = 95, .external_lex_state = 5}, + [5512] = {.lex_state = 95, .external_lex_state = 5}, + [5513] = {.lex_state = 95, .external_lex_state = 5}, + [5514] = {.lex_state = 95, .external_lex_state = 5}, + [5515] = {.lex_state = 95, .external_lex_state = 5}, + [5516] = {.lex_state = 95, .external_lex_state = 2}, + [5517] = {.lex_state = 95, .external_lex_state = 5}, + [5518] = {.lex_state = 95, .external_lex_state = 2}, + [5519] = {.lex_state = 95, .external_lex_state = 5}, + [5520] = {.lex_state = 95, .external_lex_state = 5}, + [5521] = {.lex_state = 95, .external_lex_state = 5}, + [5522] = {.lex_state = 95, .external_lex_state = 5}, + [5523] = {.lex_state = 95, .external_lex_state = 5}, + [5524] = {.lex_state = 95, .external_lex_state = 5}, + [5525] = {.lex_state = 95, .external_lex_state = 5}, + [5526] = {.lex_state = 95, .external_lex_state = 5}, + [5527] = {.lex_state = 95, .external_lex_state = 5}, + [5528] = {.lex_state = 95, .external_lex_state = 5}, + [5529] = {.lex_state = 95, .external_lex_state = 5}, + [5530] = {.lex_state = 95, .external_lex_state = 2}, + [5531] = {.lex_state = 95, .external_lex_state = 5}, + [5532] = {.lex_state = 95, .external_lex_state = 2}, + [5533] = {.lex_state = 95, .external_lex_state = 5}, + [5534] = {.lex_state = 95, .external_lex_state = 5}, + [5535] = {.lex_state = 95, .external_lex_state = 5}, + [5536] = {.lex_state = 95, .external_lex_state = 2}, + [5537] = {.lex_state = 95, .external_lex_state = 2}, + [5538] = {.lex_state = 95, .external_lex_state = 5}, + [5539] = {.lex_state = 95, .external_lex_state = 5}, + [5540] = {.lex_state = 12, .external_lex_state = 2}, + [5541] = {.lex_state = 95, .external_lex_state = 5}, + [5542] = {.lex_state = 95, .external_lex_state = 5}, + [5543] = {.lex_state = 95, .external_lex_state = 5}, + [5544] = {.lex_state = 95, .external_lex_state = 5}, + [5545] = {.lex_state = 95, .external_lex_state = 5}, + [5546] = {.lex_state = 95, .external_lex_state = 5}, + [5547] = {.lex_state = 95, .external_lex_state = 5}, + [5548] = {.lex_state = 95, .external_lex_state = 2}, + [5549] = {.lex_state = 95, .external_lex_state = 2}, + [5550] = {.lex_state = 95, .external_lex_state = 5}, + [5551] = {.lex_state = 95, .external_lex_state = 5}, + [5552] = {.lex_state = 95, .external_lex_state = 5}, + [5553] = {.lex_state = 95, .external_lex_state = 5}, + [5554] = {.lex_state = 95, .external_lex_state = 2}, + [5555] = {.lex_state = 95, .external_lex_state = 2}, + [5556] = {.lex_state = 95, .external_lex_state = 2}, + [5557] = {.lex_state = 95, .external_lex_state = 5}, + [5558] = {.lex_state = 95, .external_lex_state = 5}, + [5559] = {.lex_state = 95, .external_lex_state = 5}, + [5560] = {.lex_state = 95, .external_lex_state = 5}, + [5561] = {.lex_state = 95, .external_lex_state = 5}, + [5562] = {.lex_state = 95, .external_lex_state = 5}, + [5563] = {.lex_state = 95, .external_lex_state = 5}, + [5564] = {.lex_state = 95, .external_lex_state = 5}, + [5565] = {.lex_state = 95, .external_lex_state = 5}, + [5566] = {.lex_state = 95, .external_lex_state = 5}, + [5567] = {.lex_state = 95, .external_lex_state = 5}, + [5568] = {.lex_state = 95, .external_lex_state = 5}, + [5569] = {.lex_state = 95, .external_lex_state = 5}, + [5570] = {.lex_state = 95, .external_lex_state = 5}, + [5571] = {.lex_state = 95, .external_lex_state = 2}, + [5572] = {.lex_state = 95, .external_lex_state = 5}, + [5573] = {.lex_state = 95, .external_lex_state = 5}, + [5574] = {.lex_state = 95, .external_lex_state = 2}, + [5575] = {.lex_state = 95, .external_lex_state = 5}, + [5576] = {.lex_state = 95, .external_lex_state = 5}, + [5577] = {.lex_state = 95, .external_lex_state = 5}, + [5578] = {.lex_state = 95, .external_lex_state = 5}, + [5579] = {.lex_state = 95, .external_lex_state = 2}, + [5580] = {.lex_state = 95, .external_lex_state = 2}, + [5581] = {.lex_state = 95, .external_lex_state = 2}, + [5582] = {.lex_state = 95, .external_lex_state = 2}, + [5583] = {.lex_state = 95, .external_lex_state = 5}, + [5584] = {.lex_state = 95, .external_lex_state = 2}, + [5585] = {.lex_state = 95, .external_lex_state = 2}, + [5586] = {.lex_state = 95, .external_lex_state = 2}, + [5587] = {.lex_state = 1, .external_lex_state = 2}, + [5588] = {.lex_state = 95, .external_lex_state = 5}, + [5589] = {.lex_state = 95, .external_lex_state = 5}, + [5590] = {.lex_state = 95, .external_lex_state = 5}, + [5591] = {.lex_state = 95, .external_lex_state = 5}, + [5592] = {.lex_state = 95, .external_lex_state = 5}, + [5593] = {.lex_state = 95, .external_lex_state = 5}, + [5594] = {.lex_state = 95, .external_lex_state = 5}, + [5595] = {.lex_state = 95, .external_lex_state = 5}, + [5596] = {.lex_state = 95, .external_lex_state = 5}, + [5597] = {.lex_state = 95, .external_lex_state = 5}, + [5598] = {.lex_state = 95, .external_lex_state = 2}, + [5599] = {.lex_state = 95, .external_lex_state = 5}, + [5600] = {.lex_state = 95, .external_lex_state = 5}, + [5601] = {.lex_state = 95, .external_lex_state = 5}, + [5602] = {.lex_state = 95, .external_lex_state = 5}, + [5603] = {.lex_state = 95, .external_lex_state = 5}, + [5604] = {.lex_state = 95, .external_lex_state = 2}, + [5605] = {.lex_state = 95, .external_lex_state = 5}, + [5606] = {.lex_state = 95, .external_lex_state = 5}, + [5607] = {.lex_state = 95, .external_lex_state = 5}, + [5608] = {.lex_state = 95, .external_lex_state = 5}, + [5609] = {.lex_state = 95, .external_lex_state = 5}, + [5610] = {.lex_state = 95, .external_lex_state = 5}, + [5611] = {.lex_state = 95, .external_lex_state = 5}, + [5612] = {.lex_state = 95, .external_lex_state = 5}, + [5613] = {.lex_state = 95, .external_lex_state = 2}, + [5614] = {.lex_state = 95, .external_lex_state = 5}, + [5615] = {.lex_state = 95, .external_lex_state = 5}, + [5616] = {.lex_state = 95, .external_lex_state = 5}, + [5617] = {.lex_state = 95, .external_lex_state = 5}, + [5618] = {.lex_state = 95, .external_lex_state = 5}, + [5619] = {.lex_state = 95, .external_lex_state = 5}, + [5620] = {.lex_state = 95, .external_lex_state = 5}, + [5621] = {.lex_state = 95, .external_lex_state = 5}, + [5622] = {.lex_state = 95, .external_lex_state = 5}, + [5623] = {.lex_state = 95, .external_lex_state = 2}, + [5624] = {.lex_state = 95, .external_lex_state = 5}, + [5625] = {.lex_state = 95, .external_lex_state = 5}, + [5626] = {.lex_state = 95, .external_lex_state = 2}, + [5627] = {.lex_state = 95, .external_lex_state = 5}, + [5628] = {.lex_state = 4, .external_lex_state = 2}, + [5629] = {.lex_state = 95, .external_lex_state = 5}, + [5630] = {.lex_state = 95, .external_lex_state = 2}, + [5631] = {.lex_state = 95, .external_lex_state = 2}, + [5632] = {.lex_state = 95, .external_lex_state = 5}, + [5633] = {.lex_state = 95, .external_lex_state = 5}, + [5634] = {.lex_state = 95, .external_lex_state = 5}, + [5635] = {.lex_state = 95, .external_lex_state = 5}, + [5636] = {.lex_state = 95, .external_lex_state = 5}, + [5637] = {.lex_state = 95, .external_lex_state = 5}, + [5638] = {.lex_state = 95, .external_lex_state = 5}, + [5639] = {.lex_state = 95, .external_lex_state = 5}, + [5640] = {.lex_state = 95, .external_lex_state = 5}, + [5641] = {.lex_state = 95, .external_lex_state = 2}, + [5642] = {.lex_state = 95, .external_lex_state = 5}, + [5643] = {.lex_state = 95, .external_lex_state = 5}, + [5644] = {.lex_state = 95, .external_lex_state = 5}, + [5645] = {.lex_state = 95, .external_lex_state = 5}, + [5646] = {.lex_state = 95, .external_lex_state = 5}, + [5647] = {.lex_state = 95, .external_lex_state = 5}, + [5648] = {.lex_state = 95, .external_lex_state = 5}, + [5649] = {.lex_state = 95, .external_lex_state = 2}, + [5650] = {.lex_state = 95, .external_lex_state = 5}, + [5651] = {.lex_state = 95, .external_lex_state = 5}, + [5652] = {.lex_state = 95, .external_lex_state = 5}, + [5653] = {.lex_state = 95, .external_lex_state = 5}, + [5654] = {.lex_state = 95, .external_lex_state = 5}, + [5655] = {.lex_state = 95, .external_lex_state = 5}, + [5656] = {.lex_state = 95, .external_lex_state = 5}, + [5657] = {.lex_state = 95, .external_lex_state = 5}, + [5658] = {.lex_state = 95, .external_lex_state = 5}, + [5659] = {.lex_state = 95, .external_lex_state = 5}, + [5660] = {.lex_state = 95, .external_lex_state = 5}, + [5661] = {.lex_state = 95, .external_lex_state = 5}, + [5662] = {.lex_state = 95, .external_lex_state = 5}, + [5663] = {.lex_state = 95, .external_lex_state = 5}, + [5664] = {.lex_state = 95, .external_lex_state = 5}, + [5665] = {.lex_state = 95, .external_lex_state = 5}, + [5666] = {.lex_state = 95, .external_lex_state = 5}, + [5667] = {.lex_state = 95, .external_lex_state = 2}, + [5668] = {.lex_state = 95, .external_lex_state = 5}, + [5669] = {.lex_state = 95, .external_lex_state = 5}, + [5670] = {.lex_state = 95, .external_lex_state = 5}, + [5671] = {.lex_state = 95, .external_lex_state = 5}, + [5672] = {.lex_state = 95, .external_lex_state = 5}, + [5673] = {.lex_state = 95, .external_lex_state = 5}, + [5674] = {.lex_state = 95, .external_lex_state = 5}, + [5675] = {.lex_state = 95, .external_lex_state = 5}, + [5676] = {.lex_state = 95, .external_lex_state = 5}, + [5677] = {.lex_state = 95, .external_lex_state = 5}, + [5678] = {.lex_state = 95, .external_lex_state = 2}, + [5679] = {.lex_state = 95, .external_lex_state = 5}, + [5680] = {.lex_state = 95, .external_lex_state = 5}, + [5681] = {.lex_state = 95, .external_lex_state = 5}, + [5682] = {.lex_state = 95, .external_lex_state = 5}, + [5683] = {.lex_state = 95, .external_lex_state = 2}, + [5684] = {.lex_state = 95, .external_lex_state = 5}, + [5685] = {.lex_state = 95, .external_lex_state = 5}, + [5686] = {.lex_state = 95, .external_lex_state = 2}, + [5687] = {.lex_state = 95, .external_lex_state = 5}, + [5688] = {.lex_state = 95, .external_lex_state = 5}, + [5689] = {.lex_state = 95, .external_lex_state = 5}, + [5690] = {.lex_state = 95, .external_lex_state = 5}, + [5691] = {.lex_state = 95, .external_lex_state = 2}, + [5692] = {.lex_state = 95, .external_lex_state = 5}, + [5693] = {.lex_state = 95, .external_lex_state = 5}, + [5694] = {.lex_state = 95, .external_lex_state = 5}, + [5695] = {.lex_state = 95, .external_lex_state = 5}, + [5696] = {.lex_state = 95, .external_lex_state = 5}, + [5697] = {.lex_state = 95, .external_lex_state = 2}, + [5698] = {.lex_state = 95, .external_lex_state = 5}, + [5699] = {.lex_state = 95, .external_lex_state = 2}, + [5700] = {.lex_state = 95, .external_lex_state = 5}, + [5701] = {.lex_state = 95, .external_lex_state = 2}, + [5702] = {.lex_state = 95, .external_lex_state = 5}, + [5703] = {.lex_state = 95, .external_lex_state = 5}, + [5704] = {.lex_state = 95, .external_lex_state = 5}, + [5705] = {.lex_state = 95, .external_lex_state = 5}, + [5706] = {.lex_state = 95, .external_lex_state = 5}, + [5707] = {.lex_state = 95, .external_lex_state = 5}, + [5708] = {.lex_state = 95, .external_lex_state = 5}, + [5709] = {.lex_state = 95, .external_lex_state = 5}, + [5710] = {.lex_state = 95, .external_lex_state = 5}, + [5711] = {.lex_state = 95, .external_lex_state = 5}, + [5712] = {.lex_state = 95, .external_lex_state = 5}, + [5713] = {.lex_state = 95, .external_lex_state = 5}, + [5714] = {.lex_state = 95, .external_lex_state = 5}, + [5715] = {.lex_state = 95, .external_lex_state = 5}, + [5716] = {.lex_state = 95, .external_lex_state = 5}, + [5717] = {.lex_state = 95, .external_lex_state = 5}, + [5718] = {.lex_state = 95, .external_lex_state = 2}, + [5719] = {.lex_state = 95, .external_lex_state = 2}, + [5720] = {.lex_state = 95, .external_lex_state = 5}, + [5721] = {.lex_state = 95, .external_lex_state = 5}, + [5722] = {.lex_state = 95, .external_lex_state = 5}, + [5723] = {.lex_state = 95, .external_lex_state = 5}, + [5724] = {.lex_state = 95, .external_lex_state = 5}, + [5725] = {.lex_state = 95, .external_lex_state = 5}, + [5726] = {.lex_state = 95, .external_lex_state = 5}, + [5727] = {.lex_state = 95, .external_lex_state = 5}, + [5728] = {.lex_state = 95, .external_lex_state = 5}, + [5729] = {.lex_state = 95, .external_lex_state = 5}, + [5730] = {.lex_state = 95, .external_lex_state = 2}, + [5731] = {.lex_state = 95, .external_lex_state = 5}, + [5732] = {.lex_state = 95, .external_lex_state = 5}, + [5733] = {.lex_state = 95, .external_lex_state = 5}, + [5734] = {.lex_state = 95, .external_lex_state = 5}, + [5735] = {.lex_state = 95, .external_lex_state = 2}, + [5736] = {.lex_state = 95, .external_lex_state = 5}, + [5737] = {.lex_state = 95, .external_lex_state = 2}, + [5738] = {.lex_state = 95, .external_lex_state = 2}, + [5739] = {.lex_state = 95, .external_lex_state = 5}, + [5740] = {.lex_state = 95, .external_lex_state = 2}, + [5741] = {.lex_state = 95, .external_lex_state = 2}, + [5742] = {.lex_state = 95, .external_lex_state = 2}, + [5743] = {.lex_state = 95, .external_lex_state = 2}, + [5744] = {.lex_state = 95, .external_lex_state = 5}, + [5745] = {.lex_state = 95, .external_lex_state = 2}, + [5746] = {.lex_state = 4, .external_lex_state = 2}, + [5747] = {.lex_state = 95, .external_lex_state = 2}, + [5748] = {.lex_state = 95, .external_lex_state = 2}, + [5749] = {.lex_state = 95, .external_lex_state = 2}, + [5750] = {.lex_state = 95, .external_lex_state = 5}, + [5751] = {.lex_state = 95, .external_lex_state = 2}, + [5752] = {.lex_state = 95, .external_lex_state = 2}, + [5753] = {.lex_state = 4, .external_lex_state = 2}, + [5754] = {.lex_state = 95, .external_lex_state = 2}, + [5755] = {.lex_state = 95, .external_lex_state = 2}, + [5756] = {.lex_state = 95, .external_lex_state = 2}, + [5757] = {.lex_state = 4, .external_lex_state = 2}, + [5758] = {.lex_state = 95, .external_lex_state = 5}, + [5759] = {.lex_state = 95, .external_lex_state = 5}, + [5760] = {.lex_state = 95, .external_lex_state = 5}, + [5761] = {.lex_state = 95, .external_lex_state = 2}, + [5762] = {.lex_state = 95, .external_lex_state = 2}, + [5763] = {.lex_state = 95, .external_lex_state = 2}, + [5764] = {.lex_state = 95, .external_lex_state = 2}, + [5765] = {.lex_state = 95, .external_lex_state = 5}, + [5766] = {.lex_state = 4, .external_lex_state = 2}, + [5767] = {.lex_state = 95, .external_lex_state = 2}, + [5768] = {.lex_state = 95, .external_lex_state = 5}, + [5769] = {.lex_state = 95, .external_lex_state = 5}, + [5770] = {.lex_state = 95, .external_lex_state = 2}, + [5771] = {.lex_state = 95, .external_lex_state = 5}, + [5772] = {.lex_state = 95, .external_lex_state = 5}, + [5773] = {.lex_state = 95, .external_lex_state = 5}, + [5774] = {.lex_state = 95, .external_lex_state = 5}, + [5775] = {.lex_state = 95, .external_lex_state = 5}, + [5776] = {.lex_state = 95, .external_lex_state = 5}, + [5777] = {.lex_state = 95, .external_lex_state = 5}, + [5778] = {.lex_state = 95, .external_lex_state = 5}, + [5779] = {.lex_state = 95, .external_lex_state = 5}, + [5780] = {.lex_state = 95, .external_lex_state = 5}, + [5781] = {.lex_state = 95, .external_lex_state = 5}, + [5782] = {.lex_state = 95, .external_lex_state = 2}, + [5783] = {.lex_state = 95, .external_lex_state = 5}, + [5784] = {.lex_state = 95, .external_lex_state = 5}, + [5785] = {.lex_state = 95, .external_lex_state = 5}, + [5786] = {.lex_state = 95, .external_lex_state = 2}, + [5787] = {.lex_state = 95, .external_lex_state = 5}, + [5788] = {.lex_state = 95, .external_lex_state = 5}, + [5789] = {.lex_state = 95, .external_lex_state = 5}, + [5790] = {.lex_state = 95, .external_lex_state = 5}, + [5791] = {.lex_state = 95, .external_lex_state = 5}, + [5792] = {.lex_state = 95, .external_lex_state = 2}, + [5793] = {.lex_state = 95, .external_lex_state = 5}, + [5794] = {.lex_state = 95, .external_lex_state = 5}, + [5795] = {.lex_state = 95, .external_lex_state = 5}, + [5796] = {.lex_state = 95, .external_lex_state = 2}, + [5797] = {.lex_state = 95, .external_lex_state = 2}, + [5798] = {.lex_state = 95, .external_lex_state = 5}, + [5799] = {.lex_state = 95, .external_lex_state = 5}, + [5800] = {.lex_state = 95, .external_lex_state = 5}, + [5801] = {.lex_state = 95, .external_lex_state = 5}, + [5802] = {.lex_state = 95, .external_lex_state = 5}, + [5803] = {.lex_state = 95, .external_lex_state = 5}, + [5804] = {.lex_state = 95, .external_lex_state = 5}, + [5805] = {.lex_state = 4, .external_lex_state = 2}, + [5806] = {.lex_state = 95, .external_lex_state = 5}, + [5807] = {.lex_state = 95, .external_lex_state = 5}, + [5808] = {.lex_state = 95, .external_lex_state = 2}, + [5809] = {.lex_state = 95, .external_lex_state = 5}, + [5810] = {.lex_state = 95, .external_lex_state = 2}, + [5811] = {.lex_state = 95, .external_lex_state = 5}, + [5812] = {.lex_state = 95, .external_lex_state = 2}, + [5813] = {.lex_state = 95, .external_lex_state = 5}, + [5814] = {.lex_state = 95, .external_lex_state = 2}, + [5815] = {.lex_state = 95, .external_lex_state = 5}, + [5816] = {.lex_state = 95, .external_lex_state = 5}, + [5817] = {.lex_state = 95, .external_lex_state = 5}, + [5818] = {.lex_state = 95, .external_lex_state = 5}, + [5819] = {.lex_state = 95, .external_lex_state = 5}, + [5820] = {.lex_state = 95, .external_lex_state = 2}, + [5821] = {.lex_state = 95, .external_lex_state = 2}, + [5822] = {.lex_state = 95, .external_lex_state = 5}, + [5823] = {.lex_state = 95, .external_lex_state = 5}, + [5824] = {.lex_state = 95, .external_lex_state = 2}, + [5825] = {.lex_state = 95, .external_lex_state = 5}, + [5826] = {.lex_state = 95, .external_lex_state = 5}, + [5827] = {.lex_state = 4, .external_lex_state = 2}, + [5828] = {.lex_state = 95, .external_lex_state = 5}, + [5829] = {.lex_state = 95, .external_lex_state = 2}, + [5830] = {.lex_state = 95, .external_lex_state = 5}, + [5831] = {.lex_state = 95, .external_lex_state = 5}, + [5832] = {.lex_state = 95, .external_lex_state = 5}, + [5833] = {.lex_state = 95, .external_lex_state = 5}, + [5834] = {.lex_state = 95, .external_lex_state = 5}, + [5835] = {.lex_state = 95, .external_lex_state = 5}, + [5836] = {.lex_state = 95, .external_lex_state = 5}, + [5837] = {.lex_state = 95, .external_lex_state = 5}, + [5838] = {.lex_state = 95, .external_lex_state = 5}, + [5839] = {.lex_state = 95, .external_lex_state = 5}, + [5840] = {.lex_state = 95, .external_lex_state = 5}, + [5841] = {.lex_state = 95, .external_lex_state = 5}, + [5842] = {.lex_state = 95, .external_lex_state = 5}, + [5843] = {.lex_state = 95, .external_lex_state = 5}, + [5844] = {.lex_state = 95, .external_lex_state = 5}, + [5845] = {.lex_state = 95, .external_lex_state = 5}, + [5846] = {.lex_state = 95, .external_lex_state = 5}, + [5847] = {.lex_state = 95, .external_lex_state = 5}, + [5848] = {.lex_state = 95, .external_lex_state = 5}, + [5849] = {.lex_state = 95, .external_lex_state = 2}, + [5850] = {.lex_state = 95, .external_lex_state = 5}, + [5851] = {.lex_state = 95, .external_lex_state = 5}, + [5852] = {.lex_state = 95, .external_lex_state = 5}, + [5853] = {.lex_state = 95, .external_lex_state = 5}, + [5854] = {.lex_state = 95, .external_lex_state = 5}, + [5855] = {.lex_state = 95, .external_lex_state = 5}, + [5856] = {.lex_state = 95, .external_lex_state = 5}, + [5857] = {.lex_state = 95, .external_lex_state = 5}, + [5858] = {.lex_state = 95, .external_lex_state = 5}, + [5859] = {.lex_state = 95, .external_lex_state = 5}, + [5860] = {.lex_state = 95, .external_lex_state = 5}, + [5861] = {.lex_state = 95, .external_lex_state = 5}, + [5862] = {.lex_state = 95, .external_lex_state = 5}, + [5863] = {.lex_state = 95, .external_lex_state = 5}, + [5864] = {.lex_state = 95, .external_lex_state = 5}, + [5865] = {.lex_state = 95, .external_lex_state = 5}, + [5866] = {.lex_state = 95, .external_lex_state = 5}, + [5867] = {.lex_state = 95, .external_lex_state = 5}, + [5868] = {.lex_state = 95, .external_lex_state = 5}, + [5869] = {.lex_state = 95, .external_lex_state = 5}, + [5870] = {.lex_state = 95, .external_lex_state = 5}, + [5871] = {.lex_state = 95, .external_lex_state = 2}, + [5872] = {.lex_state = 95, .external_lex_state = 5}, + [5873] = {.lex_state = 95, .external_lex_state = 5}, + [5874] = {.lex_state = 95, .external_lex_state = 5}, + [5875] = {.lex_state = 95, .external_lex_state = 5}, + [5876] = {.lex_state = 95, .external_lex_state = 5}, + [5877] = {.lex_state = 95, .external_lex_state = 5}, + [5878] = {.lex_state = 95, .external_lex_state = 2}, + [5879] = {.lex_state = 95, .external_lex_state = 5}, + [5880] = {.lex_state = 95, .external_lex_state = 5}, + [5881] = {.lex_state = 95, .external_lex_state = 5}, + [5882] = {.lex_state = 95, .external_lex_state = 5}, + [5883] = {.lex_state = 95, .external_lex_state = 2}, + [5884] = {.lex_state = 95, .external_lex_state = 5}, + [5885] = {.lex_state = 95, .external_lex_state = 5}, + [5886] = {.lex_state = 95, .external_lex_state = 5}, + [5887] = {.lex_state = 95, .external_lex_state = 5}, + [5888] = {.lex_state = 95, .external_lex_state = 5}, + [5889] = {.lex_state = 95, .external_lex_state = 5}, + [5890] = {.lex_state = 95, .external_lex_state = 5}, + [5891] = {.lex_state = 95, .external_lex_state = 5}, + [5892] = {.lex_state = 95, .external_lex_state = 2}, + [5893] = {.lex_state = 95, .external_lex_state = 2}, + [5894] = {.lex_state = 95, .external_lex_state = 5}, + [5895] = {.lex_state = 95, .external_lex_state = 2}, + [5896] = {.lex_state = 95, .external_lex_state = 5}, + [5897] = {.lex_state = 95, .external_lex_state = 5}, + [5898] = {.lex_state = 95, .external_lex_state = 5}, + [5899] = {.lex_state = 95, .external_lex_state = 5}, + [5900] = {.lex_state = 95, .external_lex_state = 5}, + [5901] = {.lex_state = 95, .external_lex_state = 2}, + [5902] = {.lex_state = 95, .external_lex_state = 5}, + [5903] = {.lex_state = 95, .external_lex_state = 2}, + [5904] = {.lex_state = 95, .external_lex_state = 2}, + [5905] = {.lex_state = 95, .external_lex_state = 2}, + [5906] = {.lex_state = 95, .external_lex_state = 5}, + [5907] = {.lex_state = 95, .external_lex_state = 5}, + [5908] = {.lex_state = 95, .external_lex_state = 5}, + [5909] = {.lex_state = 95, .external_lex_state = 5}, + [5910] = {.lex_state = 95, .external_lex_state = 2}, + [5911] = {.lex_state = 95, .external_lex_state = 5}, + [5912] = {.lex_state = 95, .external_lex_state = 2}, + [5913] = {.lex_state = 95, .external_lex_state = 5}, + [5914] = {.lex_state = 95, .external_lex_state = 5}, + [5915] = {.lex_state = 95, .external_lex_state = 5}, + [5916] = {.lex_state = 95, .external_lex_state = 5}, + [5917] = {.lex_state = 95, .external_lex_state = 5}, + [5918] = {.lex_state = 95, .external_lex_state = 5}, + [5919] = {.lex_state = 95, .external_lex_state = 5}, + [5920] = {.lex_state = 95, .external_lex_state = 5}, + [5921] = {.lex_state = 95, .external_lex_state = 2}, + [5922] = {.lex_state = 95, .external_lex_state = 5}, + [5923] = {.lex_state = 95, .external_lex_state = 5}, + [5924] = {.lex_state = 95, .external_lex_state = 2}, + [5925] = {.lex_state = 95, .external_lex_state = 2}, + [5926] = {.lex_state = 95, .external_lex_state = 2}, + [5927] = {.lex_state = 95, .external_lex_state = 2}, + [5928] = {.lex_state = 95, .external_lex_state = 2}, + [5929] = {.lex_state = 95, .external_lex_state = 2}, + [5930] = {.lex_state = 95, .external_lex_state = 5}, + [5931] = {.lex_state = 95, .external_lex_state = 2}, + [5932] = {.lex_state = 95, .external_lex_state = 5}, + [5933] = {.lex_state = 95, .external_lex_state = 2}, + [5934] = {.lex_state = 95, .external_lex_state = 5}, + [5935] = {.lex_state = 95, .external_lex_state = 5}, + [5936] = {.lex_state = 95, .external_lex_state = 2}, + [5937] = {.lex_state = 95, .external_lex_state = 5}, + [5938] = {.lex_state = 95, .external_lex_state = 5}, + [5939] = {.lex_state = 95, .external_lex_state = 2}, + [5940] = {.lex_state = 95, .external_lex_state = 5}, + [5941] = {.lex_state = 95, .external_lex_state = 2}, + [5942] = {.lex_state = 95, .external_lex_state = 5}, + [5943] = {.lex_state = 95, .external_lex_state = 2}, + [5944] = {.lex_state = 95, .external_lex_state = 2}, + [5945] = {.lex_state = 95, .external_lex_state = 5}, + [5946] = {.lex_state = 95, .external_lex_state = 5}, + [5947] = {.lex_state = 95, .external_lex_state = 5}, + [5948] = {.lex_state = 95, .external_lex_state = 5}, + [5949] = {.lex_state = 95, .external_lex_state = 2}, + [5950] = {.lex_state = 95, .external_lex_state = 5}, + [5951] = {.lex_state = 95, .external_lex_state = 2}, + [5952] = {.lex_state = 95, .external_lex_state = 5}, + [5953] = {.lex_state = 95, .external_lex_state = 5}, + [5954] = {.lex_state = 95, .external_lex_state = 5}, + [5955] = {.lex_state = 95, .external_lex_state = 5}, + [5956] = {.lex_state = 95, .external_lex_state = 5}, + [5957] = {.lex_state = 95, .external_lex_state = 2}, + [5958] = {.lex_state = 95, .external_lex_state = 5}, + [5959] = {.lex_state = 95, .external_lex_state = 2}, + [5960] = {.lex_state = 95, .external_lex_state = 5}, + [5961] = {.lex_state = 95, .external_lex_state = 5}, + [5962] = {.lex_state = 95, .external_lex_state = 2}, + [5963] = {.lex_state = 95, .external_lex_state = 2}, + [5964] = {.lex_state = 95, .external_lex_state = 5}, + [5965] = {.lex_state = 95, .external_lex_state = 5}, + [5966] = {.lex_state = 95, .external_lex_state = 5}, + [5967] = {.lex_state = 95, .external_lex_state = 2}, + [5968] = {.lex_state = 95, .external_lex_state = 5}, + [5969] = {.lex_state = 95, .external_lex_state = 5}, + [5970] = {.lex_state = 95, .external_lex_state = 5}, + [5971] = {.lex_state = 95, .external_lex_state = 5}, + [5972] = {.lex_state = 95, .external_lex_state = 2}, + [5973] = {.lex_state = 95, .external_lex_state = 2}, + [5974] = {.lex_state = 95, .external_lex_state = 5}, + [5975] = {.lex_state = 95, .external_lex_state = 5}, + [5976] = {.lex_state = 95, .external_lex_state = 5}, + [5977] = {.lex_state = 95, .external_lex_state = 5}, + [5978] = {.lex_state = 95, .external_lex_state = 2}, + [5979] = {.lex_state = 95, .external_lex_state = 5}, + [5980] = {.lex_state = 95, .external_lex_state = 5}, + [5981] = {.lex_state = 95, .external_lex_state = 5}, + [5982] = {.lex_state = 95, .external_lex_state = 2}, + [5983] = {.lex_state = 95, .external_lex_state = 2}, + [5984] = {.lex_state = 95, .external_lex_state = 2}, + [5985] = {.lex_state = 95, .external_lex_state = 5}, + [5986] = {.lex_state = 95, .external_lex_state = 2}, + [5987] = {.lex_state = 95, .external_lex_state = 2}, + [5988] = {.lex_state = 95, .external_lex_state = 2}, + [5989] = {.lex_state = 95, .external_lex_state = 2}, + [5990] = {.lex_state = 95, .external_lex_state = 2}, + [5991] = {.lex_state = 4, .external_lex_state = 2}, + [5992] = {.lex_state = 4, .external_lex_state = 2}, + [5993] = {.lex_state = 95, .external_lex_state = 2}, + [5994] = {.lex_state = 95, .external_lex_state = 2}, + [5995] = {.lex_state = 95, .external_lex_state = 2}, + [5996] = {.lex_state = 95, .external_lex_state = 2}, + [5997] = {.lex_state = 95, .external_lex_state = 2}, + [5998] = {.lex_state = 95, .external_lex_state = 2}, + [5999] = {.lex_state = 95, .external_lex_state = 2}, + [6000] = {.lex_state = 95, .external_lex_state = 2}, + [6001] = {.lex_state = 95, .external_lex_state = 2}, + [6002] = {.lex_state = 1, .external_lex_state = 2}, + [6003] = {.lex_state = 95, .external_lex_state = 5}, + [6004] = {.lex_state = 95, .external_lex_state = 2}, + [6005] = {.lex_state = 95, .external_lex_state = 2}, + [6006] = {.lex_state = 95, .external_lex_state = 2}, + [6007] = {.lex_state = 1, .external_lex_state = 2}, + [6008] = {.lex_state = 95, .external_lex_state = 2}, + [6009] = {.lex_state = 95, .external_lex_state = 2}, + [6010] = {.lex_state = 95, .external_lex_state = 2}, + [6011] = {.lex_state = 95, .external_lex_state = 2}, + [6012] = {.lex_state = 95, .external_lex_state = 2}, + [6013] = {.lex_state = 95, .external_lex_state = 2}, + [6014] = {.lex_state = 95, .external_lex_state = 2}, + [6015] = {.lex_state = 95, .external_lex_state = 2}, + [6016] = {.lex_state = 17, .external_lex_state = 8}, + [6017] = {.lex_state = 95, .external_lex_state = 2}, + [6018] = {.lex_state = 95, .external_lex_state = 2}, + [6019] = {.lex_state = 95, .external_lex_state = 2}, + [6020] = {.lex_state = 4, .external_lex_state = 2}, + [6021] = {.lex_state = 95, .external_lex_state = 2}, + [6022] = {.lex_state = 95, .external_lex_state = 2}, + [6023] = {.lex_state = 95, .external_lex_state = 2}, + [6024] = {.lex_state = 95, .external_lex_state = 2}, + [6025] = {.lex_state = 95, .external_lex_state = 2}, + [6026] = {.lex_state = 95, .external_lex_state = 2}, + [6027] = {.lex_state = 95, .external_lex_state = 2}, + [6028] = {.lex_state = 95, .external_lex_state = 2}, + [6029] = {.lex_state = 95, .external_lex_state = 2}, + [6030] = {.lex_state = 95, .external_lex_state = 2}, + [6031] = {.lex_state = 95, .external_lex_state = 2}, + [6032] = {.lex_state = 95, .external_lex_state = 2}, + [6033] = {.lex_state = 95, .external_lex_state = 2}, + [6034] = {.lex_state = 95, .external_lex_state = 2}, + [6035] = {.lex_state = 95, .external_lex_state = 2}, + [6036] = {.lex_state = 95, .external_lex_state = 2}, + [6037] = {.lex_state = 95, .external_lex_state = 2}, + [6038] = {.lex_state = 95, .external_lex_state = 2}, + [6039] = {.lex_state = 95, .external_lex_state = 2}, + [6040] = {.lex_state = 95, .external_lex_state = 2}, + [6041] = {.lex_state = 95, .external_lex_state = 2}, + [6042] = {.lex_state = 95, .external_lex_state = 2}, + [6043] = {.lex_state = 95, .external_lex_state = 2}, + [6044] = {.lex_state = 95, .external_lex_state = 2}, + [6045] = {.lex_state = 95, .external_lex_state = 2}, + [6046] = {.lex_state = 95, .external_lex_state = 2}, + [6047] = {.lex_state = 95, .external_lex_state = 2}, + [6048] = {.lex_state = 95, .external_lex_state = 2}, + [6049] = {.lex_state = 95, .external_lex_state = 2}, + [6050] = {.lex_state = 95, .external_lex_state = 2}, + [6051] = {.lex_state = 95, .external_lex_state = 2}, + [6052] = {.lex_state = 95, .external_lex_state = 2}, + [6053] = {.lex_state = 95, .external_lex_state = 2}, + [6054] = {.lex_state = 95, .external_lex_state = 2}, + [6055] = {.lex_state = 95, .external_lex_state = 2}, + [6056] = {.lex_state = 95, .external_lex_state = 2}, + [6057] = {.lex_state = 95, .external_lex_state = 2}, + [6058] = {.lex_state = 95, .external_lex_state = 2}, + [6059] = {.lex_state = 95, .external_lex_state = 2}, + [6060] = {.lex_state = 95, .external_lex_state = 2}, + [6061] = {.lex_state = 95, .external_lex_state = 2}, + [6062] = {.lex_state = 95, .external_lex_state = 2}, + [6063] = {.lex_state = 95, .external_lex_state = 2}, + [6064] = {.lex_state = 95, .external_lex_state = 5}, + [6065] = {.lex_state = 95, .external_lex_state = 2}, + [6066] = {.lex_state = 95, .external_lex_state = 2}, + [6067] = {.lex_state = 95, .external_lex_state = 2}, + [6068] = {.lex_state = 95, .external_lex_state = 2}, + [6069] = {.lex_state = 95, .external_lex_state = 2}, + [6070] = {.lex_state = 95, .external_lex_state = 2}, + [6071] = {.lex_state = 95, .external_lex_state = 2}, + [6072] = {.lex_state = 95, .external_lex_state = 2}, + [6073] = {.lex_state = 95, .external_lex_state = 2}, + [6074] = {.lex_state = 95, .external_lex_state = 2}, + [6075] = {.lex_state = 95, .external_lex_state = 2}, + [6076] = {.lex_state = 95, .external_lex_state = 2}, + [6077] = {.lex_state = 95, .external_lex_state = 2}, + [6078] = {.lex_state = 95, .external_lex_state = 2}, + [6079] = {.lex_state = 95, .external_lex_state = 2}, + [6080] = {.lex_state = 95, .external_lex_state = 2}, + [6081] = {.lex_state = 95, .external_lex_state = 2}, + [6082] = {.lex_state = 95, .external_lex_state = 2}, + [6083] = {.lex_state = 95, .external_lex_state = 2}, + [6084] = {.lex_state = 95, .external_lex_state = 2}, + [6085] = {.lex_state = 95, .external_lex_state = 2}, + [6086] = {.lex_state = 95, .external_lex_state = 2}, + [6087] = {.lex_state = 95, .external_lex_state = 2}, + [6088] = {.lex_state = 95, .external_lex_state = 2}, + [6089] = {.lex_state = 95, .external_lex_state = 2}, + [6090] = {.lex_state = 95, .external_lex_state = 2}, + [6091] = {.lex_state = 95, .external_lex_state = 2}, + [6092] = {.lex_state = 95, .external_lex_state = 2}, + [6093] = {.lex_state = 95, .external_lex_state = 2}, + [6094] = {.lex_state = 95, .external_lex_state = 2}, + [6095] = {.lex_state = 95, .external_lex_state = 2}, + [6096] = {.lex_state = 95, .external_lex_state = 2}, + [6097] = {.lex_state = 95, .external_lex_state = 2}, + [6098] = {.lex_state = 95, .external_lex_state = 2}, + [6099] = {.lex_state = 95, .external_lex_state = 5}, + [6100] = {.lex_state = 95, .external_lex_state = 2}, + [6101] = {.lex_state = 95, .external_lex_state = 2}, + [6102] = {.lex_state = 95, .external_lex_state = 2}, + [6103] = {.lex_state = 95, .external_lex_state = 2}, + [6104] = {.lex_state = 95, .external_lex_state = 2}, + [6105] = {.lex_state = 95, .external_lex_state = 2}, + [6106] = {.lex_state = 95, .external_lex_state = 2}, + [6107] = {.lex_state = 95, .external_lex_state = 2}, + [6108] = {.lex_state = 95, .external_lex_state = 2}, + [6109] = {.lex_state = 95, .external_lex_state = 2}, + [6110] = {.lex_state = 95, .external_lex_state = 2}, + [6111] = {.lex_state = 95, .external_lex_state = 2}, + [6112] = {.lex_state = 95, .external_lex_state = 2}, + [6113] = {.lex_state = 95, .external_lex_state = 2}, + [6114] = {.lex_state = 95, .external_lex_state = 2}, + [6115] = {.lex_state = 95, .external_lex_state = 2}, + [6116] = {.lex_state = 95, .external_lex_state = 2}, + [6117] = {.lex_state = 95, .external_lex_state = 2}, + [6118] = {.lex_state = 95, .external_lex_state = 2}, + [6119] = {.lex_state = 95, .external_lex_state = 2}, + [6120] = {.lex_state = 95, .external_lex_state = 2}, + [6121] = {.lex_state = 95, .external_lex_state = 2}, + [6122] = {.lex_state = 95, .external_lex_state = 2}, + [6123] = {.lex_state = 95, .external_lex_state = 2}, + [6124] = {.lex_state = 95, .external_lex_state = 2}, + [6125] = {.lex_state = 95, .external_lex_state = 2}, + [6126] = {.lex_state = 95, .external_lex_state = 2}, + [6127] = {.lex_state = 95, .external_lex_state = 2}, + [6128] = {.lex_state = 95, .external_lex_state = 2}, + [6129] = {.lex_state = 95, .external_lex_state = 2}, + [6130] = {.lex_state = 95, .external_lex_state = 2}, + [6131] = {.lex_state = 95, .external_lex_state = 2}, + [6132] = {.lex_state = 95, .external_lex_state = 2}, + [6133] = {.lex_state = 95, .external_lex_state = 2}, + [6134] = {.lex_state = 95, .external_lex_state = 2}, + [6135] = {.lex_state = 95, .external_lex_state = 2}, + [6136] = {.lex_state = 95, .external_lex_state = 2}, + [6137] = {.lex_state = 95, .external_lex_state = 2}, + [6138] = {.lex_state = 95, .external_lex_state = 2}, + [6139] = {.lex_state = 95, .external_lex_state = 2}, + [6140] = {.lex_state = 95, .external_lex_state = 2}, + [6141] = {.lex_state = 95, .external_lex_state = 2}, + [6142] = {.lex_state = 95, .external_lex_state = 2}, + [6143] = {.lex_state = 95, .external_lex_state = 2}, + [6144] = {.lex_state = 95, .external_lex_state = 2}, + [6145] = {.lex_state = 95, .external_lex_state = 2}, + [6146] = {.lex_state = 95, .external_lex_state = 2}, + [6147] = {.lex_state = 95, .external_lex_state = 2}, + [6148] = {.lex_state = 95, .external_lex_state = 2}, + [6149] = {.lex_state = 95, .external_lex_state = 2}, + [6150] = {.lex_state = 95, .external_lex_state = 2}, + [6151] = {.lex_state = 95, .external_lex_state = 2}, + [6152] = {.lex_state = 95, .external_lex_state = 2}, + [6153] = {.lex_state = 95, .external_lex_state = 2}, + [6154] = {.lex_state = 95, .external_lex_state = 2}, + [6155] = {.lex_state = 95, .external_lex_state = 2}, + [6156] = {.lex_state = 95, .external_lex_state = 2}, + [6157] = {.lex_state = 95, .external_lex_state = 2}, + [6158] = {.lex_state = 95, .external_lex_state = 2}, + [6159] = {.lex_state = 95, .external_lex_state = 2}, + [6160] = {.lex_state = 95, .external_lex_state = 2}, + [6161] = {.lex_state = 95, .external_lex_state = 2}, + [6162] = {.lex_state = 95, .external_lex_state = 2}, + [6163] = {.lex_state = 95, .external_lex_state = 2}, + [6164] = {.lex_state = 95, .external_lex_state = 2}, + [6165] = {.lex_state = 95, .external_lex_state = 2}, + [6166] = {.lex_state = 95, .external_lex_state = 2}, + [6167] = {.lex_state = 95, .external_lex_state = 2}, + [6168] = {.lex_state = 95, .external_lex_state = 2}, + [6169] = {.lex_state = 95, .external_lex_state = 2}, + [6170] = {.lex_state = 95, .external_lex_state = 2}, + [6171] = {.lex_state = 95, .external_lex_state = 2}, + [6172] = {.lex_state = 95, .external_lex_state = 2}, + [6173] = {.lex_state = 95, .external_lex_state = 2}, + [6174] = {.lex_state = 95, .external_lex_state = 2}, + [6175] = {.lex_state = 95, .external_lex_state = 2}, + [6176] = {.lex_state = 95, .external_lex_state = 2}, + [6177] = {.lex_state = 95, .external_lex_state = 2}, + [6178] = {.lex_state = 95, .external_lex_state = 2}, + [6179] = {.lex_state = 95, .external_lex_state = 2}, + [6180] = {.lex_state = 95, .external_lex_state = 2}, + [6181] = {.lex_state = 95, .external_lex_state = 2}, + [6182] = {.lex_state = 95, .external_lex_state = 2}, + [6183] = {.lex_state = 95, .external_lex_state = 2}, + [6184] = {.lex_state = 95, .external_lex_state = 2}, + [6185] = {.lex_state = 95, .external_lex_state = 2}, + [6186] = {.lex_state = 95, .external_lex_state = 2}, + [6187] = {.lex_state = 95, .external_lex_state = 2}, + [6188] = {.lex_state = 95, .external_lex_state = 2}, + [6189] = {.lex_state = 95, .external_lex_state = 2}, + [6190] = {.lex_state = 95, .external_lex_state = 2}, + [6191] = {.lex_state = 95, .external_lex_state = 2}, + [6192] = {.lex_state = 95, .external_lex_state = 2}, + [6193] = {.lex_state = 95, .external_lex_state = 2}, + [6194] = {.lex_state = 95, .external_lex_state = 2}, + [6195] = {.lex_state = 95, .external_lex_state = 2}, + [6196] = {.lex_state = 95, .external_lex_state = 2}, + [6197] = {.lex_state = 95, .external_lex_state = 2}, + [6198] = {.lex_state = 95, .external_lex_state = 2}, + [6199] = {.lex_state = 95, .external_lex_state = 2}, + [6200] = {.lex_state = 95, .external_lex_state = 2}, + [6201] = {.lex_state = 95, .external_lex_state = 2}, + [6202] = {.lex_state = 95, .external_lex_state = 2}, + [6203] = {.lex_state = 95, .external_lex_state = 2}, + [6204] = {.lex_state = 95, .external_lex_state = 2}, + [6205] = {.lex_state = 95, .external_lex_state = 2}, + [6206] = {.lex_state = 95, .external_lex_state = 2}, + [6207] = {.lex_state = 95, .external_lex_state = 2}, + [6208] = {.lex_state = 95, .external_lex_state = 2}, + [6209] = {.lex_state = 95, .external_lex_state = 2}, + [6210] = {.lex_state = 95, .external_lex_state = 2}, + [6211] = {.lex_state = 95, .external_lex_state = 2}, + [6212] = {.lex_state = 95, .external_lex_state = 2}, + [6213] = {.lex_state = 95, .external_lex_state = 2}, + [6214] = {.lex_state = 95, .external_lex_state = 2}, + [6215] = {.lex_state = 95, .external_lex_state = 2}, + [6216] = {.lex_state = 95, .external_lex_state = 2}, + [6217] = {.lex_state = 95, .external_lex_state = 2}, + [6218] = {.lex_state = 95, .external_lex_state = 2}, + [6219] = {.lex_state = 95, .external_lex_state = 2}, + [6220] = {.lex_state = 95, .external_lex_state = 2}, + [6221] = {.lex_state = 95, .external_lex_state = 2}, + [6222] = {.lex_state = 95, .external_lex_state = 2}, + [6223] = {.lex_state = 95, .external_lex_state = 2}, + [6224] = {.lex_state = 95, .external_lex_state = 2}, + [6225] = {.lex_state = 95, .external_lex_state = 2}, + [6226] = {.lex_state = 95, .external_lex_state = 2}, + [6227] = {.lex_state = 95, .external_lex_state = 5}, + [6228] = {.lex_state = 95, .external_lex_state = 2}, + [6229] = {.lex_state = 95, .external_lex_state = 2}, + [6230] = {.lex_state = 95, .external_lex_state = 2}, + [6231] = {.lex_state = 95, .external_lex_state = 2}, + [6232] = {.lex_state = 95, .external_lex_state = 2}, + [6233] = {.lex_state = 95, .external_lex_state = 5}, + [6234] = {.lex_state = 95, .external_lex_state = 5}, + [6235] = {.lex_state = 95, .external_lex_state = 2}, + [6236] = {.lex_state = 95, .external_lex_state = 2}, + [6237] = {.lex_state = 95, .external_lex_state = 2}, + [6238] = {.lex_state = 95, .external_lex_state = 2}, + [6239] = {.lex_state = 95, .external_lex_state = 2}, + [6240] = {.lex_state = 95, .external_lex_state = 2}, + [6241] = {.lex_state = 95, .external_lex_state = 2}, + [6242] = {.lex_state = 95, .external_lex_state = 2}, + [6243] = {.lex_state = 95, .external_lex_state = 2}, + [6244] = {.lex_state = 95, .external_lex_state = 2}, + [6245] = {.lex_state = 95, .external_lex_state = 2}, + [6246] = {.lex_state = 95, .external_lex_state = 2}, + [6247] = {.lex_state = 95, .external_lex_state = 2}, + [6248] = {.lex_state = 95, .external_lex_state = 2}, + [6249] = {.lex_state = 95, .external_lex_state = 2}, + [6250] = {.lex_state = 95, .external_lex_state = 2}, + [6251] = {.lex_state = 95, .external_lex_state = 2}, + [6252] = {.lex_state = 95, .external_lex_state = 2}, + [6253] = {.lex_state = 95, .external_lex_state = 2}, + [6254] = {.lex_state = 95, .external_lex_state = 2}, + [6255] = {.lex_state = 95, .external_lex_state = 2}, + [6256] = {.lex_state = 95, .external_lex_state = 2}, + [6257] = {.lex_state = 95, .external_lex_state = 2}, + [6258] = {.lex_state = 95, .external_lex_state = 2}, + [6259] = {.lex_state = 95, .external_lex_state = 2}, + [6260] = {.lex_state = 95, .external_lex_state = 2}, + [6261] = {.lex_state = 95, .external_lex_state = 2}, + [6262] = {.lex_state = 95, .external_lex_state = 2}, + [6263] = {.lex_state = 95, .external_lex_state = 2}, + [6264] = {.lex_state = 95, .external_lex_state = 2}, + [6265] = {.lex_state = 95, .external_lex_state = 2}, + [6266] = {.lex_state = 95, .external_lex_state = 2}, + [6267] = {.lex_state = 95, .external_lex_state = 2}, + [6268] = {.lex_state = 95, .external_lex_state = 2}, + [6269] = {.lex_state = 95, .external_lex_state = 2}, + [6270] = {.lex_state = 95, .external_lex_state = 2}, + [6271] = {.lex_state = 95, .external_lex_state = 2}, + [6272] = {.lex_state = 95, .external_lex_state = 2}, + [6273] = {.lex_state = 95, .external_lex_state = 2}, + [6274] = {.lex_state = 95, .external_lex_state = 2}, + [6275] = {.lex_state = 95, .external_lex_state = 2}, + [6276] = {.lex_state = 95, .external_lex_state = 2}, + [6277] = {.lex_state = 95, .external_lex_state = 2}, + [6278] = {.lex_state = 95, .external_lex_state = 2}, + [6279] = {.lex_state = 95, .external_lex_state = 2}, + [6280] = {.lex_state = 95, .external_lex_state = 2}, + [6281] = {.lex_state = 95, .external_lex_state = 2}, + [6282] = {.lex_state = 95, .external_lex_state = 2}, + [6283] = {.lex_state = 95, .external_lex_state = 2}, + [6284] = {.lex_state = 95, .external_lex_state = 2}, + [6285] = {.lex_state = 95, .external_lex_state = 2}, + [6286] = {.lex_state = 95, .external_lex_state = 5}, + [6287] = {.lex_state = 95, .external_lex_state = 2}, + [6288] = {.lex_state = 95, .external_lex_state = 2}, + [6289] = {.lex_state = 95, .external_lex_state = 5}, + [6290] = {.lex_state = 95, .external_lex_state = 2}, + [6291] = {.lex_state = 95, .external_lex_state = 2}, + [6292] = {.lex_state = 95, .external_lex_state = 2}, + [6293] = {.lex_state = 95, .external_lex_state = 2}, + [6294] = {.lex_state = 95, .external_lex_state = 2}, + [6295] = {.lex_state = 95, .external_lex_state = 2}, + [6296] = {.lex_state = 95, .external_lex_state = 2}, + [6297] = {.lex_state = 95, .external_lex_state = 2}, + [6298] = {.lex_state = 95, .external_lex_state = 2}, + [6299] = {.lex_state = 95, .external_lex_state = 2}, + [6300] = {.lex_state = 95, .external_lex_state = 2}, + [6301] = {.lex_state = 95, .external_lex_state = 2}, + [6302] = {.lex_state = 95, .external_lex_state = 2}, + [6303] = {.lex_state = 95, .external_lex_state = 2}, + [6304] = {.lex_state = 95, .external_lex_state = 2}, + [6305] = {.lex_state = 95, .external_lex_state = 2}, + [6306] = {.lex_state = 95, .external_lex_state = 2}, + [6307] = {.lex_state = 95, .external_lex_state = 2}, + [6308] = {.lex_state = 95, .external_lex_state = 2}, + [6309] = {.lex_state = 95, .external_lex_state = 2}, + [6310] = {.lex_state = 95, .external_lex_state = 2}, + [6311] = {.lex_state = 95, .external_lex_state = 5}, + [6312] = {.lex_state = 95, .external_lex_state = 2}, + [6313] = {.lex_state = 95, .external_lex_state = 2}, + [6314] = {.lex_state = 95, .external_lex_state = 2}, + [6315] = {.lex_state = 95, .external_lex_state = 5}, + [6316] = {.lex_state = 95, .external_lex_state = 2}, + [6317] = {.lex_state = 95, .external_lex_state = 2}, + [6318] = {.lex_state = 95, .external_lex_state = 2}, + [6319] = {.lex_state = 95, .external_lex_state = 2}, + [6320] = {.lex_state = 95, .external_lex_state = 2}, + [6321] = {.lex_state = 95, .external_lex_state = 2}, + [6322] = {.lex_state = 95, .external_lex_state = 2}, + [6323] = {.lex_state = 95, .external_lex_state = 2}, + [6324] = {.lex_state = 95, .external_lex_state = 2}, + [6325] = {.lex_state = 95, .external_lex_state = 2}, + [6326] = {.lex_state = 95, .external_lex_state = 2}, + [6327] = {.lex_state = 95, .external_lex_state = 5}, + [6328] = {.lex_state = 95, .external_lex_state = 5}, + [6329] = {.lex_state = 95, .external_lex_state = 5}, + [6330] = {.lex_state = 95, .external_lex_state = 2}, + [6331] = {.lex_state = 95, .external_lex_state = 2}, + [6332] = {.lex_state = 95, .external_lex_state = 2}, + [6333] = {.lex_state = 95, .external_lex_state = 2}, + [6334] = {.lex_state = 95, .external_lex_state = 2}, + [6335] = {.lex_state = 95, .external_lex_state = 2}, + [6336] = {.lex_state = 95, .external_lex_state = 2}, + [6337] = {.lex_state = 95, .external_lex_state = 2}, + [6338] = {.lex_state = 95, .external_lex_state = 2}, + [6339] = {.lex_state = 95, .external_lex_state = 2}, + [6340] = {.lex_state = 95, .external_lex_state = 5}, + [6341] = {.lex_state = 95, .external_lex_state = 2}, + [6342] = {.lex_state = 95, .external_lex_state = 2}, + [6343] = {.lex_state = 95, .external_lex_state = 2}, + [6344] = {.lex_state = 95, .external_lex_state = 2}, + [6345] = {.lex_state = 95, .external_lex_state = 2}, + [6346] = {.lex_state = 95, .external_lex_state = 2}, + [6347] = {.lex_state = 95, .external_lex_state = 2}, + [6348] = {.lex_state = 95, .external_lex_state = 5}, + [6349] = {.lex_state = 95, .external_lex_state = 2}, + [6350] = {.lex_state = 95, .external_lex_state = 2}, + [6351] = {.lex_state = 95, .external_lex_state = 2}, + [6352] = {.lex_state = 95, .external_lex_state = 2}, + [6353] = {.lex_state = 95, .external_lex_state = 2}, + [6354] = {.lex_state = 95, .external_lex_state = 2}, + [6355] = {.lex_state = 95, .external_lex_state = 2}, + [6356] = {.lex_state = 95, .external_lex_state = 2}, + [6357] = {.lex_state = 95, .external_lex_state = 2}, + [6358] = {.lex_state = 95, .external_lex_state = 2}, + [6359] = {.lex_state = 95, .external_lex_state = 2}, + [6360] = {.lex_state = 95, .external_lex_state = 2}, + [6361] = {.lex_state = 95, .external_lex_state = 2}, + [6362] = {.lex_state = 95, .external_lex_state = 2}, + [6363] = {.lex_state = 95, .external_lex_state = 2}, + [6364] = {.lex_state = 95, .external_lex_state = 2}, + [6365] = {.lex_state = 95, .external_lex_state = 2}, + [6366] = {.lex_state = 95, .external_lex_state = 2}, + [6367] = {.lex_state = 95, .external_lex_state = 2}, + [6368] = {.lex_state = 95, .external_lex_state = 2}, + [6369] = {.lex_state = 95, .external_lex_state = 2}, + [6370] = {.lex_state = 95, .external_lex_state = 2}, + [6371] = {.lex_state = 95, .external_lex_state = 2}, + [6372] = {.lex_state = 95, .external_lex_state = 2}, + [6373] = {.lex_state = 95, .external_lex_state = 2}, + [6374] = {.lex_state = 95, .external_lex_state = 2}, + [6375] = {.lex_state = 95, .external_lex_state = 2}, + [6376] = {.lex_state = 95, .external_lex_state = 2}, + [6377] = {.lex_state = 95, .external_lex_state = 2}, + [6378] = {.lex_state = 95, .external_lex_state = 2}, + [6379] = {.lex_state = 95, .external_lex_state = 2}, + [6380] = {.lex_state = 95, .external_lex_state = 2}, + [6381] = {.lex_state = 95, .external_lex_state = 2}, + [6382] = {.lex_state = 95, .external_lex_state = 2}, + [6383] = {.lex_state = 95, .external_lex_state = 2}, + [6384] = {.lex_state = 95, .external_lex_state = 2}, + [6385] = {.lex_state = 95, .external_lex_state = 2}, + [6386] = {.lex_state = 95, .external_lex_state = 2}, + [6387] = {.lex_state = 95, .external_lex_state = 2}, + [6388] = {.lex_state = 95, .external_lex_state = 2}, + [6389] = {.lex_state = 95, .external_lex_state = 2}, + [6390] = {.lex_state = 95, .external_lex_state = 2}, + [6391] = {.lex_state = 95, .external_lex_state = 2}, + [6392] = {.lex_state = 95, .external_lex_state = 2}, + [6393] = {.lex_state = 95, .external_lex_state = 2}, + [6394] = {.lex_state = 95, .external_lex_state = 2}, + [6395] = {.lex_state = 95, .external_lex_state = 2}, + [6396] = {.lex_state = 95, .external_lex_state = 2}, + [6397] = {.lex_state = 95, .external_lex_state = 2}, + [6398] = {.lex_state = 95, .external_lex_state = 2}, + [6399] = {.lex_state = 95, .external_lex_state = 2}, + [6400] = {.lex_state = 95, .external_lex_state = 2}, + [6401] = {.lex_state = 95, .external_lex_state = 2}, + [6402] = {.lex_state = 95, .external_lex_state = 2}, + [6403] = {.lex_state = 95, .external_lex_state = 2}, + [6404] = {.lex_state = 95, .external_lex_state = 2}, + [6405] = {.lex_state = 95, .external_lex_state = 2}, + [6406] = {.lex_state = 95, .external_lex_state = 2}, + [6407] = {.lex_state = 95, .external_lex_state = 2}, + [6408] = {.lex_state = 95, .external_lex_state = 2}, + [6409] = {.lex_state = 95, .external_lex_state = 2}, + [6410] = {.lex_state = 95, .external_lex_state = 2}, + [6411] = {.lex_state = 95, .external_lex_state = 2}, + [6412] = {.lex_state = 95, .external_lex_state = 2}, + [6413] = {.lex_state = 95, .external_lex_state = 2}, + [6414] = {.lex_state = 95, .external_lex_state = 2}, + [6415] = {.lex_state = 95, .external_lex_state = 2}, + [6416] = {.lex_state = 95, .external_lex_state = 2}, + [6417] = {.lex_state = 95, .external_lex_state = 2}, + [6418] = {.lex_state = 95, .external_lex_state = 2}, + [6419] = {.lex_state = 95, .external_lex_state = 2}, + [6420] = {.lex_state = 95, .external_lex_state = 2}, + [6421] = {.lex_state = 95, .external_lex_state = 2}, + [6422] = {.lex_state = 95, .external_lex_state = 2}, + [6423] = {.lex_state = 95, .external_lex_state = 2}, + [6424] = {.lex_state = 95, .external_lex_state = 2}, + [6425] = {.lex_state = 95, .external_lex_state = 2}, + [6426] = {.lex_state = 95, .external_lex_state = 2}, + [6427] = {.lex_state = 95, .external_lex_state = 2}, + [6428] = {.lex_state = 95, .external_lex_state = 2}, + [6429] = {.lex_state = 95, .external_lex_state = 2}, + [6430] = {.lex_state = 95, .external_lex_state = 2}, + [6431] = {.lex_state = 95, .external_lex_state = 2}, + [6432] = {.lex_state = 95, .external_lex_state = 2}, + [6433] = {.lex_state = 95, .external_lex_state = 2}, + [6434] = {.lex_state = 95, .external_lex_state = 2}, + [6435] = {.lex_state = 95, .external_lex_state = 2}, + [6436] = {.lex_state = 95, .external_lex_state = 2}, + [6437] = {.lex_state = 95, .external_lex_state = 2}, + [6438] = {.lex_state = 95, .external_lex_state = 2}, + [6439] = {.lex_state = 95, .external_lex_state = 2}, + [6440] = {.lex_state = 95, .external_lex_state = 2}, + [6441] = {.lex_state = 95, .external_lex_state = 2}, + [6442] = {.lex_state = 95, .external_lex_state = 2}, + [6443] = {.lex_state = 95, .external_lex_state = 2}, + [6444] = {.lex_state = 95, .external_lex_state = 2}, + [6445] = {.lex_state = 95, .external_lex_state = 2}, + [6446] = {.lex_state = 95, .external_lex_state = 2}, + [6447] = {.lex_state = 95, .external_lex_state = 2}, + [6448] = {.lex_state = 95, .external_lex_state = 2}, + [6449] = {.lex_state = 95, .external_lex_state = 2}, + [6450] = {.lex_state = 95, .external_lex_state = 2}, + [6451] = {.lex_state = 95, .external_lex_state = 2}, + [6452] = {.lex_state = 95, .external_lex_state = 2}, + [6453] = {.lex_state = 95, .external_lex_state = 2}, + [6454] = {.lex_state = 95, .external_lex_state = 2}, + [6455] = {.lex_state = 95, .external_lex_state = 2}, + [6456] = {.lex_state = 95, .external_lex_state = 2}, + [6457] = {.lex_state = 95, .external_lex_state = 2}, + [6458] = {.lex_state = 95, .external_lex_state = 2}, + [6459] = {.lex_state = 95, .external_lex_state = 2}, + [6460] = {.lex_state = 95, .external_lex_state = 2}, + [6461] = {.lex_state = 95, .external_lex_state = 2}, + [6462] = {.lex_state = 95, .external_lex_state = 2}, + [6463] = {.lex_state = 95, .external_lex_state = 2}, + [6464] = {.lex_state = 95, .external_lex_state = 2}, + [6465] = {.lex_state = 95, .external_lex_state = 2}, + [6466] = {.lex_state = 95, .external_lex_state = 2}, + [6467] = {.lex_state = 95, .external_lex_state = 2}, + [6468] = {.lex_state = 95, .external_lex_state = 2}, + [6469] = {.lex_state = 95, .external_lex_state = 2}, + [6470] = {.lex_state = 95, .external_lex_state = 2}, + [6471] = {.lex_state = 95, .external_lex_state = 2}, + [6472] = {.lex_state = 95, .external_lex_state = 2}, + [6473] = {.lex_state = 95, .external_lex_state = 2}, + [6474] = {.lex_state = 95, .external_lex_state = 2}, + [6475] = {.lex_state = 95, .external_lex_state = 2}, + [6476] = {.lex_state = 95, .external_lex_state = 2}, + [6477] = {.lex_state = 95, .external_lex_state = 2}, + [6478] = {.lex_state = 95, .external_lex_state = 2}, + [6479] = {.lex_state = 95, .external_lex_state = 2}, + [6480] = {.lex_state = 95, .external_lex_state = 2}, + [6481] = {.lex_state = 95, .external_lex_state = 2}, + [6482] = {.lex_state = 95, .external_lex_state = 2}, + [6483] = {.lex_state = 95, .external_lex_state = 2}, + [6484] = {.lex_state = 95, .external_lex_state = 2}, + [6485] = {.lex_state = 95, .external_lex_state = 2}, + [6486] = {.lex_state = 95, .external_lex_state = 2}, + [6487] = {.lex_state = 95, .external_lex_state = 2}, + [6488] = {.lex_state = 95, .external_lex_state = 2}, + [6489] = {.lex_state = 95, .external_lex_state = 2}, + [6490] = {.lex_state = 95, .external_lex_state = 2}, + [6491] = {.lex_state = 95, .external_lex_state = 2}, + [6492] = {.lex_state = 95, .external_lex_state = 2}, + [6493] = {.lex_state = 95, .external_lex_state = 2}, + [6494] = {.lex_state = 95, .external_lex_state = 2}, + [6495] = {.lex_state = 95, .external_lex_state = 2}, + [6496] = {.lex_state = 95, .external_lex_state = 2}, + [6497] = {.lex_state = 95, .external_lex_state = 2}, + [6498] = {.lex_state = 95, .external_lex_state = 2}, + [6499] = {.lex_state = 95, .external_lex_state = 2}, + [6500] = {.lex_state = 95, .external_lex_state = 2}, + [6501] = {.lex_state = 95, .external_lex_state = 2}, + [6502] = {.lex_state = 95, .external_lex_state = 2}, + [6503] = {.lex_state = 95, .external_lex_state = 2}, + [6504] = {.lex_state = 95, .external_lex_state = 2}, + [6505] = {.lex_state = 95, .external_lex_state = 2}, + [6506] = {.lex_state = 95, .external_lex_state = 2}, + [6507] = {.lex_state = 95, .external_lex_state = 2}, + [6508] = {.lex_state = 95, .external_lex_state = 2}, + [6509] = {.lex_state = 95, .external_lex_state = 2}, + [6510] = {.lex_state = 95, .external_lex_state = 2}, + [6511] = {.lex_state = 95, .external_lex_state = 2}, + [6512] = {.lex_state = 95, .external_lex_state = 2}, + [6513] = {.lex_state = 95, .external_lex_state = 2}, + [6514] = {.lex_state = 95, .external_lex_state = 2}, + [6515] = {.lex_state = 95, .external_lex_state = 2}, + [6516] = {.lex_state = 95, .external_lex_state = 2}, + [6517] = {.lex_state = 95, .external_lex_state = 2}, + [6518] = {.lex_state = 95, .external_lex_state = 2}, + [6519] = {.lex_state = 95, .external_lex_state = 2}, + [6520] = {.lex_state = 95, .external_lex_state = 2}, + [6521] = {.lex_state = 95, .external_lex_state = 2}, + [6522] = {.lex_state = 95, .external_lex_state = 2}, + [6523] = {.lex_state = 95, .external_lex_state = 2}, + [6524] = {.lex_state = 95, .external_lex_state = 2}, + [6525] = {.lex_state = 95, .external_lex_state = 2}, + [6526] = {.lex_state = 95, .external_lex_state = 2}, + [6527] = {.lex_state = 95, .external_lex_state = 2}, + [6528] = {.lex_state = 95, .external_lex_state = 2}, + [6529] = {.lex_state = 95, .external_lex_state = 2}, + [6530] = {.lex_state = 95, .external_lex_state = 2}, + [6531] = {.lex_state = 95, .external_lex_state = 2}, + [6532] = {.lex_state = 95, .external_lex_state = 2}, + [6533] = {.lex_state = 95, .external_lex_state = 2}, + [6534] = {.lex_state = 95, .external_lex_state = 2}, + [6535] = {.lex_state = 95, .external_lex_state = 2}, + [6536] = {.lex_state = 95, .external_lex_state = 2}, + [6537] = {.lex_state = 95, .external_lex_state = 2}, + [6538] = {.lex_state = 95, .external_lex_state = 2}, + [6539] = {.lex_state = 95, .external_lex_state = 2}, + [6540] = {.lex_state = 95, .external_lex_state = 2}, + [6541] = {.lex_state = 95, .external_lex_state = 2}, + [6542] = {.lex_state = 95, .external_lex_state = 2}, + [6543] = {.lex_state = 95, .external_lex_state = 2}, + [6544] = {.lex_state = 95, .external_lex_state = 2}, + [6545] = {.lex_state = 95, .external_lex_state = 2}, + [6546] = {.lex_state = 95, .external_lex_state = 2}, + [6547] = {.lex_state = 95, .external_lex_state = 2}, + [6548] = {.lex_state = 95, .external_lex_state = 2}, + [6549] = {.lex_state = 95, .external_lex_state = 2}, + [6550] = {.lex_state = 95, .external_lex_state = 2}, + [6551] = {.lex_state = 95, .external_lex_state = 2}, + [6552] = {.lex_state = 95, .external_lex_state = 2}, + [6553] = {.lex_state = 95, .external_lex_state = 2}, + [6554] = {.lex_state = 95, .external_lex_state = 2}, + [6555] = {.lex_state = 95, .external_lex_state = 5}, + [6556] = {.lex_state = 95, .external_lex_state = 2}, + [6557] = {.lex_state = 95, .external_lex_state = 2}, + [6558] = {.lex_state = 95, .external_lex_state = 2}, + [6559] = {.lex_state = 95, .external_lex_state = 2}, + [6560] = {.lex_state = 95, .external_lex_state = 2}, + [6561] = {.lex_state = 95, .external_lex_state = 2}, + [6562] = {.lex_state = 95, .external_lex_state = 2}, + [6563] = {.lex_state = 95, .external_lex_state = 2}, + [6564] = {.lex_state = 95, .external_lex_state = 2}, + [6565] = {.lex_state = 95, .external_lex_state = 2}, + [6566] = {.lex_state = 95, .external_lex_state = 2}, + [6567] = {.lex_state = 95, .external_lex_state = 2}, + [6568] = {.lex_state = 95, .external_lex_state = 2}, + [6569] = {.lex_state = 95, .external_lex_state = 2}, + [6570] = {.lex_state = 95, .external_lex_state = 2}, + [6571] = {.lex_state = 95, .external_lex_state = 2}, + [6572] = {.lex_state = 95, .external_lex_state = 2}, + [6573] = {.lex_state = 95, .external_lex_state = 2}, + [6574] = {.lex_state = 95, .external_lex_state = 2}, + [6575] = {.lex_state = 95, .external_lex_state = 2}, + [6576] = {.lex_state = 95, .external_lex_state = 2}, + [6577] = {.lex_state = 95, .external_lex_state = 2}, + [6578] = {.lex_state = 95, .external_lex_state = 2}, + [6579] = {.lex_state = 95, .external_lex_state = 2}, + [6580] = {.lex_state = 95, .external_lex_state = 2}, + [6581] = {.lex_state = 95, .external_lex_state = 2}, + [6582] = {.lex_state = 95, .external_lex_state = 2}, + [6583] = {.lex_state = 95, .external_lex_state = 2}, + [6584] = {.lex_state = 95, .external_lex_state = 2}, + [6585] = {.lex_state = 95, .external_lex_state = 2}, + [6586] = {.lex_state = 95, .external_lex_state = 2}, + [6587] = {.lex_state = 95, .external_lex_state = 2}, + [6588] = {.lex_state = 95, .external_lex_state = 2}, + [6589] = {.lex_state = 95, .external_lex_state = 5}, + [6590] = {.lex_state = 95, .external_lex_state = 2}, + [6591] = {.lex_state = 95, .external_lex_state = 5}, + [6592] = {.lex_state = 95, .external_lex_state = 2}, + [6593] = {.lex_state = 95, .external_lex_state = 2}, + [6594] = {.lex_state = 95, .external_lex_state = 2}, + [6595] = {.lex_state = 95, .external_lex_state = 2}, + [6596] = {.lex_state = 95, .external_lex_state = 2}, + [6597] = {.lex_state = 95, .external_lex_state = 2}, + [6598] = {.lex_state = 95, .external_lex_state = 2}, + [6599] = {.lex_state = 95, .external_lex_state = 2}, + [6600] = {.lex_state = 95, .external_lex_state = 2}, + [6601] = {.lex_state = 95, .external_lex_state = 2}, + [6602] = {.lex_state = 95, .external_lex_state = 2}, + [6603] = {.lex_state = 95, .external_lex_state = 2}, + [6604] = {.lex_state = 95, .external_lex_state = 2}, + [6605] = {.lex_state = 95, .external_lex_state = 2}, + [6606] = {.lex_state = 95, .external_lex_state = 2}, + [6607] = {.lex_state = 95, .external_lex_state = 2}, + [6608] = {.lex_state = 95, .external_lex_state = 2}, + [6609] = {.lex_state = 95, .external_lex_state = 2}, + [6610] = {.lex_state = 95, .external_lex_state = 2}, + [6611] = {.lex_state = 95, .external_lex_state = 2}, + [6612] = {.lex_state = 95, .external_lex_state = 2}, + [6613] = {.lex_state = 95, .external_lex_state = 2}, + [6614] = {.lex_state = 95, .external_lex_state = 2}, + [6615] = {.lex_state = 95, .external_lex_state = 2}, + [6616] = {.lex_state = 95, .external_lex_state = 2}, + [6617] = {.lex_state = 95, .external_lex_state = 2}, + [6618] = {.lex_state = 95, .external_lex_state = 2}, + [6619] = {.lex_state = 95, .external_lex_state = 2}, + [6620] = {.lex_state = 95, .external_lex_state = 2}, + [6621] = {.lex_state = 95, .external_lex_state = 2}, + [6622] = {.lex_state = 95, .external_lex_state = 2}, + [6623] = {.lex_state = 95, .external_lex_state = 2}, + [6624] = {.lex_state = 95, .external_lex_state = 2}, + [6625] = {.lex_state = 95, .external_lex_state = 2}, + [6626] = {.lex_state = 95, .external_lex_state = 2}, + [6627] = {.lex_state = 95, .external_lex_state = 2}, + [6628] = {.lex_state = 95, .external_lex_state = 2}, + [6629] = {.lex_state = 95, .external_lex_state = 2}, + [6630] = {.lex_state = 95, .external_lex_state = 2}, + [6631] = {.lex_state = 95, .external_lex_state = 2}, + [6632] = {.lex_state = 95, .external_lex_state = 2}, + [6633] = {.lex_state = 95, .external_lex_state = 2}, + [6634] = {.lex_state = 95, .external_lex_state = 2}, + [6635] = {.lex_state = 95, .external_lex_state = 2}, + [6636] = {.lex_state = 95, .external_lex_state = 2}, + [6637] = {.lex_state = 95, .external_lex_state = 2}, + [6638] = {.lex_state = 95, .external_lex_state = 2}, + [6639] = {.lex_state = 95, .external_lex_state = 2}, + [6640] = {.lex_state = 95, .external_lex_state = 2}, + [6641] = {.lex_state = 95, .external_lex_state = 2}, + [6642] = {.lex_state = 95, .external_lex_state = 2}, + [6643] = {.lex_state = 95, .external_lex_state = 2}, + [6644] = {.lex_state = 95, .external_lex_state = 2}, + [6645] = {.lex_state = 95, .external_lex_state = 2}, + [6646] = {.lex_state = 95, .external_lex_state = 2}, + [6647] = {.lex_state = 95, .external_lex_state = 2}, + [6648] = {.lex_state = 95, .external_lex_state = 2}, + [6649] = {.lex_state = 95, .external_lex_state = 2}, + [6650] = {.lex_state = 95, .external_lex_state = 2}, + [6651] = {.lex_state = 95, .external_lex_state = 2}, + [6652] = {.lex_state = 95, .external_lex_state = 2}, + [6653] = {.lex_state = 95, .external_lex_state = 2}, + [6654] = {.lex_state = 95, .external_lex_state = 2}, + [6655] = {.lex_state = 95, .external_lex_state = 2}, + [6656] = {.lex_state = 95, .external_lex_state = 2}, + [6657] = {.lex_state = 95, .external_lex_state = 2}, + [6658] = {.lex_state = 95, .external_lex_state = 2}, + [6659] = {.lex_state = 95, .external_lex_state = 2}, + [6660] = {.lex_state = 95, .external_lex_state = 2}, + [6661] = {.lex_state = 95, .external_lex_state = 2}, + [6662] = {.lex_state = 95, .external_lex_state = 2}, + [6663] = {.lex_state = 95, .external_lex_state = 2}, + [6664] = {.lex_state = 95, .external_lex_state = 2}, + [6665] = {.lex_state = 95, .external_lex_state = 2}, + [6666] = {.lex_state = 95, .external_lex_state = 2}, + [6667] = {.lex_state = 95, .external_lex_state = 2}, + [6668] = {.lex_state = 95, .external_lex_state = 2}, + [6669] = {.lex_state = 95, .external_lex_state = 2}, + [6670] = {.lex_state = 95, .external_lex_state = 2}, + [6671] = {.lex_state = 95, .external_lex_state = 2}, + [6672] = {.lex_state = 95, .external_lex_state = 2}, + [6673] = {.lex_state = 95, .external_lex_state = 2}, + [6674] = {.lex_state = 95, .external_lex_state = 2}, + [6675] = {.lex_state = 95, .external_lex_state = 2}, + [6676] = {.lex_state = 95, .external_lex_state = 2}, + [6677] = {.lex_state = 95, .external_lex_state = 2}, + [6678] = {.lex_state = 95, .external_lex_state = 2}, + [6679] = {.lex_state = 95, .external_lex_state = 2}, + [6680] = {.lex_state = 95, .external_lex_state = 2}, + [6681] = {.lex_state = 95, .external_lex_state = 2}, + [6682] = {.lex_state = 95, .external_lex_state = 2}, + [6683] = {.lex_state = 95, .external_lex_state = 2}, + [6684] = {.lex_state = 95, .external_lex_state = 2}, + [6685] = {.lex_state = 95, .external_lex_state = 2}, + [6686] = {.lex_state = 95, .external_lex_state = 2}, + [6687] = {.lex_state = 95, .external_lex_state = 2}, + [6688] = {.lex_state = 95, .external_lex_state = 2}, + [6689] = {.lex_state = 95, .external_lex_state = 2}, + [6690] = {.lex_state = 95, .external_lex_state = 2}, + [6691] = {.lex_state = 95, .external_lex_state = 2}, + [6692] = {.lex_state = 95, .external_lex_state = 2}, + [6693] = {.lex_state = 95, .external_lex_state = 2}, + [6694] = {.lex_state = 95, .external_lex_state = 2}, + [6695] = {.lex_state = 95, .external_lex_state = 2}, + [6696] = {.lex_state = 95, .external_lex_state = 2}, + [6697] = {.lex_state = 95, .external_lex_state = 2}, + [6698] = {.lex_state = 95, .external_lex_state = 2}, + [6699] = {.lex_state = 95, .external_lex_state = 2}, + [6700] = {.lex_state = 95, .external_lex_state = 2}, + [6701] = {.lex_state = 95, .external_lex_state = 2}, + [6702] = {.lex_state = 95, .external_lex_state = 2}, + [6703] = {.lex_state = 95, .external_lex_state = 2}, + [6704] = {.lex_state = 95, .external_lex_state = 2}, + [6705] = {.lex_state = 95, .external_lex_state = 2}, + [6706] = {.lex_state = 95, .external_lex_state = 2}, + [6707] = {.lex_state = 95, .external_lex_state = 2}, + [6708] = {.lex_state = 95, .external_lex_state = 2}, + [6709] = {.lex_state = 95, .external_lex_state = 2}, + [6710] = {.lex_state = 95, .external_lex_state = 2}, + [6711] = {.lex_state = 95, .external_lex_state = 2}, + [6712] = {.lex_state = 95, .external_lex_state = 2}, + [6713] = {.lex_state = 95, .external_lex_state = 2}, + [6714] = {.lex_state = 95, .external_lex_state = 2}, + [6715] = {.lex_state = 95, .external_lex_state = 2}, + [6716] = {.lex_state = 95, .external_lex_state = 2}, + [6717] = {.lex_state = 95, .external_lex_state = 2}, + [6718] = {.lex_state = 95, .external_lex_state = 2}, + [6719] = {.lex_state = 95, .external_lex_state = 2}, + [6720] = {.lex_state = 95, .external_lex_state = 2}, + [6721] = {.lex_state = 95, .external_lex_state = 2}, + [6722] = {.lex_state = 95, .external_lex_state = 2}, + [6723] = {.lex_state = 95, .external_lex_state = 2}, + [6724] = {.lex_state = 95, .external_lex_state = 2}, + [6725] = {.lex_state = 95, .external_lex_state = 2}, + [6726] = {.lex_state = 95, .external_lex_state = 2}, + [6727] = {.lex_state = 95, .external_lex_state = 2}, + [6728] = {.lex_state = 95, .external_lex_state = 2}, + [6729] = {.lex_state = 95, .external_lex_state = 2}, + [6730] = {.lex_state = 95, .external_lex_state = 5}, + [6731] = {.lex_state = 95, .external_lex_state = 2}, + [6732] = {.lex_state = 95, .external_lex_state = 2}, + [6733] = {.lex_state = 95, .external_lex_state = 2}, + [6734] = {.lex_state = 95, .external_lex_state = 2}, + [6735] = {.lex_state = 95, .external_lex_state = 2}, + [6736] = {.lex_state = 95, .external_lex_state = 2}, + [6737] = {.lex_state = 95, .external_lex_state = 2}, + [6738] = {.lex_state = 95, .external_lex_state = 2}, + [6739] = {.lex_state = 95, .external_lex_state = 2}, + [6740] = {.lex_state = 95, .external_lex_state = 2}, + [6741] = {.lex_state = 95, .external_lex_state = 2}, + [6742] = {.lex_state = 95, .external_lex_state = 5}, + [6743] = {.lex_state = 95, .external_lex_state = 2}, + [6744] = {.lex_state = 95, .external_lex_state = 2}, + [6745] = {.lex_state = 95, .external_lex_state = 2}, + [6746] = {.lex_state = 95, .external_lex_state = 2}, + [6747] = {.lex_state = 95, .external_lex_state = 2}, + [6748] = {.lex_state = 95, .external_lex_state = 2}, + [6749] = {.lex_state = 95, .external_lex_state = 2}, + [6750] = {.lex_state = 95, .external_lex_state = 2}, + [6751] = {.lex_state = 95, .external_lex_state = 2}, + [6752] = {.lex_state = 95, .external_lex_state = 2}, + [6753] = {.lex_state = 95, .external_lex_state = 2}, + [6754] = {.lex_state = 95, .external_lex_state = 2}, + [6755] = {.lex_state = 95, .external_lex_state = 2}, + [6756] = {.lex_state = 95, .external_lex_state = 2}, + [6757] = {.lex_state = 95, .external_lex_state = 2}, + [6758] = {.lex_state = 95, .external_lex_state = 2}, + [6759] = {.lex_state = 95, .external_lex_state = 2}, + [6760] = {.lex_state = 95, .external_lex_state = 2}, + [6761] = {.lex_state = 95, .external_lex_state = 2}, + [6762] = {.lex_state = 95, .external_lex_state = 2}, + [6763] = {.lex_state = 95, .external_lex_state = 2}, + [6764] = {.lex_state = 95, .external_lex_state = 2}, + [6765] = {.lex_state = 95, .external_lex_state = 2}, + [6766] = {.lex_state = 95, .external_lex_state = 2}, + [6767] = {.lex_state = 95, .external_lex_state = 2}, + [6768] = {.lex_state = 95, .external_lex_state = 2}, + [6769] = {.lex_state = 95, .external_lex_state = 2}, + [6770] = {.lex_state = 95, .external_lex_state = 2}, + [6771] = {.lex_state = 95, .external_lex_state = 2}, + [6772] = {.lex_state = 95, .external_lex_state = 2}, + [6773] = {.lex_state = 95, .external_lex_state = 2}, + [6774] = {.lex_state = 95, .external_lex_state = 2}, + [6775] = {.lex_state = 95, .external_lex_state = 2}, + [6776] = {.lex_state = 95, .external_lex_state = 2}, + [6777] = {.lex_state = 95, .external_lex_state = 2}, + [6778] = {.lex_state = 95, .external_lex_state = 2}, + [6779] = {.lex_state = 95, .external_lex_state = 2}, + [6780] = {.lex_state = 95, .external_lex_state = 2}, + [6781] = {.lex_state = 95, .external_lex_state = 2}, + [6782] = {.lex_state = 95, .external_lex_state = 2}, + [6783] = {.lex_state = 95, .external_lex_state = 2}, + [6784] = {.lex_state = 95, .external_lex_state = 2}, + [6785] = {.lex_state = 95, .external_lex_state = 2}, + [6786] = {.lex_state = 95, .external_lex_state = 2}, + [6787] = {.lex_state = 95, .external_lex_state = 2}, + [6788] = {.lex_state = 95, .external_lex_state = 2}, + [6789] = {.lex_state = 95, .external_lex_state = 2}, + [6790] = {.lex_state = 95, .external_lex_state = 2}, + [6791] = {.lex_state = 95, .external_lex_state = 2}, + [6792] = {.lex_state = 95, .external_lex_state = 2}, + [6793] = {.lex_state = 95, .external_lex_state = 2}, + [6794] = {.lex_state = 95, .external_lex_state = 2}, + [6795] = {.lex_state = 95, .external_lex_state = 2}, + [6796] = {.lex_state = 95, .external_lex_state = 2}, + [6797] = {.lex_state = 95, .external_lex_state = 2}, + [6798] = {.lex_state = 95, .external_lex_state = 2}, + [6799] = {.lex_state = 95, .external_lex_state = 2}, + [6800] = {.lex_state = 95, .external_lex_state = 2}, + [6801] = {.lex_state = 95, .external_lex_state = 2}, + [6802] = {.lex_state = 95, .external_lex_state = 2}, + [6803] = {.lex_state = 95, .external_lex_state = 2}, + [6804] = {.lex_state = 95, .external_lex_state = 2}, + [6805] = {.lex_state = 95, .external_lex_state = 2}, + [6806] = {.lex_state = 95, .external_lex_state = 2}, + [6807] = {.lex_state = 95, .external_lex_state = 2}, + [6808] = {.lex_state = 95, .external_lex_state = 2}, + [6809] = {.lex_state = 95, .external_lex_state = 2}, + [6810] = {.lex_state = 95, .external_lex_state = 2}, + [6811] = {.lex_state = 95, .external_lex_state = 2}, + [6812] = {.lex_state = 95, .external_lex_state = 2}, + [6813] = {.lex_state = 95, .external_lex_state = 2}, + [6814] = {.lex_state = 95, .external_lex_state = 2}, + [6815] = {.lex_state = 95, .external_lex_state = 2}, + [6816] = {.lex_state = 95, .external_lex_state = 2}, + [6817] = {.lex_state = 95, .external_lex_state = 2}, + [6818] = {.lex_state = 95, .external_lex_state = 2}, + [6819] = {.lex_state = 95, .external_lex_state = 2}, + [6820] = {.lex_state = 95, .external_lex_state = 2}, + [6821] = {.lex_state = 95, .external_lex_state = 2}, + [6822] = {.lex_state = 95, .external_lex_state = 2}, + [6823] = {.lex_state = 95, .external_lex_state = 2}, + [6824] = {.lex_state = 95, .external_lex_state = 2}, + [6825] = {.lex_state = 95, .external_lex_state = 2}, + [6826] = {.lex_state = 95, .external_lex_state = 2}, + [6827] = {.lex_state = 95, .external_lex_state = 2}, + [6828] = {.lex_state = 95, .external_lex_state = 2}, + [6829] = {.lex_state = 95, .external_lex_state = 2}, + [6830] = {.lex_state = 95, .external_lex_state = 2}, + [6831] = {.lex_state = 95, .external_lex_state = 2}, + [6832] = {.lex_state = 95, .external_lex_state = 2}, + [6833] = {.lex_state = 95, .external_lex_state = 2}, + [6834] = {.lex_state = 95, .external_lex_state = 2}, + [6835] = {.lex_state = 95, .external_lex_state = 2}, + [6836] = {.lex_state = 95, .external_lex_state = 2}, + [6837] = {.lex_state = 95, .external_lex_state = 2}, + [6838] = {.lex_state = 95, .external_lex_state = 2}, + [6839] = {.lex_state = 95, .external_lex_state = 2}, + [6840] = {.lex_state = 95, .external_lex_state = 2}, + [6841] = {.lex_state = 95, .external_lex_state = 2}, + [6842] = {.lex_state = 95, .external_lex_state = 2}, + [6843] = {.lex_state = 95, .external_lex_state = 2}, + [6844] = {.lex_state = 95, .external_lex_state = 2}, + [6845] = {.lex_state = 95, .external_lex_state = 2}, + [6846] = {.lex_state = 95, .external_lex_state = 2}, + [6847] = {.lex_state = 95, .external_lex_state = 2}, + [6848] = {.lex_state = 95, .external_lex_state = 2}, + [6849] = {.lex_state = 95, .external_lex_state = 2}, + [6850] = {.lex_state = 95, .external_lex_state = 5}, + [6851] = {.lex_state = 95, .external_lex_state = 5}, + [6852] = {.lex_state = 95, .external_lex_state = 2}, + [6853] = {.lex_state = 95, .external_lex_state = 2}, + [6854] = {.lex_state = 95, .external_lex_state = 2}, + [6855] = {.lex_state = 95, .external_lex_state = 2}, + [6856] = {.lex_state = 95, .external_lex_state = 2}, + [6857] = {.lex_state = 95, .external_lex_state = 2}, + [6858] = {.lex_state = 95, .external_lex_state = 2}, + [6859] = {.lex_state = 95, .external_lex_state = 2}, + [6860] = {.lex_state = 95, .external_lex_state = 2}, + [6861] = {.lex_state = 95, .external_lex_state = 2}, + [6862] = {.lex_state = 95, .external_lex_state = 2}, + [6863] = {.lex_state = 95, .external_lex_state = 2}, + [6864] = {.lex_state = 95, .external_lex_state = 2}, + [6865] = {.lex_state = 95, .external_lex_state = 2}, + [6866] = {.lex_state = 95, .external_lex_state = 2}, + [6867] = {.lex_state = 95, .external_lex_state = 2}, + [6868] = {.lex_state = 95, .external_lex_state = 2}, + [6869] = {.lex_state = 95, .external_lex_state = 2}, + [6870] = {.lex_state = 95, .external_lex_state = 2}, + [6871] = {.lex_state = 95, .external_lex_state = 5}, + [6872] = {.lex_state = 95, .external_lex_state = 2}, + [6873] = {.lex_state = 95, .external_lex_state = 2}, + [6874] = {.lex_state = 95, .external_lex_state = 2}, + [6875] = {.lex_state = 95, .external_lex_state = 5}, + [6876] = {.lex_state = 95, .external_lex_state = 5}, + [6877] = {.lex_state = 95, .external_lex_state = 2}, + [6878] = {.lex_state = 95, .external_lex_state = 2}, + [6879] = {.lex_state = 95, .external_lex_state = 2}, + [6880] = {.lex_state = 95, .external_lex_state = 2}, + [6881] = {.lex_state = 95, .external_lex_state = 2}, + [6882] = {.lex_state = 95, .external_lex_state = 2}, + [6883] = {.lex_state = 95, .external_lex_state = 2}, + [6884] = {.lex_state = 95, .external_lex_state = 2}, + [6885] = {.lex_state = 95, .external_lex_state = 2}, + [6886] = {.lex_state = 95, .external_lex_state = 2}, + [6887] = {.lex_state = 95, .external_lex_state = 2}, + [6888] = {.lex_state = 95, .external_lex_state = 2}, + [6889] = {.lex_state = 95, .external_lex_state = 2}, + [6890] = {.lex_state = 95, .external_lex_state = 2}, + [6891] = {.lex_state = 95, .external_lex_state = 2}, + [6892] = {.lex_state = 95, .external_lex_state = 2}, + [6893] = {.lex_state = 95, .external_lex_state = 2}, + [6894] = {.lex_state = 95, .external_lex_state = 2}, + [6895] = {.lex_state = 95, .external_lex_state = 2}, + [6896] = {.lex_state = 95, .external_lex_state = 2}, + [6897] = {.lex_state = 95, .external_lex_state = 2}, + [6898] = {.lex_state = 95, .external_lex_state = 2}, + [6899] = {.lex_state = 95, .external_lex_state = 2}, + [6900] = {.lex_state = 95, .external_lex_state = 2}, + [6901] = {.lex_state = 95, .external_lex_state = 2}, + [6902] = {.lex_state = 95, .external_lex_state = 2}, + [6903] = {.lex_state = 95, .external_lex_state = 2}, + [6904] = {.lex_state = 95, .external_lex_state = 2}, + [6905] = {.lex_state = 95, .external_lex_state = 2}, + [6906] = {.lex_state = 95, .external_lex_state = 2}, + [6907] = {.lex_state = 95, .external_lex_state = 2}, + [6908] = {.lex_state = 95, .external_lex_state = 2}, + [6909] = {.lex_state = 95, .external_lex_state = 2}, + [6910] = {.lex_state = 95, .external_lex_state = 2}, + [6911] = {.lex_state = 95, .external_lex_state = 2}, + [6912] = {.lex_state = 95, .external_lex_state = 2}, + [6913] = {.lex_state = 95, .external_lex_state = 2}, + [6914] = {.lex_state = 95, .external_lex_state = 2}, + [6915] = {.lex_state = 95, .external_lex_state = 2}, + [6916] = {.lex_state = 95, .external_lex_state = 2}, + [6917] = {.lex_state = 95, .external_lex_state = 2}, + [6918] = {.lex_state = 95, .external_lex_state = 2}, + [6919] = {.lex_state = 95, .external_lex_state = 2}, + [6920] = {.lex_state = 95, .external_lex_state = 2}, + [6921] = {.lex_state = 95, .external_lex_state = 2}, + [6922] = {.lex_state = 95, .external_lex_state = 2}, + [6923] = {.lex_state = 95, .external_lex_state = 2}, + [6924] = {.lex_state = 95, .external_lex_state = 2}, + [6925] = {.lex_state = 95, .external_lex_state = 2}, + [6926] = {.lex_state = 95, .external_lex_state = 2}, + [6927] = {.lex_state = 95, .external_lex_state = 2}, + [6928] = {.lex_state = 95, .external_lex_state = 2}, + [6929] = {.lex_state = 95, .external_lex_state = 2}, + [6930] = {.lex_state = 95, .external_lex_state = 2}, + [6931] = {.lex_state = 95, .external_lex_state = 2}, + [6932] = {.lex_state = 95, .external_lex_state = 2}, + [6933] = {.lex_state = 95, .external_lex_state = 2}, + [6934] = {.lex_state = 95, .external_lex_state = 2}, + [6935] = {.lex_state = 95, .external_lex_state = 2}, + [6936] = {.lex_state = 95, .external_lex_state = 2}, + [6937] = {.lex_state = 95, .external_lex_state = 2}, + [6938] = {.lex_state = 95, .external_lex_state = 2}, + [6939] = {.lex_state = 95, .external_lex_state = 2}, + [6940] = {.lex_state = 95, .external_lex_state = 2}, + [6941] = {.lex_state = 95, .external_lex_state = 2}, + [6942] = {.lex_state = 95, .external_lex_state = 2}, + [6943] = {.lex_state = 95, .external_lex_state = 2}, + [6944] = {.lex_state = 95, .external_lex_state = 2}, + [6945] = {.lex_state = 95, .external_lex_state = 2}, + [6946] = {.lex_state = 95, .external_lex_state = 2}, + [6947] = {.lex_state = 95, .external_lex_state = 5}, + [6948] = {.lex_state = 95, .external_lex_state = 5}, + [6949] = {.lex_state = 95, .external_lex_state = 2}, + [6950] = {.lex_state = 95, .external_lex_state = 2}, + [6951] = {.lex_state = 95, .external_lex_state = 2}, + [6952] = {.lex_state = 95, .external_lex_state = 2}, + [6953] = {.lex_state = 95, .external_lex_state = 2}, + [6954] = {.lex_state = 95, .external_lex_state = 2}, + [6955] = {.lex_state = 95, .external_lex_state = 2}, + [6956] = {.lex_state = 95, .external_lex_state = 2}, + [6957] = {.lex_state = 95, .external_lex_state = 2}, + [6958] = {.lex_state = 95, .external_lex_state = 2}, + [6959] = {.lex_state = 95, .external_lex_state = 2}, + [6960] = {.lex_state = 95, .external_lex_state = 2}, + [6961] = {.lex_state = 95, .external_lex_state = 2}, + [6962] = {.lex_state = 95, .external_lex_state = 2}, + [6963] = {.lex_state = 95, .external_lex_state = 2}, + [6964] = {.lex_state = 95, .external_lex_state = 2}, + [6965] = {.lex_state = 95, .external_lex_state = 5}, + [6966] = {.lex_state = 95, .external_lex_state = 2}, + [6967] = {.lex_state = 95, .external_lex_state = 2}, + [6968] = {.lex_state = 95, .external_lex_state = 2}, + [6969] = {.lex_state = 95, .external_lex_state = 2}, + [6970] = {.lex_state = 95, .external_lex_state = 2}, + [6971] = {.lex_state = 95, .external_lex_state = 2}, + [6972] = {.lex_state = 95, .external_lex_state = 2}, + [6973] = {.lex_state = 95, .external_lex_state = 2}, + [6974] = {.lex_state = 95, .external_lex_state = 5}, + [6975] = {.lex_state = 95, .external_lex_state = 2}, + [6976] = {.lex_state = 95, .external_lex_state = 2}, + [6977] = {.lex_state = 95, .external_lex_state = 2}, + [6978] = {.lex_state = 95, .external_lex_state = 2}, + [6979] = {.lex_state = 95, .external_lex_state = 2}, + [6980] = {.lex_state = 95, .external_lex_state = 2}, + [6981] = {.lex_state = 95, .external_lex_state = 2}, + [6982] = {.lex_state = 95, .external_lex_state = 2}, + [6983] = {.lex_state = 95, .external_lex_state = 2}, + [6984] = {.lex_state = 95, .external_lex_state = 2}, + [6985] = {.lex_state = 95, .external_lex_state = 2}, + [6986] = {.lex_state = 95, .external_lex_state = 2}, + [6987] = {.lex_state = 95, .external_lex_state = 2}, + [6988] = {.lex_state = 95, .external_lex_state = 2}, + [6989] = {.lex_state = 95, .external_lex_state = 2}, + [6990] = {.lex_state = 95, .external_lex_state = 2}, + [6991] = {.lex_state = 95, .external_lex_state = 2}, + [6992] = {.lex_state = 95, .external_lex_state = 2}, + [6993] = {.lex_state = 95, .external_lex_state = 2}, + [6994] = {.lex_state = 95, .external_lex_state = 2}, + [6995] = {.lex_state = 95, .external_lex_state = 2}, + [6996] = {.lex_state = 95, .external_lex_state = 2}, + [6997] = {.lex_state = 95, .external_lex_state = 2}, + [6998] = {.lex_state = 95, .external_lex_state = 2}, + [6999] = {.lex_state = 95, .external_lex_state = 2}, + [7000] = {.lex_state = 95, .external_lex_state = 2}, + [7001] = {.lex_state = 95, .external_lex_state = 2}, + [7002] = {.lex_state = 95, .external_lex_state = 2}, + [7003] = {.lex_state = 95, .external_lex_state = 2}, + [7004] = {.lex_state = 95, .external_lex_state = 2}, + [7005] = {.lex_state = 95, .external_lex_state = 2}, + [7006] = {.lex_state = 95, .external_lex_state = 2}, + [7007] = {.lex_state = 95, .external_lex_state = 2}, + [7008] = {.lex_state = 95, .external_lex_state = 2}, + [7009] = {.lex_state = 95, .external_lex_state = 2}, + [7010] = {.lex_state = 95, .external_lex_state = 2}, + [7011] = {.lex_state = 95, .external_lex_state = 2}, + [7012] = {.lex_state = 95, .external_lex_state = 2}, + [7013] = {.lex_state = 95, .external_lex_state = 2}, + [7014] = {.lex_state = 95, .external_lex_state = 2}, + [7015] = {.lex_state = 95, .external_lex_state = 2}, + [7016] = {.lex_state = 95, .external_lex_state = 2}, + [7017] = {.lex_state = 95, .external_lex_state = 2}, + [7018] = {.lex_state = 95, .external_lex_state = 2}, + [7019] = {.lex_state = 95, .external_lex_state = 2}, + [7020] = {.lex_state = 95, .external_lex_state = 2}, + [7021] = {.lex_state = 95, .external_lex_state = 2}, + [7022] = {.lex_state = 95, .external_lex_state = 2}, + [7023] = {.lex_state = 95, .external_lex_state = 2}, + [7024] = {.lex_state = 95, .external_lex_state = 2}, + [7025] = {.lex_state = 95, .external_lex_state = 2}, + [7026] = {.lex_state = 95, .external_lex_state = 2}, + [7027] = {.lex_state = 95, .external_lex_state = 2}, + [7028] = {.lex_state = 95, .external_lex_state = 2}, + [7029] = {.lex_state = 95, .external_lex_state = 2}, + [7030] = {.lex_state = 95, .external_lex_state = 2}, + [7031] = {.lex_state = 95, .external_lex_state = 2}, + [7032] = {.lex_state = 95, .external_lex_state = 2}, + [7033] = {.lex_state = 95, .external_lex_state = 2}, + [7034] = {.lex_state = 95, .external_lex_state = 2}, + [7035] = {.lex_state = 95, .external_lex_state = 2}, + [7036] = {.lex_state = 95, .external_lex_state = 2}, + [7037] = {.lex_state = 95, .external_lex_state = 2}, + [7038] = {.lex_state = 95, .external_lex_state = 2}, + [7039] = {.lex_state = 95, .external_lex_state = 2}, + [7040] = {.lex_state = 95, .external_lex_state = 2}, + [7041] = {.lex_state = 95, .external_lex_state = 2}, + [7042] = {.lex_state = 95, .external_lex_state = 2}, + [7043] = {.lex_state = 95, .external_lex_state = 2}, + [7044] = {.lex_state = 95, .external_lex_state = 2}, + [7045] = {.lex_state = 95, .external_lex_state = 2}, + [7046] = {.lex_state = 95, .external_lex_state = 2}, + [7047] = {.lex_state = 95, .external_lex_state = 2}, + [7048] = {.lex_state = 95, .external_lex_state = 2}, + [7049] = {.lex_state = 95, .external_lex_state = 2}, + [7050] = {.lex_state = 95, .external_lex_state = 2}, + [7051] = {.lex_state = 95, .external_lex_state = 2}, + [7052] = {.lex_state = 95, .external_lex_state = 2}, + [7053] = {.lex_state = 95, .external_lex_state = 2}, + [7054] = {.lex_state = 95, .external_lex_state = 2}, + [7055] = {.lex_state = 95, .external_lex_state = 2}, + [7056] = {.lex_state = 95, .external_lex_state = 2}, + [7057] = {.lex_state = 95, .external_lex_state = 2}, + [7058] = {.lex_state = 95, .external_lex_state = 2}, + [7059] = {.lex_state = 95, .external_lex_state = 2}, + [7060] = {.lex_state = 95, .external_lex_state = 2}, + [7061] = {.lex_state = 95, .external_lex_state = 2}, + [7062] = {.lex_state = 95, .external_lex_state = 2}, + [7063] = {.lex_state = 95, .external_lex_state = 2}, + [7064] = {.lex_state = 95, .external_lex_state = 2}, + [7065] = {.lex_state = 95, .external_lex_state = 2}, + [7066] = {.lex_state = 95, .external_lex_state = 2}, + [7067] = {.lex_state = 95, .external_lex_state = 2}, + [7068] = {.lex_state = 95, .external_lex_state = 2}, + [7069] = {.lex_state = 95, .external_lex_state = 2}, + [7070] = {.lex_state = 95, .external_lex_state = 2}, + [7071] = {.lex_state = 95, .external_lex_state = 2}, + [7072] = {.lex_state = 95, .external_lex_state = 2}, + [7073] = {.lex_state = 95, .external_lex_state = 2}, + [7074] = {.lex_state = 95, .external_lex_state = 2}, + [7075] = {.lex_state = 95, .external_lex_state = 2}, + [7076] = {.lex_state = 95, .external_lex_state = 2}, + [7077] = {.lex_state = 95, .external_lex_state = 2}, + [7078] = {.lex_state = 95, .external_lex_state = 2}, + [7079] = {.lex_state = 95, .external_lex_state = 2}, + [7080] = {.lex_state = 95, .external_lex_state = 2}, + [7081] = {.lex_state = 95, .external_lex_state = 2}, + [7082] = {.lex_state = 95, .external_lex_state = 2}, + [7083] = {.lex_state = 95, .external_lex_state = 2}, + [7084] = {.lex_state = 95, .external_lex_state = 2}, + [7085] = {.lex_state = 95, .external_lex_state = 2}, + [7086] = {.lex_state = 95, .external_lex_state = 2}, + [7087] = {.lex_state = 95, .external_lex_state = 2}, + [7088] = {.lex_state = 95, .external_lex_state = 2}, + [7089] = {.lex_state = 95, .external_lex_state = 2}, + [7090] = {.lex_state = 95, .external_lex_state = 2}, + [7091] = {.lex_state = 95, .external_lex_state = 2}, + [7092] = {.lex_state = 95, .external_lex_state = 2}, + [7093] = {.lex_state = 95, .external_lex_state = 2}, + [7094] = {.lex_state = 95, .external_lex_state = 2}, + [7095] = {.lex_state = 95, .external_lex_state = 2}, + [7096] = {.lex_state = 95, .external_lex_state = 2}, + [7097] = {.lex_state = 95, .external_lex_state = 2}, + [7098] = {.lex_state = 95, .external_lex_state = 2}, + [7099] = {.lex_state = 95, .external_lex_state = 2}, + [7100] = {.lex_state = 95, .external_lex_state = 2}, + [7101] = {.lex_state = 95, .external_lex_state = 2}, + [7102] = {.lex_state = 95, .external_lex_state = 2}, + [7103] = {.lex_state = 95, .external_lex_state = 2}, + [7104] = {.lex_state = 95, .external_lex_state = 2}, + [7105] = {.lex_state = 95, .external_lex_state = 2}, + [7106] = {.lex_state = 95, .external_lex_state = 2}, + [7107] = {.lex_state = 95, .external_lex_state = 2}, + [7108] = {.lex_state = 95, .external_lex_state = 2}, + [7109] = {.lex_state = 95, .external_lex_state = 2}, + [7110] = {.lex_state = 95, .external_lex_state = 2}, + [7111] = {.lex_state = 95, .external_lex_state = 2}, + [7112] = {.lex_state = 95, .external_lex_state = 2}, + [7113] = {.lex_state = 95, .external_lex_state = 2}, + [7114] = {.lex_state = 95, .external_lex_state = 2}, + [7115] = {.lex_state = 95, .external_lex_state = 2}, + [7116] = {.lex_state = 95, .external_lex_state = 2}, + [7117] = {.lex_state = 95, .external_lex_state = 2}, + [7118] = {.lex_state = 95, .external_lex_state = 2}, + [7119] = {.lex_state = 95, .external_lex_state = 2}, + [7120] = {.lex_state = 95, .external_lex_state = 2}, + [7121] = {.lex_state = 95, .external_lex_state = 2}, + [7122] = {.lex_state = 95, .external_lex_state = 2}, + [7123] = {.lex_state = 2, .external_lex_state = 10}, + [7124] = {.lex_state = 95, .external_lex_state = 2}, + [7125] = {.lex_state = 95, .external_lex_state = 2}, + [7126] = {.lex_state = 95, .external_lex_state = 2}, + [7127] = {.lex_state = 95, .external_lex_state = 2}, + [7128] = {.lex_state = 95, .external_lex_state = 2}, + [7129] = {.lex_state = 95, .external_lex_state = 2}, + [7130] = {.lex_state = 95, .external_lex_state = 2}, + [7131] = {.lex_state = 95, .external_lex_state = 2}, + [7132] = {.lex_state = 95, .external_lex_state = 2}, + [7133] = {.lex_state = 95, .external_lex_state = 2}, + [7134] = {.lex_state = 95, .external_lex_state = 2}, + [7135] = {.lex_state = 95, .external_lex_state = 2}, + [7136] = {.lex_state = 95, .external_lex_state = 2}, + [7137] = {.lex_state = 95, .external_lex_state = 2}, + [7138] = {.lex_state = 95, .external_lex_state = 2}, + [7139] = {.lex_state = 95, .external_lex_state = 2}, + [7140] = {.lex_state = 95, .external_lex_state = 2}, + [7141] = {.lex_state = 95, .external_lex_state = 2}, + [7142] = {.lex_state = 95, .external_lex_state = 2}, + [7143] = {.lex_state = 95, .external_lex_state = 2}, + [7144] = {.lex_state = 95, .external_lex_state = 2}, + [7145] = {.lex_state = 95, .external_lex_state = 2}, + [7146] = {.lex_state = 95, .external_lex_state = 2}, + [7147] = {.lex_state = 95, .external_lex_state = 2}, + [7148] = {.lex_state = 95, .external_lex_state = 2}, + [7149] = {.lex_state = 95, .external_lex_state = 2}, + [7150] = {.lex_state = 95, .external_lex_state = 2}, + [7151] = {.lex_state = 95, .external_lex_state = 2}, + [7152] = {.lex_state = 95, .external_lex_state = 2}, + [7153] = {.lex_state = 95, .external_lex_state = 2}, + [7154] = {.lex_state = 95, .external_lex_state = 2}, + [7155] = {.lex_state = 95, .external_lex_state = 2}, + [7156] = {.lex_state = 95, .external_lex_state = 2}, + [7157] = {.lex_state = 2, .external_lex_state = 10}, + [7158] = {.lex_state = 95, .external_lex_state = 2}, + [7159] = {.lex_state = 95, .external_lex_state = 2}, + [7160] = {.lex_state = 95, .external_lex_state = 2}, + [7161] = {.lex_state = 95, .external_lex_state = 2}, + [7162] = {.lex_state = 95, .external_lex_state = 2}, + [7163] = {.lex_state = 95, .external_lex_state = 2}, + [7164] = {.lex_state = 95, .external_lex_state = 2}, + [7165] = {.lex_state = 95, .external_lex_state = 2}, + [7166] = {.lex_state = 95, .external_lex_state = 2}, + [7167] = {.lex_state = 95, .external_lex_state = 2}, + [7168] = {.lex_state = 95, .external_lex_state = 2}, + [7169] = {.lex_state = 95, .external_lex_state = 2}, + [7170] = {.lex_state = 95, .external_lex_state = 2}, + [7171] = {.lex_state = 95, .external_lex_state = 2}, + [7172] = {.lex_state = 95, .external_lex_state = 2}, + [7173] = {.lex_state = 95, .external_lex_state = 2}, + [7174] = {.lex_state = 95, .external_lex_state = 2}, + [7175] = {.lex_state = 95, .external_lex_state = 2}, + [7176] = {.lex_state = 95, .external_lex_state = 2}, + [7177] = {.lex_state = 95, .external_lex_state = 2}, + [7178] = {.lex_state = 95, .external_lex_state = 2}, + [7179] = {.lex_state = 95, .external_lex_state = 2}, + [7180] = {.lex_state = 95, .external_lex_state = 2}, + [7181] = {.lex_state = 95, .external_lex_state = 2}, + [7182] = {.lex_state = 95, .external_lex_state = 2}, + [7183] = {.lex_state = 95, .external_lex_state = 2}, + [7184] = {.lex_state = 95, .external_lex_state = 2}, + [7185] = {.lex_state = 27, .external_lex_state = 2}, + [7186] = {.lex_state = 95, .external_lex_state = 2}, + [7187] = {.lex_state = 95, .external_lex_state = 2}, + [7188] = {.lex_state = 95, .external_lex_state = 2}, + [7189] = {.lex_state = 95, .external_lex_state = 2}, + [7190] = {.lex_state = 95, .external_lex_state = 2}, + [7191] = {.lex_state = 95, .external_lex_state = 2}, + [7192] = {.lex_state = 95, .external_lex_state = 2}, + [7193] = {.lex_state = 95, .external_lex_state = 2}, + [7194] = {.lex_state = 95, .external_lex_state = 2}, + [7195] = {.lex_state = 95, .external_lex_state = 2}, + [7196] = {.lex_state = 2, .external_lex_state = 10}, + [7197] = {.lex_state = 95, .external_lex_state = 2}, + [7198] = {.lex_state = 95, .external_lex_state = 2}, + [7199] = {.lex_state = 95, .external_lex_state = 2}, + [7200] = {.lex_state = 95, .external_lex_state = 2}, + [7201] = {.lex_state = 95, .external_lex_state = 2}, + [7202] = {.lex_state = 95, .external_lex_state = 2}, + [7203] = {.lex_state = 95, .external_lex_state = 2}, + [7204] = {.lex_state = 95, .external_lex_state = 2}, + [7205] = {.lex_state = 95, .external_lex_state = 2}, + [7206] = {.lex_state = 95, .external_lex_state = 2}, + [7207] = {.lex_state = 95, .external_lex_state = 2}, + [7208] = {.lex_state = 95, .external_lex_state = 2}, + [7209] = {.lex_state = 95, .external_lex_state = 2}, + [7210] = {.lex_state = 95, .external_lex_state = 2}, + [7211] = {.lex_state = 95, .external_lex_state = 2}, + [7212] = {.lex_state = 95, .external_lex_state = 2}, + [7213] = {.lex_state = 95, .external_lex_state = 2}, + [7214] = {.lex_state = 95, .external_lex_state = 2}, + [7215] = {.lex_state = 95, .external_lex_state = 2}, + [7216] = {.lex_state = 95, .external_lex_state = 2}, + [7217] = {.lex_state = 95, .external_lex_state = 2}, + [7218] = {.lex_state = 95, .external_lex_state = 2}, + [7219] = {.lex_state = 95, .external_lex_state = 2}, + [7220] = {.lex_state = 95, .external_lex_state = 2}, + [7221] = {.lex_state = 95, .external_lex_state = 2}, + [7222] = {.lex_state = 95, .external_lex_state = 2}, + [7223] = {.lex_state = 95, .external_lex_state = 2}, + [7224] = {.lex_state = 95, .external_lex_state = 2}, + [7225] = {.lex_state = 95, .external_lex_state = 2}, + [7226] = {.lex_state = 95, .external_lex_state = 2}, + [7227] = {.lex_state = 95, .external_lex_state = 2}, + [7228] = {.lex_state = 95, .external_lex_state = 2}, + [7229] = {.lex_state = 95, .external_lex_state = 2}, + [7230] = {.lex_state = 95, .external_lex_state = 2}, + [7231] = {.lex_state = 95, .external_lex_state = 2}, + [7232] = {.lex_state = 95, .external_lex_state = 2}, + [7233] = {.lex_state = 95, .external_lex_state = 2}, + [7234] = {.lex_state = 95, .external_lex_state = 2}, + [7235] = {.lex_state = 95, .external_lex_state = 2}, + [7236] = {.lex_state = 95, .external_lex_state = 2}, + [7237] = {.lex_state = 95, .external_lex_state = 2}, + [7238] = {.lex_state = 95, .external_lex_state = 2}, + [7239] = {.lex_state = 95, .external_lex_state = 2}, + [7240] = {.lex_state = 95, .external_lex_state = 2}, + [7241] = {.lex_state = 95, .external_lex_state = 2}, + [7242] = {.lex_state = 95, .external_lex_state = 2}, + [7243] = {.lex_state = 95, .external_lex_state = 2}, + [7244] = {.lex_state = 95, .external_lex_state = 2}, + [7245] = {.lex_state = 95, .external_lex_state = 2}, + [7246] = {.lex_state = 95, .external_lex_state = 2}, + [7247] = {.lex_state = 95, .external_lex_state = 2}, + [7248] = {.lex_state = 95, .external_lex_state = 2}, + [7249] = {.lex_state = 95, .external_lex_state = 2}, + [7250] = {.lex_state = 95, .external_lex_state = 2}, + [7251] = {.lex_state = 95, .external_lex_state = 2}, + [7252] = {.lex_state = 95, .external_lex_state = 2}, + [7253] = {.lex_state = 95, .external_lex_state = 2}, + [7254] = {.lex_state = 95, .external_lex_state = 2}, + [7255] = {.lex_state = 95, .external_lex_state = 2}, + [7256] = {.lex_state = 95, .external_lex_state = 2}, + [7257] = {.lex_state = 95, .external_lex_state = 2}, + [7258] = {.lex_state = 95, .external_lex_state = 2}, + [7259] = {.lex_state = 95, .external_lex_state = 2}, + [7260] = {.lex_state = 95, .external_lex_state = 2}, + [7261] = {.lex_state = 95, .external_lex_state = 2}, + [7262] = {.lex_state = 95, .external_lex_state = 2}, + [7263] = {.lex_state = 95, .external_lex_state = 2}, + [7264] = {.lex_state = 95, .external_lex_state = 2}, + [7265] = {.lex_state = 95, .external_lex_state = 2}, + [7266] = {.lex_state = 95, .external_lex_state = 2}, + [7267] = {.lex_state = 95, .external_lex_state = 2}, + [7268] = {.lex_state = 95, .external_lex_state = 2}, + [7269] = {.lex_state = 95, .external_lex_state = 2}, + [7270] = {.lex_state = 95, .external_lex_state = 2}, + [7271] = {.lex_state = 95, .external_lex_state = 2}, + [7272] = {.lex_state = 95, .external_lex_state = 2}, + [7273] = {.lex_state = 95, .external_lex_state = 2}, + [7274] = {.lex_state = 95, .external_lex_state = 2}, + [7275] = {.lex_state = 95, .external_lex_state = 2}, + [7276] = {.lex_state = 27, .external_lex_state = 2}, + [7277] = {.lex_state = 95, .external_lex_state = 2}, + [7278] = {.lex_state = 95, .external_lex_state = 2}, + [7279] = {.lex_state = 95, .external_lex_state = 2}, + [7280] = {.lex_state = 95, .external_lex_state = 2}, + [7281] = {.lex_state = 95, .external_lex_state = 2}, + [7282] = {.lex_state = 95, .external_lex_state = 2}, + [7283] = {.lex_state = 95, .external_lex_state = 2}, + [7284] = {.lex_state = 95, .external_lex_state = 2}, + [7285] = {.lex_state = 95, .external_lex_state = 2}, + [7286] = {.lex_state = 95, .external_lex_state = 2}, + [7287] = {.lex_state = 95, .external_lex_state = 2}, + [7288] = {.lex_state = 95, .external_lex_state = 2}, + [7289] = {.lex_state = 95, .external_lex_state = 2}, + [7290] = {.lex_state = 95, .external_lex_state = 2}, + [7291] = {.lex_state = 95, .external_lex_state = 2}, + [7292] = {.lex_state = 95, .external_lex_state = 2}, + [7293] = {.lex_state = 95, .external_lex_state = 2}, + [7294] = {.lex_state = 95, .external_lex_state = 2}, + [7295] = {.lex_state = 95, .external_lex_state = 2}, + [7296] = {.lex_state = 95, .external_lex_state = 2}, + [7297] = {.lex_state = 95, .external_lex_state = 2}, + [7298] = {.lex_state = 95, .external_lex_state = 2}, + [7299] = {.lex_state = 95, .external_lex_state = 2}, + [7300] = {.lex_state = 95, .external_lex_state = 2}, + [7301] = {.lex_state = 95, .external_lex_state = 2}, + [7302] = {.lex_state = 95, .external_lex_state = 2}, + [7303] = {.lex_state = 95, .external_lex_state = 2}, + [7304] = {.lex_state = 95, .external_lex_state = 2}, + [7305] = {.lex_state = 95, .external_lex_state = 2}, + [7306] = {.lex_state = 95, .external_lex_state = 2}, + [7307] = {.lex_state = 95, .external_lex_state = 2}, + [7308] = {.lex_state = 95, .external_lex_state = 2}, + [7309] = {.lex_state = 95, .external_lex_state = 2}, + [7310] = {.lex_state = 27, .external_lex_state = 2}, + [7311] = {.lex_state = 95, .external_lex_state = 2}, + [7312] = {.lex_state = 95, .external_lex_state = 2}, + [7313] = {.lex_state = 95, .external_lex_state = 2}, + [7314] = {.lex_state = 95, .external_lex_state = 2}, + [7315] = {.lex_state = 95, .external_lex_state = 2}, + [7316] = {.lex_state = 95, .external_lex_state = 2}, + [7317] = {.lex_state = 95, .external_lex_state = 2}, + [7318] = {.lex_state = 95, .external_lex_state = 2}, + [7319] = {.lex_state = 95, .external_lex_state = 2}, + [7320] = {.lex_state = 27, .external_lex_state = 2}, + [7321] = {.lex_state = 95, .external_lex_state = 2}, + [7322] = {.lex_state = 95, .external_lex_state = 2}, + [7323] = {.lex_state = 95, .external_lex_state = 2}, + [7324] = {.lex_state = 95, .external_lex_state = 2}, + [7325] = {.lex_state = 95, .external_lex_state = 2}, + [7326] = {.lex_state = 95, .external_lex_state = 2}, + [7327] = {.lex_state = 95, .external_lex_state = 2}, + [7328] = {.lex_state = 95, .external_lex_state = 2}, + [7329] = {.lex_state = 95, .external_lex_state = 2}, + [7330] = {.lex_state = 95, .external_lex_state = 2}, + [7331] = {.lex_state = 95, .external_lex_state = 2}, + [7332] = {.lex_state = 95, .external_lex_state = 2}, + [7333] = {.lex_state = 95, .external_lex_state = 2}, + [7334] = {.lex_state = 95, .external_lex_state = 2}, + [7335] = {.lex_state = 95, .external_lex_state = 2}, + [7336] = {.lex_state = 95, .external_lex_state = 2}, + [7337] = {.lex_state = 95, .external_lex_state = 2}, + [7338] = {.lex_state = 95, .external_lex_state = 2}, + [7339] = {.lex_state = 95, .external_lex_state = 2}, + [7340] = {.lex_state = 95, .external_lex_state = 2}, + [7341] = {.lex_state = 95, .external_lex_state = 2}, + [7342] = {.lex_state = 95, .external_lex_state = 2}, + [7343] = {.lex_state = 95, .external_lex_state = 2}, + [7344] = {.lex_state = 95, .external_lex_state = 2}, + [7345] = {.lex_state = 95, .external_lex_state = 2}, + [7346] = {.lex_state = 95, .external_lex_state = 2}, + [7347] = {.lex_state = 2, .external_lex_state = 10}, + [7348] = {.lex_state = 95, .external_lex_state = 2}, + [7349] = {.lex_state = 95, .external_lex_state = 2}, + [7350] = {.lex_state = 95, .external_lex_state = 2}, + [7351] = {.lex_state = 95, .external_lex_state = 2}, + [7352] = {.lex_state = 95, .external_lex_state = 2}, + [7353] = {.lex_state = 95, .external_lex_state = 2}, + [7354] = {.lex_state = 95, .external_lex_state = 2}, + [7355] = {.lex_state = 95, .external_lex_state = 2}, + [7356] = {.lex_state = 95, .external_lex_state = 2}, + [7357] = {.lex_state = 95, .external_lex_state = 2}, + [7358] = {.lex_state = 95, .external_lex_state = 2}, + [7359] = {.lex_state = 95, .external_lex_state = 2}, + [7360] = {.lex_state = 95, .external_lex_state = 2}, + [7361] = {.lex_state = 95, .external_lex_state = 2}, + [7362] = {.lex_state = 95, .external_lex_state = 2}, + [7363] = {.lex_state = 95, .external_lex_state = 2}, + [7364] = {.lex_state = 95, .external_lex_state = 2}, + [7365] = {.lex_state = 95, .external_lex_state = 2}, + [7366] = {.lex_state = 95, .external_lex_state = 2}, + [7367] = {.lex_state = 95, .external_lex_state = 2}, + [7368] = {.lex_state = 95, .external_lex_state = 2}, + [7369] = {.lex_state = 95, .external_lex_state = 2}, + [7370] = {.lex_state = 95, .external_lex_state = 2}, + [7371] = {.lex_state = 95, .external_lex_state = 2}, + [7372] = {.lex_state = 95, .external_lex_state = 2}, + [7373] = {.lex_state = 95, .external_lex_state = 2}, + [7374] = {.lex_state = 95, .external_lex_state = 2}, + [7375] = {.lex_state = 95, .external_lex_state = 2}, + [7376] = {.lex_state = 95, .external_lex_state = 2}, + [7377] = {.lex_state = 95, .external_lex_state = 2}, + [7378] = {.lex_state = 95, .external_lex_state = 2}, + [7379] = {.lex_state = 95, .external_lex_state = 2}, + [7380] = {.lex_state = 95, .external_lex_state = 2}, + [7381] = {.lex_state = 95, .external_lex_state = 2}, + [7382] = {.lex_state = 95, .external_lex_state = 2}, + [7383] = {.lex_state = 95, .external_lex_state = 2}, + [7384] = {.lex_state = 95, .external_lex_state = 2}, + [7385] = {.lex_state = 95, .external_lex_state = 2}, + [7386] = {.lex_state = 95, .external_lex_state = 2}, + [7387] = {.lex_state = 95, .external_lex_state = 2}, + [7388] = {.lex_state = 95, .external_lex_state = 2}, + [7389] = {.lex_state = 95, .external_lex_state = 2}, + [7390] = {.lex_state = 95, .external_lex_state = 2}, + [7391] = {.lex_state = 95, .external_lex_state = 2}, + [7392] = {.lex_state = 95, .external_lex_state = 2}, + [7393] = {.lex_state = 95, .external_lex_state = 2}, + [7394] = {.lex_state = 95, .external_lex_state = 2}, + [7395] = {.lex_state = 95, .external_lex_state = 2}, + [7396] = {.lex_state = 95, .external_lex_state = 2}, + [7397] = {.lex_state = 95, .external_lex_state = 2}, + [7398] = {.lex_state = 95, .external_lex_state = 2}, + [7399] = {.lex_state = 95, .external_lex_state = 2}, + [7400] = {.lex_state = 95, .external_lex_state = 2}, + [7401] = {.lex_state = 95, .external_lex_state = 2}, + [7402] = {.lex_state = 95, .external_lex_state = 2}, + [7403] = {.lex_state = 95, .external_lex_state = 2}, + [7404] = {.lex_state = 95, .external_lex_state = 2}, + [7405] = {.lex_state = 95, .external_lex_state = 2}, + [7406] = {.lex_state = 95, .external_lex_state = 2}, + [7407] = {.lex_state = 95, .external_lex_state = 2}, + [7408] = {.lex_state = 95, .external_lex_state = 2}, + [7409] = {.lex_state = 95, .external_lex_state = 2}, + [7410] = {.lex_state = 95, .external_lex_state = 2}, + [7411] = {.lex_state = 95, .external_lex_state = 2}, + [7412] = {.lex_state = 95, .external_lex_state = 2}, + [7413] = {.lex_state = 95, .external_lex_state = 2}, + [7414] = {.lex_state = 95, .external_lex_state = 2}, + [7415] = {.lex_state = 95, .external_lex_state = 2}, + [7416] = {.lex_state = 95, .external_lex_state = 2}, + [7417] = {.lex_state = 95, .external_lex_state = 2}, + [7418] = {.lex_state = 95, .external_lex_state = 2}, + [7419] = {.lex_state = 95, .external_lex_state = 2}, + [7420] = {.lex_state = 95, .external_lex_state = 2}, + [7421] = {.lex_state = 95, .external_lex_state = 2}, + [7422] = {.lex_state = 95, .external_lex_state = 2}, + [7423] = {.lex_state = 95, .external_lex_state = 2}, + [7424] = {.lex_state = 95, .external_lex_state = 2}, + [7425] = {.lex_state = 95, .external_lex_state = 2}, + [7426] = {.lex_state = 95, .external_lex_state = 2}, + [7427] = {.lex_state = 95, .external_lex_state = 2}, + [7428] = {.lex_state = 95, .external_lex_state = 2}, + [7429] = {.lex_state = 95, .external_lex_state = 2}, + [7430] = {.lex_state = 95, .external_lex_state = 2}, + [7431] = {.lex_state = 95, .external_lex_state = 2}, + [7432] = {.lex_state = 95, .external_lex_state = 2}, + [7433] = {.lex_state = 95, .external_lex_state = 2}, + [7434] = {.lex_state = 95, .external_lex_state = 2}, + [7435] = {.lex_state = 95, .external_lex_state = 2}, + [7436] = {.lex_state = 95, .external_lex_state = 2}, + [7437] = {.lex_state = 95, .external_lex_state = 2}, + [7438] = {.lex_state = 95, .external_lex_state = 2}, + [7439] = {.lex_state = 2, .external_lex_state = 10}, + [7440] = {.lex_state = 95, .external_lex_state = 2}, + [7441] = {.lex_state = 95, .external_lex_state = 2}, + [7442] = {.lex_state = 95, .external_lex_state = 2}, + [7443] = {.lex_state = 95, .external_lex_state = 2}, + [7444] = {.lex_state = 95, .external_lex_state = 2}, + [7445] = {.lex_state = 95, .external_lex_state = 2}, + [7446] = {.lex_state = 95, .external_lex_state = 2}, + [7447] = {.lex_state = 95, .external_lex_state = 2}, + [7448] = {.lex_state = 95, .external_lex_state = 2}, + [7449] = {.lex_state = 95, .external_lex_state = 2}, + [7450] = {.lex_state = 95, .external_lex_state = 2}, + [7451] = {.lex_state = 95, .external_lex_state = 2}, + [7452] = {.lex_state = 95, .external_lex_state = 2}, + [7453] = {.lex_state = 95, .external_lex_state = 2}, + [7454] = {.lex_state = 95, .external_lex_state = 2}, + [7455] = {.lex_state = 95, .external_lex_state = 2}, + [7456] = {.lex_state = 95, .external_lex_state = 2}, + [7457] = {.lex_state = 95, .external_lex_state = 2}, + [7458] = {.lex_state = 95, .external_lex_state = 2}, + [7459] = {.lex_state = 95, .external_lex_state = 2}, + [7460] = {.lex_state = 95, .external_lex_state = 2}, + [7461] = {.lex_state = 95, .external_lex_state = 2}, + [7462] = {.lex_state = 95, .external_lex_state = 2}, + [7463] = {.lex_state = 95, .external_lex_state = 2}, + [7464] = {.lex_state = 95, .external_lex_state = 2}, + [7465] = {.lex_state = 27, .external_lex_state = 2}, + [7466] = {.lex_state = 95, .external_lex_state = 2}, + [7467] = {.lex_state = 95, .external_lex_state = 2}, + [7468] = {.lex_state = 95, .external_lex_state = 2}, + [7469] = {.lex_state = 95, .external_lex_state = 2}, + [7470] = {.lex_state = 95, .external_lex_state = 2}, + [7471] = {.lex_state = 95, .external_lex_state = 2}, + [7472] = {.lex_state = 95, .external_lex_state = 2}, + [7473] = {.lex_state = 95, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -19109,86 +22470,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5646), - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_program] = STATE(7431), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4244), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -19269,78 +22630,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(3299), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_pattern] = STATE(4009), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(520), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3795), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_pattern] = STATE(5075), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(571), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(117), @@ -19350,392 +22711,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(140), [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(146), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(164), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(176), + [anon_sym_DASH] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(195), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(202), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(203), + [anon_sym_readonly] = ACTIONS(204), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(205), + [anon_sym_QMARK] = ACTIONS(206), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), [anon_sym_protected] = ACTIONS(115), [anon_sym_override] = ACTIONS(115), [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_any] = ACTIONS(208), + [anon_sym_number] = ACTIONS(208), + [anon_sym_boolean] = ACTIONS(208), + [anon_sym_string] = ACTIONS(208), + [anon_sym_symbol] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(3299), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_pattern] = STATE(4009), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(520), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3795), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_pattern] = STATE(5075), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(571), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(117), [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(141), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(146), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(164), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(176), + [anon_sym_DASH] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(195), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(202), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(203), + [anon_sym_readonly] = ACTIONS(204), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(205), + [anon_sym_QMARK] = ACTIONS(206), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), [anon_sym_protected] = ACTIONS(115), [anon_sym_override] = ACTIONS(115), [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_any] = ACTIONS(208), + [anon_sym_number] = ACTIONS(208), + [anon_sym_boolean] = ACTIONS(208), + [anon_sym_string] = ACTIONS(208), + [anon_sym_symbol] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5520), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5520), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5520), - [sym_spread_element] = STATE(4796), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4796), - [sym_pair] = STATE(4796), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3630), - [sym_computed_property_name] = STATE(3630), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_accessibility_modifier] = STATE(2740), - [sym_override_modifier] = STATE(2780), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3794), - [aux_sym_object_repeat1] = STATE(4685), - [aux_sym_object_pattern_repeat1] = STATE(4692), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7392), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7392), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7392), + [sym_spread_element] = STATE(6014), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2196), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(6014), + [sym_pair] = STATE(6014), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(4039), + [sym_computed_property_name] = STATE(4039), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_accessibility_modifier] = STATE(3147), + [sym_override_modifier] = STATE(3167), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(2589), + [aux_sym_object_repeat1] = STATE(6012), + [aux_sym_object_pattern_repeat1] = STATE(5455), [sym_identifier] = ACTIONS(229), [anon_sym_export] = ACTIONS(231), [anon_sym_STAR] = ACTIONS(233), @@ -19818,110 +23179,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5520), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5520), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5520), - [sym_spread_element] = STATE(4796), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4796), - [sym_pair] = STATE(4796), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3630), - [sym_computed_property_name] = STATE(3630), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_accessibility_modifier] = STATE(2740), - [sym_override_modifier] = STATE(2780), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(3794), - [aux_sym_object_repeat1] = STATE(4685), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(229), - [anon_sym_export] = ACTIONS(231), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7392), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7392), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7392), + [sym_spread_element] = STATE(6014), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2196), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(6014), + [sym_pair] = STATE(6014), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(4039), + [sym_computed_property_name] = STATE(4039), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_accessibility_modifier] = STATE(3147), + [sym_override_modifier] = STATE(3167), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(2589), + [aux_sym_object_repeat1] = STATE(6012), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(273), + [anon_sym_export] = ACTIONS(275), [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), + [anon_sym_type] = ACTIONS(277), + [anon_sym_namespace] = ACTIONS(279), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(241), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(243), + [anon_sym_let] = ACTIONS(281), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -19944,9 +23305,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(247), + [anon_sym_async] = ACTIONS(283), [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(249), + [anon_sym_new] = ACTIONS(285), [anon_sym_using] = ACTIONS(81), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(21), @@ -19969,132 +23330,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(257), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_get] = ACTIONS(261), - [anon_sym_set] = ACTIONS(261), - [anon_sym_declare] = ACTIONS(263), - [anon_sym_public] = ACTIONS(265), - [anon_sym_private] = ACTIONS(265), - [anon_sym_protected] = ACTIONS(265), - [anon_sym_override] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_any] = ACTIONS(271), - [anon_sym_number] = ACTIONS(271), - [anon_sym_boolean] = ACTIONS(271), - [anon_sym_string] = ACTIONS(271), - [anon_sym_symbol] = ACTIONS(271), - [anon_sym_object] = ACTIONS(271), + [anon_sym_static] = ACTIONS(287), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_get] = ACTIONS(291), + [anon_sym_set] = ACTIONS(291), + [anon_sym_declare] = ACTIONS(293), + [anon_sym_public] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_override] = ACTIONS(297), + [anon_sym_module] = ACTIONS(299), + [anon_sym_any] = ACTIONS(301), + [anon_sym_number] = ACTIONS(301), + [anon_sym_boolean] = ACTIONS(301), + [anon_sym_string] = ACTIONS(301), + [anon_sym_symbol] = ACTIONS(301), + [anon_sym_object] = ACTIONS(301), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5520), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5520), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5520), - [sym_spread_element] = STATE(4812), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4812), - [sym_pair] = STATE(4812), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3630), - [sym_computed_property_name] = STATE(3630), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_accessibility_modifier] = STATE(2740), - [sym_override_modifier] = STATE(2780), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3794), - [aux_sym_object_repeat1] = STATE(4874), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(275), - [anon_sym_export] = ACTIONS(277), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7392), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7392), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7392), + [sym_spread_element] = STATE(5452), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2196), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(5452), + [sym_pair] = STATE(5452), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(4039), + [sym_computed_property_name] = STATE(4039), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_accessibility_modifier] = STATE(3147), + [sym_override_modifier] = STATE(3167), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(2589), + [aux_sym_object_repeat1] = STATE(5454), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(303), + [anon_sym_export] = ACTIONS(305), [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(279), - [anon_sym_namespace] = ACTIONS(281), + [anon_sym_type] = ACTIONS(307), + [anon_sym_namespace] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(311), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(285), + [anon_sym_let] = ACTIONS(313), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20117,9 +23478,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(287), + [anon_sym_async] = ACTIONS(315), [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(289), + [anon_sym_new] = ACTIONS(317), [anon_sym_using] = ACTIONS(81), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(21), @@ -20142,132 +23503,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(291), - [anon_sym_readonly] = ACTIONS(293), - [anon_sym_get] = ACTIONS(295), - [anon_sym_set] = ACTIONS(295), - [anon_sym_declare] = ACTIONS(297), - [anon_sym_public] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_override] = ACTIONS(301), - [anon_sym_module] = ACTIONS(303), - [anon_sym_any] = ACTIONS(305), - [anon_sym_number] = ACTIONS(305), - [anon_sym_boolean] = ACTIONS(305), - [anon_sym_string] = ACTIONS(305), - [anon_sym_symbol] = ACTIONS(305), - [anon_sym_object] = ACTIONS(305), + [anon_sym_static] = ACTIONS(319), + [anon_sym_readonly] = ACTIONS(321), + [anon_sym_get] = ACTIONS(323), + [anon_sym_set] = ACTIONS(323), + [anon_sym_declare] = ACTIONS(325), + [anon_sym_public] = ACTIONS(327), + [anon_sym_private] = ACTIONS(327), + [anon_sym_protected] = ACTIONS(327), + [anon_sym_override] = ACTIONS(329), + [anon_sym_module] = ACTIONS(331), + [anon_sym_any] = ACTIONS(333), + [anon_sym_number] = ACTIONS(333), + [anon_sym_boolean] = ACTIONS(333), + [anon_sym_string] = ACTIONS(333), + [anon_sym_symbol] = ACTIONS(333), + [anon_sym_object] = ACTIONS(333), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5520), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5520), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5520), - [sym_spread_element] = STATE(4796), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4796), - [sym_pair] = STATE(4796), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3630), - [sym_computed_property_name] = STATE(3630), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_accessibility_modifier] = STATE(2740), - [sym_override_modifier] = STATE(2780), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3794), - [aux_sym_object_repeat1] = STATE(4685), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(229), - [anon_sym_export] = ACTIONS(231), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7392), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7392), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7392), + [sym_spread_element] = STATE(5452), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2196), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(5452), + [sym_pair] = STATE(5452), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(4039), + [sym_computed_property_name] = STATE(4039), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_accessibility_modifier] = STATE(3147), + [sym_override_modifier] = STATE(3167), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(2589), + [aux_sym_object_repeat1] = STATE(5454), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(303), + [anon_sym_export] = ACTIONS(305), [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), + [anon_sym_type] = ACTIONS(307), + [anon_sym_namespace] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(335), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(243), + [anon_sym_let] = ACTIONS(313), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20290,9 +23651,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(247), + [anon_sym_async] = ACTIONS(315), [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(249), + [anon_sym_new] = ACTIONS(317), [anon_sym_using] = ACTIONS(81), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(21), @@ -20315,132 +23676,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(257), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_get] = ACTIONS(261), - [anon_sym_set] = ACTIONS(261), - [anon_sym_declare] = ACTIONS(263), - [anon_sym_public] = ACTIONS(265), - [anon_sym_private] = ACTIONS(265), - [anon_sym_protected] = ACTIONS(265), - [anon_sym_override] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_any] = ACTIONS(271), - [anon_sym_number] = ACTIONS(271), - [anon_sym_boolean] = ACTIONS(271), - [anon_sym_string] = ACTIONS(271), - [anon_sym_symbol] = ACTIONS(271), - [anon_sym_object] = ACTIONS(271), + [anon_sym_static] = ACTIONS(319), + [anon_sym_readonly] = ACTIONS(321), + [anon_sym_get] = ACTIONS(323), + [anon_sym_set] = ACTIONS(323), + [anon_sym_declare] = ACTIONS(325), + [anon_sym_public] = ACTIONS(327), + [anon_sym_private] = ACTIONS(327), + [anon_sym_protected] = ACTIONS(327), + [anon_sym_override] = ACTIONS(329), + [anon_sym_module] = ACTIONS(331), + [anon_sym_any] = ACTIONS(333), + [anon_sym_number] = ACTIONS(333), + [anon_sym_boolean] = ACTIONS(333), + [anon_sym_string] = ACTIONS(333), + [anon_sym_symbol] = ACTIONS(333), + [anon_sym_object] = ACTIONS(333), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5520), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5520), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5520), - [sym_spread_element] = STATE(4812), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4812), - [sym_pair] = STATE(4812), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3630), - [sym_computed_property_name] = STATE(3630), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_accessibility_modifier] = STATE(2740), - [sym_override_modifier] = STATE(2780), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3794), - [aux_sym_object_repeat1] = STATE(4874), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(309), - [anon_sym_export] = ACTIONS(311), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7392), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7392), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7392), + [sym_spread_element] = STATE(5452), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2196), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(5452), + [sym_pair] = STATE(5452), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(4039), + [sym_computed_property_name] = STATE(4039), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_accessibility_modifier] = STATE(3147), + [sym_override_modifier] = STATE(3167), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(2589), + [aux_sym_object_repeat1] = STATE(5454), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(303), + [anon_sym_export] = ACTIONS(305), [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(313), - [anon_sym_namespace] = ACTIONS(315), + [anon_sym_type] = ACTIONS(307), + [anon_sym_namespace] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(337), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(317), + [anon_sym_let] = ACTIONS(313), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20463,9 +23824,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(319), + [anon_sym_async] = ACTIONS(315), [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(321), + [anon_sym_new] = ACTIONS(317), [anon_sym_using] = ACTIONS(81), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(21), @@ -20488,107 +23849,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(323), - [anon_sym_readonly] = ACTIONS(325), - [anon_sym_get] = ACTIONS(327), - [anon_sym_set] = ACTIONS(327), - [anon_sym_declare] = ACTIONS(329), - [anon_sym_public] = ACTIONS(331), - [anon_sym_private] = ACTIONS(331), - [anon_sym_protected] = ACTIONS(331), - [anon_sym_override] = ACTIONS(333), - [anon_sym_module] = ACTIONS(335), - [anon_sym_any] = ACTIONS(337), - [anon_sym_number] = ACTIONS(337), - [anon_sym_boolean] = ACTIONS(337), - [anon_sym_string] = ACTIONS(337), - [anon_sym_symbol] = ACTIONS(337), - [anon_sym_object] = ACTIONS(337), + [anon_sym_static] = ACTIONS(319), + [anon_sym_readonly] = ACTIONS(321), + [anon_sym_get] = ACTIONS(323), + [anon_sym_set] = ACTIONS(323), + [anon_sym_declare] = ACTIONS(325), + [anon_sym_public] = ACTIONS(327), + [anon_sym_private] = ACTIONS(327), + [anon_sym_protected] = ACTIONS(327), + [anon_sym_override] = ACTIONS(329), + [anon_sym_module] = ACTIONS(331), + [anon_sym_any] = ACTIONS(333), + [anon_sym_number] = ACTIONS(333), + [anon_sym_boolean] = ACTIONS(333), + [anon_sym_string] = ACTIONS(333), + [anon_sym_symbol] = ACTIONS(333), + [anon_sym_object] = ACTIONS(333), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3794), + [aux_sym_export_statement_repeat1] = STATE(4244), [ts_builtin_sym_end] = ACTIONS(339), [sym_identifier] = ACTIONS(341), [anon_sym_export] = ACTIONS(344), @@ -20671,85 +24032,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(13), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(496), @@ -20831,85 +24192,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(500), @@ -20991,85 +24352,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(10), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(504), @@ -21151,85 +24512,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3794), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(508), @@ -21311,85 +24672,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -21469,85 +24830,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3794), + [aux_sym_export_statement_repeat1] = STATE(4244), [ts_builtin_sym_end] = ACTIONS(514), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -21627,91 +24988,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3794), - [ts_builtin_sym_end] = ACTIONS(516), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(516), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21785,91 +25146,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(4244), + [ts_builtin_sym_end] = ACTIONS(518), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(518), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21943,91 +25304,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(4244), + [ts_builtin_sym_end] = ACTIONS(518), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(520), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22101,91 +25462,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(3794), - [ts_builtin_sym_end] = ACTIONS(516), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(520), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22259,85 +25620,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3794), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22417,85 +25778,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22575,85 +25936,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22733,85 +26094,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3794), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22891,85 +26252,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23049,85 +26410,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(27), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23207,85 +26568,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(29), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23365,85 +26726,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(26), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23523,85 +26884,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23681,85 +27042,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23839,85 +27200,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(28), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23997,102 +27358,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(788), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(2161), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3735), + [sym_import] = STATE(3895), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5164), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(4819), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5782), + [sym_optional_tuple_parameter] = STATE(5782), + [sym_optional_type] = STATE(5782), + [sym_rest_type] = STATE(5782), + [sym__tuple_type_member] = STATE(5782), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6050), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(546), [anon_sym_namespace] = ACTIONS(550), [anon_sym_LBRACE] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(566), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(570), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(596), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(600), + [anon_sym_number] = ACTIONS(600), + [anon_sym_boolean] = ACTIONS(600), + [anon_sym_string] = ACTIONS(600), + [anon_sym_symbol] = ACTIONS(600), + [anon_sym_object] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym_html_comment] = ACTIONS(5), + }, + [32] = { + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(818), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(2171), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4526), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(612), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(616), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(618), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(620), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(622), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(624), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(626), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -24106,10 +27623,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(630), + [anon_sym_function] = ACTIONS(632), + [anon_sym_new] = ACTIONS(634), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -24131,262 +27648,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), + [anon_sym_static] = ACTIONS(636), + [anon_sym_readonly] = ACTIONS(636), + [anon_sym_get] = ACTIONS(636), + [anon_sym_set] = ACTIONS(636), + [anon_sym_declare] = ACTIONS(638), + [anon_sym_public] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_override] = ACTIONS(636), + [anon_sym_module] = ACTIONS(640), + [anon_sym_any] = ACTIONS(636), + [anon_sym_number] = ACTIONS(636), + [anon_sym_boolean] = ACTIONS(636), + [anon_sym_string] = ACTIONS(636), + [anon_sym_symbol] = ACTIONS(636), + [anon_sym_object] = ACTIONS(636), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [32] = { - [sym_import] = STATE(3332), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4297), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(4122), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4970), - [sym_optional_tuple_parameter] = STATE(4970), - [sym_optional_type] = STATE(4970), - [sym_rest_type] = STATE(4970), - [sym__tuple_type_member] = STATE(4970), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(600), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, [33] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(883), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(831), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24465,84 +27826,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(822), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(753), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24621,84 +27982,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(757), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(850), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24777,102 +28138,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(858), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3794), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(796), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(2171), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4526), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(612), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(616), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(618), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(620), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(622), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(624), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(626), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -24886,10 +28247,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(630), + [anon_sym_function] = ACTIONS(632), + [anon_sym_new] = ACTIONS(634), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -24911,106 +28272,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), + [anon_sym_static] = ACTIONS(636), + [anon_sym_readonly] = ACTIONS(636), + [anon_sym_get] = ACTIONS(636), + [anon_sym_set] = ACTIONS(636), + [anon_sym_declare] = ACTIONS(638), + [anon_sym_public] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_override] = ACTIONS(636), + [anon_sym_module] = ACTIONS(640), + [anon_sym_any] = ACTIONS(636), + [anon_sym_number] = ACTIONS(636), + [anon_sym_boolean] = ACTIONS(636), + [anon_sym_string] = ACTIONS(636), + [anon_sym_symbol] = ACTIONS(636), + [anon_sym_object] = ACTIONS(636), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(848), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(796), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25089,84 +28450,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(872), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(818), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25245,84 +28606,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(835), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3794), + [sym_import] = STATE(3895), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5164), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(4819), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5604), + [sym_optional_tuple_parameter] = STATE(5604), + [sym_optional_type] = STATE(5604), + [sym_rest_type] = STATE(5604), + [sym__tuple_type_member] = STATE(5604), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6050), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(544), + [anon_sym_export] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(644), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(570), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(596), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(600), + [anon_sym_number] = ACTIONS(600), + [anon_sym_boolean] = ACTIONS(600), + [anon_sym_string] = ACTIONS(600), + [anon_sym_symbol] = ACTIONS(600), + [anon_sym_object] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym_html_comment] = ACTIONS(5), + }, + [40] = { + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(809), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25400,103 +28917,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [40] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(835), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(2161), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3735), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [41] = { + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(857), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4244), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -25510,10 +29027,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(75), + [anon_sym_function] = ACTIONS(77), + [anon_sym_new] = ACTIONS(79), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -25535,124 +29052,592 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), + [anon_sym_static] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_get] = ACTIONS(101), + [anon_sym_set] = ACTIONS(101), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_public] = ACTIONS(101), + [anon_sym_private] = ACTIONS(101), + [anon_sym_protected] = ACTIONS(101), + [anon_sym_override] = ACTIONS(101), + [anon_sym_module] = ACTIONS(105), + [anon_sym_any] = ACTIONS(101), + [anon_sym_number] = ACTIONS(101), + [anon_sym_boolean] = ACTIONS(101), + [anon_sym_string] = ACTIONS(101), + [anon_sym_symbol] = ACTIONS(101), + [anon_sym_object] = ACTIONS(101), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [41] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(822), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(2161), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3735), + [42] = { + [sym_import] = STATE(3895), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5164), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(4819), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5604), + [sym_optional_tuple_parameter] = STATE(5604), + [sym_optional_type] = STATE(5604), + [sym_rest_type] = STATE(5604), + [sym__tuple_type_member] = STATE(5604), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6050), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(546), [anon_sym_namespace] = ACTIONS(550), [anon_sym_LBRACE] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(646), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(570), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(596), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(600), + [anon_sym_number] = ACTIONS(600), + [anon_sym_boolean] = ACTIONS(600), + [anon_sym_string] = ACTIONS(600), + [anon_sym_symbol] = ACTIONS(600), + [anon_sym_object] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym_html_comment] = ACTIONS(5), + }, + [43] = { + [sym_import] = STATE(3895), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1908), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(5466), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5164), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(4819), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5604), + [sym_optional_tuple_parameter] = STATE(5604), + [sym_optional_type] = STATE(5604), + [sym_rest_type] = STATE(5604), + [sym__tuple_type_member] = STATE(5604), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6050), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(5467), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(544), + [anon_sym_export] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(648), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(570), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(596), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(600), + [anon_sym_number] = ACTIONS(600), + [anon_sym_boolean] = ACTIONS(600), + [anon_sym_string] = ACTIONS(600), + [anon_sym_symbol] = ACTIONS(600), + [anon_sym_object] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym_html_comment] = ACTIONS(5), + }, + [44] = { + [sym_import] = STATE(3895), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5164), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(4819), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5604), + [sym_optional_tuple_parameter] = STATE(5604), + [sym_optional_type] = STATE(5604), + [sym_rest_type] = STATE(5604), + [sym__tuple_type_member] = STATE(5604), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6050), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(544), + [anon_sym_export] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(650), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(570), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(596), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(600), + [anon_sym_number] = ACTIONS(600), + [anon_sym_boolean] = ACTIONS(600), + [anon_sym_string] = ACTIONS(600), + [anon_sym_symbol] = ACTIONS(600), + [anon_sym_object] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym_html_comment] = ACTIONS(5), + }, + [45] = { + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(873), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4244), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -25666,10 +29651,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(75), + [anon_sym_function] = ACTIONS(77), + [anon_sym_new] = ACTIONS(79), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -25691,124 +29676,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), + [anon_sym_static] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_get] = ACTIONS(101), + [anon_sym_set] = ACTIONS(101), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_public] = ACTIONS(101), + [anon_sym_private] = ACTIONS(101), + [anon_sym_protected] = ACTIONS(101), + [anon_sym_override] = ACTIONS(101), + [anon_sym_module] = ACTIONS(105), + [anon_sym_any] = ACTIONS(101), + [anon_sym_number] = ACTIONS(101), + [anon_sym_boolean] = ACTIONS(101), + [anon_sym_string] = ACTIONS(101), + [anon_sym_symbol] = ACTIONS(101), + [anon_sym_object] = ACTIONS(101), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [42] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(4699), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(2161), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3735), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [46] = { + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(873), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(2171), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4526), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(612), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(616), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(618), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(620), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(622), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(624), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(626), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -25822,10 +29807,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(630), + [anon_sym_function] = ACTIONS(632), + [anon_sym_new] = ACTIONS(634), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -25847,124 +29832,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), + [anon_sym_static] = ACTIONS(636), + [anon_sym_readonly] = ACTIONS(636), + [anon_sym_get] = ACTIONS(636), + [anon_sym_set] = ACTIONS(636), + [anon_sym_declare] = ACTIONS(638), + [anon_sym_public] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_override] = ACTIONS(636), + [anon_sym_module] = ACTIONS(640), + [anon_sym_any] = ACTIONS(636), + [anon_sym_number] = ACTIONS(636), + [anon_sym_boolean] = ACTIONS(636), + [anon_sym_string] = ACTIONS(636), + [anon_sym_symbol] = ACTIONS(636), + [anon_sym_object] = ACTIONS(636), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(848), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(2161), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3735), + [47] = { + [sym_import] = STATE(3895), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5164), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(4819), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5604), + [sym_optional_tuple_parameter] = STATE(5604), + [sym_optional_type] = STATE(5604), + [sym_rest_type] = STATE(5604), + [sym__tuple_type_member] = STATE(5604), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6050), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(546), [anon_sym_namespace] = ACTIONS(550), [anon_sym_LBRACE] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(652), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(570), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(596), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(600), + [anon_sym_number] = ACTIONS(600), + [anon_sym_boolean] = ACTIONS(600), + [anon_sym_string] = ACTIONS(600), + [anon_sym_symbol] = ACTIONS(600), + [anon_sym_object] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym_html_comment] = ACTIONS(5), + }, + [48] = { + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(7348), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(2171), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4526), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(612), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(616), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(618), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(620), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(622), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(624), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(626), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -25978,10 +30119,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(630), + [anon_sym_function] = ACTIONS(632), + [anon_sym_new] = ACTIONS(634), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26003,124 +30144,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), + [anon_sym_static] = ACTIONS(636), + [anon_sym_readonly] = ACTIONS(636), + [anon_sym_get] = ACTIONS(636), + [anon_sym_set] = ACTIONS(636), + [anon_sym_declare] = ACTIONS(638), + [anon_sym_public] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_override] = ACTIONS(636), + [anon_sym_module] = ACTIONS(640), + [anon_sym_any] = ACTIONS(636), + [anon_sym_number] = ACTIONS(636), + [anon_sym_boolean] = ACTIONS(636), + [anon_sym_string] = ACTIONS(636), + [anon_sym_symbol] = ACTIONS(636), + [anon_sym_object] = ACTIONS(636), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(872), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(2161), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3735), + [49] = { + [sym_import] = STATE(3895), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5164), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(4819), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5604), + [sym_optional_tuple_parameter] = STATE(5604), + [sym_optional_type] = STATE(5604), + [sym_rest_type] = STATE(5604), + [sym__tuple_type_member] = STATE(5604), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6050), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(546), [anon_sym_namespace] = ACTIONS(550), [anon_sym_LBRACE] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(654), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(570), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(596), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(600), + [anon_sym_number] = ACTIONS(600), + [anon_sym_boolean] = ACTIONS(600), + [anon_sym_string] = ACTIONS(600), + [anon_sym_symbol] = ACTIONS(600), + [anon_sym_object] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym_html_comment] = ACTIONS(5), + }, + [50] = { + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(831), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(2171), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4526), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(612), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(616), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(618), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(620), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(622), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(624), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(626), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26134,10 +30431,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(630), + [anon_sym_function] = ACTIONS(632), + [anon_sym_new] = ACTIONS(634), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26159,280 +30456,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), + [anon_sym_static] = ACTIONS(636), + [anon_sym_readonly] = ACTIONS(636), + [anon_sym_get] = ACTIONS(636), + [anon_sym_set] = ACTIONS(636), + [anon_sym_declare] = ACTIONS(638), + [anon_sym_public] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_override] = ACTIONS(636), + [anon_sym_module] = ACTIONS(640), + [anon_sym_any] = ACTIONS(636), + [anon_sym_number] = ACTIONS(636), + [anon_sym_boolean] = ACTIONS(636), + [anon_sym_string] = ACTIONS(636), + [anon_sym_symbol] = ACTIONS(636), + [anon_sym_object] = ACTIONS(636), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [45] = { - [sym_import] = STATE(3332), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1869), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4669), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4297), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(4122), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4707), - [sym_optional_tuple_parameter] = STATE(4707), - [sym_optional_type] = STATE(4707), - [sym_rest_type] = STATE(4707), - [sym__tuple_type_member] = STATE(4707), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4681), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(644), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [46] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(815), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(2161), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3735), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [51] = { + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(5928), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(2171), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4526), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(612), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(616), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(618), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(620), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(622), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(624), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(626), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26446,10 +30587,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(630), + [anon_sym_function] = ACTIONS(632), + [anon_sym_new] = ACTIONS(634), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26471,124 +30612,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), + [anon_sym_static] = ACTIONS(636), + [anon_sym_readonly] = ACTIONS(636), + [anon_sym_get] = ACTIONS(636), + [anon_sym_set] = ACTIONS(636), + [anon_sym_declare] = ACTIONS(638), + [anon_sym_public] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_override] = ACTIONS(636), + [anon_sym_module] = ACTIONS(640), + [anon_sym_any] = ACTIONS(636), + [anon_sym_number] = ACTIONS(636), + [anon_sym_boolean] = ACTIONS(636), + [anon_sym_string] = ACTIONS(636), + [anon_sym_symbol] = ACTIONS(636), + [anon_sym_object] = ACTIONS(636), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [47] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(883), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(2161), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3735), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [52] = { + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(850), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(2171), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4526), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(612), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(616), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(618), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(620), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(622), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(624), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(626), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26602,10 +30743,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(630), + [anon_sym_function] = ACTIONS(632), + [anon_sym_new] = ACTIONS(634), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26627,124 +30768,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), + [anon_sym_static] = ACTIONS(636), + [anon_sym_readonly] = ACTIONS(636), + [anon_sym_get] = ACTIONS(636), + [anon_sym_set] = ACTIONS(636), + [anon_sym_declare] = ACTIONS(638), + [anon_sym_public] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_override] = ACTIONS(636), + [anon_sym_module] = ACTIONS(640), + [anon_sym_any] = ACTIONS(636), + [anon_sym_number] = ACTIONS(636), + [anon_sym_boolean] = ACTIONS(636), + [anon_sym_string] = ACTIONS(636), + [anon_sym_symbol] = ACTIONS(636), + [anon_sym_object] = ACTIONS(636), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(858), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(2161), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3735), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [53] = { + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(809), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(2171), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4526), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(612), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(616), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(618), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(620), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(622), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(624), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(626), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -26758,10 +30899,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(630), + [anon_sym_function] = ACTIONS(632), + [anon_sym_new] = ACTIONS(634), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26783,106 +30924,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), + [anon_sym_static] = ACTIONS(636), + [anon_sym_readonly] = ACTIONS(636), + [anon_sym_get] = ACTIONS(636), + [anon_sym_set] = ACTIONS(636), + [anon_sym_declare] = ACTIONS(638), + [anon_sym_public] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_override] = ACTIONS(636), + [anon_sym_module] = ACTIONS(640), + [anon_sym_any] = ACTIONS(636), + [anon_sym_number] = ACTIONS(636), + [anon_sym_boolean] = ACTIONS(636), + [anon_sym_string] = ACTIONS(636), + [anon_sym_symbol] = ACTIONS(636), + [anon_sym_object] = ACTIONS(636), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(788), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3794), + [54] = { + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(882), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4244), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26960,571 +31101,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [50] = { - [sym_import] = STATE(3332), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4297), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(4122), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4707), - [sym_optional_tuple_parameter] = STATE(4707), - [sym_optional_type] = STATE(4707), - [sym_rest_type] = STATE(4707), - [sym__tuple_type_member] = STATE(4707), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(646), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [51] = { - [sym_import] = STATE(3332), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4297), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(4122), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4707), - [sym_optional_tuple_parameter] = STATE(4707), - [sym_optional_type] = STATE(4707), - [sym_rest_type] = STATE(4707), - [sym__tuple_type_member] = STATE(4707), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(648), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [52] = { - [sym_import] = STATE(3332), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4297), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(4122), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4707), - [sym_optional_tuple_parameter] = STATE(4707), - [sym_optional_type] = STATE(4707), - [sym_rest_type] = STATE(4707), - [sym__tuple_type_member] = STATE(4707), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(650), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [53] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(815), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3794), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [55] = { + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(882), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(2171), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4526), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(612), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(616), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(618), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(620), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(622), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(624), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(45), + [anon_sym_while] = ACTIONS(626), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -27538,10 +31211,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(630), + [anon_sym_function] = ACTIONS(632), + [anon_sym_new] = ACTIONS(634), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27563,904 +31236,592 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), + [anon_sym_static] = ACTIONS(636), + [anon_sym_readonly] = ACTIONS(636), + [anon_sym_get] = ACTIONS(636), + [anon_sym_set] = ACTIONS(636), + [anon_sym_declare] = ACTIONS(638), + [anon_sym_public] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_override] = ACTIONS(636), + [anon_sym_module] = ACTIONS(640), + [anon_sym_any] = ACTIONS(636), + [anon_sym_number] = ACTIONS(636), + [anon_sym_boolean] = ACTIONS(636), + [anon_sym_string] = ACTIONS(636), + [anon_sym_symbol] = ACTIONS(636), + [anon_sym_object] = ACTIONS(636), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [54] = { - [sym_import] = STATE(3332), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4297), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(4122), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4707), - [sym_optional_tuple_parameter] = STATE(4707), - [sym_optional_type] = STATE(4707), - [sym_rest_type] = STATE(4707), - [sym__tuple_type_member] = STATE(4707), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(652), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [55] = { - [sym_import] = STATE(3332), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4297), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(4122), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4707), - [sym_optional_tuple_parameter] = STATE(4707), - [sym_optional_type] = STATE(4707), - [sym_rest_type] = STATE(4707), - [sym__tuple_type_member] = STATE(4707), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(654), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, [56] = { - [sym_import] = STATE(3332), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4297), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(4122), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4707), - [sym_optional_tuple_parameter] = STATE(4707), - [sym_optional_type] = STATE(4707), - [sym_rest_type] = STATE(4707), - [sym__tuple_type_member] = STATE(4707), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), + [sym_import] = STATE(3895), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5164), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(4819), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5604), + [sym_optional_tuple_parameter] = STATE(5604), + [sym_optional_type] = STATE(5604), + [sym_rest_type] = STATE(5604), + [sym__tuple_type_member] = STATE(5604), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6050), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(544), + [anon_sym_export] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(552), [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(564), [anon_sym_RBRACK] = ACTIONS(656), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(570), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(594), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(596), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(600), + [anon_sym_number] = ACTIONS(600), + [anon_sym_boolean] = ACTIONS(600), + [anon_sym_string] = ACTIONS(600), + [anon_sym_symbol] = ACTIONS(600), + [anon_sym_object] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [57] = { - [sym_import] = STATE(3332), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1869), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4669), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4297), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(4122), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4707), - [sym_optional_tuple_parameter] = STATE(4707), - [sym_optional_type] = STATE(4707), - [sym_rest_type] = STATE(4707), - [sym__tuple_type_member] = STATE(4707), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4681), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), + [sym_import] = STATE(3895), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5164), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(4819), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5604), + [sym_optional_tuple_parameter] = STATE(5604), + [sym_optional_type] = STATE(5604), + [sym_rest_type] = STATE(5604), + [sym__tuple_type_member] = STATE(5604), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6050), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(544), + [anon_sym_export] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(552), [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(564), [anon_sym_RBRACK] = ACTIONS(658), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(570), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(594), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(596), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(600), + [anon_sym_number] = ACTIONS(600), + [anon_sym_boolean] = ACTIONS(600), + [anon_sym_string] = ACTIONS(600), + [anon_sym_symbol] = ACTIONS(600), + [anon_sym_object] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [58] = { - [sym_import] = STATE(3332), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4297), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(4122), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4707), - [sym_optional_tuple_parameter] = STATE(4707), - [sym_optional_type] = STATE(4707), - [sym_rest_type] = STATE(4707), - [sym__tuple_type_member] = STATE(4707), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), + [sym_import] = STATE(3895), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1908), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(5466), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5164), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(4819), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5604), + [sym_optional_tuple_parameter] = STATE(5604), + [sym_optional_type] = STATE(5604), + [sym_rest_type] = STATE(5604), + [sym__tuple_type_member] = STATE(5604), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6050), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(5467), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(544), + [anon_sym_export] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(552), [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(564), [anon_sym_RBRACK] = ACTIONS(660), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(570), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(594), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(596), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(600), + [anon_sym_number] = ACTIONS(600), + [anon_sym_boolean] = ACTIONS(600), + [anon_sym_string] = ACTIONS(600), + [anon_sym_symbol] = ACTIONS(600), + [anon_sym_object] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [59] = { - [sym_export_statement] = STATE(847), - [sym_declaration] = STATE(847), - [sym_import] = STATE(3432), - [sym_import_statement] = STATE(847), - [sym_statement] = STATE(5551), - [sym_expression_statement] = STATE(847), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_statement_block] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_for_in_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_with_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_debugger_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_empty_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(2161), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3735), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(837), + [sym_declaration] = STATE(837), + [sym_import] = STATE(3814), + [sym_import_statement] = STATE(837), + [sym_statement] = STATE(857), + [sym_expression_statement] = STATE(837), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_statement_block] = STATE(837), + [sym_if_statement] = STATE(837), + [sym_switch_statement] = STATE(837), + [sym_for_statement] = STATE(837), + [sym_for_in_statement] = STATE(837), + [sym_while_statement] = STATE(837), + [sym_do_statement] = STATE(837), + [sym_try_statement] = STATE(837), + [sym_with_statement] = STATE(837), + [sym_break_statement] = STATE(837), + [sym_continue_statement] = STATE(837), + [sym_debugger_statement] = STATE(837), + [sym_return_statement] = STATE(837), + [sym_throw_statement] = STATE(837), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(837), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(2171), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4526), + [sym_identifier] = ACTIONS(608), + [anon_sym_export] = ACTIONS(610), + [anon_sym_type] = ACTIONS(612), + [anon_sym_namespace] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(616), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(618), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(620), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(622), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(624), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(626), [anon_sym_do] = ACTIONS(47), [anon_sym_try] = ACTIONS(49), [anon_sym_break] = ACTIONS(51), @@ -28474,10 +31835,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(630), + [anon_sym_function] = ACTIONS(632), + [anon_sym_new] = ACTIONS(634), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -28499,73 +31860,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), + [anon_sym_static] = ACTIONS(636), + [anon_sym_readonly] = ACTIONS(636), + [anon_sym_get] = ACTIONS(636), + [anon_sym_set] = ACTIONS(636), + [anon_sym_declare] = ACTIONS(638), + [anon_sym_public] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_override] = ACTIONS(636), + [anon_sym_module] = ACTIONS(640), + [anon_sym_any] = ACTIONS(636), + [anon_sym_number] = ACTIONS(636), + [anon_sym_boolean] = ACTIONS(636), + [anon_sym_string] = ACTIONS(636), + [anon_sym_symbol] = ACTIONS(636), + [anon_sym_object] = ACTIONS(636), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [60] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1282), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1797), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1282), - [sym_subscript_expression] = STATE(1282), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1282), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1310), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1749), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1310), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -28574,20 +31935,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(141), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), [anon_sym_DQUOTE] = ACTIONS(69), @@ -28596,24 +31957,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(681), [anon_sym_function] = ACTIONS(683), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(687), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -28622,29 +31983,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -28670,56 +32031,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [61] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1282), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1797), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1282), - [sym_subscript_expression] = STATE(1282), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1282), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [aux_sym_object_repeat1] = STATE(4937), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1310), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1749), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1310), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [aux_sym_object_repeat1] = STATE(5516), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -28728,20 +32089,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(141), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), [anon_sym_DQUOTE] = ACTIONS(69), @@ -28750,24 +32111,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(681), [anon_sym_function] = ACTIONS(683), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(687), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -28776,29 +32137,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -28824,56 +32185,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [62] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1282), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1797), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1282), - [sym_subscript_expression] = STATE(1282), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1282), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1310), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1749), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1310), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -28882,20 +32243,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(141), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), [anon_sym_DQUOTE] = ACTIONS(69), @@ -28904,24 +32265,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(681), [anon_sym_function] = ACTIONS(683), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(687), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -28930,29 +32291,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -28978,104 +32339,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4009), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3751), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1543), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5260), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5260), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym__formal_parameter] = STATE(5463), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5260), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7352), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(5022), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym_accessibility_modifier] = STATE(269), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(5463), + [sym_optional_parameter] = STATE(5463), + [sym__parameter_name] = STATE(3979), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5358), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(378), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(699), + [anon_sym_export] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(701), + [anon_sym_namespace] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(701), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(717), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(719), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(721), + [anon_sym_using] = ACTIONS(723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(731), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(737), + [sym_number] = ACTIONS(739), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(743), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_null] = ACTIONS(745), + [sym_undefined] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), + [anon_sym_static] = ACTIONS(701), + [anon_sym_readonly] = ACTIONS(751), + [anon_sym_get] = ACTIONS(701), + [anon_sym_set] = ACTIONS(701), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(701), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(757), + [anon_sym_module] = ACTIONS(701), + [anon_sym_any] = ACTIONS(759), + [anon_sym_number] = ACTIONS(759), + [anon_sym_boolean] = ACTIONS(759), + [anon_sym_string] = ACTIONS(759), + [anon_sym_symbol] = ACTIONS(759), + [anon_sym_object] = ACTIONS(759), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym_html_comment] = ACTIONS(5), + }, + [64] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5075), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(706), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(768), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -29084,41 +32598,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(714), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(719), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(776), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(781), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_QMARK] = ACTIONS(785), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -29132,103 +32646,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [64] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4009), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [65] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5075), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(706), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(128), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(768), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -29237,41 +32751,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(714), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(719), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(776), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(781), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_QMARK] = ACTIONS(785), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -29285,256 +32799,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [65] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1520), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4012), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4012), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym__formal_parameter] = STATE(4675), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4012), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5538), - [sym_string] = STATE(2263), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1327), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym_accessibility_modifier] = STATE(287), + [66] = { + [sym_import] = STATE(3751), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1608), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5260), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5260), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym__formal_parameter] = STATE(5463), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5260), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7180), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(5022), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(4675), - [sym_optional_parameter] = STATE(4675), - [sym__parameter_name] = STATE(3647), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4401), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(379), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), + [sym_required_parameter] = STATE(5463), + [sym_optional_parameter] = STATE(5463), + [sym__parameter_name] = STATE(3979), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5358), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(378), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(725), - [anon_sym_export] = ACTIONS(727), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(727), - [anon_sym_namespace] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(727), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(743), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(745), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(747), - [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_SLASH] = ACTIONS(616), + [sym_identifier] = ACTIONS(699), + [anon_sym_export] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(701), + [anon_sym_namespace] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(701), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(717), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(719), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(721), + [anon_sym_using] = ACTIONS(723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(757), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(763), - [sym_number] = ACTIONS(765), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(769), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(771), - [sym_false] = ACTIONS(771), - [sym_null] = ACTIONS(771), - [sym_undefined] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_static] = ACTIONS(727), - [anon_sym_readonly] = ACTIONS(777), - [anon_sym_get] = ACTIONS(727), - [anon_sym_set] = ACTIONS(727), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(727), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(783), - [anon_sym_module] = ACTIONS(727), - [anon_sym_any] = ACTIONS(785), - [anon_sym_number] = ACTIONS(785), - [anon_sym_boolean] = ACTIONS(785), - [anon_sym_string] = ACTIONS(785), - [anon_sym_symbol] = ACTIONS(785), - [anon_sym_object] = ACTIONS(785), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(731), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(737), + [sym_number] = ACTIONS(739), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(743), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_null] = ACTIONS(745), + [sym_undefined] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), + [anon_sym_static] = ACTIONS(701), + [anon_sym_readonly] = ACTIONS(751), + [anon_sym_get] = ACTIONS(701), + [anon_sym_set] = ACTIONS(701), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(701), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(757), + [anon_sym_module] = ACTIONS(701), + [anon_sym_any] = ACTIONS(759), + [anon_sym_number] = ACTIONS(759), + [anon_sym_boolean] = ACTIONS(759), + [anon_sym_string] = ACTIONS(759), + [anon_sym_symbol] = ACTIONS(759), + [anon_sym_object] = ACTIONS(759), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, - [66] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(3916), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [67] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(4875), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(706), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(768), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -29543,41 +33057,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(714), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(776), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(787), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_QMARK] = ACTIONS(785), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -29591,103 +33105,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [67] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(3922), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [68] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(4879), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(706), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(768), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -29696,41 +33210,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(714), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(776), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(789), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_QMARK] = ACTIONS(785), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -29744,256 +33258,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [68] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1567), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4012), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4012), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym__formal_parameter] = STATE(4675), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4012), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5462), - [sym_string] = STATE(2263), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1327), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym_accessibility_modifier] = STATE(287), - [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(4675), - [sym_optional_parameter] = STATE(4675), - [sym__parameter_name] = STATE(3647), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4401), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(379), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(725), - [anon_sym_export] = ACTIONS(727), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(727), - [anon_sym_namespace] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(727), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(743), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(745), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(747), - [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(757), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(763), - [sym_number] = ACTIONS(765), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(769), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(771), - [sym_false] = ACTIONS(771), - [sym_null] = ACTIONS(771), - [sym_undefined] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_static] = ACTIONS(727), - [anon_sym_readonly] = ACTIONS(777), - [anon_sym_get] = ACTIONS(727), - [anon_sym_set] = ACTIONS(727), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(727), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(783), - [anon_sym_module] = ACTIONS(727), - [anon_sym_any] = ACTIONS(785), - [anon_sym_number] = ACTIONS(785), - [anon_sym_boolean] = ACTIONS(785), - [anon_sym_string] = ACTIONS(785), - [anon_sym_symbol] = ACTIONS(785), - [anon_sym_object] = ACTIONS(785), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [69] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4064), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(4651), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(706), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(768), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -30002,41 +33363,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(714), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(776), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(791), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_QMARK] = ACTIONS(785), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -30050,103 +33411,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(3894), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(4659), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(706), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(768), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -30155,41 +33516,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(714), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(776), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(793), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_QMARK] = ACTIONS(785), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -30203,103 +33564,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(3898), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(4871), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(706), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(768), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -30308,41 +33669,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(714), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(776), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(795), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_QMARK] = ACTIONS(785), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -30356,103 +33717,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(3888), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3751), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1608), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5260), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5260), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym__formal_parameter] = STATE(5463), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5260), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7180), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(5022), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym_accessibility_modifier] = STATE(269), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(5463), + [sym_optional_parameter] = STATE(5463), + [sym__parameter_name] = STATE(3979), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5279), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(378), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(699), + [anon_sym_export] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(701), + [anon_sym_namespace] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(707), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(701), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(717), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(719), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(721), + [anon_sym_using] = ACTIONS(723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(731), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(737), + [sym_number] = ACTIONS(739), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(743), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_null] = ACTIONS(745), + [sym_undefined] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), + [anon_sym_static] = ACTIONS(701), + [anon_sym_readonly] = ACTIONS(751), + [anon_sym_get] = ACTIONS(701), + [anon_sym_set] = ACTIONS(701), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(701), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(757), + [anon_sym_module] = ACTIONS(701), + [anon_sym_any] = ACTIONS(759), + [anon_sym_number] = ACTIONS(759), + [anon_sym_boolean] = ACTIONS(759), + [anon_sym_string] = ACTIONS(759), + [anon_sym_symbol] = ACTIONS(759), + [anon_sym_object] = ACTIONS(759), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym_html_comment] = ACTIONS(5), + }, + [73] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(4665), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(706), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(768), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -30461,41 +33975,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_SLASH] = ACTIONS(178), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(714), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(776), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(797), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_QMARK] = ACTIONS(785), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), @@ -30509,711 +34023,558 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [73] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1567), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4012), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4012), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym__formal_parameter] = STATE(4675), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4012), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5462), - [sym_string] = STATE(2263), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1327), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym_accessibility_modifier] = STATE(287), - [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(4675), - [sym_optional_parameter] = STATE(4675), - [sym__parameter_name] = STATE(3647), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4420), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(379), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(725), - [anon_sym_export] = ACTIONS(727), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(727), - [anon_sym_namespace] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_typeof] = ACTIONS(733), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(727), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(743), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(745), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(747), - [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(757), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(763), - [sym_number] = ACTIONS(765), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(769), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(771), - [sym_false] = ACTIONS(771), - [sym_null] = ACTIONS(771), - [sym_undefined] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_static] = ACTIONS(727), - [anon_sym_readonly] = ACTIONS(777), - [anon_sym_get] = ACTIONS(727), - [anon_sym_set] = ACTIONS(727), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(727), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(783), - [anon_sym_module] = ACTIONS(727), - [anon_sym_any] = ACTIONS(785), - [anon_sym_number] = ACTIONS(785), - [anon_sym_boolean] = ACTIONS(785), - [anon_sym_string] = ACTIONS(785), - [anon_sym_symbol] = ACTIONS(785), - [anon_sym_object] = ACTIONS(785), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(809), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(809), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [75] = { - [sym_import] = STATE(3299), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(4675), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3795), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(5463), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(5022), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(4675), - [sym_optional_parameter] = STATE(4675), - [sym__parameter_name] = STATE(3647), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4401), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(520), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), + [sym_required_parameter] = STATE(5463), + [sym_optional_parameter] = STATE(5463), + [sym__parameter_name] = STATE(3979), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5354), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(571), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(548), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(146), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(164), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(176), + [anon_sym_DASH] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(827), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(799), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(829), + [anon_sym_readonly] = ACTIONS(801), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(753), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_any] = ACTIONS(208), + [anon_sym_number] = ACTIONS(208), + [anon_sym_boolean] = ACTIONS(208), + [anon_sym_string] = ACTIONS(208), + [anon_sym_symbol] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_import] = STATE(3299), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(4675), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym_accessibility_modifier] = STATE(287), + [75] = { + [sym_import] = STATE(3795), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(5463), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(5022), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(4675), - [sym_optional_parameter] = STATE(4675), - [sym__parameter_name] = STATE(3647), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4419), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(520), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), + [sym_required_parameter] = STATE(5463), + [sym_optional_parameter] = STATE(5463), + [sym__parameter_name] = STATE(3979), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5279), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(571), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(548), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(146), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(164), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(176), + [anon_sym_DASH] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(827), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(799), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(829), + [anon_sym_readonly] = ACTIONS(801), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(753), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_any] = ACTIONS(208), + [anon_sym_number] = ACTIONS(208), + [anon_sym_boolean] = ACTIONS(208), + [anon_sym_string] = ACTIONS(208), + [anon_sym_symbol] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym_html_comment] = ACTIONS(5), + }, + [76] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_await] = ACTIONS(142), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(817), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(817), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [77] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(128), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(225), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -31222,557 +34583,557 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(785), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [78] = { - [sym_import] = STATE(3299), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(4675), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3795), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(5463), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(5022), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(4675), - [sym_optional_parameter] = STATE(4675), - [sym__parameter_name] = STATE(3647), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4420), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(520), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), + [sym_required_parameter] = STATE(5463), + [sym_optional_parameter] = STATE(5463), + [sym__parameter_name] = STATE(3979), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5292), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(571), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(548), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(146), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(164), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(176), + [anon_sym_DASH] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(827), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(799), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(829), + [anon_sym_readonly] = ACTIONS(801), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(753), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_any] = ACTIONS(208), + [anon_sym_number] = ACTIONS(208), + [anon_sym_boolean] = ACTIONS(208), + [anon_sym_string] = ACTIONS(208), + [anon_sym_symbol] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [79] = { - [sym_import] = STATE(3299), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(4675), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3795), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(5463), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(5022), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(4675), - [sym_optional_parameter] = STATE(4675), - [sym__parameter_name] = STATE(3647), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4382), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(520), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), + [sym_required_parameter] = STATE(5463), + [sym_optional_parameter] = STATE(5463), + [sym__parameter_name] = STATE(3979), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5313), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(571), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(548), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(146), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(164), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(176), + [anon_sym_DASH] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(827), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(799), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(829), + [anon_sym_readonly] = ACTIONS(801), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(753), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_any] = ACTIONS(208), + [anon_sym_number] = ACTIONS(208), + [anon_sym_boolean] = ACTIONS(208), + [anon_sym_string] = ACTIONS(208), + [anon_sym_symbol] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [80] = { - [sym_import] = STATE(3299), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(4675), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3795), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(5463), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(5022), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(4675), - [sym_optional_parameter] = STATE(4675), - [sym__parameter_name] = STATE(3647), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4489), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(520), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), + [sym_required_parameter] = STATE(5463), + [sym_optional_parameter] = STATE(5463), + [sym__parameter_name] = STATE(3979), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5358), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(571), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(548), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(146), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(164), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(176), + [anon_sym_DASH] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(827), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(799), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(829), + [anon_sym_readonly] = ACTIONS(801), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(753), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_any] = ACTIONS(208), + [anon_sym_number] = ACTIONS(208), + [anon_sym_boolean] = ACTIONS(208), + [anon_sym_string] = ACTIONS(208), + [anon_sym_symbol] = ACTIONS(208), + [anon_sym_object] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [81] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1282), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1797), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1282), - [sym_subscript_expression] = STATE(1282), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1282), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(835), [anon_sym_export] = ACTIONS(837), [anon_sym_STAR] = ACTIONS(122), @@ -31780,46 +35141,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(837), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(162), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(843), - [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(845), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(847), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(847), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(851), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -31828,35 +35190,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(837), [anon_sym_readonly] = ACTIONS(837), @@ -31875,75 +35237,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(837), [anon_sym_object] = ACTIONS(837), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [82] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1282), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1797), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1282), - [sym_subscript_expression] = STATE(1282), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1282), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1310), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1749), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1310), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(141), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), [anon_sym_DQUOTE] = ACTIONS(69), @@ -31952,24 +35313,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(681), [anon_sym_function] = ACTIONS(683), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(687), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -31978,29 +35339,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -32025,101 +35386,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [83] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -32128,122 +35489,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(785), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [84] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1282), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1797), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1282), - [sym_subscript_expression] = STATE(1282), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1282), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1310), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1749), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1310), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_await] = ACTIONS(142), + [anon_sym_in] = ACTIONS(857), + [anon_sym_of] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), [anon_sym_DQUOTE] = ACTIONS(69), @@ -32252,24 +35613,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(681), [anon_sym_function] = ACTIONS(683), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(687), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -32278,29 +35639,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -32325,75 +35686,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [85] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1282), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1797), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1282), - [sym_subscript_expression] = STATE(1282), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1282), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_await] = ACTIONS(142), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(128), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(868), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(870), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(864), + [anon_sym_readonly] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_QMARK] = ACTIONS(785), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_override] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [anon_sym_object] = ACTIONS(864), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [86] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1310), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1749), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1310), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(141), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), [anon_sym_DQUOTE] = ACTIONS(69), @@ -32402,24 +35913,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(681), [anon_sym_function] = ACTIONS(683), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(687), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -32428,29 +35939,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -32475,252 +35986,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [86] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(855), - [anon_sym_export] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(857), - [anon_sym_readonly] = ACTIONS(857), - [anon_sym_get] = ACTIONS(857), - [anon_sym_set] = ACTIONS(857), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(857), - [anon_sym_public] = ACTIONS(857), - [anon_sym_private] = ACTIONS(857), - [anon_sym_protected] = ACTIONS(857), - [anon_sym_override] = ACTIONS(857), - [anon_sym_module] = ACTIONS(857), - [anon_sym_any] = ACTIONS(857), - [anon_sym_number] = ACTIONS(857), - [anon_sym_boolean] = ACTIONS(857), - [anon_sym_string] = ACTIONS(857), - [anon_sym_symbol] = ACTIONS(857), - [anon_sym_object] = ACTIONS(857), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [87] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(871), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(871), - [anon_sym_EQ] = ACTIONS(873), + [anon_sym_type] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(162), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(877), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(881), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(847), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(851), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -32729,121 +36090,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(871), - [anon_sym_readonly] = ACTIONS(871), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [anon_sym_declare] = ACTIONS(871), - [anon_sym_public] = ACTIONS(871), - [anon_sym_private] = ACTIONS(871), - [anon_sym_protected] = ACTIONS(871), - [anon_sym_override] = ACTIONS(871), - [anon_sym_module] = ACTIONS(871), - [anon_sym_any] = ACTIONS(871), - [anon_sym_number] = ACTIONS(871), - [anon_sym_boolean] = ACTIONS(871), - [anon_sym_string] = ACTIONS(871), - [anon_sym_symbol] = ACTIONS(871), - [anon_sym_object] = ACTIONS(871), + [anon_sym_static] = ACTIONS(837), + [anon_sym_readonly] = ACTIONS(837), + [anon_sym_get] = ACTIONS(837), + [anon_sym_set] = ACTIONS(837), + [anon_sym_declare] = ACTIONS(837), + [anon_sym_public] = ACTIONS(837), + [anon_sym_private] = ACTIONS(837), + [anon_sym_protected] = ACTIONS(837), + [anon_sym_override] = ACTIONS(837), + [anon_sym_module] = ACTIONS(837), + [anon_sym_any] = ACTIONS(837), + [anon_sym_number] = ACTIONS(837), + [anon_sym_boolean] = ACTIONS(837), + [anon_sym_string] = ACTIONS(837), + [anon_sym_symbol] = ACTIONS(837), + [anon_sym_object] = ACTIONS(837), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1282), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1797), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1282), - [sym_subscript_expression] = STATE(1282), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1282), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1310), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1749), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1310), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(883), - [anon_sym_of] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_await] = ACTIONS(142), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), [anon_sym_DQUOTE] = ACTIONS(69), @@ -32852,24 +36213,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(681), [anon_sym_function] = ACTIONS(683), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(687), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -32878,29 +36239,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -32925,101 +36286,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), + [anon_sym_type] = ACTIONS(864), [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(868), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(870), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -33028,148 +36389,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(864), + [anon_sym_readonly] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_QMARK] = ACTIONS(785), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_override] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [anon_sym_object] = ACTIONS(864), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [90] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1282), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1797), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1282), - [sym_subscript_expression] = STATE(1282), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1282), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(837), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1310), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1749), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1310), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(874), + [anon_sym_export] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(839), + [anon_sym_type] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(878), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(841), + [anon_sym_namespace] = ACTIONS(880), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(837), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(876), + [anon_sym_BANG] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(141), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(843), + [anon_sym_async] = ACTIONS(882), [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(845), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(847), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(886), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -33178,29 +36539,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -33208,118 +36569,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(691), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(837), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(837), - [anon_sym_set] = ACTIONS(837), - [anon_sym_declare] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_override] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_any] = ACTIONS(837), - [anon_sym_number] = ACTIONS(837), - [anon_sym_boolean] = ACTIONS(837), - [anon_sym_string] = ACTIONS(837), - [anon_sym_symbol] = ACTIONS(837), - [anon_sym_object] = ACTIONS(837), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_override] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), + [anon_sym_object] = ACTIONS(876), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [91] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(845), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -33328,149 +36689,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [92] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(871), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(871), - [anon_sym_EQ] = ACTIONS(873), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_of] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(877), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(881), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -33479,421 +36839,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(871), - [anon_sym_readonly] = ACTIONS(871), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [anon_sym_declare] = ACTIONS(871), - [anon_sym_public] = ACTIONS(871), - [anon_sym_private] = ACTIONS(871), - [anon_sym_protected] = ACTIONS(871), - [anon_sym_override] = ACTIONS(871), - [anon_sym_module] = ACTIONS(871), - [anon_sym_any] = ACTIONS(871), - [anon_sym_number] = ACTIONS(871), - [anon_sym_boolean] = ACTIONS(871), - [anon_sym_string] = ACTIONS(871), - [anon_sym_symbol] = ACTIONS(871), - [anon_sym_object] = ACTIONS(871), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(855), - [anon_sym_export] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(857), - [anon_sym_readonly] = ACTIONS(857), - [anon_sym_get] = ACTIONS(857), - [anon_sym_set] = ACTIONS(857), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(857), - [anon_sym_public] = ACTIONS(857), - [anon_sym_private] = ACTIONS(857), - [anon_sym_protected] = ACTIONS(857), - [anon_sym_override] = ACTIONS(857), - [anon_sym_module] = ACTIONS(857), - [anon_sym_any] = ACTIONS(857), - [anon_sym_number] = ACTIONS(857), - [anon_sym_boolean] = ACTIONS(857), - [anon_sym_string] = ACTIONS(857), - [anon_sym_symbol] = ACTIONS(857), - [anon_sym_object] = ACTIONS(857), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [94] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [95] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1282), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1797), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1282), - [sym_subscript_expression] = STATE(1282), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1282), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1310), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1749), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1310), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(141), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(888), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), [anon_sym_DQUOTE] = ACTIONS(69), @@ -33902,24 +36963,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(681), [anon_sym_function] = ACTIONS(683), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(687), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -33928,29 +36989,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -33975,101 +37036,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [96] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(871), + [94] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1310), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1749), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1310), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(874), + [anon_sym_export] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(871), - [anon_sym_EQ] = ACTIONS(873), + [anon_sym_type] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(878), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(876), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(890), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_of] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(877), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(881), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(882), + [anon_sym_function] = ACTIONS(683), + [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(886), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34078,147 +37139,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(691), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(871), - [anon_sym_readonly] = ACTIONS(871), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [anon_sym_declare] = ACTIONS(871), - [anon_sym_public] = ACTIONS(871), - [anon_sym_private] = ACTIONS(871), - [anon_sym_protected] = ACTIONS(871), - [anon_sym_override] = ACTIONS(871), - [anon_sym_module] = ACTIONS(871), - [anon_sym_any] = ACTIONS(871), - [anon_sym_number] = ACTIONS(871), - [anon_sym_boolean] = ACTIONS(871), - [anon_sym_string] = ACTIONS(871), - [anon_sym_symbol] = ACTIONS(871), - [anon_sym_object] = ACTIONS(871), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_override] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), + [anon_sym_object] = ACTIONS(876), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [97] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [95] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(162), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34227,147 +37290,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [98] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(855), - [anon_sym_export] = ACTIONS(857), + [96] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(893), + [anon_sym_type] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(162), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(868), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(870), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34376,147 +37439,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(857), - [anon_sym_readonly] = ACTIONS(857), - [anon_sym_get] = ACTIONS(857), - [anon_sym_set] = ACTIONS(857), - [anon_sym_declare] = ACTIONS(857), - [anon_sym_public] = ACTIONS(857), - [anon_sym_private] = ACTIONS(857), - [anon_sym_protected] = ACTIONS(857), - [anon_sym_override] = ACTIONS(857), - [anon_sym_module] = ACTIONS(857), - [anon_sym_any] = ACTIONS(857), - [anon_sym_number] = ACTIONS(857), - [anon_sym_boolean] = ACTIONS(857), - [anon_sym_string] = ACTIONS(857), - [anon_sym_symbol] = ACTIONS(857), - [anon_sym_object] = ACTIONS(857), + [anon_sym_static] = ACTIONS(864), + [anon_sym_readonly] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_override] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [anon_sym_object] = ACTIONS(864), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [99] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(871), + [97] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(871), - [anon_sym_EQ] = ACTIONS(873), + [anon_sym_type] = ACTIONS(894), + [anon_sym_EQ] = ACTIONS(896), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(890), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(128), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(877), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(881), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(903), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(907), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34525,147 +37588,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(871), - [anon_sym_readonly] = ACTIONS(871), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [anon_sym_declare] = ACTIONS(871), - [anon_sym_public] = ACTIONS(871), - [anon_sym_private] = ACTIONS(871), - [anon_sym_protected] = ACTIONS(871), - [anon_sym_override] = ACTIONS(871), - [anon_sym_module] = ACTIONS(871), - [anon_sym_any] = ACTIONS(871), - [anon_sym_number] = ACTIONS(871), - [anon_sym_boolean] = ACTIONS(871), - [anon_sym_string] = ACTIONS(871), - [anon_sym_symbol] = ACTIONS(871), - [anon_sym_object] = ACTIONS(871), + [anon_sym_static] = ACTIONS(894), + [anon_sym_readonly] = ACTIONS(894), + [anon_sym_get] = ACTIONS(894), + [anon_sym_set] = ACTIONS(894), + [anon_sym_declare] = ACTIONS(894), + [anon_sym_public] = ACTIONS(894), + [anon_sym_private] = ACTIONS(894), + [anon_sym_protected] = ACTIONS(894), + [anon_sym_override] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(894), + [anon_sym_number] = ACTIONS(894), + [anon_sym_boolean] = ACTIONS(894), + [anon_sym_string] = ACTIONS(894), + [anon_sym_symbol] = ACTIONS(894), + [anon_sym_object] = ACTIONS(894), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [100] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(895), - [anon_sym_export] = ACTIONS(897), + [98] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(897), - [anon_sym_EQ] = ACTIONS(899), + [anon_sym_type] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(162), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(904), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(910), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(868), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(870), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34674,147 +37737,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(897), - [anon_sym_readonly] = ACTIONS(897), - [anon_sym_get] = ACTIONS(897), - [anon_sym_set] = ACTIONS(897), - [anon_sym_declare] = ACTIONS(897), - [anon_sym_public] = ACTIONS(897), - [anon_sym_private] = ACTIONS(897), - [anon_sym_protected] = ACTIONS(897), - [anon_sym_override] = ACTIONS(897), - [anon_sym_module] = ACTIONS(897), - [anon_sym_any] = ACTIONS(897), - [anon_sym_number] = ACTIONS(897), - [anon_sym_boolean] = ACTIONS(897), - [anon_sym_string] = ACTIONS(897), - [anon_sym_symbol] = ACTIONS(897), - [anon_sym_object] = ACTIONS(897), + [anon_sym_static] = ACTIONS(864), + [anon_sym_readonly] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_override] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [anon_sym_object] = ACTIONS(864), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [101] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(855), - [anon_sym_export] = ACTIONS(857), + [99] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(893), + [anon_sym_type] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(909), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(128), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(847), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(851), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34823,147 +37886,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(857), - [anon_sym_readonly] = ACTIONS(857), - [anon_sym_get] = ACTIONS(857), - [anon_sym_set] = ACTIONS(857), - [anon_sym_declare] = ACTIONS(857), - [anon_sym_public] = ACTIONS(857), - [anon_sym_private] = ACTIONS(857), - [anon_sym_protected] = ACTIONS(857), - [anon_sym_override] = ACTIONS(857), - [anon_sym_module] = ACTIONS(857), - [anon_sym_any] = ACTIONS(857), - [anon_sym_number] = ACTIONS(857), - [anon_sym_boolean] = ACTIONS(857), - [anon_sym_string] = ACTIONS(857), - [anon_sym_symbol] = ACTIONS(857), - [anon_sym_object] = ACTIONS(857), + [anon_sym_static] = ACTIONS(837), + [anon_sym_readonly] = ACTIONS(837), + [anon_sym_get] = ACTIONS(837), + [anon_sym_set] = ACTIONS(837), + [anon_sym_declare] = ACTIONS(837), + [anon_sym_public] = ACTIONS(837), + [anon_sym_private] = ACTIONS(837), + [anon_sym_protected] = ACTIONS(837), + [anon_sym_override] = ACTIONS(837), + [anon_sym_module] = ACTIONS(837), + [anon_sym_any] = ACTIONS(837), + [anon_sym_number] = ACTIONS(837), + [anon_sym_boolean] = ACTIONS(837), + [anon_sym_string] = ACTIONS(837), + [anon_sym_symbol] = ACTIONS(837), + [anon_sym_object] = ACTIONS(837), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [102] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(871), + [100] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(871), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(162), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(877), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(881), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34972,146 +38035,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(871), - [anon_sym_readonly] = ACTIONS(871), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [anon_sym_declare] = ACTIONS(871), - [anon_sym_public] = ACTIONS(871), - [anon_sym_private] = ACTIONS(871), - [anon_sym_protected] = ACTIONS(871), - [anon_sym_override] = ACTIONS(871), - [anon_sym_module] = ACTIONS(871), - [anon_sym_any] = ACTIONS(871), - [anon_sym_number] = ACTIONS(871), - [anon_sym_boolean] = ACTIONS(871), - [anon_sym_string] = ACTIONS(871), - [anon_sym_symbol] = ACTIONS(871), - [anon_sym_object] = ACTIONS(871), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(895), - [anon_sym_export] = ACTIONS(897), + [101] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(897), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_type] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(912), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(817), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(912), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(910), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(847), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(851), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35120,145 +38184,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(897), - [anon_sym_readonly] = ACTIONS(897), - [anon_sym_get] = ACTIONS(897), - [anon_sym_set] = ACTIONS(897), - [anon_sym_declare] = ACTIONS(897), - [anon_sym_public] = ACTIONS(897), - [anon_sym_private] = ACTIONS(897), - [anon_sym_protected] = ACTIONS(897), - [anon_sym_override] = ACTIONS(897), - [anon_sym_module] = ACTIONS(897), - [anon_sym_any] = ACTIONS(897), - [anon_sym_number] = ACTIONS(897), - [anon_sym_boolean] = ACTIONS(897), - [anon_sym_string] = ACTIONS(897), - [anon_sym_symbol] = ACTIONS(897), - [anon_sym_object] = ACTIONS(897), + [anon_sym_static] = ACTIONS(837), + [anon_sym_readonly] = ACTIONS(837), + [anon_sym_get] = ACTIONS(837), + [anon_sym_set] = ACTIONS(837), + [anon_sym_declare] = ACTIONS(837), + [anon_sym_public] = ACTIONS(837), + [anon_sym_private] = ACTIONS(837), + [anon_sym_protected] = ACTIONS(837), + [anon_sym_override] = ACTIONS(837), + [anon_sym_module] = ACTIONS(837), + [anon_sym_any] = ACTIONS(837), + [anon_sym_number] = ACTIONS(837), + [anon_sym_boolean] = ACTIONS(837), + [anon_sym_string] = ACTIONS(837), + [anon_sym_symbol] = ACTIONS(837), + [anon_sym_object] = ACTIONS(837), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [102] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(839), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_in] = ACTIONS(122), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(912), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(847), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(851), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(837), + [anon_sym_readonly] = ACTIONS(837), + [anon_sym_get] = ACTIONS(837), + [anon_sym_set] = ACTIONS(837), + [anon_sym_declare] = ACTIONS(837), + [anon_sym_public] = ACTIONS(837), + [anon_sym_private] = ACTIONS(837), + [anon_sym_protected] = ACTIONS(837), + [anon_sym_override] = ACTIONS(837), + [anon_sym_module] = ACTIONS(837), + [anon_sym_any] = ACTIONS(837), + [anon_sym_number] = ACTIONS(837), + [anon_sym_boolean] = ACTIONS(837), + [anon_sym_string] = ACTIONS(837), + [anon_sym_symbol] = ACTIONS(837), + [anon_sym_object] = ACTIONS(837), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [103] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5169), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6383), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_in] = ACTIONS(122), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(847), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(851), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(837), + [anon_sym_readonly] = ACTIONS(837), + [anon_sym_get] = ACTIONS(837), + [anon_sym_set] = ACTIONS(837), + [anon_sym_declare] = ACTIONS(837), + [anon_sym_public] = ACTIONS(837), + [anon_sym_private] = ACTIONS(837), + [anon_sym_protected] = ACTIONS(837), + [anon_sym_override] = ACTIONS(837), + [anon_sym_module] = ACTIONS(837), + [anon_sym_any] = ACTIONS(837), + [anon_sym_number] = ACTIONS(837), + [anon_sym_boolean] = ACTIONS(837), + [anon_sym_string] = ACTIONS(837), + [anon_sym_symbol] = ACTIONS(837), + [anon_sym_object] = ACTIONS(837), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [104] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1282), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1797), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1282), - [sym_subscript_expression] = STATE(1282), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1282), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(919), - [anon_sym_export] = ACTIONS(921), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5188), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6041), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(835), + [anon_sym_export] = ACTIONS(837), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(923), + [anon_sym_type] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(909), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(921), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(128), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(927), - [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(931), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(847), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(851), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35267,147 +38629,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(921), - [anon_sym_readonly] = ACTIONS(921), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(921), - [anon_sym_declare] = ACTIONS(921), - [anon_sym_public] = ACTIONS(921), - [anon_sym_private] = ACTIONS(921), - [anon_sym_protected] = ACTIONS(921), - [anon_sym_override] = ACTIONS(921), - [anon_sym_module] = ACTIONS(921), - [anon_sym_any] = ACTIONS(921), - [anon_sym_number] = ACTIONS(921), - [anon_sym_boolean] = ACTIONS(921), - [anon_sym_string] = ACTIONS(921), - [anon_sym_symbol] = ACTIONS(921), - [anon_sym_object] = ACTIONS(921), + [anon_sym_static] = ACTIONS(837), + [anon_sym_readonly] = ACTIONS(837), + [anon_sym_get] = ACTIONS(837), + [anon_sym_set] = ACTIONS(837), + [anon_sym_declare] = ACTIONS(837), + [anon_sym_public] = ACTIONS(837), + [anon_sym_private] = ACTIONS(837), + [anon_sym_protected] = ACTIONS(837), + [anon_sym_override] = ACTIONS(837), + [anon_sym_module] = ACTIONS(837), + [anon_sym_any] = ACTIONS(837), + [anon_sym_number] = ACTIONS(837), + [anon_sym_boolean] = ACTIONS(837), + [anon_sym_string] = ACTIONS(837), + [anon_sym_symbol] = ACTIONS(837), + [anon_sym_object] = ACTIONS(837), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [105] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3956), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5358), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(871), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(915), + [anon_sym_export] = ACTIONS(917), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(871), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_type] = ACTIONS(917), + [anon_sym_EQ] = ACTIONS(919), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(877), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(881), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(923), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(925), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(927), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35416,146 +38776,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(871), - [anon_sym_readonly] = ACTIONS(871), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [anon_sym_declare] = ACTIONS(871), - [anon_sym_public] = ACTIONS(871), - [anon_sym_private] = ACTIONS(871), - [anon_sym_protected] = ACTIONS(871), - [anon_sym_override] = ACTIONS(871), - [anon_sym_module] = ACTIONS(871), - [anon_sym_any] = ACTIONS(871), - [anon_sym_number] = ACTIONS(871), - [anon_sym_boolean] = ACTIONS(871), - [anon_sym_string] = ACTIONS(871), - [anon_sym_symbol] = ACTIONS(871), - [anon_sym_object] = ACTIONS(871), + [anon_sym_static] = ACTIONS(917), + [anon_sym_readonly] = ACTIONS(917), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(917), + [anon_sym_declare] = ACTIONS(917), + [anon_sym_public] = ACTIONS(917), + [anon_sym_private] = ACTIONS(917), + [anon_sym_protected] = ACTIONS(917), + [anon_sym_override] = ACTIONS(917), + [anon_sym_module] = ACTIONS(917), + [anon_sym_any] = ACTIONS(917), + [anon_sym_number] = ACTIONS(917), + [anon_sym_boolean] = ACTIONS(917), + [anon_sym_string] = ACTIONS(917), + [anon_sym_symbol] = ACTIONS(917), + [anon_sym_object] = ACTIONS(917), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_implements] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [106] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4303), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5434), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(869), - [anon_sym_export] = ACTIONS(871), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1310), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1749), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1310), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(931), + [anon_sym_export] = ACTIONS(933), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(871), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_type] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(935), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(877), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(881), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(683), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(943), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35564,145 +38924,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(691), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(871), - [anon_sym_readonly] = ACTIONS(871), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [anon_sym_declare] = ACTIONS(871), - [anon_sym_public] = ACTIONS(871), - [anon_sym_private] = ACTIONS(871), - [anon_sym_protected] = ACTIONS(871), - [anon_sym_override] = ACTIONS(871), - [anon_sym_module] = ACTIONS(871), - [anon_sym_any] = ACTIONS(871), - [anon_sym_number] = ACTIONS(871), - [anon_sym_boolean] = ACTIONS(871), - [anon_sym_string] = ACTIONS(871), - [anon_sym_symbol] = ACTIONS(871), - [anon_sym_object] = ACTIONS(871), + [anon_sym_static] = ACTIONS(933), + [anon_sym_readonly] = ACTIONS(933), + [anon_sym_get] = ACTIONS(933), + [anon_sym_set] = ACTIONS(933), + [anon_sym_declare] = ACTIONS(933), + [anon_sym_public] = ACTIONS(933), + [anon_sym_private] = ACTIONS(933), + [anon_sym_protected] = ACTIONS(933), + [anon_sym_override] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_any] = ACTIONS(933), + [anon_sym_number] = ACTIONS(933), + [anon_sym_boolean] = ACTIONS(933), + [anon_sym_string] = ACTIONS(933), + [anon_sym_symbol] = ACTIONS(933), + [anon_sym_object] = ACTIONS(933), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [107] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(894), + [anon_sym_EQ] = ACTIONS(945), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(162), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(903), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(907), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35711,147 +39073,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(894), + [anon_sym_readonly] = ACTIONS(894), + [anon_sym_get] = ACTIONS(894), + [anon_sym_set] = ACTIONS(894), + [anon_sym_declare] = ACTIONS(894), + [anon_sym_public] = ACTIONS(894), + [anon_sym_private] = ACTIONS(894), + [anon_sym_protected] = ACTIONS(894), + [anon_sym_override] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(894), + [anon_sym_number] = ACTIONS(894), + [anon_sym_boolean] = ACTIONS(894), + [anon_sym_string] = ACTIONS(894), + [anon_sym_symbol] = ACTIONS(894), + [anon_sym_object] = ACTIONS(894), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [108] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(895), - [anon_sym_export] = ACTIONS(897), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(897), - [anon_sym_EQ] = ACTIONS(899), + [anon_sym_type] = ACTIONS(894), + [anon_sym_EQ] = ACTIONS(945), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(947), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(162), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(910), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(903), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(907), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35860,146 +39221,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(897), - [anon_sym_readonly] = ACTIONS(897), - [anon_sym_get] = ACTIONS(897), - [anon_sym_set] = ACTIONS(897), - [anon_sym_declare] = ACTIONS(897), - [anon_sym_public] = ACTIONS(897), - [anon_sym_private] = ACTIONS(897), - [anon_sym_protected] = ACTIONS(897), - [anon_sym_override] = ACTIONS(897), - [anon_sym_module] = ACTIONS(897), - [anon_sym_any] = ACTIONS(897), - [anon_sym_number] = ACTIONS(897), - [anon_sym_boolean] = ACTIONS(897), - [anon_sym_string] = ACTIONS(897), - [anon_sym_symbol] = ACTIONS(897), - [anon_sym_object] = ACTIONS(897), + [anon_sym_static] = ACTIONS(894), + [anon_sym_readonly] = ACTIONS(894), + [anon_sym_get] = ACTIONS(894), + [anon_sym_set] = ACTIONS(894), + [anon_sym_declare] = ACTIONS(894), + [anon_sym_public] = ACTIONS(894), + [anon_sym_private] = ACTIONS(894), + [anon_sym_protected] = ACTIONS(894), + [anon_sym_override] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(894), + [anon_sym_number] = ACTIONS(894), + [anon_sym_boolean] = ACTIONS(894), + [anon_sym_string] = ACTIONS(894), + [anon_sym_symbol] = ACTIONS(894), + [anon_sym_object] = ACTIONS(894), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [109] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(895), - [anon_sym_export] = ACTIONS(897), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(915), + [anon_sym_export] = ACTIONS(917), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(897), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_type] = ACTIONS(917), + [anon_sym_EQ] = ACTIONS(919), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(904), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(910), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(923), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(925), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(927), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36008,145 +39368,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(897), - [anon_sym_readonly] = ACTIONS(897), - [anon_sym_get] = ACTIONS(897), - [anon_sym_set] = ACTIONS(897), - [anon_sym_declare] = ACTIONS(897), - [anon_sym_public] = ACTIONS(897), - [anon_sym_private] = ACTIONS(897), - [anon_sym_protected] = ACTIONS(897), - [anon_sym_override] = ACTIONS(897), - [anon_sym_module] = ACTIONS(897), - [anon_sym_any] = ACTIONS(897), - [anon_sym_number] = ACTIONS(897), - [anon_sym_boolean] = ACTIONS(897), - [anon_sym_string] = ACTIONS(897), - [anon_sym_symbol] = ACTIONS(897), - [anon_sym_object] = ACTIONS(897), + [anon_sym_static] = ACTIONS(917), + [anon_sym_readonly] = ACTIONS(917), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(917), + [anon_sym_declare] = ACTIONS(917), + [anon_sym_public] = ACTIONS(917), + [anon_sym_private] = ACTIONS(917), + [anon_sym_protected] = ACTIONS(917), + [anon_sym_override] = ACTIONS(917), + [anon_sym_module] = ACTIONS(917), + [anon_sym_any] = ACTIONS(917), + [anon_sym_number] = ACTIONS(917), + [anon_sym_boolean] = ACTIONS(917), + [anon_sym_string] = ACTIONS(917), + [anon_sym_symbol] = ACTIONS(917), + [anon_sym_object] = ACTIONS(917), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_implements] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [110] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(933), - [anon_sym_export] = ACTIONS(935), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(937), + [anon_sym_type] = ACTIONS(894), + [anon_sym_EQ] = ACTIONS(896), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(128), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(941), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(943), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(945), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(903), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(907), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36155,146 +39517,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_get] = ACTIONS(935), - [anon_sym_set] = ACTIONS(935), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_public] = ACTIONS(935), - [anon_sym_private] = ACTIONS(935), - [anon_sym_protected] = ACTIONS(935), - [anon_sym_override] = ACTIONS(935), - [anon_sym_module] = ACTIONS(935), - [anon_sym_any] = ACTIONS(935), - [anon_sym_number] = ACTIONS(935), - [anon_sym_boolean] = ACTIONS(935), - [anon_sym_string] = ACTIONS(935), - [anon_sym_symbol] = ACTIONS(935), - [anon_sym_object] = ACTIONS(935), + [anon_sym_static] = ACTIONS(894), + [anon_sym_readonly] = ACTIONS(894), + [anon_sym_get] = ACTIONS(894), + [anon_sym_set] = ACTIONS(894), + [anon_sym_declare] = ACTIONS(894), + [anon_sym_public] = ACTIONS(894), + [anon_sym_private] = ACTIONS(894), + [anon_sym_protected] = ACTIONS(894), + [anon_sym_override] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(894), + [anon_sym_number] = ACTIONS(894), + [anon_sym_boolean] = ACTIONS(894), + [anon_sym_string] = ACTIONS(894), + [anon_sym_symbol] = ACTIONS(894), + [anon_sym_object] = ACTIONS(894), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [111] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1282), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1797), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1282), - [sym_subscript_expression] = STATE(1282), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1282), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(919), - [anon_sym_export] = ACTIONS(921), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1310), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1749), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1310), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(931), + [anon_sym_export] = ACTIONS(933), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(923), + [anon_sym_type] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(935), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(937), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(921), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(141), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(677), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(927), + [anon_sym_async] = ACTIONS(939), [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(931), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(943), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36303,29 +39664,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -36333,116 +39694,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(691), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(921), - [anon_sym_readonly] = ACTIONS(921), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(921), - [anon_sym_declare] = ACTIONS(921), - [anon_sym_public] = ACTIONS(921), - [anon_sym_private] = ACTIONS(921), - [anon_sym_protected] = ACTIONS(921), - [anon_sym_override] = ACTIONS(921), - [anon_sym_module] = ACTIONS(921), - [anon_sym_any] = ACTIONS(921), - [anon_sym_number] = ACTIONS(921), - [anon_sym_boolean] = ACTIONS(921), - [anon_sym_string] = ACTIONS(921), - [anon_sym_symbol] = ACTIONS(921), - [anon_sym_object] = ACTIONS(921), + [anon_sym_static] = ACTIONS(933), + [anon_sym_readonly] = ACTIONS(933), + [anon_sym_get] = ACTIONS(933), + [anon_sym_set] = ACTIONS(933), + [anon_sym_declare] = ACTIONS(933), + [anon_sym_public] = ACTIONS(933), + [anon_sym_private] = ACTIONS(933), + [anon_sym_protected] = ACTIONS(933), + [anon_sym_override] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_any] = ACTIONS(933), + [anon_sym_number] = ACTIONS(933), + [anon_sym_boolean] = ACTIONS(933), + [anon_sym_string] = ACTIONS(933), + [anon_sym_symbol] = ACTIONS(933), + [anon_sym_object] = ACTIONS(933), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [112] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(943), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36451,146 +39812,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [113] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(933), - [anon_sym_export] = ACTIONS(935), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(937), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(941), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(943), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(945), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(925), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36599,146 +39960,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(935), - [anon_sym_readonly] = ACTIONS(935), - [anon_sym_get] = ACTIONS(935), - [anon_sym_set] = ACTIONS(935), - [anon_sym_declare] = ACTIONS(935), - [anon_sym_public] = ACTIONS(935), - [anon_sym_private] = ACTIONS(935), - [anon_sym_protected] = ACTIONS(935), - [anon_sym_override] = ACTIONS(935), - [anon_sym_module] = ACTIONS(935), - [anon_sym_any] = ACTIONS(935), - [anon_sym_number] = ACTIONS(935), - [anon_sym_boolean] = ACTIONS(935), - [anon_sym_string] = ACTIONS(935), - [anon_sym_symbol] = ACTIONS(935), - [anon_sym_object] = ACTIONS(935), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [114] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(894), + [anon_sym_EQ] = ACTIONS(945), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(162), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(903), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(907), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36747,100 +40108,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(894), + [anon_sym_readonly] = ACTIONS(894), + [anon_sym_get] = ACTIONS(894), + [anon_sym_set] = ACTIONS(894), + [anon_sym_declare] = ACTIONS(894), + [anon_sym_public] = ACTIONS(894), + [anon_sym_private] = ACTIONS(894), + [anon_sym_protected] = ACTIONS(894), + [anon_sym_override] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(894), + [anon_sym_number] = ACTIONS(894), + [anon_sym_boolean] = ACTIONS(894), + [anon_sym_string] = ACTIONS(894), + [anon_sym_symbol] = ACTIONS(894), + [anon_sym_object] = ACTIONS(894), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [115] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(949), [anon_sym_export] = ACTIONS(951), [anon_sym_STAR] = ACTIONS(122), @@ -36848,44 +40209,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(953), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_of] = ACTIONS(122), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(957), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(959), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(961), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36894,35 +40255,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(951), [anon_sym_readonly] = ACTIONS(951), @@ -36941,98 +40302,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(951), [anon_sym_object] = ACTIONS(951), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [116] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(895), - [anon_sym_export] = ACTIONS(897), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(897), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(910), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(965), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37041,145 +40402,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(897), - [anon_sym_readonly] = ACTIONS(897), - [anon_sym_get] = ACTIONS(897), - [anon_sym_set] = ACTIONS(897), - [anon_sym_declare] = ACTIONS(897), - [anon_sym_public] = ACTIONS(897), - [anon_sym_private] = ACTIONS(897), - [anon_sym_protected] = ACTIONS(897), - [anon_sym_override] = ACTIONS(897), - [anon_sym_module] = ACTIONS(897), - [anon_sym_any] = ACTIONS(897), - [anon_sym_number] = ACTIONS(897), - [anon_sym_boolean] = ACTIONS(897), - [anon_sym_string] = ACTIONS(897), - [anon_sym_symbol] = ACTIONS(897), - [anon_sym_object] = ACTIONS(897), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [117] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(963), - [anon_sym_export] = ACTIONS(965), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(949), + [anon_sym_export] = ACTIONS(951), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(965), - [anon_sym_EQ] = ACTIONS(967), + [anon_sym_type] = ACTIONS(951), + [anon_sym_EQ] = ACTIONS(953), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(973), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(975), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(957), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(959), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(961), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37188,145 +40549,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(965), - [anon_sym_readonly] = ACTIONS(965), - [anon_sym_get] = ACTIONS(965), - [anon_sym_set] = ACTIONS(965), - [anon_sym_declare] = ACTIONS(965), - [anon_sym_public] = ACTIONS(965), - [anon_sym_private] = ACTIONS(965), - [anon_sym_protected] = ACTIONS(965), - [anon_sym_override] = ACTIONS(965), - [anon_sym_module] = ACTIONS(965), - [anon_sym_any] = ACTIONS(965), - [anon_sym_number] = ACTIONS(965), - [anon_sym_boolean] = ACTIONS(965), - [anon_sym_string] = ACTIONS(965), - [anon_sym_symbol] = ACTIONS(965), - [anon_sym_object] = ACTIONS(965), + [anon_sym_static] = ACTIONS(951), + [anon_sym_readonly] = ACTIONS(951), + [anon_sym_get] = ACTIONS(951), + [anon_sym_set] = ACTIONS(951), + [anon_sym_declare] = ACTIONS(951), + [anon_sym_public] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_override] = ACTIONS(951), + [anon_sym_module] = ACTIONS(951), + [anon_sym_any] = ACTIONS(951), + [anon_sym_number] = ACTIONS(951), + [anon_sym_boolean] = ACTIONS(951), + [anon_sym_string] = ACTIONS(951), + [anon_sym_symbol] = ACTIONS(951), + [anon_sym_object] = ACTIONS(951), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [118] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(967), + [anon_sym_export] = ACTIONS(969), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(971), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(883), - [anon_sym_of] = ACTIONS(886), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_namespace] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(969), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(965), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(977), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37335,145 +40696,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_get] = ACTIONS(969), + [anon_sym_set] = ACTIONS(969), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_public] = ACTIONS(969), + [anon_sym_private] = ACTIONS(969), + [anon_sym_protected] = ACTIONS(969), + [anon_sym_override] = ACTIONS(969), + [anon_sym_module] = ACTIONS(969), + [anon_sym_any] = ACTIONS(969), + [anon_sym_number] = ACTIONS(969), + [anon_sym_boolean] = ACTIONS(969), + [anon_sym_string] = ACTIONS(969), + [anon_sym_symbol] = ACTIONS(969), + [anon_sym_object] = ACTIONS(969), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(895), - [anon_sym_export] = ACTIONS(897), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(897), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(162), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(910), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37482,145 +40843,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(897), - [anon_sym_readonly] = ACTIONS(897), - [anon_sym_get] = ACTIONS(897), - [anon_sym_set] = ACTIONS(897), - [anon_sym_declare] = ACTIONS(897), - [anon_sym_public] = ACTIONS(897), - [anon_sym_private] = ACTIONS(897), - [anon_sym_protected] = ACTIONS(897), - [anon_sym_override] = ACTIONS(897), - [anon_sym_module] = ACTIONS(897), - [anon_sym_any] = ACTIONS(897), - [anon_sym_number] = ACTIONS(897), - [anon_sym_boolean] = ACTIONS(897), - [anon_sym_string] = ACTIONS(897), - [anon_sym_symbol] = ACTIONS(897), - [anon_sym_object] = ACTIONS(897), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(949), - [anon_sym_export] = ACTIONS(951), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(951), - [anon_sym_EQ] = ACTIONS(953), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_of] = ACTIONS(122), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(957), - [anon_sym_function] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), [anon_sym_EQ_GT] = ACTIONS(959), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(961), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37629,145 +40990,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(951), - [anon_sym_readonly] = ACTIONS(951), - [anon_sym_get] = ACTIONS(951), - [anon_sym_set] = ACTIONS(951), - [anon_sym_declare] = ACTIONS(951), - [anon_sym_public] = ACTIONS(951), - [anon_sym_private] = ACTIONS(951), - [anon_sym_protected] = ACTIONS(951), - [anon_sym_override] = ACTIONS(951), - [anon_sym_module] = ACTIONS(951), - [anon_sym_any] = ACTIONS(951), - [anon_sym_number] = ACTIONS(951), - [anon_sym_boolean] = ACTIONS(951), - [anon_sym_string] = ACTIONS(951), - [anon_sym_symbol] = ACTIONS(951), - [anon_sym_object] = ACTIONS(951), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(894), + [anon_sym_EQ] = ACTIONS(945), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(162), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(959), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(903), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(907), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37776,145 +41137,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(894), + [anon_sym_readonly] = ACTIONS(894), + [anon_sym_get] = ACTIONS(894), + [anon_sym_set] = ACTIONS(894), + [anon_sym_declare] = ACTIONS(894), + [anon_sym_public] = ACTIONS(894), + [anon_sym_private] = ACTIONS(894), + [anon_sym_protected] = ACTIONS(894), + [anon_sym_override] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(894), + [anon_sym_number] = ACTIONS(894), + [anon_sym_boolean] = ACTIONS(894), + [anon_sym_string] = ACTIONS(894), + [anon_sym_symbol] = ACTIONS(894), + [anon_sym_object] = ACTIONS(894), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(967), + [anon_sym_export] = ACTIONS(969), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(971), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(969), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(965), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(977), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37923,145 +41284,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_get] = ACTIONS(969), + [anon_sym_set] = ACTIONS(969), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_public] = ACTIONS(969), + [anon_sym_private] = ACTIONS(969), + [anon_sym_protected] = ACTIONS(969), + [anon_sym_override] = ACTIONS(969), + [anon_sym_module] = ACTIONS(969), + [anon_sym_any] = ACTIONS(969), + [anon_sym_number] = ACTIONS(969), + [anon_sym_boolean] = ACTIONS(969), + [anon_sym_string] = ACTIONS(969), + [anon_sym_symbol] = ACTIONS(969), + [anon_sym_object] = ACTIONS(969), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(963), - [anon_sym_export] = ACTIONS(965), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(965), - [anon_sym_EQ] = ACTIONS(967), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_in] = ACTIONS(857), + [anon_sym_of] = ACTIONS(860), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(973), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(975), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38070,145 +41431,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(965), - [anon_sym_readonly] = ACTIONS(965), - [anon_sym_get] = ACTIONS(965), - [anon_sym_set] = ACTIONS(965), - [anon_sym_declare] = ACTIONS(965), - [anon_sym_public] = ACTIONS(965), - [anon_sym_private] = ACTIONS(965), - [anon_sym_protected] = ACTIONS(965), - [anon_sym_override] = ACTIONS(965), - [anon_sym_module] = ACTIONS(965), - [anon_sym_any] = ACTIONS(965), - [anon_sym_number] = ACTIONS(965), - [anon_sym_boolean] = ACTIONS(965), - [anon_sym_string] = ACTIONS(965), - [anon_sym_symbol] = ACTIONS(965), - [anon_sym_object] = ACTIONS(965), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(817), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(973), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38217,144 +41578,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), + [anon_sym_type] = ACTIONS(809), [anon_sym_EQ] = ACTIONS(979), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38363,144 +41724,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), + [anon_sym_type] = ACTIONS(809), [anon_sym_EQ] = ACTIONS(981), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38509,290 +41870,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(3318), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2061), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(5396), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5496), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2030), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3926), - [sym_pattern] = STATE(5048), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3263), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5314), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(983), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_typeof] = ACTIONS(989), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(995), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(997), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(1005), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1007), - [sym_number] = ACTIONS(1009), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(1011), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_null] = ACTIONS(1013), - [sym_undefined] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(1017), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(1021), - [anon_sym_number] = ACTIONS(1021), - [anon_sym_boolean] = ACTIONS(1021), - [anon_sym_string] = ACTIONS(1021), - [anon_sym_symbol] = ACTIONS(1021), - [anon_sym_object] = ACTIONS(1021), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [128] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38801,144 +42016,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [129] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [128] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(983), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38947,144 +42162,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [130] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [129] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(985), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39093,144 +42308,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [131] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4123), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5370), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [130] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6738), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39239,144 +42454,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [132] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [131] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(987), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39385,144 +42600,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [133] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [132] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(1043), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(989), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39531,144 +42746,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [134] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [133] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(991), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39677,144 +42892,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [135] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [134] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(1047), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(993), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39823,144 +43038,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [136] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [135] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(995), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39969,144 +43184,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [137] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1481), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [136] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1489), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(997), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -40115,178 +43330,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [137] = { + [sym_import] = STATE(3782), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2003), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(6905), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7192), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2047), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5204), + [sym_pattern] = STATE(5667), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3713), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6324), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(999), + [anon_sym_export] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_typeof] = ACTIONS(1005), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(1011), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1023), + [sym_number] = ACTIONS(1025), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(1027), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [sym_null] = ACTIONS(1029), + [sym_undefined] = ACTIONS(1031), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(1037), + [anon_sym_number] = ACTIONS(1037), + [anon_sym_boolean] = ACTIONS(1037), + [anon_sym_string] = ACTIONS(1037), + [anon_sym_symbol] = ACTIONS(1037), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(3299), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1864), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5795), - [sym_string] = STATE(2263), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4729), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(4136), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(4465), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3795), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1911), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7115), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5613), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(4808), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(5392), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1051), [anon_sym_export] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(548), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(1057), [anon_sym_typeof] = ACTIONS(1059), - [anon_sym_import] = ACTIONS(132), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), [anon_sym_LBRACK] = ACTIONS(1061), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1065), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_using] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), [anon_sym_PLUS] = ACTIONS(1067), [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(763), - [sym_number] = ACTIONS(765), - [sym_private_property_identifier] = ACTIONS(624), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(737), + [sym_number] = ACTIONS(739), + [sym_private_property_identifier] = ACTIONS(590), [sym_this] = ACTIONS(1069), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(771), - [sym_false] = ACTIONS(771), - [sym_null] = ACTIONS(771), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_null] = ACTIONS(745), [sym_undefined] = ACTIONS(1071), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1073), [anon_sym_get] = ACTIONS(1053), [anon_sym_set] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(753), [anon_sym_declare] = ACTIONS(1053), [anon_sym_public] = ACTIONS(1053), [anon_sym_private] = ACTIONS(1053), @@ -40299,1794 +43660,1927 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1075), [anon_sym_symbol] = ACTIONS(1075), [anon_sym_object] = ACTIONS(1075), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(3314), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2349), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2247), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3848), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(600), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3848), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2050), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2533), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4374), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(467), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1077), [anon_sym_export] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(548), [anon_sym_type] = ACTIONS(1079), [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(1083), [anon_sym_typeof] = ACTIONS(1085), - [anon_sym_import] = ACTIONS(132), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1079), - [anon_sym_const] = ACTIONS(134), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(1093), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1097), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1095), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1103), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1109), - [sym_number] = ACTIONS(1111), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(1115), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_null] = ACTIONS(1117), - [sym_undefined] = ACTIONS(1119), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(1113), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(1117), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(1119), + [sym_false] = ACTIONS(1119), + [sym_null] = ACTIONS(1119), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1121), + [anon_sym_readonly] = ACTIONS(1123), [anon_sym_get] = ACTIONS(1079), [anon_sym_set] = ACTIONS(1079), - [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(753), [anon_sym_declare] = ACTIONS(1079), [anon_sym_public] = ACTIONS(1079), [anon_sym_private] = ACTIONS(1079), [anon_sym_protected] = ACTIONS(1079), [anon_sym_override] = ACTIONS(1079), [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1123), - [anon_sym_number] = ACTIONS(1123), - [anon_sym_boolean] = ACTIONS(1123), - [anon_sym_string] = ACTIONS(1123), - [anon_sym_symbol] = ACTIONS(1123), - [anon_sym_object] = ACTIONS(1123), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_any] = ACTIONS(1125), + [anon_sym_number] = ACTIONS(1125), + [anon_sym_boolean] = ACTIONS(1125), + [anon_sym_string] = ACTIONS(1125), + [anon_sym_symbol] = ACTIONS(1125), + [anon_sym_object] = ACTIONS(1125), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(3447), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3655), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3655), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3655), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2551), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4130), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(520), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1125), - [anon_sym_export] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_namespace] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_typeof] = ACTIONS(1133), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1135), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1137), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3821), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4245), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(644), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1127), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(1143), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1143), - [sym_number] = ACTIONS(1145), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1147), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_undefined] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1153), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1159), + [sym_number] = ACTIONS(1161), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(1165), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [sym_null] = ACTIONS(1167), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_readonly] = ACTIONS(1153), - [anon_sym_get] = ACTIONS(1127), - [anon_sym_set] = ACTIONS(1127), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1127), - [anon_sym_public] = ACTIONS(1127), - [anon_sym_private] = ACTIONS(1127), - [anon_sym_protected] = ACTIONS(1127), - [anon_sym_override] = ACTIONS(1127), - [anon_sym_module] = ACTIONS(1127), - [anon_sym_any] = ACTIONS(1155), - [anon_sym_number] = ACTIONS(1155), - [anon_sym_boolean] = ACTIONS(1155), - [anon_sym_string] = ACTIONS(1155), - [anon_sym_symbol] = ACTIONS(1155), - [anon_sym_object] = ACTIONS(1155), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1171), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1173), + [anon_sym_number] = ACTIONS(1173), + [anon_sym_boolean] = ACTIONS(1173), + [anon_sym_string] = ACTIONS(1173), + [anon_sym_symbol] = ACTIONS(1173), + [anon_sym_object] = ACTIONS(1173), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(3415), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2048), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3793), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(404), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1157), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(1165), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1167), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1169), + [sym_import] = STATE(3849), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1734), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2112), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4374), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(533), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1175), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1191), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1195), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(1177), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1179), - [sym_number] = ACTIONS(1181), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(1183), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1201), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1207), + [sym_number] = ACTIONS(1209), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(1213), [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [sym_null] = ACTIONS(1185), - [sym_undefined] = ACTIONS(1187), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_undefined] = ACTIONS(1217), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1189), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1191), - [anon_sym_number] = ACTIONS(1191), - [anon_sym_boolean] = ACTIONS(1191), - [anon_sym_string] = ACTIONS(1191), - [anon_sym_symbol] = ACTIONS(1191), - [anon_sym_object] = ACTIONS(1191), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1219), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1221), + [anon_sym_number] = ACTIONS(1221), + [anon_sym_boolean] = ACTIONS(1221), + [anon_sym_string] = ACTIONS(1221), + [anon_sym_symbol] = ACTIONS(1221), + [anon_sym_object] = ACTIONS(1221), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(3415), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2048), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3793), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1193), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(1199), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1167), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1169), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1209), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_SLASH] = ACTIONS(849), + [sym_import] = STATE(3795), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1862), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1772), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4245), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(394), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1223), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_typeof] = ACTIONS(1231), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1239), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1243), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1215), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1179), - [sym_number] = ACTIONS(1181), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(1183), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [sym_null] = ACTIONS(1185), - [sym_undefined] = ACTIONS(1223), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1249), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1255), + [sym_number] = ACTIONS(1257), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(1261), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [sym_null] = ACTIONS(1263), + [sym_undefined] = ACTIONS(1265), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1225), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1267), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(3303), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2001), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2461), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3793), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(432), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1229), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_typeof] = ACTIONS(1237), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(1167), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1245), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1249), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(83), + [sym_import] = STATE(3750), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2215), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4245), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(546), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1271), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1143), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1287), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1255), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1261), - [sym_number] = ACTIONS(1263), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(1267), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_null] = ACTIONS(1269), - [sym_undefined] = ACTIONS(1271), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1293), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1159), + [sym_number] = ACTIONS(1161), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(1165), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [sym_null] = ACTIONS(1167), + [sym_undefined] = ACTIONS(1301), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1273), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1303), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1305), + [anon_sym_number] = ACTIONS(1305), + [anon_sym_boolean] = ACTIONS(1305), + [anon_sym_string] = ACTIONS(1305), + [anon_sym_symbol] = ACTIONS(1305), + [anon_sym_object] = ACTIONS(1305), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(3413), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1736), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3848), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(379), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1277), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(1287), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1291), - [anon_sym_using] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3795), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1918), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5127), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5127), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5127), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2169), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1343), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4809), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1307), + [anon_sym_export] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(1309), + [anon_sym_namespace] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(564), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_using] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(757), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1295), - [sym_number] = ACTIONS(1297), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(1299), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1301), - [sym_false] = ACTIONS(1301), - [sym_null] = ACTIONS(1301), - [sym_undefined] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(190), + [sym_number] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_undefined] = ACTIONS(1319), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1305), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1307), - [anon_sym_number] = ACTIONS(1307), - [anon_sym_boolean] = ACTIONS(1307), - [anon_sym_string] = ACTIONS(1307), - [anon_sym_symbol] = ACTIONS(1307), - [anon_sym_object] = ACTIONS(1307), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(1309), + [anon_sym_readonly] = ACTIONS(1321), + [anon_sym_get] = ACTIONS(1309), + [anon_sym_set] = ACTIONS(1309), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(1309), + [anon_sym_public] = ACTIONS(1309), + [anon_sym_private] = ACTIONS(1309), + [anon_sym_protected] = ACTIONS(1309), + [anon_sym_override] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), + [anon_sym_any] = ACTIONS(1323), + [anon_sym_number] = ACTIONS(1323), + [anon_sym_boolean] = ACTIONS(1323), + [anon_sym_string] = ACTIONS(1323), + [anon_sym_symbol] = ACTIONS(1323), + [anon_sym_object] = ACTIONS(1323), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(3299), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1723), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1736), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3848), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1309), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1311), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1287), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1065), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3750), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2487), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4245), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(571), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1325), + [anon_sym_export] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(1329), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1143), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1331), + [anon_sym_using] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1295), - [sym_number] = ACTIONS(1297), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(1299), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1301), - [sym_false] = ACTIONS(1301), - [sym_null] = ACTIONS(1301), - [sym_undefined] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1159), + [sym_number] = ACTIONS(1161), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(1165), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [sym_null] = ACTIONS(1167), + [sym_undefined] = ACTIONS(1335), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1073), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1317), - [anon_sym_number] = ACTIONS(1317), - [anon_sym_boolean] = ACTIONS(1317), - [anon_sym_string] = ACTIONS(1317), - [anon_sym_symbol] = ACTIONS(1317), - [anon_sym_object] = ACTIONS(1317), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(1339), + [anon_sym_number] = ACTIONS(1339), + [anon_sym_boolean] = ACTIONS(1339), + [anon_sym_string] = ACTIONS(1339), + [anon_sym_symbol] = ACTIONS(1339), + [anon_sym_object] = ACTIONS(1339), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(3447), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2247), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3848), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(520), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_typeof] = ACTIONS(1323), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1093), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1325), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3751), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1772), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4245), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(378), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1341), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_typeof] = ACTIONS(1347), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(1239), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_using] = ACTIONS(723), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1109), - [sym_number] = ACTIONS(1111), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1115), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_null] = ACTIONS(1117), - [sym_undefined] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(731), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1255), + [sym_number] = ACTIONS(1257), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(1261), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [sym_null] = ACTIONS(1263), + [sym_undefined] = ACTIONS(1355), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(1331), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(1333), - [anon_sym_number] = ACTIONS(1333), - [anon_sym_boolean] = ACTIONS(1333), - [anon_sym_string] = ACTIONS(1333), - [anon_sym_symbol] = ACTIONS(1333), - [anon_sym_object] = ACTIONS(1333), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1359), + [anon_sym_number] = ACTIONS(1359), + [anon_sym_boolean] = ACTIONS(1359), + [anon_sym_string] = ACTIONS(1359), + [anon_sym_symbol] = ACTIONS(1359), + [anon_sym_object] = ACTIONS(1359), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(3299), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1860), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4107), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4107), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4107), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2162), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4130), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(467), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1335), - [anon_sym_export] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1337), - [anon_sym_namespace] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1343), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1345), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3750), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(4156), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(4156), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1430), + [sym_subscript_expression] = STATE(1430), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(4156), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2583), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1430), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4809), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(571), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1361), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(1363), + [anon_sym_namespace] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_typeof] = ACTIONS(1369), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1371), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1373), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_using] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_number] = ACTIONS(1381), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(1383), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(1385), + [sym_false] = ACTIONS(1385), + [sym_null] = ACTIONS(1385), + [sym_undefined] = ACTIONS(1387), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_readonly] = ACTIONS(1349), - [anon_sym_get] = ACTIONS(1337), - [anon_sym_set] = ACTIONS(1337), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1337), - [anon_sym_public] = ACTIONS(1337), - [anon_sym_private] = ACTIONS(1337), - [anon_sym_protected] = ACTIONS(1337), - [anon_sym_override] = ACTIONS(1337), - [anon_sym_module] = ACTIONS(1337), - [anon_sym_any] = ACTIONS(1351), - [anon_sym_number] = ACTIONS(1351), - [anon_sym_boolean] = ACTIONS(1351), - [anon_sym_string] = ACTIONS(1351), - [anon_sym_symbol] = ACTIONS(1351), - [anon_sym_object] = ACTIONS(1351), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1363), + [anon_sym_set] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(1363), + [anon_sym_public] = ACTIONS(1363), + [anon_sym_private] = ACTIONS(1363), + [anon_sym_protected] = ACTIONS(1363), + [anon_sym_override] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_number] = ACTIONS(1391), + [anon_sym_boolean] = ACTIONS(1391), + [anon_sym_string] = ACTIONS(1391), + [anon_sym_symbol] = ACTIONS(1391), + [anon_sym_object] = ACTIONS(1391), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [148] = { - [sym_import] = STATE(3447), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2247), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3848), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(574), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1353), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_typeof] = ACTIONS(1359), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1093), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1369), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3750), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2456), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4245), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(591), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_typeof] = ACTIONS(1399), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1143), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1409), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1109), - [sym_number] = ACTIONS(1111), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(1115), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_null] = ACTIONS(1117), - [sym_undefined] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1415), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1159), + [sym_number] = ACTIONS(1161), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(1165), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [sym_null] = ACTIONS(1167), + [sym_undefined] = ACTIONS(1423), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1385), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1387), - [anon_sym_number] = ACTIONS(1387), - [anon_sym_boolean] = ACTIONS(1387), - [anon_sym_string] = ACTIONS(1387), - [anon_sym_symbol] = ACTIONS(1387), - [anon_sym_object] = ACTIONS(1387), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1425), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_number] = ACTIONS(1427), + [anon_sym_boolean] = ACTIONS(1427), + [anon_sym_string] = ACTIONS(1427), + [anon_sym_symbol] = ACTIONS(1427), + [anon_sym_object] = ACTIONS(1427), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(3299), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1909), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1736), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3848), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(548), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1389), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1395), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1287), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(947), + [sym_import] = STATE(3795), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1809), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1772), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4245), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1429), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_typeof] = ACTIONS(1431), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(1239), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1065), + [anon_sym_using] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1295), - [sym_number] = ACTIONS(1297), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(1299), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1301), - [sym_false] = ACTIONS(1301), - [sym_null] = ACTIONS(1301), - [sym_undefined] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(584), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1255), + [sym_number] = ACTIONS(1257), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(1261), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [sym_null] = ACTIONS(1263), + [sym_undefined] = ACTIONS(1435), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1421), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1423), - [anon_sym_number] = ACTIONS(1423), - [anon_sym_boolean] = ACTIONS(1423), - [anon_sym_string] = ACTIONS(1423), - [anon_sym_symbol] = ACTIONS(1423), - [anon_sym_object] = ACTIONS(1423), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1073), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_number] = ACTIONS(1437), + [anon_sym_boolean] = ACTIONS(1437), + [anon_sym_string] = ACTIONS(1437), + [anon_sym_symbol] = ACTIONS(1437), + [anon_sym_object] = ACTIONS(1437), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(3447), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2420), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_nested_identifier] = STATE(5452), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(2247), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4095), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3848), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_type_arguments] = STATE(626), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5287), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1425), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_typeof] = ACTIONS(1431), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1093), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1441), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_SLASH] = ACTIONS(977), + [sym_import] = STATE(3849), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_nested_identifier] = STATE(7304), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2112), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(5022), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4374), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_type_arguments] = STATE(632), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(7023), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_typeof] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1191), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1449), + [anon_sym_using] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1447), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1109), - [sym_number] = ACTIONS(1111), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(1115), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_null] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1207), + [sym_number] = ACTIONS(1209), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(1213), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), [sym_undefined] = ACTIONS(1455), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1441), [anon_sym_readonly] = ACTIONS(1457), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), [anon_sym_any] = ACTIONS(1459), [anon_sym_number] = ACTIONS(1459), [anon_sym_boolean] = ACTIONS(1459), [anon_sym_string] = ACTIONS(1459), [anon_sym_symbol] = ACTIONS(1459), [anon_sym_object] = ACTIONS(1459), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [151] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1651), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1709), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), + [anon_sym_export] = ACTIONS(1177), [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_as] = ACTIONS(1465), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(1467), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_in] = ACTIONS(1465), + [anon_sym_of] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_QMARK_DOT] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_PIPE_PIPE] = ACTIONS(1467), + [anon_sym_GT_GT] = ACTIONS(1465), + [anon_sym_GT_GT_GT] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_CARET] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_PERCENT] = ACTIONS(1467), + [anon_sym_STAR_STAR] = ACTIONS(1467), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_QMARK_QMARK] = ACTIONS(1467), + [anon_sym_instanceof] = ACTIONS(1465), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), + [anon_sym_satisfies] = ACTIONS(1465), + [sym__automatic_semicolon] = ACTIONS(1467), + [sym__ternary_qmark] = ACTIONS(1467), + [sym_html_comment] = ACTIONS(5), + }, + [152] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1640), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1475), [anon_sym_type] = ACTIONS(1053), [anon_sym_as] = ACTIONS(1465), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(1467), [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), [anon_sym_in] = ACTIONS(1465), [anon_sym_COLON] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), [anon_sym_RBRACK] = ACTIONS(1467), - [sym_glimmer_opening_tag] = ACTIONS(147), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1467), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -42095,9 +45589,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), [anon_sym_LT] = ACTIONS(85), @@ -42109,21 +45603,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -42145,62 +45639,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1159), + [153] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1725), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_type] = ACTIONS(1441), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_COMMA] = ACTIONS(1467), [anon_sym_RBRACE] = ACTIONS(1467), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -42214,10 +45708,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), [anon_sym_QMARK_DOT] = ACTIONS(1467), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), @@ -42257,234 +45751,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [anon_sym_satisfies] = ACTIONS(1465), - [sym__automatic_semicolon] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1467), - [sym_html_comment] = ACTIONS(5), - }, - [153] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1465), - [anon_sym_of] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1465), - [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_QMARK_DOT] = ACTIONS(1467), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_GT_GT_GT] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_PERCENT] = ACTIONS(1467), - [anon_sym_STAR_STAR] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1465), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1467), - [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [anon_sym_satisfies] = ACTIONS(1465), [sym__automatic_semicolon] = ACTIONS(1467), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [154] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1870), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1937), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), + [anon_sym_export] = ACTIONS(1343), [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1343), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(1467), - [anon_sym_await] = ACTIONS(739), + [anon_sym_await] = ACTIONS(713), [anon_sym_in] = ACTIONS(1465), [anon_sym_COLON] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), + [anon_sym_using] = ACTIONS(723), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -42493,9 +45854,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), [anon_sym_LT] = ACTIONS(85), @@ -42507,102 +45868,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [anon_sym_satisfies] = ACTIONS(1465), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [155] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1989), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2133), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), + [anon_sym_export] = ACTIONS(1079), [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1231), + [anon_sym_type] = ACTIONS(1079), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1107), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), + [anon_sym_await] = ACTIONS(1091), [anon_sym_in] = ACTIONS(1465), [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_GT] = ACTIONS(1465), @@ -42610,11 +45971,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), + [anon_sym_using] = ACTIONS(1101), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -42623,8 +45984,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), @@ -42637,15 +45998,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -42653,99 +46014,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [anon_sym_satisfies] = ACTIONS(1465), [sym__automatic_semicolon] = ACTIONS(1467), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [156] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1932), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), + [anon_sym_export] = ACTIONS(1225), [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_type] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1225), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), [anon_sym_in] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), + [anon_sym_using] = ACTIONS(1245), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -42754,9 +46115,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), [anon_sym_LT] = ACTIONS(85), @@ -42768,115 +46129,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [anon_sym_satisfies] = ACTIONS(1465), [anon_sym_implements] = ACTIONS(1465), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [157] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2394), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2299), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), + [anon_sym_export] = ACTIONS(1129), [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_type] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1129), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), [anon_sym_in] = ACTIONS(1465), - [anon_sym_COLON] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(1467), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), + [anon_sym_using] = ACTIONS(1149), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -42885,9 +46246,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), [anon_sym_LT] = ACTIONS(85), @@ -42899,114 +46260,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [anon_sym_satisfies] = ACTIONS(1465), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [158] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2399), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2187), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), + [anon_sym_export] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1273), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), [anon_sym_in] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(1467), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), + [anon_sym_using] = ACTIONS(1289), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -43015,9 +46376,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), [anon_sym_LT] = ACTIONS(85), @@ -43029,114 +46390,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [anon_sym_satisfies] = ACTIONS(1465), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [159] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), + [anon_sym_export] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_type] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1395), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), [anon_sym_in] = ACTIONS(1465), [anon_sym_of] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1467), [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), + [anon_sym_using] = ACTIONS(1411), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -43145,9 +46506,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), [anon_sym_LT] = ACTIONS(85), @@ -43159,113 +46520,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [anon_sym_satisfies] = ACTIONS(1465), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [160] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2486), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(801), + [anon_sym_type] = ACTIONS(809), [anon_sym_as] = ACTIONS(1465), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), [anon_sym_in] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), [anon_sym_GT] = ACTIONS(1465), [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), [anon_sym_QMARK_DOT] = ACTIONS(1467), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), [anon_sym_AMP_AMP] = ACTIONS(1467), [anon_sym_PIPE_PIPE] = ACTIONS(1467), [anon_sym_GT_GT] = ACTIONS(1465), @@ -43274,9 +46635,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1465), [anon_sym_CARET] = ACTIONS(1467), [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1467), [anon_sym_LT] = ACTIONS(85), @@ -43288,136 +46649,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1467), [anon_sym_instanceof] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [anon_sym_satisfies] = ACTIONS(1465), [sym__ternary_qmark] = ACTIONS(1467), [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_declaration] = STATE(3886), - [sym_import] = STATE(3432), - [sym_variable_declaration] = STATE(4071), - [sym_lexical_declaration] = STATE(4071), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2138), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(4071), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(4071), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(4071), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_function_signature] = STATE(4071), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(4071), - [sym_abstract_class_declaration] = STATE(4071), - [sym_module] = STATE(4071), - [sym_internal_module] = STATE(2210), - [sym_import_alias] = STATE(4071), - [sym_interface_declaration] = STATE(4071), - [sym_enum_declaration] = STATE(4071), - [sym_type_alias_declaration] = STATE(4071), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4168), + [sym_declaration] = STATE(830), + [sym_import] = STATE(3814), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2089), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(2171), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4626), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), + [anon_sym_export] = ACTIONS(1079), [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(1107), [anon_sym_import] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(1547), - [anon_sym_async] = ACTIONS(1549), - [anon_sym_function] = ACTIONS(1551), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(1543), + [anon_sym_function] = ACTIONS(632), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -43425,243 +46786,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1553), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), - [anon_sym_abstract] = ACTIONS(1557), - [anon_sym_interface] = ACTIONS(1559), - [anon_sym_enum] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1545), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1547), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), + [anon_sym_abstract] = ACTIONS(107), + [anon_sym_interface] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [162] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(845), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [163] = { - [sym_declaration] = STATE(4152), - [sym_import] = STATE(3432), - [sym_variable_declaration] = STATE(4071), - [sym_lexical_declaration] = STATE(4071), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2013), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(4071), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(4071), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(4071), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_function_signature] = STATE(4071), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(4071), - [sym_abstract_class_declaration] = STATE(4071), - [sym_module] = STATE(4071), - [sym_internal_module] = STATE(2210), - [sym_import_alias] = STATE(4071), - [sym_interface_declaration] = STATE(4071), - [sym_enum_declaration] = STATE(4071), - [sym_type_alias_declaration] = STATE(4071), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4168), + [sym_declaration] = STATE(830), + [sym_import] = STATE(3814), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2089), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5202), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), + [anon_sym_export] = ACTIONS(1079), [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_namespace] = ACTIONS(1549), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), + [anon_sym_typeof] = ACTIONS(1107), [anon_sym_import] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(1547), - [anon_sym_async] = ACTIONS(1549), - [anon_sym_function] = ACTIONS(1551), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(1551), + [anon_sym_function] = ACTIONS(77), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -43669,243 +46908,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1553), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), - [anon_sym_abstract] = ACTIONS(1557), - [anon_sym_interface] = ACTIONS(1559), - [anon_sym_enum] = ACTIONS(1561), - [sym_html_comment] = ACTIONS(5), - }, - [164] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1545), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1547), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), + [anon_sym_abstract] = ACTIONS(107), + [anon_sym_interface] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [165] = { - [sym_declaration] = STATE(834), - [sym_import] = STATE(3432), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2114), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3875), + [163] = { + [sym_declaration] = STATE(4588), + [sym_import] = STATE(3814), + [sym_variable_declaration] = STATE(4991), + [sym_lexical_declaration] = STATE(4991), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2082), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(4991), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(4991), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(4991), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_function_signature] = STATE(4991), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(4991), + [sym_abstract_class_declaration] = STATE(4991), + [sym_module] = STATE(4991), + [sym_internal_module] = STATE(2454), + [sym_import_alias] = STATE(4991), + [sym_interface_declaration] = STATE(4991), + [sym_enum_declaration] = STATE(4991), + [sym_type_alias_declaration] = STATE(4991), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4821), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1553), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(1597), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(1555), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(1601), - [anon_sym_function] = ACTIONS(77), + [anon_sym_class] = ACTIONS(1563), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_function] = ACTIONS(1567), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -43913,121 +47030,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1603), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1605), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1569), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1571), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), + [anon_sym_abstract] = ACTIONS(1573), + [anon_sym_interface] = ACTIONS(1575), + [anon_sym_enum] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [166] = { - [sym_declaration] = STATE(792), - [sym_import] = STATE(3432), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1960), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(225), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(3875), + [164] = { + [sym_declaration] = STATE(4892), + [sym_import] = STATE(3814), + [sym_variable_declaration] = STATE(4991), + [sym_lexical_declaration] = STATE(4991), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(1964), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(4991), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(4991), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(4991), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_function_signature] = STATE(4991), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(4991), + [sym_abstract_class_declaration] = STATE(4991), + [sym_module] = STATE(4991), + [sym_internal_module] = STATE(2454), + [sym_import_alias] = STATE(4991), + [sym_interface_declaration] = STATE(4991), + [sym_enum_declaration] = STATE(4991), + [sym_type_alias_declaration] = STATE(4991), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4821), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1553), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(1597), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(1555), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(1601), - [anon_sym_function] = ACTIONS(77), + [anon_sym_class] = ACTIONS(1563), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_function] = ACTIONS(1567), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -44035,121 +47152,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1603), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1605), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1569), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1571), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), + [anon_sym_abstract] = ACTIONS(1573), + [anon_sym_interface] = ACTIONS(1575), + [anon_sym_enum] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [167] = { - [sym_declaration] = STATE(834), - [sym_import] = STATE(3432), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2114), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(2161), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4091), + [165] = { + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(839), + [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(172), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [166] = { + [sym_declaration] = STATE(881), + [sym_import] = STATE(3814), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2106), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(208), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5202), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1537), + [anon_sym_namespace] = ACTIONS(1549), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(1597), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(1539), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1541), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(1607), - [anon_sym_function] = ACTIONS(568), + [anon_sym_class] = ACTIONS(73), + [anon_sym_async] = ACTIONS(1551), + [anon_sym_function] = ACTIONS(77), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -44157,121 +47396,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1603), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1605), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1545), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1547), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [168] = { - [sym_declaration] = STATE(792), - [sym_import] = STATE(3432), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1960), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_class_declaration] = STATE(851), - [sym_function_expression] = STATE(2209), - [sym_function_declaration] = STATE(851), - [sym_generator_function] = STATE(2209), - [sym_generator_function_declaration] = STATE(851), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_function_signature] = STATE(851), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(2161), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4091), + [167] = { + [sym_declaration] = STATE(881), + [sym_import] = STATE(3814), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2106), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_class_declaration] = STATE(855), + [sym_function_expression] = STATE(2177), + [sym_function_declaration] = STATE(855), + [sym_generator_function] = STATE(2177), + [sym_generator_function_declaration] = STATE(855), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_function_signature] = STATE(855), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(2171), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(4626), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1537), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(1597), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(1539), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1541), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(1607), - [anon_sym_function] = ACTIONS(568), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(1543), + [anon_sym_function] = ACTIONS(632), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -44279,1918 +47518,2040 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1603), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1605), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1545), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1547), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [anon_sym_abstract] = ACTIONS(107), [anon_sym_interface] = ACTIONS(109), [anon_sym_enum] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, + [168] = { + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_as] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(172), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, [169] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1585), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(225), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(912), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(1585), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_COLON] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(912), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4151), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(909), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1585), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(943), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3257), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_EQ] = ACTIONS(912), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(935), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1585), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(1031), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1643), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3658), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(912), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3643), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_EQ] = ACTIONS(909), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1627), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(224), + [anon_sym_LBRACK] = ACTIONS(1629), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1637), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), + [anon_sym_void] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), [anon_sym_readonly] = ACTIONS(1651), [anon_sym_QMARK] = ACTIONS(1653), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(919), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1585), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(925), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_implements] = ACTIONS(122), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(971), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1585), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(959), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(965), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(945), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1585), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(973), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1585), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(953), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1585), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_of] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(959), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1585), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(172), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), + [anon_sym_void] = ACTIONS(218), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1567), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4012), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4012), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym__formal_parameter] = STATE(4675), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4012), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5462), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1327), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1543), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5260), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5260), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym__formal_parameter] = STATE(5463), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5260), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7352), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(4675), - [sym_optional_parameter] = STATE(4675), - [sym__parameter_name] = STATE(3647), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), + [sym_required_parameter] = STATE(5463), + [sym_optional_parameter] = STATE(5463), + [sym__parameter_name] = STATE(3979), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(727), - [anon_sym_type] = ACTIONS(727), - [anon_sym_namespace] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(745), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(701), + [anon_sym_type] = ACTIONS(701), + [anon_sym_namespace] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(701), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(719), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1657), - [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), [sym_this] = ACTIONS(1659), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_static] = ACTIONS(727), + [anon_sym_AT] = ACTIONS(749), + [anon_sym_static] = ACTIONS(701), [anon_sym_readonly] = ACTIONS(1663), - [anon_sym_get] = ACTIONS(727), - [anon_sym_set] = ACTIONS(727), - [anon_sym_declare] = ACTIONS(727), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(783), - [anon_sym_module] = ACTIONS(727), - [anon_sym_any] = ACTIONS(727), - [anon_sym_number] = ACTIONS(727), - [anon_sym_boolean] = ACTIONS(727), - [anon_sym_string] = ACTIONS(727), - [anon_sym_symbol] = ACTIONS(727), - [anon_sym_object] = ACTIONS(727), + [anon_sym_get] = ACTIONS(701), + [anon_sym_set] = ACTIONS(701), + [anon_sym_declare] = ACTIONS(701), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(757), + [anon_sym_module] = ACTIONS(701), + [anon_sym_any] = ACTIONS(701), + [anon_sym_number] = ACTIONS(701), + [anon_sym_boolean] = ACTIONS(701), + [anon_sym_string] = ACTIONS(701), + [anon_sym_symbol] = ACTIONS(701), + [anon_sym_object] = ACTIONS(701), [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1520), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4012), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4012), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym__formal_parameter] = STATE(4675), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4012), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5538), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1327), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1608), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5260), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5260), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym__formal_parameter] = STATE(5463), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5260), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7180), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1340), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(4675), - [sym_optional_parameter] = STATE(4675), - [sym__parameter_name] = STATE(3647), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), + [sym_required_parameter] = STATE(5463), + [sym_optional_parameter] = STATE(5463), + [sym__parameter_name] = STATE(3979), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), [aux_sym_export_statement_repeat1] = STATE(260), [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(727), - [anon_sym_type] = ACTIONS(727), - [anon_sym_namespace] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(745), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(701), + [anon_sym_type] = ACTIONS(701), + [anon_sym_namespace] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(701), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(719), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1657), - [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), [sym_this] = ACTIONS(1659), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_static] = ACTIONS(727), + [anon_sym_AT] = ACTIONS(749), + [anon_sym_static] = ACTIONS(701), [anon_sym_readonly] = ACTIONS(1663), - [anon_sym_get] = ACTIONS(727), - [anon_sym_set] = ACTIONS(727), - [anon_sym_declare] = ACTIONS(727), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(783), - [anon_sym_module] = ACTIONS(727), - [anon_sym_any] = ACTIONS(727), - [anon_sym_number] = ACTIONS(727), - [anon_sym_boolean] = ACTIONS(727), - [anon_sym_string] = ACTIONS(727), - [anon_sym_symbol] = ACTIONS(727), - [anon_sym_object] = ACTIONS(727), + [anon_sym_get] = ACTIONS(701), + [anon_sym_set] = ACTIONS(701), + [anon_sym_declare] = ACTIONS(701), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(757), + [anon_sym_module] = ACTIONS(701), + [anon_sym_any] = ACTIONS(701), + [anon_sym_number] = ACTIONS(701), + [anon_sym_boolean] = ACTIONS(701), + [anon_sym_string] = ACTIONS(701), + [anon_sym_symbol] = ACTIONS(701), + [anon_sym_object] = ACTIONS(701), [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(4923), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(6828), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(4923), - [sym_optional_parameter] = STATE(4923), - [sym__parameter_name] = STATE(3647), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), + [sym_required_parameter] = STATE(6828), + [sym_optional_parameter] = STATE(6828), + [sym__parameter_name] = STATE(3979), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(699), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(1665), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(1669), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(775), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1671), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46201,109 +49562,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(5141), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(5740), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(5141), - [sym_optional_parameter] = STATE(5141), - [sym__parameter_name] = STATE(3647), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), + [sym_required_parameter] = STATE(5740), + [sym_optional_parameter] = STATE(5740), + [sym__parameter_name] = STATE(3979), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(699), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(1673), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(1669), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(775), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1671), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46314,109 +49675,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(5141), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(6828), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(5141), - [sym_optional_parameter] = STATE(5141), - [sym__parameter_name] = STATE(3647), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), + [sym_required_parameter] = STATE(6828), + [sym_optional_parameter] = STATE(6828), + [sym__parameter_name] = STATE(3979), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(699), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(1669), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(775), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1671), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46427,109 +49788,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(5141), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(6828), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(5141), - [sym_optional_parameter] = STATE(5141), - [sym__parameter_name] = STATE(3647), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), + [sym_required_parameter] = STATE(6828), + [sym_optional_parameter] = STATE(6828), + [sym__parameter_name] = STATE(3979), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(699), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(1669), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(775), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1671), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46540,109 +49901,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(5141), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(5463), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(5141), - [sym_optional_parameter] = STATE(5141), - [sym__parameter_name] = STATE(3647), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), + [sym_required_parameter] = STATE(5463), + [sym_optional_parameter] = STATE(5463), + [sym__parameter_name] = STATE(3979), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(699), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(1669), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(775), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1671), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46653,109 +50014,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(4675), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(6828), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(4675), - [sym_optional_parameter] = STATE(4675), - [sym__parameter_name] = STATE(3647), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), + [sym_required_parameter] = STATE(6828), + [sym_optional_parameter] = STATE(6828), + [sym__parameter_name] = STATE(3979), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(699), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(1669), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(775), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1671), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46766,109 +50127,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(5141), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(6828), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(5141), - [sym_optional_parameter] = STATE(5141), - [sym__parameter_name] = STATE(3647), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), + [sym_required_parameter] = STATE(6828), + [sym_optional_parameter] = STATE(6828), + [sym__parameter_name] = STATE(3979), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(699), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(1669), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(775), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1671), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46879,109 +50240,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(5078), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(6828), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(5078), - [sym_optional_parameter] = STATE(5078), - [sym__parameter_name] = STATE(3647), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), + [sym_required_parameter] = STATE(6828), + [sym_optional_parameter] = STATE(6828), + [sym__parameter_name] = STATE(3979), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(699), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(1669), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(775), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1671), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -46992,109 +50353,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(5141), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(287), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(6019), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(269), [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(5141), - [sym_optional_parameter] = STATE(5141), - [sym__parameter_name] = STATE(3647), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), + [sym_required_parameter] = STATE(6019), + [sym_optional_parameter] = STATE(6019), + [sym__parameter_name] = STATE(3979), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(699), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(1685), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(1669), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(775), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(1671), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -47105,1554 +50466,1548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1869), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4669), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4681), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(1687), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1689), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(1691), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym__formal_parameter] = STATE(6828), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5258), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(269), + [sym_override_modifier] = STATE(292), + [sym_required_parameter] = STATE(6828), + [sym_optional_parameter] = STATE(6828), + [sym__parameter_name] = STATE(3979), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(761), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1667), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1695), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(1669), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(749), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_declare] = ACTIONS(115), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), + [anon_sym_module] = ACTIONS(115), + [anon_sym_any] = ACTIONS(115), + [anon_sym_number] = ACTIONS(115), + [anon_sym_boolean] = ACTIONS(115), + [anon_sym_string] = ACTIONS(115), + [anon_sym_symbol] = ACTIONS(115), + [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, [194] = { - [ts_builtin_sym_end] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1699), - [anon_sym_export] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_type] = ACTIONS(1699), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1701), - [anon_sym_namespace] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1697), - [anon_sym_typeof] = ACTIONS(1699), - [anon_sym_import] = ACTIONS(1699), - [anon_sym_with] = ACTIONS(1699), - [anon_sym_var] = ACTIONS(1699), - [anon_sym_let] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_else] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1697), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_in] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_debugger] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_throw] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_case] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1697), - [sym_glimmer_opening_tag] = ACTIONS(1697), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_async] = ACTIONS(1699), - [anon_sym_function] = ACTIONS(1699), - [anon_sym_QMARK_DOT] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_GT_GT_GT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_SLASH] = ACTIONS(1699), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_STAR_STAR] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_LT_EQ] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1705), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1705), - [anon_sym_QMARK_QMARK] = ACTIONS(1705), - [anon_sym_instanceof] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1699), - [anon_sym_delete] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1697), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1697), - [sym_number] = ACTIONS(1697), - [sym_private_property_identifier] = ACTIONS(1697), - [sym_this] = ACTIONS(1699), - [sym_super] = ACTIONS(1699), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_null] = ACTIONS(1699), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_readonly] = ACTIONS(1699), - [anon_sym_get] = ACTIONS(1699), - [anon_sym_set] = ACTIONS(1699), - [anon_sym_declare] = ACTIONS(1699), - [anon_sym_public] = ACTIONS(1699), - [anon_sym_private] = ACTIONS(1699), - [anon_sym_protected] = ACTIONS(1699), - [anon_sym_override] = ACTIONS(1699), - [anon_sym_module] = ACTIONS(1699), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [anon_sym_object] = ACTIONS(1699), - [anon_sym_abstract] = ACTIONS(1699), - [anon_sym_satisfies] = ACTIONS(1701), - [anon_sym_interface] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [sym__automatic_semicolon] = ACTIONS(1707), - [sym__ternary_qmark] = ACTIONS(1705), + [sym_statement_block] = STATE(226), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym_identifier] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1689), + [anon_sym_type] = ACTIONS(1689), + [anon_sym_as] = ACTIONS(1689), + [anon_sym_namespace] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_typeof] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1689), + [anon_sym_with] = ACTIONS(1689), + [anon_sym_var] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(1689), + [anon_sym_in] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_debugger] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_case] = ACTIONS(1689), + [anon_sym_yield] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1687), + [sym_glimmer_opening_tag] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_class] = ACTIONS(1689), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_function] = ACTIONS(1689), + [anon_sym_QMARK_DOT] = ACTIONS(1687), + [anon_sym_new] = ACTIONS(1689), + [anon_sym_using] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1687), + [anon_sym_PIPE_PIPE] = ACTIONS(1687), + [anon_sym_GT_GT] = ACTIONS(1689), + [anon_sym_GT_GT_GT] = ACTIONS(1687), + [anon_sym_LT_LT] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_CARET] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_PERCENT] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1687), + [anon_sym_GT_EQ] = ACTIONS(1687), + [anon_sym_QMARK_QMARK] = ACTIONS(1687), + [anon_sym_instanceof] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1689), + [anon_sym_delete] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_number] = ACTIONS(1687), + [sym_private_property_identifier] = ACTIONS(1687), + [sym_this] = ACTIONS(1689), + [sym_super] = ACTIONS(1689), + [sym_true] = ACTIONS(1689), + [sym_false] = ACTIONS(1689), + [sym_null] = ACTIONS(1689), + [sym_undefined] = ACTIONS(1689), + [anon_sym_AT] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1689), + [anon_sym_readonly] = ACTIONS(1689), + [anon_sym_get] = ACTIONS(1689), + [anon_sym_set] = ACTIONS(1689), + [anon_sym_declare] = ACTIONS(1689), + [anon_sym_public] = ACTIONS(1689), + [anon_sym_private] = ACTIONS(1689), + [anon_sym_protected] = ACTIONS(1689), + [anon_sym_override] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_any] = ACTIONS(1689), + [anon_sym_number] = ACTIONS(1689), + [anon_sym_boolean] = ACTIONS(1689), + [anon_sym_string] = ACTIONS(1689), + [anon_sym_symbol] = ACTIONS(1689), + [anon_sym_object] = ACTIONS(1689), + [anon_sym_abstract] = ACTIONS(1689), + [anon_sym_satisfies] = ACTIONS(1689), + [anon_sym_interface] = ACTIONS(1689), + [anon_sym_enum] = ACTIONS(1689), + [sym__automatic_semicolon] = ACTIONS(1687), + [sym__ternary_qmark] = ACTIONS(1687), [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(1687), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1689), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(1709), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_using] = ACTIONS(606), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1908), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(5466), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(5467), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(1699), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(572), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1703), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(546), + [anon_sym_number] = ACTIONS(546), + [anon_sym_boolean] = ACTIONS(546), + [anon_sym_string] = ACTIONS(546), + [anon_sym_symbol] = ACTIONS(546), + [anon_sym_object] = ACTIONS(546), [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(1687), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1689), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(1711), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_using] = ACTIONS(606), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(1705), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(572), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1703), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(546), + [anon_sym_number] = ACTIONS(546), + [anon_sym_boolean] = ACTIONS(546), + [anon_sym_string] = ACTIONS(546), + [anon_sym_symbol] = ACTIONS(546), + [anon_sym_object] = ACTIONS(546), [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(1687), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1689), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(1713), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_using] = ACTIONS(606), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(1707), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(572), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1703), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(546), + [anon_sym_number] = ACTIONS(546), + [anon_sym_boolean] = ACTIONS(546), + [anon_sym_string] = ACTIONS(546), + [anon_sym_symbol] = ACTIONS(546), + [anon_sym_object] = ACTIONS(546), [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_statement_block] = STATE(230), - [ts_builtin_sym_end] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_namespace] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_typeof] = ACTIONS(1717), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_with] = ACTIONS(1717), - [anon_sym_var] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_switch] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_await] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_debugger] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_throw] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [sym_glimmer_opening_tag] = ACTIONS(1715), - [anon_sym_GT] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_function] = ACTIONS(1717), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1715), - [anon_sym_PIPE_PIPE] = ACTIONS(1715), - [anon_sym_GT_GT] = ACTIONS(1717), - [anon_sym_GT_GT_GT] = ACTIONS(1715), - [anon_sym_LT_LT] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_SLASH] = ACTIONS(1717), - [anon_sym_PERCENT] = ACTIONS(1715), - [anon_sym_STAR_STAR] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1717), - [anon_sym_LT_EQ] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1715), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1715), - [anon_sym_QMARK_QMARK] = ACTIONS(1715), - [anon_sym_instanceof] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_void] = ACTIONS(1717), - [anon_sym_delete] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1715), - [sym_number] = ACTIONS(1715), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(1717), - [sym_super] = ACTIONS(1717), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_null] = ACTIONS(1717), - [sym_undefined] = ACTIONS(1717), - [anon_sym_AT] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_readonly] = ACTIONS(1717), - [anon_sym_get] = ACTIONS(1717), - [anon_sym_set] = ACTIONS(1717), - [anon_sym_declare] = ACTIONS(1717), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_override] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_any] = ACTIONS(1717), - [anon_sym_number] = ACTIONS(1717), - [anon_sym_boolean] = ACTIONS(1717), - [anon_sym_string] = ACTIONS(1717), - [anon_sym_symbol] = ACTIONS(1717), - [anon_sym_object] = ACTIONS(1717), - [anon_sym_abstract] = ACTIONS(1717), - [anon_sym_satisfies] = ACTIONS(1717), - [anon_sym_interface] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [sym__automatic_semicolon] = ACTIONS(1715), - [sym__ternary_qmark] = ACTIONS(1715), + [sym_statement_block] = STATE(226), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym_identifier] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1689), + [anon_sym_type] = ACTIONS(1689), + [anon_sym_as] = ACTIONS(1689), + [anon_sym_namespace] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_typeof] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1689), + [anon_sym_with] = ACTIONS(1689), + [anon_sym_var] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(1689), + [anon_sym_in] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_debugger] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_case] = ACTIONS(1689), + [anon_sym_yield] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1687), + [sym_glimmer_opening_tag] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_DOT] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_class] = ACTIONS(1689), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_function] = ACTIONS(1689), + [anon_sym_QMARK_DOT] = ACTIONS(1687), + [anon_sym_new] = ACTIONS(1689), + [anon_sym_using] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1687), + [anon_sym_PIPE_PIPE] = ACTIONS(1687), + [anon_sym_GT_GT] = ACTIONS(1689), + [anon_sym_GT_GT_GT] = ACTIONS(1687), + [anon_sym_LT_LT] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_CARET] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_PERCENT] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1687), + [anon_sym_GT_EQ] = ACTIONS(1687), + [anon_sym_QMARK_QMARK] = ACTIONS(1687), + [anon_sym_instanceof] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1689), + [anon_sym_delete] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_number] = ACTIONS(1687), + [sym_private_property_identifier] = ACTIONS(1687), + [sym_this] = ACTIONS(1689), + [sym_super] = ACTIONS(1689), + [sym_true] = ACTIONS(1689), + [sym_false] = ACTIONS(1689), + [sym_null] = ACTIONS(1689), + [sym_undefined] = ACTIONS(1689), + [anon_sym_AT] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1689), + [anon_sym_readonly] = ACTIONS(1689), + [anon_sym_get] = ACTIONS(1689), + [anon_sym_set] = ACTIONS(1689), + [anon_sym_declare] = ACTIONS(1689), + [anon_sym_public] = ACTIONS(1689), + [anon_sym_private] = ACTIONS(1689), + [anon_sym_protected] = ACTIONS(1689), + [anon_sym_override] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_any] = ACTIONS(1689), + [anon_sym_number] = ACTIONS(1689), + [anon_sym_boolean] = ACTIONS(1689), + [anon_sym_string] = ACTIONS(1689), + [anon_sym_symbol] = ACTIONS(1689), + [anon_sym_object] = ACTIONS(1689), + [anon_sym_abstract] = ACTIONS(1689), + [anon_sym_satisfies] = ACTIONS(1689), + [anon_sym_interface] = ACTIONS(1689), + [anon_sym_enum] = ACTIONS(1689), + [sym__automatic_semicolon] = ACTIONS(1687), + [sym__ternary_qmark] = ACTIONS(1687), [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(1687), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1689), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(1721), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1695), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [ts_builtin_sym_end] = ACTIONS(1709), + [sym_identifier] = ACTIONS(1711), + [anon_sym_export] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1711), + [anon_sym_type] = ACTIONS(1711), + [anon_sym_EQ] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_typeof] = ACTIONS(1711), + [anon_sym_import] = ACTIONS(1711), + [anon_sym_with] = ACTIONS(1711), + [anon_sym_var] = ACTIONS(1711), + [anon_sym_let] = ACTIONS(1711), + [anon_sym_const] = ACTIONS(1711), + [anon_sym_BANG] = ACTIONS(1711), + [anon_sym_else] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_switch] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_await] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_do] = ACTIONS(1711), + [anon_sym_try] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_debugger] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_throw] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_case] = ACTIONS(1711), + [anon_sym_yield] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1709), + [sym_glimmer_opening_tag] = ACTIONS(1709), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_DQUOTE] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(1709), + [anon_sym_class] = ACTIONS(1711), + [anon_sym_async] = ACTIONS(1711), + [anon_sym_function] = ACTIONS(1711), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_new] = ACTIONS(1711), + [anon_sym_using] = ACTIONS(1711), + [anon_sym_AMP_AMP] = ACTIONS(1717), + [anon_sym_PIPE_PIPE] = ACTIONS(1717), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1717), + [anon_sym_LT_LT] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_PERCENT] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1717), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1717), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1717), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), + [anon_sym_GT_EQ] = ACTIONS(1717), + [anon_sym_QMARK_QMARK] = ACTIONS(1717), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_void] = ACTIONS(1711), + [anon_sym_delete] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1709), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1709), + [sym_number] = ACTIONS(1709), + [sym_private_property_identifier] = ACTIONS(1709), + [sym_this] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_null] = ACTIONS(1711), + [sym_undefined] = ACTIONS(1711), + [anon_sym_AT] = ACTIONS(1709), + [anon_sym_static] = ACTIONS(1711), + [anon_sym_readonly] = ACTIONS(1711), + [anon_sym_get] = ACTIONS(1711), + [anon_sym_set] = ACTIONS(1711), + [anon_sym_declare] = ACTIONS(1711), + [anon_sym_public] = ACTIONS(1711), + [anon_sym_private] = ACTIONS(1711), + [anon_sym_protected] = ACTIONS(1711), + [anon_sym_override] = ACTIONS(1711), + [anon_sym_module] = ACTIONS(1711), + [anon_sym_any] = ACTIONS(1711), + [anon_sym_number] = ACTIONS(1711), + [anon_sym_boolean] = ACTIONS(1711), + [anon_sym_string] = ACTIONS(1711), + [anon_sym_symbol] = ACTIONS(1711), + [anon_sym_object] = ACTIONS(1711), + [anon_sym_abstract] = ACTIONS(1711), + [anon_sym_satisfies] = ACTIONS(1713), + [anon_sym_interface] = ACTIONS(1711), + [anon_sym_enum] = ACTIONS(1711), + [sym__automatic_semicolon] = ACTIONS(1719), + [sym__ternary_qmark] = ACTIONS(1717), [sym_html_comment] = ACTIONS(5), }, [200] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1942), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4669), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4681), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(1687), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1689), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(1723), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_using] = ACTIONS(606), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1929), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(5466), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(5467), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(1721), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(572), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1703), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(546), + [anon_sym_number] = ACTIONS(546), + [anon_sym_boolean] = ACTIONS(546), + [anon_sym_string] = ACTIONS(546), + [anon_sym_symbol] = ACTIONS(546), + [anon_sym_object] = ACTIONS(546), [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4518), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4526), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(1687), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1689), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(1725), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_using] = ACTIONS(606), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1908), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(5466), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(5467), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(1721), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(572), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1703), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(546), + [anon_sym_number] = ACTIONS(546), + [anon_sym_boolean] = ACTIONS(546), + [anon_sym_string] = ACTIONS(546), + [anon_sym_symbol] = ACTIONS(546), + [anon_sym_object] = ACTIONS(546), [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1869), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4669), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4681), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(1687), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1689), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), [anon_sym_RBRACK] = ACTIONS(1723), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_using] = ACTIONS(606), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(572), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1703), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(546), + [anon_sym_number] = ACTIONS(546), + [anon_sym_boolean] = ACTIONS(546), + [anon_sym_string] = ACTIONS(546), + [anon_sym_symbol] = ACTIONS(546), + [anon_sym_object] = ACTIONS(546), [sym_html_comment] = ACTIONS(5), }, [203] = { - [sym_statement_block] = STATE(230), - [ts_builtin_sym_end] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_namespace] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_typeof] = ACTIONS(1717), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_with] = ACTIONS(1717), - [anon_sym_var] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_switch] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_await] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_debugger] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_throw] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [sym_glimmer_opening_tag] = ACTIONS(1715), - [anon_sym_GT] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_function] = ACTIONS(1717), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1715), - [anon_sym_PIPE_PIPE] = ACTIONS(1715), - [anon_sym_GT_GT] = ACTIONS(1717), - [anon_sym_GT_GT_GT] = ACTIONS(1715), - [anon_sym_LT_LT] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_SLASH] = ACTIONS(1717), - [anon_sym_PERCENT] = ACTIONS(1715), - [anon_sym_STAR_STAR] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1717), - [anon_sym_LT_EQ] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1715), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1715), - [anon_sym_QMARK_QMARK] = ACTIONS(1715), - [anon_sym_instanceof] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_void] = ACTIONS(1717), - [anon_sym_delete] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1715), - [sym_number] = ACTIONS(1715), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(1717), - [sym_super] = ACTIONS(1717), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_null] = ACTIONS(1717), - [sym_undefined] = ACTIONS(1717), - [anon_sym_AT] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_readonly] = ACTIONS(1717), - [anon_sym_get] = ACTIONS(1717), - [anon_sym_set] = ACTIONS(1717), - [anon_sym_declare] = ACTIONS(1717), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_override] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_any] = ACTIONS(1717), - [anon_sym_number] = ACTIONS(1717), - [anon_sym_boolean] = ACTIONS(1717), - [anon_sym_string] = ACTIONS(1717), - [anon_sym_symbol] = ACTIONS(1717), - [anon_sym_object] = ACTIONS(1717), - [anon_sym_abstract] = ACTIONS(1717), - [anon_sym_satisfies] = ACTIONS(1717), - [anon_sym_interface] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [sym__automatic_semicolon] = ACTIONS(1715), - [sym__ternary_qmark] = ACTIONS(1715), + [sym_statement_block] = STATE(226), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym_identifier] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1689), + [anon_sym_type] = ACTIONS(1689), + [anon_sym_as] = ACTIONS(1689), + [anon_sym_namespace] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_typeof] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1689), + [anon_sym_with] = ACTIONS(1689), + [anon_sym_var] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(1689), + [anon_sym_in] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_debugger] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_case] = ACTIONS(1689), + [anon_sym_yield] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1687), + [sym_glimmer_opening_tag] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_class] = ACTIONS(1689), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_function] = ACTIONS(1689), + [anon_sym_QMARK_DOT] = ACTIONS(1687), + [anon_sym_new] = ACTIONS(1689), + [anon_sym_using] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1687), + [anon_sym_PIPE_PIPE] = ACTIONS(1687), + [anon_sym_GT_GT] = ACTIONS(1689), + [anon_sym_GT_GT_GT] = ACTIONS(1687), + [anon_sym_LT_LT] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_CARET] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_PERCENT] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1689), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1689), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1687), + [anon_sym_GT_EQ] = ACTIONS(1687), + [anon_sym_QMARK_QMARK] = ACTIONS(1687), + [anon_sym_instanceof] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1689), + [anon_sym_delete] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_number] = ACTIONS(1687), + [sym_private_property_identifier] = ACTIONS(1687), + [sym_this] = ACTIONS(1689), + [sym_super] = ACTIONS(1689), + [sym_true] = ACTIONS(1689), + [sym_false] = ACTIONS(1689), + [sym_null] = ACTIONS(1689), + [sym_undefined] = ACTIONS(1689), + [anon_sym_AT] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1689), + [anon_sym_readonly] = ACTIONS(1689), + [anon_sym_get] = ACTIONS(1689), + [anon_sym_set] = ACTIONS(1689), + [anon_sym_declare] = ACTIONS(1689), + [anon_sym_public] = ACTIONS(1689), + [anon_sym_private] = ACTIONS(1689), + [anon_sym_protected] = ACTIONS(1689), + [anon_sym_override] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_any] = ACTIONS(1689), + [anon_sym_number] = ACTIONS(1689), + [anon_sym_boolean] = ACTIONS(1689), + [anon_sym_string] = ACTIONS(1689), + [anon_sym_symbol] = ACTIONS(1689), + [anon_sym_object] = ACTIONS(1689), + [anon_sym_abstract] = ACTIONS(1689), + [anon_sym_satisfies] = ACTIONS(1689), + [anon_sym_interface] = ACTIONS(1689), + [anon_sym_enum] = ACTIONS(1689), + [sym__automatic_semicolon] = ACTIONS(1687), + [sym__ternary_qmark] = ACTIONS(1687), [sym_html_comment] = ACTIONS(5), }, [204] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym__formal_parameter] = STATE(5141), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4025), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(287), - [sym_override_modifier] = STATE(292), - [sym_required_parameter] = STATE(5141), - [sym_optional_parameter] = STATE(5141), - [sym__parameter_name] = STATE(3647), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(699), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(1727), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1669), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1703), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(546), + [anon_sym_number] = ACTIONS(546), + [anon_sym_boolean] = ACTIONS(546), + [anon_sym_string] = ACTIONS(546), + [anon_sym_symbol] = ACTIONS(546), + [anon_sym_object] = ACTIONS(546), [sym_html_comment] = ACTIONS(5), }, [205] = { - [sym_statement_block] = STATE(230), - [ts_builtin_sym_end] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_namespace] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_typeof] = ACTIONS(1717), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_with] = ACTIONS(1717), - [anon_sym_var] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_switch] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_await] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_debugger] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_throw] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [sym_glimmer_opening_tag] = ACTIONS(1715), - [anon_sym_GT] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_function] = ACTIONS(1717), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1715), - [anon_sym_PIPE_PIPE] = ACTIONS(1715), - [anon_sym_GT_GT] = ACTIONS(1717), - [anon_sym_GT_GT_GT] = ACTIONS(1715), - [anon_sym_LT_LT] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_SLASH] = ACTIONS(1717), - [anon_sym_PERCENT] = ACTIONS(1715), - [anon_sym_STAR_STAR] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1717), - [anon_sym_LT_EQ] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1715), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1715), - [anon_sym_QMARK_QMARK] = ACTIONS(1715), - [anon_sym_instanceof] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_void] = ACTIONS(1717), - [anon_sym_delete] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1715), - [sym_number] = ACTIONS(1715), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(1717), - [sym_super] = ACTIONS(1717), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_null] = ACTIONS(1717), - [sym_undefined] = ACTIONS(1717), - [anon_sym_AT] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_readonly] = ACTIONS(1717), - [anon_sym_get] = ACTIONS(1717), - [anon_sym_set] = ACTIONS(1717), - [anon_sym_declare] = ACTIONS(1717), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_override] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_any] = ACTIONS(1717), - [anon_sym_number] = ACTIONS(1717), - [anon_sym_boolean] = ACTIONS(1717), - [anon_sym_string] = ACTIONS(1717), - [anon_sym_symbol] = ACTIONS(1717), - [anon_sym_object] = ACTIONS(1717), - [anon_sym_abstract] = ACTIONS(1717), - [anon_sym_satisfies] = ACTIONS(1717), - [anon_sym_interface] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [sym__automatic_semicolon] = ACTIONS(1715), - [sym__ternary_qmark] = ACTIONS(1715), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(6009), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(6008), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(1729), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1703), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(546), + [anon_sym_number] = ACTIONS(546), + [anon_sym_boolean] = ACTIONS(546), + [anon_sym_string] = ACTIONS(546), + [anon_sym_symbol] = ACTIONS(546), + [anon_sym_object] = ACTIONS(546), [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(3432), - [sym_expression_statement] = STATE(284), - [sym_variable_declaration] = STATE(284), - [sym_lexical_declaration] = STATE(284), - [sym_empty_statement] = STATE(284), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(4744), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(4744), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4744), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1731), + [ts_builtin_sym_end] = ACTIONS(1731), + [sym_identifier] = ACTIONS(1733), [anon_sym_export] = ACTIONS(1733), + [anon_sym_STAR] = ACTIONS(1733), + [anon_sym_default] = ACTIONS(1733), [anon_sym_type] = ACTIONS(1733), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1745), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1749), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1751), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_as] = ACTIONS(1733), + [anon_sym_namespace] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_typeof] = ACTIONS(1733), + [anon_sym_import] = ACTIONS(1733), + [anon_sym_with] = ACTIONS(1733), + [anon_sym_var] = ACTIONS(1733), + [anon_sym_let] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1733), + [anon_sym_else] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_switch] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_in] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_do] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_debugger] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_throw] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1731), + [anon_sym_case] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1731), + [sym_glimmer_opening_tag] = ACTIONS(1731), + [anon_sym_GT] = ACTIONS(1733), + [anon_sym_DOT] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1731), + [anon_sym_SQUOTE] = ACTIONS(1731), + [anon_sym_class] = ACTIONS(1733), + [anon_sym_async] = ACTIONS(1733), + [anon_sym_function] = ACTIONS(1733), + [anon_sym_QMARK_DOT] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_using] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1731), + [anon_sym_PIPE_PIPE] = ACTIONS(1731), + [anon_sym_GT_GT] = ACTIONS(1733), + [anon_sym_GT_GT_GT] = ACTIONS(1731), + [anon_sym_LT_LT] = ACTIONS(1731), + [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_CARET] = ACTIONS(1731), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_PLUS] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_SLASH] = ACTIONS(1733), + [anon_sym_PERCENT] = ACTIONS(1731), + [anon_sym_STAR_STAR] = ACTIONS(1731), + [anon_sym_LT] = ACTIONS(1733), + [anon_sym_LT_EQ] = ACTIONS(1731), + [anon_sym_EQ_EQ] = ACTIONS(1733), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1731), + [anon_sym_BANG_EQ] = ACTIONS(1733), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1731), + [anon_sym_GT_EQ] = ACTIONS(1731), + [anon_sym_QMARK_QMARK] = ACTIONS(1731), + [anon_sym_instanceof] = ACTIONS(1733), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1733), + [anon_sym_delete] = ACTIONS(1733), + [anon_sym_PLUS_PLUS] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1731), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1731), + [sym_number] = ACTIONS(1731), + [sym_private_property_identifier] = ACTIONS(1731), + [sym_this] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_null] = ACTIONS(1733), + [sym_undefined] = ACTIONS(1733), + [anon_sym_AT] = ACTIONS(1731), [anon_sym_static] = ACTIONS(1733), [anon_sym_readonly] = ACTIONS(1733), [anon_sym_get] = ACTIONS(1733), @@ -48669,9 +52024,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1733), [anon_sym_symbol] = ACTIONS(1733), [anon_sym_object] = ACTIONS(1733), + [anon_sym_abstract] = ACTIONS(1733), + [anon_sym_satisfies] = ACTIONS(1733), + [anon_sym_interface] = ACTIONS(1733), + [anon_sym_enum] = ACTIONS(1733), + [sym__automatic_semicolon] = ACTIONS(1731), + [sym__ternary_qmark] = ACTIONS(1731), [sym_html_comment] = ACTIONS(5), }, [207] = { + [ts_builtin_sym_end] = ACTIONS(1735), + [sym_identifier] = ACTIONS(1737), + [anon_sym_export] = ACTIONS(1737), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_namespace] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1735), + [anon_sym_COMMA] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_typeof] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_let] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_else] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1737), + [anon_sym_switch] = ACTIONS(1737), + [anon_sym_for] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_await] = ACTIONS(1737), + [anon_sym_in] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1737), + [anon_sym_do] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1737), + [anon_sym_break] = ACTIONS(1737), + [anon_sym_continue] = ACTIONS(1737), + [anon_sym_debugger] = ACTIONS(1737), + [anon_sym_return] = ACTIONS(1737), + [anon_sym_throw] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_yield] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1735), + [sym_glimmer_opening_tag] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1739), + [anon_sym_DOT] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1735), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(1737), + [anon_sym_QMARK_DOT] = ACTIONS(1741), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(1737), + [anon_sym_AMP_AMP] = ACTIONS(1741), + [anon_sym_PIPE_PIPE] = ACTIONS(1741), + [anon_sym_GT_GT] = ACTIONS(1739), + [anon_sym_GT_GT_GT] = ACTIONS(1741), + [anon_sym_LT_LT] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1739), + [anon_sym_CARET] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1737), + [anon_sym_DASH] = ACTIONS(1737), + [anon_sym_SLASH] = ACTIONS(1737), + [anon_sym_PERCENT] = ACTIONS(1741), + [anon_sym_STAR_STAR] = ACTIONS(1741), + [anon_sym_LT] = ACTIONS(1737), + [anon_sym_LT_EQ] = ACTIONS(1741), + [anon_sym_EQ_EQ] = ACTIONS(1739), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1741), + [anon_sym_BANG_EQ] = ACTIONS(1739), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1741), + [anon_sym_GT_EQ] = ACTIONS(1741), + [anon_sym_QMARK_QMARK] = ACTIONS(1741), + [anon_sym_instanceof] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1735), + [anon_sym_void] = ACTIONS(1737), + [anon_sym_delete] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [sym_private_property_identifier] = ACTIONS(1735), + [sym_this] = ACTIONS(1737), + [sym_super] = ACTIONS(1737), + [sym_true] = ACTIONS(1737), + [sym_false] = ACTIONS(1737), + [sym_null] = ACTIONS(1737), + [sym_undefined] = ACTIONS(1737), + [anon_sym_AT] = ACTIONS(1735), + [anon_sym_static] = ACTIONS(1737), + [anon_sym_readonly] = ACTIONS(1737), + [anon_sym_get] = ACTIONS(1737), + [anon_sym_set] = ACTIONS(1737), + [anon_sym_declare] = ACTIONS(1737), + [anon_sym_public] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_module] = ACTIONS(1737), + [anon_sym_any] = ACTIONS(1737), + [anon_sym_number] = ACTIONS(1737), + [anon_sym_boolean] = ACTIONS(1737), + [anon_sym_string] = ACTIONS(1737), + [anon_sym_symbol] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_satisfies] = ACTIONS(1739), + [anon_sym_interface] = ACTIONS(1737), + [anon_sym_enum] = ACTIONS(1737), + [sym__automatic_semicolon] = ACTIONS(1743), + [sym__ternary_qmark] = ACTIONS(1741), + [sym_html_comment] = ACTIONS(5), + }, + [208] = { + [ts_builtin_sym_end] = ACTIONS(1745), + [sym_identifier] = ACTIONS(1747), + [anon_sym_export] = ACTIONS(1747), + [anon_sym_STAR] = ACTIONS(1749), + [anon_sym_default] = ACTIONS(1747), + [anon_sym_type] = ACTIONS(1747), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_namespace] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(1745), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym_typeof] = ACTIONS(1747), + [anon_sym_import] = ACTIONS(1747), + [anon_sym_with] = ACTIONS(1747), + [anon_sym_var] = ACTIONS(1747), + [anon_sym_let] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [anon_sym_BANG] = ACTIONS(1747), + [anon_sym_else] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_switch] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_await] = ACTIONS(1747), + [anon_sym_in] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_do] = ACTIONS(1747), + [anon_sym_try] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_debugger] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_throw] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_case] = ACTIONS(1747), + [anon_sym_yield] = ACTIONS(1747), + [anon_sym_LBRACK] = ACTIONS(1745), + [sym_glimmer_opening_tag] = ACTIONS(1745), + [anon_sym_GT] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1745), + [anon_sym_SQUOTE] = ACTIONS(1745), + [anon_sym_class] = ACTIONS(1747), + [anon_sym_async] = ACTIONS(1747), + [anon_sym_function] = ACTIONS(1747), + [anon_sym_QMARK_DOT] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1751), + [anon_sym_PIPE_PIPE] = ACTIONS(1751), + [anon_sym_GT_GT] = ACTIONS(1749), + [anon_sym_GT_GT_GT] = ACTIONS(1751), + [anon_sym_LT_LT] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1749), + [anon_sym_CARET] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_SLASH] = ACTIONS(1747), + [anon_sym_PERCENT] = ACTIONS(1751), + [anon_sym_STAR_STAR] = ACTIONS(1751), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_EQ] = ACTIONS(1751), + [anon_sym_EQ_EQ] = ACTIONS(1749), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1751), + [anon_sym_BANG_EQ] = ACTIONS(1749), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1751), + [anon_sym_GT_EQ] = ACTIONS(1751), + [anon_sym_QMARK_QMARK] = ACTIONS(1751), + [anon_sym_instanceof] = ACTIONS(1749), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_void] = ACTIONS(1747), + [anon_sym_delete] = ACTIONS(1747), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1745), + [sym_number] = ACTIONS(1745), + [sym_private_property_identifier] = ACTIONS(1745), + [sym_this] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_true] = ACTIONS(1747), + [sym_false] = ACTIONS(1747), + [sym_null] = ACTIONS(1747), + [sym_undefined] = ACTIONS(1747), + [anon_sym_AT] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1747), + [anon_sym_readonly] = ACTIONS(1747), + [anon_sym_get] = ACTIONS(1747), + [anon_sym_set] = ACTIONS(1747), + [anon_sym_declare] = ACTIONS(1747), + [anon_sym_public] = ACTIONS(1747), + [anon_sym_private] = ACTIONS(1747), + [anon_sym_protected] = ACTIONS(1747), + [anon_sym_override] = ACTIONS(1747), + [anon_sym_module] = ACTIONS(1747), + [anon_sym_any] = ACTIONS(1747), + [anon_sym_number] = ACTIONS(1747), + [anon_sym_boolean] = ACTIONS(1747), + [anon_sym_string] = ACTIONS(1747), + [anon_sym_symbol] = ACTIONS(1747), + [anon_sym_object] = ACTIONS(1747), + [anon_sym_abstract] = ACTIONS(1747), + [anon_sym_satisfies] = ACTIONS(1749), + [anon_sym_interface] = ACTIONS(1747), + [anon_sym_enum] = ACTIONS(1747), + [sym__automatic_semicolon] = ACTIONS(1751), + [sym__ternary_qmark] = ACTIONS(1751), + [sym_html_comment] = ACTIONS(5), + }, + [209] = { [ts_builtin_sym_end] = ACTIONS(1753), [sym_identifier] = ACTIONS(1755), [anon_sym_export] = ACTIONS(1755), @@ -48782,7 +52365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1759), [sym_html_comment] = ACTIONS(5), }, - [208] = { + [210] = { [ts_builtin_sym_end] = ACTIONS(1763), [sym_identifier] = ACTIONS(1765), [anon_sym_export] = ACTIONS(1765), @@ -48893,93 +52476,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1769), [sym_html_comment] = ACTIONS(5), }, - [209] = { - [ts_builtin_sym_end] = ACTIONS(1773), - [sym_identifier] = ACTIONS(1775), + [211] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2323), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5440), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5440), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5440), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1389), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_mapped_type_clause] = STATE(7178), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(1773), [anon_sym_export] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_default] = ACTIONS(1775), [anon_sym_type] = ACTIONS(1775), - [anon_sym_as] = ACTIONS(1777), - [anon_sym_namespace] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_typeof] = ACTIONS(1775), - [anon_sym_import] = ACTIONS(1775), - [anon_sym_with] = ACTIONS(1775), - [anon_sym_var] = ACTIONS(1775), + [anon_sym_namespace] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1781), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_BANG] = ACTIONS(1775), - [anon_sym_else] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(1775), - [anon_sym_switch] = ACTIONS(1775), - [anon_sym_for] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_in] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1775), - [anon_sym_do] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1775), - [anon_sym_debugger] = ACTIONS(1775), - [anon_sym_return] = ACTIONS(1775), - [anon_sym_throw] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_case] = ACTIONS(1775), - [anon_sym_yield] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1773), - [sym_glimmer_opening_tag] = ACTIONS(1773), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DOT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_class] = ACTIONS(1775), - [anon_sym_async] = ACTIONS(1775), - [anon_sym_function] = ACTIONS(1775), - [anon_sym_QMARK_DOT] = ACTIONS(1779), - [anon_sym_new] = ACTIONS(1775), - [anon_sym_using] = ACTIONS(1775), - [anon_sym_AMP_AMP] = ACTIONS(1779), - [anon_sym_PIPE_PIPE] = ACTIONS(1779), - [anon_sym_GT_GT] = ACTIONS(1777), - [anon_sym_GT_GT_GT] = ACTIONS(1779), - [anon_sym_LT_LT] = ACTIONS(1779), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_CARET] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_SLASH] = ACTIONS(1775), - [anon_sym_PERCENT] = ACTIONS(1779), - [anon_sym_STAR_STAR] = ACTIONS(1779), - [anon_sym_LT] = ACTIONS(1775), - [anon_sym_LT_EQ] = ACTIONS(1779), - [anon_sym_EQ_EQ] = ACTIONS(1777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1779), - [anon_sym_BANG_EQ] = ACTIONS(1777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1779), - [anon_sym_GT_EQ] = ACTIONS(1779), - [anon_sym_QMARK_QMARK] = ACTIONS(1779), - [anon_sym_instanceof] = ACTIONS(1777), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_void] = ACTIONS(1775), - [anon_sym_delete] = ACTIONS(1775), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1773), - [sym_number] = ACTIONS(1773), - [sym_private_property_identifier] = ACTIONS(1773), - [sym_this] = ACTIONS(1775), - [sym_super] = ACTIONS(1775), - [sym_true] = ACTIONS(1775), - [sym_false] = ACTIONS(1775), - [sym_null] = ACTIONS(1775), - [sym_undefined] = ACTIONS(1775), - [anon_sym_AT] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(1783), + [anon_sym_RBRACK] = ACTIONS(1785), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1789), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1775), [anon_sym_readonly] = ACTIONS(1775), [anon_sym_get] = ACTIONS(1775), @@ -48996,136 +52585,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1775), [anon_sym_symbol] = ACTIONS(1775), [anon_sym_object] = ACTIONS(1775), - [anon_sym_abstract] = ACTIONS(1775), - [anon_sym_satisfies] = ACTIONS(1777), - [anon_sym_interface] = ACTIONS(1775), - [anon_sym_enum] = ACTIONS(1775), - [sym__automatic_semicolon] = ACTIONS(1781), - [sym__ternary_qmark] = ACTIONS(1779), [sym_html_comment] = ACTIONS(5), }, - [210] = { - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1787), - [anon_sym_default] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1787), - [anon_sym_namespace] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_typeof] = ACTIONS(1785), - [anon_sym_import] = ACTIONS(1785), - [anon_sym_with] = ACTIONS(1785), - [anon_sym_var] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_BANG] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_switch] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_debugger] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_throw] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1785), - [anon_sym_yield] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1783), - [sym_glimmer_opening_tag] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1783), - [anon_sym_SQUOTE] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(1785), - [anon_sym_async] = ACTIONS(1785), - [anon_sym_function] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(1789), - [anon_sym_new] = ACTIONS(1785), - [anon_sym_using] = ACTIONS(1785), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_GT_GT] = ACTIONS(1787), - [anon_sym_GT_GT_GT] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_PERCENT] = ACTIONS(1789), - [anon_sym_STAR_STAR] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_EQ_EQ] = ACTIONS(1787), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1787), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1789), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_QMARK_QMARK] = ACTIONS(1789), - [anon_sym_instanceof] = ACTIONS(1787), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_void] = ACTIONS(1785), - [anon_sym_delete] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1783), - [sym_number] = ACTIONS(1783), - [sym_private_property_identifier] = ACTIONS(1783), - [sym_this] = ACTIONS(1785), - [sym_super] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_null] = ACTIONS(1785), - [sym_undefined] = ACTIONS(1785), - [anon_sym_AT] = ACTIONS(1783), - [anon_sym_static] = ACTIONS(1785), - [anon_sym_readonly] = ACTIONS(1785), - [anon_sym_get] = ACTIONS(1785), - [anon_sym_set] = ACTIONS(1785), - [anon_sym_declare] = ACTIONS(1785), - [anon_sym_public] = ACTIONS(1785), - [anon_sym_private] = ACTIONS(1785), - [anon_sym_protected] = ACTIONS(1785), - [anon_sym_override] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_any] = ACTIONS(1785), - [anon_sym_number] = ACTIONS(1785), - [anon_sym_boolean] = ACTIONS(1785), - [anon_sym_string] = ACTIONS(1785), - [anon_sym_symbol] = ACTIONS(1785), - [anon_sym_object] = ACTIONS(1785), - [anon_sym_abstract] = ACTIONS(1785), - [anon_sym_satisfies] = ACTIONS(1787), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [sym__automatic_semicolon] = ACTIONS(1791), - [sym__ternary_qmark] = ACTIONS(1789), - [sym_html_comment] = ACTIONS(5), - }, - [211] = { + [212] = { [ts_builtin_sym_end] = ACTIONS(1793), [sym_identifier] = ACTIONS(1795), [anon_sym_export] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1795), [anon_sym_default] = ACTIONS(1795), [anon_sym_type] = ACTIONS(1795), - [anon_sym_as] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(1795), [anon_sym_namespace] = ACTIONS(1795), [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_COMMA] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1793), [anon_sym_RBRACE] = ACTIONS(1793), [anon_sym_typeof] = ACTIONS(1795), [anon_sym_import] = ACTIONS(1795), @@ -49140,7 +52612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1795), [anon_sym_LPAREN] = ACTIONS(1793), [anon_sym_await] = ACTIONS(1795), - [anon_sym_in] = ACTIONS(1797), + [anon_sym_in] = ACTIONS(1795), [anon_sym_while] = ACTIONS(1795), [anon_sym_do] = ACTIONS(1795), [anon_sym_try] = ACTIONS(1795), @@ -49154,38 +52626,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1795), [anon_sym_LBRACK] = ACTIONS(1793), [sym_glimmer_opening_tag] = ACTIONS(1793), - [anon_sym_GT] = ACTIONS(1797), - [anon_sym_DOT] = ACTIONS(1797), + [anon_sym_GT] = ACTIONS(1795), + [anon_sym_DOT] = ACTIONS(1795), [anon_sym_DQUOTE] = ACTIONS(1793), [anon_sym_SQUOTE] = ACTIONS(1793), [anon_sym_class] = ACTIONS(1795), [anon_sym_async] = ACTIONS(1795), [anon_sym_function] = ACTIONS(1795), - [anon_sym_QMARK_DOT] = ACTIONS(1799), + [anon_sym_QMARK_DOT] = ACTIONS(1793), [anon_sym_new] = ACTIONS(1795), [anon_sym_using] = ACTIONS(1795), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_PIPE_PIPE] = ACTIONS(1799), - [anon_sym_GT_GT] = ACTIONS(1797), - [anon_sym_GT_GT_GT] = ACTIONS(1799), - [anon_sym_LT_LT] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_AMP_AMP] = ACTIONS(1793), + [anon_sym_PIPE_PIPE] = ACTIONS(1793), + [anon_sym_GT_GT] = ACTIONS(1795), + [anon_sym_GT_GT_GT] = ACTIONS(1793), + [anon_sym_LT_LT] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(1795), [anon_sym_PLUS] = ACTIONS(1795), [anon_sym_DASH] = ACTIONS(1795), [anon_sym_SLASH] = ACTIONS(1795), - [anon_sym_PERCENT] = ACTIONS(1799), - [anon_sym_STAR_STAR] = ACTIONS(1799), + [anon_sym_PERCENT] = ACTIONS(1793), + [anon_sym_STAR_STAR] = ACTIONS(1793), [anon_sym_LT] = ACTIONS(1795), - [anon_sym_LT_EQ] = ACTIONS(1799), - [anon_sym_EQ_EQ] = ACTIONS(1797), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1799), - [anon_sym_BANG_EQ] = ACTIONS(1797), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1799), - [anon_sym_GT_EQ] = ACTIONS(1799), - [anon_sym_QMARK_QMARK] = ACTIONS(1799), - [anon_sym_instanceof] = ACTIONS(1797), + [anon_sym_LT_EQ] = ACTIONS(1793), + [anon_sym_EQ_EQ] = ACTIONS(1795), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1793), + [anon_sym_BANG_EQ] = ACTIONS(1795), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1793), + [anon_sym_GT_EQ] = ACTIONS(1793), + [anon_sym_QMARK_QMARK] = ACTIONS(1793), + [anon_sym_instanceof] = ACTIONS(1795), [anon_sym_TILDE] = ACTIONS(1793), [anon_sym_void] = ACTIONS(1795), [anon_sym_delete] = ACTIONS(1795), @@ -49219,418 +52691,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1795), [anon_sym_object] = ACTIONS(1795), [anon_sym_abstract] = ACTIONS(1795), - [anon_sym_satisfies] = ACTIONS(1797), + [anon_sym_satisfies] = ACTIONS(1795), [anon_sym_interface] = ACTIONS(1795), [anon_sym_enum] = ACTIONS(1795), - [sym__automatic_semicolon] = ACTIONS(1801), - [sym__ternary_qmark] = ACTIONS(1799), + [sym__automatic_semicolon] = ACTIONS(1793), + [sym__ternary_qmark] = ACTIONS(1793), [sym_html_comment] = ACTIONS(5), }, - [212] = { - [ts_builtin_sym_end] = ACTIONS(1803), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_default] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1805), - [anon_sym_as] = ACTIONS(1805), - [anon_sym_namespace] = ACTIONS(1805), + [213] = { + [sym_import] = STATE(3814), + [sym_expression_statement] = STATE(281), + [sym_variable_declaration] = STATE(281), + [sym_lexical_declaration] = STATE(281), + [sym_empty_statement] = STATE(281), + [sym_parenthesized_expression] = STATE(1331), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1331), + [sym_subscript_expression] = STATE(1331), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1331), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1797), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_namespace] = ACTIONS(1801), [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_COMMA] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_typeof] = ACTIONS(1805), - [anon_sym_import] = ACTIONS(1805), - [anon_sym_with] = ACTIONS(1805), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), [anon_sym_var] = ACTIONS(1805), - [anon_sym_let] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_switch] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_in] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_do] = ACTIONS(1805), - [anon_sym_try] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_debugger] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_throw] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1805), - [anon_sym_yield] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1803), - [sym_glimmer_opening_tag] = ACTIONS(1803), - [anon_sym_GT] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1803), - [anon_sym_SQUOTE] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1805), - [anon_sym_async] = ACTIONS(1805), - [anon_sym_function] = ACTIONS(1805), - [anon_sym_QMARK_DOT] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1805), - [anon_sym_using] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1803), - [anon_sym_PIPE_PIPE] = ACTIONS(1803), - [anon_sym_GT_GT] = ACTIONS(1805), - [anon_sym_GT_GT_GT] = ACTIONS(1803), - [anon_sym_LT_LT] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_SLASH] = ACTIONS(1805), - [anon_sym_PERCENT] = ACTIONS(1803), - [anon_sym_STAR_STAR] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_LT_EQ] = ACTIONS(1803), - [anon_sym_EQ_EQ] = ACTIONS(1805), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1803), - [anon_sym_BANG_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1803), - [anon_sym_GT_EQ] = ACTIONS(1803), - [anon_sym_QMARK_QMARK] = ACTIONS(1803), - [anon_sym_instanceof] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_void] = ACTIONS(1805), - [anon_sym_delete] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1803), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1803), - [sym_number] = ACTIONS(1803), - [sym_private_property_identifier] = ACTIONS(1803), - [sym_this] = ACTIONS(1805), - [sym_super] = ACTIONS(1805), - [sym_true] = ACTIONS(1805), - [sym_false] = ACTIONS(1805), - [sym_null] = ACTIONS(1805), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1805), - [anon_sym_readonly] = ACTIONS(1805), - [anon_sym_get] = ACTIONS(1805), - [anon_sym_set] = ACTIONS(1805), - [anon_sym_declare] = ACTIONS(1805), - [anon_sym_public] = ACTIONS(1805), - [anon_sym_private] = ACTIONS(1805), - [anon_sym_protected] = ACTIONS(1805), - [anon_sym_override] = ACTIONS(1805), - [anon_sym_module] = ACTIONS(1805), - [anon_sym_any] = ACTIONS(1805), - [anon_sym_number] = ACTIONS(1805), - [anon_sym_boolean] = ACTIONS(1805), - [anon_sym_string] = ACTIONS(1805), - [anon_sym_symbol] = ACTIONS(1805), - [anon_sym_object] = ACTIONS(1805), - [anon_sym_abstract] = ACTIONS(1805), - [anon_sym_satisfies] = ACTIONS(1805), - [anon_sym_interface] = ACTIONS(1805), - [anon_sym_enum] = ACTIONS(1805), - [sym__automatic_semicolon] = ACTIONS(1803), - [sym__ternary_qmark] = ACTIONS(1803), - [sym_html_comment] = ACTIONS(5), - }, - [213] = { - [ts_builtin_sym_end] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1699), - [anon_sym_export] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_type] = ACTIONS(1699), - [anon_sym_as] = ACTIONS(1699), - [anon_sym_namespace] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1697), - [anon_sym_RBRACE] = ACTIONS(1697), - [anon_sym_typeof] = ACTIONS(1699), - [anon_sym_import] = ACTIONS(1699), - [anon_sym_with] = ACTIONS(1699), - [anon_sym_var] = ACTIONS(1699), - [anon_sym_let] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_else] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1697), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_in] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_debugger] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_throw] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_case] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1697), - [sym_glimmer_opening_tag] = ACTIONS(1697), - [anon_sym_GT] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_async] = ACTIONS(1699), - [anon_sym_function] = ACTIONS(1699), - [anon_sym_QMARK_DOT] = ACTIONS(1697), - [anon_sym_new] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1697), - [anon_sym_PIPE_PIPE] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1699), - [anon_sym_GT_GT_GT] = ACTIONS(1697), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_SLASH] = ACTIONS(1699), - [anon_sym_PERCENT] = ACTIONS(1697), - [anon_sym_STAR_STAR] = ACTIONS(1697), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_LT_EQ] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1697), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1697), - [anon_sym_GT_EQ] = ACTIONS(1697), - [anon_sym_QMARK_QMARK] = ACTIONS(1697), - [anon_sym_instanceof] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1699), - [anon_sym_delete] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1697), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1697), - [sym_number] = ACTIONS(1697), - [sym_private_property_identifier] = ACTIONS(1697), - [sym_this] = ACTIONS(1699), - [sym_super] = ACTIONS(1699), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_null] = ACTIONS(1699), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_readonly] = ACTIONS(1699), - [anon_sym_get] = ACTIONS(1699), - [anon_sym_set] = ACTIONS(1699), - [anon_sym_declare] = ACTIONS(1699), - [anon_sym_public] = ACTIONS(1699), - [anon_sym_private] = ACTIONS(1699), - [anon_sym_protected] = ACTIONS(1699), - [anon_sym_override] = ACTIONS(1699), - [anon_sym_module] = ACTIONS(1699), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [anon_sym_object] = ACTIONS(1699), - [anon_sym_abstract] = ACTIONS(1699), - [anon_sym_satisfies] = ACTIONS(1699), - [anon_sym_interface] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [sym__automatic_semicolon] = ACTIONS(1807), - [sym__ternary_qmark] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1807), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1811), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1815), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1817), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_readonly] = ACTIONS(1799), + [anon_sym_get] = ACTIONS(1799), + [anon_sym_set] = ACTIONS(1799), + [anon_sym_declare] = ACTIONS(1799), + [anon_sym_public] = ACTIONS(1799), + [anon_sym_private] = ACTIONS(1799), + [anon_sym_protected] = ACTIONS(1799), + [anon_sym_override] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_any] = ACTIONS(1799), + [anon_sym_number] = ACTIONS(1799), + [anon_sym_boolean] = ACTIONS(1799), + [anon_sym_string] = ACTIONS(1799), + [anon_sym_symbol] = ACTIONS(1799), + [anon_sym_object] = ACTIONS(1799), [sym_html_comment] = ACTIONS(5), }, [214] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_as] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_typeof] = ACTIONS(1811), - [anon_sym_import] = ACTIONS(1811), - [anon_sym_with] = ACTIONS(1811), - [anon_sym_var] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1811), - [anon_sym_in] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_debugger] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1809), - [sym_glimmer_opening_tag] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1811), - [anon_sym_DOT] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_function] = ACTIONS(1811), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1811), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_STAR_STAR] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1811), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1811), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_QMARK_QMARK] = ACTIONS(1809), - [anon_sym_instanceof] = ACTIONS(1811), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_void] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1809), - [sym_number] = ACTIONS(1809), - [sym_private_property_identifier] = ACTIONS(1809), - [sym_this] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_readonly] = ACTIONS(1811), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), - [anon_sym_declare] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_private] = ACTIONS(1811), - [anon_sym_protected] = ACTIONS(1811), - [anon_sym_override] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_any] = ACTIONS(1811), - [anon_sym_number] = ACTIONS(1811), - [anon_sym_boolean] = ACTIONS(1811), - [anon_sym_string] = ACTIONS(1811), - [anon_sym_symbol] = ACTIONS(1811), - [anon_sym_object] = ACTIONS(1811), - [anon_sym_abstract] = ACTIONS(1811), - [anon_sym_satisfies] = ACTIONS(1811), - [anon_sym_interface] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [sym__automatic_semicolon] = ACTIONS(1809), - [sym__ternary_qmark] = ACTIONS(1809), - [sym_html_comment] = ACTIONS(5), - }, - [215] = { - [sym_import] = STATE(3432), - [sym_expression_statement] = STATE(285), - [sym_variable_declaration] = STATE(285), - [sym_lexical_declaration] = STATE(285), - [sym_empty_statement] = STATE(285), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(4744), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(4744), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4744), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1731), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1737), + [sym_import] = STATE(3814), + [sym_expression_statement] = STATE(283), + [sym_variable_declaration] = STATE(283), + [sym_lexical_declaration] = STATE(283), + [sym_empty_statement] = STATE(283), + [sym_parenthesized_expression] = STATE(1331), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(5571), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(5571), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1331), + [sym_subscript_expression] = STATE(1331), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(5571), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1331), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1797), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_namespace] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1803), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), + [anon_sym_import] = ACTIONS(133), + [anon_sym_var] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1807), + [anon_sym_const] = ACTIONS(1809), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), [anon_sym_SEMI] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1811), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1747), + [anon_sym_async] = ACTIONS(1813), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1749), + [anon_sym_new] = ACTIONS(1815), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -49650,233 +52900,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1751), + [sym_undefined] = ACTIONS(1817), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1733), - [anon_sym_readonly] = ACTIONS(1733), - [anon_sym_get] = ACTIONS(1733), - [anon_sym_set] = ACTIONS(1733), - [anon_sym_declare] = ACTIONS(1733), - [anon_sym_public] = ACTIONS(1733), - [anon_sym_private] = ACTIONS(1733), - [anon_sym_protected] = ACTIONS(1733), - [anon_sym_override] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_any] = ACTIONS(1733), - [anon_sym_number] = ACTIONS(1733), - [anon_sym_boolean] = ACTIONS(1733), - [anon_sym_string] = ACTIONS(1733), - [anon_sym_symbol] = ACTIONS(1733), - [anon_sym_object] = ACTIONS(1733), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_readonly] = ACTIONS(1799), + [anon_sym_get] = ACTIONS(1799), + [anon_sym_set] = ACTIONS(1799), + [anon_sym_declare] = ACTIONS(1799), + [anon_sym_public] = ACTIONS(1799), + [anon_sym_private] = ACTIONS(1799), + [anon_sym_protected] = ACTIONS(1799), + [anon_sym_override] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_any] = ACTIONS(1799), + [anon_sym_number] = ACTIONS(1799), + [anon_sym_boolean] = ACTIONS(1799), + [anon_sym_string] = ACTIONS(1799), + [anon_sym_symbol] = ACTIONS(1799), + [anon_sym_object] = ACTIONS(1799), [sym_html_comment] = ACTIONS(5), }, - [216] = { - [ts_builtin_sym_end] = ACTIONS(1813), - [sym_identifier] = ACTIONS(1815), - [anon_sym_export] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1815), - [anon_sym_as] = ACTIONS(1815), - [anon_sym_namespace] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_COMMA] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_typeof] = ACTIONS(1815), - [anon_sym_import] = ACTIONS(1815), - [anon_sym_with] = ACTIONS(1815), - [anon_sym_var] = ACTIONS(1815), - [anon_sym_let] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_else] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_switch] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_in] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_debugger] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_throw] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1813), - [sym_glimmer_opening_tag] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_async] = ACTIONS(1815), - [anon_sym_function] = ACTIONS(1815), - [anon_sym_QMARK_DOT] = ACTIONS(1813), - [anon_sym_new] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_AMP_AMP] = ACTIONS(1813), - [anon_sym_PIPE_PIPE] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1815), - [anon_sym_GT_GT_GT] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_PIPE] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_SLASH] = ACTIONS(1815), - [anon_sym_PERCENT] = ACTIONS(1813), - [anon_sym_STAR_STAR] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_LT_EQ] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1813), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(1813), - [anon_sym_QMARK_QMARK] = ACTIONS(1813), - [anon_sym_instanceof] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(1815), - [anon_sym_delete] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1813), - [sym_number] = ACTIONS(1813), - [sym_private_property_identifier] = ACTIONS(1813), - [sym_this] = ACTIONS(1815), - [sym_super] = ACTIONS(1815), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), - [sym_undefined] = ACTIONS(1815), - [anon_sym_AT] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_readonly] = ACTIONS(1815), - [anon_sym_get] = ACTIONS(1815), - [anon_sym_set] = ACTIONS(1815), - [anon_sym_declare] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_private] = ACTIONS(1815), - [anon_sym_protected] = ACTIONS(1815), - [anon_sym_override] = ACTIONS(1815), - [anon_sym_module] = ACTIONS(1815), - [anon_sym_any] = ACTIONS(1815), - [anon_sym_number] = ACTIONS(1815), - [anon_sym_boolean] = ACTIONS(1815), - [anon_sym_string] = ACTIONS(1815), - [anon_sym_symbol] = ACTIONS(1815), - [anon_sym_object] = ACTIONS(1815), - [anon_sym_abstract] = ACTIONS(1815), - [anon_sym_satisfies] = ACTIONS(1815), - [anon_sym_interface] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [sym__automatic_semicolon] = ACTIONS(1813), - [sym__ternary_qmark] = ACTIONS(1813), + [215] = { + [ts_builtin_sym_end] = ACTIONS(1819), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1821), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1821), + [anon_sym_type] = ACTIONS(1821), + [anon_sym_as] = ACTIONS(1821), + [anon_sym_namespace] = ACTIONS(1821), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_COMMA] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_typeof] = ACTIONS(1821), + [anon_sym_import] = ACTIONS(1821), + [anon_sym_with] = ACTIONS(1821), + [anon_sym_var] = ACTIONS(1821), + [anon_sym_let] = ACTIONS(1821), + [anon_sym_const] = ACTIONS(1821), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_else] = ACTIONS(1821), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_switch] = ACTIONS(1821), + [anon_sym_for] = ACTIONS(1821), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_await] = ACTIONS(1821), + [anon_sym_in] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(1821), + [anon_sym_do] = ACTIONS(1821), + [anon_sym_try] = ACTIONS(1821), + [anon_sym_break] = ACTIONS(1821), + [anon_sym_continue] = ACTIONS(1821), + [anon_sym_debugger] = ACTIONS(1821), + [anon_sym_return] = ACTIONS(1821), + [anon_sym_throw] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_case] = ACTIONS(1821), + [anon_sym_yield] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1819), + [sym_glimmer_opening_tag] = ACTIONS(1819), + [anon_sym_GT] = ACTIONS(1821), + [anon_sym_DOT] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_SQUOTE] = ACTIONS(1819), + [anon_sym_class] = ACTIONS(1821), + [anon_sym_async] = ACTIONS(1821), + [anon_sym_function] = ACTIONS(1821), + [anon_sym_QMARK_DOT] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1821), + [anon_sym_using] = ACTIONS(1821), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1821), + [anon_sym_GT_GT_GT] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_CARET] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1821), + [anon_sym_PLUS] = ACTIONS(1821), + [anon_sym_DASH] = ACTIONS(1821), + [anon_sym_SLASH] = ACTIONS(1821), + [anon_sym_PERCENT] = ACTIONS(1819), + [anon_sym_STAR_STAR] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1821), + [anon_sym_LT_EQ] = ACTIONS(1819), + [anon_sym_EQ_EQ] = ACTIONS(1821), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1819), + [anon_sym_BANG_EQ] = ACTIONS(1821), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1819), + [anon_sym_GT_EQ] = ACTIONS(1819), + [anon_sym_QMARK_QMARK] = ACTIONS(1819), + [anon_sym_instanceof] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1819), + [anon_sym_void] = ACTIONS(1821), + [anon_sym_delete] = ACTIONS(1821), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [sym_private_property_identifier] = ACTIONS(1819), + [sym_this] = ACTIONS(1821), + [sym_super] = ACTIONS(1821), + [sym_true] = ACTIONS(1821), + [sym_false] = ACTIONS(1821), + [sym_null] = ACTIONS(1821), + [sym_undefined] = ACTIONS(1821), + [anon_sym_AT] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1821), + [anon_sym_readonly] = ACTIONS(1821), + [anon_sym_get] = ACTIONS(1821), + [anon_sym_set] = ACTIONS(1821), + [anon_sym_declare] = ACTIONS(1821), + [anon_sym_public] = ACTIONS(1821), + [anon_sym_private] = ACTIONS(1821), + [anon_sym_protected] = ACTIONS(1821), + [anon_sym_override] = ACTIONS(1821), + [anon_sym_module] = ACTIONS(1821), + [anon_sym_any] = ACTIONS(1821), + [anon_sym_number] = ACTIONS(1821), + [anon_sym_boolean] = ACTIONS(1821), + [anon_sym_string] = ACTIONS(1821), + [anon_sym_symbol] = ACTIONS(1821), + [anon_sym_object] = ACTIONS(1821), + [anon_sym_abstract] = ACTIONS(1821), + [anon_sym_satisfies] = ACTIONS(1821), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1821), + [sym__automatic_semicolon] = ACTIONS(1819), + [sym__ternary_qmark] = ACTIONS(1819), [sym_html_comment] = ACTIONS(5), }, - [217] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [216] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_RBRACK] = ACTIONS(1817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_RBRACK] = ACTIONS(1823), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), [anon_sym_get] = ACTIONS(1053), [anon_sym_set] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1817), + [anon_sym_QMARK] = ACTIONS(1823), [anon_sym_declare] = ACTIONS(1053), [anon_sym_public] = ACTIONS(1053), [anon_sym_private] = ACTIONS(1053), @@ -49889,242 +53139,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1053), [anon_sym_symbol] = ACTIONS(1053), [anon_sym_object] = ACTIONS(1053), - [anon_sym_extends] = ACTIONS(1819), - [sym_html_comment] = ACTIONS(5), - }, - [218] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_as] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_typeof] = ACTIONS(1823), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_var] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_debugger] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1821), - [sym_glimmer_opening_tag] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_function] = ACTIONS(1823), - [anon_sym_QMARK_DOT] = ACTIONS(1821), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1821), - [anon_sym_LT_LT] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1821), - [anon_sym_STAR_STAR] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1821), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1821), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1821), - [anon_sym_GT_EQ] = ACTIONS(1821), - [anon_sym_QMARK_QMARK] = ACTIONS(1821), - [anon_sym_instanceof] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_void] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_number] = ACTIONS(1821), - [sym_private_property_identifier] = ACTIONS(1821), - [sym_this] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_undefined] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_readonly] = ACTIONS(1823), - [anon_sym_get] = ACTIONS(1823), - [anon_sym_set] = ACTIONS(1823), - [anon_sym_declare] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [anon_sym_override] = ACTIONS(1823), - [anon_sym_module] = ACTIONS(1823), - [anon_sym_any] = ACTIONS(1823), - [anon_sym_number] = ACTIONS(1823), - [anon_sym_boolean] = ACTIONS(1823), - [anon_sym_string] = ACTIONS(1823), - [anon_sym_symbol] = ACTIONS(1823), - [anon_sym_object] = ACTIONS(1823), - [anon_sym_abstract] = ACTIONS(1823), - [anon_sym_satisfies] = ACTIONS(1823), - [anon_sym_interface] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [sym__automatic_semicolon] = ACTIONS(1821), - [sym__ternary_qmark] = ACTIONS(1821), + [anon_sym_extends] = ACTIONS(1825), [sym_html_comment] = ACTIONS(5), }, - [219] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_as] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_typeof] = ACTIONS(1823), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_var] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_debugger] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1821), - [sym_glimmer_opening_tag] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_function] = ACTIONS(1823), - [anon_sym_QMARK_DOT] = ACTIONS(1821), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1821), - [anon_sym_LT_LT] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1821), - [anon_sym_STAR_STAR] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1821), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1821), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1821), - [anon_sym_GT_EQ] = ACTIONS(1821), - [anon_sym_QMARK_QMARK] = ACTIONS(1821), - [anon_sym_instanceof] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_void] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_number] = ACTIONS(1821), - [sym_private_property_identifier] = ACTIONS(1821), - [sym_this] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_undefined] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_readonly] = ACTIONS(1823), - [anon_sym_get] = ACTIONS(1823), - [anon_sym_set] = ACTIONS(1823), - [anon_sym_declare] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [anon_sym_override] = ACTIONS(1823), - [anon_sym_module] = ACTIONS(1823), - [anon_sym_any] = ACTIONS(1823), - [anon_sym_number] = ACTIONS(1823), - [anon_sym_boolean] = ACTIONS(1823), - [anon_sym_string] = ACTIONS(1823), - [anon_sym_symbol] = ACTIONS(1823), - [anon_sym_object] = ACTIONS(1823), - [anon_sym_abstract] = ACTIONS(1823), - [anon_sym_satisfies] = ACTIONS(1823), - [anon_sym_interface] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [sym__automatic_semicolon] = ACTIONS(1825), - [sym__ternary_qmark] = ACTIONS(1821), - [sym_html_comment] = ACTIONS(5), - }, - [220] = { + [217] = { [ts_builtin_sym_end] = ACTIONS(1827), [sym_identifier] = ACTIONS(1829), [anon_sym_export] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(1831), [anon_sym_default] = ACTIONS(1829), [anon_sym_type] = ACTIONS(1829), - [anon_sym_as] = ACTIONS(1829), + [anon_sym_as] = ACTIONS(1831), [anon_sym_namespace] = ACTIONS(1829), [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_COMMA] = ACTIONS(1827), + [anon_sym_COMMA] = ACTIONS(1833), [anon_sym_RBRACE] = ACTIONS(1827), [anon_sym_typeof] = ACTIONS(1829), [anon_sym_import] = ACTIONS(1829), @@ -50139,7 +53167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1829), [anon_sym_LPAREN] = ACTIONS(1827), [anon_sym_await] = ACTIONS(1829), - [anon_sym_in] = ACTIONS(1829), + [anon_sym_in] = ACTIONS(1831), [anon_sym_while] = ACTIONS(1829), [anon_sym_do] = ACTIONS(1829), [anon_sym_try] = ACTIONS(1829), @@ -50153,38 +53181,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(1827), [sym_glimmer_opening_tag] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DQUOTE] = ACTIONS(1827), [anon_sym_SQUOTE] = ACTIONS(1827), [anon_sym_class] = ACTIONS(1829), [anon_sym_async] = ACTIONS(1829), [anon_sym_function] = ACTIONS(1829), - [anon_sym_QMARK_DOT] = ACTIONS(1827), + [anon_sym_QMARK_DOT] = ACTIONS(1833), [anon_sym_new] = ACTIONS(1829), [anon_sym_using] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1829), - [anon_sym_GT_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1833), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_GT_GT] = ACTIONS(1831), + [anon_sym_GT_GT_GT] = ACTIONS(1833), + [anon_sym_LT_LT] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1831), [anon_sym_PLUS] = ACTIONS(1829), [anon_sym_DASH] = ACTIONS(1829), [anon_sym_SLASH] = ACTIONS(1829), - [anon_sym_PERCENT] = ACTIONS(1827), - [anon_sym_STAR_STAR] = ACTIONS(1827), + [anon_sym_PERCENT] = ACTIONS(1833), + [anon_sym_STAR_STAR] = ACTIONS(1833), [anon_sym_LT] = ACTIONS(1829), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(1827), - [anon_sym_QMARK_QMARK] = ACTIONS(1827), - [anon_sym_instanceof] = ACTIONS(1829), + [anon_sym_LT_EQ] = ACTIONS(1833), + [anon_sym_EQ_EQ] = ACTIONS(1831), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1833), + [anon_sym_BANG_EQ] = ACTIONS(1831), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1833), + [anon_sym_GT_EQ] = ACTIONS(1833), + [anon_sym_QMARK_QMARK] = ACTIONS(1833), + [anon_sym_instanceof] = ACTIONS(1831), [anon_sym_TILDE] = ACTIONS(1827), [anon_sym_void] = ACTIONS(1829), [anon_sym_delete] = ACTIONS(1829), @@ -50218,690 +53246,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1829), [anon_sym_object] = ACTIONS(1829), [anon_sym_abstract] = ACTIONS(1829), - [anon_sym_satisfies] = ACTIONS(1829), + [anon_sym_satisfies] = ACTIONS(1831), [anon_sym_interface] = ACTIONS(1829), [anon_sym_enum] = ACTIONS(1829), - [sym__automatic_semicolon] = ACTIONS(1827), - [sym__ternary_qmark] = ACTIONS(1827), - [sym_html_comment] = ACTIONS(5), - }, - [221] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [anon_sym_extends] = ACTIONS(1819), - [anon_sym_PIPE_RBRACE] = ACTIONS(1817), - [sym__automatic_semicolon] = ACTIONS(1817), - [sym_html_comment] = ACTIONS(5), - }, - [222] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_export] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_as] = ACTIONS(1833), - [anon_sym_namespace] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_typeof] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1833), - [anon_sym_with] = ACTIONS(1833), - [anon_sym_var] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_else] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_switch] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_in] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_do] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_debugger] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_case] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [sym_glimmer_opening_tag] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1833), - [anon_sym_DOT] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_function] = ACTIONS(1833), - [anon_sym_QMARK_DOT] = ACTIONS(1831), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1833), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_GT_GT] = ACTIONS(1833), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1833), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1833), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1833), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_QMARK_QMARK] = ACTIONS(1831), - [anon_sym_instanceof] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_void] = ACTIONS(1833), - [anon_sym_delete] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1831), - [sym_number] = ACTIONS(1831), - [sym_private_property_identifier] = ACTIONS(1831), - [sym_this] = ACTIONS(1833), - [sym_super] = ACTIONS(1833), - [sym_true] = ACTIONS(1833), - [sym_false] = ACTIONS(1833), - [sym_null] = ACTIONS(1833), - [sym_undefined] = ACTIONS(1833), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_readonly] = ACTIONS(1833), - [anon_sym_get] = ACTIONS(1833), - [anon_sym_set] = ACTIONS(1833), - [anon_sym_declare] = ACTIONS(1833), - [anon_sym_public] = ACTIONS(1833), - [anon_sym_private] = ACTIONS(1833), - [anon_sym_protected] = ACTIONS(1833), - [anon_sym_override] = ACTIONS(1833), - [anon_sym_module] = ACTIONS(1833), - [anon_sym_any] = ACTIONS(1833), - [anon_sym_number] = ACTIONS(1833), - [anon_sym_boolean] = ACTIONS(1833), - [anon_sym_string] = ACTIONS(1833), - [anon_sym_symbol] = ACTIONS(1833), - [anon_sym_object] = ACTIONS(1833), - [anon_sym_abstract] = ACTIONS(1833), - [anon_sym_satisfies] = ACTIONS(1833), - [anon_sym_interface] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), - [sym__automatic_semicolon] = ACTIONS(1831), - [sym__ternary_qmark] = ACTIONS(1831), - [sym_html_comment] = ACTIONS(5), - }, - [223] = { - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_as] = ACTIONS(1837), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_typeof] = ACTIONS(1837), - [anon_sym_import] = ACTIONS(1837), - [anon_sym_with] = ACTIONS(1837), - [anon_sym_var] = ACTIONS(1837), - [anon_sym_let] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1837), - [anon_sym_else] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_switch] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_in] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_do] = ACTIONS(1837), - [anon_sym_try] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_debugger] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_throw] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [sym_glimmer_opening_tag] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_DOT] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1837), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_function] = ACTIONS(1837), - [anon_sym_QMARK_DOT] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1837), - [anon_sym_using] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1835), - [anon_sym_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_GT_GT] = ACTIONS(1837), - [anon_sym_GT_GT_GT] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_PERCENT] = ACTIONS(1835), - [anon_sym_STAR_STAR] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_EQ_EQ] = ACTIONS(1837), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1837), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_QMARK_QMARK] = ACTIONS(1835), - [anon_sym_instanceof] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_void] = ACTIONS(1837), - [anon_sym_delete] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1835), - [sym_number] = ACTIONS(1835), - [sym_private_property_identifier] = ACTIONS(1835), - [sym_this] = ACTIONS(1837), - [sym_super] = ACTIONS(1837), - [sym_true] = ACTIONS(1837), - [sym_false] = ACTIONS(1837), - [sym_null] = ACTIONS(1837), - [sym_undefined] = ACTIONS(1837), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_readonly] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1837), - [anon_sym_set] = ACTIONS(1837), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_override] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [anon_sym_object] = ACTIONS(1837), - [anon_sym_abstract] = ACTIONS(1837), - [anon_sym_satisfies] = ACTIONS(1837), - [anon_sym_interface] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), [sym__automatic_semicolon] = ACTIONS(1835), - [sym__ternary_qmark] = ACTIONS(1835), + [sym__ternary_qmark] = ACTIONS(1833), [sym_html_comment] = ACTIONS(5), }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_export] = ACTIONS(1841), + [218] = { + [ts_builtin_sym_end] = ACTIONS(1837), + [sym_identifier] = ACTIONS(1839), + [anon_sym_export] = ACTIONS(1839), [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), + [anon_sym_default] = ACTIONS(1839), + [anon_sym_type] = ACTIONS(1839), [anon_sym_as] = ACTIONS(1841), - [anon_sym_namespace] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_typeof] = ACTIONS(1841), - [anon_sym_import] = ACTIONS(1841), - [anon_sym_with] = ACTIONS(1841), - [anon_sym_var] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_switch] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_await] = ACTIONS(1841), + [anon_sym_namespace] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_typeof] = ACTIONS(1839), + [anon_sym_import] = ACTIONS(1839), + [anon_sym_with] = ACTIONS(1839), + [anon_sym_var] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [anon_sym_BANG] = ACTIONS(1839), + [anon_sym_else] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_switch] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_await] = ACTIONS(1839), [anon_sym_in] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_debugger] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_throw] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_case] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [sym_glimmer_opening_tag] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_do] = ACTIONS(1839), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_debugger] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_case] = ACTIONS(1839), + [anon_sym_yield] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1837), + [sym_glimmer_opening_tag] = ACTIONS(1837), [anon_sym_GT] = ACTIONS(1841), [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_function] = ACTIONS(1841), - [anon_sym_QMARK_DOT] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_class] = ACTIONS(1839), + [anon_sym_async] = ACTIONS(1839), + [anon_sym_function] = ACTIONS(1839), + [anon_sym_QMARK_DOT] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1839), + [anon_sym_using] = ACTIONS(1839), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), [anon_sym_GT_GT] = ACTIONS(1841), - [anon_sym_GT_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), [anon_sym_AMP] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_CARET] = ACTIONS(1843), [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_STAR_STAR] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_LT_EQ] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_SLASH] = ACTIONS(1839), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1839), + [anon_sym_LT_EQ] = ACTIONS(1843), [anon_sym_EQ_EQ] = ACTIONS(1841), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), [anon_sym_BANG_EQ] = ACTIONS(1841), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_QMARK_QMARK] = ACTIONS(1839), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_QMARK_QMARK] = ACTIONS(1843), [anon_sym_instanceof] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_void] = ACTIONS(1841), - [anon_sym_delete] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1839), - [sym_number] = ACTIONS(1839), - [sym_private_property_identifier] = ACTIONS(1839), - [sym_this] = ACTIONS(1841), - [sym_super] = ACTIONS(1841), - [sym_true] = ACTIONS(1841), - [sym_false] = ACTIONS(1841), - [sym_null] = ACTIONS(1841), - [sym_undefined] = ACTIONS(1841), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_readonly] = ACTIONS(1841), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1841), - [anon_sym_public] = ACTIONS(1841), - [anon_sym_private] = ACTIONS(1841), - [anon_sym_protected] = ACTIONS(1841), - [anon_sym_override] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_any] = ACTIONS(1841), - [anon_sym_number] = ACTIONS(1841), - [anon_sym_boolean] = ACTIONS(1841), - [anon_sym_string] = ACTIONS(1841), - [anon_sym_symbol] = ACTIONS(1841), - [anon_sym_object] = ACTIONS(1841), - [anon_sym_abstract] = ACTIONS(1841), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_void] = ACTIONS(1839), + [anon_sym_delete] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1837), + [sym_number] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1837), + [sym_this] = ACTIONS(1839), + [sym_super] = ACTIONS(1839), + [sym_true] = ACTIONS(1839), + [sym_false] = ACTIONS(1839), + [sym_null] = ACTIONS(1839), + [sym_undefined] = ACTIONS(1839), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_static] = ACTIONS(1839), + [anon_sym_readonly] = ACTIONS(1839), + [anon_sym_get] = ACTIONS(1839), + [anon_sym_set] = ACTIONS(1839), + [anon_sym_declare] = ACTIONS(1839), + [anon_sym_public] = ACTIONS(1839), + [anon_sym_private] = ACTIONS(1839), + [anon_sym_protected] = ACTIONS(1839), + [anon_sym_override] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_any] = ACTIONS(1839), + [anon_sym_number] = ACTIONS(1839), + [anon_sym_boolean] = ACTIONS(1839), + [anon_sym_string] = ACTIONS(1839), + [anon_sym_symbol] = ACTIONS(1839), + [anon_sym_object] = ACTIONS(1839), + [anon_sym_abstract] = ACTIONS(1839), [anon_sym_satisfies] = ACTIONS(1841), - [anon_sym_interface] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [sym__automatic_semicolon] = ACTIONS(1839), - [sym__ternary_qmark] = ACTIONS(1839), + [anon_sym_interface] = ACTIONS(1839), + [anon_sym_enum] = ACTIONS(1839), + [sym__automatic_semicolon] = ACTIONS(1845), + [sym__ternary_qmark] = ACTIONS(1843), [sym_html_comment] = ACTIONS(5), }, - [225] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1847), - [anon_sym_namespace] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_typeof] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_var] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_switch] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(1845), - [anon_sym_in] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_debugger] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_throw] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [sym_glimmer_opening_tag] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_QMARK_DOT] = ACTIONS(1849), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_using] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1847), - [anon_sym_GT_GT_GT] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_PERCENT] = ACTIONS(1849), - [anon_sym_STAR_STAR] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ] = ACTIONS(1847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(1849), - [anon_sym_QMARK_QMARK] = ACTIONS(1849), - [anon_sym_instanceof] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_delete] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1843), - [sym_number] = ACTIONS(1843), - [sym_private_property_identifier] = ACTIONS(1843), - [sym_this] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_null] = ACTIONS(1845), - [sym_undefined] = ACTIONS(1845), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(1845), - [anon_sym_get] = ACTIONS(1845), - [anon_sym_set] = ACTIONS(1845), - [anon_sym_declare] = ACTIONS(1845), - [anon_sym_public] = ACTIONS(1845), - [anon_sym_private] = ACTIONS(1845), - [anon_sym_protected] = ACTIONS(1845), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_module] = ACTIONS(1845), - [anon_sym_any] = ACTIONS(1845), - [anon_sym_number] = ACTIONS(1845), - [anon_sym_boolean] = ACTIONS(1845), - [anon_sym_string] = ACTIONS(1845), - [anon_sym_symbol] = ACTIONS(1845), - [anon_sym_object] = ACTIONS(1845), - [anon_sym_abstract] = ACTIONS(1845), - [anon_sym_satisfies] = ACTIONS(1847), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [sym__automatic_semicolon] = ACTIONS(1849), - [sym__ternary_qmark] = ACTIONS(1849), + [219] = { + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_export] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_as] = ACTIONS(1851), + [anon_sym_namespace] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_typeof] = ACTIONS(1849), + [anon_sym_import] = ACTIONS(1849), + [anon_sym_with] = ACTIONS(1849), + [anon_sym_var] = ACTIONS(1849), + [anon_sym_let] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_BANG] = ACTIONS(1849), + [anon_sym_else] = ACTIONS(1849), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_switch] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1849), + [anon_sym_do] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_debugger] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_throw] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_case] = ACTIONS(1849), + [anon_sym_yield] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1847), + [sym_glimmer_opening_tag] = ACTIONS(1847), + [anon_sym_GT] = ACTIONS(1851), + [anon_sym_DOT] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1847), + [anon_sym_SQUOTE] = ACTIONS(1847), + [anon_sym_class] = ACTIONS(1849), + [anon_sym_async] = ACTIONS(1849), + [anon_sym_function] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1849), + [anon_sym_AMP_AMP] = ACTIONS(1853), + [anon_sym_PIPE_PIPE] = ACTIONS(1853), + [anon_sym_GT_GT] = ACTIONS(1851), + [anon_sym_GT_GT_GT] = ACTIONS(1853), + [anon_sym_LT_LT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1849), + [anon_sym_PERCENT] = ACTIONS(1853), + [anon_sym_STAR_STAR] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_EQ_EQ] = ACTIONS(1851), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1853), + [anon_sym_BANG_EQ] = ACTIONS(1851), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1853), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_QMARK_QMARK] = ACTIONS(1853), + [anon_sym_instanceof] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_void] = ACTIONS(1849), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1847), + [sym_number] = ACTIONS(1847), + [sym_private_property_identifier] = ACTIONS(1847), + [sym_this] = ACTIONS(1849), + [sym_super] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_null] = ACTIONS(1849), + [sym_undefined] = ACTIONS(1849), + [anon_sym_AT] = ACTIONS(1847), + [anon_sym_static] = ACTIONS(1849), + [anon_sym_readonly] = ACTIONS(1849), + [anon_sym_get] = ACTIONS(1849), + [anon_sym_set] = ACTIONS(1849), + [anon_sym_declare] = ACTIONS(1849), + [anon_sym_public] = ACTIONS(1849), + [anon_sym_private] = ACTIONS(1849), + [anon_sym_protected] = ACTIONS(1849), + [anon_sym_override] = ACTIONS(1849), + [anon_sym_module] = ACTIONS(1849), + [anon_sym_any] = ACTIONS(1849), + [anon_sym_number] = ACTIONS(1849), + [anon_sym_boolean] = ACTIONS(1849), + [anon_sym_string] = ACTIONS(1849), + [anon_sym_symbol] = ACTIONS(1849), + [anon_sym_object] = ACTIONS(1849), + [anon_sym_abstract] = ACTIONS(1849), + [anon_sym_satisfies] = ACTIONS(1851), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [sym__automatic_semicolon] = ACTIONS(1855), + [sym__ternary_qmark] = ACTIONS(1853), [sym_html_comment] = ACTIONS(5), }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1853), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1853), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_as] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1851), + [220] = { + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1859), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_default] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1857), [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_typeof] = ACTIONS(1853), - [anon_sym_import] = ACTIONS(1853), - [anon_sym_with] = ACTIONS(1853), - [anon_sym_var] = ACTIONS(1853), - [anon_sym_let] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_try] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_debugger] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_throw] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1853), - [anon_sym_yield] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1851), - [sym_glimmer_opening_tag] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1851), - [anon_sym_SQUOTE] = ACTIONS(1851), - [anon_sym_class] = ACTIONS(1853), - [anon_sym_async] = ACTIONS(1853), - [anon_sym_function] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_typeof] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_with] = ACTIONS(1859), + [anon_sym_var] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_debugger] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1857), + [sym_glimmer_opening_tag] = ACTIONS(1857), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1857), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(1859), [anon_sym_QMARK_DOT] = ACTIONS(1857), - [anon_sym_new] = ACTIONS(1853), - [anon_sym_using] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1859), [anon_sym_AMP_AMP] = ACTIONS(1857), [anon_sym_PIPE_PIPE] = ACTIONS(1857), - [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_GT_GT] = ACTIONS(1859), [anon_sym_GT_GT_GT] = ACTIONS(1857), [anon_sym_LT_LT] = ACTIONS(1857), - [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1859), [anon_sym_CARET] = ACTIONS(1857), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), [anon_sym_PERCENT] = ACTIONS(1857), [anon_sym_STAR_STAR] = ACTIONS(1857), - [anon_sym_LT] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1859), [anon_sym_LT_EQ] = ACTIONS(1857), - [anon_sym_EQ_EQ] = ACTIONS(1855), + [anon_sym_EQ_EQ] = ACTIONS(1859), [anon_sym_EQ_EQ_EQ] = ACTIONS(1857), - [anon_sym_BANG_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ] = ACTIONS(1859), [anon_sym_BANG_EQ_EQ] = ACTIONS(1857), [anon_sym_GT_EQ] = ACTIONS(1857), [anon_sym_QMARK_QMARK] = ACTIONS(1857), - [anon_sym_instanceof] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_void] = ACTIONS(1853), - [anon_sym_delete] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1851), - [sym_number] = ACTIONS(1851), - [sym_private_property_identifier] = ACTIONS(1851), - [sym_this] = ACTIONS(1853), - [sym_super] = ACTIONS(1853), - [sym_true] = ACTIONS(1853), - [sym_false] = ACTIONS(1853), - [sym_null] = ACTIONS(1853), - [sym_undefined] = ACTIONS(1853), - [anon_sym_AT] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1853), - [anon_sym_readonly] = ACTIONS(1853), - [anon_sym_get] = ACTIONS(1853), - [anon_sym_set] = ACTIONS(1853), - [anon_sym_declare] = ACTIONS(1853), - [anon_sym_public] = ACTIONS(1853), - [anon_sym_private] = ACTIONS(1853), - [anon_sym_protected] = ACTIONS(1853), - [anon_sym_override] = ACTIONS(1853), - [anon_sym_module] = ACTIONS(1853), - [anon_sym_any] = ACTIONS(1853), - [anon_sym_number] = ACTIONS(1853), - [anon_sym_boolean] = ACTIONS(1853), - [anon_sym_string] = ACTIONS(1853), - [anon_sym_symbol] = ACTIONS(1853), - [anon_sym_object] = ACTIONS(1853), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1853), - [sym__automatic_semicolon] = ACTIONS(1859), + [anon_sym_instanceof] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_delete] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1857), + [sym_number] = ACTIONS(1857), + [sym_private_property_identifier] = ACTIONS(1857), + [sym_this] = ACTIONS(1859), + [sym_super] = ACTIONS(1859), + [sym_true] = ACTIONS(1859), + [sym_false] = ACTIONS(1859), + [sym_null] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_abstract] = ACTIONS(1859), + [anon_sym_satisfies] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), + [sym__automatic_semicolon] = ACTIONS(1857), [sym__ternary_qmark] = ACTIONS(1857), [sym_html_comment] = ACTIONS(5), }, - [227] = { + [221] = { [ts_builtin_sym_end] = ACTIONS(1861), [sym_identifier] = ACTIONS(1863), [anon_sym_export] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_STAR] = ACTIONS(1863), [anon_sym_default] = ACTIONS(1863), [anon_sym_type] = ACTIONS(1863), - [anon_sym_as] = ACTIONS(1865), + [anon_sym_as] = ACTIONS(1863), [anon_sym_namespace] = ACTIONS(1863), [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1861), [anon_sym_RBRACE] = ACTIONS(1861), [anon_sym_typeof] = ACTIONS(1863), [anon_sym_import] = ACTIONS(1863), @@ -50916,7 +53611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1863), [anon_sym_LPAREN] = ACTIONS(1861), [anon_sym_await] = ACTIONS(1863), - [anon_sym_in] = ACTIONS(1865), + [anon_sym_in] = ACTIONS(1863), [anon_sym_while] = ACTIONS(1863), [anon_sym_do] = ACTIONS(1863), [anon_sym_try] = ACTIONS(1863), @@ -50930,38 +53625,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1863), [anon_sym_LBRACK] = ACTIONS(1861), [sym_glimmer_opening_tag] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1865), - [anon_sym_DOT] = ACTIONS(1865), + [anon_sym_GT] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DQUOTE] = ACTIONS(1861), [anon_sym_SQUOTE] = ACTIONS(1861), [anon_sym_class] = ACTIONS(1863), [anon_sym_async] = ACTIONS(1863), [anon_sym_function] = ACTIONS(1863), - [anon_sym_QMARK_DOT] = ACTIONS(1867), + [anon_sym_QMARK_DOT] = ACTIONS(1861), [anon_sym_new] = ACTIONS(1863), [anon_sym_using] = ACTIONS(1863), - [anon_sym_AMP_AMP] = ACTIONS(1867), - [anon_sym_PIPE_PIPE] = ACTIONS(1867), - [anon_sym_GT_GT] = ACTIONS(1865), - [anon_sym_GT_GT_GT] = ACTIONS(1867), - [anon_sym_LT_LT] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_AMP_AMP] = ACTIONS(1861), + [anon_sym_PIPE_PIPE] = ACTIONS(1861), + [anon_sym_GT_GT] = ACTIONS(1863), + [anon_sym_GT_GT_GT] = ACTIONS(1861), + [anon_sym_LT_LT] = ACTIONS(1861), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1863), [anon_sym_PLUS] = ACTIONS(1863), [anon_sym_DASH] = ACTIONS(1863), [anon_sym_SLASH] = ACTIONS(1863), - [anon_sym_PERCENT] = ACTIONS(1867), - [anon_sym_STAR_STAR] = ACTIONS(1867), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_STAR_STAR] = ACTIONS(1861), [anon_sym_LT] = ACTIONS(1863), - [anon_sym_LT_EQ] = ACTIONS(1867), - [anon_sym_EQ_EQ] = ACTIONS(1865), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1867), - [anon_sym_BANG_EQ] = ACTIONS(1865), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1867), - [anon_sym_GT_EQ] = ACTIONS(1867), - [anon_sym_QMARK_QMARK] = ACTIONS(1867), - [anon_sym_instanceof] = ACTIONS(1865), + [anon_sym_LT_EQ] = ACTIONS(1861), + [anon_sym_EQ_EQ] = ACTIONS(1863), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), + [anon_sym_BANG_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), + [anon_sym_GT_EQ] = ACTIONS(1861), + [anon_sym_QMARK_QMARK] = ACTIONS(1861), + [anon_sym_instanceof] = ACTIONS(1863), [anon_sym_TILDE] = ACTIONS(1861), [anon_sym_void] = ACTIONS(1863), [anon_sym_delete] = ACTIONS(1863), @@ -50995,458 +53690,791 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1863), [anon_sym_object] = ACTIONS(1863), [anon_sym_abstract] = ACTIONS(1863), - [anon_sym_satisfies] = ACTIONS(1865), + [anon_sym_satisfies] = ACTIONS(1863), [anon_sym_interface] = ACTIONS(1863), [anon_sym_enum] = ACTIONS(1863), - [sym__automatic_semicolon] = ACTIONS(1869), - [sym__ternary_qmark] = ACTIONS(1867), + [sym__automatic_semicolon] = ACTIONS(1861), + [sym__ternary_qmark] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(1871), - [sym_identifier] = ACTIONS(1873), - [anon_sym_export] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1875), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_type] = ACTIONS(1873), - [anon_sym_as] = ACTIONS(1875), - [anon_sym_namespace] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_COMMA] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_typeof] = ACTIONS(1873), - [anon_sym_import] = ACTIONS(1873), - [anon_sym_with] = ACTIONS(1873), - [anon_sym_var] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1873), - [anon_sym_else] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_switch] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_in] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_do] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_debugger] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_throw] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1873), - [anon_sym_yield] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1871), - [sym_glimmer_opening_tag] = ACTIONS(1871), - [anon_sym_GT] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(1875), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_SQUOTE] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1873), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1873), - [anon_sym_QMARK_DOT] = ACTIONS(1877), - [anon_sym_new] = ACTIONS(1873), - [anon_sym_using] = ACTIONS(1873), - [anon_sym_AMP_AMP] = ACTIONS(1877), - [anon_sym_PIPE_PIPE] = ACTIONS(1877), - [anon_sym_GT_GT] = ACTIONS(1875), - [anon_sym_GT_GT_GT] = ACTIONS(1877), - [anon_sym_LT_LT] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_CARET] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1875), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_SLASH] = ACTIONS(1873), - [anon_sym_PERCENT] = ACTIONS(1877), - [anon_sym_STAR_STAR] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_LT_EQ] = ACTIONS(1877), - [anon_sym_EQ_EQ] = ACTIONS(1875), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), - [anon_sym_BANG_EQ] = ACTIONS(1875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), - [anon_sym_GT_EQ] = ACTIONS(1877), - [anon_sym_QMARK_QMARK] = ACTIONS(1877), - [anon_sym_instanceof] = ACTIONS(1875), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_void] = ACTIONS(1873), - [anon_sym_delete] = ACTIONS(1873), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1871), - [sym_number] = ACTIONS(1871), - [sym_private_property_identifier] = ACTIONS(1871), - [sym_this] = ACTIONS(1873), - [sym_super] = ACTIONS(1873), - [sym_true] = ACTIONS(1873), - [sym_false] = ACTIONS(1873), - [sym_null] = ACTIONS(1873), - [sym_undefined] = ACTIONS(1873), - [anon_sym_AT] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_readonly] = ACTIONS(1873), - [anon_sym_get] = ACTIONS(1873), - [anon_sym_set] = ACTIONS(1873), - [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_override] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1873), - [anon_sym_any] = ACTIONS(1873), - [anon_sym_number] = ACTIONS(1873), - [anon_sym_boolean] = ACTIONS(1873), - [anon_sym_string] = ACTIONS(1873), - [anon_sym_symbol] = ACTIONS(1873), - [anon_sym_object] = ACTIONS(1873), - [anon_sym_abstract] = ACTIONS(1873), - [anon_sym_satisfies] = ACTIONS(1875), - [anon_sym_interface] = ACTIONS(1873), - [anon_sym_enum] = ACTIONS(1873), - [sym__automatic_semicolon] = ACTIONS(1879), - [sym__ternary_qmark] = ACTIONS(1877), + [222] = { + [ts_builtin_sym_end] = ACTIONS(1865), + [sym_identifier] = ACTIONS(1867), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1867), + [anon_sym_type] = ACTIONS(1867), + [anon_sym_as] = ACTIONS(1869), + [anon_sym_namespace] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(1867), + [anon_sym_with] = ACTIONS(1867), + [anon_sym_var] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_switch] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_await] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1869), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_debugger] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_throw] = ACTIONS(1867), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_case] = ACTIONS(1867), + [anon_sym_yield] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1865), + [sym_glimmer_opening_tag] = ACTIONS(1865), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_DOT] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1865), + [anon_sym_SQUOTE] = ACTIONS(1865), + [anon_sym_class] = ACTIONS(1867), + [anon_sym_async] = ACTIONS(1867), + [anon_sym_function] = ACTIONS(1867), + [anon_sym_QMARK_DOT] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_using] = ACTIONS(1867), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_GT_GT] = ACTIONS(1869), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1869), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1869), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_QMARK_QMARK] = ACTIONS(1871), + [anon_sym_instanceof] = ACTIONS(1869), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1865), + [sym_number] = ACTIONS(1865), + [sym_private_property_identifier] = ACTIONS(1865), + [sym_this] = ACTIONS(1867), + [sym_super] = ACTIONS(1867), + [sym_true] = ACTIONS(1867), + [sym_false] = ACTIONS(1867), + [sym_null] = ACTIONS(1867), + [sym_undefined] = ACTIONS(1867), + [anon_sym_AT] = ACTIONS(1865), + [anon_sym_static] = ACTIONS(1867), + [anon_sym_readonly] = ACTIONS(1867), + [anon_sym_get] = ACTIONS(1867), + [anon_sym_set] = ACTIONS(1867), + [anon_sym_declare] = ACTIONS(1867), + [anon_sym_public] = ACTIONS(1867), + [anon_sym_private] = ACTIONS(1867), + [anon_sym_protected] = ACTIONS(1867), + [anon_sym_override] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_any] = ACTIONS(1867), + [anon_sym_number] = ACTIONS(1867), + [anon_sym_boolean] = ACTIONS(1867), + [anon_sym_string] = ACTIONS(1867), + [anon_sym_symbol] = ACTIONS(1867), + [anon_sym_object] = ACTIONS(1867), + [anon_sym_abstract] = ACTIONS(1867), + [anon_sym_satisfies] = ACTIONS(1869), + [anon_sym_interface] = ACTIONS(1867), + [anon_sym_enum] = ACTIONS(1867), + [sym__automatic_semicolon] = ACTIONS(1873), + [sym__ternary_qmark] = ACTIONS(1871), [sym_html_comment] = ACTIONS(5), }, - [229] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2296), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5070), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5070), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5070), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1375), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_mapped_type_clause] = STATE(5442), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(1881), - [anon_sym_export] = ACTIONS(1883), - [anon_sym_type] = ACTIONS(1883), - [anon_sym_namespace] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), + [223] = { + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_export] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_default] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_namespace] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_typeof] = ACTIONS(1877), + [anon_sym_import] = ACTIONS(1877), + [anon_sym_with] = ACTIONS(1877), + [anon_sym_var] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_switch] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_do] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_debugger] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_throw] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_case] = ACTIONS(1877), + [anon_sym_yield] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1875), + [sym_glimmer_opening_tag] = ACTIONS(1875), + [anon_sym_GT] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1877), + [anon_sym_async] = ACTIONS(1877), + [anon_sym_function] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1877), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_GT_GT] = ACTIONS(1879), + [anon_sym_GT_GT_GT] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1881), + [anon_sym_STAR_STAR] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1879), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1879), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_QMARK_QMARK] = ACTIONS(1881), + [anon_sym_instanceof] = ACTIONS(1879), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_void] = ACTIONS(1877), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1875), + [sym_number] = ACTIONS(1875), + [sym_private_property_identifier] = ACTIONS(1875), + [sym_this] = ACTIONS(1877), + [sym_super] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_null] = ACTIONS(1877), + [sym_undefined] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1877), + [anon_sym_readonly] = ACTIONS(1877), + [anon_sym_get] = ACTIONS(1877), + [anon_sym_set] = ACTIONS(1877), + [anon_sym_declare] = ACTIONS(1877), + [anon_sym_public] = ACTIONS(1877), + [anon_sym_private] = ACTIONS(1877), + [anon_sym_protected] = ACTIONS(1877), + [anon_sym_override] = ACTIONS(1877), + [anon_sym_module] = ACTIONS(1877), + [anon_sym_any] = ACTIONS(1877), + [anon_sym_number] = ACTIONS(1877), + [anon_sym_boolean] = ACTIONS(1877), + [anon_sym_string] = ACTIONS(1877), + [anon_sym_symbol] = ACTIONS(1877), + [anon_sym_object] = ACTIONS(1877), + [anon_sym_abstract] = ACTIONS(1877), + [anon_sym_satisfies] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [sym__automatic_semicolon] = ACTIONS(1883), + [sym__ternary_qmark] = ACTIONS(1881), + [sym_html_comment] = ACTIONS(5), + }, + [224] = { + [ts_builtin_sym_end] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1887), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_default] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_namespace] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_COMMA] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_typeof] = ACTIONS(1887), + [anon_sym_import] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1887), + [anon_sym_var] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_else] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_switch] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_await] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_debugger] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_throw] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_case] = ACTIONS(1887), + [anon_sym_yield] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1885), + [sym_glimmer_opening_tag] = ACTIONS(1885), + [anon_sym_GT] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1885), + [anon_sym_SQUOTE] = ACTIONS(1885), + [anon_sym_class] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_function] = ACTIONS(1887), + [anon_sym_QMARK_DOT] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1887), + [anon_sym_using] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1885), + [anon_sym_PIPE_PIPE] = ACTIONS(1885), + [anon_sym_GT_GT] = ACTIONS(1887), + [anon_sym_GT_GT_GT] = ACTIONS(1885), + [anon_sym_LT_LT] = ACTIONS(1885), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1885), + [anon_sym_STAR_STAR] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1885), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), + [anon_sym_GT_EQ] = ACTIONS(1885), + [anon_sym_QMARK_QMARK] = ACTIONS(1885), + [anon_sym_instanceof] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_void] = ACTIONS(1887), + [anon_sym_delete] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1885), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1885), + [sym_number] = ACTIONS(1885), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(1887), + [sym_super] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_null] = ACTIONS(1887), + [sym_undefined] = ACTIONS(1887), + [anon_sym_AT] = ACTIONS(1885), + [anon_sym_static] = ACTIONS(1887), + [anon_sym_readonly] = ACTIONS(1887), + [anon_sym_get] = ACTIONS(1887), + [anon_sym_set] = ACTIONS(1887), + [anon_sym_declare] = ACTIONS(1887), + [anon_sym_public] = ACTIONS(1887), + [anon_sym_private] = ACTIONS(1887), + [anon_sym_protected] = ACTIONS(1887), + [anon_sym_override] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_any] = ACTIONS(1887), + [anon_sym_number] = ACTIONS(1887), + [anon_sym_boolean] = ACTIONS(1887), + [anon_sym_string] = ACTIONS(1887), + [anon_sym_symbol] = ACTIONS(1887), + [anon_sym_object] = ACTIONS(1887), + [anon_sym_abstract] = ACTIONS(1887), + [anon_sym_satisfies] = ACTIONS(1887), + [anon_sym_interface] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [sym__automatic_semicolon] = ACTIONS(1885), + [sym__ternary_qmark] = ACTIONS(1885), + [sym_html_comment] = ACTIONS(5), + }, + [225] = { + [ts_builtin_sym_end] = ACTIONS(1709), + [sym_identifier] = ACTIONS(1711), + [anon_sym_export] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_default] = ACTIONS(1711), + [anon_sym_type] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1711), + [anon_sym_namespace] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_typeof] = ACTIONS(1711), + [anon_sym_import] = ACTIONS(1711), + [anon_sym_with] = ACTIONS(1711), + [anon_sym_var] = ACTIONS(1711), + [anon_sym_let] = ACTIONS(1711), + [anon_sym_const] = ACTIONS(1711), + [anon_sym_BANG] = ACTIONS(1711), + [anon_sym_else] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_switch] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_await] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_do] = ACTIONS(1711), + [anon_sym_try] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_debugger] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_throw] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_case] = ACTIONS(1711), + [anon_sym_yield] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1709), + [sym_glimmer_opening_tag] = ACTIONS(1709), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(1709), + [anon_sym_class] = ACTIONS(1711), + [anon_sym_async] = ACTIONS(1711), + [anon_sym_function] = ACTIONS(1711), + [anon_sym_QMARK_DOT] = ACTIONS(1709), + [anon_sym_new] = ACTIONS(1711), + [anon_sym_using] = ACTIONS(1711), + [anon_sym_AMP_AMP] = ACTIONS(1709), + [anon_sym_PIPE_PIPE] = ACTIONS(1709), + [anon_sym_GT_GT] = ACTIONS(1711), + [anon_sym_GT_GT_GT] = ACTIONS(1709), + [anon_sym_LT_LT] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_PERCENT] = ACTIONS(1709), + [anon_sym_STAR_STAR] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1709), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1709), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1709), + [anon_sym_QMARK_QMARK] = ACTIONS(1709), + [anon_sym_instanceof] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_void] = ACTIONS(1711), + [anon_sym_delete] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1709), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1709), + [sym_number] = ACTIONS(1709), + [sym_private_property_identifier] = ACTIONS(1709), + [sym_this] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_null] = ACTIONS(1711), + [sym_undefined] = ACTIONS(1711), + [anon_sym_AT] = ACTIONS(1709), + [anon_sym_static] = ACTIONS(1711), + [anon_sym_readonly] = ACTIONS(1711), + [anon_sym_get] = ACTIONS(1711), + [anon_sym_set] = ACTIONS(1711), + [anon_sym_declare] = ACTIONS(1711), + [anon_sym_public] = ACTIONS(1711), + [anon_sym_private] = ACTIONS(1711), + [anon_sym_protected] = ACTIONS(1711), + [anon_sym_override] = ACTIONS(1711), + [anon_sym_module] = ACTIONS(1711), + [anon_sym_any] = ACTIONS(1711), + [anon_sym_number] = ACTIONS(1711), + [anon_sym_boolean] = ACTIONS(1711), + [anon_sym_string] = ACTIONS(1711), + [anon_sym_symbol] = ACTIONS(1711), + [anon_sym_object] = ACTIONS(1711), + [anon_sym_abstract] = ACTIONS(1711), + [anon_sym_satisfies] = ACTIONS(1711), + [anon_sym_interface] = ACTIONS(1711), + [anon_sym_enum] = ACTIONS(1711), + [sym__automatic_semicolon] = ACTIONS(1889), + [sym__ternary_qmark] = ACTIONS(1709), + [sym_html_comment] = ACTIONS(5), + }, + [226] = { + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_identifier] = ACTIONS(1893), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1893), + [anon_sym_namespace] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_typeof] = ACTIONS(1893), + [anon_sym_import] = ACTIONS(1893), + [anon_sym_with] = ACTIONS(1893), + [anon_sym_var] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_switch] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_await] = ACTIONS(1893), + [anon_sym_in] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_debugger] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_case] = ACTIONS(1893), + [anon_sym_yield] = ACTIONS(1893), [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1893), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1895), - [anon_sym_function] = ACTIONS(157), + [sym_glimmer_opening_tag] = ACTIONS(1891), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1891), + [anon_sym_SQUOTE] = ACTIONS(1891), + [anon_sym_class] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_function] = ACTIONS(1893), + [anon_sym_QMARK_DOT] = ACTIONS(1891), + [anon_sym_new] = ACTIONS(1893), + [anon_sym_using] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1891), + [anon_sym_PIPE_PIPE] = ACTIONS(1891), + [anon_sym_GT_GT] = ACTIONS(1893), + [anon_sym_GT_GT_GT] = ACTIONS(1891), + [anon_sym_LT_LT] = ACTIONS(1891), + [anon_sym_AMP] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_PERCENT] = ACTIONS(1891), + [anon_sym_STAR_STAR] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_LT_EQ] = ACTIONS(1891), + [anon_sym_EQ_EQ] = ACTIONS(1893), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1891), + [anon_sym_BANG_EQ] = ACTIONS(1893), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1891), + [anon_sym_GT_EQ] = ACTIONS(1891), + [anon_sym_QMARK_QMARK] = ACTIONS(1891), + [anon_sym_instanceof] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_void] = ACTIONS(1893), + [anon_sym_delete] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1891), + [sym_number] = ACTIONS(1891), + [sym_private_property_identifier] = ACTIONS(1891), + [sym_this] = ACTIONS(1893), + [sym_super] = ACTIONS(1893), + [sym_true] = ACTIONS(1893), + [sym_false] = ACTIONS(1893), + [sym_null] = ACTIONS(1893), + [sym_undefined] = ACTIONS(1893), + [anon_sym_AT] = ACTIONS(1891), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_readonly] = ACTIONS(1893), + [anon_sym_get] = ACTIONS(1893), + [anon_sym_set] = ACTIONS(1893), + [anon_sym_declare] = ACTIONS(1893), + [anon_sym_public] = ACTIONS(1893), + [anon_sym_private] = ACTIONS(1893), + [anon_sym_protected] = ACTIONS(1893), + [anon_sym_override] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_any] = ACTIONS(1893), + [anon_sym_number] = ACTIONS(1893), + [anon_sym_boolean] = ACTIONS(1893), + [anon_sym_string] = ACTIONS(1893), + [anon_sym_symbol] = ACTIONS(1893), + [anon_sym_object] = ACTIONS(1893), + [anon_sym_abstract] = ACTIONS(1893), + [anon_sym_satisfies] = ACTIONS(1893), + [anon_sym_interface] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), + [sym__automatic_semicolon] = ACTIONS(1891), + [sym__ternary_qmark] = ACTIONS(1891), + [sym_html_comment] = ACTIONS(5), + }, + [227] = { + [ts_builtin_sym_end] = ACTIONS(1895), + [sym_identifier] = ACTIONS(1897), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_default] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1897), + [anon_sym_as] = ACTIONS(1897), + [anon_sym_namespace] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_COMMA] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_typeof] = ACTIONS(1897), + [anon_sym_import] = ACTIONS(1897), + [anon_sym_with] = ACTIONS(1897), + [anon_sym_var] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_switch] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_debugger] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_throw] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_case] = ACTIONS(1897), + [anon_sym_yield] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1895), + [sym_glimmer_opening_tag] = ACTIONS(1895), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_DOT] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_SQUOTE] = ACTIONS(1895), + [anon_sym_class] = ACTIONS(1897), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(1897), + [anon_sym_QMARK_DOT] = ACTIONS(1895), [anon_sym_new] = ACTIONS(1897), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1899), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_readonly] = ACTIONS(1883), - [anon_sym_get] = ACTIONS(1883), - [anon_sym_set] = ACTIONS(1883), - [anon_sym_declare] = ACTIONS(1883), - [anon_sym_public] = ACTIONS(1883), - [anon_sym_private] = ACTIONS(1883), - [anon_sym_protected] = ACTIONS(1883), - [anon_sym_override] = ACTIONS(1883), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_any] = ACTIONS(1883), - [anon_sym_number] = ACTIONS(1883), - [anon_sym_boolean] = ACTIONS(1883), - [anon_sym_string] = ACTIONS(1883), - [anon_sym_symbol] = ACTIONS(1883), - [anon_sym_object] = ACTIONS(1883), + [anon_sym_using] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [anon_sym_GT_GT] = ACTIONS(1897), + [anon_sym_GT_GT_GT] = ACTIONS(1895), + [anon_sym_LT_LT] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_CARET] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1897), + [anon_sym_PERCENT] = ACTIONS(1895), + [anon_sym_STAR_STAR] = ACTIONS(1895), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_LT_EQ] = ACTIONS(1895), + [anon_sym_EQ_EQ] = ACTIONS(1897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1895), + [anon_sym_BANG_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1895), + [anon_sym_GT_EQ] = ACTIONS(1895), + [anon_sym_QMARK_QMARK] = ACTIONS(1895), + [anon_sym_instanceof] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1895), + [anon_sym_void] = ACTIONS(1897), + [anon_sym_delete] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1895), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1895), + [sym_number] = ACTIONS(1895), + [sym_private_property_identifier] = ACTIONS(1895), + [sym_this] = ACTIONS(1897), + [sym_super] = ACTIONS(1897), + [sym_true] = ACTIONS(1897), + [sym_false] = ACTIONS(1897), + [sym_null] = ACTIONS(1897), + [sym_undefined] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1895), + [anon_sym_static] = ACTIONS(1897), + [anon_sym_readonly] = ACTIONS(1897), + [anon_sym_get] = ACTIONS(1897), + [anon_sym_set] = ACTIONS(1897), + [anon_sym_declare] = ACTIONS(1897), + [anon_sym_public] = ACTIONS(1897), + [anon_sym_private] = ACTIONS(1897), + [anon_sym_protected] = ACTIONS(1897), + [anon_sym_override] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_any] = ACTIONS(1897), + [anon_sym_number] = ACTIONS(1897), + [anon_sym_boolean] = ACTIONS(1897), + [anon_sym_string] = ACTIONS(1897), + [anon_sym_symbol] = ACTIONS(1897), + [anon_sym_object] = ACTIONS(1897), + [anon_sym_abstract] = ACTIONS(1897), + [anon_sym_satisfies] = ACTIONS(1897), + [anon_sym_interface] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1897), + [sym__automatic_semicolon] = ACTIONS(1895), + [sym__ternary_qmark] = ACTIONS(1895), [sym_html_comment] = ACTIONS(5), }, - [230] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1903), + [228] = { + [ts_builtin_sym_end] = ACTIONS(1899), + [sym_identifier] = ACTIONS(1901), + [anon_sym_export] = ACTIONS(1901), [anon_sym_STAR] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), + [anon_sym_default] = ACTIONS(1901), + [anon_sym_type] = ACTIONS(1901), [anon_sym_as] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_typeof] = ACTIONS(1903), - [anon_sym_import] = ACTIONS(1903), - [anon_sym_with] = ACTIONS(1903), - [anon_sym_var] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_else] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_await] = ACTIONS(1903), + [anon_sym_namespace] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_typeof] = ACTIONS(1901), + [anon_sym_import] = ACTIONS(1901), + [anon_sym_with] = ACTIONS(1901), + [anon_sym_var] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_switch] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_await] = ACTIONS(1901), [anon_sym_in] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_debugger] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_case] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1901), - [sym_glimmer_opening_tag] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_do] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_debugger] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_throw] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_case] = ACTIONS(1901), + [anon_sym_yield] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1899), + [sym_glimmer_opening_tag] = ACTIONS(1899), [anon_sym_GT] = ACTIONS(1903), [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_class] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_function] = ACTIONS(1903), - [anon_sym_QMARK_DOT] = ACTIONS(1901), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_using] = ACTIONS(1903), - [anon_sym_AMP_AMP] = ACTIONS(1901), - [anon_sym_PIPE_PIPE] = ACTIONS(1901), - [anon_sym_GT_GT] = ACTIONS(1903), - [anon_sym_GT_GT_GT] = ACTIONS(1901), - [anon_sym_LT_LT] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_CARET] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_SLASH] = ACTIONS(1903), - [anon_sym_PERCENT] = ACTIONS(1901), - [anon_sym_STAR_STAR] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_EQ_EQ] = ACTIONS(1903), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), - [anon_sym_BANG_EQ] = ACTIONS(1903), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_QMARK_QMARK] = ACTIONS(1901), - [anon_sym_instanceof] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_void] = ACTIONS(1903), - [anon_sym_delete] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1901), - [sym_number] = ACTIONS(1901), - [sym_private_property_identifier] = ACTIONS(1901), - [sym_this] = ACTIONS(1903), - [sym_super] = ACTIONS(1903), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_null] = ACTIONS(1903), - [sym_undefined] = ACTIONS(1903), - [anon_sym_AT] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(1903), - [anon_sym_get] = ACTIONS(1903), - [anon_sym_set] = ACTIONS(1903), - [anon_sym_declare] = ACTIONS(1903), - [anon_sym_public] = ACTIONS(1903), - [anon_sym_private] = ACTIONS(1903), - [anon_sym_protected] = ACTIONS(1903), - [anon_sym_override] = ACTIONS(1903), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1903), - [anon_sym_number] = ACTIONS(1903), - [anon_sym_boolean] = ACTIONS(1903), - [anon_sym_string] = ACTIONS(1903), - [anon_sym_symbol] = ACTIONS(1903), - [anon_sym_object] = ACTIONS(1903), - [anon_sym_abstract] = ACTIONS(1903), - [anon_sym_satisfies] = ACTIONS(1903), - [anon_sym_interface] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), - [sym__automatic_semicolon] = ACTIONS(1901), - [sym__ternary_qmark] = ACTIONS(1901), - [sym_html_comment] = ACTIONS(5), - }, - [231] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_identifier] = ACTIONS(1907), - [anon_sym_export] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_default] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_as] = ACTIONS(1907), - [anon_sym_namespace] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_typeof] = ACTIONS(1907), - [anon_sym_import] = ACTIONS(1907), - [anon_sym_with] = ACTIONS(1907), - [anon_sym_var] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_else] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_switch] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_await] = ACTIONS(1907), - [anon_sym_in] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_try] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_debugger] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_throw] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_case] = ACTIONS(1907), - [anon_sym_yield] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1905), - [sym_glimmer_opening_tag] = ACTIONS(1905), - [anon_sym_GT] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1905), - [anon_sym_SQUOTE] = ACTIONS(1905), - [anon_sym_class] = ACTIONS(1907), - [anon_sym_async] = ACTIONS(1907), - [anon_sym_function] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_class] = ACTIONS(1901), + [anon_sym_async] = ACTIONS(1901), + [anon_sym_function] = ACTIONS(1901), [anon_sym_QMARK_DOT] = ACTIONS(1905), - [anon_sym_new] = ACTIONS(1907), - [anon_sym_using] = ACTIONS(1907), + [anon_sym_new] = ACTIONS(1901), + [anon_sym_using] = ACTIONS(1901), [anon_sym_AMP_AMP] = ACTIONS(1905), [anon_sym_PIPE_PIPE] = ACTIONS(1905), - [anon_sym_GT_GT] = ACTIONS(1907), + [anon_sym_GT_GT] = ACTIONS(1903), [anon_sym_GT_GT_GT] = ACTIONS(1905), [anon_sym_LT_LT] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_AMP] = ACTIONS(1903), [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_PLUS] = ACTIONS(1907), - [anon_sym_DASH] = ACTIONS(1907), - [anon_sym_SLASH] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_SLASH] = ACTIONS(1901), [anon_sym_PERCENT] = ACTIONS(1905), [anon_sym_STAR_STAR] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1901), [anon_sym_LT_EQ] = ACTIONS(1905), - [anon_sym_EQ_EQ] = ACTIONS(1907), + [anon_sym_EQ_EQ] = ACTIONS(1903), [anon_sym_EQ_EQ_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ] = ACTIONS(1907), + [anon_sym_BANG_EQ] = ACTIONS(1903), [anon_sym_BANG_EQ_EQ] = ACTIONS(1905), [anon_sym_GT_EQ] = ACTIONS(1905), [anon_sym_QMARK_QMARK] = ACTIONS(1905), - [anon_sym_instanceof] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_void] = ACTIONS(1907), - [anon_sym_delete] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1905), - [sym_number] = ACTIONS(1905), - [sym_private_property_identifier] = ACTIONS(1905), - [sym_this] = ACTIONS(1907), - [sym_super] = ACTIONS(1907), - [sym_true] = ACTIONS(1907), - [sym_false] = ACTIONS(1907), - [sym_null] = ACTIONS(1907), - [sym_undefined] = ACTIONS(1907), - [anon_sym_AT] = ACTIONS(1905), - [anon_sym_static] = ACTIONS(1907), - [anon_sym_readonly] = ACTIONS(1907), - [anon_sym_get] = ACTIONS(1907), - [anon_sym_set] = ACTIONS(1907), - [anon_sym_declare] = ACTIONS(1907), - [anon_sym_public] = ACTIONS(1907), - [anon_sym_private] = ACTIONS(1907), - [anon_sym_protected] = ACTIONS(1907), - [anon_sym_override] = ACTIONS(1907), - [anon_sym_module] = ACTIONS(1907), - [anon_sym_any] = ACTIONS(1907), - [anon_sym_number] = ACTIONS(1907), - [anon_sym_boolean] = ACTIONS(1907), - [anon_sym_string] = ACTIONS(1907), - [anon_sym_symbol] = ACTIONS(1907), - [anon_sym_object] = ACTIONS(1907), - [anon_sym_abstract] = ACTIONS(1907), - [anon_sym_satisfies] = ACTIONS(1907), - [anon_sym_interface] = ACTIONS(1907), - [anon_sym_enum] = ACTIONS(1907), - [sym__automatic_semicolon] = ACTIONS(1905), + [anon_sym_instanceof] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_void] = ACTIONS(1901), + [anon_sym_delete] = ACTIONS(1901), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1899), + [sym_number] = ACTIONS(1899), + [sym_private_property_identifier] = ACTIONS(1899), + [sym_this] = ACTIONS(1901), + [sym_super] = ACTIONS(1901), + [sym_true] = ACTIONS(1901), + [sym_false] = ACTIONS(1901), + [sym_null] = ACTIONS(1901), + [sym_undefined] = ACTIONS(1901), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_static] = ACTIONS(1901), + [anon_sym_readonly] = ACTIONS(1901), + [anon_sym_get] = ACTIONS(1901), + [anon_sym_set] = ACTIONS(1901), + [anon_sym_declare] = ACTIONS(1901), + [anon_sym_public] = ACTIONS(1901), + [anon_sym_private] = ACTIONS(1901), + [anon_sym_protected] = ACTIONS(1901), + [anon_sym_override] = ACTIONS(1901), + [anon_sym_module] = ACTIONS(1901), + [anon_sym_any] = ACTIONS(1901), + [anon_sym_number] = ACTIONS(1901), + [anon_sym_boolean] = ACTIONS(1901), + [anon_sym_string] = ACTIONS(1901), + [anon_sym_symbol] = ACTIONS(1901), + [anon_sym_object] = ACTIONS(1901), + [anon_sym_abstract] = ACTIONS(1901), + [anon_sym_satisfies] = ACTIONS(1903), + [anon_sym_interface] = ACTIONS(1901), + [anon_sym_enum] = ACTIONS(1901), + [sym__automatic_semicolon] = ACTIONS(1907), [sym__ternary_qmark] = ACTIONS(1905), [sym_html_comment] = ACTIONS(5), }, - [232] = { + [229] = { [ts_builtin_sym_end] = ACTIONS(1909), [sym_identifier] = ACTIONS(1911), [anon_sym_export] = ACTIONS(1911), @@ -51557,7 +54585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1915), [sym_html_comment] = ACTIONS(5), }, - [233] = { + [230] = { [ts_builtin_sym_end] = ACTIONS(1919), [sym_identifier] = ACTIONS(1921), [anon_sym_export] = ACTIONS(1921), @@ -51668,17 +54696,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1925), [sym_html_comment] = ACTIONS(5), }, - [234] = { + [231] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(1823), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [anon_sym_extends] = ACTIONS(1825), + [anon_sym_PIPE_RBRACE] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(1823), + [sym_html_comment] = ACTIONS(5), + }, + [232] = { [ts_builtin_sym_end] = ACTIONS(1929), [sym_identifier] = ACTIONS(1931), [anon_sym_export] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(1931), [anon_sym_default] = ACTIONS(1931), [anon_sym_type] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1933), + [anon_sym_as] = ACTIONS(1931), [anon_sym_namespace] = ACTIONS(1931), [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_COMMA] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1929), [anon_sym_RBRACE] = ACTIONS(1929), [anon_sym_typeof] = ACTIONS(1931), [anon_sym_import] = ACTIONS(1931), @@ -51693,7 +54832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1931), [anon_sym_LPAREN] = ACTIONS(1929), [anon_sym_await] = ACTIONS(1931), - [anon_sym_in] = ACTIONS(1933), + [anon_sym_in] = ACTIONS(1931), [anon_sym_while] = ACTIONS(1931), [anon_sym_do] = ACTIONS(1931), [anon_sym_try] = ACTIONS(1931), @@ -51707,38 +54846,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1931), [anon_sym_LBRACK] = ACTIONS(1929), [sym_glimmer_opening_tag] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(1933), + [anon_sym_GT] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), [anon_sym_DQUOTE] = ACTIONS(1929), [anon_sym_SQUOTE] = ACTIONS(1929), [anon_sym_class] = ACTIONS(1931), [anon_sym_async] = ACTIONS(1931), [anon_sym_function] = ACTIONS(1931), - [anon_sym_QMARK_DOT] = ACTIONS(1935), + [anon_sym_QMARK_DOT] = ACTIONS(1929), [anon_sym_new] = ACTIONS(1931), [anon_sym_using] = ACTIONS(1931), - [anon_sym_AMP_AMP] = ACTIONS(1935), - [anon_sym_PIPE_PIPE] = ACTIONS(1935), - [anon_sym_GT_GT] = ACTIONS(1933), - [anon_sym_GT_GT_GT] = ACTIONS(1935), - [anon_sym_LT_LT] = ACTIONS(1935), - [anon_sym_AMP] = ACTIONS(1933), - [anon_sym_CARET] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1933), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1931), + [anon_sym_GT_GT_GT] = ACTIONS(1929), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_CARET] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1931), [anon_sym_PLUS] = ACTIONS(1931), [anon_sym_DASH] = ACTIONS(1931), [anon_sym_SLASH] = ACTIONS(1931), - [anon_sym_PERCENT] = ACTIONS(1935), - [anon_sym_STAR_STAR] = ACTIONS(1935), + [anon_sym_PERCENT] = ACTIONS(1929), + [anon_sym_STAR_STAR] = ACTIONS(1929), [anon_sym_LT] = ACTIONS(1931), - [anon_sym_LT_EQ] = ACTIONS(1935), - [anon_sym_EQ_EQ] = ACTIONS(1933), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1935), - [anon_sym_BANG_EQ] = ACTIONS(1933), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1935), - [anon_sym_GT_EQ] = ACTIONS(1935), - [anon_sym_QMARK_QMARK] = ACTIONS(1935), - [anon_sym_instanceof] = ACTIONS(1933), + [anon_sym_LT_EQ] = ACTIONS(1929), + [anon_sym_EQ_EQ] = ACTIONS(1931), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1929), + [anon_sym_BANG_EQ] = ACTIONS(1931), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1929), + [anon_sym_GT_EQ] = ACTIONS(1929), + [anon_sym_QMARK_QMARK] = ACTIONS(1929), + [anon_sym_instanceof] = ACTIONS(1931), [anon_sym_TILDE] = ACTIONS(1929), [anon_sym_void] = ACTIONS(1931), [anon_sym_delete] = ACTIONS(1931), @@ -51772,11 +54911,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1931), [anon_sym_object] = ACTIONS(1931), [anon_sym_abstract] = ACTIONS(1931), - [anon_sym_satisfies] = ACTIONS(1933), + [anon_sym_satisfies] = ACTIONS(1931), [anon_sym_interface] = ACTIONS(1931), [anon_sym_enum] = ACTIONS(1931), + [sym__automatic_semicolon] = ACTIONS(1929), + [sym__ternary_qmark] = ACTIONS(1929), + [sym_html_comment] = ACTIONS(5), + }, + [233] = { + [ts_builtin_sym_end] = ACTIONS(1933), + [sym_identifier] = ACTIONS(1935), + [anon_sym_export] = ACTIONS(1935), + [anon_sym_STAR] = ACTIONS(1935), + [anon_sym_default] = ACTIONS(1935), + [anon_sym_type] = ACTIONS(1935), + [anon_sym_as] = ACTIONS(1935), + [anon_sym_namespace] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_typeof] = ACTIONS(1935), + [anon_sym_import] = ACTIONS(1935), + [anon_sym_with] = ACTIONS(1935), + [anon_sym_var] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_switch] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1935), + [anon_sym_in] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_debugger] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_throw] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_case] = ACTIONS(1935), + [anon_sym_yield] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1933), + [sym_glimmer_opening_tag] = ACTIONS(1933), + [anon_sym_GT] = ACTIONS(1935), + [anon_sym_DOT] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_class] = ACTIONS(1935), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_function] = ACTIONS(1935), + [anon_sym_QMARK_DOT] = ACTIONS(1933), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_using] = ACTIONS(1935), + [anon_sym_AMP_AMP] = ACTIONS(1933), + [anon_sym_PIPE_PIPE] = ACTIONS(1933), + [anon_sym_GT_GT] = ACTIONS(1935), + [anon_sym_GT_GT_GT] = ACTIONS(1933), + [anon_sym_LT_LT] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1935), + [anon_sym_CARET] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_SLASH] = ACTIONS(1935), + [anon_sym_PERCENT] = ACTIONS(1933), + [anon_sym_STAR_STAR] = ACTIONS(1933), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_LT_EQ] = ACTIONS(1933), + [anon_sym_EQ_EQ] = ACTIONS(1935), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1933), + [anon_sym_BANG_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1933), + [anon_sym_GT_EQ] = ACTIONS(1933), + [anon_sym_QMARK_QMARK] = ACTIONS(1933), + [anon_sym_instanceof] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_void] = ACTIONS(1935), + [anon_sym_delete] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1933), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [sym_this] = ACTIONS(1935), + [sym_super] = ACTIONS(1935), + [sym_true] = ACTIONS(1935), + [sym_false] = ACTIONS(1935), + [sym_null] = ACTIONS(1935), + [sym_undefined] = ACTIONS(1935), + [anon_sym_AT] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1935), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_declare] = ACTIONS(1935), + [anon_sym_public] = ACTIONS(1935), + [anon_sym_private] = ACTIONS(1935), + [anon_sym_protected] = ACTIONS(1935), + [anon_sym_override] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_any] = ACTIONS(1935), + [anon_sym_number] = ACTIONS(1935), + [anon_sym_boolean] = ACTIONS(1935), + [anon_sym_string] = ACTIONS(1935), + [anon_sym_symbol] = ACTIONS(1935), + [anon_sym_object] = ACTIONS(1935), + [anon_sym_abstract] = ACTIONS(1935), + [anon_sym_satisfies] = ACTIONS(1935), + [anon_sym_interface] = ACTIONS(1935), + [anon_sym_enum] = ACTIONS(1935), [sym__automatic_semicolon] = ACTIONS(1937), - [sym__ternary_qmark] = ACTIONS(1935), + [sym__ternary_qmark] = ACTIONS(1933), + [sym_html_comment] = ACTIONS(5), + }, + [234] = { + [ts_builtin_sym_end] = ACTIONS(1933), + [sym_identifier] = ACTIONS(1935), + [anon_sym_export] = ACTIONS(1935), + [anon_sym_STAR] = ACTIONS(1935), + [anon_sym_default] = ACTIONS(1935), + [anon_sym_type] = ACTIONS(1935), + [anon_sym_as] = ACTIONS(1935), + [anon_sym_namespace] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_typeof] = ACTIONS(1935), + [anon_sym_import] = ACTIONS(1935), + [anon_sym_with] = ACTIONS(1935), + [anon_sym_var] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_switch] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1935), + [anon_sym_in] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_debugger] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_throw] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_case] = ACTIONS(1935), + [anon_sym_yield] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1933), + [sym_glimmer_opening_tag] = ACTIONS(1933), + [anon_sym_GT] = ACTIONS(1935), + [anon_sym_DOT] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_class] = ACTIONS(1935), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_function] = ACTIONS(1935), + [anon_sym_QMARK_DOT] = ACTIONS(1933), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_using] = ACTIONS(1935), + [anon_sym_AMP_AMP] = ACTIONS(1933), + [anon_sym_PIPE_PIPE] = ACTIONS(1933), + [anon_sym_GT_GT] = ACTIONS(1935), + [anon_sym_GT_GT_GT] = ACTIONS(1933), + [anon_sym_LT_LT] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1935), + [anon_sym_CARET] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_SLASH] = ACTIONS(1935), + [anon_sym_PERCENT] = ACTIONS(1933), + [anon_sym_STAR_STAR] = ACTIONS(1933), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_LT_EQ] = ACTIONS(1933), + [anon_sym_EQ_EQ] = ACTIONS(1935), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1933), + [anon_sym_BANG_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1933), + [anon_sym_GT_EQ] = ACTIONS(1933), + [anon_sym_QMARK_QMARK] = ACTIONS(1933), + [anon_sym_instanceof] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_void] = ACTIONS(1935), + [anon_sym_delete] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1933), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [sym_this] = ACTIONS(1935), + [sym_super] = ACTIONS(1935), + [sym_true] = ACTIONS(1935), + [sym_false] = ACTIONS(1935), + [sym_null] = ACTIONS(1935), + [sym_undefined] = ACTIONS(1935), + [anon_sym_AT] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1935), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_declare] = ACTIONS(1935), + [anon_sym_public] = ACTIONS(1935), + [anon_sym_private] = ACTIONS(1935), + [anon_sym_protected] = ACTIONS(1935), + [anon_sym_override] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_any] = ACTIONS(1935), + [anon_sym_number] = ACTIONS(1935), + [anon_sym_boolean] = ACTIONS(1935), + [anon_sym_string] = ACTIONS(1935), + [anon_sym_symbol] = ACTIONS(1935), + [anon_sym_object] = ACTIONS(1935), + [anon_sym_abstract] = ACTIONS(1935), + [anon_sym_satisfies] = ACTIONS(1935), + [anon_sym_interface] = ACTIONS(1935), + [anon_sym_enum] = ACTIONS(1935), + [sym__automatic_semicolon] = ACTIONS(1933), + [sym__ternary_qmark] = ACTIONS(1933), [sym_html_comment] = ACTIONS(5), }, [235] = { @@ -51891,96 +55252,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_assignment_pattern] = STATE(4515), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4402), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_pattern_repeat1] = STATE(4530), - [sym_identifier] = ACTIONS(699), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(6013), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5321), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_pattern_repeat1] = STATE(6005), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(1781), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), [anon_sym_RBRACK] = ACTIONS(1949), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), @@ -52001,536 +55362,426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [237] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2179), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5070), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5070), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5070), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1375), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(1951), - [anon_sym_export] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_namespace] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1893), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1957), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1959), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2083), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(7081), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(5580), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5581), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(1954), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1703), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1953), - [anon_sym_readonly] = ACTIONS(1953), - [anon_sym_get] = ACTIONS(1953), - [anon_sym_set] = ACTIONS(1953), - [anon_sym_declare] = ACTIONS(1953), - [anon_sym_public] = ACTIONS(1953), - [anon_sym_private] = ACTIONS(1953), - [anon_sym_protected] = ACTIONS(1953), - [anon_sym_override] = ACTIONS(1953), - [anon_sym_module] = ACTIONS(1953), - [anon_sym_any] = ACTIONS(1953), - [anon_sym_number] = ACTIONS(1953), - [anon_sym_boolean] = ACTIONS(1953), - [anon_sym_string] = ACTIONS(1953), - [anon_sym_symbol] = ACTIONS(1953), - [anon_sym_object] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(546), + [anon_sym_number] = ACTIONS(546), + [anon_sym_boolean] = ACTIONS(546), + [anon_sym_string] = ACTIONS(546), + [anon_sym_symbol] = ACTIONS(546), + [anon_sym_object] = ACTIONS(546), [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2136), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(5411), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4539), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4563), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1687), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1961), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(1961), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_RBRACK] = ACTIONS(1823), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [anon_sym_extends] = ACTIONS(1825), [sym_html_comment] = ACTIONS(5), }, [239] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2136), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(5411), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4539), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4563), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1687), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1961), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(1964), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2343), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5440), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5440), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5440), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1389), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(1958), + [anon_sym_export] = ACTIONS(1960), + [anon_sym_type] = ACTIONS(1960), + [anon_sym_namespace] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1781), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(1783), + [anon_sym_RBRACK] = ACTIONS(1785), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1964), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1791), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [anon_sym_static] = ACTIONS(1960), + [anon_sym_readonly] = ACTIONS(1960), + [anon_sym_get] = ACTIONS(1960), + [anon_sym_set] = ACTIONS(1960), + [anon_sym_declare] = ACTIONS(1960), + [anon_sym_public] = ACTIONS(1960), + [anon_sym_private] = ACTIONS(1960), + [anon_sym_protected] = ACTIONS(1960), + [anon_sym_override] = ACTIONS(1960), + [anon_sym_module] = ACTIONS(1960), + [anon_sym_any] = ACTIONS(1960), + [anon_sym_number] = ACTIONS(1960), + [anon_sym_boolean] = ACTIONS(1960), + [anon_sym_string] = ACTIONS(1960), + [anon_sym_symbol] = ACTIONS(1960), + [anon_sym_object] = ACTIONS(1960), [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(1817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_RBRACK] = ACTIONS(1817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [anon_sym_extends] = ACTIONS(1819), - [sym_html_comment] = ACTIONS(5), - }, - [241] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_assignment_pattern] = STATE(4646), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4478), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_pattern_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(699), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(5465), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5280), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_pattern_repeat1] = STATE(5468), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(1781), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_RBRACK] = ACTIONS(1893), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_RBRACK] = ACTIONS(1785), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), @@ -52550,206 +55801,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, + [241] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2083), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(7081), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(5580), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5581), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(1951), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1703), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(546), + [anon_sym_number] = ACTIONS(546), + [anon_sym_boolean] = ACTIONS(546), + [anon_sym_string] = ACTIONS(546), + [anon_sym_symbol] = ACTIONS(546), + [anon_sym_object] = ACTIONS(546), + [sym_html_comment] = ACTIONS(5), + }, [242] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2136), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(5411), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_spread_element] = STATE(4539), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4563), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1687), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1961), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2083), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(7081), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_spread_element] = STATE(5580), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5581), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), [anon_sym_RBRACK] = ACTIONS(1968), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_using] = ACTIONS(606), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(572), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1703), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(546), + [anon_sym_number] = ACTIONS(546), + [anon_sym_boolean] = ACTIONS(546), + [anon_sym_string] = ACTIONS(546), + [anon_sym_symbol] = ACTIONS(546), + [anon_sym_object] = ACTIONS(546), [sym_html_comment] = ACTIONS(5), }, [243] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_assignment_pattern] = STATE(5411), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4563), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(1823), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [anon_sym_extends] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), + }, + [244] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(7081), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5581), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_LBRACE] = ACTIONS(763), [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), [anon_sym_RBRACK] = ACTIONS(1972), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(115), @@ -52769,134 +56239,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [244] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(1817), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(1817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [anon_sym_extends] = ACTIONS(1819), + [245] = { + [sym_identifier] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(1974), + [anon_sym_import] = ACTIONS(1974), + [anon_sym_let] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_await] = ACTIONS(1974), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(128), + [anon_sym_yield] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1976), + [sym_glimmer_opening_tag] = ACTIONS(1976), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_class] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_function] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1974), + [anon_sym_using] = ACTIONS(1974), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1974), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(1976), + [anon_sym_void] = ACTIONS(1974), + [anon_sym_delete] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1976), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1976), + [sym_number] = ACTIONS(1976), + [sym_private_property_identifier] = ACTIONS(1976), + [sym_this] = ACTIONS(1974), + [sym_super] = ACTIONS(1974), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [sym_null] = ACTIONS(1974), + [sym_undefined] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1976), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_readonly] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1974), + [anon_sym_set] = ACTIONS(1974), + [anon_sym_QMARK] = ACTIONS(785), + [anon_sym_declare] = ACTIONS(1974), + [anon_sym_public] = ACTIONS(1974), + [anon_sym_private] = ACTIONS(1974), + [anon_sym_protected] = ACTIONS(1974), + [anon_sym_override] = ACTIONS(1974), + [anon_sym_module] = ACTIONS(1974), + [anon_sym_any] = ACTIONS(1974), + [anon_sym_number] = ACTIONS(1974), + [anon_sym_boolean] = ACTIONS(1974), + [anon_sym_string] = ACTIONS(1974), + [anon_sym_symbol] = ACTIONS(1974), + [anon_sym_object] = ACTIONS(1974), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [245] = { + [246] = { [sym_identifier] = ACTIONS(1974), [anon_sym_export] = ACTIONS(1974), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(1974), - [anon_sym_EQ] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(1974), [anon_sym_LBRACE] = ACTIONS(1976), - [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_COMMA] = ACTIONS(225), [anon_sym_typeof] = ACTIONS(1974), [anon_sym_import] = ACTIONS(1974), [anon_sym_let] = ACTIONS(1974), [anon_sym_BANG] = ACTIONS(1974), [anon_sym_LPAREN] = ACTIONS(1976), - [anon_sym_RPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(225), [anon_sym_await] = ACTIONS(1974), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(225), [anon_sym_yield] = ACTIONS(1974), [anon_sym_LBRACK] = ACTIONS(1976), [sym_glimmer_opening_tag] = ACTIONS(1976), @@ -52908,24 +56377,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1974), [anon_sym_function] = ACTIONS(1974), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(1974), [anon_sym_using] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(1976), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), @@ -52941,12 +56410,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(1974), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_TILDE] = ACTIONS(1976), @@ -52969,7 +56438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1974), [anon_sym_get] = ACTIONS(1974), [anon_sym_set] = ACTIONS(1974), - [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_QMARK] = ACTIONS(785), [anon_sym_declare] = ACTIONS(1974), [anon_sym_public] = ACTIONS(1974), [anon_sym_private] = ACTIONS(1974), @@ -52983,1620 +56452,1512 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1974), [anon_sym_object] = ACTIONS(1974), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [246] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_spread_element] = STATE(4527), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4528), + [247] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(1823), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), + [anon_sym_extends] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), + }, + [248] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1946), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_spread_element] = STATE(5988), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(5987), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), + [anon_sym_using] = ACTIONS(723), [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [247] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1756), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1817), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [anon_sym_extends] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [248] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1980), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1817), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [249] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1912), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_spread_element] = STATE(5796), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(5797), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1978), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(1984), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), - [anon_sym_extends] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [249] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1943), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_spread_element] = STATE(4581), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4582), + [250] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1949), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_spread_element] = STATE(5984), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(5983), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(1984), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(1986), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), + [anon_sym_using] = ACTIONS(723), [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [250] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1786), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [251] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1668), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_COMMA] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1823), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1817), + [anon_sym_GT] = ACTIONS(1823), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), - [anon_sym_extends] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), + [anon_sym_extends] = ACTIONS(1825), [sym_html_comment] = ACTIONS(5), }, - [251] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [252] = { + [sym_identifier] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(1988), + [anon_sym_import] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_await] = ACTIONS(1988), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(128), + [anon_sym_yield] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1990), + [sym_glimmer_opening_tag] = ACTIONS(1990), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_async] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1988), + [anon_sym_using] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(1988), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(1990), + [anon_sym_void] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1988), + [anon_sym_PLUS_PLUS] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1990), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1990), + [sym_number] = ACTIONS(1990), + [sym_private_property_identifier] = ACTIONS(1990), + [sym_this] = ACTIONS(1988), + [sym_super] = ACTIONS(1988), + [sym_true] = ACTIONS(1988), + [sym_false] = ACTIONS(1988), + [sym_null] = ACTIONS(1988), + [sym_undefined] = ACTIONS(1988), + [anon_sym_AT] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_get] = ACTIONS(1988), + [anon_sym_set] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(785), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_public] = ACTIONS(1988), + [anon_sym_private] = ACTIONS(1988), + [anon_sym_protected] = ACTIONS(1988), + [anon_sym_override] = ACTIONS(1988), + [anon_sym_module] = ACTIONS(1988), + [anon_sym_any] = ACTIONS(1988), + [anon_sym_number] = ACTIONS(1988), + [anon_sym_boolean] = ACTIONS(1988), + [anon_sym_string] = ACTIONS(1988), + [anon_sym_symbol] = ACTIONS(1988), + [anon_sym_object] = ACTIONS(1988), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [253] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1823), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [anon_sym_extends] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [anon_sym_extends] = ACTIONS(1825), [sym_html_comment] = ACTIONS(5), }, - [252] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1947), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_spread_element] = STATE(4833), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4840), + [254] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1952), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_spread_element] = STATE(5943), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(5944), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(1986), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), + [anon_sym_using] = ACTIONS(723), [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [253] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), - [anon_sym_extends] = ACTIONS(1819), - [sym_html_comment] = ACTIONS(5), - }, - [254] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2397), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(1817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [255] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2223), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1823), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [anon_sym_extends] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_extends] = ACTIONS(1825), [sym_html_comment] = ACTIONS(5), }, - [255] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1896), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_spread_element] = STATE(4630), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4631), + [256] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1942), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_spread_element] = STATE(5630), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(5631), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(1988), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), + [anon_sym_using] = ACTIONS(723), [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1895), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_spread_element] = STATE(4551), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4553), + [257] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1850), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_spread_element] = STATE(5821), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(5820), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(1990), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(1996), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), + [anon_sym_using] = ACTIONS(723), [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [257] = { - [sym_identifier] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1992), - [anon_sym_import] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(1992), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1994), - [sym_glimmer_opening_tag] = ACTIONS(1994), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1994), - [anon_sym_class] = ACTIONS(1992), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1992), - [anon_sym_using] = ACTIONS(1992), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1994), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_SLASH] = ACTIONS(1992), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_void] = ACTIONS(1992), - [anon_sym_delete] = ACTIONS(1992), - [anon_sym_PLUS_PLUS] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1994), - [sym_number] = ACTIONS(1994), - [sym_private_property_identifier] = ACTIONS(1994), - [sym_this] = ACTIONS(1992), - [sym_super] = ACTIONS(1992), - [sym_true] = ACTIONS(1992), - [sym_false] = ACTIONS(1992), - [sym_null] = ACTIONS(1992), - [sym_undefined] = ACTIONS(1992), - [anon_sym_AT] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_get] = ACTIONS(1992), - [anon_sym_set] = ACTIONS(1992), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_public] = ACTIONS(1992), - [anon_sym_private] = ACTIONS(1992), - [anon_sym_protected] = ACTIONS(1992), - [anon_sym_override] = ACTIONS(1992), - [anon_sym_module] = ACTIONS(1992), - [anon_sym_any] = ACTIONS(1992), - [anon_sym_number] = ACTIONS(1992), - [anon_sym_boolean] = ACTIONS(1992), - [anon_sym_string] = ACTIONS(1992), - [anon_sym_symbol] = ACTIONS(1992), - [anon_sym_object] = ACTIONS(1992), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [258] = { - [sym_identifier] = ACTIONS(1974), - [anon_sym_export] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1974), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1976), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1974), - [anon_sym_import] = ACTIONS(1974), - [anon_sym_let] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1976), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1976), - [sym_glimmer_opening_tag] = ACTIONS(1976), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_class] = ACTIONS(1974), - [anon_sym_async] = ACTIONS(1974), - [anon_sym_function] = ACTIONS(1974), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1974), - [anon_sym_using] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1976), - [anon_sym_void] = ACTIONS(1974), - [anon_sym_delete] = ACTIONS(1974), - [anon_sym_PLUS_PLUS] = ACTIONS(1976), - [anon_sym_DASH_DASH] = ACTIONS(1976), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1723), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1823), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1976), - [sym_number] = ACTIONS(1976), - [sym_private_property_identifier] = ACTIONS(1976), - [sym_this] = ACTIONS(1974), - [sym_super] = ACTIONS(1974), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [sym_null] = ACTIONS(1974), - [sym_undefined] = ACTIONS(1974), - [anon_sym_AT] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1974), - [anon_sym_readonly] = ACTIONS(1974), - [anon_sym_get] = ACTIONS(1974), - [anon_sym_set] = ACTIONS(1974), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(1974), - [anon_sym_public] = ACTIONS(1974), - [anon_sym_private] = ACTIONS(1974), - [anon_sym_protected] = ACTIONS(1974), - [anon_sym_override] = ACTIONS(1974), - [anon_sym_module] = ACTIONS(1974), - [anon_sym_any] = ACTIONS(1974), - [anon_sym_number] = ACTIONS(1974), - [anon_sym_boolean] = ACTIONS(1974), - [anon_sym_string] = ACTIONS(1974), - [anon_sym_symbol] = ACTIONS(1974), - [anon_sym_object] = ACTIONS(1974), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), + [anon_sym_extends] = ACTIONS(1825), [sym_html_comment] = ACTIONS(5), }, [259] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1833), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_spread_element] = STATE(4647), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4648), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(1996), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2190), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1823), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [anon_sym_extends] = ACTIONS(1825), [sym_html_comment] = ACTIONS(5), }, [260] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4023), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_accessibility_modifier] = STATE(286), - [sym_override_modifier] = STATE(290), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(1224), - [sym_identifier] = ACTIONS(699), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(1308), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5069), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(288), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_class] = ACTIONS(1998), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(2000), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(775), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(749), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(2002), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_override] = ACTIONS(833), + [anon_sym_public] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -54607,270 +57968,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [261] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1881), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_spread_element] = STATE(4988), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [aux_sym_array_repeat1] = STATE(4989), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1932), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_spread_element] = STATE(6000), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [aux_sym_array_repeat1] = STATE(5999), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(2004), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), + [anon_sym_using] = ACTIONS(723), [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [262] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1817), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2143), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1823), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [anon_sym_extends] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), + [anon_sym_extends] = ACTIONS(1825), [sym_html_comment] = ACTIONS(5), }, [263] = { - [sym_identifier] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), + [sym_identifier] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_EQ] = ACTIONS(221), + [anon_sym_type] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1992), - [anon_sym_import] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(1992), + [anon_sym_namespace] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(1988), + [anon_sym_import] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_await] = ACTIONS(1988), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1994), - [sym_glimmer_opening_tag] = ACTIONS(1994), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_yield] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1990), + [sym_glimmer_opening_tag] = ACTIONS(1990), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1994), - [anon_sym_class] = ACTIONS(1992), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_async] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1992), - [anon_sym_using] = ACTIONS(1992), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1994), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1988), + [anon_sym_using] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1990), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -54879,145 +58240,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_SLASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1988), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_SLASH] = ACTIONS(1988), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_void] = ACTIONS(1992), - [anon_sym_delete] = ACTIONS(1992), - [anon_sym_PLUS_PLUS] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1994), - [sym_number] = ACTIONS(1994), - [sym_private_property_identifier] = ACTIONS(1994), - [sym_this] = ACTIONS(1992), - [sym_super] = ACTIONS(1992), - [sym_true] = ACTIONS(1992), - [sym_false] = ACTIONS(1992), - [sym_null] = ACTIONS(1992), - [sym_undefined] = ACTIONS(1992), - [anon_sym_AT] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_get] = ACTIONS(1992), - [anon_sym_set] = ACTIONS(1992), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_public] = ACTIONS(1992), - [anon_sym_private] = ACTIONS(1992), - [anon_sym_protected] = ACTIONS(1992), - [anon_sym_override] = ACTIONS(1992), - [anon_sym_module] = ACTIONS(1992), - [anon_sym_any] = ACTIONS(1992), - [anon_sym_number] = ACTIONS(1992), - [anon_sym_boolean] = ACTIONS(1992), - [anon_sym_string] = ACTIONS(1992), - [anon_sym_symbol] = ACTIONS(1992), - [anon_sym_object] = ACTIONS(1992), + [anon_sym_TILDE] = ACTIONS(1990), + [anon_sym_void] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1988), + [anon_sym_PLUS_PLUS] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1990), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1990), + [sym_number] = ACTIONS(1990), + [sym_private_property_identifier] = ACTIONS(1990), + [sym_this] = ACTIONS(1988), + [sym_super] = ACTIONS(1988), + [sym_true] = ACTIONS(1988), + [sym_false] = ACTIONS(1988), + [sym_null] = ACTIONS(1988), + [sym_undefined] = ACTIONS(1988), + [anon_sym_AT] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_get] = ACTIONS(1988), + [anon_sym_set] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(785), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_public] = ACTIONS(1988), + [anon_sym_private] = ACTIONS(1988), + [anon_sym_protected] = ACTIONS(1988), + [anon_sym_override] = ACTIONS(1988), + [anon_sym_module] = ACTIONS(1988), + [anon_sym_any] = ACTIONS(1988), + [anon_sym_number] = ACTIONS(1988), + [anon_sym_boolean] = ACTIONS(1988), + [anon_sym_string] = ACTIONS(1988), + [anon_sym_symbol] = ACTIONS(1988), + [anon_sym_object] = ACTIONS(1988), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [264] = { - [sym_import] = STATE(3316), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2397), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3788), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(2006), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(2008), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [265] = { + [sym_import] = STATE(3870), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2010), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(2012), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), + [sym_html_comment] = ACTIONS(5), + }, + [266] = { + [sym_import] = STATE(3768), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2143), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(2014), [anon_sym_export] = ACTIONS(1079), [anon_sym_type] = ACTIONS(1079), [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1079), [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(2008), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(2016), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1079), [anon_sym_readonly] = ACTIONS(1079), @@ -55037,415 +58612,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [265] = { - [sym_import] = STATE(3307), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2010), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2012), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [sym_html_comment] = ACTIONS(5), - }, - [266] = { - [sym_import] = STATE(3291), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2014), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2008), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [sym_html_comment] = ACTIONS(5), - }, [267] = { - [sym_import] = STATE(3304), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1980), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(2016), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [sym_import] = STATE(3841), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1723), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(2018), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(2018), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(2016), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, [268] = { - [sym_import] = STATE(3307), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3788), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(2020), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2008), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(2012), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -55466,200 +58827,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [269] = { - [sym_import] = STATE(3291), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2022), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5075), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_override_modifier] = STATE(290), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1667), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(2008), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(781), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_declare] = ACTIONS(115), + [anon_sym_public] = ACTIONS(115), + [anon_sym_private] = ACTIONS(115), + [anon_sym_protected] = ACTIONS(115), + [anon_sym_override] = ACTIONS(805), + [anon_sym_module] = ACTIONS(115), + [anon_sym_any] = ACTIONS(115), + [anon_sym_number] = ACTIONS(115), + [anon_sym_boolean] = ACTIONS(115), + [anon_sym_string] = ACTIONS(115), + [anon_sym_symbol] = ACTIONS(115), + [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, [270] = { - [sym_import] = STATE(3307), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2024), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2083), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_spread_element] = STATE(5580), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(2024), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(2024), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2012), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -55680,200 +59041,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [271] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2136), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_spread_element] = STATE(4539), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(2026), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3788), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2028), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(2012), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, [272] = { - [sym_import] = STATE(3307), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3788), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(2030), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), [sym_this] = ACTIONS(2032), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -55894,210 +59255,638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [273] = { - [sym_import] = STATE(3311), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1786), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_import] = STATE(3792), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(2034), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(2018), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(2012), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [274] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_assignment_pattern] = STATE(5396), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(5048), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [sym_import] = STATE(3851), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2190), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2036), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(2012), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [275] = { + [sym_import] = STATE(3851), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2038), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(2008), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [276] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2003), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5314), + [sym_assignment_pattern] = STATE(6905), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5314), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5667), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1357), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_namespace] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1703), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(546), + [anon_sym_readonly] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [anon_sym_declare] = ACTIONS(546), + [anon_sym_public] = ACTIONS(546), + [anon_sym_private] = ACTIONS(546), + [anon_sym_protected] = ACTIONS(546), + [anon_sym_override] = ACTIONS(546), + [anon_sym_module] = ACTIONS(546), + [anon_sym_any] = ACTIONS(546), + [anon_sym_number] = ACTIONS(546), + [anon_sym_boolean] = ACTIONS(546), + [anon_sym_string] = ACTIONS(546), + [anon_sym_symbol] = ACTIONS(546), + [anon_sym_object] = ACTIONS(546), + [sym_html_comment] = ACTIONS(5), + }, + [277] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(2087), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_spread_element] = STATE(5580), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(2024), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [sym_html_comment] = ACTIONS(5), + }, + [278] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(4867), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_override_modifier] = STATE(291), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(2040), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(2042), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), + [anon_sym_override] = ACTIONS(805), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -56107,1024 +59896,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [275] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2066), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_spread_element] = STATE(4539), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [276] = { - [sym_import] = STATE(3291), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2036), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(2008), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [277] = { - [sym_import] = STATE(3307), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2038), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(2008), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [278] = { - [sym_import] = STATE(3291), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2040), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [279] = { + [sym_import] = STATE(3851), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2044), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2032), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [sym_html_comment] = ACTIONS(5), - }, - [279] = { - [sym_import] = STATE(3425), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2042), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(2012), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [280] = { - [sym_import] = STATE(3425), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2044), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(2008), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [281] = { - [sym_import] = STATE(3319), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym__type_query_member_expression] = STATE(2902), - [sym__type_query_subscript_expression] = STATE(2896), - [sym__type_query_call_expression] = STATE(3076), - [sym__type_query_instantiation_expression] = STATE(3239), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3841), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1668), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(2046), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2048), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [282] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2061), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4404), - [sym_assignment_pattern] = STATE(5396), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4404), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1366), - [sym_subscript_expression] = STATE(1366), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4404), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(5048), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1366), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1687), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1695), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), - [sym_html_comment] = ACTIONS(5), - }, - [283] = { - [sym_import] = STATE(3311), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1756), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym__type_query_member_expression] = STATE(2846), - [sym__type_query_subscript_expression] = STATE(2845), - [sym__type_query_call_expression] = STATE(2892), - [sym__type_query_instantiation_expression] = STATE(2961), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(2050), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(2018), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(2016), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_import] = STATE(3432), - [sym_expression_statement] = STATE(294), - [sym_empty_statement] = STATE(294), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [281] = { + [sym_import] = STATE(3814), + [sym_expression_statement] = STATE(293), + [sym_empty_statement] = STATE(293), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -57135,9 +60175,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -57159,79 +60199,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [285] = { - [sym_import] = STATE(3432), - [sym_expression_statement] = STATE(293), - [sym_empty_statement] = STATE(293), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5151), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [282] = { + [sym_import] = STATE(3851), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2223), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2048), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(2012), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [283] = { + [sym_import] = STATE(3814), + [sym_expression_statement] = STATE(294), + [sym_empty_statement] = STATE(294), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6099), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -57242,9 +60389,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -57266,122 +60413,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [286] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(3925), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_override_modifier] = STATE(291), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [284] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_assignment_pattern] = STATE(6905), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5667), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2052), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2054), + [anon_sym_readonly] = ACTIONS(115), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), [anon_sym_public] = ACTIONS(115), [anon_sym_private] = ACTIONS(115), [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(833), + [anon_sym_override] = ACTIONS(115), [anon_sym_module] = ACTIONS(115), [anon_sym_any] = ACTIONS(115), [anon_sym_number] = ACTIONS(115), @@ -57391,203 +60538,417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(115), [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4009), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_override_modifier] = STATE(288), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [285] = { + [sym_import] = STATE(3785), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3355), + [sym__type_query_subscript_expression] = STATE(3344), + [sym__type_query_call_expression] = STATE(3553), + [sym__type_query_instantiation_expression] = STATE(3702), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2050), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(2052), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [286] = { + [sym_import] = STATE(3788), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2054), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(719), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(2032), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2056), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(833), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [287] = { + [sym_import] = STATE(3792), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym__type_query_member_expression] = STATE(3301), + [sym__type_query_subscript_expression] = STATE(3302), + [sym__type_query_call_expression] = STATE(3348), + [sym__type_query_instantiation_expression] = STATE(3419), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2056), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(2032), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [288] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(3916), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(4865), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(787), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(2058), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2058), + [anon_sym_readonly] = ACTIONS(2060), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), @@ -57605,71 +60966,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [289] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1803), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5404), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1704), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6233), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_SEMI] = ACTIONS(2062), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -57691,112 +61052,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [sym__automatic_semicolon] = ACTIONS(2060), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), + [sym__automatic_semicolon] = ACTIONS(2062), [sym_html_comment] = ACTIONS(5), }, [290] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(3934), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(4875), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2062), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(787), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(2064), @@ -57817,92 +61178,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [291] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(3896), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(4663), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), [sym_this] = ACTIONS(2066), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), [anon_sym_readonly] = ACTIONS(2068), @@ -57923,95 +61284,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [292] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3699), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3699), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3699), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_pattern] = STATE(4009), - [sym_rest_pattern] = STATE(3712), - [sym_non_null_expression] = STATE(1263), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(699), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(3993), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(3993), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(3993), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_pattern] = STATE(5075), + [sym_rest_pattern] = STATE(3980), + [sym_non_null_expression] = STATE(1253), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(761), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(709), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(156), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(771), + [anon_sym_using] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(719), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(781), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(783), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2056), + [anon_sym_readonly] = ACTIONS(2022), [anon_sym_get] = ACTIONS(115), [anon_sym_set] = ACTIONS(115), [anon_sym_declare] = ACTIONS(115), @@ -58029,300 +61390,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [293] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1855), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5477), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1919), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7269), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(2070), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [294] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1883), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5662), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1901), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7312), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [295] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4841), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4841), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4841), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1414), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5730), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5730), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5730), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1421), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(2074), [anon_sym_export] = ACTIONS(2076), [anon_sym_type] = ACTIONS(2076), [anon_sym_namespace] = ACTIONS(2078), [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), [anon_sym_var] = ACTIONS(2082), [anon_sym_let] = ACTIONS(2084), [anon_sym_const] = ACTIONS(2086), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), [anon_sym_LBRACK] = ACTIONS(2088), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(2090), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(2092), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(2094), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(2076), @@ -58344,714 +61705,714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [296] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2175), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2051), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1775), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2322), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [297] = { + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2342), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), - [sym_html_comment] = ACTIONS(5), - }, - [297] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1656), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, [298] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1698), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, [299] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2525), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1639), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2433), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, [300] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2526), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2339), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1708), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, [301] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1838), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5684), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2342), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2074), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [302] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5655), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1891), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7228), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -59072,1442 +62433,1546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [303] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1853), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5723), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2328), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1712), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, [304] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2296), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_mapped_type_clause] = STATE(5442), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2100), - [anon_sym_export] = ACTIONS(2102), - [anon_sym_type] = ACTIONS(2102), - [anon_sym_namespace] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2108), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1826), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2352), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2102), - [anon_sym_readonly] = ACTIONS(2102), - [anon_sym_get] = ACTIONS(2102), - [anon_sym_set] = ACTIONS(2102), - [anon_sym_declare] = ACTIONS(2102), - [anon_sym_public] = ACTIONS(2102), - [anon_sym_private] = ACTIONS(2102), - [anon_sym_protected] = ACTIONS(2102), - [anon_sym_override] = ACTIONS(2102), - [anon_sym_module] = ACTIONS(2102), - [anon_sym_any] = ACTIONS(2102), - [anon_sym_number] = ACTIONS(2102), - [anon_sym_boolean] = ACTIONS(2102), - [anon_sym_string] = ACTIONS(2102), - [anon_sym_symbol] = ACTIONS(2102), - [anon_sym_object] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, [305] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1850), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2203), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1721), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, [306] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1643), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1717), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2339), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [307] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1509), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5469), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1859), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7150), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [308] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2166), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1772), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2328), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2072), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [309] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1835), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1788), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2337), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, [310] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1904), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1778), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2329), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, [311] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1643), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1908), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1775), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2327), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, [312] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1656), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1921), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2197), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1700), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, [313] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1923), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1778), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2320), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, [314] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1951), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7119), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [315] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1925), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1639), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1854), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [316] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1851), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5763), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1788), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2317), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [317] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1911), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7115), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -60527,507 +63992,507 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [317] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1886), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5659), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [318] = { + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2342), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1763), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [318] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5674), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [319] = { + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2339), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1762), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [319] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5743), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [320] = { + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2197), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1735), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [320] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2199), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2027), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [321] = { + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2328), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1757), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [321] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1941), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5813), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [322] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1848), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7195), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -61047,715 +64512,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [322] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2312), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), - [sym_html_comment] = ACTIONS(5), - }, [323] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1643), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2316), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1826), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2308), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, [324] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1656), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2329), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1900), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7338), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [325] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2331), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1945), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7337), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [326] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2332), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1940), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7336), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [327] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2333), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1698), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, [328] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5559), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1909), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7214), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -61776,162 +65137,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [329] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1656), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1741), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1936), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7335), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [330] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2216), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1641), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1639), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2457), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [331] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1639), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2212), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [332] = { + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2203), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1779), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(2098), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -61941,9 +65510,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -61965,207 +65534,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [331] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2199), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [333] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2323), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_mapped_type_clause] = STATE(7178), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2102), + [anon_sym_export] = ACTIONS(2104), + [anon_sym_type] = ACTIONS(2104), + [anon_sym_namespace] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2104), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2108), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2110), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_readonly] = ACTIONS(2104), + [anon_sym_get] = ACTIONS(2104), + [anon_sym_set] = ACTIONS(2104), + [anon_sym_declare] = ACTIONS(2104), + [anon_sym_public] = ACTIONS(2104), + [anon_sym_private] = ACTIONS(2104), + [anon_sym_protected] = ACTIONS(2104), + [anon_sym_override] = ACTIONS(2104), + [anon_sym_module] = ACTIONS(2104), + [anon_sym_any] = ACTIONS(2104), + [anon_sym_number] = ACTIONS(2104), + [anon_sym_boolean] = ACTIONS(2104), + [anon_sym_string] = ACTIONS(2104), + [anon_sym_symbol] = ACTIONS(2104), + [anon_sym_object] = ACTIONS(2104), [sym_html_comment] = ACTIONS(5), }, - [332] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2216), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2128), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [334] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1826), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2275), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [335] = { + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2203), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2070), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -62173,110 +65846,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), - [sym_html_comment] = ACTIONS(5), - }, - [333] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2344), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1079), [anon_sym_readonly] = ACTIONS(1079), [anon_sym_get] = ACTIONS(1079), @@ -62295,683 +65864,1307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [334] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1643), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2348), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [336] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1788), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2270), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [335] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1656), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2361), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [337] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1778), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2268), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [338] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1698), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2166), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [336] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5582), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [339] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1775), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2262), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [340] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1698), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [341] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym__extends_clause_single] = STATE(5990), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [342] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1775), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1892), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [343] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1533), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7471), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [337] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2364), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [344] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1778), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1889), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, - [338] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2365), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [345] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1788), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, - [339] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2175), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1755), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [346] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1639), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), - [anon_sym_function] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [347] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1826), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1886), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, - [340] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5241), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(670), + [348] = { + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2434), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1682), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(2098), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -62981,9 +67174,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -63005,1045 +67198,837 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [341] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2296), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_mapped_type_clause] = STATE(5601), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2112), - [anon_sym_export] = ACTIONS(2114), - [anon_sym_type] = ACTIONS(2114), - [anon_sym_namespace] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2114), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2118), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2120), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [349] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1639), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1899), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_readonly] = ACTIONS(2114), - [anon_sym_get] = ACTIONS(2114), - [anon_sym_set] = ACTIONS(2114), - [anon_sym_declare] = ACTIONS(2114), - [anon_sym_public] = ACTIONS(2114), - [anon_sym_private] = ACTIONS(2114), - [anon_sym_protected] = ACTIONS(2114), - [anon_sym_override] = ACTIONS(2114), - [anon_sym_module] = ACTIONS(2114), - [anon_sym_any] = ACTIONS(2114), - [anon_sym_number] = ACTIONS(2114), - [anon_sym_boolean] = ACTIONS(2114), - [anon_sym_string] = ACTIONS(2114), - [anon_sym_symbol] = ACTIONS(2114), - [anon_sym_object] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, - [342] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2220), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2139), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [350] = { + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2434), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1771), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [343] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [351] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1698), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1870), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, - [344] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1643), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2419), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [352] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1775), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1869), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [345] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1656), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2432), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [353] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1698), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1915), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [346] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [354] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1778), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1864), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [347] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2435), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [348] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2436), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [349] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2221), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1973), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [355] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1788), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [350] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1864), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5795), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [356] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1876), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7302), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -64063,891 +68048,995 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [351] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1945), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym__extends_clause_single] = STATE(4673), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [357] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1877), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7309), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [sym_html_comment] = ACTIONS(5), + }, + [358] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym__extends_clause_single] = STATE(5349), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, - [352] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2220), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1644), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [359] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1880), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7311), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [353] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1857), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5810), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [360] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1826), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [354] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2166), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1808), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [361] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1698), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1820), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [362] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1775), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [355] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1837), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [363] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1778), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2470), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [356] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2199), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1677), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [364] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1788), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [357] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2175), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [365] = { + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2434), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(1963), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), - [sym_html_comment] = ACTIONS(5), - }, - [358] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [359] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2221), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1645), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(2096), + [366] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_sequence_expression] = STATE(6234), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -64957,9 +69046,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -64981,421 +69070,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [sym_html_comment] = ACTIONS(5), - }, - [360] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2216), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1743), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), - [sym_html_comment] = ACTIONS(5), - }, - [361] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2220), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1636), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [362] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2221), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1637), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [367] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1826), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [363] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5558), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [368] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1775), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -65415,195 +69296,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [364] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1643), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1934), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [369] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1636), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_sequence_expression] = STATE(7274), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [365] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1745), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [370] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1778), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1768), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -65623,195 +69504,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [366] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1937), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_sequence_expression] = STATE(5613), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [367] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1669), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1746), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [371] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1788), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -65831,91 +69608,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [368] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1748), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [372] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1826), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1781), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -65935,189 +69712,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [369] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1711), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [373] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2323), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_mapped_type_clause] = STATE(7357), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2112), + [anon_sym_export] = ACTIONS(2114), + [anon_sym_type] = ACTIONS(2114), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2118), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(2114), + [anon_sym_readonly] = ACTIONS(2114), + [anon_sym_get] = ACTIONS(2114), + [anon_sym_set] = ACTIONS(2114), + [anon_sym_declare] = ACTIONS(2114), + [anon_sym_public] = ACTIONS(2114), + [anon_sym_private] = ACTIONS(2114), + [anon_sym_protected] = ACTIONS(2114), + [anon_sym_override] = ACTIONS(2114), + [anon_sym_module] = ACTIONS(2114), + [anon_sym_any] = ACTIONS(2114), + [anon_sym_number] = ACTIONS(2114), + [anon_sym_boolean] = ACTIONS(2114), + [anon_sym_string] = ACTIONS(2114), + [anon_sym_symbol] = ACTIONS(2114), + [anon_sym_object] = ACTIONS(2114), [sym_html_comment] = ACTIONS(5), }, - [370] = { - [sym_import] = STATE(3432), - [sym_statement_block] = STATE(2166), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1994), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [374] = { + [sym_import] = STATE(3876), + [sym_statement_block] = STATE(1639), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [375] = { + [sym_import] = STATE(3814), + [sym_statement_block] = STATE(2197), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2049), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -66125,526 +70006,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), - [sym_html_comment] = ACTIONS(5), - }, - [371] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [sym_html_comment] = ACTIONS(5), - }, - [372] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1945), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym__extends_clause_single] = STATE(4381), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [373] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1643), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [sym_html_comment] = ACTIONS(5), - }, - [374] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1656), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [375] = { - [sym_import] = STATE(3369), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2363), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1079), [anon_sym_readonly] = ACTIONS(1079), [anon_sym_get] = ACTIONS(1079), @@ -66664,572 +70025,572 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [376] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1868), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2465), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [377] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2210), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, [378] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1891), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1917), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [379] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1892), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [380] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1834), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [381] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1863), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1718), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -67239,9 +70600,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -67263,2960 +70624,3578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, [382] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, [383] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1832), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1816), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [384] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [385] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [386] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2124), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2343), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, [387] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1936), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, [388] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, [389] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7321), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7321), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7321), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2124), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2130), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2132), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(2134), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), [sym_html_comment] = ACTIONS(5), }, [390] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [391] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1843), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1450), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7158), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7158), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1450), + [sym_subscript_expression] = STATE(1450), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7158), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1450), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2136), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2140), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2144), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(2146), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_readonly] = ACTIONS(2138), + [anon_sym_get] = ACTIONS(2138), + [anon_sym_set] = ACTIONS(2138), + [anon_sym_declare] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_protected] = ACTIONS(2138), + [anon_sym_override] = ACTIONS(2138), + [anon_sym_module] = ACTIONS(2138), + [anon_sym_any] = ACTIONS(2138), + [anon_sym_number] = ACTIONS(2138), + [anon_sym_boolean] = ACTIONS(2138), + [anon_sym_string] = ACTIONS(2138), + [anon_sym_symbol] = ACTIONS(2138), + [anon_sym_object] = ACTIONS(2138), [sym_html_comment] = ACTIONS(5), }, [392] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1844), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1702), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [393] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2281), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, [394] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1872), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, [395] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1877), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2055), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [396] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1879), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1868), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, [397] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2056), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, [398] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1885), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1867), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, [399] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(3655), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(3655), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1273), - [sym_subscript_expression] = STATE(1273), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(3655), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1273), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2122), - [anon_sym_export] = ACTIONS(2124), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1667), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2128), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2130), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2223), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2132), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2124), - [anon_sym_readonly] = ACTIONS(2124), - [anon_sym_get] = ACTIONS(2124), - [anon_sym_set] = ACTIONS(2124), - [anon_sym_declare] = ACTIONS(2124), - [anon_sym_public] = ACTIONS(2124), - [anon_sym_private] = ACTIONS(2124), - [anon_sym_protected] = ACTIONS(2124), - [anon_sym_override] = ACTIONS(2124), - [anon_sym_module] = ACTIONS(2124), - [anon_sym_any] = ACTIONS(2124), - [anon_sym_number] = ACTIONS(2124), - [anon_sym_boolean] = ACTIONS(2124), - [anon_sym_string] = ACTIONS(2124), - [anon_sym_symbol] = ACTIONS(2124), - [anon_sym_object] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, [400] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2279), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, [401] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1765), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1920), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, [402] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1845), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1866), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, [403] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1438), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7314), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7314), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1438), + [sym_subscript_expression] = STATE(1438), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7314), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1438), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2148), + [anon_sym_export] = ACTIONS(2150), + [anon_sym_type] = ACTIONS(2150), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2150), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(2158), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(2150), + [anon_sym_readonly] = ACTIONS(2150), + [anon_sym_get] = ACTIONS(2150), + [anon_sym_set] = ACTIONS(2150), + [anon_sym_declare] = ACTIONS(2150), + [anon_sym_public] = ACTIONS(2150), + [anon_sym_private] = ACTIONS(2150), + [anon_sym_protected] = ACTIONS(2150), + [anon_sym_override] = ACTIONS(2150), + [anon_sym_module] = ACTIONS(2150), + [anon_sym_any] = ACTIONS(2150), + [anon_sym_number] = ACTIONS(2150), + [anon_sym_boolean] = ACTIONS(2150), + [anon_sym_string] = ACTIONS(2150), + [anon_sym_symbol] = ACTIONS(2150), + [anon_sym_object] = ACTIONS(2150), + [sym_html_comment] = ACTIONS(5), + }, + [404] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(2081), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [404] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1804), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [405] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1809), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [406] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1862), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [407] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2057), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [405] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1756), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [408] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [409] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [410] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1835), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [sym_html_comment] = ACTIONS(5), + }, + [411] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1906), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [sym_html_comment] = ACTIONS(5), + }, + [412] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2058), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(93), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [406] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1756), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [413] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2059), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [sym_html_comment] = ACTIONS(5), - }, - [407] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1946), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [408] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [414] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1687), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [409] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [415] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2061), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [410] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1648), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [416] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -70226,9 +74205,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -70250,76 +74229,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [411] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1676), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [417] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1662), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -70329,9 +74308,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -70353,932 +74332,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [sym_html_comment] = ACTIONS(5), - }, - [412] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [413] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1860), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(4107), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(4107), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(4107), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2136), - [anon_sym_export] = ACTIONS(1337), - [anon_sym_type] = ACTIONS(1337), - [anon_sym_namespace] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1343), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_readonly] = ACTIONS(1337), - [anon_sym_get] = ACTIONS(1337), - [anon_sym_set] = ACTIONS(1337), - [anon_sym_declare] = ACTIONS(1337), - [anon_sym_public] = ACTIONS(1337), - [anon_sym_private] = ACTIONS(1337), - [anon_sym_protected] = ACTIONS(1337), - [anon_sym_override] = ACTIONS(1337), - [anon_sym_module] = ACTIONS(1337), - [anon_sym_any] = ACTIONS(1337), - [anon_sym_number] = ACTIONS(1337), - [anon_sym_boolean] = ACTIONS(1337), - [anon_sym_string] = ACTIONS(1337), - [anon_sym_symbol] = ACTIONS(1337), - [anon_sym_object] = ACTIONS(1337), - [sym_html_comment] = ACTIONS(5), - }, - [414] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [sym_html_comment] = ACTIONS(5), - }, - [415] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1744), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), - [sym_html_comment] = ACTIONS(5), - }, - [416] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), - [sym_html_comment] = ACTIONS(5), - }, - [417] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(2055), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, [418] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2251), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1808), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, [419] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [sym_html_comment] = ACTIONS(5), - }, - [420] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1990), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -71298,90 +74556,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [421] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [420] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -71401,90 +74659,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, + [421] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1894), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, [422] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1805), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2146), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -71505,57 +74866,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [423] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1794), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -71565,9 +74926,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -71589,417 +74950,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, [424] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [sym_html_comment] = ACTIONS(5), - }, - [425] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2146), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [sym_html_comment] = ACTIONS(5), - }, - [426] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2171), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), - [sym_html_comment] = ACTIONS(5), - }, - [427] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2148), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2162), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -72019,58 +75071,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1663), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [425] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1658), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -72080,9 +75132,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -72104,76 +75156,488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), + [sym_html_comment] = ACTIONS(5), + }, + [426] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1938), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [sym_html_comment] = ACTIONS(5), + }, + [427] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2293), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [428] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, [429] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1872), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [sym_html_comment] = ACTIONS(5), + }, + [430] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1716), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -72183,9 +75647,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -72207,308 +75671,2059 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [430] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1442), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5509), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5509), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1442), - [sym_subscript_expression] = STATE(1442), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5509), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1442), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2150), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2158), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [431] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2181), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1794), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [432] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2296), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [433] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1845), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [434] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1804), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [435] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1852), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [436] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1853), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [437] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [438] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [439] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1865), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [440] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), + [sym_html_comment] = ACTIONS(5), + }, + [441] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1882), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [442] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [443] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1883), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [444] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1789), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [445] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1784), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [446] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [447] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [448] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [sym_html_comment] = ACTIONS(5), + }, + [449] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2062), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1953), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [450] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2063), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -72516,205 +77731,720 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), + [sym_html_comment] = ACTIONS(5), + }, + [451] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1884), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1680), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [452] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2194), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [453] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1885), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [454] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1668), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_number] = ACTIONS(2164), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [434] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2028), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [455] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1780), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [456] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2305), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [457] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2131), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -72722,205 +78452,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [435] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1681), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [458] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), - [anon_sym_function] = ACTIONS(683), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [436] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2107), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [459] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2141), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -72928,102 +78658,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [437] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2084), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [460] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2143), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -73031,385 +78761,591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [438] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2001), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [461] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [439] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2295), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [462] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2466), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [440] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2137), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [463] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2467), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [441] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1703), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [464] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1887), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [465] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1836), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [sym_html_comment] = ACTIONS(5), + }, + [466] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1666), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -73419,9 +79355,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -73443,102 +79379,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [442] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2078), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [467] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(1975), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -73546,1312 +79482,1312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [443] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2052), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [468] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, - [444] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2081), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [469] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2306), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [445] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2083), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [470] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1890), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [446] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1983), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [471] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1895), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), [sym_html_comment] = ACTIONS(5), }, - [447] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1985), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [472] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2463), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [448] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1991), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [473] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1824), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2009), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [474] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2080), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [475] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2018), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [476] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2314), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [452] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2050), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [477] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [453] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2076), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [478] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1766), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [454] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2296), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [479] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1765), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [455] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1708), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [480] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1680), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -74861,9 +80797,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -74885,179 +80821,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [456] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1719), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [481] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1896), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [482] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2475), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [483] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2143), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_number] = ACTIONS(2164), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [457] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1720), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [484] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1711), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -75067,9 +81209,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -75091,76 +81233,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [458] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1721), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [485] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [486] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -75170,9 +81415,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -75194,205 +81439,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [sym_html_comment] = ACTIONS(5), - }, - [459] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1974), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [460] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1984), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [487] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(1962), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -75400,76 +81542,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [461] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [488] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1943), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -75479,9 +81621,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -75503,179 +81645,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [sym_html_comment] = ACTIONS(5), - }, - [462] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1369), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5470), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5470), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2940), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5470), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1369), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(379), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1487), - [anon_sym_export] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_namespace] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(759), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(739), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1491), - [anon_sym_using] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_void] = ACTIONS(759), - [anon_sym_delete] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(767), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_readonly] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1279), - [anon_sym_set] = ACTIONS(1279), - [anon_sym_declare] = ACTIONS(1279), - [anon_sym_public] = ACTIONS(1279), - [anon_sym_private] = ACTIONS(1279), - [anon_sym_protected] = ACTIONS(1279), - [anon_sym_override] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_any] = ACTIONS(1279), - [anon_sym_number] = ACTIONS(1279), - [anon_sym_boolean] = ACTIONS(1279), - [anon_sym_string] = ACTIONS(1279), - [anon_sym_symbol] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [463] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1742), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [489] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1723), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -75685,9 +81724,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -75709,108 +81748,520 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [464] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1860), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [490] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2476), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [491] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2332), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [492] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1448), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7107), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7107), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1448), + [sym_subscript_expression] = STATE(1448), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7107), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1448), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2166), + [anon_sym_export] = ACTIONS(2168), + [anon_sym_type] = ACTIONS(2168), + [anon_sym_namespace] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2168), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2174), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(2176), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(2168), + [anon_sym_readonly] = ACTIONS(2168), + [anon_sym_get] = ACTIONS(2168), + [anon_sym_set] = ACTIONS(2168), + [anon_sym_declare] = ACTIONS(2168), + [anon_sym_public] = ACTIONS(2168), + [anon_sym_private] = ACTIONS(2168), + [anon_sym_protected] = ACTIONS(2168), + [anon_sym_override] = ACTIONS(2168), + [anon_sym_module] = ACTIONS(2168), + [anon_sym_any] = ACTIONS(2168), + [anon_sym_number] = ACTIONS(2168), + [anon_sym_boolean] = ACTIONS(2168), + [anon_sym_string] = ACTIONS(2168), + [anon_sym_symbol] = ACTIONS(2168), + [anon_sym_object] = ACTIONS(2168), + [sym_html_comment] = ACTIONS(5), + }, + [493] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2477), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [494] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2153), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -75830,296 +82281,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [465] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2086), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [495] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [466] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2487), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [496] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1834), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [467] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1710), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [497] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2154), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -76139,90 +82590,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [468] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1713), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [498] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1822), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -76242,90 +82693,708 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [469] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1715), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [499] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2290), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [500] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1442), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7175), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7175), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1442), + [sym_subscript_expression] = STATE(1442), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7175), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1442), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2180), + [anon_sym_type] = ACTIONS(2180), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(2180), + [anon_sym_readonly] = ACTIONS(2180), + [anon_sym_get] = ACTIONS(2180), + [anon_sym_set] = ACTIONS(2180), + [anon_sym_declare] = ACTIONS(2180), + [anon_sym_public] = ACTIONS(2180), + [anon_sym_private] = ACTIONS(2180), + [anon_sym_protected] = ACTIONS(2180), + [anon_sym_override] = ACTIONS(2180), + [anon_sym_module] = ACTIONS(2180), + [anon_sym_any] = ACTIONS(2180), + [anon_sym_number] = ACTIONS(2180), + [anon_sym_boolean] = ACTIONS(2180), + [anon_sym_string] = ACTIONS(2180), + [anon_sym_symbol] = ACTIONS(2180), + [anon_sym_object] = ACTIONS(2180), + [sym_html_comment] = ACTIONS(5), + }, + [501] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [502] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [503] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(1879), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7410), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7410), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7132), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3462), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7410), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1374), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(394), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1507), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_delete] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1259), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_readonly] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(1225), + [anon_sym_set] = ACTIONS(1225), + [anon_sym_declare] = ACTIONS(1225), + [anon_sym_public] = ACTIONS(1225), + [anon_sym_private] = ACTIONS(1225), + [anon_sym_protected] = ACTIONS(1225), + [anon_sym_override] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(1225), + [anon_sym_number] = ACTIONS(1225), + [anon_sym_boolean] = ACTIONS(1225), + [anon_sym_string] = ACTIONS(1225), + [anon_sym_symbol] = ACTIONS(1225), + [anon_sym_object] = ACTIONS(1225), + [sym_html_comment] = ACTIONS(5), + }, + [504] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2480), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [505] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1761), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -76345,90 +83414,811 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [470] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), + [506] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2538), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [507] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2455), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), + [sym_html_comment] = ACTIONS(5), + }, + [508] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2333), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [509] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1837), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [sym_html_comment] = ACTIONS(5), + }, + [510] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [511] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2064), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), + [sym_html_comment] = ACTIONS(5), + }, + [512] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), + [sym_html_comment] = ACTIONS(5), + }, + [513] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -76448,90 +84238,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1723), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [514] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2221), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [515] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1645), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -76551,1326 +84444,708 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [472] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [516] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1833), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [473] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1728), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [474] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1729), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [475] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1730), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [476] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1731), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [477] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1734), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [478] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1735), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [517] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2497), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [479] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1737), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [518] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [480] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1738), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [519] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2223), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [481] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1739), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [520] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [482] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [521] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1668), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [483] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1802), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [484] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1827), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [522] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2003), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -77890,496 +85165,496 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [485] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2091), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [523] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1874), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1749), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [524] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [487] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1751), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [525] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1844), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1750), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [526] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [489] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1980), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), + [527] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(1958), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(1265), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), @@ -78387,314 +85662,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1752), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [528] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [491] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [529] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1650), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [530] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -78714,2459 +85989,2871 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [493] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [531] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [494] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1443), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5706), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5706), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1443), - [sym_subscript_expression] = STATE(1443), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5706), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1443), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_namespace] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2170), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [532] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1444), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7198), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7198), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1444), + [sym_subscript_expression] = STATE(1444), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7198), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1444), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2190), + [anon_sym_export] = ACTIONS(2192), + [anon_sym_type] = ACTIONS(2192), + [anon_sym_namespace] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2196), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2172), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(2200), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_readonly] = ACTIONS(2164), - [anon_sym_get] = ACTIONS(2164), - [anon_sym_set] = ACTIONS(2164), - [anon_sym_declare] = ACTIONS(2164), - [anon_sym_public] = ACTIONS(2164), - [anon_sym_private] = ACTIONS(2164), - [anon_sym_protected] = ACTIONS(2164), - [anon_sym_override] = ACTIONS(2164), - [anon_sym_module] = ACTIONS(2164), - [anon_sym_any] = ACTIONS(2164), - [anon_sym_number] = ACTIONS(2164), - [anon_sym_boolean] = ACTIONS(2164), - [anon_sym_string] = ACTIONS(2164), - [anon_sym_symbol] = ACTIONS(2164), - [anon_sym_object] = ACTIONS(2164), + [anon_sym_static] = ACTIONS(2192), + [anon_sym_readonly] = ACTIONS(2192), + [anon_sym_get] = ACTIONS(2192), + [anon_sym_set] = ACTIONS(2192), + [anon_sym_declare] = ACTIONS(2192), + [anon_sym_public] = ACTIONS(2192), + [anon_sym_private] = ACTIONS(2192), + [anon_sym_protected] = ACTIONS(2192), + [anon_sym_override] = ACTIONS(2192), + [anon_sym_module] = ACTIONS(2192), + [anon_sym_any] = ACTIONS(2192), + [anon_sym_number] = ACTIONS(2192), + [anon_sym_boolean] = ACTIONS(2192), + [anon_sym_string] = ACTIONS(2192), + [anon_sym_symbol] = ACTIONS(2192), + [anon_sym_object] = ACTIONS(2192), [sym_html_comment] = ACTIONS(5), }, - [495] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1790), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [533] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [496] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [534] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2190), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [497] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(2061), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [535] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1875), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [498] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [536] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [499] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1807), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [537] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2486), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [538] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2240), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [539] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1439), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7124), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7124), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1439), + [sym_subscript_expression] = STATE(1439), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7124), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1439), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2202), + [anon_sym_export] = ACTIONS(2204), + [anon_sym_type] = ACTIONS(2204), + [anon_sym_namespace] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(2212), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_readonly] = ACTIONS(2204), + [anon_sym_get] = ACTIONS(2204), + [anon_sym_set] = ACTIONS(2204), + [anon_sym_declare] = ACTIONS(2204), + [anon_sym_public] = ACTIONS(2204), + [anon_sym_private] = ACTIONS(2204), + [anon_sym_protected] = ACTIONS(2204), + [anon_sym_override] = ACTIONS(2204), + [anon_sym_module] = ACTIONS(2204), + [anon_sym_any] = ACTIONS(2204), + [anon_sym_number] = ACTIONS(2204), + [anon_sym_boolean] = ACTIONS(2204), + [anon_sym_string] = ACTIONS(2204), + [anon_sym_symbol] = ACTIONS(2204), + [anon_sym_object] = ACTIONS(2204), [sym_html_comment] = ACTIONS(5), }, - [501] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2384), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [540] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2241), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [502] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [541] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2084), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1812), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [542] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2438), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1813), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [543] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2335), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1814), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [544] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2487), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1816), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [545] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2037), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [546] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2167), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [547] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2259), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [548] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1842), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [sym_html_comment] = ACTIONS(5), + }, + [549] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2334), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [550] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1785), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1821), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [551] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1723), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_number] = ACTIONS(2164), + [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1823), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [552] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2274), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [553] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2050), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [554] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1741), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [513] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [555] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [514] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [556] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2297), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1639), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [557] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), + [558] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1933), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1053), [anon_sym_readonly] = ACTIONS(1053), @@ -81186,161 +88873,1088 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [517] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1646), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [559] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2336), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [560] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2354), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [561] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1918), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), + [sym_html_comment] = ACTIONS(5), + }, + [562] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2356), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [563] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1734), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), + [sym_html_comment] = ACTIONS(5), + }, + [564] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2365), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [565] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [566] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2372), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [567] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2214), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), + [sym_html_comment] = ACTIONS(5), + }, + [568] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2066), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1097), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [518] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1880), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [569] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1831), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -81350,9 +89964,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -81374,282 +89988,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [519] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2443), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [570] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2373), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [571] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2499), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [521] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [572] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2261), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [sym_html_comment] = ACTIONS(5), + }, + [573] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -81659,9 +90376,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -81683,4505 +90400,3784 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [522] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2506), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [574] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2189), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [523] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2507), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [575] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1663), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [524] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2508), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [576] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2408), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [525] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1441), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5755), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5755), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1441), - [sym_subscript_expression] = STATE(1441), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5755), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1441), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2174), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2180), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [577] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1664), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2184), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [526] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [578] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [527] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2511), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [579] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2456), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [528] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2512), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [580] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1665), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [529] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2513), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [581] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(2086), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [530] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2514), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [582] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [531] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2515), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [583] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1690), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [532] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [584] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1701), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [533] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2517), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [585] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2458), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [534] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [586] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2459), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [535] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [587] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2460), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [536] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2520), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [588] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [537] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2521), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [589] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1823), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [538] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2523), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [590] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1811), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [539] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [591] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2446), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [540] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2528), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [592] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2266), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [sym_html_comment] = ACTIONS(5), + }, + [593] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7088), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7088), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7088), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2216), + [anon_sym_export] = ACTIONS(2218), + [anon_sym_type] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2224), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), [anon_sym_PLUS_PLUS] = ACTIONS(689), [anon_sym_DASH_DASH] = ACTIONS(689), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(2226), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_readonly] = ACTIONS(2218), + [anon_sym_get] = ACTIONS(2218), + [anon_sym_set] = ACTIONS(2218), + [anon_sym_declare] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_protected] = ACTIONS(2218), + [anon_sym_override] = ACTIONS(2218), + [anon_sym_module] = ACTIONS(2218), + [anon_sym_any] = ACTIONS(2218), + [anon_sym_number] = ACTIONS(2218), + [anon_sym_boolean] = ACTIONS(2218), + [anon_sym_string] = ACTIONS(2218), + [anon_sym_symbol] = ACTIONS(2218), + [anon_sym_object] = ACTIONS(2218), [sym_html_comment] = ACTIONS(5), }, - [541] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1786), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), + [594] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1801), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(1221), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [542] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2529), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [595] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1746), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [543] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [596] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1758), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [544] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1208), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5626), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5626), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1208), - [sym_subscript_expression] = STATE(1208), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5626), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1208), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(819), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [597] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(801), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(801), - [anon_sym_number] = ACTIONS(801), - [anon_sym_boolean] = ACTIONS(801), - [anon_sym_string] = ACTIONS(801), - [anon_sym_symbol] = ACTIONS(801), - [anon_sym_object] = ACTIONS(801), - [sym_html_comment] = ACTIONS(5), - }, - [545] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [546] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1444), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5739), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5739), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1444), - [sym_subscript_expression] = STATE(1444), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5739), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1444), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2186), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [598] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1719), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2188), - [anon_sym_readonly] = ACTIONS(2188), - [anon_sym_get] = ACTIONS(2188), - [anon_sym_set] = ACTIONS(2188), - [anon_sym_declare] = ACTIONS(2188), - [anon_sym_public] = ACTIONS(2188), - [anon_sym_private] = ACTIONS(2188), - [anon_sym_protected] = ACTIONS(2188), - [anon_sym_override] = ACTIONS(2188), - [anon_sym_module] = ACTIONS(2188), - [anon_sym_any] = ACTIONS(2188), - [anon_sym_number] = ACTIONS(2188), - [anon_sym_boolean] = ACTIONS(2188), - [anon_sym_string] = ACTIONS(2188), - [anon_sym_symbol] = ACTIONS(2188), - [anon_sym_object] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [547] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2391), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [599] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1849), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [548] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1903), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [600] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1688), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [549] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1905), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [601] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1819), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [550] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1906), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [602] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1643), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [551] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1907), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [603] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1644), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [552] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1909), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [604] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2205), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [553] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1910), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [605] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2324), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [554] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1911), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [606] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2211), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [555] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1912), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [607] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1739), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [556] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1913), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [608] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1720), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [557] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1914), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), + [609] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [558] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1915), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [559] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1916), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [560] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1917), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [561] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1918), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [562] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1919), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [563] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1920), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [564] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1922), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [565] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1810), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [610] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1647), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -86191,9 +94187,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -86215,3166 +94211,2548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [sym_html_comment] = ACTIONS(5), - }, - [566] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1926), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [567] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1927), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [568] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1928), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [569] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [570] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1931), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [611] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1777), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [572] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1438), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5563), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5563), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1438), - [sym_subscript_expression] = STATE(1438), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5563), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1438), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2198), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_namespace] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2206), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [612] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1812), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2208), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_readonly] = ACTIONS(2200), - [anon_sym_get] = ACTIONS(2200), - [anon_sym_set] = ACTIONS(2200), - [anon_sym_declare] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_protected] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_any] = ACTIONS(2200), - [anon_sym_number] = ACTIONS(2200), - [anon_sym_boolean] = ACTIONS(2200), - [anon_sym_string] = ACTIONS(2200), - [anon_sym_symbol] = ACTIONS(2200), - [anon_sym_object] = ACTIONS(2200), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [573] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [613] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1648), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [574] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2311), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [614] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1394), + [sym_expression] = STATE(2214), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7434), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7434), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1394), + [sym_subscript_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3438), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7434), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1394), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_namespace] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_delete] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1421), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1533), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_readonly] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_declare] = ACTIONS(1395), + [anon_sym_public] = ACTIONS(1395), + [anon_sym_private] = ACTIONS(1395), + [anon_sym_protected] = ACTIONS(1395), + [anon_sym_override] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), [sym_html_comment] = ACTIONS(5), }, - [575] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2313), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [615] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2165), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [576] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2314), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [616] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2054), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [577] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2315), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [617] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1931), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [578] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [618] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2071), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [579] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2318), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [619] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [580] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2319), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [620] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2077), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), + [anon_sym_export] = ACTIONS(1079), + [anon_sym_type] = ACTIONS(1079), + [anon_sym_namespace] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_readonly] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [anon_sym_public] = ACTIONS(1079), + [anon_sym_private] = ACTIONS(1079), + [anon_sym_protected] = ACTIONS(1079), + [anon_sym_override] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [581] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2320), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [621] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2190), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [582] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2321), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [622] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1653), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [583] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2322), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [623] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), + [624] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2324), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [625] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1654), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [586] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2325), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [626] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2215), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [587] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), + [627] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), [sym_expression] = STATE(2326), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), - [sym_html_comment] = ACTIONS(5), - }, - [588] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2327), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2328), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [628] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7105), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7105), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7105), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1446), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2228), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_namespace] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(2238), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(2230), + [anon_sym_readonly] = ACTIONS(2230), + [anon_sym_get] = ACTIONS(2230), + [anon_sym_set] = ACTIONS(2230), + [anon_sym_declare] = ACTIONS(2230), + [anon_sym_public] = ACTIONS(2230), + [anon_sym_private] = ACTIONS(2230), + [anon_sym_protected] = ACTIONS(2230), + [anon_sym_override] = ACTIONS(2230), + [anon_sym_module] = ACTIONS(2230), + [anon_sym_any] = ACTIONS(2230), + [anon_sym_number] = ACTIONS(2230), + [anon_sym_boolean] = ACTIONS(2230), + [anon_sym_string] = ACTIONS(2230), + [anon_sym_symbol] = ACTIONS(2230), + [anon_sym_object] = ACTIONS(2230), [sym_html_comment] = ACTIONS(5), }, - [590] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2330), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [629] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2213), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [591] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2334), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [630] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [592] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2335), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [631] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2409), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [593] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2336), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [632] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1724), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [594] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [633] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2246), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [595] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2393), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [634] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2247), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [596] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1767), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [635] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1950), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(43), @@ -89384,9 +96762,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1447), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(81), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -89408,726 +96786,726 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(95), [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [597] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2397), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [636] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1695), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [598] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5728), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5728), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5728), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2210), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_namespace] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2218), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), + [637] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1339), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7426), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7426), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7428), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1339), + [sym_subscript_expression] = STATE(1339), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3382), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7426), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1339), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(632), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_DASH_DASH] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2220), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(93), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(97), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2212), - [anon_sym_readonly] = ACTIONS(2212), - [anon_sym_get] = ACTIONS(2212), - [anon_sym_set] = ACTIONS(2212), - [anon_sym_declare] = ACTIONS(2212), - [anon_sym_public] = ACTIONS(2212), - [anon_sym_private] = ACTIONS(2212), - [anon_sym_protected] = ACTIONS(2212), - [anon_sym_override] = ACTIONS(2212), - [anon_sym_module] = ACTIONS(2212), - [anon_sym_any] = ACTIONS(2212), - [anon_sym_number] = ACTIONS(2212), - [anon_sym_boolean] = ACTIONS(2212), - [anon_sym_string] = ACTIONS(2212), - [anon_sym_symbol] = ACTIONS(2212), - [anon_sym_object] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), [sym_html_comment] = ACTIONS(5), }, - [599] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [638] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1694), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1211), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [600] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2343), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [639] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [601] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2345), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [640] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2218), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [602] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2346), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [641] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1367), + [sym_expression] = STATE(1858), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7203), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7203), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7455), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1367), + [sym_subscript_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3451), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7203), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1367), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(378), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1487), + [anon_sym_export] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_namespace] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(733), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_void] = ACTIONS(733), + [anon_sym_delete] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(741), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1493), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_readonly] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_declare] = ACTIONS(1343), + [anon_sym_public] = ACTIONS(1343), + [anon_sym_private] = ACTIONS(1343), + [anon_sym_protected] = ACTIONS(1343), + [anon_sym_override] = ACTIONS(1343), + [anon_sym_module] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_number] = ACTIONS(1343), + [anon_sym_boolean] = ACTIONS(1343), + [anon_sym_string] = ACTIONS(1343), + [anon_sym_symbol] = ACTIONS(1343), + [anon_sym_object] = ACTIONS(1343), [sym_html_comment] = ACTIONS(5), }, - [603] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2347), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), + [642] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2076), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), [anon_sym_export] = ACTIONS(1079), [anon_sym_type] = ACTIONS(1079), [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1079), [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1079), [anon_sym_readonly] = ACTIONS(1079), @@ -90147,193 +97525,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [604] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2349), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [643] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7456), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7456), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1214), + [sym_subscript_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7456), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1214), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(827), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2214), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(831), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), + [anon_sym_object] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, - [605] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2350), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), + [644] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2410), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), + [sym_html_comment] = ACTIONS(5), + }, + [645] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2340), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), + [sym_html_comment] = ACTIONS(5), + }, + [646] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1386), + [sym_expression] = STATE(2156), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7146), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7146), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7144), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3405), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7146), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1386), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(467), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1495), [anon_sym_export] = ACTIONS(1079), [anon_sym_type] = ACTIONS(1079), [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(133), [anon_sym_let] = ACTIONS(1079), [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(65), + [sym_glimmer_opening_tag] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_class] = ACTIONS(679), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(683), + [anon_sym_new] = ACTIONS(1499), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(89), + [sym_number] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(95), + [sym_super] = ACTIONS(95), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_null] = ACTIONS(95), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1079), [anon_sym_readonly] = ACTIONS(1079), @@ -90353,6601 +97937,2378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1079), [sym_html_comment] = ACTIONS(5), }, - [606] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2351), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [607] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2352), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [608] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2353), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [609] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2354), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [610] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [611] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2356), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [612] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [613] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2358), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [614] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2359), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [615] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2360), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [616] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2362), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [617] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [618] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2367), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [619] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2368), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [620] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2179), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [621] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2397), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [647] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2430), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [622] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2398), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), + [648] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1214), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(4156), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(4156), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1250), + [sym_subscript_expression] = STATE(1250), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(4156), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1250), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2240), + [anon_sym_export] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(1667), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2246), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(2250), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_readonly] = ACTIONS(2242), + [anon_sym_get] = ACTIONS(2242), + [anon_sym_set] = ACTIONS(2242), + [anon_sym_declare] = ACTIONS(2242), + [anon_sym_public] = ACTIONS(2242), + [anon_sym_private] = ACTIONS(2242), + [anon_sym_protected] = ACTIONS(2242), + [anon_sym_override] = ACTIONS(2242), + [anon_sym_module] = ACTIONS(2242), + [anon_sym_any] = ACTIONS(2242), + [anon_sym_number] = ACTIONS(2242), + [anon_sym_boolean] = ACTIONS(2242), + [anon_sym_string] = ACTIONS(2242), + [anon_sym_symbol] = ACTIONS(2242), + [anon_sym_object] = ACTIONS(2242), [sym_html_comment] = ACTIONS(5), }, - [623] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1787), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), + [649] = { + [sym_import] = STATE(3814), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(1670), + [sym_primary_expression] = STATE(2152), + [sym_yield_expression] = STATE(2186), + [sym_object] = STATE(2177), + [sym_object_pattern] = STATE(7380), + [sym_array] = STATE(2177), + [sym_array_pattern] = STATE(7380), + [sym_glimmer_template] = STATE(2186), + [sym_class] = STATE(2177), + [sym_function_expression] = STATE(2177), + [sym_generator_function] = STATE(2177), + [sym_arrow_function] = STATE(2177), + [sym__call_signature] = STATE(7378), + [sym_call_expression] = STATE(2177), + [sym_new_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(2186), + [sym__augmented_assignment_lhs] = STATE(3431), + [sym_augmented_assignment_expression] = STATE(2186), + [sym__destructuring_pattern] = STATE(7380), + [sym_ternary_expression] = STATE(2186), + [sym_binary_expression] = STATE(2186), + [sym_unary_expression] = STATE(2186), + [sym_update_expression] = STATE(2186), + [sym_string] = STATE(2177), + [sym_template_string] = STATE(2177), + [sym_regex] = STATE(2177), + [sym_meta_property] = STATE(2177), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_satisfies_expression] = STATE(2186), + [sym_instantiation_expression] = STATE(2186), + [sym_internal_module] = STATE(2186), + [sym_type_arguments] = STATE(533), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5290), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), + [anon_sym_async] = ACTIONS(1193), [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_using] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(888), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), + [sym_private_property_identifier] = ACTIONS(1211), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [sym_html_comment] = ACTIONS(5), - }, - [624] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1440), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5463), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5463), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1440), - [sym_subscript_expression] = STATE(1440), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5463), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1440), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2222), - [anon_sym_export] = ACTIONS(2224), - [anon_sym_type] = ACTIONS(2224), - [anon_sym_namespace] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2224), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2232), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_readonly] = ACTIONS(2224), - [anon_sym_get] = ACTIONS(2224), - [anon_sym_set] = ACTIONS(2224), - [anon_sym_declare] = ACTIONS(2224), - [anon_sym_public] = ACTIONS(2224), - [anon_sym_private] = ACTIONS(2224), - [anon_sym_protected] = ACTIONS(2224), - [anon_sym_override] = ACTIONS(2224), - [anon_sym_module] = ACTIONS(2224), - [anon_sym_any] = ACTIONS(2224), - [anon_sym_number] = ACTIONS(2224), - [anon_sym_boolean] = ACTIONS(2224), - [anon_sym_string] = ACTIONS(2224), - [anon_sym_symbol] = ACTIONS(2224), - [anon_sym_object] = ACTIONS(2224), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), + [anon_sym_declare] = ACTIONS(1177), + [anon_sym_public] = ACTIONS(1177), + [anon_sym_private] = ACTIONS(1177), + [anon_sym_protected] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_any] = ACTIONS(1177), + [anon_sym_number] = ACTIONS(1177), + [anon_sym_boolean] = ACTIONS(1177), + [anon_sym_string] = ACTIONS(1177), + [anon_sym_symbol] = ACTIONS(1177), + [anon_sym_object] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [625] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2403), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), + [650] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [626] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2414), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [651] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7305), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7305), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7305), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1351), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(2214), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1479), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_readonly] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), + [anon_sym_declare] = ACTIONS(1053), + [anon_sym_public] = ACTIONS(1053), + [anon_sym_private] = ACTIONS(1053), + [anon_sym_protected] = ACTIONS(1053), + [anon_sym_override] = ACTIONS(1053), + [anon_sym_module] = ACTIONS(1053), + [anon_sym_any] = ACTIONS(1053), + [anon_sym_number] = ACTIONS(1053), + [anon_sym_boolean] = ACTIONS(1053), + [anon_sym_string] = ACTIONS(1053), + [anon_sym_symbol] = ACTIONS(1053), + [anon_sym_object] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [627] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [652] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2219), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [628] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2417), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [653] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2366), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [629] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [654] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2369), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [630] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2420), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [655] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [631] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2421), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [656] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2371), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [632] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2422), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [657] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2374), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [633] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2423), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [658] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2225), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [634] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [659] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2375), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2425), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [660] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2291), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [636] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2426), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [661] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [637] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), + [662] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), [sym_expression] = STATE(2427), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [638] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2428), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [663] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1403), + [sym_expression] = STATE(2233), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7422), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7422), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7111), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1403), + [sym_subscript_expression] = STATE(1403), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3373), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7422), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1403), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(546), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1299), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1525), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [sym_html_comment] = ACTIONS(5), }, - [639] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2429), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [664] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1449), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7395), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7395), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1449), + [sym_subscript_expression] = STATE(1449), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3435), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7395), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1449), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(571), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2252), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_namespace] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(185), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2258), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_void] = ACTIONS(185), + [anon_sym_delete] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_DASH_DASH] = ACTIONS(689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(194), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(2262), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(2254), + [anon_sym_readonly] = ACTIONS(2254), + [anon_sym_get] = ACTIONS(2254), + [anon_sym_set] = ACTIONS(2254), + [anon_sym_declare] = ACTIONS(2254), + [anon_sym_public] = ACTIONS(2254), + [anon_sym_private] = ACTIONS(2254), + [anon_sym_protected] = ACTIONS(2254), + [anon_sym_override] = ACTIONS(2254), + [anon_sym_module] = ACTIONS(2254), + [anon_sym_any] = ACTIONS(2254), + [anon_sym_number] = ACTIONS(2254), + [anon_sym_boolean] = ACTIONS(2254), + [anon_sym_string] = ACTIONS(2254), + [anon_sym_symbol] = ACTIONS(2254), + [anon_sym_object] = ACTIONS(2254), [sym_html_comment] = ACTIONS(5), }, - [640] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2430), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [665] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(1918), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(5127), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(5127), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7205), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3369), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(5127), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1343), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(1309), + [anon_sym_namespace] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(821), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2266), + [anon_sym_using] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(2268), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1309), + [anon_sym_readonly] = ACTIONS(1309), + [anon_sym_get] = ACTIONS(1309), + [anon_sym_set] = ACTIONS(1309), + [anon_sym_declare] = ACTIONS(1309), + [anon_sym_public] = ACTIONS(1309), + [anon_sym_private] = ACTIONS(1309), + [anon_sym_protected] = ACTIONS(1309), + [anon_sym_override] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), + [anon_sym_any] = ACTIONS(1309), + [anon_sym_number] = ACTIONS(1309), + [anon_sym_boolean] = ACTIONS(1309), + [anon_sym_string] = ACTIONS(1309), + [anon_sym_symbol] = ACTIONS(1309), + [anon_sym_object] = ACTIONS(1309), [sym_html_comment] = ACTIONS(5), }, - [641] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2431), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), + [666] = { + [sym_import] = STATE(3876), + [sym_parenthesized_expression] = STATE(1397), + [sym_expression] = STATE(2432), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1646), + [sym_object] = STATE(1641), + [sym_object_pattern] = STATE(7430), + [sym_array] = STATE(1641), + [sym_array_pattern] = STATE(7430), + [sym_glimmer_template] = STATE(1646), + [sym_class] = STATE(1641), + [sym_function_expression] = STATE(1641), + [sym_generator_function] = STATE(1641), + [sym_arrow_function] = STATE(1641), + [sym__call_signature] = STATE(7093), + [sym_call_expression] = STATE(1641), + [sym_new_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_member_expression] = STATE(1397), + [sym_subscript_expression] = STATE(1397), + [sym_assignment_expression] = STATE(1646), + [sym__augmented_assignment_lhs] = STATE(3466), + [sym_augmented_assignment_expression] = STATE(1646), + [sym__destructuring_pattern] = STATE(7430), + [sym_ternary_expression] = STATE(1646), + [sym_binary_expression] = STATE(1646), + [sym_unary_expression] = STATE(1646), + [sym_update_expression] = STATE(1646), + [sym_string] = STATE(1641), + [sym_template_string] = STATE(1641), + [sym_regex] = STATE(1641), + [sym_meta_property] = STATE(1641), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(4242), + [sym_non_null_expression] = STATE(1397), + [sym_type_assertion] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_satisfies_expression] = STATE(1646), + [sym_instantiation_expression] = STATE(1646), + [sym_internal_module] = STATE(1646), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(6102), + [aux_sym_export_statement_repeat1] = STATE(5404), + [sym_identifier] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_namespace] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(133), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_await] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(845), + [sym_glimmer_opening_tag] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_class] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_function] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_using] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(582), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_delete] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_number] = ACTIONS(779), + [sym_private_property_identifier] = ACTIONS(1163), + [sym_this] = ACTIONS(198), + [sym_super] = ACTIONS(198), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1517), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_readonly] = ACTIONS(1129), + [anon_sym_get] = ACTIONS(1129), + [anon_sym_set] = ACTIONS(1129), + [anon_sym_declare] = ACTIONS(1129), + [anon_sym_public] = ACTIONS(1129), + [anon_sym_private] = ACTIONS(1129), + [anon_sym_protected] = ACTIONS(1129), + [anon_sym_override] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_any] = ACTIONS(1129), + [anon_sym_number] = ACTIONS(1129), + [anon_sym_boolean] = ACTIONS(1129), + [anon_sym_string] = ACTIONS(1129), + [anon_sym_symbol] = ACTIONS(1129), + [anon_sym_object] = ACTIONS(1129), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [667] = { + [sym_namespace_export] = STATE(6107), + [sym_export_clause] = STATE(5299), + [sym_declaration] = STATE(838), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_class_declaration] = STATE(855), + [sym_function_declaration] = STATE(855), + [sym_generator_function_declaration] = STATE(855), + [sym_decorator] = STATE(3132), + [sym_function_signature] = STATE(855), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(841), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [aux_sym_export_statement_repeat1] = STATE(5193), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_class] = ACTIONS(2295), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2306), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_satisfies] = ACTIONS(162), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2312), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [643] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [668] = { + [sym_namespace_export] = STATE(6107), + [sym_export_clause] = STATE(5299), + [sym_declaration] = STATE(838), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_class_declaration] = STATE(855), + [sym_function_declaration] = STATE(855), + [sym_generator_function_declaration] = STATE(855), + [sym_decorator] = STATE(3132), + [sym_function_signature] = STATE(855), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(841), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [aux_sym_export_statement_repeat1] = STATE(5193), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_class] = ACTIONS(2295), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2306), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_satisfies] = ACTIONS(162), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2312), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [644] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), + [669] = { + [sym_namespace_export] = STATE(6107), + [sym_export_clause] = STATE(5299), + [sym_declaration] = STATE(838), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_class_declaration] = STATE(855), + [sym_function_declaration] = STATE(855), + [sym_generator_function_declaration] = STATE(855), + [sym_decorator] = STATE(3132), + [sym_function_signature] = STATE(855), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(841), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [aux_sym_export_statement_repeat1] = STATE(5193), + [aux_sym_object_repeat1] = STATE(5516), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_class] = ACTIONS(2295), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [645] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [sym_html_comment] = ACTIONS(5), - }, - [646] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [647] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [648] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2441), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [649] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5515), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5515), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5515), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1439), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2234), - [anon_sym_export] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2236), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2236), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2240), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2244), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2236), - [anon_sym_readonly] = ACTIONS(2236), - [anon_sym_get] = ACTIONS(2236), - [anon_sym_set] = ACTIONS(2236), - [anon_sym_declare] = ACTIONS(2236), - [anon_sym_public] = ACTIONS(2236), - [anon_sym_private] = ACTIONS(2236), - [anon_sym_protected] = ACTIONS(2236), - [anon_sym_override] = ACTIONS(2236), - [anon_sym_module] = ACTIONS(2236), - [anon_sym_any] = ACTIONS(2236), - [anon_sym_number] = ACTIONS(2236), - [anon_sym_boolean] = ACTIONS(2236), - [anon_sym_string] = ACTIONS(2236), - [anon_sym_symbol] = ACTIONS(2236), - [anon_sym_object] = ACTIONS(2236), - [sym_html_comment] = ACTIONS(5), - }, - [650] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2410), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), - [sym_html_comment] = ACTIONS(5), - }, - [651] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1640), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [sym_html_comment] = ACTIONS(5), - }, - [652] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1980), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), - [sym_html_comment] = ACTIONS(5), - }, - [653] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1987), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), - [sym_html_comment] = ACTIONS(5), - }, - [654] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(1993), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5554), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5554), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5552), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5554), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1383), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_namespace] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1499), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_delete] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1265), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_readonly] = ACTIONS(1231), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_declare] = ACTIONS(1231), - [anon_sym_public] = ACTIONS(1231), - [anon_sym_private] = ACTIONS(1231), - [anon_sym_protected] = ACTIONS(1231), - [anon_sym_override] = ACTIONS(1231), - [anon_sym_module] = ACTIONS(1231), - [anon_sym_any] = ACTIONS(1231), - [anon_sym_number] = ACTIONS(1231), - [anon_sym_boolean] = ACTIONS(1231), - [anon_sym_string] = ACTIONS(1231), - [anon_sym_symbol] = ACTIONS(1231), - [anon_sym_object] = ACTIONS(1231), - [sym_html_comment] = ACTIONS(5), - }, - [655] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1652), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [656] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5789), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5503), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2937), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1431), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1527), - [anon_sym_export] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(1449), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_using] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(1453), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_readonly] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1427), - [anon_sym_set] = ACTIONS(1427), - [anon_sym_declare] = ACTIONS(1427), - [anon_sym_public] = ACTIONS(1427), - [anon_sym_private] = ACTIONS(1427), - [anon_sym_protected] = ACTIONS(1427), - [anon_sym_override] = ACTIONS(1427), - [anon_sym_module] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_number] = ACTIONS(1427), - [anon_sym_boolean] = ACTIONS(1427), - [anon_sym_string] = ACTIONS(1427), - [anon_sym_symbol] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(1427), - [sym_html_comment] = ACTIONS(5), - }, - [657] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1340), - [sym_expression] = STATE(1774), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5630), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5630), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5629), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1340), - [sym_subscript_expression] = STATE(1340), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(2933), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5630), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1340), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(404), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_namespace] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1171), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), - [anon_sym_declare] = ACTIONS(1159), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_any] = ACTIONS(1159), - [anon_sym_number] = ACTIONS(1159), - [anon_sym_boolean] = ACTIONS(1159), - [anon_sym_string] = ACTIONS(1159), - [anon_sym_symbol] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [sym_html_comment] = ACTIONS(5), - }, - [658] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1786), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), - [sym_html_comment] = ACTIONS(5), - }, - [659] = { - [sym_import] = STATE(3432), - [sym_parenthesized_expression] = STATE(1345), - [sym_expression] = STATE(1788), - [sym_primary_expression] = STATE(1999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2209), - [sym_object_pattern] = STATE(5735), - [sym_array] = STATE(2209), - [sym_array_pattern] = STATE(5735), - [sym_glimmer_template] = STATE(2309), - [sym_class] = STATE(2209), - [sym_function_expression] = STATE(2209), - [sym_generator_function] = STATE(2209), - [sym_arrow_function] = STATE(2209), - [sym__call_signature] = STATE(5733), - [sym_call_expression] = STATE(2209), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1345), - [sym_subscript_expression] = STATE(1345), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3000), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5735), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2209), - [sym_template_string] = STATE(2209), - [sym_regex] = STATE(2209), - [sym_meta_property] = STATE(2209), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1345), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_satisfies_expression] = STATE(2309), - [sym_instantiation_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4451), - [sym_identifier] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(679), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_function] = ACTIONS(683), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_delete] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1221), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1195), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1195), - [anon_sym_number] = ACTIONS(1195), - [anon_sym_boolean] = ACTIONS(1195), - [anon_sym_string] = ACTIONS(1195), - [anon_sym_symbol] = ACTIONS(1195), - [anon_sym_object] = ACTIONS(1195), - [sym_html_comment] = ACTIONS(5), - }, - [660] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1933), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5765), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5765), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2962), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5765), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(548), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1503), - [anon_sym_export] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_namespace] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1507), - [anon_sym_using] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1417), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1391), - [anon_sym_set] = ACTIONS(1391), - [anon_sym_declare] = ACTIONS(1391), - [anon_sym_public] = ACTIONS(1391), - [anon_sym_private] = ACTIONS(1391), - [anon_sym_protected] = ACTIONS(1391), - [anon_sym_override] = ACTIONS(1391), - [anon_sym_module] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_number] = ACTIONS(1391), - [anon_sym_boolean] = ACTIONS(1391), - [anon_sym_string] = ACTIONS(1391), - [anon_sym_symbol] = ACTIONS(1391), - [anon_sym_object] = ACTIONS(1391), - [sym_html_comment] = ACTIONS(5), - }, - [661] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2395), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), - [sym_html_comment] = ACTIONS(5), - }, - [662] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2400), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5451), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2912), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1429), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_namespace] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1113), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_readonly] = ACTIONS(1079), - [anon_sym_get] = ACTIONS(1079), - [anon_sym_set] = ACTIONS(1079), - [anon_sym_declare] = ACTIONS(1079), - [anon_sym_public] = ACTIONS(1079), - [anon_sym_private] = ACTIONS(1079), - [anon_sym_protected] = ACTIONS(1079), - [anon_sym_override] = ACTIONS(1079), - [anon_sym_module] = ACTIONS(1079), - [anon_sym_any] = ACTIONS(1079), - [anon_sym_number] = ACTIONS(1079), - [anon_sym_boolean] = ACTIONS(1079), - [anon_sym_string] = ACTIONS(1079), - [anon_sym_symbol] = ACTIONS(1079), - [anon_sym_object] = ACTIONS(1079), - [sym_html_comment] = ACTIONS(5), - }, - [663] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1446), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5584), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5584), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1446), - [sym_subscript_expression] = STATE(1446), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5584), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1446), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2248), - [anon_sym_type] = ACTIONS(2248), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2248), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2254), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2256), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2248), - [anon_sym_readonly] = ACTIONS(2248), - [anon_sym_get] = ACTIONS(2248), - [anon_sym_set] = ACTIONS(2248), - [anon_sym_declare] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(2248), - [anon_sym_private] = ACTIONS(2248), - [anon_sym_protected] = ACTIONS(2248), - [anon_sym_override] = ACTIONS(2248), - [anon_sym_module] = ACTIONS(2248), - [anon_sym_any] = ACTIONS(2248), - [anon_sym_number] = ACTIONS(2248), - [anon_sym_boolean] = ACTIONS(2248), - [anon_sym_string] = ACTIONS(2248), - [anon_sym_symbol] = ACTIONS(2248), - [anon_sym_object] = ACTIONS(2248), - [sym_html_comment] = ACTIONS(5), - }, - [664] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2413), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5777), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5777), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5692), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2956), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5777), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1427), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1511), - [anon_sym_export] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_namespace] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1515), - [anon_sym_using] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_delete] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(1381), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1355), - [anon_sym_set] = ACTIONS(1355), - [anon_sym_declare] = ACTIONS(1355), - [anon_sym_public] = ACTIONS(1355), - [anon_sym_private] = ACTIONS(1355), - [anon_sym_protected] = ACTIONS(1355), - [anon_sym_override] = ACTIONS(1355), - [anon_sym_module] = ACTIONS(1355), - [anon_sym_any] = ACTIONS(1355), - [anon_sym_number] = ACTIONS(1355), - [anon_sym_boolean] = ACTIONS(1355), - [anon_sym_string] = ACTIONS(1355), - [anon_sym_symbol] = ACTIONS(1355), - [anon_sym_object] = ACTIONS(1355), - [sym_html_comment] = ACTIONS(5), - }, - [665] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1445), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5750), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5750), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5682), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1445), - [sym_subscript_expression] = STATE(1445), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2988), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5750), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1445), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(520), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(2258), - [anon_sym_export] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2266), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2268), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_readonly] = ACTIONS(2260), - [anon_sym_get] = ACTIONS(2260), - [anon_sym_set] = ACTIONS(2260), - [anon_sym_declare] = ACTIONS(2260), - [anon_sym_public] = ACTIONS(2260), - [anon_sym_private] = ACTIONS(2260), - [anon_sym_protected] = ACTIONS(2260), - [anon_sym_override] = ACTIONS(2260), - [anon_sym_module] = ACTIONS(2260), - [anon_sym_any] = ACTIONS(2260), - [anon_sym_number] = ACTIONS(2260), - [anon_sym_boolean] = ACTIONS(2260), - [anon_sym_string] = ACTIONS(2260), - [anon_sym_symbol] = ACTIONS(2260), - [anon_sym_object] = ACTIONS(2260), - [sym_html_comment] = ACTIONS(5), - }, - [666] = { - [sym_import] = STATE(3369), - [sym_parenthesized_expression] = STATE(1342), - [sym_expression] = STATE(1732), - [sym_primary_expression] = STATE(1529), - [sym_yield_expression] = STATE(1696), - [sym_object] = STATE(1693), - [sym_object_pattern] = STATE(5660), - [sym_array] = STATE(1693), - [sym_array_pattern] = STATE(5660), - [sym_glimmer_template] = STATE(1696), - [sym_class] = STATE(1693), - [sym_function_expression] = STATE(1693), - [sym_generator_function] = STATE(1693), - [sym_arrow_function] = STATE(1693), - [sym__call_signature] = STATE(5823), - [sym_call_expression] = STATE(1693), - [sym_new_expression] = STATE(1696), - [sym_await_expression] = STATE(1696), - [sym_member_expression] = STATE(1342), - [sym_subscript_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1696), - [sym__augmented_assignment_lhs] = STATE(2941), - [sym_augmented_assignment_expression] = STATE(1696), - [sym__destructuring_pattern] = STATE(5660), - [sym_ternary_expression] = STATE(1696), - [sym_binary_expression] = STATE(1696), - [sym_unary_expression] = STATE(1696), - [sym_update_expression] = STATE(1696), - [sym_string] = STATE(1693), - [sym_template_string] = STATE(1693), - [sym_regex] = STATE(1693), - [sym_meta_property] = STATE(1693), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3796), - [sym_non_null_expression] = STATE(1342), - [sym_type_assertion] = STATE(1696), - [sym_as_expression] = STATE(1696), - [sym_satisfies_expression] = STATE(1696), - [sym_instantiation_expression] = STATE(1696), - [sym_internal_module] = STATE(1696), - [sym_type_arguments] = STATE(467), - [sym_type_parameters] = STATE(5437), - [aux_sym_export_statement_repeat1] = STATE(4372), - [sym_identifier] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(863), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(821), - [sym_number] = ACTIONS(717), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_readonly] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_override] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_object] = ACTIONS(1053), - [sym_html_comment] = ACTIONS(5), - }, - [667] = { - [sym_namespace_export] = STATE(5185), - [sym_export_clause] = STATE(4441), - [sym_declaration] = STATE(876), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_class_declaration] = STATE(851), - [sym_function_declaration] = STATE(851), - [sym_generator_function_declaration] = STATE(851), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(851), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(880), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [aux_sym_export_statement_repeat1] = STATE(4053), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2274), - [anon_sym_EQ] = ACTIONS(2276), - [anon_sym_as] = ACTIONS(2278), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2299), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2306), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [668] = { - [sym_namespace_export] = STATE(5185), - [sym_export_clause] = STATE(4441), - [sym_declaration] = STATE(876), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_class_declaration] = STATE(851), - [sym_function_declaration] = STATE(851), - [sym_generator_function_declaration] = STATE(851), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(851), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(880), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [aux_sym_export_statement_repeat1] = STATE(4053), - [aux_sym_object_repeat1] = STATE(4937), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2274), - [anon_sym_EQ] = ACTIONS(2276), - [anon_sym_as] = ACTIONS(2278), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2299), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2306), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [669] = { - [sym_namespace_export] = STATE(5185), - [sym_export_clause] = STATE(4441), - [sym_declaration] = STATE(876), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_class_declaration] = STATE(851), - [sym_function_declaration] = STATE(851), - [sym_generator_function_declaration] = STATE(851), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(851), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(880), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [aux_sym_export_statement_repeat1] = STATE(4053), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2274), - [anon_sym_EQ] = ACTIONS(2276), - [anon_sym_as] = ACTIONS(2278), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2299), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2306), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2306), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_satisfies] = ACTIONS(162), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2312), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [670] = { - [sym__call_signature] = STATE(5658), - [sym_string] = STATE(3821), - [sym_formal_parameters] = STATE(3796), - [sym__property_name] = STATE(3821), - [sym_computed_property_name] = STATE(3821), - [sym_type_parameters] = STATE(5437), - [aux_sym_object_repeat1] = STATE(4937), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym__call_signature] = STATE(7326), + [sym_string] = STATE(4364), + [sym_formal_parameters] = STATE(4242), + [sym__property_name] = STATE(4364), + [sym_computed_property_name] = STATE(4364), + [sym_type_parameters] = STATE(6102), + [aux_sym_object_repeat1] = STATE(5516), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2316), [anon_sym_STAR] = ACTIONS(2318), @@ -96955,13 +100316,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2316), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_let] = ACTIONS(2316), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2321), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(2325), [anon_sym_GT] = ACTIONS(122), @@ -96971,23 +100332,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2316), [anon_sym_function] = ACTIONS(2332), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2316), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -97002,18 +100363,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2334), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(2338), [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2316), @@ -97034,19 +100395,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2316), [anon_sym_object] = ACTIONS(2316), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [671] = { - [sym__call_signature] = STATE(5658), - [sym_string] = STATE(3821), - [sym_formal_parameters] = STATE(3796), - [sym__property_name] = STATE(3821), - [sym_computed_property_name] = STATE(3821), - [sym_type_parameters] = STATE(5437), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym__call_signature] = STATE(7326), + [sym_string] = STATE(4364), + [sym_formal_parameters] = STATE(4242), + [sym__property_name] = STATE(4364), + [sym_computed_property_name] = STATE(4364), + [sym_type_parameters] = STATE(6102), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2316), [anon_sym_STAR] = ACTIONS(2318), @@ -97054,13 +100415,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2316), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(2316), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2321), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(2325), [anon_sym_GT] = ACTIONS(122), @@ -97070,23 +100431,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2316), [anon_sym_function] = ACTIONS(2332), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2316), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -97101,18 +100462,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2334), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(2338), [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2316), @@ -97133,19 +100494,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2316), [anon_sym_object] = ACTIONS(2316), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [672] = { - [sym__call_signature] = STATE(5658), - [sym_string] = STATE(3821), - [sym_formal_parameters] = STATE(3796), - [sym__property_name] = STATE(3821), - [sym_computed_property_name] = STATE(3821), - [sym_type_parameters] = STATE(5437), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym__call_signature] = STATE(7326), + [sym_string] = STATE(4364), + [sym_formal_parameters] = STATE(4242), + [sym__property_name] = STATE(4364), + [sym_computed_property_name] = STATE(4364), + [sym_type_parameters] = STATE(6102), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2316), [anon_sym_STAR] = ACTIONS(2318), @@ -97153,13 +100514,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2316), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2316), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2321), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(2325), [anon_sym_GT] = ACTIONS(122), @@ -97169,23 +100530,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2316), [anon_sym_function] = ACTIONS(2332), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2316), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -97200,18 +100561,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2334), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(2338), [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2316), @@ -97232,36 +100593,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2316), [anon_sym_object] = ACTIONS(2316), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [673] = { - [sym_declaration] = STATE(868), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_class_declaration] = STATE(851), - [sym_function_declaration] = STATE(851), - [sym_generator_function_declaration] = STATE(851), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(851), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(880), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [aux_sym_export_statement_repeat1] = STATE(4053), - [aux_sym_object_repeat1] = STATE(4937), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_declaration] = STATE(889), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_class_declaration] = STATE(855), + [sym_function_declaration] = STATE(855), + [sym_generator_function_declaration] = STATE(855), + [sym_decorator] = STATE(3132), + [sym_function_signature] = STATE(855), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(841), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [aux_sym_export_statement_repeat1] = STATE(5193), + [aux_sym_object_repeat1] = STATE(5516), + [aux_sym_object_pattern_repeat1] = STATE(5518), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2342), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_import] = ACTIONS(2284), [anon_sym_var] = ACTIONS(2286), @@ -97270,31 +100631,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_class] = ACTIONS(2295), [anon_sym_async] = ACTIONS(2297), [anon_sym_function] = ACTIONS(2299), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -97309,57 +100670,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_declare] = ACTIONS(2304), [anon_sym_module] = ACTIONS(2344), [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(162), [anon_sym_global] = ACTIONS(2346), [anon_sym_interface] = ACTIONS(2310), [anon_sym_enum] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [674] = { - [sym_declaration] = STATE(868), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_class_declaration] = STATE(851), - [sym_function_declaration] = STATE(851), - [sym_generator_function_declaration] = STATE(851), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(851), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(880), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [aux_sym_export_statement_repeat1] = STATE(4053), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_declaration] = STATE(889), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_class_declaration] = STATE(855), + [sym_function_declaration] = STATE(855), + [sym_generator_function_declaration] = STATE(855), + [sym_decorator] = STATE(3132), + [sym_function_signature] = STATE(855), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(841), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [aux_sym_export_statement_repeat1] = STATE(5193), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2342), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_import] = ACTIONS(2284), [anon_sym_var] = ACTIONS(2286), @@ -97368,31 +100729,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_class] = ACTIONS(2295), [anon_sym_async] = ACTIONS(2297), [anon_sym_function] = ACTIONS(2299), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -97407,57 +100768,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_declare] = ACTIONS(2304), [anon_sym_module] = ACTIONS(2344), [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(162), [anon_sym_global] = ACTIONS(2346), [anon_sym_interface] = ACTIONS(2310), [anon_sym_enum] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [675] = { - [sym_declaration] = STATE(868), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_class_declaration] = STATE(851), - [sym_function_declaration] = STATE(851), - [sym_generator_function_declaration] = STATE(851), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(851), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(880), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [aux_sym_export_statement_repeat1] = STATE(4053), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_declaration] = STATE(889), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_class_declaration] = STATE(855), + [sym_function_declaration] = STATE(855), + [sym_generator_function_declaration] = STATE(855), + [sym_decorator] = STATE(3132), + [sym_function_signature] = STATE(855), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(841), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [aux_sym_export_statement_repeat1] = STATE(5193), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2342), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_import] = ACTIONS(2284), [anon_sym_var] = ACTIONS(2286), @@ -97466,31 +100827,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_class] = ACTIONS(2295), [anon_sym_async] = ACTIONS(2297), [anon_sym_function] = ACTIONS(2299), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -97505,51 +100866,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_declare] = ACTIONS(2304), [anon_sym_module] = ACTIONS(2344), [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(162), [anon_sym_global] = ACTIONS(2346), [anon_sym_interface] = ACTIONS(2310), [anon_sym_enum] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [676] = { - [sym_namespace_export] = STATE(5185), - [sym_export_clause] = STATE(4441), - [sym_declaration] = STATE(876), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_class_declaration] = STATE(851), - [sym_function_declaration] = STATE(851), - [sym_generator_function_declaration] = STATE(851), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(851), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(880), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [aux_sym_export_statement_repeat1] = STATE(4053), + [sym_namespace_export] = STATE(6107), + [sym_export_clause] = STATE(5299), + [sym_declaration] = STATE(838), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_class_declaration] = STATE(855), + [sym_function_declaration] = STATE(855), + [sym_generator_function_declaration] = STATE(855), + [sym_decorator] = STATE(3132), + [sym_function_signature] = STATE(855), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(841), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [aux_sym_export_statement_repeat1] = STATE(5193), [anon_sym_STAR] = ACTIONS(2270), [anon_sym_default] = ACTIONS(2348), [anon_sym_type] = ACTIONS(2274), @@ -97557,39 +100918,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2278), [anon_sym_namespace] = ACTIONS(2280), [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_import] = ACTIONS(2284), [anon_sym_var] = ACTIONS(2286), [anon_sym_let] = ACTIONS(2288), [anon_sym_const] = ACTIONS(2290), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_class] = ACTIONS(2295), [anon_sym_async] = ACTIONS(2297), [anon_sym_function] = ACTIONS(2299), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -97604,49 +100965,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), [anon_sym_declare] = ACTIONS(2304), [anon_sym_module] = ACTIONS(2306), [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(162), [anon_sym_interface] = ACTIONS(2310), [anon_sym_enum] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [677] = { - [sym_namespace_export] = STATE(5185), - [sym_export_clause] = STATE(4441), - [sym_declaration] = STATE(876), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_class_declaration] = STATE(851), - [sym_function_declaration] = STATE(851), - [sym_generator_function_declaration] = STATE(851), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(851), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(880), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [aux_sym_export_statement_repeat1] = STATE(4053), + [sym_namespace_export] = STATE(6107), + [sym_export_clause] = STATE(5299), + [sym_declaration] = STATE(838), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_class_declaration] = STATE(855), + [sym_function_declaration] = STATE(855), + [sym_generator_function_declaration] = STATE(855), + [sym_decorator] = STATE(3132), + [sym_function_signature] = STATE(855), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(841), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [aux_sym_export_statement_repeat1] = STATE(5193), [anon_sym_STAR] = ACTIONS(2270), [anon_sym_default] = ACTIONS(2272), [anon_sym_type] = ACTIONS(2274), @@ -97654,39 +101015,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2278), [anon_sym_namespace] = ACTIONS(2280), [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_import] = ACTIONS(2284), [anon_sym_var] = ACTIONS(2286), [anon_sym_let] = ACTIONS(2288), [anon_sym_const] = ACTIONS(2290), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_class] = ACTIONS(2295), [anon_sym_async] = ACTIONS(2297), [anon_sym_function] = ACTIONS(2299), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -97701,36 +101062,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), [anon_sym_declare] = ACTIONS(2304), [anon_sym_module] = ACTIONS(2306), [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(162), [anon_sym_interface] = ACTIONS(2310), [anon_sym_enum] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [678] = { - [sym_string] = STATE(3821), - [sym__property_name] = STATE(3821), - [sym_computed_property_name] = STATE(3821), - [sym_override_modifier] = STATE(2766), - [aux_sym_object_repeat1] = STATE(4937), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_string] = STATE(4364), + [sym__property_name] = STATE(4364), + [sym_computed_property_name] = STATE(4364), + [sym_override_modifier] = STATE(3178), + [aux_sym_object_repeat1] = STATE(5516), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), [anon_sym_STAR] = ACTIONS(2318), @@ -97738,13 +101099,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(2325), [anon_sym_GT] = ACTIONS(122), @@ -97753,23 +101114,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(2330), [anon_sym_async] = ACTIONS(2354), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2352), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -97784,18 +101145,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(2338), [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), @@ -97816,17 +101177,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2352), [anon_sym_object] = ACTIONS(2352), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [679] = { - [sym_string] = STATE(3821), - [sym__property_name] = STATE(3821), - [sym_computed_property_name] = STATE(3821), - [sym_override_modifier] = STATE(2766), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_string] = STATE(4364), + [sym__property_name] = STATE(4364), + [sym_computed_property_name] = STATE(4364), + [sym_override_modifier] = STATE(3178), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), [anon_sym_STAR] = ACTIONS(2318), @@ -97834,13 +101195,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(2325), [anon_sym_GT] = ACTIONS(122), @@ -97849,23 +101210,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(2330), [anon_sym_async] = ACTIONS(2354), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2352), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -97880,18 +101241,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(2338), [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), @@ -97912,17 +101273,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2352), [anon_sym_object] = ACTIONS(2352), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [680] = { - [sym_string] = STATE(3821), - [sym__property_name] = STATE(3821), - [sym_computed_property_name] = STATE(3821), - [sym_override_modifier] = STATE(2766), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_string] = STATE(4364), + [sym__property_name] = STATE(4364), + [sym_computed_property_name] = STATE(4364), + [sym_override_modifier] = STATE(3178), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), [anon_sym_STAR] = ACTIONS(2318), @@ -97930,13 +101291,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(2325), [anon_sym_GT] = ACTIONS(122), @@ -97945,23 +101306,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(2330), [anon_sym_async] = ACTIONS(2354), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2352), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -97976,18 +101337,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(2338), [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), @@ -98008,206 +101369,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2352), [anon_sym_object] = ACTIONS(2352), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [681] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_EQ] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_typeof] = ACTIONS(1811), - [anon_sym_import] = ACTIONS(1811), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_with] = ACTIONS(1811), - [anon_sym_var] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_RPAREN] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_debugger] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_COLON] = ACTIONS(1809), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_RBRACK] = ACTIONS(1809), - [sym_glimmer_opening_tag] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_function] = ACTIONS(1811), - [anon_sym_EQ_GT] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_void] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1809), - [sym_number] = ACTIONS(1809), - [sym_private_property_identifier] = ACTIONS(1809), - [sym_this] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_readonly] = ACTIONS(1811), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_declare] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_private] = ACTIONS(1811), - [anon_sym_protected] = ACTIONS(1811), - [anon_sym_override] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_any] = ACTIONS(1811), - [anon_sym_number] = ACTIONS(1811), - [anon_sym_boolean] = ACTIONS(1811), - [anon_sym_string] = ACTIONS(1811), - [anon_sym_symbol] = ACTIONS(1811), - [anon_sym_object] = ACTIONS(1811), - [anon_sym_abstract] = ACTIONS(1811), - [anon_sym_extends] = ACTIONS(1811), - [anon_sym_interface] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [sym_html_comment] = ACTIONS(5), - }, - [682] = { - [ts_builtin_sym_end] = ACTIONS(1803), - [sym_identifier] = ACTIONS(1805), - [anon_sym_export] = ACTIONS(1805), - [anon_sym_default] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1805), - [anon_sym_EQ] = ACTIONS(1805), - [anon_sym_namespace] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_COMMA] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_typeof] = ACTIONS(1805), - [anon_sym_import] = ACTIONS(1805), - [anon_sym_from] = ACTIONS(1805), - [anon_sym_with] = ACTIONS(1805), - [anon_sym_var] = ACTIONS(1805), - [anon_sym_let] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_else] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_switch] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_RPAREN] = ACTIONS(1803), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_do] = ACTIONS(1805), - [anon_sym_try] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_debugger] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_throw] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_COLON] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1805), - [anon_sym_yield] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_RBRACK] = ACTIONS(1803), - [sym_glimmer_opening_tag] = ACTIONS(1803), - [anon_sym_GT] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [anon_sym_SQUOTE] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1805), - [anon_sym_async] = ACTIONS(1805), - [anon_sym_function] = ACTIONS(1805), - [anon_sym_EQ_GT] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1805), - [anon_sym_using] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_SLASH] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_void] = ACTIONS(1805), - [anon_sym_delete] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1803), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1803), - [sym_number] = ACTIONS(1803), - [sym_private_property_identifier] = ACTIONS(1803), - [sym_this] = ACTIONS(1805), - [sym_super] = ACTIONS(1805), - [sym_true] = ACTIONS(1805), - [sym_false] = ACTIONS(1805), - [sym_null] = ACTIONS(1805), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1805), - [anon_sym_readonly] = ACTIONS(1805), - [anon_sym_get] = ACTIONS(1805), - [anon_sym_set] = ACTIONS(1805), - [anon_sym_QMARK] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1805), - [anon_sym_public] = ACTIONS(1805), - [anon_sym_private] = ACTIONS(1805), - [anon_sym_protected] = ACTIONS(1805), - [anon_sym_override] = ACTIONS(1805), - [anon_sym_module] = ACTIONS(1805), - [anon_sym_any] = ACTIONS(1805), - [anon_sym_number] = ACTIONS(1805), - [anon_sym_boolean] = ACTIONS(1805), - [anon_sym_string] = ACTIONS(1805), - [anon_sym_symbol] = ACTIONS(1805), - [anon_sym_object] = ACTIONS(1805), - [anon_sym_abstract] = ACTIONS(1805), - [anon_sym_extends] = ACTIONS(1805), - [anon_sym_interface] = ACTIONS(1805), - [anon_sym_enum] = ACTIONS(1805), - [sym_html_comment] = ACTIONS(5), - }, - [683] = { - [sym_string] = STATE(3821), - [sym__property_name] = STATE(3821), - [sym_computed_property_name] = STATE(3821), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_string] = STATE(4364), + [sym__property_name] = STATE(4364), + [sym_computed_property_name] = STATE(4364), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), [anon_sym_STAR] = ACTIONS(122), @@ -98215,13 +101386,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(2325), [anon_sym_GT] = ACTIONS(122), @@ -98230,23 +101401,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(2330), [anon_sym_async] = ACTIONS(2352), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2352), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -98261,18 +101432,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(2338), [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), @@ -98293,55 +101464,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2352), [anon_sym_object] = ACTIONS(2352), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [684] = { - [sym_string] = STATE(3821), - [sym__property_name] = STATE(3821), - [sym_computed_property_name] = STATE(3821), - [aux_sym_object_repeat1] = STATE(4937), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [682] = { + [sym_string] = STATE(4364), + [sym__property_name] = STATE(4364), + [sym_computed_property_name] = STATE(4364), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), - [anon_sym_STAR] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(2318), [anon_sym_type] = ACTIONS(2352), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(2325), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_async] = ACTIONS(2352), + [anon_sym_async] = ACTIONS(2354), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2352), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -98356,24 +101527,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(2338), [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), [anon_sym_readonly] = ACTIONS(2352), - [anon_sym_get] = ACTIONS(2352), - [anon_sym_set] = ACTIONS(2352), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_declare] = ACTIONS(2352), [anon_sym_public] = ACTIONS(2352), @@ -98388,55 +101559,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2352), [anon_sym_object] = ACTIONS(2352), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [685] = { - [sym_string] = STATE(3821), - [sym__property_name] = STATE(3821), - [sym_computed_property_name] = STATE(3821), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [683] = { + [sym_string] = STATE(4364), + [sym__property_name] = STATE(4364), + [sym_computed_property_name] = STATE(4364), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), - [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2352), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(2325), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_async] = ACTIONS(2354), + [anon_sym_async] = ACTIONS(2352), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2352), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -98451,24 +101622,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(2338), [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), [anon_sym_readonly] = ACTIONS(2352), - [anon_sym_get] = ACTIONS(2358), - [anon_sym_set] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2352), + [anon_sym_set] = ACTIONS(2352), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_declare] = ACTIONS(2352), [anon_sym_public] = ACTIONS(2352), @@ -98483,16 +101654,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2352), [anon_sym_object] = ACTIONS(2352), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [686] = { - [sym_string] = STATE(3821), - [sym__property_name] = STATE(3821), - [sym_computed_property_name] = STATE(3821), - [aux_sym_object_repeat1] = STATE(4937), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [684] = { + [ts_builtin_sym_end] = ACTIONS(1895), + [sym_identifier] = ACTIONS(1897), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_default] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(1897), + [anon_sym_namespace] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_COMMA] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_typeof] = ACTIONS(1897), + [anon_sym_import] = ACTIONS(1897), + [anon_sym_from] = ACTIONS(1897), + [anon_sym_with] = ACTIONS(1897), + [anon_sym_var] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1895), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_switch] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_debugger] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_throw] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_COLON] = ACTIONS(1895), + [anon_sym_case] = ACTIONS(1897), + [anon_sym_yield] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_RBRACK] = ACTIONS(1895), + [sym_glimmer_opening_tag] = ACTIONS(1895), + [anon_sym_GT] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_SQUOTE] = ACTIONS(1895), + [anon_sym_class] = ACTIONS(1897), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(1897), + [anon_sym_EQ_GT] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1897), + [anon_sym_using] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1895), + [anon_sym_void] = ACTIONS(1897), + [anon_sym_delete] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1895), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1895), + [sym_number] = ACTIONS(1895), + [sym_private_property_identifier] = ACTIONS(1895), + [sym_this] = ACTIONS(1897), + [sym_super] = ACTIONS(1897), + [sym_true] = ACTIONS(1897), + [sym_false] = ACTIONS(1897), + [sym_null] = ACTIONS(1897), + [sym_undefined] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1895), + [anon_sym_static] = ACTIONS(1897), + [anon_sym_readonly] = ACTIONS(1897), + [anon_sym_get] = ACTIONS(1897), + [anon_sym_set] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(1895), + [anon_sym_declare] = ACTIONS(1897), + [anon_sym_public] = ACTIONS(1897), + [anon_sym_private] = ACTIONS(1897), + [anon_sym_protected] = ACTIONS(1897), + [anon_sym_override] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_any] = ACTIONS(1897), + [anon_sym_number] = ACTIONS(1897), + [anon_sym_boolean] = ACTIONS(1897), + [anon_sym_string] = ACTIONS(1897), + [anon_sym_symbol] = ACTIONS(1897), + [anon_sym_object] = ACTIONS(1897), + [anon_sym_abstract] = ACTIONS(1897), + [anon_sym_extends] = ACTIONS(1897), + [anon_sym_interface] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1897), + [sym_html_comment] = ACTIONS(5), + }, + [685] = { + [sym_string] = STATE(4364), + [sym__property_name] = STATE(4364), + [sym_computed_property_name] = STATE(4364), + [aux_sym_object_repeat1] = STATE(5516), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), [anon_sym_STAR] = ACTIONS(2318), @@ -98500,13 +101766,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(2325), [anon_sym_GT] = ACTIONS(122), @@ -98515,23 +101781,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(2330), [anon_sym_async] = ACTIONS(2354), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2352), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -98546,18 +101812,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(2338), [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), @@ -98578,16 +101844,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2352), [anon_sym_object] = ACTIONS(2352), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [687] = { - [sym_string] = STATE(3821), - [sym__property_name] = STATE(3821), - [sym_computed_property_name] = STATE(3821), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [686] = { + [sym_string] = STATE(4364), + [sym__property_name] = STATE(4364), + [sym_computed_property_name] = STATE(4364), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), [anon_sym_STAR] = ACTIONS(2318), @@ -98595,13 +101861,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(2325), [anon_sym_GT] = ACTIONS(122), @@ -98610,23 +101876,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(2330), [anon_sym_async] = ACTIONS(2354), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2352), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -98641,18 +101907,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(2338), [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), @@ -98673,16 +101939,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2352), [anon_sym_object] = ACTIONS(2352), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [687] = { + [ts_builtin_sym_end] = ACTIONS(1819), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1821), + [anon_sym_type] = ACTIONS(1821), + [anon_sym_EQ] = ACTIONS(1821), + [anon_sym_namespace] = ACTIONS(1821), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_COMMA] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_typeof] = ACTIONS(1821), + [anon_sym_import] = ACTIONS(1821), + [anon_sym_from] = ACTIONS(1821), + [anon_sym_with] = ACTIONS(1821), + [anon_sym_var] = ACTIONS(1821), + [anon_sym_let] = ACTIONS(1821), + [anon_sym_const] = ACTIONS(1821), + [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_else] = ACTIONS(1821), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_switch] = ACTIONS(1821), + [anon_sym_for] = ACTIONS(1821), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_RPAREN] = ACTIONS(1819), + [anon_sym_await] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(1821), + [anon_sym_do] = ACTIONS(1821), + [anon_sym_try] = ACTIONS(1821), + [anon_sym_break] = ACTIONS(1821), + [anon_sym_continue] = ACTIONS(1821), + [anon_sym_debugger] = ACTIONS(1821), + [anon_sym_return] = ACTIONS(1821), + [anon_sym_throw] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_COLON] = ACTIONS(1819), + [anon_sym_case] = ACTIONS(1821), + [anon_sym_yield] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1819), + [anon_sym_RBRACK] = ACTIONS(1819), + [sym_glimmer_opening_tag] = ACTIONS(1819), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_SQUOTE] = ACTIONS(1819), + [anon_sym_class] = ACTIONS(1821), + [anon_sym_async] = ACTIONS(1821), + [anon_sym_function] = ACTIONS(1821), + [anon_sym_EQ_GT] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1821), + [anon_sym_using] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_PLUS] = ACTIONS(1821), + [anon_sym_DASH] = ACTIONS(1821), + [anon_sym_SLASH] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1819), + [anon_sym_void] = ACTIONS(1821), + [anon_sym_delete] = ACTIONS(1821), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [sym_private_property_identifier] = ACTIONS(1819), + [sym_this] = ACTIONS(1821), + [sym_super] = ACTIONS(1821), + [sym_true] = ACTIONS(1821), + [sym_false] = ACTIONS(1821), + [sym_null] = ACTIONS(1821), + [sym_undefined] = ACTIONS(1821), + [anon_sym_AT] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1821), + [anon_sym_readonly] = ACTIONS(1821), + [anon_sym_get] = ACTIONS(1821), + [anon_sym_set] = ACTIONS(1821), + [anon_sym_QMARK] = ACTIONS(1819), + [anon_sym_declare] = ACTIONS(1821), + [anon_sym_public] = ACTIONS(1821), + [anon_sym_private] = ACTIONS(1821), + [anon_sym_protected] = ACTIONS(1821), + [anon_sym_override] = ACTIONS(1821), + [anon_sym_module] = ACTIONS(1821), + [anon_sym_any] = ACTIONS(1821), + [anon_sym_number] = ACTIONS(1821), + [anon_sym_boolean] = ACTIONS(1821), + [anon_sym_string] = ACTIONS(1821), + [anon_sym_symbol] = ACTIONS(1821), + [anon_sym_object] = ACTIONS(1821), + [anon_sym_abstract] = ACTIONS(1821), + [anon_sym_extends] = ACTIONS(1821), + [anon_sym_interface] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1821), [sym_html_comment] = ACTIONS(5), }, [688] = { - [sym_string] = STATE(3821), - [sym__property_name] = STATE(3821), - [sym_computed_property_name] = STATE(3821), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [sym_string] = STATE(4364), + [sym__property_name] = STATE(4364), + [sym_computed_property_name] = STATE(4364), + [aux_sym_object_repeat1] = STATE(5516), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), [anon_sym_STAR] = ACTIONS(122), @@ -98690,13 +102051,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2352), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_let] = ACTIONS(2352), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(2325), [anon_sym_GT] = ACTIONS(122), @@ -98705,23 +102066,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(2330), [anon_sym_async] = ACTIONS(2352), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2352), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -98736,18 +102097,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(2338), [sym_private_property_identifier] = ACTIONS(2338), [anon_sym_static] = ACTIONS(2352), @@ -98768,199 +102129,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2352), [anon_sym_object] = ACTIONS(2352), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [689] = { - [sym_declaration] = STATE(868), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_class_declaration] = STATE(851), - [sym_function_declaration] = STATE(851), - [sym_generator_function_declaration] = STATE(851), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(851), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(880), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [aux_sym_export_statement_repeat1] = STATE(4053), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2299), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2344), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2346), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [690] = { - [sym_declaration] = STATE(868), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_class_declaration] = STATE(851), - [sym_function_declaration] = STATE(851), - [sym_generator_function_declaration] = STATE(851), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(851), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(880), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [aux_sym_export_statement_repeat1] = STATE(4053), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2299), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2344), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2346), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [691] = { [ts_builtin_sym_end] = ACTIONS(2362), [sym_identifier] = ACTIONS(2364), [anon_sym_export] = ACTIONS(2364), @@ -99054,7 +102227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2364), [sym_html_comment] = ACTIONS(5), }, - [692] = { + [690] = { [ts_builtin_sym_end] = ACTIONS(2366), [sym_identifier] = ACTIONS(2368), [anon_sym_export] = ACTIONS(2368), @@ -99148,6 +102321,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2368), [sym_html_comment] = ACTIONS(5), }, + [691] = { + [sym_declaration] = STATE(889), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_class_declaration] = STATE(855), + [sym_function_declaration] = STATE(855), + [sym_generator_function_declaration] = STATE(855), + [sym_decorator] = STATE(3132), + [sym_function_signature] = STATE(855), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(841), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [aux_sym_export_statement_repeat1] = STATE(5193), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2342), + [anon_sym_EQ] = ACTIONS(853), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_class] = ACTIONS(2295), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2344), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_satisfies] = ACTIONS(162), + [anon_sym_global] = ACTIONS(2346), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2312), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [692] = { + [sym_declaration] = STATE(889), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_class_declaration] = STATE(855), + [sym_function_declaration] = STATE(855), + [sym_generator_function_declaration] = STATE(855), + [sym_decorator] = STATE(3132), + [sym_function_signature] = STATE(855), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(841), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [aux_sym_export_statement_repeat1] = STATE(5193), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2342), + [anon_sym_EQ] = ACTIONS(853), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_class] = ACTIONS(2295), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2344), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_satisfies] = ACTIONS(162), + [anon_sym_global] = ACTIONS(2346), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2312), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, [693] = { [ts_builtin_sym_end] = ACTIONS(2370), [sym_identifier] = ACTIONS(2372), @@ -99431,59 +102792,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [696] = { - [sym_declaration] = STATE(4120), - [sym_variable_declaration] = STATE(4071), - [sym_lexical_declaration] = STATE(4071), - [sym_class_declaration] = STATE(4071), - [sym_function_declaration] = STATE(4071), - [sym_generator_function_declaration] = STATE(4071), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(4071), - [sym_ambient_declaration] = STATE(4071), - [sym_abstract_class_declaration] = STATE(4071), - [sym_module] = STATE(4071), - [sym_internal_module] = STATE(4082), - [sym_import_alias] = STATE(4071), - [sym_interface_declaration] = STATE(4071), - [sym_enum_declaration] = STATE(4071), - [sym_type_alias_declaration] = STATE(4071), - [aux_sym_export_statement_repeat1] = STATE(4277), + [sym_declaration] = STATE(889), + [sym_variable_declaration] = STATE(855), + [sym_lexical_declaration] = STATE(855), + [sym_class_declaration] = STATE(855), + [sym_function_declaration] = STATE(855), + [sym_generator_function_declaration] = STATE(855), + [sym_decorator] = STATE(3132), + [sym_function_signature] = STATE(855), + [sym_ambient_declaration] = STATE(855), + [sym_abstract_class_declaration] = STATE(855), + [sym_module] = STATE(855), + [sym_internal_module] = STATE(841), + [sym_import_alias] = STATE(855), + [sym_interface_declaration] = STATE(855), + [sym_enum_declaration] = STATE(855), + [sym_type_alias_declaration] = STATE(855), + [aux_sym_export_statement_repeat1] = STATE(5193), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_EQ] = ACTIONS(923), + [anon_sym_type] = ACTIONS(2342), + [anon_sym_EQ] = ACTIONS(935), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2384), - [anon_sym_import] = ACTIONS(2386), - [anon_sym_var] = ACTIONS(2388), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2392), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2290), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2396), - [anon_sym_function] = ACTIONS(2398), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_class] = ACTIONS(2295), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2299), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -99498,72 +102859,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_abstract] = ACTIONS(2404), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2406), - [anon_sym_interface] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2410), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2344), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_satisfies] = ACTIONS(162), + [anon_sym_global] = ACTIONS(2346), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2312), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [697] = { - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [sym_identifier] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_EQ] = ACTIONS(666), + [sym_declaration] = STATE(4914), + [sym_variable_declaration] = STATE(4991), + [sym_lexical_declaration] = STATE(4991), + [sym_class_declaration] = STATE(4991), + [sym_function_declaration] = STATE(4991), + [sym_generator_function_declaration] = STATE(4991), + [sym_decorator] = STATE(3132), + [sym_function_signature] = STATE(4991), + [sym_ambient_declaration] = STATE(4991), + [sym_abstract_class_declaration] = STATE(4991), + [sym_module] = STATE(4991), + [sym_internal_module] = STATE(4974), + [sym_import_alias] = STATE(4991), + [sym_interface_declaration] = STATE(4991), + [sym_enum_declaration] = STATE(4991), + [sym_type_alias_declaration] = STATE(4991), + [aux_sym_export_statement_repeat1] = STATE(5115), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(935), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1992), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(1992), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2386), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_const] = ACTIONS(2392), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1994), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1992), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_class] = ACTIONS(2394), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2398), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -99577,46 +102950,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1994), - [sym_private_property_identifier] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_get] = ACTIONS(1992), - [anon_sym_set] = ACTIONS(1992), - [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_public] = ACTIONS(1992), - [anon_sym_private] = ACTIONS(1992), - [anon_sym_protected] = ACTIONS(1992), - [anon_sym_override] = ACTIONS(1992), - [anon_sym_module] = ACTIONS(1992), - [anon_sym_any] = ACTIONS(1992), - [anon_sym_number] = ACTIONS(1992), - [anon_sym_boolean] = ACTIONS(1992), - [anon_sym_string] = ACTIONS(1992), - [anon_sym_symbol] = ACTIONS(1992), - [anon_sym_object] = ACTIONS(1992), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(162), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_satisfies] = ACTIONS(162), + [anon_sym_global] = ACTIONS(2406), + [anon_sym_interface] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [698] = { - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(1974), [anon_sym_export] = ACTIONS(1974), [anon_sym_STAR] = ACTIONS(1974), @@ -99624,13 +102985,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(1974), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(1974), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(1976), [anon_sym_GT] = ACTIONS(122), @@ -99639,23 +103000,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1976), [anon_sym_async] = ACTIONS(1974), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -99670,18 +103031,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(1976), [sym_private_property_identifier] = ACTIONS(1976), [anon_sym_static] = ACTIONS(1974), @@ -99702,105 +103063,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1974), [anon_sym_object] = ACTIONS(1974), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [699] = { - [sym_declaration] = STATE(868), - [sym_variable_declaration] = STATE(851), - [sym_lexical_declaration] = STATE(851), - [sym_class_declaration] = STATE(851), - [sym_function_declaration] = STATE(851), - [sym_generator_function_declaration] = STATE(851), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(851), - [sym_ambient_declaration] = STATE(851), - [sym_abstract_class_declaration] = STATE(851), - [sym_module] = STATE(851), - [sym_internal_module] = STATE(880), - [sym_import_alias] = STATE(851), - [sym_interface_declaration] = STATE(851), - [sym_enum_declaration] = STATE(851), - [sym_type_alias_declaration] = STATE(851), - [aux_sym_export_statement_repeat1] = STATE(4053), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(923), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2299), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2344), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2346), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [700] = { - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(1974), [anon_sym_export] = ACTIONS(1974), [anon_sym_STAR] = ACTIONS(1974), @@ -99808,13 +103077,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(1974), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(1974), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(1976), [anon_sym_GT] = ACTIONS(122), @@ -99823,23 +103092,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1976), [anon_sym_async] = ACTIONS(1974), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -99854,18 +103123,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(1976), [sym_private_property_identifier] = ACTIONS(1976), [anon_sym_static] = ACTIONS(1974), @@ -99886,13 +103155,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1974), [anon_sym_object] = ACTIONS(1974), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [700] = { + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [sym_identifier] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_type] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(1988), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_let] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_async] = ACTIONS(1988), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [sym_number] = ACTIONS(1990), + [sym_private_property_identifier] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_get] = ACTIONS(1988), + [anon_sym_set] = ACTIONS(1988), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_public] = ACTIONS(1988), + [anon_sym_private] = ACTIONS(1988), + [anon_sym_protected] = ACTIONS(1988), + [anon_sym_override] = ACTIONS(1988), + [anon_sym_module] = ACTIONS(1988), + [anon_sym_any] = ACTIONS(1988), + [anon_sym_number] = ACTIONS(1988), + [anon_sym_boolean] = ACTIONS(1988), + [anon_sym_string] = ACTIONS(1988), + [anon_sym_symbol] = ACTIONS(1988), + [anon_sym_object] = ACTIONS(1988), + [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [701] = { - [aux_sym_object_repeat1] = STATE(4937), - [aux_sym_object_pattern_repeat1] = STATE(4940), + [aux_sym_object_repeat1] = STATE(5516), + [aux_sym_object_pattern_repeat1] = STATE(5518), [sym_identifier] = ACTIONS(1974), [anon_sym_export] = ACTIONS(1974), [anon_sym_STAR] = ACTIONS(1974), @@ -99900,13 +103261,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(1974), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_let] = ACTIONS(1974), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(1976), [anon_sym_GT] = ACTIONS(122), @@ -99915,23 +103276,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1976), [anon_sym_async] = ACTIONS(1974), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(1974), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -99946,18 +103307,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [sym_number] = ACTIONS(1976), [sym_private_property_identifier] = ACTIONS(1976), [anon_sym_static] = ACTIONS(1974), @@ -99978,52 +103339,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1974), [anon_sym_object] = ACTIONS(1974), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [702] = { - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [sym_identifier] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), + [aux_sym_object_repeat1] = STATE(5516), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [sym_identifier] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_type] = ACTIONS(1988), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1992), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1992), + [anon_sym_namespace] = ACTIONS(1988), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_let] = ACTIONS(1988), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1990), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1994), - [anon_sym_async] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_async] = ACTIONS(1988), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1992), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100038,84 +103399,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1994), - [sym_private_property_identifier] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_get] = ACTIONS(1992), - [anon_sym_set] = ACTIONS(1992), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [sym_number] = ACTIONS(1990), + [sym_private_property_identifier] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_get] = ACTIONS(1988), + [anon_sym_set] = ACTIONS(1988), [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_public] = ACTIONS(1992), - [anon_sym_private] = ACTIONS(1992), - [anon_sym_protected] = ACTIONS(1992), - [anon_sym_override] = ACTIONS(1992), - [anon_sym_module] = ACTIONS(1992), - [anon_sym_any] = ACTIONS(1992), - [anon_sym_number] = ACTIONS(1992), - [anon_sym_boolean] = ACTIONS(1992), - [anon_sym_string] = ACTIONS(1992), - [anon_sym_symbol] = ACTIONS(1992), - [anon_sym_object] = ACTIONS(1992), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_public] = ACTIONS(1988), + [anon_sym_private] = ACTIONS(1988), + [anon_sym_protected] = ACTIONS(1988), + [anon_sym_override] = ACTIONS(1988), + [anon_sym_module] = ACTIONS(1988), + [anon_sym_any] = ACTIONS(1988), + [anon_sym_number] = ACTIONS(1988), + [anon_sym_boolean] = ACTIONS(1988), + [anon_sym_string] = ACTIONS(1988), + [anon_sym_symbol] = ACTIONS(1988), + [anon_sym_object] = ACTIONS(1988), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [703] = { - [aux_sym_object_repeat1] = STATE(4937), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [sym_identifier] = ACTIONS(1992), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [sym_identifier] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_type] = ACTIONS(1988), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1992), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_let] = ACTIONS(1992), + [anon_sym_namespace] = ACTIONS(1988), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(1988), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1990), [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1994), - [anon_sym_async] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_async] = ACTIONS(1988), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1992), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100130,85 +103491,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1994), - [sym_private_property_identifier] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_get] = ACTIONS(1992), - [anon_sym_set] = ACTIONS(1992), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [sym_number] = ACTIONS(1990), + [sym_private_property_identifier] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_get] = ACTIONS(1988), + [anon_sym_set] = ACTIONS(1988), [anon_sym_QMARK] = ACTIONS(693), - [anon_sym_declare] = ACTIONS(1992), - [anon_sym_public] = ACTIONS(1992), - [anon_sym_private] = ACTIONS(1992), - [anon_sym_protected] = ACTIONS(1992), - [anon_sym_override] = ACTIONS(1992), - [anon_sym_module] = ACTIONS(1992), - [anon_sym_any] = ACTIONS(1992), - [anon_sym_number] = ACTIONS(1992), - [anon_sym_boolean] = ACTIONS(1992), - [anon_sym_string] = ACTIONS(1992), - [anon_sym_symbol] = ACTIONS(1992), - [anon_sym_object] = ACTIONS(1992), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_public] = ACTIONS(1988), + [anon_sym_private] = ACTIONS(1988), + [anon_sym_protected] = ACTIONS(1988), + [anon_sym_override] = ACTIONS(1988), + [anon_sym_module] = ACTIONS(1988), + [anon_sym_any] = ACTIONS(1988), + [anon_sym_number] = ACTIONS(1988), + [anon_sym_boolean] = ACTIONS(1988), + [anon_sym_string] = ACTIONS(1988), + [anon_sym_symbol] = ACTIONS(1988), + [anon_sym_object] = ACTIONS(1988), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [704] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(225), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_RPAREN] = ACTIONS(225), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(225), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100223,23 +103584,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2414), [anon_sym_readonly] = ACTIONS(2414), [anon_sym_get] = ACTIONS(2414), [anon_sym_set] = ACTIONS(2414), - [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_QMARK] = ACTIONS(785), [anon_sym_declare] = ACTIONS(2414), [anon_sym_public] = ACTIONS(2414), [anon_sym_private] = ACTIONS(2414), @@ -100253,52 +103614,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2414), [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [705] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_RBRACE] = ACTIONS(817), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(817), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(817), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100313,23 +103674,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2414), [anon_sym_readonly] = ACTIONS(2414), [anon_sym_get] = ACTIONS(2414), [anon_sym_set] = ACTIONS(2414), - [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(833), [anon_sym_declare] = ACTIONS(2414), [anon_sym_public] = ACTIONS(2414), [anon_sym_private] = ACTIONS(2414), @@ -100343,51 +103704,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2414), [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [706] = { - [sym__call_signature] = STATE(5527), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [sym__call_signature] = STATE(7326), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2424), [anon_sym_export] = ACTIONS(2426), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_let] = ACTIONS(2426), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(2428), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2426), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100402,18 +103762,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2426), [anon_sym_readonly] = ACTIONS(2426), [anon_sym_get] = ACTIONS(2426), @@ -100431,138 +103791,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2426), [anon_sym_object] = ACTIONS(2426), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [707] = { - [sym__call_signature] = STATE(5661), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2428), - [anon_sym_export] = ACTIONS(2430), + [sym__call_signature] = STATE(7326), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(2426), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2430), - [anon_sym_EQ] = ACTIONS(221), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_let] = ACTIONS(2430), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2426), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(224), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_readonly] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_protected] = ACTIONS(2430), - [anon_sym_override] = ACTIONS(2430), - [anon_sym_module] = ACTIONS(2430), - [anon_sym_any] = ACTIONS(2430), - [anon_sym_number] = ACTIONS(2430), - [anon_sym_boolean] = ACTIONS(2430), - [anon_sym_string] = ACTIONS(2430), - [anon_sym_symbol] = ACTIONS(2430), - [anon_sym_object] = ACTIONS(2430), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [708] = { - [sym__call_signature] = STATE(5658), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(883), - [anon_sym_of] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2436), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2428), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2426), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100577,80 +103850,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_readonly] = ACTIONS(2434), - [anon_sym_get] = ACTIONS(2434), - [anon_sym_set] = ACTIONS(2434), - [anon_sym_declare] = ACTIONS(2434), - [anon_sym_public] = ACTIONS(2434), - [anon_sym_private] = ACTIONS(2434), - [anon_sym_protected] = ACTIONS(2434), - [anon_sym_override] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_any] = ACTIONS(2434), - [anon_sym_number] = ACTIONS(2434), - [anon_sym_boolean] = ACTIONS(2434), - [anon_sym_string] = ACTIONS(2434), - [anon_sym_symbol] = ACTIONS(2434), - [anon_sym_object] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2426), + [anon_sym_readonly] = ACTIONS(2426), + [anon_sym_get] = ACTIONS(2426), + [anon_sym_set] = ACTIONS(2426), + [anon_sym_declare] = ACTIONS(2426), + [anon_sym_public] = ACTIONS(2426), + [anon_sym_private] = ACTIONS(2426), + [anon_sym_protected] = ACTIONS(2426), + [anon_sym_override] = ACTIONS(2426), + [anon_sym_module] = ACTIONS(2426), + [anon_sym_any] = ACTIONS(2426), + [anon_sym_number] = ACTIONS(2426), + [anon_sym_boolean] = ACTIONS(2426), + [anon_sym_string] = ACTIONS(2426), + [anon_sym_symbol] = ACTIONS(2426), + [anon_sym_object] = ACTIONS(2426), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [709] = { - [sym__call_signature] = STATE(5741), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), + [708] = { + [sym__call_signature] = STATE(7199), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2432), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_EQ] = ACTIONS(839), + [anon_sym_type] = ACTIONS(2432), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2432), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2436), - [anon_sym_EQ_GT] = ACTIONS(845), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100665,81 +103939,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_object] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_readonly] = ACTIONS(2432), + [anon_sym_get] = ACTIONS(2432), + [anon_sym_set] = ACTIONS(2432), + [anon_sym_declare] = ACTIONS(2432), + [anon_sym_public] = ACTIONS(2432), + [anon_sym_private] = ACTIONS(2432), + [anon_sym_protected] = ACTIONS(2432), + [anon_sym_override] = ACTIONS(2432), + [anon_sym_module] = ACTIONS(2432), + [anon_sym_any] = ACTIONS(2432), + [anon_sym_number] = ACTIONS(2432), + [anon_sym_boolean] = ACTIONS(2432), + [anon_sym_string] = ACTIONS(2432), + [anon_sym_symbol] = ACTIONS(2432), + [anon_sym_object] = ACTIONS(2432), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [710] = { - [sym__call_signature] = STATE(5527), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [709] = { + [sym__call_signature] = STATE(7326), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2424), [anon_sym_export] = ACTIONS(2426), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_let] = ACTIONS(2426), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_in] = ACTIONS(857), + [anon_sym_of] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(2428), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2426), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100754,18 +104026,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2426), [anon_sym_readonly] = ACTIONS(2426), [anon_sym_get] = ACTIONS(2426), @@ -100783,50 +104055,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2426), [anon_sym_object] = ACTIONS(2426), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [711] = { - [sym__call_signature] = STATE(5658), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2434), + [710] = { + [sym__call_signature] = STATE(7386), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2436), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2436), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_of] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2436), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2436), + [anon_sym_function] = ACTIONS(2428), + [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100841,80 +104114,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_readonly] = ACTIONS(2434), - [anon_sym_get] = ACTIONS(2434), - [anon_sym_set] = ACTIONS(2434), - [anon_sym_declare] = ACTIONS(2434), - [anon_sym_public] = ACTIONS(2434), - [anon_sym_private] = ACTIONS(2434), - [anon_sym_protected] = ACTIONS(2434), - [anon_sym_override] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_any] = ACTIONS(2434), - [anon_sym_number] = ACTIONS(2434), - [anon_sym_boolean] = ACTIONS(2434), - [anon_sym_string] = ACTIONS(2434), - [anon_sym_symbol] = ACTIONS(2434), - [anon_sym_object] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_readonly] = ACTIONS(2436), + [anon_sym_get] = ACTIONS(2436), + [anon_sym_set] = ACTIONS(2436), + [anon_sym_declare] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_protected] = ACTIONS(2436), + [anon_sym_override] = ACTIONS(2436), + [anon_sym_module] = ACTIONS(2436), + [anon_sym_any] = ACTIONS(2436), + [anon_sym_number] = ACTIONS(2436), + [anon_sym_boolean] = ACTIONS(2436), + [anon_sym_string] = ACTIONS(2436), + [anon_sym_symbol] = ACTIONS(2436), + [anon_sym_object] = ACTIONS(2436), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [712] = { - [sym__call_signature] = STATE(5741), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), + [711] = { + [sym__call_signature] = STATE(7199), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2432), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(2432), + [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2432), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2436), - [anon_sym_EQ_GT] = ACTIONS(845), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100929,80 +104203,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_object] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_readonly] = ACTIONS(2432), + [anon_sym_get] = ACTIONS(2432), + [anon_sym_set] = ACTIONS(2432), + [anon_sym_declare] = ACTIONS(2432), + [anon_sym_public] = ACTIONS(2432), + [anon_sym_private] = ACTIONS(2432), + [anon_sym_protected] = ACTIONS(2432), + [anon_sym_override] = ACTIONS(2432), + [anon_sym_module] = ACTIONS(2432), + [anon_sym_any] = ACTIONS(2432), + [anon_sym_number] = ACTIONS(2432), + [anon_sym_boolean] = ACTIONS(2432), + [anon_sym_string] = ACTIONS(2432), + [anon_sym_symbol] = ACTIONS(2432), + [anon_sym_object] = ACTIONS(2432), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [713] = { - [sym__call_signature] = STATE(5658), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2434), + [712] = { + [sym__call_signature] = STATE(7386), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2436), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_EQ] = ACTIONS(878), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2436), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_of] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2436), + [anon_sym_function] = ACTIONS(2428), + [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101017,80 +104290,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_readonly] = ACTIONS(2434), - [anon_sym_get] = ACTIONS(2434), - [anon_sym_set] = ACTIONS(2434), - [anon_sym_declare] = ACTIONS(2434), - [anon_sym_public] = ACTIONS(2434), - [anon_sym_private] = ACTIONS(2434), - [anon_sym_protected] = ACTIONS(2434), - [anon_sym_override] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_any] = ACTIONS(2434), - [anon_sym_number] = ACTIONS(2434), - [anon_sym_boolean] = ACTIONS(2434), - [anon_sym_string] = ACTIONS(2434), - [anon_sym_symbol] = ACTIONS(2434), - [anon_sym_object] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_readonly] = ACTIONS(2436), + [anon_sym_get] = ACTIONS(2436), + [anon_sym_set] = ACTIONS(2436), + [anon_sym_declare] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_protected] = ACTIONS(2436), + [anon_sym_override] = ACTIONS(2436), + [anon_sym_module] = ACTIONS(2436), + [anon_sym_any] = ACTIONS(2436), + [anon_sym_number] = ACTIONS(2436), + [anon_sym_boolean] = ACTIONS(2436), + [anon_sym_string] = ACTIONS(2436), + [anon_sym_symbol] = ACTIONS(2436), + [anon_sym_object] = ACTIONS(2436), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [714] = { - [sym__call_signature] = STATE(5658), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2434), + [713] = { + [sym__call_signature] = STATE(7199), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2432), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_type] = ACTIONS(2432), + [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_COMMA] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_let] = ACTIONS(2432), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(912), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2436), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101105,80 +104379,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_readonly] = ACTIONS(2434), - [anon_sym_get] = ACTIONS(2434), - [anon_sym_set] = ACTIONS(2434), - [anon_sym_declare] = ACTIONS(2434), - [anon_sym_public] = ACTIONS(2434), - [anon_sym_private] = ACTIONS(2434), - [anon_sym_protected] = ACTIONS(2434), - [anon_sym_override] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_any] = ACTIONS(2434), - [anon_sym_number] = ACTIONS(2434), - [anon_sym_boolean] = ACTIONS(2434), - [anon_sym_string] = ACTIONS(2434), - [anon_sym_symbol] = ACTIONS(2434), - [anon_sym_object] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_readonly] = ACTIONS(2432), + [anon_sym_get] = ACTIONS(2432), + [anon_sym_set] = ACTIONS(2432), + [anon_sym_declare] = ACTIONS(2432), + [anon_sym_public] = ACTIONS(2432), + [anon_sym_private] = ACTIONS(2432), + [anon_sym_protected] = ACTIONS(2432), + [anon_sym_override] = ACTIONS(2432), + [anon_sym_module] = ACTIONS(2432), + [anon_sym_any] = ACTIONS(2432), + [anon_sym_number] = ACTIONS(2432), + [anon_sym_boolean] = ACTIONS(2432), + [anon_sym_string] = ACTIONS(2432), + [anon_sym_symbol] = ACTIONS(2432), + [anon_sym_object] = ACTIONS(2432), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [715] = { - [sym__call_signature] = STATE(5658), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2434), + [714] = { + [sym__call_signature] = STATE(7333), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2440), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2440), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(128), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101193,81 +104466,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_readonly] = ACTIONS(2434), - [anon_sym_get] = ACTIONS(2434), - [anon_sym_set] = ACTIONS(2434), - [anon_sym_declare] = ACTIONS(2434), - [anon_sym_public] = ACTIONS(2434), - [anon_sym_private] = ACTIONS(2434), - [anon_sym_protected] = ACTIONS(2434), - [anon_sym_override] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_any] = ACTIONS(2434), - [anon_sym_number] = ACTIONS(2434), - [anon_sym_boolean] = ACTIONS(2434), - [anon_sym_string] = ACTIONS(2434), - [anon_sym_symbol] = ACTIONS(2434), - [anon_sym_object] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_QMARK] = ACTIONS(785), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [716] = { - [sym__call_signature] = STATE(5527), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [715] = { + [sym__call_signature] = STATE(7326), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2424), [anon_sym_export] = ACTIONS(2426), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_let] = ACTIONS(2426), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(2442), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2426), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101282,18 +104554,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2426), [anon_sym_readonly] = ACTIONS(2426), [anon_sym_get] = ACTIONS(2426), @@ -101311,224 +104583,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2426), [anon_sym_object] = ACTIONS(2426), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [717] = { - [ts_builtin_sym_end] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1699), - [anon_sym_export] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_type] = ACTIONS(1699), - [anon_sym_namespace] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1697), - [anon_sym_RBRACE] = ACTIONS(1697), - [anon_sym_typeof] = ACTIONS(1699), - [anon_sym_import] = ACTIONS(1699), - [anon_sym_with] = ACTIONS(1699), - [anon_sym_var] = ACTIONS(1699), - [anon_sym_let] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_else] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1697), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_debugger] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_throw] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_case] = ACTIONS(1699), - [anon_sym_catch] = ACTIONS(1699), - [anon_sym_finally] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1697), - [sym_glimmer_opening_tag] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_async] = ACTIONS(1699), - [anon_sym_function] = ACTIONS(1699), - [anon_sym_new] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_SLASH] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1699), - [anon_sym_delete] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1697), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1697), - [sym_number] = ACTIONS(1697), - [sym_private_property_identifier] = ACTIONS(1697), - [sym_this] = ACTIONS(1699), - [sym_super] = ACTIONS(1699), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_null] = ACTIONS(1699), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_readonly] = ACTIONS(1699), - [anon_sym_get] = ACTIONS(1699), - [anon_sym_set] = ACTIONS(1699), - [anon_sym_declare] = ACTIONS(1699), - [anon_sym_public] = ACTIONS(1699), - [anon_sym_private] = ACTIONS(1699), - [anon_sym_protected] = ACTIONS(1699), - [anon_sym_override] = ACTIONS(1699), - [anon_sym_module] = ACTIONS(1699), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [anon_sym_object] = ACTIONS(1699), - [anon_sym_abstract] = ACTIONS(1699), - [anon_sym_interface] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [sym__automatic_semicolon] = ACTIONS(1707), - [sym_html_comment] = ACTIONS(5), - }, - [718] = { - [sym_catch_clause] = STATE(747), - [sym_finally_clause] = STATE(900), - [ts_builtin_sym_end] = ACTIONS(2444), - [sym_identifier] = ACTIONS(2446), - [anon_sym_export] = ACTIONS(2446), - [anon_sym_default] = ACTIONS(2446), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_namespace] = ACTIONS(2446), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_typeof] = ACTIONS(2446), - [anon_sym_import] = ACTIONS(2446), - [anon_sym_with] = ACTIONS(2446), - [anon_sym_var] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_const] = ACTIONS(2446), - [anon_sym_BANG] = ACTIONS(2444), - [anon_sym_else] = ACTIONS(2446), - [anon_sym_if] = ACTIONS(2446), - [anon_sym_switch] = ACTIONS(2446), - [anon_sym_for] = ACTIONS(2446), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_await] = ACTIONS(2446), - [anon_sym_while] = ACTIONS(2446), - [anon_sym_do] = ACTIONS(2446), - [anon_sym_try] = ACTIONS(2446), - [anon_sym_break] = ACTIONS(2446), - [anon_sym_continue] = ACTIONS(2446), - [anon_sym_debugger] = ACTIONS(2446), - [anon_sym_return] = ACTIONS(2446), - [anon_sym_throw] = ACTIONS(2446), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_case] = ACTIONS(2446), - [anon_sym_catch] = ACTIONS(2448), - [anon_sym_finally] = ACTIONS(2450), - [anon_sym_yield] = ACTIONS(2446), - [anon_sym_LBRACK] = ACTIONS(2444), - [sym_glimmer_opening_tag] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(2444), - [anon_sym_class] = ACTIONS(2446), - [anon_sym_async] = ACTIONS(2446), - [anon_sym_function] = ACTIONS(2446), - [anon_sym_new] = ACTIONS(2446), - [anon_sym_using] = ACTIONS(2446), - [anon_sym_PLUS] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2446), - [anon_sym_SLASH] = ACTIONS(2446), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_void] = ACTIONS(2446), - [anon_sym_delete] = ACTIONS(2446), - [anon_sym_PLUS_PLUS] = ACTIONS(2444), - [anon_sym_DASH_DASH] = ACTIONS(2444), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2444), - [sym_number] = ACTIONS(2444), - [sym_private_property_identifier] = ACTIONS(2444), - [sym_this] = ACTIONS(2446), - [sym_super] = ACTIONS(2446), - [sym_true] = ACTIONS(2446), - [sym_false] = ACTIONS(2446), - [sym_null] = ACTIONS(2446), - [sym_undefined] = ACTIONS(2446), - [anon_sym_AT] = ACTIONS(2444), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_readonly] = ACTIONS(2446), - [anon_sym_get] = ACTIONS(2446), - [anon_sym_set] = ACTIONS(2446), - [anon_sym_declare] = ACTIONS(2446), - [anon_sym_public] = ACTIONS(2446), - [anon_sym_private] = ACTIONS(2446), - [anon_sym_protected] = ACTIONS(2446), - [anon_sym_override] = ACTIONS(2446), - [anon_sym_module] = ACTIONS(2446), - [anon_sym_any] = ACTIONS(2446), - [anon_sym_number] = ACTIONS(2446), - [anon_sym_boolean] = ACTIONS(2446), - [anon_sym_string] = ACTIONS(2446), - [anon_sym_symbol] = ACTIONS(2446), - [anon_sym_object] = ACTIONS(2446), - [anon_sym_abstract] = ACTIONS(2446), - [anon_sym_interface] = ACTIONS(2446), - [anon_sym_enum] = ACTIONS(2446), - [sym_html_comment] = ACTIONS(5), - }, - [719] = { - [sym__call_signature] = STATE(5661), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2428), - [anon_sym_export] = ACTIONS(2430), + [716] = { + [sym__call_signature] = STATE(7326), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(2426), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2430), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2430), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2426), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2426), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101543,78 +104642,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_readonly] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_declare] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_protected] = ACTIONS(2430), - [anon_sym_override] = ACTIONS(2430), - [anon_sym_module] = ACTIONS(2430), - [anon_sym_any] = ACTIONS(2430), - [anon_sym_number] = ACTIONS(2430), - [anon_sym_boolean] = ACTIONS(2430), - [anon_sym_string] = ACTIONS(2430), - [anon_sym_symbol] = ACTIONS(2430), - [anon_sym_object] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2426), + [anon_sym_readonly] = ACTIONS(2426), + [anon_sym_get] = ACTIONS(2426), + [anon_sym_set] = ACTIONS(2426), + [anon_sym_declare] = ACTIONS(2426), + [anon_sym_public] = ACTIONS(2426), + [anon_sym_private] = ACTIONS(2426), + [anon_sym_protected] = ACTIONS(2426), + [anon_sym_override] = ACTIONS(2426), + [anon_sym_module] = ACTIONS(2426), + [anon_sym_any] = ACTIONS(2426), + [anon_sym_number] = ACTIONS(2426), + [anon_sym_boolean] = ACTIONS(2426), + [anon_sym_string] = ACTIONS(2426), + [anon_sym_symbol] = ACTIONS(2426), + [anon_sym_object] = ACTIONS(2426), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [720] = { - [sym__call_signature] = STATE(5537), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2452), - [anon_sym_export] = ACTIONS(2454), + [717] = { + [sym__call_signature] = STATE(7333), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2440), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_EQ] = ACTIONS(937), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2454), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2454), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2440), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_RPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2454), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2440), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(943), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2454), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101629,80 +104730,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_readonly] = ACTIONS(2454), - [anon_sym_get] = ACTIONS(2454), - [anon_sym_set] = ACTIONS(2454), - [anon_sym_declare] = ACTIONS(2454), - [anon_sym_public] = ACTIONS(2454), - [anon_sym_private] = ACTIONS(2454), - [anon_sym_protected] = ACTIONS(2454), - [anon_sym_override] = ACTIONS(2454), - [anon_sym_module] = ACTIONS(2454), - [anon_sym_any] = ACTIONS(2454), - [anon_sym_number] = ACTIONS(2454), - [anon_sym_boolean] = ACTIONS(2454), - [anon_sym_string] = ACTIONS(2454), - [anon_sym_symbol] = ACTIONS(2454), - [anon_sym_object] = ACTIONS(2454), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [721] = { - [sym__call_signature] = STATE(5661), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2428), - [anon_sym_export] = ACTIONS(2430), + [718] = { + [sym__call_signature] = STATE(7127), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2444), + [anon_sym_export] = ACTIONS(2446), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2430), - [anon_sym_EQ] = ACTIONS(893), + [anon_sym_type] = ACTIONS(2446), + [anon_sym_EQ] = ACTIONS(919), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2430), + [anon_sym_namespace] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(162), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2446), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2430), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2446), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(925), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2446), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101717,79 +104816,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_readonly] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_declare] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_protected] = ACTIONS(2430), - [anon_sym_override] = ACTIONS(2430), - [anon_sym_module] = ACTIONS(2430), - [anon_sym_any] = ACTIONS(2430), - [anon_sym_number] = ACTIONS(2430), - [anon_sym_boolean] = ACTIONS(2430), - [anon_sym_string] = ACTIONS(2430), - [anon_sym_symbol] = ACTIONS(2430), - [anon_sym_object] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_readonly] = ACTIONS(2446), + [anon_sym_get] = ACTIONS(2446), + [anon_sym_set] = ACTIONS(2446), + [anon_sym_declare] = ACTIONS(2446), + [anon_sym_public] = ACTIONS(2446), + [anon_sym_private] = ACTIONS(2446), + [anon_sym_protected] = ACTIONS(2446), + [anon_sym_override] = ACTIONS(2446), + [anon_sym_module] = ACTIONS(2446), + [anon_sym_any] = ACTIONS(2446), + [anon_sym_number] = ACTIONS(2446), + [anon_sym_boolean] = ACTIONS(2446), + [anon_sym_string] = ACTIONS(2446), + [anon_sym_symbol] = ACTIONS(2446), + [anon_sym_object] = ACTIONS(2446), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_implements] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [722] = { - [sym__call_signature] = STATE(5455), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [719] = { + [sym_catch_clause] = STATE(752), + [sym_finally_clause] = STATE(840), + [ts_builtin_sym_end] = ACTIONS(2448), + [sym_identifier] = ACTIONS(2450), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_import] = ACTIONS(2450), + [anon_sym_with] = ACTIONS(2450), + [anon_sym_var] = ACTIONS(2450), + [anon_sym_let] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_await] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_debugger] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_throw] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_catch] = ACTIONS(2452), + [anon_sym_finally] = ACTIONS(2454), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2448), + [sym_glimmer_opening_tag] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2450), + [anon_sym_async] = ACTIONS(2450), + [anon_sym_function] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_void] = ACTIONS(2450), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2448), + [sym_number] = ACTIONS(2448), + [sym_private_property_identifier] = ACTIONS(2448), + [sym_this] = ACTIONS(2450), + [sym_super] = ACTIONS(2450), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [sym_null] = ACTIONS(2450), + [sym_undefined] = ACTIONS(2450), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_readonly] = ACTIONS(2450), + [anon_sym_get] = ACTIONS(2450), + [anon_sym_set] = ACTIONS(2450), + [anon_sym_declare] = ACTIONS(2450), + [anon_sym_public] = ACTIONS(2450), + [anon_sym_private] = ACTIONS(2450), + [anon_sym_protected] = ACTIONS(2450), + [anon_sym_override] = ACTIONS(2450), + [anon_sym_module] = ACTIONS(2450), + [anon_sym_any] = ACTIONS(2450), + [anon_sym_number] = ACTIONS(2450), + [anon_sym_boolean] = ACTIONS(2450), + [anon_sym_string] = ACTIONS(2450), + [anon_sym_symbol] = ACTIONS(2450), + [anon_sym_object] = ACTIONS(2450), + [anon_sym_abstract] = ACTIONS(2450), + [anon_sym_interface] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [sym_html_comment] = ACTIONS(5), + }, + [720] = { + [sym__call_signature] = STATE(7089), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2456), [anon_sym_export] = ACTIONS(2458), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(899), + [anon_sym_EQ] = ACTIONS(896), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(225), [anon_sym_let] = ACTIONS(2458), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2458), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2458), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101804,18 +104991,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2458), [anon_sym_readonly] = ACTIONS(2458), [anon_sym_get] = ACTIONS(2458), @@ -101833,49 +105020,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2458), [anon_sym_object] = ACTIONS(2458), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [723] = { - [sym__call_signature] = STATE(5537), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2452), - [anon_sym_export] = ACTIONS(2454), + [721] = { + [sym__call_signature] = STATE(7127), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2444), + [anon_sym_export] = ACTIONS(2446), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(2446), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2454), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2454), + [anon_sym_namespace] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(162), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2446), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2454), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2446), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(943), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2454), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(925), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2446), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101890,80 +105077,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_readonly] = ACTIONS(2454), - [anon_sym_get] = ACTIONS(2454), - [anon_sym_set] = ACTIONS(2454), - [anon_sym_declare] = ACTIONS(2454), - [anon_sym_public] = ACTIONS(2454), - [anon_sym_private] = ACTIONS(2454), - [anon_sym_protected] = ACTIONS(2454), - [anon_sym_override] = ACTIONS(2454), - [anon_sym_module] = ACTIONS(2454), - [anon_sym_any] = ACTIONS(2454), - [anon_sym_number] = ACTIONS(2454), - [anon_sym_boolean] = ACTIONS(2454), - [anon_sym_string] = ACTIONS(2454), - [anon_sym_symbol] = ACTIONS(2454), - [anon_sym_object] = ACTIONS(2454), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_readonly] = ACTIONS(2446), + [anon_sym_get] = ACTIONS(2446), + [anon_sym_set] = ACTIONS(2446), + [anon_sym_declare] = ACTIONS(2446), + [anon_sym_public] = ACTIONS(2446), + [anon_sym_private] = ACTIONS(2446), + [anon_sym_protected] = ACTIONS(2446), + [anon_sym_override] = ACTIONS(2446), + [anon_sym_module] = ACTIONS(2446), + [anon_sym_any] = ACTIONS(2446), + [anon_sym_number] = ACTIONS(2446), + [anon_sym_boolean] = ACTIONS(2446), + [anon_sym_string] = ACTIONS(2446), + [anon_sym_symbol] = ACTIONS(2446), + [anon_sym_object] = ACTIONS(2446), [anon_sym_satisfies] = ACTIONS(122), [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [724] = { - [sym__call_signature] = STATE(5527), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2424), - [anon_sym_export] = ACTIONS(2426), + [722] = { + [sym__call_signature] = STATE(7333), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2440), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_let] = ACTIONS(2426), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_let] = ACTIONS(2440), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_RPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2426), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2440), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2426), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101978,250 +105165,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2426), - [anon_sym_readonly] = ACTIONS(2426), - [anon_sym_get] = ACTIONS(2426), - [anon_sym_set] = ACTIONS(2426), - [anon_sym_declare] = ACTIONS(2426), - [anon_sym_public] = ACTIONS(2426), - [anon_sym_private] = ACTIONS(2426), - [anon_sym_protected] = ACTIONS(2426), - [anon_sym_override] = ACTIONS(2426), - [anon_sym_module] = ACTIONS(2426), - [anon_sym_any] = ACTIONS(2426), - [anon_sym_number] = ACTIONS(2426), - [anon_sym_boolean] = ACTIONS(2426), - [anon_sym_string] = ACTIONS(2426), - [anon_sym_symbol] = ACTIONS(2426), - [anon_sym_object] = ACTIONS(2426), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [723] = { + [ts_builtin_sym_end] = ACTIONS(1709), + [sym_identifier] = ACTIONS(1711), + [anon_sym_export] = ACTIONS(1711), + [anon_sym_default] = ACTIONS(1711), + [anon_sym_type] = ACTIONS(1711), + [anon_sym_namespace] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_typeof] = ACTIONS(1711), + [anon_sym_import] = ACTIONS(1711), + [anon_sym_with] = ACTIONS(1711), + [anon_sym_var] = ACTIONS(1711), + [anon_sym_let] = ACTIONS(1711), + [anon_sym_const] = ACTIONS(1711), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_switch] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_await] = ACTIONS(1711), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_do] = ACTIONS(1711), + [anon_sym_try] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_debugger] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_throw] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_case] = ACTIONS(1711), + [anon_sym_catch] = ACTIONS(1711), + [anon_sym_finally] = ACTIONS(1711), + [anon_sym_yield] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1709), + [sym_glimmer_opening_tag] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(1709), + [anon_sym_class] = ACTIONS(1711), + [anon_sym_async] = ACTIONS(1711), + [anon_sym_function] = ACTIONS(1711), + [anon_sym_new] = ACTIONS(1711), + [anon_sym_using] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_void] = ACTIONS(1711), + [anon_sym_delete] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1709), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1709), + [sym_number] = ACTIONS(1709), + [sym_private_property_identifier] = ACTIONS(1709), + [sym_this] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_null] = ACTIONS(1711), + [sym_undefined] = ACTIONS(1711), + [anon_sym_AT] = ACTIONS(1709), + [anon_sym_static] = ACTIONS(1711), + [anon_sym_readonly] = ACTIONS(1711), + [anon_sym_get] = ACTIONS(1711), + [anon_sym_set] = ACTIONS(1711), + [anon_sym_declare] = ACTIONS(1711), + [anon_sym_public] = ACTIONS(1711), + [anon_sym_private] = ACTIONS(1711), + [anon_sym_protected] = ACTIONS(1711), + [anon_sym_override] = ACTIONS(1711), + [anon_sym_module] = ACTIONS(1711), + [anon_sym_any] = ACTIONS(1711), + [anon_sym_number] = ACTIONS(1711), + [anon_sym_boolean] = ACTIONS(1711), + [anon_sym_string] = ACTIONS(1711), + [anon_sym_symbol] = ACTIONS(1711), + [anon_sym_object] = ACTIONS(1711), + [anon_sym_abstract] = ACTIONS(1711), + [anon_sym_interface] = ACTIONS(1711), + [anon_sym_enum] = ACTIONS(1711), + [sym__automatic_semicolon] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [724] = { + [sym__call_signature] = STATE(7199), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2432), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2432), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_readonly] = ACTIONS(2432), + [anon_sym_get] = ACTIONS(2432), + [anon_sym_set] = ACTIONS(2432), + [anon_sym_declare] = ACTIONS(2432), + [anon_sym_public] = ACTIONS(2432), + [anon_sym_private] = ACTIONS(2432), + [anon_sym_protected] = ACTIONS(2432), + [anon_sym_override] = ACTIONS(2432), + [anon_sym_module] = ACTIONS(2432), + [anon_sym_any] = ACTIONS(2432), + [anon_sym_number] = ACTIONS(2432), + [anon_sym_boolean] = ACTIONS(2432), + [anon_sym_string] = ACTIONS(2432), + [anon_sym_symbol] = ACTIONS(2432), + [anon_sym_object] = ACTIONS(2432), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [725] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_typeof] = ACTIONS(1823), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_var] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_debugger] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_catch] = ACTIONS(1823), - [anon_sym_finally] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1821), - [sym_glimmer_opening_tag] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_function] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_void] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_number] = ACTIONS(1821), - [sym_private_property_identifier] = ACTIONS(1821), - [sym_this] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_undefined] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_readonly] = ACTIONS(1823), - [anon_sym_get] = ACTIONS(1823), - [anon_sym_set] = ACTIONS(1823), - [anon_sym_declare] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [anon_sym_override] = ACTIONS(1823), - [anon_sym_module] = ACTIONS(1823), - [anon_sym_any] = ACTIONS(1823), - [anon_sym_number] = ACTIONS(1823), - [anon_sym_boolean] = ACTIONS(1823), - [anon_sym_string] = ACTIONS(1823), - [anon_sym_symbol] = ACTIONS(1823), - [anon_sym_object] = ACTIONS(1823), - [anon_sym_abstract] = ACTIONS(1823), - [anon_sym_interface] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), + [ts_builtin_sym_end] = ACTIONS(1933), + [sym_identifier] = ACTIONS(1935), + [anon_sym_export] = ACTIONS(1935), + [anon_sym_default] = ACTIONS(1935), + [anon_sym_type] = ACTIONS(1935), + [anon_sym_namespace] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_typeof] = ACTIONS(1935), + [anon_sym_import] = ACTIONS(1935), + [anon_sym_with] = ACTIONS(1935), + [anon_sym_var] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_switch] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_debugger] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_throw] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_case] = ACTIONS(1935), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_finally] = ACTIONS(1935), + [anon_sym_yield] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1933), + [sym_glimmer_opening_tag] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_class] = ACTIONS(1935), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_function] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_using] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_SLASH] = ACTIONS(1935), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_void] = ACTIONS(1935), + [anon_sym_delete] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1933), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [sym_this] = ACTIONS(1935), + [sym_super] = ACTIONS(1935), + [sym_true] = ACTIONS(1935), + [sym_false] = ACTIONS(1935), + [sym_null] = ACTIONS(1935), + [sym_undefined] = ACTIONS(1935), + [anon_sym_AT] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1935), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_declare] = ACTIONS(1935), + [anon_sym_public] = ACTIONS(1935), + [anon_sym_private] = ACTIONS(1935), + [anon_sym_protected] = ACTIONS(1935), + [anon_sym_override] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_any] = ACTIONS(1935), + [anon_sym_number] = ACTIONS(1935), + [anon_sym_boolean] = ACTIONS(1935), + [anon_sym_string] = ACTIONS(1935), + [anon_sym_symbol] = ACTIONS(1935), + [anon_sym_object] = ACTIONS(1935), + [anon_sym_abstract] = ACTIONS(1935), + [anon_sym_interface] = ACTIONS(1935), + [anon_sym_enum] = ACTIONS(1935), [sym__automatic_semicolon] = ACTIONS(2460), [sym_html_comment] = ACTIONS(5), }, [726] = { - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_typeof] = ACTIONS(1837), - [anon_sym_import] = ACTIONS(1837), - [anon_sym_with] = ACTIONS(1837), - [anon_sym_var] = ACTIONS(1837), - [anon_sym_let] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_switch] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_do] = ACTIONS(1837), - [anon_sym_try] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_debugger] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_throw] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [sym_glimmer_opening_tag] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1837), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_function] = ACTIONS(1837), - [anon_sym_new] = ACTIONS(1837), - [anon_sym_using] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_void] = ACTIONS(1837), - [anon_sym_delete] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1835), - [sym_number] = ACTIONS(1835), - [sym_private_property_identifier] = ACTIONS(1835), - [sym_this] = ACTIONS(1837), - [sym_super] = ACTIONS(1837), - [sym_true] = ACTIONS(1837), - [sym_false] = ACTIONS(1837), - [sym_null] = ACTIONS(1837), - [sym_undefined] = ACTIONS(1837), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_readonly] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1837), - [anon_sym_set] = ACTIONS(1837), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_override] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [anon_sym_object] = ACTIONS(1837), - [anon_sym_abstract] = ACTIONS(1837), - [anon_sym_interface] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), - [anon_sym_PIPE_RBRACE] = ACTIONS(1835), - [sym__automatic_semicolon] = ACTIONS(1835), - [sym_html_comment] = ACTIONS(5), - }, - [727] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [sym__call_signature] = STATE(7166), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2462), [anon_sym_export] = ACTIONS(2464), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2464), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(935), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2464), [anon_sym_let] = ACTIONS(2464), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2436), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(2466), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2464), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -102236,18 +105511,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2464), [anon_sym_readonly] = ACTIONS(2464), [anon_sym_get] = ACTIONS(2464), @@ -102265,136 +105540,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2464), [anon_sym_object] = ACTIONS(2464), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [728] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_typeof] = ACTIONS(1823), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_var] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_debugger] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1821), - [sym_glimmer_opening_tag] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_function] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_void] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_number] = ACTIONS(1821), - [sym_private_property_identifier] = ACTIONS(1821), - [sym_this] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_undefined] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_readonly] = ACTIONS(1823), - [anon_sym_get] = ACTIONS(1823), - [anon_sym_set] = ACTIONS(1823), - [anon_sym_declare] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [anon_sym_override] = ACTIONS(1823), - [anon_sym_module] = ACTIONS(1823), - [anon_sym_any] = ACTIONS(1823), - [anon_sym_number] = ACTIONS(1823), - [anon_sym_boolean] = ACTIONS(1823), - [anon_sym_string] = ACTIONS(1823), - [anon_sym_symbol] = ACTIONS(1823), - [anon_sym_object] = ACTIONS(1823), - [anon_sym_abstract] = ACTIONS(1823), - [anon_sym_interface] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_PIPE_RBRACE] = ACTIONS(1821), - [sym__automatic_semicolon] = ACTIONS(2466), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [729] = { - [sym__call_signature] = STATE(5455), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [727] = { + [sym__call_signature] = STATE(7089), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2456), [anon_sym_export] = ACTIONS(2458), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(945), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2458), [anon_sym_let] = ACTIONS(2458), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2458), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2458), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -102409,18 +105598,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2458), [anon_sym_readonly] = ACTIONS(2458), [anon_sym_get] = ACTIONS(2458), @@ -102438,48 +105627,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2458), [anon_sym_object] = ACTIONS(2458), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [730] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [728] = { + [sym__call_signature] = STATE(7166), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2462), [anon_sym_export] = ACTIONS(2464), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2464), - [anon_sym_EQ] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(935), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2464), [anon_sym_let] = ACTIONS(2464), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2464), [anon_sym_function] = ACTIONS(2332), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2464), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -102494,18 +105683,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2464), [anon_sym_readonly] = ACTIONS(2464), [anon_sym_get] = ACTIONS(2464), @@ -102523,222 +105712,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2464), [anon_sym_object] = ACTIONS(2464), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [729] = { + [ts_builtin_sym_end] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1887), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_default] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_namespace] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_COMMA] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_typeof] = ACTIONS(1887), + [anon_sym_import] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1887), + [anon_sym_var] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1885), + [anon_sym_else] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_switch] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_await] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_debugger] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_throw] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_case] = ACTIONS(1887), + [anon_sym_yield] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1885), + [sym_glimmer_opening_tag] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [anon_sym_SQUOTE] = ACTIONS(1885), + [anon_sym_class] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_function] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1887), + [anon_sym_using] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_void] = ACTIONS(1887), + [anon_sym_delete] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1885), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1885), + [sym_number] = ACTIONS(1885), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(1887), + [sym_super] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_null] = ACTIONS(1887), + [sym_undefined] = ACTIONS(1887), + [anon_sym_AT] = ACTIONS(1885), + [anon_sym_static] = ACTIONS(1887), + [anon_sym_readonly] = ACTIONS(1887), + [anon_sym_get] = ACTIONS(1887), + [anon_sym_set] = ACTIONS(1887), + [anon_sym_declare] = ACTIONS(1887), + [anon_sym_public] = ACTIONS(1887), + [anon_sym_private] = ACTIONS(1887), + [anon_sym_protected] = ACTIONS(1887), + [anon_sym_override] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_any] = ACTIONS(1887), + [anon_sym_number] = ACTIONS(1887), + [anon_sym_boolean] = ACTIONS(1887), + [anon_sym_string] = ACTIONS(1887), + [anon_sym_symbol] = ACTIONS(1887), + [anon_sym_object] = ACTIONS(1887), + [anon_sym_abstract] = ACTIONS(1887), + [anon_sym_interface] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [anon_sym_PIPE_RBRACE] = ACTIONS(1885), + [sym__automatic_semicolon] = ACTIONS(1885), + [sym_html_comment] = ACTIONS(5), + }, + [730] = { + [ts_builtin_sym_end] = ACTIONS(1731), + [sym_identifier] = ACTIONS(1733), + [anon_sym_export] = ACTIONS(1733), + [anon_sym_default] = ACTIONS(1733), + [anon_sym_type] = ACTIONS(1733), + [anon_sym_namespace] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_typeof] = ACTIONS(1733), + [anon_sym_import] = ACTIONS(1733), + [anon_sym_with] = ACTIONS(1733), + [anon_sym_var] = ACTIONS(1733), + [anon_sym_let] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_switch] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_do] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_debugger] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_throw] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1731), + [anon_sym_case] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1731), + [sym_glimmer_opening_tag] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [anon_sym_SQUOTE] = ACTIONS(1731), + [anon_sym_class] = ACTIONS(1733), + [anon_sym_async] = ACTIONS(1733), + [anon_sym_function] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_using] = ACTIONS(1733), + [anon_sym_PLUS] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_SLASH] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1733), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1733), + [anon_sym_delete] = ACTIONS(1733), + [anon_sym_PLUS_PLUS] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1731), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1731), + [sym_number] = ACTIONS(1731), + [sym_private_property_identifier] = ACTIONS(1731), + [sym_this] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_null] = ACTIONS(1733), + [sym_undefined] = ACTIONS(1733), + [anon_sym_AT] = ACTIONS(1731), + [anon_sym_static] = ACTIONS(1733), + [anon_sym_readonly] = ACTIONS(1733), + [anon_sym_get] = ACTIONS(1733), + [anon_sym_set] = ACTIONS(1733), + [anon_sym_declare] = ACTIONS(1733), + [anon_sym_public] = ACTIONS(1733), + [anon_sym_private] = ACTIONS(1733), + [anon_sym_protected] = ACTIONS(1733), + [anon_sym_override] = ACTIONS(1733), + [anon_sym_module] = ACTIONS(1733), + [anon_sym_any] = ACTIONS(1733), + [anon_sym_number] = ACTIONS(1733), + [anon_sym_boolean] = ACTIONS(1733), + [anon_sym_string] = ACTIONS(1733), + [anon_sym_symbol] = ACTIONS(1733), + [anon_sym_object] = ACTIONS(1733), + [anon_sym_abstract] = ACTIONS(1733), + [anon_sym_interface] = ACTIONS(1733), + [anon_sym_enum] = ACTIONS(1733), + [anon_sym_PIPE_RBRACE] = ACTIONS(1731), + [sym__automatic_semicolon] = ACTIONS(1731), [sym_html_comment] = ACTIONS(5), }, [731] = { - [sym__call_signature] = STATE(5455), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2456), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(899), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_readonly] = ACTIONS(2458), - [anon_sym_get] = ACTIONS(2458), - [anon_sym_set] = ACTIONS(2458), - [anon_sym_declare] = ACTIONS(2458), - [anon_sym_public] = ACTIONS(2458), - [anon_sym_private] = ACTIONS(2458), - [anon_sym_protected] = ACTIONS(2458), - [anon_sym_override] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_any] = ACTIONS(2458), - [anon_sym_number] = ACTIONS(2458), - [anon_sym_boolean] = ACTIONS(2458), - [anon_sym_string] = ACTIONS(2458), - [anon_sym_symbol] = ACTIONS(2458), - [anon_sym_object] = ACTIONS(2458), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1933), + [sym_identifier] = ACTIONS(1935), + [anon_sym_export] = ACTIONS(1935), + [anon_sym_default] = ACTIONS(1935), + [anon_sym_type] = ACTIONS(1935), + [anon_sym_namespace] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_typeof] = ACTIONS(1935), + [anon_sym_import] = ACTIONS(1935), + [anon_sym_with] = ACTIONS(1935), + [anon_sym_var] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_switch] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_debugger] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_throw] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_case] = ACTIONS(1935), + [anon_sym_yield] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1933), + [sym_glimmer_opening_tag] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_class] = ACTIONS(1935), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_function] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_using] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_SLASH] = ACTIONS(1935), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_void] = ACTIONS(1935), + [anon_sym_delete] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1933), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [sym_this] = ACTIONS(1935), + [sym_super] = ACTIONS(1935), + [sym_true] = ACTIONS(1935), + [sym_false] = ACTIONS(1935), + [sym_null] = ACTIONS(1935), + [sym_undefined] = ACTIONS(1935), + [anon_sym_AT] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1935), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_declare] = ACTIONS(1935), + [anon_sym_public] = ACTIONS(1935), + [anon_sym_private] = ACTIONS(1935), + [anon_sym_protected] = ACTIONS(1935), + [anon_sym_override] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_any] = ACTIONS(1935), + [anon_sym_number] = ACTIONS(1935), + [anon_sym_boolean] = ACTIONS(1935), + [anon_sym_string] = ACTIONS(1935), + [anon_sym_symbol] = ACTIONS(1935), + [anon_sym_object] = ACTIONS(1935), + [anon_sym_abstract] = ACTIONS(1935), + [anon_sym_interface] = ACTIONS(1935), + [anon_sym_enum] = ACTIONS(1935), + [anon_sym_PIPE_RBRACE] = ACTIONS(1933), + [sym__automatic_semicolon] = ACTIONS(2468), [sym_html_comment] = ACTIONS(5), }, [732] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_typeof] = ACTIONS(1823), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_var] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_debugger] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1821), - [sym_glimmer_opening_tag] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_function] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_void] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_number] = ACTIONS(1821), - [sym_private_property_identifier] = ACTIONS(1821), - [sym_this] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_undefined] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_readonly] = ACTIONS(1823), - [anon_sym_get] = ACTIONS(1823), - [anon_sym_set] = ACTIONS(1823), - [anon_sym_declare] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [anon_sym_override] = ACTIONS(1823), - [anon_sym_module] = ACTIONS(1823), - [anon_sym_any] = ACTIONS(1823), - [anon_sym_number] = ACTIONS(1823), - [anon_sym_boolean] = ACTIONS(1823), - [anon_sym_string] = ACTIONS(1823), - [anon_sym_symbol] = ACTIONS(1823), - [anon_sym_object] = ACTIONS(1823), - [anon_sym_abstract] = ACTIONS(1823), - [anon_sym_interface] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_PIPE_RBRACE] = ACTIONS(1821), - [sym__automatic_semicolon] = ACTIONS(1821), + [ts_builtin_sym_end] = ACTIONS(1709), + [sym_identifier] = ACTIONS(1711), + [anon_sym_export] = ACTIONS(1711), + [anon_sym_default] = ACTIONS(1711), + [anon_sym_type] = ACTIONS(1711), + [anon_sym_namespace] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_typeof] = ACTIONS(1711), + [anon_sym_import] = ACTIONS(1711), + [anon_sym_with] = ACTIONS(1711), + [anon_sym_var] = ACTIONS(1711), + [anon_sym_let] = ACTIONS(1711), + [anon_sym_const] = ACTIONS(1711), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_switch] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_await] = ACTIONS(1711), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_do] = ACTIONS(1711), + [anon_sym_try] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_debugger] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_throw] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_case] = ACTIONS(1711), + [anon_sym_yield] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1709), + [sym_glimmer_opening_tag] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(1709), + [anon_sym_class] = ACTIONS(1711), + [anon_sym_async] = ACTIONS(1711), + [anon_sym_function] = ACTIONS(1711), + [anon_sym_new] = ACTIONS(1711), + [anon_sym_using] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_void] = ACTIONS(1711), + [anon_sym_delete] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1709), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1709), + [sym_number] = ACTIONS(1709), + [sym_private_property_identifier] = ACTIONS(1709), + [sym_this] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_null] = ACTIONS(1711), + [sym_undefined] = ACTIONS(1711), + [anon_sym_AT] = ACTIONS(1709), + [anon_sym_static] = ACTIONS(1711), + [anon_sym_readonly] = ACTIONS(1711), + [anon_sym_get] = ACTIONS(1711), + [anon_sym_set] = ACTIONS(1711), + [anon_sym_declare] = ACTIONS(1711), + [anon_sym_public] = ACTIONS(1711), + [anon_sym_private] = ACTIONS(1711), + [anon_sym_protected] = ACTIONS(1711), + [anon_sym_override] = ACTIONS(1711), + [anon_sym_module] = ACTIONS(1711), + [anon_sym_any] = ACTIONS(1711), + [anon_sym_number] = ACTIONS(1711), + [anon_sym_boolean] = ACTIONS(1711), + [anon_sym_string] = ACTIONS(1711), + [anon_sym_symbol] = ACTIONS(1711), + [anon_sym_object] = ACTIONS(1711), + [anon_sym_abstract] = ACTIONS(1711), + [anon_sym_interface] = ACTIONS(1711), + [anon_sym_enum] = ACTIONS(1711), + [anon_sym_PIPE_RBRACE] = ACTIONS(1709), + [sym__automatic_semicolon] = ACTIONS(2470), [sym_html_comment] = ACTIONS(5), }, [733] = { - [sym__call_signature] = STATE(5455), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2456), - [anon_sym_export] = ACTIONS(2458), + [ts_builtin_sym_end] = ACTIONS(1933), + [sym_identifier] = ACTIONS(1935), + [anon_sym_export] = ACTIONS(1935), + [anon_sym_default] = ACTIONS(1935), + [anon_sym_type] = ACTIONS(1935), + [anon_sym_namespace] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_typeof] = ACTIONS(1935), + [anon_sym_import] = ACTIONS(1935), + [anon_sym_with] = ACTIONS(1935), + [anon_sym_var] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_switch] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_debugger] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_throw] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_case] = ACTIONS(1935), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_finally] = ACTIONS(1935), + [anon_sym_yield] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1933), + [sym_glimmer_opening_tag] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_class] = ACTIONS(1935), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_function] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_using] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_SLASH] = ACTIONS(1935), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_void] = ACTIONS(1935), + [anon_sym_delete] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1933), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [sym_this] = ACTIONS(1935), + [sym_super] = ACTIONS(1935), + [sym_true] = ACTIONS(1935), + [sym_false] = ACTIONS(1935), + [sym_null] = ACTIONS(1935), + [sym_undefined] = ACTIONS(1935), + [anon_sym_AT] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1935), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_declare] = ACTIONS(1935), + [anon_sym_public] = ACTIONS(1935), + [anon_sym_private] = ACTIONS(1935), + [anon_sym_protected] = ACTIONS(1935), + [anon_sym_override] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_any] = ACTIONS(1935), + [anon_sym_number] = ACTIONS(1935), + [anon_sym_boolean] = ACTIONS(1935), + [anon_sym_string] = ACTIONS(1935), + [anon_sym_symbol] = ACTIONS(1935), + [anon_sym_object] = ACTIONS(1935), + [anon_sym_abstract] = ACTIONS(1935), + [anon_sym_interface] = ACTIONS(1935), + [anon_sym_enum] = ACTIONS(1935), + [sym_html_comment] = ACTIONS(5), + }, + [734] = { + [sym__call_signature] = STATE(7166), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2464), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_type] = ACTIONS(2464), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2464), + [anon_sym_function] = ACTIONS(2428), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -102753,421 +106199,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_readonly] = ACTIONS(2458), - [anon_sym_get] = ACTIONS(2458), - [anon_sym_set] = ACTIONS(2458), - [anon_sym_declare] = ACTIONS(2458), - [anon_sym_public] = ACTIONS(2458), - [anon_sym_private] = ACTIONS(2458), - [anon_sym_protected] = ACTIONS(2458), - [anon_sym_override] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_any] = ACTIONS(2458), - [anon_sym_number] = ACTIONS(2458), - [anon_sym_boolean] = ACTIONS(2458), - [anon_sym_string] = ACTIONS(2458), - [anon_sym_symbol] = ACTIONS(2458), - [anon_sym_object] = ACTIONS(2458), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_readonly] = ACTIONS(2464), + [anon_sym_get] = ACTIONS(2464), + [anon_sym_set] = ACTIONS(2464), + [anon_sym_declare] = ACTIONS(2464), + [anon_sym_public] = ACTIONS(2464), + [anon_sym_private] = ACTIONS(2464), + [anon_sym_protected] = ACTIONS(2464), + [anon_sym_override] = ACTIONS(2464), + [anon_sym_module] = ACTIONS(2464), + [anon_sym_any] = ACTIONS(2464), + [anon_sym_number] = ACTIONS(2464), + [anon_sym_boolean] = ACTIONS(2464), + [anon_sym_string] = ACTIONS(2464), + [anon_sym_symbol] = ACTIONS(2464), + [anon_sym_object] = ACTIONS(2464), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [734] = { - [ts_builtin_sym_end] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1699), - [anon_sym_export] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_type] = ACTIONS(1699), - [anon_sym_namespace] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1697), - [anon_sym_RBRACE] = ACTIONS(1697), - [anon_sym_typeof] = ACTIONS(1699), - [anon_sym_import] = ACTIONS(1699), - [anon_sym_with] = ACTIONS(1699), - [anon_sym_var] = ACTIONS(1699), - [anon_sym_let] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_else] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1697), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_debugger] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_throw] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_case] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1697), - [sym_glimmer_opening_tag] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_async] = ACTIONS(1699), - [anon_sym_function] = ACTIONS(1699), - [anon_sym_new] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_SLASH] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1699), - [anon_sym_delete] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1697), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1697), - [sym_number] = ACTIONS(1697), - [sym_private_property_identifier] = ACTIONS(1697), - [sym_this] = ACTIONS(1699), - [sym_super] = ACTIONS(1699), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_null] = ACTIONS(1699), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_readonly] = ACTIONS(1699), - [anon_sym_get] = ACTIONS(1699), - [anon_sym_set] = ACTIONS(1699), - [anon_sym_declare] = ACTIONS(1699), - [anon_sym_public] = ACTIONS(1699), - [anon_sym_private] = ACTIONS(1699), - [anon_sym_protected] = ACTIONS(1699), - [anon_sym_override] = ACTIONS(1699), - [anon_sym_module] = ACTIONS(1699), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [anon_sym_object] = ACTIONS(1699), - [anon_sym_abstract] = ACTIONS(1699), - [anon_sym_interface] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_PIPE_RBRACE] = ACTIONS(1697), - [sym__automatic_semicolon] = ACTIONS(2468), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [735] = { - [ts_builtin_sym_end] = ACTIONS(1827), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1829), - [anon_sym_default] = ACTIONS(1829), - [anon_sym_type] = ACTIONS(1829), - [anon_sym_namespace] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_COMMA] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_typeof] = ACTIONS(1829), - [anon_sym_import] = ACTIONS(1829), - [anon_sym_with] = ACTIONS(1829), - [anon_sym_var] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_else] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_switch] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_await] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_do] = ACTIONS(1829), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_debugger] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_throw] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_case] = ACTIONS(1829), - [anon_sym_yield] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1827), - [sym_glimmer_opening_tag] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1829), - [anon_sym_async] = ACTIONS(1829), - [anon_sym_function] = ACTIONS(1829), - [anon_sym_new] = ACTIONS(1829), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_SLASH] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_void] = ACTIONS(1829), - [anon_sym_delete] = ACTIONS(1829), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [sym_private_property_identifier] = ACTIONS(1827), - [sym_this] = ACTIONS(1829), - [sym_super] = ACTIONS(1829), - [sym_true] = ACTIONS(1829), - [sym_false] = ACTIONS(1829), - [sym_null] = ACTIONS(1829), - [sym_undefined] = ACTIONS(1829), - [anon_sym_AT] = ACTIONS(1827), - [anon_sym_static] = ACTIONS(1829), - [anon_sym_readonly] = ACTIONS(1829), - [anon_sym_get] = ACTIONS(1829), - [anon_sym_set] = ACTIONS(1829), - [anon_sym_declare] = ACTIONS(1829), - [anon_sym_public] = ACTIONS(1829), - [anon_sym_private] = ACTIONS(1829), - [anon_sym_protected] = ACTIONS(1829), - [anon_sym_override] = ACTIONS(1829), - [anon_sym_module] = ACTIONS(1829), - [anon_sym_any] = ACTIONS(1829), - [anon_sym_number] = ACTIONS(1829), - [anon_sym_boolean] = ACTIONS(1829), - [anon_sym_string] = ACTIONS(1829), - [anon_sym_symbol] = ACTIONS(1829), - [anon_sym_object] = ACTIONS(1829), - [anon_sym_abstract] = ACTIONS(1829), - [anon_sym_interface] = ACTIONS(1829), - [anon_sym_enum] = ACTIONS(1829), - [anon_sym_PIPE_RBRACE] = ACTIONS(1827), - [sym__automatic_semicolon] = ACTIONS(1827), + [ts_builtin_sym_end] = ACTIONS(1933), + [sym_identifier] = ACTIONS(1935), + [anon_sym_export] = ACTIONS(1935), + [anon_sym_default] = ACTIONS(1935), + [anon_sym_type] = ACTIONS(1935), + [anon_sym_namespace] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_typeof] = ACTIONS(1935), + [anon_sym_import] = ACTIONS(1935), + [anon_sym_with] = ACTIONS(1935), + [anon_sym_var] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_switch] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_debugger] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_throw] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_case] = ACTIONS(1935), + [anon_sym_yield] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1933), + [sym_glimmer_opening_tag] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_class] = ACTIONS(1935), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_function] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_using] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_SLASH] = ACTIONS(1935), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_void] = ACTIONS(1935), + [anon_sym_delete] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1933), + [sym_number] = ACTIONS(1933), + [sym_private_property_identifier] = ACTIONS(1933), + [sym_this] = ACTIONS(1935), + [sym_super] = ACTIONS(1935), + [sym_true] = ACTIONS(1935), + [sym_false] = ACTIONS(1935), + [sym_null] = ACTIONS(1935), + [sym_undefined] = ACTIONS(1935), + [anon_sym_AT] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1935), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_get] = ACTIONS(1935), + [anon_sym_set] = ACTIONS(1935), + [anon_sym_declare] = ACTIONS(1935), + [anon_sym_public] = ACTIONS(1935), + [anon_sym_private] = ACTIONS(1935), + [anon_sym_protected] = ACTIONS(1935), + [anon_sym_override] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_any] = ACTIONS(1935), + [anon_sym_number] = ACTIONS(1935), + [anon_sym_boolean] = ACTIONS(1935), + [anon_sym_string] = ACTIONS(1935), + [anon_sym_symbol] = ACTIONS(1935), + [anon_sym_object] = ACTIONS(1935), + [anon_sym_abstract] = ACTIONS(1935), + [anon_sym_interface] = ACTIONS(1935), + [anon_sym_enum] = ACTIONS(1935), + [anon_sym_PIPE_RBRACE] = ACTIONS(1933), + [sym__automatic_semicolon] = ACTIONS(1933), [sym_html_comment] = ACTIONS(5), }, [736] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_typeof] = ACTIONS(1823), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_var] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_debugger] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_catch] = ACTIONS(1823), - [anon_sym_finally] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1821), - [sym_glimmer_opening_tag] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_function] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_void] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_number] = ACTIONS(1821), - [sym_private_property_identifier] = ACTIONS(1821), - [sym_this] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_undefined] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_readonly] = ACTIONS(1823), - [anon_sym_get] = ACTIONS(1823), - [anon_sym_set] = ACTIONS(1823), - [anon_sym_declare] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [anon_sym_override] = ACTIONS(1823), - [anon_sym_module] = ACTIONS(1823), - [anon_sym_any] = ACTIONS(1823), - [anon_sym_number] = ACTIONS(1823), - [anon_sym_boolean] = ACTIONS(1823), - [anon_sym_string] = ACTIONS(1823), - [anon_sym_symbol] = ACTIONS(1823), - [anon_sym_object] = ACTIONS(1823), - [anon_sym_abstract] = ACTIONS(1823), - [anon_sym_interface] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [sym_html_comment] = ACTIONS(5), - }, - [737] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_export] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_namespace] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_typeof] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1833), - [anon_sym_with] = ACTIONS(1833), - [anon_sym_var] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_else] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_switch] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_do] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_debugger] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_case] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [sym_glimmer_opening_tag] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_function] = ACTIONS(1833), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_void] = ACTIONS(1833), - [anon_sym_delete] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1831), - [sym_number] = ACTIONS(1831), - [sym_private_property_identifier] = ACTIONS(1831), - [sym_this] = ACTIONS(1833), - [sym_super] = ACTIONS(1833), - [sym_true] = ACTIONS(1833), - [sym_false] = ACTIONS(1833), - [sym_null] = ACTIONS(1833), - [sym_undefined] = ACTIONS(1833), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_readonly] = ACTIONS(1833), - [anon_sym_get] = ACTIONS(1833), - [anon_sym_set] = ACTIONS(1833), - [anon_sym_declare] = ACTIONS(1833), - [anon_sym_public] = ACTIONS(1833), - [anon_sym_private] = ACTIONS(1833), - [anon_sym_protected] = ACTIONS(1833), - [anon_sym_override] = ACTIONS(1833), - [anon_sym_module] = ACTIONS(1833), - [anon_sym_any] = ACTIONS(1833), - [anon_sym_number] = ACTIONS(1833), - [anon_sym_boolean] = ACTIONS(1833), - [anon_sym_string] = ACTIONS(1833), - [anon_sym_symbol] = ACTIONS(1833), - [anon_sym_object] = ACTIONS(1833), - [anon_sym_abstract] = ACTIONS(1833), - [anon_sym_interface] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), - [anon_sym_PIPE_RBRACE] = ACTIONS(1831), - [sym__automatic_semicolon] = ACTIONS(1831), - [sym_html_comment] = ACTIONS(5), - }, - [738] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [sym__call_signature] = STATE(7166), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2462), [anon_sym_export] = ACTIONS(2464), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2464), - [anon_sym_EQ] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(935), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2464), [anon_sym_let] = ACTIONS(2464), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2436), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(2428), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2464), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103182,18 +106371,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2464), [anon_sym_readonly] = ACTIONS(2464), [anon_sym_get] = ACTIONS(2464), @@ -103211,49 +106400,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2464), [anon_sym_object] = ACTIONS(2464), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [739] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [737] = { + [sym__call_signature] = STATE(7166), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2462), [anon_sym_export] = ACTIONS(2464), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2464), - [anon_sym_EQ] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(935), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2464), [anon_sym_let] = ACTIONS(2464), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2464), [anon_sym_function] = ACTIONS(2442), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2464), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103268,18 +106457,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2464), [anon_sym_readonly] = ACTIONS(2464), [anon_sym_get] = ACTIONS(2464), @@ -103297,49 +106486,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2464), [anon_sym_object] = ACTIONS(2464), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [738] = { + [ts_builtin_sym_end] = ACTIONS(1731), + [sym_identifier] = ACTIONS(1733), + [anon_sym_export] = ACTIONS(1733), + [anon_sym_default] = ACTIONS(1733), + [anon_sym_type] = ACTIONS(1733), + [anon_sym_namespace] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_typeof] = ACTIONS(1733), + [anon_sym_import] = ACTIONS(1733), + [anon_sym_with] = ACTIONS(1733), + [anon_sym_var] = ACTIONS(1733), + [anon_sym_let] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_switch] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_do] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_debugger] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_throw] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1731), + [anon_sym_case] = ACTIONS(1733), + [anon_sym_catch] = ACTIONS(1733), + [anon_sym_finally] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1731), + [sym_glimmer_opening_tag] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [anon_sym_SQUOTE] = ACTIONS(1731), + [anon_sym_class] = ACTIONS(1733), + [anon_sym_async] = ACTIONS(1733), + [anon_sym_function] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_using] = ACTIONS(1733), + [anon_sym_PLUS] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_SLASH] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1733), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1733), + [anon_sym_delete] = ACTIONS(1733), + [anon_sym_PLUS_PLUS] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1731), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1731), + [sym_number] = ACTIONS(1731), + [sym_private_property_identifier] = ACTIONS(1731), + [sym_this] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_null] = ACTIONS(1733), + [sym_undefined] = ACTIONS(1733), + [anon_sym_AT] = ACTIONS(1731), + [anon_sym_static] = ACTIONS(1733), + [anon_sym_readonly] = ACTIONS(1733), + [anon_sym_get] = ACTIONS(1733), + [anon_sym_set] = ACTIONS(1733), + [anon_sym_declare] = ACTIONS(1733), + [anon_sym_public] = ACTIONS(1733), + [anon_sym_private] = ACTIONS(1733), + [anon_sym_protected] = ACTIONS(1733), + [anon_sym_override] = ACTIONS(1733), + [anon_sym_module] = ACTIONS(1733), + [anon_sym_any] = ACTIONS(1733), + [anon_sym_number] = ACTIONS(1733), + [anon_sym_boolean] = ACTIONS(1733), + [anon_sym_string] = ACTIONS(1733), + [anon_sym_symbol] = ACTIONS(1733), + [anon_sym_object] = ACTIONS(1733), + [anon_sym_abstract] = ACTIONS(1733), + [anon_sym_interface] = ACTIONS(1733), + [anon_sym_enum] = ACTIONS(1733), + [sym_html_comment] = ACTIONS(5), + }, + [739] = { + [sym__call_signature] = STATE(7089), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_override] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_any] = ACTIONS(2458), + [anon_sym_number] = ACTIONS(2458), + [anon_sym_boolean] = ACTIONS(2458), + [anon_sym_string] = ACTIONS(2458), + [anon_sym_symbol] = ACTIONS(2458), + [anon_sym_object] = ACTIONS(2458), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [740] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2462), - [anon_sym_export] = ACTIONS(2464), + [sym__call_signature] = STATE(7089), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2458), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2464), - [anon_sym_EQ] = ACTIONS(923), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_EQ] = ACTIONS(896), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_let] = ACTIONS(2458), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(128), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103354,134 +106716,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_readonly] = ACTIONS(2464), - [anon_sym_get] = ACTIONS(2464), - [anon_sym_set] = ACTIONS(2464), - [anon_sym_declare] = ACTIONS(2464), - [anon_sym_public] = ACTIONS(2464), - [anon_sym_private] = ACTIONS(2464), - [anon_sym_protected] = ACTIONS(2464), - [anon_sym_override] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_any] = ACTIONS(2464), - [anon_sym_number] = ACTIONS(2464), - [anon_sym_boolean] = ACTIONS(2464), - [anon_sym_string] = ACTIONS(2464), - [anon_sym_symbol] = ACTIONS(2464), - [anon_sym_object] = ACTIONS(2464), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_override] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_any] = ACTIONS(2458), + [anon_sym_number] = ACTIONS(2458), + [anon_sym_boolean] = ACTIONS(2458), + [anon_sym_string] = ACTIONS(2458), + [anon_sym_symbol] = ACTIONS(2458), + [anon_sym_object] = ACTIONS(2458), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [741] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_export] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_namespace] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_typeof] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1833), - [anon_sym_with] = ACTIONS(1833), - [anon_sym_var] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_else] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_switch] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_do] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_debugger] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_case] = ACTIONS(1833), - [anon_sym_catch] = ACTIONS(1833), - [anon_sym_finally] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [sym_glimmer_opening_tag] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_function] = ACTIONS(1833), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_void] = ACTIONS(1833), - [anon_sym_delete] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1831), - [sym_number] = ACTIONS(1831), - [sym_private_property_identifier] = ACTIONS(1831), - [sym_this] = ACTIONS(1833), - [sym_super] = ACTIONS(1833), - [sym_true] = ACTIONS(1833), - [sym_false] = ACTIONS(1833), - [sym_null] = ACTIONS(1833), - [sym_undefined] = ACTIONS(1833), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_readonly] = ACTIONS(1833), - [anon_sym_get] = ACTIONS(1833), - [anon_sym_set] = ACTIONS(1833), - [anon_sym_declare] = ACTIONS(1833), - [anon_sym_public] = ACTIONS(1833), - [anon_sym_private] = ACTIONS(1833), - [anon_sym_protected] = ACTIONS(1833), - [anon_sym_override] = ACTIONS(1833), - [anon_sym_module] = ACTIONS(1833), - [anon_sym_any] = ACTIONS(1833), - [anon_sym_number] = ACTIONS(1833), - [anon_sym_boolean] = ACTIONS(1833), - [anon_sym_string] = ACTIONS(1833), - [anon_sym_symbol] = ACTIONS(1833), - [anon_sym_object] = ACTIONS(1833), - [anon_sym_abstract] = ACTIONS(1833), - [anon_sym_interface] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), + [ts_builtin_sym_end] = ACTIONS(1929), + [sym_identifier] = ACTIONS(1931), + [anon_sym_export] = ACTIONS(1931), + [anon_sym_default] = ACTIONS(1931), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_namespace] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(1929), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_typeof] = ACTIONS(1931), + [anon_sym_import] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), + [anon_sym_var] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1929), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_switch] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_debugger] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_throw] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_case] = ACTIONS(1931), + [anon_sym_yield] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1929), + [sym_glimmer_opening_tag] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1929), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_async] = ACTIONS(1931), + [anon_sym_function] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_using] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_SLASH] = ACTIONS(1931), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_TILDE] = ACTIONS(1929), + [anon_sym_void] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1929), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1929), + [sym_number] = ACTIONS(1929), + [sym_private_property_identifier] = ACTIONS(1929), + [sym_this] = ACTIONS(1931), + [sym_super] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [sym_null] = ACTIONS(1931), + [sym_undefined] = ACTIONS(1931), + [anon_sym_AT] = ACTIONS(1929), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_readonly] = ACTIONS(1931), + [anon_sym_get] = ACTIONS(1931), + [anon_sym_set] = ACTIONS(1931), + [anon_sym_declare] = ACTIONS(1931), + [anon_sym_public] = ACTIONS(1931), + [anon_sym_private] = ACTIONS(1931), + [anon_sym_protected] = ACTIONS(1931), + [anon_sym_override] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_any] = ACTIONS(1931), + [anon_sym_number] = ACTIONS(1931), + [anon_sym_boolean] = ACTIONS(1931), + [anon_sym_string] = ACTIONS(1931), + [anon_sym_symbol] = ACTIONS(1931), + [anon_sym_object] = ACTIONS(1931), + [anon_sym_abstract] = ACTIONS(1931), + [anon_sym_interface] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_PIPE_RBRACE] = ACTIONS(1929), + [sym__automatic_semicolon] = ACTIONS(1929), [sym_html_comment] = ACTIONS(5), }, [742] = { - [sym__call_signature] = STATE(5507), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [sym__call_signature] = STATE(7099), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2472), [anon_sym_export] = ACTIONS(2474), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2474), [anon_sym_let] = ACTIONS(2474), @@ -103489,29 +106850,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2474), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(973), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(959), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103526,18 +106887,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2474), [anon_sym_readonly] = ACTIONS(2474), [anon_sym_get] = ACTIONS(2474), @@ -103555,48 +106916,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2474), [anon_sym_object] = ACTIONS(2474), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [743] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_in] = ACTIONS(857), + [anon_sym_of] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103611,18 +106972,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2414), [anon_sym_readonly] = ACTIONS(2414), [anon_sym_get] = ACTIONS(2414), @@ -103640,218 +107001,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2414), [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [744] = { - [sym_statement_block] = STATE(841), - [ts_builtin_sym_end] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_namespace] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_typeof] = ACTIONS(1717), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_with] = ACTIONS(1717), - [anon_sym_var] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_switch] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_await] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_debugger] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_throw] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [sym_glimmer_opening_tag] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_function] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_SLASH] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_void] = ACTIONS(1717), - [anon_sym_delete] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1715), - [sym_number] = ACTIONS(1715), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(1717), - [sym_super] = ACTIONS(1717), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_null] = ACTIONS(1717), - [sym_undefined] = ACTIONS(1717), - [anon_sym_AT] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_readonly] = ACTIONS(1717), - [anon_sym_get] = ACTIONS(1717), - [anon_sym_set] = ACTIONS(1717), - [anon_sym_declare] = ACTIONS(1717), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_override] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_any] = ACTIONS(1717), - [anon_sym_number] = ACTIONS(1717), - [anon_sym_boolean] = ACTIONS(1717), - [anon_sym_string] = ACTIONS(1717), - [anon_sym_symbol] = ACTIONS(1717), - [anon_sym_object] = ACTIONS(1717), - [anon_sym_abstract] = ACTIONS(1717), - [anon_sym_interface] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [sym_html_comment] = ACTIONS(5), - }, - [745] = { - [sym_statement_block] = STATE(841), - [ts_builtin_sym_end] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_namespace] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_typeof] = ACTIONS(1717), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_with] = ACTIONS(1717), - [anon_sym_var] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_switch] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_await] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_debugger] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_throw] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [sym_glimmer_opening_tag] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_function] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_SLASH] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_void] = ACTIONS(1717), - [anon_sym_delete] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1715), - [sym_number] = ACTIONS(1715), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(1717), - [sym_super] = ACTIONS(1717), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_null] = ACTIONS(1717), - [sym_undefined] = ACTIONS(1717), - [anon_sym_AT] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_readonly] = ACTIONS(1717), - [anon_sym_get] = ACTIONS(1717), - [anon_sym_set] = ACTIONS(1717), - [anon_sym_declare] = ACTIONS(1717), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_override] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_any] = ACTIONS(1717), - [anon_sym_number] = ACTIONS(1717), - [anon_sym_boolean] = ACTIONS(1717), - [anon_sym_string] = ACTIONS(1717), - [anon_sym_symbol] = ACTIONS(1717), - [anon_sym_object] = ACTIONS(1717), - [anon_sym_abstract] = ACTIONS(1717), - [anon_sym_interface] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [sym_html_comment] = ACTIONS(5), - }, - [746] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2412), - [anon_sym_export] = ACTIONS(2414), + [sym__call_signature] = STATE(7089), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2458), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_EQ] = ACTIONS(945), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(883), - [anon_sym_of] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2414), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2458), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103866,247 +107057,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_readonly] = ACTIONS(2414), - [anon_sym_get] = ACTIONS(2414), - [anon_sym_set] = ACTIONS(2414), - [anon_sym_declare] = ACTIONS(2414), - [anon_sym_public] = ACTIONS(2414), - [anon_sym_private] = ACTIONS(2414), - [anon_sym_protected] = ACTIONS(2414), - [anon_sym_override] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_any] = ACTIONS(2414), - [anon_sym_number] = ACTIONS(2414), - [anon_sym_boolean] = ACTIONS(2414), - [anon_sym_string] = ACTIONS(2414), - [anon_sym_symbol] = ACTIONS(2414), - [anon_sym_object] = ACTIONS(2414), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_override] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_any] = ACTIONS(2458), + [anon_sym_number] = ACTIONS(2458), + [anon_sym_boolean] = ACTIONS(2458), + [anon_sym_string] = ACTIONS(2458), + [anon_sym_symbol] = ACTIONS(2458), + [anon_sym_object] = ACTIONS(2458), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [747] = { - [sym_finally_clause] = STATE(800), - [ts_builtin_sym_end] = ACTIONS(2482), - [sym_identifier] = ACTIONS(2484), - [anon_sym_export] = ACTIONS(2484), - [anon_sym_default] = ACTIONS(2484), - [anon_sym_type] = ACTIONS(2484), - [anon_sym_namespace] = ACTIONS(2484), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_typeof] = ACTIONS(2484), - [anon_sym_import] = ACTIONS(2484), - [anon_sym_with] = ACTIONS(2484), - [anon_sym_var] = ACTIONS(2484), - [anon_sym_let] = ACTIONS(2484), - [anon_sym_const] = ACTIONS(2484), - [anon_sym_BANG] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2484), - [anon_sym_if] = ACTIONS(2484), - [anon_sym_switch] = ACTIONS(2484), - [anon_sym_for] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_await] = ACTIONS(2484), - [anon_sym_while] = ACTIONS(2484), - [anon_sym_do] = ACTIONS(2484), - [anon_sym_try] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_debugger] = ACTIONS(2484), - [anon_sym_return] = ACTIONS(2484), - [anon_sym_throw] = ACTIONS(2484), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_case] = ACTIONS(2484), - [anon_sym_finally] = ACTIONS(2450), - [anon_sym_yield] = ACTIONS(2484), - [anon_sym_LBRACK] = ACTIONS(2482), - [sym_glimmer_opening_tag] = ACTIONS(2482), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_SQUOTE] = ACTIONS(2482), - [anon_sym_class] = ACTIONS(2484), - [anon_sym_async] = ACTIONS(2484), - [anon_sym_function] = ACTIONS(2484), - [anon_sym_new] = ACTIONS(2484), - [anon_sym_using] = ACTIONS(2484), - [anon_sym_PLUS] = ACTIONS(2484), - [anon_sym_DASH] = ACTIONS(2484), - [anon_sym_SLASH] = ACTIONS(2484), - [anon_sym_LT] = ACTIONS(2484), - [anon_sym_TILDE] = ACTIONS(2482), - [anon_sym_void] = ACTIONS(2484), - [anon_sym_delete] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2482), - [anon_sym_DASH_DASH] = ACTIONS(2482), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2482), - [sym_number] = ACTIONS(2482), - [sym_private_property_identifier] = ACTIONS(2482), - [sym_this] = ACTIONS(2484), - [sym_super] = ACTIONS(2484), - [sym_true] = ACTIONS(2484), - [sym_false] = ACTIONS(2484), - [sym_null] = ACTIONS(2484), - [sym_undefined] = ACTIONS(2484), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2484), - [anon_sym_readonly] = ACTIONS(2484), - [anon_sym_get] = ACTIONS(2484), - [anon_sym_set] = ACTIONS(2484), - [anon_sym_declare] = ACTIONS(2484), - [anon_sym_public] = ACTIONS(2484), - [anon_sym_private] = ACTIONS(2484), - [anon_sym_protected] = ACTIONS(2484), - [anon_sym_override] = ACTIONS(2484), - [anon_sym_module] = ACTIONS(2484), - [anon_sym_any] = ACTIONS(2484), - [anon_sym_number] = ACTIONS(2484), - [anon_sym_boolean] = ACTIONS(2484), - [anon_sym_string] = ACTIONS(2484), - [anon_sym_symbol] = ACTIONS(2484), - [anon_sym_object] = ACTIONS(2484), - [anon_sym_abstract] = ACTIONS(2484), - [anon_sym_interface] = ACTIONS(2484), - [anon_sym_enum] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [748] = { - [sym__call_signature] = STATE(5701), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2486), - [anon_sym_export] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2488), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(2488), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(959), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2488), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_readonly] = ACTIONS(2488), - [anon_sym_get] = ACTIONS(2488), - [anon_sym_set] = ACTIONS(2488), - [anon_sym_declare] = ACTIONS(2488), - [anon_sym_public] = ACTIONS(2488), - [anon_sym_private] = ACTIONS(2488), - [anon_sym_protected] = ACTIONS(2488), - [anon_sym_override] = ACTIONS(2488), - [anon_sym_module] = ACTIONS(2488), - [anon_sym_any] = ACTIONS(2488), - [anon_sym_number] = ACTIONS(2488), - [anon_sym_boolean] = ACTIONS(2488), - [anon_sym_string] = ACTIONS(2488), - [anon_sym_symbol] = ACTIONS(2488), - [anon_sym_object] = ACTIONS(2488), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [745] = { + [sym_statement_block] = STATE(853), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym_identifier] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1689), + [anon_sym_type] = ACTIONS(1689), + [anon_sym_namespace] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_typeof] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1689), + [anon_sym_with] = ACTIONS(1689), + [anon_sym_var] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_debugger] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_case] = ACTIONS(1689), + [anon_sym_yield] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1687), + [sym_glimmer_opening_tag] = ACTIONS(1687), + [anon_sym_DOT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_class] = ACTIONS(1689), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_function] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1689), + [anon_sym_using] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1689), + [anon_sym_delete] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_number] = ACTIONS(1687), + [sym_private_property_identifier] = ACTIONS(1687), + [sym_this] = ACTIONS(1689), + [sym_super] = ACTIONS(1689), + [sym_true] = ACTIONS(1689), + [sym_false] = ACTIONS(1689), + [sym_null] = ACTIONS(1689), + [sym_undefined] = ACTIONS(1689), + [anon_sym_AT] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1689), + [anon_sym_readonly] = ACTIONS(1689), + [anon_sym_get] = ACTIONS(1689), + [anon_sym_set] = ACTIONS(1689), + [anon_sym_declare] = ACTIONS(1689), + [anon_sym_public] = ACTIONS(1689), + [anon_sym_private] = ACTIONS(1689), + [anon_sym_protected] = ACTIONS(1689), + [anon_sym_override] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_any] = ACTIONS(1689), + [anon_sym_number] = ACTIONS(1689), + [anon_sym_boolean] = ACTIONS(1689), + [anon_sym_string] = ACTIONS(1689), + [anon_sym_symbol] = ACTIONS(1689), + [anon_sym_object] = ACTIONS(1689), + [anon_sym_abstract] = ACTIONS(1689), + [anon_sym_interface] = ACTIONS(1689), + [anon_sym_enum] = ACTIONS(1689), [sym_html_comment] = ACTIONS(5), }, - [749] = { - [sym__call_signature] = STATE(5455), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [746] = { + [sym__call_signature] = STATE(7089), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2456), [anon_sym_export] = ACTIONS(2458), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2458), [anon_sym_let] = ACTIONS(2458), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2458), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2458), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104121,18 +107227,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2458), [anon_sym_readonly] = ACTIONS(2458), [anon_sym_get] = ACTIONS(2458), @@ -104150,48 +107256,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2458), [anon_sym_object] = ACTIONS(2458), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [750] = { - [sym__call_signature] = STATE(5701), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2486), - [anon_sym_export] = ACTIONS(2488), + [747] = { + [sym__call_signature] = STATE(7108), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2480), + [anon_sym_export] = ACTIONS(2482), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2488), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(2488), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2488), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2482), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(959), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2488), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(965), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104206,77 +107312,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_readonly] = ACTIONS(2488), - [anon_sym_get] = ACTIONS(2488), - [anon_sym_set] = ACTIONS(2488), - [anon_sym_declare] = ACTIONS(2488), - [anon_sym_public] = ACTIONS(2488), - [anon_sym_private] = ACTIONS(2488), - [anon_sym_protected] = ACTIONS(2488), - [anon_sym_override] = ACTIONS(2488), - [anon_sym_module] = ACTIONS(2488), - [anon_sym_any] = ACTIONS(2488), - [anon_sym_number] = ACTIONS(2488), - [anon_sym_boolean] = ACTIONS(2488), - [anon_sym_string] = ACTIONS(2488), - [anon_sym_symbol] = ACTIONS(2488), - [anon_sym_object] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [751] = { - [sym__call_signature] = STATE(5455), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2456), - [anon_sym_export] = ACTIONS(2458), + [748] = { + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104291,47 +107397,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_readonly] = ACTIONS(2458), - [anon_sym_get] = ACTIONS(2458), - [anon_sym_set] = ACTIONS(2458), - [anon_sym_declare] = ACTIONS(2458), - [anon_sym_public] = ACTIONS(2458), - [anon_sym_private] = ACTIONS(2458), - [anon_sym_protected] = ACTIONS(2458), - [anon_sym_override] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_any] = ACTIONS(2458), - [anon_sym_number] = ACTIONS(2458), - [anon_sym_boolean] = ACTIONS(2458), - [anon_sym_string] = ACTIONS(2458), - [anon_sym_symbol] = ACTIONS(2458), - [anon_sym_object] = ACTIONS(2458), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [752] = { - [sym__call_signature] = STATE(5507), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [749] = { + [sym_statement_block] = STATE(853), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym_identifier] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1689), + [anon_sym_type] = ACTIONS(1689), + [anon_sym_namespace] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_typeof] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1689), + [anon_sym_with] = ACTIONS(1689), + [anon_sym_var] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_debugger] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_case] = ACTIONS(1689), + [anon_sym_yield] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1687), + [sym_glimmer_opening_tag] = ACTIONS(1687), + [anon_sym_DOT] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_class] = ACTIONS(1689), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_function] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1689), + [anon_sym_using] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1689), + [anon_sym_delete] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_number] = ACTIONS(1687), + [sym_private_property_identifier] = ACTIONS(1687), + [sym_this] = ACTIONS(1689), + [sym_super] = ACTIONS(1689), + [sym_true] = ACTIONS(1689), + [sym_false] = ACTIONS(1689), + [sym_null] = ACTIONS(1689), + [sym_undefined] = ACTIONS(1689), + [anon_sym_AT] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1689), + [anon_sym_readonly] = ACTIONS(1689), + [anon_sym_get] = ACTIONS(1689), + [anon_sym_set] = ACTIONS(1689), + [anon_sym_declare] = ACTIONS(1689), + [anon_sym_public] = ACTIONS(1689), + [anon_sym_private] = ACTIONS(1689), + [anon_sym_protected] = ACTIONS(1689), + [anon_sym_override] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_any] = ACTIONS(1689), + [anon_sym_number] = ACTIONS(1689), + [anon_sym_boolean] = ACTIONS(1689), + [anon_sym_string] = ACTIONS(1689), + [anon_sym_symbol] = ACTIONS(1689), + [anon_sym_object] = ACTIONS(1689), + [anon_sym_abstract] = ACTIONS(1689), + [anon_sym_interface] = ACTIONS(1689), + [anon_sym_enum] = ACTIONS(1689), + [sym_html_comment] = ACTIONS(5), + }, + [750] = { + [sym__call_signature] = STATE(7099), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2472), [anon_sym_export] = ACTIONS(2474), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(953), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2474), [anon_sym_let] = ACTIONS(2474), @@ -104339,29 +107530,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2474), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(973), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(959), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104376,18 +107567,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2474), [anon_sym_readonly] = ACTIONS(2474), [anon_sym_get] = ACTIONS(2474), @@ -104405,215 +107596,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2474), [anon_sym_object] = ACTIONS(2474), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [753] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_namespace] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_typeof] = ACTIONS(1841), - [anon_sym_import] = ACTIONS(1841), - [anon_sym_with] = ACTIONS(1841), - [anon_sym_var] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_switch] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_debugger] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_throw] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_case] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [sym_glimmer_opening_tag] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_function] = ACTIONS(1841), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_void] = ACTIONS(1841), - [anon_sym_delete] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1839), - [sym_number] = ACTIONS(1839), - [sym_private_property_identifier] = ACTIONS(1839), - [sym_this] = ACTIONS(1841), - [sym_super] = ACTIONS(1841), - [sym_true] = ACTIONS(1841), - [sym_false] = ACTIONS(1841), - [sym_null] = ACTIONS(1841), - [sym_undefined] = ACTIONS(1841), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_readonly] = ACTIONS(1841), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1841), - [anon_sym_public] = ACTIONS(1841), - [anon_sym_private] = ACTIONS(1841), - [anon_sym_protected] = ACTIONS(1841), - [anon_sym_override] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_any] = ACTIONS(1841), - [anon_sym_number] = ACTIONS(1841), - [anon_sym_boolean] = ACTIONS(1841), - [anon_sym_string] = ACTIONS(1841), - [anon_sym_symbol] = ACTIONS(1841), - [anon_sym_object] = ACTIONS(1841), - [anon_sym_abstract] = ACTIONS(1841), - [anon_sym_interface] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [sym_html_comment] = ACTIONS(5), - }, - [754] = { - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_default] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_namespace] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_typeof] = ACTIONS(1765), - [anon_sym_import] = ACTIONS(1765), - [anon_sym_with] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_debugger] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_throw] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_case] = ACTIONS(1765), - [anon_sym_yield] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1763), - [sym_glimmer_opening_tag] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1765), - [anon_sym_async] = ACTIONS(1765), - [anon_sym_function] = ACTIONS(1765), - [anon_sym_new] = ACTIONS(1765), - [anon_sym_using] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_void] = ACTIONS(1765), - [anon_sym_delete] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1763), - [sym_number] = ACTIONS(1763), - [sym_private_property_identifier] = ACTIONS(1763), - [sym_this] = ACTIONS(1765), - [sym_super] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_null] = ACTIONS(1765), - [sym_undefined] = ACTIONS(1765), - [anon_sym_AT] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_readonly] = ACTIONS(1765), - [anon_sym_get] = ACTIONS(1765), - [anon_sym_set] = ACTIONS(1765), - [anon_sym_declare] = ACTIONS(1765), - [anon_sym_public] = ACTIONS(1765), - [anon_sym_private] = ACTIONS(1765), - [anon_sym_protected] = ACTIONS(1765), - [anon_sym_override] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_any] = ACTIONS(1765), - [anon_sym_number] = ACTIONS(1765), - [anon_sym_boolean] = ACTIONS(1765), - [anon_sym_string] = ACTIONS(1765), - [anon_sym_symbol] = ACTIONS(1765), - [anon_sym_object] = ACTIONS(1765), - [anon_sym_abstract] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [sym__automatic_semicolon] = ACTIONS(1771), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [755] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2412), - [anon_sym_export] = ACTIONS(2414), + [751] = { + [sym__call_signature] = STATE(7108), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2480), + [anon_sym_export] = ACTIONS(2482), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_EQ] = ACTIONS(971), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2414), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2482), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(965), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104628,124 +107652,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_readonly] = ACTIONS(2414), - [anon_sym_get] = ACTIONS(2414), - [anon_sym_set] = ACTIONS(2414), - [anon_sym_declare] = ACTIONS(2414), - [anon_sym_public] = ACTIONS(2414), - [anon_sym_private] = ACTIONS(2414), - [anon_sym_protected] = ACTIONS(2414), - [anon_sym_override] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_any] = ACTIONS(2414), - [anon_sym_number] = ACTIONS(2414), - [anon_sym_boolean] = ACTIONS(2414), - [anon_sym_string] = ACTIONS(2414), - [anon_sym_symbol] = ACTIONS(2414), - [anon_sym_object] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [756] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2412), - [anon_sym_export] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2414), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_readonly] = ACTIONS(2414), - [anon_sym_get] = ACTIONS(2414), - [anon_sym_set] = ACTIONS(2414), - [anon_sym_declare] = ACTIONS(2414), - [anon_sym_public] = ACTIONS(2414), - [anon_sym_private] = ACTIONS(2414), - [anon_sym_protected] = ACTIONS(2414), - [anon_sym_override] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_any] = ACTIONS(2414), - [anon_sym_number] = ACTIONS(2414), - [anon_sym_boolean] = ACTIONS(2414), - [anon_sym_string] = ACTIONS(2414), - [anon_sym_symbol] = ACTIONS(2414), - [anon_sym_object] = ACTIONS(2414), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [752] = { + [sym_finally_clause] = STATE(826), + [ts_builtin_sym_end] = ACTIONS(2486), + [sym_identifier] = ACTIONS(2488), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_default] = ACTIONS(2488), + [anon_sym_type] = ACTIONS(2488), + [anon_sym_namespace] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(2488), + [anon_sym_import] = ACTIONS(2488), + [anon_sym_with] = ACTIONS(2488), + [anon_sym_var] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_switch] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_await] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_debugger] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_throw] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_case] = ACTIONS(2488), + [anon_sym_finally] = ACTIONS(2454), + [anon_sym_yield] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2486), + [sym_glimmer_opening_tag] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2486), + [anon_sym_class] = ACTIONS(2488), + [anon_sym_async] = ACTIONS(2488), + [anon_sym_function] = ACTIONS(2488), + [anon_sym_new] = ACTIONS(2488), + [anon_sym_using] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2486), + [anon_sym_void] = ACTIONS(2488), + [anon_sym_delete] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2486), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2486), + [sym_number] = ACTIONS(2486), + [sym_private_property_identifier] = ACTIONS(2486), + [sym_this] = ACTIONS(2488), + [sym_super] = ACTIONS(2488), + [sym_true] = ACTIONS(2488), + [sym_false] = ACTIONS(2488), + [sym_null] = ACTIONS(2488), + [sym_undefined] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2488), + [anon_sym_readonly] = ACTIONS(2488), + [anon_sym_get] = ACTIONS(2488), + [anon_sym_set] = ACTIONS(2488), + [anon_sym_declare] = ACTIONS(2488), + [anon_sym_public] = ACTIONS(2488), + [anon_sym_private] = ACTIONS(2488), + [anon_sym_protected] = ACTIONS(2488), + [anon_sym_override] = ACTIONS(2488), + [anon_sym_module] = ACTIONS(2488), + [anon_sym_any] = ACTIONS(2488), + [anon_sym_number] = ACTIONS(2488), + [anon_sym_boolean] = ACTIONS(2488), + [anon_sym_string] = ACTIONS(2488), + [anon_sym_symbol] = ACTIONS(2488), + [anon_sym_object] = ACTIONS(2488), + [anon_sym_abstract] = ACTIONS(2488), + [anon_sym_interface] = ACTIONS(2488), + [anon_sym_enum] = ACTIONS(2488), [sym_html_comment] = ACTIONS(5), }, - [757] = { - [sym_else_clause] = STATE(829), + [753] = { + [sym_else_clause] = STATE(817), [ts_builtin_sym_end] = ACTIONS(2490), [sym_identifier] = ACTIONS(2492), [anon_sym_export] = ACTIONS(2492), @@ -104828,128 +107853,632 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2492), [sym_html_comment] = ACTIONS(5), }, - [758] = { - [ts_builtin_sym_end] = ACTIONS(1793), - [sym_identifier] = ACTIONS(1795), - [anon_sym_export] = ACTIONS(1795), - [anon_sym_default] = ACTIONS(1795), - [anon_sym_type] = ACTIONS(1795), - [anon_sym_namespace] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_typeof] = ACTIONS(1795), - [anon_sym_import] = ACTIONS(1795), - [anon_sym_with] = ACTIONS(1795), - [anon_sym_var] = ACTIONS(1795), - [anon_sym_let] = ACTIONS(1795), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1795), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_switch] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_await] = ACTIONS(1795), - [anon_sym_while] = ACTIONS(1795), - [anon_sym_do] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_debugger] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_throw] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_case] = ACTIONS(1795), - [anon_sym_yield] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1793), - [sym_glimmer_opening_tag] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [anon_sym_SQUOTE] = ACTIONS(1793), - [anon_sym_class] = ACTIONS(1795), - [anon_sym_async] = ACTIONS(1795), - [anon_sym_function] = ACTIONS(1795), - [anon_sym_new] = ACTIONS(1795), - [anon_sym_using] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_SLASH] = ACTIONS(1795), - [anon_sym_LT] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1793), - [anon_sym_void] = ACTIONS(1795), - [anon_sym_delete] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1793), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1793), - [sym_number] = ACTIONS(1793), - [sym_private_property_identifier] = ACTIONS(1793), - [sym_this] = ACTIONS(1795), - [sym_super] = ACTIONS(1795), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_null] = ACTIONS(1795), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1795), - [anon_sym_readonly] = ACTIONS(1795), - [anon_sym_get] = ACTIONS(1795), - [anon_sym_set] = ACTIONS(1795), - [anon_sym_declare] = ACTIONS(1795), - [anon_sym_public] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1795), - [anon_sym_protected] = ACTIONS(1795), - [anon_sym_override] = ACTIONS(1795), - [anon_sym_module] = ACTIONS(1795), - [anon_sym_any] = ACTIONS(1795), - [anon_sym_number] = ACTIONS(1795), - [anon_sym_boolean] = ACTIONS(1795), - [anon_sym_string] = ACTIONS(1795), - [anon_sym_symbol] = ACTIONS(1795), - [anon_sym_object] = ACTIONS(1795), - [anon_sym_abstract] = ACTIONS(1795), - [anon_sym_interface] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [sym__automatic_semicolon] = ACTIONS(1801), + [754] = { + [ts_builtin_sym_end] = ACTIONS(1865), + [sym_identifier] = ACTIONS(1867), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1867), + [anon_sym_type] = ACTIONS(1867), + [anon_sym_namespace] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(1867), + [anon_sym_with] = ACTIONS(1867), + [anon_sym_var] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_switch] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_await] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_debugger] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_throw] = ACTIONS(1867), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_case] = ACTIONS(1867), + [anon_sym_yield] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1865), + [sym_glimmer_opening_tag] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1865), + [anon_sym_SQUOTE] = ACTIONS(1865), + [anon_sym_class] = ACTIONS(1867), + [anon_sym_async] = ACTIONS(1867), + [anon_sym_function] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_using] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1865), + [sym_number] = ACTIONS(1865), + [sym_private_property_identifier] = ACTIONS(1865), + [sym_this] = ACTIONS(1867), + [sym_super] = ACTIONS(1867), + [sym_true] = ACTIONS(1867), + [sym_false] = ACTIONS(1867), + [sym_null] = ACTIONS(1867), + [sym_undefined] = ACTIONS(1867), + [anon_sym_AT] = ACTIONS(1865), + [anon_sym_static] = ACTIONS(1867), + [anon_sym_readonly] = ACTIONS(1867), + [anon_sym_get] = ACTIONS(1867), + [anon_sym_set] = ACTIONS(1867), + [anon_sym_declare] = ACTIONS(1867), + [anon_sym_public] = ACTIONS(1867), + [anon_sym_private] = ACTIONS(1867), + [anon_sym_protected] = ACTIONS(1867), + [anon_sym_override] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_any] = ACTIONS(1867), + [anon_sym_number] = ACTIONS(1867), + [anon_sym_boolean] = ACTIONS(1867), + [anon_sym_string] = ACTIONS(1867), + [anon_sym_symbol] = ACTIONS(1867), + [anon_sym_object] = ACTIONS(1867), + [anon_sym_abstract] = ACTIONS(1867), + [anon_sym_interface] = ACTIONS(1867), + [anon_sym_enum] = ACTIONS(1867), + [sym__automatic_semicolon] = ACTIONS(1873), [sym_html_comment] = ACTIONS(5), }, - [759] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2412), - [anon_sym_export] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(1039), + [755] = { + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_export] = ACTIONS(1877), + [anon_sym_default] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_namespace] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_typeof] = ACTIONS(1877), + [anon_sym_import] = ACTIONS(1877), + [anon_sym_with] = ACTIONS(1877), + [anon_sym_var] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_switch] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_do] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_debugger] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_throw] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_case] = ACTIONS(1877), + [anon_sym_yield] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1875), + [sym_glimmer_opening_tag] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1877), + [anon_sym_async] = ACTIONS(1877), + [anon_sym_function] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1877), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_void] = ACTIONS(1877), + [anon_sym_delete] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1875), + [sym_number] = ACTIONS(1875), + [sym_private_property_identifier] = ACTIONS(1875), + [sym_this] = ACTIONS(1877), + [sym_super] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_null] = ACTIONS(1877), + [sym_undefined] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1877), + [anon_sym_readonly] = ACTIONS(1877), + [anon_sym_get] = ACTIONS(1877), + [anon_sym_set] = ACTIONS(1877), + [anon_sym_declare] = ACTIONS(1877), + [anon_sym_public] = ACTIONS(1877), + [anon_sym_private] = ACTIONS(1877), + [anon_sym_protected] = ACTIONS(1877), + [anon_sym_override] = ACTIONS(1877), + [anon_sym_module] = ACTIONS(1877), + [anon_sym_any] = ACTIONS(1877), + [anon_sym_number] = ACTIONS(1877), + [anon_sym_boolean] = ACTIONS(1877), + [anon_sym_string] = ACTIONS(1877), + [anon_sym_symbol] = ACTIONS(1877), + [anon_sym_object] = ACTIONS(1877), + [anon_sym_abstract] = ACTIONS(1877), + [anon_sym_interface] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [sym__automatic_semicolon] = ACTIONS(1883), + [sym_html_comment] = ACTIONS(5), + }, + [756] = { + [ts_builtin_sym_end] = ACTIONS(1899), + [sym_identifier] = ACTIONS(1901), + [anon_sym_export] = ACTIONS(1901), + [anon_sym_default] = ACTIONS(1901), + [anon_sym_type] = ACTIONS(1901), + [anon_sym_namespace] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_typeof] = ACTIONS(1901), + [anon_sym_import] = ACTIONS(1901), + [anon_sym_with] = ACTIONS(1901), + [anon_sym_var] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_switch] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_await] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_do] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_debugger] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_throw] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_case] = ACTIONS(1901), + [anon_sym_yield] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1899), + [sym_glimmer_opening_tag] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_class] = ACTIONS(1901), + [anon_sym_async] = ACTIONS(1901), + [anon_sym_function] = ACTIONS(1901), + [anon_sym_new] = ACTIONS(1901), + [anon_sym_using] = ACTIONS(1901), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_SLASH] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1901), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_void] = ACTIONS(1901), + [anon_sym_delete] = ACTIONS(1901), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1899), + [sym_number] = ACTIONS(1899), + [sym_private_property_identifier] = ACTIONS(1899), + [sym_this] = ACTIONS(1901), + [sym_super] = ACTIONS(1901), + [sym_true] = ACTIONS(1901), + [sym_false] = ACTIONS(1901), + [sym_null] = ACTIONS(1901), + [sym_undefined] = ACTIONS(1901), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_static] = ACTIONS(1901), + [anon_sym_readonly] = ACTIONS(1901), + [anon_sym_get] = ACTIONS(1901), + [anon_sym_set] = ACTIONS(1901), + [anon_sym_declare] = ACTIONS(1901), + [anon_sym_public] = ACTIONS(1901), + [anon_sym_private] = ACTIONS(1901), + [anon_sym_protected] = ACTIONS(1901), + [anon_sym_override] = ACTIONS(1901), + [anon_sym_module] = ACTIONS(1901), + [anon_sym_any] = ACTIONS(1901), + [anon_sym_number] = ACTIONS(1901), + [anon_sym_boolean] = ACTIONS(1901), + [anon_sym_string] = ACTIONS(1901), + [anon_sym_symbol] = ACTIONS(1901), + [anon_sym_object] = ACTIONS(1901), + [anon_sym_abstract] = ACTIONS(1901), + [anon_sym_interface] = ACTIONS(1901), + [anon_sym_enum] = ACTIONS(1901), + [sym__automatic_semicolon] = ACTIONS(1907), + [sym_html_comment] = ACTIONS(5), + }, + [757] = { + [ts_builtin_sym_end] = ACTIONS(1919), + [sym_identifier] = ACTIONS(1921), + [anon_sym_export] = ACTIONS(1921), + [anon_sym_default] = ACTIONS(1921), + [anon_sym_type] = ACTIONS(1921), + [anon_sym_namespace] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_typeof] = ACTIONS(1921), + [anon_sym_import] = ACTIONS(1921), + [anon_sym_with] = ACTIONS(1921), + [anon_sym_var] = ACTIONS(1921), + [anon_sym_let] = ACTIONS(1921), + [anon_sym_const] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_switch] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_await] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_do] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_debugger] = ACTIONS(1921), + [anon_sym_return] = ACTIONS(1921), + [anon_sym_throw] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_case] = ACTIONS(1921), + [anon_sym_yield] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1919), + [sym_glimmer_opening_tag] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_SQUOTE] = ACTIONS(1919), + [anon_sym_class] = ACTIONS(1921), + [anon_sym_async] = ACTIONS(1921), + [anon_sym_function] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_SLASH] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1919), + [anon_sym_void] = ACTIONS(1921), + [anon_sym_delete] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1919), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1919), + [sym_number] = ACTIONS(1919), + [sym_private_property_identifier] = ACTIONS(1919), + [sym_this] = ACTIONS(1921), + [sym_super] = ACTIONS(1921), + [sym_true] = ACTIONS(1921), + [sym_false] = ACTIONS(1921), + [sym_null] = ACTIONS(1921), + [sym_undefined] = ACTIONS(1921), + [anon_sym_AT] = ACTIONS(1919), + [anon_sym_static] = ACTIONS(1921), + [anon_sym_readonly] = ACTIONS(1921), + [anon_sym_get] = ACTIONS(1921), + [anon_sym_set] = ACTIONS(1921), + [anon_sym_declare] = ACTIONS(1921), + [anon_sym_public] = ACTIONS(1921), + [anon_sym_private] = ACTIONS(1921), + [anon_sym_protected] = ACTIONS(1921), + [anon_sym_override] = ACTIONS(1921), + [anon_sym_module] = ACTIONS(1921), + [anon_sym_any] = ACTIONS(1921), + [anon_sym_number] = ACTIONS(1921), + [anon_sym_boolean] = ACTIONS(1921), + [anon_sym_string] = ACTIONS(1921), + [anon_sym_symbol] = ACTIONS(1921), + [anon_sym_object] = ACTIONS(1921), + [anon_sym_abstract] = ACTIONS(1921), + [anon_sym_interface] = ACTIONS(1921), + [anon_sym_enum] = ACTIONS(1921), + [sym__automatic_semicolon] = ACTIONS(1927), + [sym_html_comment] = ACTIONS(5), + }, + [758] = { + [ts_builtin_sym_end] = ACTIONS(1939), + [sym_identifier] = ACTIONS(1941), + [anon_sym_export] = ACTIONS(1941), + [anon_sym_default] = ACTIONS(1941), + [anon_sym_type] = ACTIONS(1941), + [anon_sym_namespace] = ACTIONS(1941), + [anon_sym_LBRACE] = ACTIONS(1939), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_typeof] = ACTIONS(1941), + [anon_sym_import] = ACTIONS(1941), + [anon_sym_with] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(1941), + [anon_sym_let] = ACTIONS(1941), + [anon_sym_const] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_else] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_switch] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_await] = ACTIONS(1941), + [anon_sym_while] = ACTIONS(1941), + [anon_sym_do] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1941), + [anon_sym_break] = ACTIONS(1941), + [anon_sym_continue] = ACTIONS(1941), + [anon_sym_debugger] = ACTIONS(1941), + [anon_sym_return] = ACTIONS(1941), + [anon_sym_throw] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_case] = ACTIONS(1941), + [anon_sym_yield] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(1939), + [sym_glimmer_opening_tag] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [anon_sym_SQUOTE] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1941), + [anon_sym_async] = ACTIONS(1941), + [anon_sym_function] = ACTIONS(1941), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_using] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1941), + [anon_sym_SLASH] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_void] = ACTIONS(1941), + [anon_sym_delete] = ACTIONS(1941), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1939), + [sym_number] = ACTIONS(1939), + [sym_private_property_identifier] = ACTIONS(1939), + [sym_this] = ACTIONS(1941), + [sym_super] = ACTIONS(1941), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_null] = ACTIONS(1941), + [sym_undefined] = ACTIONS(1941), + [anon_sym_AT] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1941), + [anon_sym_readonly] = ACTIONS(1941), + [anon_sym_get] = ACTIONS(1941), + [anon_sym_set] = ACTIONS(1941), + [anon_sym_declare] = ACTIONS(1941), + [anon_sym_public] = ACTIONS(1941), + [anon_sym_private] = ACTIONS(1941), + [anon_sym_protected] = ACTIONS(1941), + [anon_sym_override] = ACTIONS(1941), + [anon_sym_module] = ACTIONS(1941), + [anon_sym_any] = ACTIONS(1941), + [anon_sym_number] = ACTIONS(1941), + [anon_sym_boolean] = ACTIONS(1941), + [anon_sym_string] = ACTIONS(1941), + [anon_sym_symbol] = ACTIONS(1941), + [anon_sym_object] = ACTIONS(1941), + [anon_sym_abstract] = ACTIONS(1941), + [anon_sym_interface] = ACTIONS(1941), + [anon_sym_enum] = ACTIONS(1941), + [sym__automatic_semicolon] = ACTIONS(1947), + [sym_html_comment] = ACTIONS(5), + }, + [759] = { + [ts_builtin_sym_end] = ACTIONS(1753), + [sym_identifier] = ACTIONS(1755), + [anon_sym_export] = ACTIONS(1755), + [anon_sym_default] = ACTIONS(1755), + [anon_sym_type] = ACTIONS(1755), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_RBRACE] = ACTIONS(1753), + [anon_sym_typeof] = ACTIONS(1755), + [anon_sym_import] = ACTIONS(1755), + [anon_sym_with] = ACTIONS(1755), + [anon_sym_var] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1753), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_switch] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_await] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_debugger] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_throw] = ACTIONS(1755), + [anon_sym_SEMI] = ACTIONS(1753), + [anon_sym_case] = ACTIONS(1755), + [anon_sym_yield] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1753), + [sym_glimmer_opening_tag] = ACTIONS(1753), + [anon_sym_DQUOTE] = ACTIONS(1753), + [anon_sym_SQUOTE] = ACTIONS(1753), + [anon_sym_class] = ACTIONS(1755), + [anon_sym_async] = ACTIONS(1755), + [anon_sym_function] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_using] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_SLASH] = ACTIONS(1755), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_void] = ACTIONS(1755), + [anon_sym_delete] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1753), + [anon_sym_DASH_DASH] = ACTIONS(1753), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1753), + [sym_number] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1753), + [sym_this] = ACTIONS(1755), + [sym_super] = ACTIONS(1755), + [sym_true] = ACTIONS(1755), + [sym_false] = ACTIONS(1755), + [sym_null] = ACTIONS(1755), + [sym_undefined] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(1753), + [anon_sym_static] = ACTIONS(1755), + [anon_sym_readonly] = ACTIONS(1755), + [anon_sym_get] = ACTIONS(1755), + [anon_sym_set] = ACTIONS(1755), + [anon_sym_declare] = ACTIONS(1755), + [anon_sym_public] = ACTIONS(1755), + [anon_sym_private] = ACTIONS(1755), + [anon_sym_protected] = ACTIONS(1755), + [anon_sym_override] = ACTIONS(1755), + [anon_sym_module] = ACTIONS(1755), + [anon_sym_any] = ACTIONS(1755), + [anon_sym_number] = ACTIONS(1755), + [anon_sym_boolean] = ACTIONS(1755), + [anon_sym_string] = ACTIONS(1755), + [anon_sym_symbol] = ACTIONS(1755), + [anon_sym_object] = ACTIONS(1755), + [anon_sym_abstract] = ACTIONS(1755), + [anon_sym_interface] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [sym__automatic_semicolon] = ACTIONS(1761), + [sym_html_comment] = ACTIONS(5), + }, + [760] = { + [ts_builtin_sym_end] = ACTIONS(2496), + [sym_identifier] = ACTIONS(2498), + [anon_sym_export] = ACTIONS(2498), + [anon_sym_default] = ACTIONS(2498), + [anon_sym_type] = ACTIONS(2498), + [anon_sym_namespace] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_RBRACE] = ACTIONS(2496), + [anon_sym_typeof] = ACTIONS(2498), + [anon_sym_import] = ACTIONS(2498), + [anon_sym_with] = ACTIONS(2498), + [anon_sym_var] = ACTIONS(2498), + [anon_sym_let] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_switch] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_await] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_debugger] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_throw] = ACTIONS(2498), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym_case] = ACTIONS(2498), + [anon_sym_yield] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2496), + [sym_glimmer_opening_tag] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_class] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(2498), + [anon_sym_function] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2498), + [anon_sym_using] = ACTIONS(2498), + [anon_sym_PLUS] = ACTIONS(2498), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_SLASH] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2498), + [anon_sym_TILDE] = ACTIONS(2496), + [anon_sym_void] = ACTIONS(2498), + [anon_sym_delete] = ACTIONS(2498), + [anon_sym_PLUS_PLUS] = ACTIONS(2496), + [anon_sym_DASH_DASH] = ACTIONS(2496), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2496), + [sym_number] = ACTIONS(2496), + [sym_private_property_identifier] = ACTIONS(2496), + [sym_this] = ACTIONS(2498), + [sym_super] = ACTIONS(2498), + [sym_true] = ACTIONS(2498), + [sym_false] = ACTIONS(2498), + [sym_null] = ACTIONS(2498), + [sym_undefined] = ACTIONS(2498), + [anon_sym_AT] = ACTIONS(2496), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_readonly] = ACTIONS(2498), + [anon_sym_get] = ACTIONS(2498), + [anon_sym_set] = ACTIONS(2498), + [anon_sym_declare] = ACTIONS(2498), + [anon_sym_public] = ACTIONS(2498), + [anon_sym_private] = ACTIONS(2498), + [anon_sym_protected] = ACTIONS(2498), + [anon_sym_override] = ACTIONS(2498), + [anon_sym_module] = ACTIONS(2498), + [anon_sym_any] = ACTIONS(2498), + [anon_sym_number] = ACTIONS(2498), + [anon_sym_boolean] = ACTIONS(2498), + [anon_sym_string] = ACTIONS(2498), + [anon_sym_symbol] = ACTIONS(2498), + [anon_sym_object] = ACTIONS(2498), + [anon_sym_abstract] = ACTIONS(2498), + [anon_sym_interface] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [sym__automatic_semicolon] = ACTIONS(2496), + [sym_html_comment] = ACTIONS(5), + }, + [761] = { + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(991), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104964,18 +108493,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2414), [anon_sym_readonly] = ACTIONS(2414), [anon_sym_get] = ACTIONS(2414), @@ -104993,94 +108522,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2414), [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [760] = { - [ts_builtin_sym_end] = ACTIONS(1871), - [sym_identifier] = ACTIONS(1873), - [anon_sym_export] = ACTIONS(1873), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_type] = ACTIONS(1873), - [anon_sym_namespace] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_typeof] = ACTIONS(1873), - [anon_sym_import] = ACTIONS(1873), - [anon_sym_with] = ACTIONS(1873), - [anon_sym_var] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_switch] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_do] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_debugger] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_throw] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1873), - [anon_sym_yield] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1871), - [sym_glimmer_opening_tag] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_SQUOTE] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1873), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1873), - [anon_sym_new] = ACTIONS(1873), - [anon_sym_using] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_SLASH] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_void] = ACTIONS(1873), - [anon_sym_delete] = ACTIONS(1873), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1871), - [sym_number] = ACTIONS(1871), - [sym_private_property_identifier] = ACTIONS(1871), - [sym_this] = ACTIONS(1873), - [sym_super] = ACTIONS(1873), - [sym_true] = ACTIONS(1873), - [sym_false] = ACTIONS(1873), - [sym_null] = ACTIONS(1873), - [sym_undefined] = ACTIONS(1873), - [anon_sym_AT] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_readonly] = ACTIONS(1873), - [anon_sym_get] = ACTIONS(1873), - [anon_sym_set] = ACTIONS(1873), - [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_private] = ACTIONS(1873), - [anon_sym_protected] = ACTIONS(1873), - [anon_sym_override] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1873), - [anon_sym_any] = ACTIONS(1873), - [anon_sym_number] = ACTIONS(1873), - [anon_sym_boolean] = ACTIONS(1873), - [anon_sym_string] = ACTIONS(1873), - [anon_sym_symbol] = ACTIONS(1873), - [anon_sym_object] = ACTIONS(1873), - [anon_sym_abstract] = ACTIONS(1873), - [anon_sym_interface] = ACTIONS(1873), - [anon_sym_enum] = ACTIONS(1873), - [sym__automatic_semicolon] = ACTIONS(1879), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [761] = { + [762] = { [ts_builtin_sym_end] = ACTIONS(1909), [sym_identifier] = ACTIONS(1911), [anon_sym_export] = ACTIONS(1911), @@ -105164,44 +108609,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1917), [sym_html_comment] = ACTIONS(5), }, - [762] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [763] = { + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_EQ] = ACTIONS(983), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -105216,18 +108661,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2414), [anon_sym_readonly] = ACTIONS(2414), [anon_sym_get] = ACTIONS(2414), @@ -105245,47 +108690,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2414), [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [763] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [764] = { + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_EQ] = ACTIONS(985), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -105300,18 +108745,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2414), [anon_sym_readonly] = ACTIONS(2414), [anon_sym_get] = ACTIONS(2414), @@ -105329,94 +108774,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2414), [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [764] = { - [ts_builtin_sym_end] = ACTIONS(2496), - [sym_identifier] = ACTIONS(2498), - [anon_sym_export] = ACTIONS(2498), - [anon_sym_default] = ACTIONS(2498), - [anon_sym_type] = ACTIONS(2498), - [anon_sym_namespace] = ACTIONS(2498), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_typeof] = ACTIONS(2498), - [anon_sym_import] = ACTIONS(2498), - [anon_sym_with] = ACTIONS(2498), - [anon_sym_var] = ACTIONS(2498), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_const] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2498), - [anon_sym_if] = ACTIONS(2498), - [anon_sym_switch] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_RPAREN] = ACTIONS(2496), - [anon_sym_await] = ACTIONS(2498), - [anon_sym_while] = ACTIONS(2498), - [anon_sym_do] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2498), - [anon_sym_continue] = ACTIONS(2498), - [anon_sym_debugger] = ACTIONS(2498), - [anon_sym_return] = ACTIONS(2498), - [anon_sym_throw] = ACTIONS(2498), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_case] = ACTIONS(2498), - [anon_sym_yield] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2496), - [sym_glimmer_opening_tag] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2496), - [anon_sym_SQUOTE] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2498), - [anon_sym_async] = ACTIONS(2498), - [anon_sym_function] = ACTIONS(2498), - [anon_sym_new] = ACTIONS(2498), - [anon_sym_using] = ACTIONS(2498), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2496), - [anon_sym_void] = ACTIONS(2498), - [anon_sym_delete] = ACTIONS(2498), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), + [765] = { + [ts_builtin_sym_end] = ACTIONS(1735), + [sym_identifier] = ACTIONS(1737), + [anon_sym_export] = ACTIONS(1737), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_namespace] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_typeof] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_let] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1737), + [anon_sym_switch] = ACTIONS(1737), + [anon_sym_for] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_await] = ACTIONS(1737), + [anon_sym_while] = ACTIONS(1737), + [anon_sym_do] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1737), + [anon_sym_break] = ACTIONS(1737), + [anon_sym_continue] = ACTIONS(1737), + [anon_sym_debugger] = ACTIONS(1737), + [anon_sym_return] = ACTIONS(1737), + [anon_sym_throw] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_yield] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1735), + [sym_glimmer_opening_tag] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(1737), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_using] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1737), + [anon_sym_DASH] = ACTIONS(1737), + [anon_sym_SLASH] = ACTIONS(1737), + [anon_sym_LT] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1735), + [anon_sym_void] = ACTIONS(1737), + [anon_sym_delete] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [sym_private_property_identifier] = ACTIONS(1735), + [sym_this] = ACTIONS(1737), + [sym_super] = ACTIONS(1737), + [sym_true] = ACTIONS(1737), + [sym_false] = ACTIONS(1737), + [sym_null] = ACTIONS(1737), + [sym_undefined] = ACTIONS(1737), + [anon_sym_AT] = ACTIONS(1735), + [anon_sym_static] = ACTIONS(1737), + [anon_sym_readonly] = ACTIONS(1737), + [anon_sym_get] = ACTIONS(1737), + [anon_sym_set] = ACTIONS(1737), + [anon_sym_declare] = ACTIONS(1737), + [anon_sym_public] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_module] = ACTIONS(1737), + [anon_sym_any] = ACTIONS(1737), + [anon_sym_number] = ACTIONS(1737), + [anon_sym_boolean] = ACTIONS(1737), + [anon_sym_string] = ACTIONS(1737), + [anon_sym_symbol] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_interface] = ACTIONS(1737), + [anon_sym_enum] = ACTIONS(1737), + [sym__automatic_semicolon] = ACTIONS(1743), + [sym_html_comment] = ACTIONS(5), + }, + [766] = { + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(987), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2496), - [sym_number] = ACTIONS(2496), - [sym_private_property_identifier] = ACTIONS(2496), - [sym_this] = ACTIONS(2498), - [sym_super] = ACTIONS(2498), - [sym_true] = ACTIONS(2498), - [sym_false] = ACTIONS(2498), - [sym_null] = ACTIONS(2498), - [sym_undefined] = ACTIONS(2498), - [anon_sym_AT] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2498), - [anon_sym_readonly] = ACTIONS(2498), - [anon_sym_get] = ACTIONS(2498), - [anon_sym_set] = ACTIONS(2498), - [anon_sym_declare] = ACTIONS(2498), - [anon_sym_public] = ACTIONS(2498), - [anon_sym_private] = ACTIONS(2498), - [anon_sym_protected] = ACTIONS(2498), - [anon_sym_override] = ACTIONS(2498), - [anon_sym_module] = ACTIONS(2498), - [anon_sym_any] = ACTIONS(2498), - [anon_sym_number] = ACTIONS(2498), - [anon_sym_boolean] = ACTIONS(2498), - [anon_sym_string] = ACTIONS(2498), - [anon_sym_symbol] = ACTIONS(2498), - [anon_sym_object] = ACTIONS(2498), - [anon_sym_abstract] = ACTIONS(2498), - [anon_sym_interface] = ACTIONS(2498), - [anon_sym_enum] = ACTIONS(2498), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [765] = { + [767] = { + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(995), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), + [sym_html_comment] = ACTIONS(5), + }, + [768] = { [ts_builtin_sym_end] = ACTIONS(2500), [sym_identifier] = ACTIONS(2502), [anon_sym_export] = ACTIONS(2502), @@ -105500,91 +109113,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(2500), [sym_html_comment] = ACTIONS(5), }, - [766] = { - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1853), - [anon_sym_default] = ACTIONS(1853), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_namespace] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_typeof] = ACTIONS(1853), - [anon_sym_import] = ACTIONS(1853), - [anon_sym_with] = ACTIONS(1853), - [anon_sym_var] = ACTIONS(1853), - [anon_sym_let] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_try] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_debugger] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_throw] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1853), - [anon_sym_yield] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1851), - [sym_glimmer_opening_tag] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [anon_sym_SQUOTE] = ACTIONS(1851), - [anon_sym_class] = ACTIONS(1853), - [anon_sym_async] = ACTIONS(1853), - [anon_sym_function] = ACTIONS(1853), - [anon_sym_new] = ACTIONS(1853), - [anon_sym_using] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_SLASH] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_void] = ACTIONS(1853), - [anon_sym_delete] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1851), - [sym_number] = ACTIONS(1851), - [sym_private_property_identifier] = ACTIONS(1851), - [sym_this] = ACTIONS(1853), - [sym_super] = ACTIONS(1853), - [sym_true] = ACTIONS(1853), - [sym_false] = ACTIONS(1853), - [sym_null] = ACTIONS(1853), - [sym_undefined] = ACTIONS(1853), - [anon_sym_AT] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1853), - [anon_sym_readonly] = ACTIONS(1853), - [anon_sym_get] = ACTIONS(1853), - [anon_sym_set] = ACTIONS(1853), - [anon_sym_declare] = ACTIONS(1853), - [anon_sym_public] = ACTIONS(1853), - [anon_sym_private] = ACTIONS(1853), - [anon_sym_protected] = ACTIONS(1853), - [anon_sym_override] = ACTIONS(1853), - [anon_sym_module] = ACTIONS(1853), - [anon_sym_any] = ACTIONS(1853), - [anon_sym_number] = ACTIONS(1853), - [anon_sym_boolean] = ACTIONS(1853), - [anon_sym_string] = ACTIONS(1853), - [anon_sym_symbol] = ACTIONS(1853), - [anon_sym_object] = ACTIONS(1853), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_interface] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1853), - [sym__automatic_semicolon] = ACTIONS(1859), + [769] = { + [sym_statement_block] = STATE(853), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym_identifier] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1689), + [anon_sym_type] = ACTIONS(1689), + [anon_sym_namespace] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_typeof] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1689), + [anon_sym_with] = ACTIONS(1689), + [anon_sym_var] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_debugger] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_case] = ACTIONS(1689), + [anon_sym_yield] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1687), + [sym_glimmer_opening_tag] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_class] = ACTIONS(1689), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_function] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1689), + [anon_sym_using] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1689), + [anon_sym_delete] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_number] = ACTIONS(1687), + [sym_private_property_identifier] = ACTIONS(1687), + [sym_this] = ACTIONS(1689), + [sym_super] = ACTIONS(1689), + [sym_true] = ACTIONS(1689), + [sym_false] = ACTIONS(1689), + [sym_null] = ACTIONS(1689), + [sym_undefined] = ACTIONS(1689), + [anon_sym_AT] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1689), + [anon_sym_readonly] = ACTIONS(1689), + [anon_sym_get] = ACTIONS(1689), + [anon_sym_set] = ACTIONS(1689), + [anon_sym_declare] = ACTIONS(1689), + [anon_sym_public] = ACTIONS(1689), + [anon_sym_private] = ACTIONS(1689), + [anon_sym_protected] = ACTIONS(1689), + [anon_sym_override] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_any] = ACTIONS(1689), + [anon_sym_number] = ACTIONS(1689), + [anon_sym_boolean] = ACTIONS(1689), + [anon_sym_string] = ACTIONS(1689), + [anon_sym_symbol] = ACTIONS(1689), + [anon_sym_object] = ACTIONS(1689), + [anon_sym_abstract] = ACTIONS(1689), + [anon_sym_interface] = ACTIONS(1689), + [anon_sym_enum] = ACTIONS(1689), [sym_html_comment] = ACTIONS(5), }, - [767] = { + [770] = { [ts_builtin_sym_end] = ACTIONS(2504), [sym_identifier] = ACTIONS(2506), [anon_sym_export] = ACTIONS(2506), @@ -105605,6 +109218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2506), [anon_sym_for] = ACTIONS(2506), [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_RPAREN] = ACTIONS(2504), [anon_sym_await] = ACTIONS(2506), [anon_sym_while] = ACTIONS(2506), [anon_sym_do] = ACTIONS(2506), @@ -105616,7 +109230,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2506), [anon_sym_SEMI] = ACTIONS(2504), [anon_sym_case] = ACTIONS(2506), - [anon_sym_finally] = ACTIONS(2506), [anon_sym_yield] = ACTIONS(2506), [anon_sym_LBRACK] = ACTIONS(2504), [sym_glimmer_opening_tag] = ACTIONS(2504), @@ -105668,7 +109281,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2506), [sym_html_comment] = ACTIONS(5), }, - [768] = { + [771] = { + [ts_builtin_sym_end] = ACTIONS(1861), + [sym_identifier] = ACTIONS(1863), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_default] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_typeof] = ACTIONS(1863), + [anon_sym_import] = ACTIONS(1863), + [anon_sym_with] = ACTIONS(1863), + [anon_sym_var] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1861), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_switch] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_debugger] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_throw] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_case] = ACTIONS(1863), + [anon_sym_yield] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1861), + [sym_glimmer_opening_tag] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1861), + [anon_sym_SQUOTE] = ACTIONS(1861), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1863), + [anon_sym_function] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_using] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_void] = ACTIONS(1863), + [anon_sym_delete] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1861), + [sym_number] = ACTIONS(1861), + [sym_private_property_identifier] = ACTIONS(1861), + [sym_this] = ACTIONS(1863), + [sym_super] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [sym_false] = ACTIONS(1863), + [sym_null] = ACTIONS(1863), + [sym_undefined] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(1863), + [anon_sym_get] = ACTIONS(1863), + [anon_sym_set] = ACTIONS(1863), + [anon_sym_declare] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_private] = ACTIONS(1863), + [anon_sym_protected] = ACTIONS(1863), + [anon_sym_override] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_any] = ACTIONS(1863), + [anon_sym_number] = ACTIONS(1863), + [anon_sym_boolean] = ACTIONS(1863), + [anon_sym_string] = ACTIONS(1863), + [anon_sym_symbol] = ACTIONS(1863), + [anon_sym_object] = ACTIONS(1863), + [anon_sym_abstract] = ACTIONS(1863), + [anon_sym_interface] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [sym_html_comment] = ACTIONS(5), + }, + [772] = { [ts_builtin_sym_end] = ACTIONS(2508), [sym_identifier] = ACTIONS(2510), [anon_sym_export] = ACTIONS(2510), @@ -105689,6 +109386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2510), [anon_sym_for] = ACTIONS(2510), [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_RPAREN] = ACTIONS(2508), [anon_sym_await] = ACTIONS(2510), [anon_sym_while] = ACTIONS(2510), [anon_sym_do] = ACTIONS(2510), @@ -105749,10 +109447,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2510), [anon_sym_interface] = ACTIONS(2510), [anon_sym_enum] = ACTIONS(2510), - [sym__automatic_semicolon] = ACTIONS(2508), [sym_html_comment] = ACTIONS(5), }, - [769] = { + [773] = { + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1859), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_default] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_typeof] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_with] = ACTIONS(1859), + [anon_sym_var] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1857), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_debugger] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1857), + [sym_glimmer_opening_tag] = ACTIONS(1857), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1857), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_delete] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1857), + [sym_number] = ACTIONS(1857), + [sym_private_property_identifier] = ACTIONS(1857), + [sym_this] = ACTIONS(1859), + [sym_super] = ACTIONS(1859), + [sym_true] = ACTIONS(1859), + [sym_false] = ACTIONS(1859), + [sym_null] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_abstract] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), + }, + [774] = { [ts_builtin_sym_end] = ACTIONS(2512), [sym_identifier] = ACTIONS(2514), [anon_sym_export] = ACTIONS(2514), @@ -105836,44 +109617,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2514), [sym_html_comment] = ACTIONS(5), }, - [770] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [775] = { + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -105888,18 +109669,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2414), [anon_sym_readonly] = ACTIONS(2414), [anon_sym_get] = ACTIONS(2414), @@ -105917,47 +109698,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2414), [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [771] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [776] = { + [ts_builtin_sym_end] = ACTIONS(1837), + [sym_identifier] = ACTIONS(1839), + [anon_sym_export] = ACTIONS(1839), + [anon_sym_default] = ACTIONS(1839), + [anon_sym_type] = ACTIONS(1839), + [anon_sym_namespace] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_typeof] = ACTIONS(1839), + [anon_sym_import] = ACTIONS(1839), + [anon_sym_with] = ACTIONS(1839), + [anon_sym_var] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_switch] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_await] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_do] = ACTIONS(1839), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_debugger] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_case] = ACTIONS(1839), + [anon_sym_yield] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1837), + [sym_glimmer_opening_tag] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_class] = ACTIONS(1839), + [anon_sym_async] = ACTIONS(1839), + [anon_sym_function] = ACTIONS(1839), + [anon_sym_new] = ACTIONS(1839), + [anon_sym_using] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_SLASH] = ACTIONS(1839), + [anon_sym_LT] = ACTIONS(1839), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_void] = ACTIONS(1839), + [anon_sym_delete] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1837), + [sym_number] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1837), + [sym_this] = ACTIONS(1839), + [sym_super] = ACTIONS(1839), + [sym_true] = ACTIONS(1839), + [sym_false] = ACTIONS(1839), + [sym_null] = ACTIONS(1839), + [sym_undefined] = ACTIONS(1839), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_static] = ACTIONS(1839), + [anon_sym_readonly] = ACTIONS(1839), + [anon_sym_get] = ACTIONS(1839), + [anon_sym_set] = ACTIONS(1839), + [anon_sym_declare] = ACTIONS(1839), + [anon_sym_public] = ACTIONS(1839), + [anon_sym_private] = ACTIONS(1839), + [anon_sym_protected] = ACTIONS(1839), + [anon_sym_override] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_any] = ACTIONS(1839), + [anon_sym_number] = ACTIONS(1839), + [anon_sym_boolean] = ACTIONS(1839), + [anon_sym_string] = ACTIONS(1839), + [anon_sym_symbol] = ACTIONS(1839), + [anon_sym_object] = ACTIONS(1839), + [anon_sym_abstract] = ACTIONS(1839), + [anon_sym_interface] = ACTIONS(1839), + [anon_sym_enum] = ACTIONS(1839), + [sym__automatic_semicolon] = ACTIONS(1845), + [sym_html_comment] = ACTIONS(5), + }, + [777] = { + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(993), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -105972,18 +109837,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2414), [anon_sym_readonly] = ACTIONS(2414), [anon_sym_get] = ACTIONS(2414), @@ -106001,10 +109866,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2414), [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [772] = { + [778] = { + [ts_builtin_sym_end] = ACTIONS(1827), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1829), + [anon_sym_default] = ACTIONS(1829), + [anon_sym_type] = ACTIONS(1829), + [anon_sym_namespace] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_typeof] = ACTIONS(1829), + [anon_sym_import] = ACTIONS(1829), + [anon_sym_with] = ACTIONS(1829), + [anon_sym_var] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1827), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_switch] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_await] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_try] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_debugger] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_throw] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_case] = ACTIONS(1829), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1827), + [sym_glimmer_opening_tag] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_SQUOTE] = ACTIONS(1827), + [anon_sym_class] = ACTIONS(1829), + [anon_sym_async] = ACTIONS(1829), + [anon_sym_function] = ACTIONS(1829), + [anon_sym_new] = ACTIONS(1829), + [anon_sym_using] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_SLASH] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1827), + [anon_sym_void] = ACTIONS(1829), + [anon_sym_delete] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1827), + [anon_sym_DASH_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [sym_private_property_identifier] = ACTIONS(1827), + [sym_this] = ACTIONS(1829), + [sym_super] = ACTIONS(1829), + [sym_true] = ACTIONS(1829), + [sym_false] = ACTIONS(1829), + [sym_null] = ACTIONS(1829), + [sym_undefined] = ACTIONS(1829), + [anon_sym_AT] = ACTIONS(1827), + [anon_sym_static] = ACTIONS(1829), + [anon_sym_readonly] = ACTIONS(1829), + [anon_sym_get] = ACTIONS(1829), + [anon_sym_set] = ACTIONS(1829), + [anon_sym_declare] = ACTIONS(1829), + [anon_sym_public] = ACTIONS(1829), + [anon_sym_private] = ACTIONS(1829), + [anon_sym_protected] = ACTIONS(1829), + [anon_sym_override] = ACTIONS(1829), + [anon_sym_module] = ACTIONS(1829), + [anon_sym_any] = ACTIONS(1829), + [anon_sym_number] = ACTIONS(1829), + [anon_sym_boolean] = ACTIONS(1829), + [anon_sym_string] = ACTIONS(1829), + [anon_sym_symbol] = ACTIONS(1829), + [anon_sym_object] = ACTIONS(1829), + [anon_sym_abstract] = ACTIONS(1829), + [anon_sym_interface] = ACTIONS(1829), + [anon_sym_enum] = ACTIONS(1829), + [sym__automatic_semicolon] = ACTIONS(1835), + [sym_html_comment] = ACTIONS(5), + }, + [779] = { + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_default] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_namespace] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_typeof] = ACTIONS(1765), + [anon_sym_import] = ACTIONS(1765), + [anon_sym_with] = ACTIONS(1765), + [anon_sym_var] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_switch] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_await] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_debugger] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_throw] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_case] = ACTIONS(1765), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1763), + [sym_glimmer_opening_tag] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_SQUOTE] = ACTIONS(1763), + [anon_sym_class] = ACTIONS(1765), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1765), + [anon_sym_new] = ACTIONS(1765), + [anon_sym_using] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_void] = ACTIONS(1765), + [anon_sym_delete] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1763), + [sym_number] = ACTIONS(1763), + [sym_private_property_identifier] = ACTIONS(1763), + [sym_this] = ACTIONS(1765), + [sym_super] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_undefined] = ACTIONS(1765), + [anon_sym_AT] = ACTIONS(1763), + [anon_sym_static] = ACTIONS(1765), + [anon_sym_readonly] = ACTIONS(1765), + [anon_sym_get] = ACTIONS(1765), + [anon_sym_set] = ACTIONS(1765), + [anon_sym_declare] = ACTIONS(1765), + [anon_sym_public] = ACTIONS(1765), + [anon_sym_private] = ACTIONS(1765), + [anon_sym_protected] = ACTIONS(1765), + [anon_sym_override] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_any] = ACTIONS(1765), + [anon_sym_number] = ACTIONS(1765), + [anon_sym_boolean] = ACTIONS(1765), + [anon_sym_string] = ACTIONS(1765), + [anon_sym_symbol] = ACTIONS(1765), + [anon_sym_object] = ACTIONS(1765), + [anon_sym_abstract] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(1771), + [sym_html_comment] = ACTIONS(5), + }, + [780] = { [ts_builtin_sym_end] = ACTIONS(2516), [sym_identifier] = ACTIONS(2518), [anon_sym_export] = ACTIONS(2518), @@ -106034,9 +110067,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(2518), [anon_sym_return] = ACTIONS(2518), [anon_sym_throw] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2520), [anon_sym_case] = ACTIONS(2518), - [anon_sym_finally] = ACTIONS(2518), [anon_sym_yield] = ACTIONS(2518), [anon_sym_LBRACK] = ACTIONS(2516), [sym_glimmer_opening_tag] = ACTIONS(2516), @@ -106086,382 +110118,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2518), [anon_sym_interface] = ACTIONS(2518), [anon_sym_enum] = ACTIONS(2518), + [sym__automatic_semicolon] = ACTIONS(2520), [sym_html_comment] = ACTIONS(5), }, - [773] = { - [ts_builtin_sym_end] = ACTIONS(1919), - [sym_identifier] = ACTIONS(1921), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_default] = ACTIONS(1921), - [anon_sym_type] = ACTIONS(1921), - [anon_sym_namespace] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_typeof] = ACTIONS(1921), - [anon_sym_import] = ACTIONS(1921), - [anon_sym_with] = ACTIONS(1921), - [anon_sym_var] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_else] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_switch] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_await] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_debugger] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_throw] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_case] = ACTIONS(1921), - [anon_sym_yield] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1919), - [sym_glimmer_opening_tag] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_class] = ACTIONS(1921), - [anon_sym_async] = ACTIONS(1921), - [anon_sym_function] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1921), - [anon_sym_using] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_void] = ACTIONS(1921), - [anon_sym_delete] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), + [781] = { + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(989), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(162), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1919), - [sym_number] = ACTIONS(1919), - [sym_private_property_identifier] = ACTIONS(1919), - [sym_this] = ACTIONS(1921), - [sym_super] = ACTIONS(1921), - [sym_true] = ACTIONS(1921), - [sym_false] = ACTIONS(1921), - [sym_null] = ACTIONS(1921), - [sym_undefined] = ACTIONS(1921), - [anon_sym_AT] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1921), - [anon_sym_readonly] = ACTIONS(1921), - [anon_sym_get] = ACTIONS(1921), - [anon_sym_set] = ACTIONS(1921), - [anon_sym_declare] = ACTIONS(1921), - [anon_sym_public] = ACTIONS(1921), - [anon_sym_private] = ACTIONS(1921), - [anon_sym_protected] = ACTIONS(1921), - [anon_sym_override] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_any] = ACTIONS(1921), - [anon_sym_number] = ACTIONS(1921), - [anon_sym_boolean] = ACTIONS(1921), - [anon_sym_string] = ACTIONS(1921), - [anon_sym_symbol] = ACTIONS(1921), - [anon_sym_object] = ACTIONS(1921), - [anon_sym_abstract] = ACTIONS(1921), - [anon_sym_interface] = ACTIONS(1921), - [anon_sym_enum] = ACTIONS(1921), - [sym__automatic_semicolon] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [774] = { - [ts_builtin_sym_end] = ACTIONS(1929), - [sym_identifier] = ACTIONS(1931), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_default] = ACTIONS(1931), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_namespace] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_typeof] = ACTIONS(1931), - [anon_sym_import] = ACTIONS(1931), - [anon_sym_with] = ACTIONS(1931), - [anon_sym_var] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(1929), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_switch] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_debugger] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_throw] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_case] = ACTIONS(1931), - [anon_sym_yield] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1929), - [sym_glimmer_opening_tag] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_SQUOTE] = ACTIONS(1929), - [anon_sym_class] = ACTIONS(1931), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_function] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_using] = ACTIONS(1931), - [anon_sym_PLUS] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_SLASH] = ACTIONS(1931), - [anon_sym_LT] = ACTIONS(1931), - [anon_sym_TILDE] = ACTIONS(1929), - [anon_sym_void] = ACTIONS(1931), - [anon_sym_delete] = ACTIONS(1931), - [anon_sym_PLUS_PLUS] = ACTIONS(1929), - [anon_sym_DASH_DASH] = ACTIONS(1929), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1929), - [sym_number] = ACTIONS(1929), - [sym_private_property_identifier] = ACTIONS(1929), - [sym_this] = ACTIONS(1931), - [sym_super] = ACTIONS(1931), - [sym_true] = ACTIONS(1931), - [sym_false] = ACTIONS(1931), - [sym_null] = ACTIONS(1931), - [sym_undefined] = ACTIONS(1931), - [anon_sym_AT] = ACTIONS(1929), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1931), - [anon_sym_set] = ACTIONS(1931), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_override] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_any] = ACTIONS(1931), - [anon_sym_number] = ACTIONS(1931), - [anon_sym_boolean] = ACTIONS(1931), - [anon_sym_string] = ACTIONS(1931), - [anon_sym_symbol] = ACTIONS(1931), - [anon_sym_object] = ACTIONS(1931), - [anon_sym_abstract] = ACTIONS(1931), - [anon_sym_interface] = ACTIONS(1931), - [anon_sym_enum] = ACTIONS(1931), - [sym__automatic_semicolon] = ACTIONS(1937), - [sym_html_comment] = ACTIONS(5), - }, - [775] = { - [ts_builtin_sym_end] = ACTIONS(1813), - [sym_identifier] = ACTIONS(1815), - [anon_sym_export] = ACTIONS(1815), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1815), - [anon_sym_namespace] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_typeof] = ACTIONS(1815), - [anon_sym_import] = ACTIONS(1815), - [anon_sym_with] = ACTIONS(1815), - [anon_sym_var] = ACTIONS(1815), - [anon_sym_let] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_switch] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_debugger] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_throw] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1813), - [sym_glimmer_opening_tag] = ACTIONS(1813), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_async] = ACTIONS(1815), - [anon_sym_function] = ACTIONS(1815), - [anon_sym_new] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_SLASH] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(1815), - [anon_sym_delete] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1813), - [sym_number] = ACTIONS(1813), - [sym_private_property_identifier] = ACTIONS(1813), - [sym_this] = ACTIONS(1815), - [sym_super] = ACTIONS(1815), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), - [sym_undefined] = ACTIONS(1815), - [anon_sym_AT] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_readonly] = ACTIONS(1815), - [anon_sym_get] = ACTIONS(1815), - [anon_sym_set] = ACTIONS(1815), - [anon_sym_declare] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_private] = ACTIONS(1815), - [anon_sym_protected] = ACTIONS(1815), - [anon_sym_override] = ACTIONS(1815), - [anon_sym_module] = ACTIONS(1815), - [anon_sym_any] = ACTIONS(1815), - [anon_sym_number] = ACTIONS(1815), - [anon_sym_boolean] = ACTIONS(1815), - [anon_sym_string] = ACTIONS(1815), - [anon_sym_symbol] = ACTIONS(1815), - [anon_sym_object] = ACTIONS(1815), - [anon_sym_abstract] = ACTIONS(1815), - [anon_sym_interface] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [sym_html_comment] = ACTIONS(5), - }, - [776] = { - [ts_builtin_sym_end] = ACTIONS(1939), - [sym_identifier] = ACTIONS(1941), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_default] = ACTIONS(1941), - [anon_sym_type] = ACTIONS(1941), - [anon_sym_namespace] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(1941), - [anon_sym_import] = ACTIONS(1941), - [anon_sym_with] = ACTIONS(1941), - [anon_sym_var] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [anon_sym_BANG] = ACTIONS(1939), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_switch] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_debugger] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_throw] = ACTIONS(1941), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_case] = ACTIONS(1941), - [anon_sym_yield] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1939), - [sym_glimmer_opening_tag] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [anon_sym_SQUOTE] = ACTIONS(1939), - [anon_sym_class] = ACTIONS(1941), - [anon_sym_async] = ACTIONS(1941), - [anon_sym_function] = ACTIONS(1941), - [anon_sym_new] = ACTIONS(1941), - [anon_sym_using] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_SLASH] = ACTIONS(1941), - [anon_sym_LT] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1939), - [anon_sym_void] = ACTIONS(1941), - [anon_sym_delete] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1939), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1939), - [sym_number] = ACTIONS(1939), - [sym_private_property_identifier] = ACTIONS(1939), - [sym_this] = ACTIONS(1941), - [sym_super] = ACTIONS(1941), - [sym_true] = ACTIONS(1941), - [sym_false] = ACTIONS(1941), - [sym_null] = ACTIONS(1941), - [sym_undefined] = ACTIONS(1941), - [anon_sym_AT] = ACTIONS(1939), - [anon_sym_static] = ACTIONS(1941), - [anon_sym_readonly] = ACTIONS(1941), - [anon_sym_get] = ACTIONS(1941), - [anon_sym_set] = ACTIONS(1941), - [anon_sym_declare] = ACTIONS(1941), - [anon_sym_public] = ACTIONS(1941), - [anon_sym_private] = ACTIONS(1941), - [anon_sym_protected] = ACTIONS(1941), - [anon_sym_override] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_any] = ACTIONS(1941), - [anon_sym_number] = ACTIONS(1941), - [anon_sym_boolean] = ACTIONS(1941), - [anon_sym_string] = ACTIONS(1941), - [anon_sym_symbol] = ACTIONS(1941), - [anon_sym_object] = ACTIONS(1941), - [anon_sym_abstract] = ACTIONS(1941), - [anon_sym_interface] = ACTIONS(1941), - [anon_sym_enum] = ACTIONS(1941), - [sym__automatic_semicolon] = ACTIONS(1947), - [sym_html_comment] = ACTIONS(5), - }, - [777] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [782] = { + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(981), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -106476,18 +110257,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2414), [anon_sym_readonly] = ACTIONS(2414), [anon_sym_get] = ACTIONS(2414), @@ -106505,97 +110286,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2414), [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [778] = { - [sym_statement_block] = STATE(841), - [ts_builtin_sym_end] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_namespace] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_typeof] = ACTIONS(1717), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_with] = ACTIONS(1717), - [anon_sym_var] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_switch] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_await] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_debugger] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_throw] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [sym_glimmer_opening_tag] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_function] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_SLASH] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_void] = ACTIONS(1717), - [anon_sym_delete] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1715), - [sym_number] = ACTIONS(1715), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(1717), - [sym_super] = ACTIONS(1717), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_null] = ACTIONS(1717), - [sym_undefined] = ACTIONS(1717), - [anon_sym_AT] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_readonly] = ACTIONS(1717), - [anon_sym_get] = ACTIONS(1717), - [anon_sym_set] = ACTIONS(1717), - [anon_sym_declare] = ACTIONS(1717), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_override] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_any] = ACTIONS(1717), - [anon_sym_number] = ACTIONS(1717), - [anon_sym_boolean] = ACTIONS(1717), - [anon_sym_string] = ACTIONS(1717), - [anon_sym_symbol] = ACTIONS(1717), - [anon_sym_object] = ACTIONS(1717), - [anon_sym_abstract] = ACTIONS(1717), - [anon_sym_interface] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [779] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [783] = { + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), @@ -106607,281 +110304,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2414), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_readonly] = ACTIONS(2414), - [anon_sym_get] = ACTIONS(2414), - [anon_sym_set] = ACTIONS(2414), - [anon_sym_declare] = ACTIONS(2414), - [anon_sym_public] = ACTIONS(2414), - [anon_sym_private] = ACTIONS(2414), - [anon_sym_protected] = ACTIONS(2414), - [anon_sym_override] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_any] = ACTIONS(2414), - [anon_sym_number] = ACTIONS(2414), - [anon_sym_boolean] = ACTIONS(2414), - [anon_sym_string] = ACTIONS(2414), - [anon_sym_symbol] = ACTIONS(2414), - [anon_sym_object] = ACTIONS(2414), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [780] = { - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2522), - [anon_sym_export] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_typeof] = ACTIONS(2522), - [anon_sym_import] = ACTIONS(2522), - [anon_sym_with] = ACTIONS(2522), - [anon_sym_var] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_RPAREN] = ACTIONS(2520), - [anon_sym_await] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_debugger] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_throw] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_case] = ACTIONS(2522), - [anon_sym_yield] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2520), - [sym_glimmer_opening_tag] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_class] = ACTIONS(2522), - [anon_sym_async] = ACTIONS(2522), - [anon_sym_function] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_using] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_void] = ACTIONS(2522), - [anon_sym_delete] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2520), - [sym_number] = ACTIONS(2520), - [sym_private_property_identifier] = ACTIONS(2520), - [sym_this] = ACTIONS(2522), - [sym_super] = ACTIONS(2522), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_undefined] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_readonly] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_declare] = ACTIONS(2522), - [anon_sym_public] = ACTIONS(2522), - [anon_sym_private] = ACTIONS(2522), - [anon_sym_protected] = ACTIONS(2522), - [anon_sym_override] = ACTIONS(2522), - [anon_sym_module] = ACTIONS(2522), - [anon_sym_any] = ACTIONS(2522), - [anon_sym_number] = ACTIONS(2522), - [anon_sym_boolean] = ACTIONS(2522), - [anon_sym_string] = ACTIONS(2522), - [anon_sym_symbol] = ACTIONS(2522), - [anon_sym_object] = ACTIONS(2522), - [anon_sym_abstract] = ACTIONS(2522), - [anon_sym_interface] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [sym_html_comment] = ACTIONS(5), - }, - [781] = { - [ts_builtin_sym_end] = ACTIONS(1753), - [sym_identifier] = ACTIONS(1755), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_type] = ACTIONS(1755), - [anon_sym_namespace] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_RBRACE] = ACTIONS(1753), - [anon_sym_typeof] = ACTIONS(1755), - [anon_sym_import] = ACTIONS(1755), - [anon_sym_with] = ACTIONS(1755), - [anon_sym_var] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1753), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_debugger] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_throw] = ACTIONS(1755), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1755), - [anon_sym_yield] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1753), - [sym_glimmer_opening_tag] = ACTIONS(1753), - [anon_sym_DQUOTE] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_async] = ACTIONS(1755), - [anon_sym_function] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_using] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_void] = ACTIONS(1755), - [anon_sym_delete] = ACTIONS(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1753), - [sym_number] = ACTIONS(1753), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(1755), - [sym_super] = ACTIONS(1755), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_null] = ACTIONS(1755), - [sym_undefined] = ACTIONS(1755), - [anon_sym_AT] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_readonly] = ACTIONS(1755), - [anon_sym_get] = ACTIONS(1755), - [anon_sym_set] = ACTIONS(1755), - [anon_sym_declare] = ACTIONS(1755), - [anon_sym_public] = ACTIONS(1755), - [anon_sym_private] = ACTIONS(1755), - [anon_sym_protected] = ACTIONS(1755), - [anon_sym_override] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_any] = ACTIONS(1755), - [anon_sym_number] = ACTIONS(1755), - [anon_sym_boolean] = ACTIONS(1755), - [anon_sym_string] = ACTIONS(1755), - [anon_sym_symbol] = ACTIONS(1755), - [anon_sym_object] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(1755), - [anon_sym_interface] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [sym__automatic_semicolon] = ACTIONS(1761), - [sym_html_comment] = ACTIONS(5), - }, - [782] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), - [sym_identifier] = ACTIONS(2412), - [anon_sym_export] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(981), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -106896,18 +110341,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2414), [anon_sym_readonly] = ACTIONS(2414), [anon_sym_get] = ACTIONS(2414), @@ -106925,47 +110370,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2414), [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [783] = { - [sym__call_signature] = STATE(5688), - [sym_formal_parameters] = STATE(3796), - [sym_type_parameters] = STATE(5437), + [784] = { + [sym__call_signature] = STATE(7162), + [sym_formal_parameters] = STATE(4242), + [sym_type_parameters] = STATE(6102), [sym_identifier] = ACTIONS(2412), [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(997), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2416), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), [anon_sym_new] = ACTIONS(2414), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -106980,18 +110425,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_static] = ACTIONS(2414), [anon_sym_readonly] = ACTIONS(2414), [anon_sym_get] = ACTIONS(2414), @@ -107009,343 +110454,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2414), [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [784] = { - [ts_builtin_sym_end] = ACTIONS(1773), - [sym_identifier] = ACTIONS(1775), - [anon_sym_export] = ACTIONS(1775), - [anon_sym_default] = ACTIONS(1775), - [anon_sym_type] = ACTIONS(1775), - [anon_sym_namespace] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_typeof] = ACTIONS(1775), - [anon_sym_import] = ACTIONS(1775), - [anon_sym_with] = ACTIONS(1775), - [anon_sym_var] = ACTIONS(1775), - [anon_sym_let] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_else] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(1775), - [anon_sym_switch] = ACTIONS(1775), - [anon_sym_for] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_while] = ACTIONS(1775), - [anon_sym_do] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1775), - [anon_sym_debugger] = ACTIONS(1775), - [anon_sym_return] = ACTIONS(1775), - [anon_sym_throw] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_case] = ACTIONS(1775), - [anon_sym_yield] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1773), - [sym_glimmer_opening_tag] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_class] = ACTIONS(1775), - [anon_sym_async] = ACTIONS(1775), - [anon_sym_function] = ACTIONS(1775), - [anon_sym_new] = ACTIONS(1775), - [anon_sym_using] = ACTIONS(1775), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_SLASH] = ACTIONS(1775), - [anon_sym_LT] = ACTIONS(1775), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_void] = ACTIONS(1775), - [anon_sym_delete] = ACTIONS(1775), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1773), - [sym_number] = ACTIONS(1773), - [sym_private_property_identifier] = ACTIONS(1773), - [sym_this] = ACTIONS(1775), - [sym_super] = ACTIONS(1775), - [sym_true] = ACTIONS(1775), - [sym_false] = ACTIONS(1775), - [sym_null] = ACTIONS(1775), - [sym_undefined] = ACTIONS(1775), - [anon_sym_AT] = ACTIONS(1773), - [anon_sym_static] = ACTIONS(1775), - [anon_sym_readonly] = ACTIONS(1775), - [anon_sym_get] = ACTIONS(1775), - [anon_sym_set] = ACTIONS(1775), - [anon_sym_declare] = ACTIONS(1775), - [anon_sym_public] = ACTIONS(1775), - [anon_sym_private] = ACTIONS(1775), - [anon_sym_protected] = ACTIONS(1775), - [anon_sym_override] = ACTIONS(1775), - [anon_sym_module] = ACTIONS(1775), - [anon_sym_any] = ACTIONS(1775), - [anon_sym_number] = ACTIONS(1775), - [anon_sym_boolean] = ACTIONS(1775), - [anon_sym_string] = ACTIONS(1775), - [anon_sym_symbol] = ACTIONS(1775), - [anon_sym_object] = ACTIONS(1775), - [anon_sym_abstract] = ACTIONS(1775), - [anon_sym_interface] = ACTIONS(1775), - [anon_sym_enum] = ACTIONS(1775), - [sym__automatic_semicolon] = ACTIONS(1781), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [785] = { - [ts_builtin_sym_end] = ACTIONS(2524), - [sym_identifier] = ACTIONS(2526), - [anon_sym_export] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_type] = ACTIONS(2526), - [anon_sym_namespace] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_typeof] = ACTIONS(2526), - [anon_sym_import] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2526), - [anon_sym_var] = ACTIONS(2526), - [anon_sym_let] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_await] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_debugger] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_throw] = ACTIONS(2526), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_case] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2524), - [sym_glimmer_opening_tag] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_class] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2526), - [anon_sym_using] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_void] = ACTIONS(2526), - [anon_sym_delete] = ACTIONS(2526), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2524), - [sym_number] = ACTIONS(2524), - [sym_private_property_identifier] = ACTIONS(2524), - [sym_this] = ACTIONS(2526), - [sym_super] = ACTIONS(2526), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_undefined] = ACTIONS(2526), - [anon_sym_AT] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_readonly] = ACTIONS(2526), - [anon_sym_get] = ACTIONS(2526), - [anon_sym_set] = ACTIONS(2526), - [anon_sym_declare] = ACTIONS(2526), - [anon_sym_public] = ACTIONS(2526), - [anon_sym_private] = ACTIONS(2526), - [anon_sym_protected] = ACTIONS(2526), - [anon_sym_override] = ACTIONS(2526), - [anon_sym_module] = ACTIONS(2526), - [anon_sym_any] = ACTIONS(2526), - [anon_sym_number] = ACTIONS(2526), - [anon_sym_boolean] = ACTIONS(2526), - [anon_sym_string] = ACTIONS(2526), - [anon_sym_symbol] = ACTIONS(2526), - [anon_sym_object] = ACTIONS(2526), - [anon_sym_abstract] = ACTIONS(2526), - [anon_sym_interface] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), - [sym__automatic_semicolon] = ACTIONS(2528), + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2524), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_type] = ACTIONS(2524), + [anon_sym_namespace] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_import] = ACTIONS(2524), + [anon_sym_with] = ACTIONS(2524), + [anon_sym_var] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_await] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_debugger] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_throw] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_finally] = ACTIONS(2524), + [anon_sym_yield] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2522), + [sym_glimmer_opening_tag] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_class] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(2524), + [anon_sym_function] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_using] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_void] = ACTIONS(2524), + [anon_sym_delete] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2522), + [sym_number] = ACTIONS(2522), + [sym_private_property_identifier] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_super] = ACTIONS(2524), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [sym_null] = ACTIONS(2524), + [sym_undefined] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_readonly] = ACTIONS(2524), + [anon_sym_get] = ACTIONS(2524), + [anon_sym_set] = ACTIONS(2524), + [anon_sym_declare] = ACTIONS(2524), + [anon_sym_public] = ACTIONS(2524), + [anon_sym_private] = ACTIONS(2524), + [anon_sym_protected] = ACTIONS(2524), + [anon_sym_override] = ACTIONS(2524), + [anon_sym_module] = ACTIONS(2524), + [anon_sym_any] = ACTIONS(2524), + [anon_sym_number] = ACTIONS(2524), + [anon_sym_boolean] = ACTIONS(2524), + [anon_sym_string] = ACTIONS(2524), + [anon_sym_symbol] = ACTIONS(2524), + [anon_sym_object] = ACTIONS(2524), + [anon_sym_abstract] = ACTIONS(2524), + [anon_sym_interface] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), [sym_html_comment] = ACTIONS(5), }, [786] = { - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_default] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_namespace] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_typeof] = ACTIONS(1785), - [anon_sym_import] = ACTIONS(1785), - [anon_sym_with] = ACTIONS(1785), - [anon_sym_var] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_switch] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_debugger] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_throw] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1785), - [anon_sym_yield] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1783), - [sym_glimmer_opening_tag] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [anon_sym_SQUOTE] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(1785), - [anon_sym_async] = ACTIONS(1785), - [anon_sym_function] = ACTIONS(1785), - [anon_sym_new] = ACTIONS(1785), - [anon_sym_using] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_void] = ACTIONS(1785), - [anon_sym_delete] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1783), - [sym_number] = ACTIONS(1783), - [sym_private_property_identifier] = ACTIONS(1783), - [sym_this] = ACTIONS(1785), - [sym_super] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_null] = ACTIONS(1785), - [sym_undefined] = ACTIONS(1785), - [anon_sym_AT] = ACTIONS(1783), - [anon_sym_static] = ACTIONS(1785), - [anon_sym_readonly] = ACTIONS(1785), - [anon_sym_get] = ACTIONS(1785), - [anon_sym_set] = ACTIONS(1785), - [anon_sym_declare] = ACTIONS(1785), - [anon_sym_public] = ACTIONS(1785), - [anon_sym_private] = ACTIONS(1785), - [anon_sym_protected] = ACTIONS(1785), - [anon_sym_override] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_any] = ACTIONS(1785), - [anon_sym_number] = ACTIONS(1785), - [anon_sym_boolean] = ACTIONS(1785), - [anon_sym_string] = ACTIONS(1785), - [anon_sym_symbol] = ACTIONS(1785), - [anon_sym_object] = ACTIONS(1785), - [anon_sym_abstract] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [sym__automatic_semicolon] = ACTIONS(1791), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_export] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_namespace] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_typeof] = ACTIONS(1849), + [anon_sym_import] = ACTIONS(1849), + [anon_sym_with] = ACTIONS(1849), + [anon_sym_var] = ACTIONS(1849), + [anon_sym_let] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1849), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_switch] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_while] = ACTIONS(1849), + [anon_sym_do] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_debugger] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_throw] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_case] = ACTIONS(1849), + [anon_sym_yield] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1847), + [sym_glimmer_opening_tag] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [anon_sym_SQUOTE] = ACTIONS(1847), + [anon_sym_class] = ACTIONS(1849), + [anon_sym_async] = ACTIONS(1849), + [anon_sym_function] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_void] = ACTIONS(1849), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1847), + [sym_number] = ACTIONS(1847), + [sym_private_property_identifier] = ACTIONS(1847), + [sym_this] = ACTIONS(1849), + [sym_super] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_null] = ACTIONS(1849), + [sym_undefined] = ACTIONS(1849), + [anon_sym_AT] = ACTIONS(1847), + [anon_sym_static] = ACTIONS(1849), + [anon_sym_readonly] = ACTIONS(1849), + [anon_sym_get] = ACTIONS(1849), + [anon_sym_set] = ACTIONS(1849), + [anon_sym_declare] = ACTIONS(1849), + [anon_sym_public] = ACTIONS(1849), + [anon_sym_private] = ACTIONS(1849), + [anon_sym_protected] = ACTIONS(1849), + [anon_sym_override] = ACTIONS(1849), + [anon_sym_module] = ACTIONS(1849), + [anon_sym_any] = ACTIONS(1849), + [anon_sym_number] = ACTIONS(1849), + [anon_sym_boolean] = ACTIONS(1849), + [anon_sym_string] = ACTIONS(1849), + [anon_sym_symbol] = ACTIONS(1849), + [anon_sym_object] = ACTIONS(1849), + [anon_sym_abstract] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [sym__automatic_semicolon] = ACTIONS(1855), [sym_html_comment] = ACTIONS(5), }, [787] = { - [ts_builtin_sym_end] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_typeof] = ACTIONS(1863), - [anon_sym_import] = ACTIONS(1863), - [anon_sym_with] = ACTIONS(1863), - [anon_sym_var] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_switch] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_await] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_debugger] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_throw] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_case] = ACTIONS(1863), - [anon_sym_yield] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1861), - [sym_glimmer_opening_tag] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_async] = ACTIONS(1863), - [anon_sym_function] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_using] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_SLASH] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_void] = ACTIONS(1863), - [anon_sym_delete] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1861), - [sym_number] = ACTIONS(1861), - [sym_private_property_identifier] = ACTIONS(1861), - [sym_this] = ACTIONS(1863), - [sym_super] = ACTIONS(1863), - [sym_true] = ACTIONS(1863), - [sym_false] = ACTIONS(1863), - [sym_null] = ACTIONS(1863), - [sym_undefined] = ACTIONS(1863), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_readonly] = ACTIONS(1863), - [anon_sym_get] = ACTIONS(1863), - [anon_sym_set] = ACTIONS(1863), - [anon_sym_declare] = ACTIONS(1863), - [anon_sym_public] = ACTIONS(1863), - [anon_sym_private] = ACTIONS(1863), - [anon_sym_protected] = ACTIONS(1863), - [anon_sym_override] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_any] = ACTIONS(1863), - [anon_sym_number] = ACTIONS(1863), - [anon_sym_boolean] = ACTIONS(1863), - [anon_sym_string] = ACTIONS(1863), - [anon_sym_symbol] = ACTIONS(1863), - [anon_sym_object] = ACTIONS(1863), - [anon_sym_abstract] = ACTIONS(1863), - [anon_sym_interface] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [sym__automatic_semicolon] = ACTIONS(1869), + [ts_builtin_sym_end] = ACTIONS(2526), + [sym_identifier] = ACTIONS(2528), + [anon_sym_export] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_type] = ACTIONS(2528), + [anon_sym_namespace] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_typeof] = ACTIONS(2528), + [anon_sym_import] = ACTIONS(2528), + [anon_sym_with] = ACTIONS(2528), + [anon_sym_var] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_await] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_debugger] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_throw] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_case] = ACTIONS(2528), + [anon_sym_finally] = ACTIONS(2528), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2526), + [sym_glimmer_opening_tag] = ACTIONS(2526), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_class] = ACTIONS(2528), + [anon_sym_async] = ACTIONS(2528), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_using] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_SLASH] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_void] = ACTIONS(2528), + [anon_sym_delete] = ACTIONS(2528), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2526), + [sym_number] = ACTIONS(2526), + [sym_private_property_identifier] = ACTIONS(2526), + [sym_this] = ACTIONS(2528), + [sym_super] = ACTIONS(2528), + [sym_true] = ACTIONS(2528), + [sym_false] = ACTIONS(2528), + [sym_null] = ACTIONS(2528), + [sym_undefined] = ACTIONS(2528), + [anon_sym_AT] = ACTIONS(2526), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_readonly] = ACTIONS(2528), + [anon_sym_get] = ACTIONS(2528), + [anon_sym_set] = ACTIONS(2528), + [anon_sym_declare] = ACTIONS(2528), + [anon_sym_public] = ACTIONS(2528), + [anon_sym_private] = ACTIONS(2528), + [anon_sym_protected] = ACTIONS(2528), + [anon_sym_override] = ACTIONS(2528), + [anon_sym_module] = ACTIONS(2528), + [anon_sym_any] = ACTIONS(2528), + [anon_sym_number] = ACTIONS(2528), + [anon_sym_boolean] = ACTIONS(2528), + [anon_sym_string] = ACTIONS(2528), + [anon_sym_symbol] = ACTIONS(2528), + [anon_sym_object] = ACTIONS(2528), + [anon_sym_abstract] = ACTIONS(2528), + [anon_sym_interface] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), [sym_html_comment] = ACTIONS(5), }, [788] = { @@ -107847,6 +111208,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [794] = { + [ts_builtin_sym_end] = ACTIONS(2542), + [sym_identifier] = ACTIONS(2544), + [anon_sym_export] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_type] = ACTIONS(2544), + [anon_sym_namespace] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_typeof] = ACTIONS(2544), + [anon_sym_import] = ACTIONS(2544), + [anon_sym_with] = ACTIONS(2544), + [anon_sym_var] = ACTIONS(2544), + [anon_sym_let] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_await] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_try] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_debugger] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_throw] = ACTIONS(2544), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2544), + [anon_sym_yield] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2542), + [sym_glimmer_opening_tag] = ACTIONS(2542), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2544), + [anon_sym_async] = ACTIONS(2544), + [anon_sym_function] = ACTIONS(2544), + [anon_sym_new] = ACTIONS(2544), + [anon_sym_using] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_void] = ACTIONS(2544), + [anon_sym_delete] = ACTIONS(2544), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2542), + [sym_number] = ACTIONS(2542), + [sym_private_property_identifier] = ACTIONS(2542), + [sym_this] = ACTIONS(2544), + [sym_super] = ACTIONS(2544), + [sym_true] = ACTIONS(2544), + [sym_false] = ACTIONS(2544), + [sym_null] = ACTIONS(2544), + [sym_undefined] = ACTIONS(2544), + [anon_sym_AT] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_readonly] = ACTIONS(2544), + [anon_sym_get] = ACTIONS(2544), + [anon_sym_set] = ACTIONS(2544), + [anon_sym_declare] = ACTIONS(2544), + [anon_sym_public] = ACTIONS(2544), + [anon_sym_private] = ACTIONS(2544), + [anon_sym_protected] = ACTIONS(2544), + [anon_sym_override] = ACTIONS(2544), + [anon_sym_module] = ACTIONS(2544), + [anon_sym_any] = ACTIONS(2544), + [anon_sym_number] = ACTIONS(2544), + [anon_sym_boolean] = ACTIONS(2544), + [anon_sym_string] = ACTIONS(2544), + [anon_sym_symbol] = ACTIONS(2544), + [anon_sym_object] = ACTIONS(2544), + [anon_sym_abstract] = ACTIONS(2544), + [anon_sym_interface] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [sym_html_comment] = ACTIONS(5), + }, + [795] = { [ts_builtin_sym_end] = ACTIONS(2554), [sym_identifier] = ACTIONS(2556), [anon_sym_export] = ACTIONS(2556), @@ -107929,7 +111373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2556), [sym_html_comment] = ACTIONS(5), }, - [795] = { + [796] = { [ts_builtin_sym_end] = ACTIONS(2558), [sym_identifier] = ACTIONS(2560), [anon_sym_export] = ACTIONS(2560), @@ -108012,90 +111456,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2560), [sym_html_comment] = ACTIONS(5), }, - [796] = { - [ts_builtin_sym_end] = ACTIONS(2558), - [sym_identifier] = ACTIONS(2560), - [anon_sym_export] = ACTIONS(2560), - [anon_sym_default] = ACTIONS(2560), - [anon_sym_type] = ACTIONS(2560), - [anon_sym_namespace] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_RBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_import] = ACTIONS(2560), - [anon_sym_with] = ACTIONS(2560), - [anon_sym_var] = ACTIONS(2560), - [anon_sym_let] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2560), - [anon_sym_BANG] = ACTIONS(2558), - [anon_sym_else] = ACTIONS(2560), - [anon_sym_if] = ACTIONS(2560), - [anon_sym_switch] = ACTIONS(2560), - [anon_sym_for] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2558), - [anon_sym_await] = ACTIONS(2560), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_do] = ACTIONS(2560), - [anon_sym_try] = ACTIONS(2560), - [anon_sym_break] = ACTIONS(2560), - [anon_sym_continue] = ACTIONS(2560), - [anon_sym_debugger] = ACTIONS(2560), - [anon_sym_return] = ACTIONS(2560), - [anon_sym_throw] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2558), - [anon_sym_case] = ACTIONS(2560), - [anon_sym_yield] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(2558), - [sym_glimmer_opening_tag] = ACTIONS(2558), - [anon_sym_DQUOTE] = ACTIONS(2558), - [anon_sym_SQUOTE] = ACTIONS(2558), - [anon_sym_class] = ACTIONS(2560), - [anon_sym_async] = ACTIONS(2560), - [anon_sym_function] = ACTIONS(2560), - [anon_sym_new] = ACTIONS(2560), - [anon_sym_using] = ACTIONS(2560), - [anon_sym_PLUS] = ACTIONS(2560), - [anon_sym_DASH] = ACTIONS(2560), - [anon_sym_SLASH] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_TILDE] = ACTIONS(2558), - [anon_sym_void] = ACTIONS(2560), - [anon_sym_delete] = ACTIONS(2560), - [anon_sym_PLUS_PLUS] = ACTIONS(2558), - [anon_sym_DASH_DASH] = ACTIONS(2558), + [797] = { + [ts_builtin_sym_end] = ACTIONS(1929), + [sym_identifier] = ACTIONS(1931), + [anon_sym_export] = ACTIONS(1931), + [anon_sym_default] = ACTIONS(1931), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_namespace] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_typeof] = ACTIONS(1931), + [anon_sym_import] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), + [anon_sym_var] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1929), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_switch] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_debugger] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_throw] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_case] = ACTIONS(1931), + [anon_sym_yield] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1929), + [sym_glimmer_opening_tag] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1929), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_async] = ACTIONS(1931), + [anon_sym_function] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_using] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_SLASH] = ACTIONS(1931), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_TILDE] = ACTIONS(1929), + [anon_sym_void] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1929), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2558), - [sym_number] = ACTIONS(2558), - [sym_private_property_identifier] = ACTIONS(2558), - [sym_this] = ACTIONS(2560), - [sym_super] = ACTIONS(2560), - [sym_true] = ACTIONS(2560), - [sym_false] = ACTIONS(2560), - [sym_null] = ACTIONS(2560), - [sym_undefined] = ACTIONS(2560), - [anon_sym_AT] = ACTIONS(2558), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_readonly] = ACTIONS(2560), - [anon_sym_get] = ACTIONS(2560), - [anon_sym_set] = ACTIONS(2560), - [anon_sym_declare] = ACTIONS(2560), - [anon_sym_public] = ACTIONS(2560), - [anon_sym_private] = ACTIONS(2560), - [anon_sym_protected] = ACTIONS(2560), - [anon_sym_override] = ACTIONS(2560), - [anon_sym_module] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2560), - [anon_sym_number] = ACTIONS(2560), - [anon_sym_boolean] = ACTIONS(2560), - [anon_sym_string] = ACTIONS(2560), - [anon_sym_symbol] = ACTIONS(2560), - [anon_sym_object] = ACTIONS(2560), - [anon_sym_abstract] = ACTIONS(2560), - [anon_sym_interface] = ACTIONS(2560), - [anon_sym_enum] = ACTIONS(2560), + [anon_sym_BQUOTE] = ACTIONS(1929), + [sym_number] = ACTIONS(1929), + [sym_private_property_identifier] = ACTIONS(1929), + [sym_this] = ACTIONS(1931), + [sym_super] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [sym_null] = ACTIONS(1931), + [sym_undefined] = ACTIONS(1931), + [anon_sym_AT] = ACTIONS(1929), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_readonly] = ACTIONS(1931), + [anon_sym_get] = ACTIONS(1931), + [anon_sym_set] = ACTIONS(1931), + [anon_sym_declare] = ACTIONS(1931), + [anon_sym_public] = ACTIONS(1931), + [anon_sym_private] = ACTIONS(1931), + [anon_sym_protected] = ACTIONS(1931), + [anon_sym_override] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_any] = ACTIONS(1931), + [anon_sym_number] = ACTIONS(1931), + [anon_sym_boolean] = ACTIONS(1931), + [anon_sym_string] = ACTIONS(1931), + [anon_sym_symbol] = ACTIONS(1931), + [anon_sym_object] = ACTIONS(1931), + [anon_sym_abstract] = ACTIONS(1931), + [anon_sym_interface] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), [sym_html_comment] = ACTIONS(5), }, - [797] = { + [798] = { [ts_builtin_sym_end] = ACTIONS(2562), [sym_identifier] = ACTIONS(2564), [anon_sym_export] = ACTIONS(2564), @@ -108178,7 +111622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2564), [sym_html_comment] = ACTIONS(5), }, - [798] = { + [799] = { [ts_builtin_sym_end] = ACTIONS(2566), [sym_identifier] = ACTIONS(2568), [anon_sym_export] = ACTIONS(2568), @@ -108261,7 +111705,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2568), [sym_html_comment] = ACTIONS(5), }, - [799] = { + [800] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2568), + [anon_sym_export] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_type] = ACTIONS(2568), + [anon_sym_namespace] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_import] = ACTIONS(2568), + [anon_sym_with] = ACTIONS(2568), + [anon_sym_var] = ACTIONS(2568), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_await] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_try] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_debugger] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_throw] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_yield] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2566), + [sym_glimmer_opening_tag] = ACTIONS(2566), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_class] = ACTIONS(2568), + [anon_sym_async] = ACTIONS(2568), + [anon_sym_function] = ACTIONS(2568), + [anon_sym_new] = ACTIONS(2568), + [anon_sym_using] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_void] = ACTIONS(2568), + [anon_sym_delete] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2566), + [sym_number] = ACTIONS(2566), + [sym_private_property_identifier] = ACTIONS(2566), + [sym_this] = ACTIONS(2568), + [sym_super] = ACTIONS(2568), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [sym_null] = ACTIONS(2568), + [sym_undefined] = ACTIONS(2568), + [anon_sym_AT] = ACTIONS(2566), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_readonly] = ACTIONS(2568), + [anon_sym_get] = ACTIONS(2568), + [anon_sym_set] = ACTIONS(2568), + [anon_sym_declare] = ACTIONS(2568), + [anon_sym_public] = ACTIONS(2568), + [anon_sym_private] = ACTIONS(2568), + [anon_sym_protected] = ACTIONS(2568), + [anon_sym_override] = ACTIONS(2568), + [anon_sym_module] = ACTIONS(2568), + [anon_sym_any] = ACTIONS(2568), + [anon_sym_number] = ACTIONS(2568), + [anon_sym_boolean] = ACTIONS(2568), + [anon_sym_string] = ACTIONS(2568), + [anon_sym_symbol] = ACTIONS(2568), + [anon_sym_object] = ACTIONS(2568), + [anon_sym_abstract] = ACTIONS(2568), + [anon_sym_interface] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [sym_html_comment] = ACTIONS(5), + }, + [801] = { [ts_builtin_sym_end] = ACTIONS(2570), [sym_identifier] = ACTIONS(2572), [anon_sym_export] = ACTIONS(2572), @@ -108344,7 +111871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2572), [sym_html_comment] = ACTIONS(5), }, - [800] = { + [802] = { [ts_builtin_sym_end] = ACTIONS(2574), [sym_identifier] = ACTIONS(2576), [anon_sym_export] = ACTIONS(2576), @@ -108427,90 +111954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2576), [sym_html_comment] = ACTIONS(5), }, - [801] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_identifier] = ACTIONS(1907), - [anon_sym_export] = ACTIONS(1907), - [anon_sym_default] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_namespace] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_typeof] = ACTIONS(1907), - [anon_sym_import] = ACTIONS(1907), - [anon_sym_with] = ACTIONS(1907), - [anon_sym_var] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_switch] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_await] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_try] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_debugger] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_throw] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_case] = ACTIONS(1907), - [anon_sym_yield] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1905), - [sym_glimmer_opening_tag] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [anon_sym_SQUOTE] = ACTIONS(1905), - [anon_sym_class] = ACTIONS(1907), - [anon_sym_async] = ACTIONS(1907), - [anon_sym_function] = ACTIONS(1907), - [anon_sym_new] = ACTIONS(1907), - [anon_sym_using] = ACTIONS(1907), - [anon_sym_PLUS] = ACTIONS(1907), - [anon_sym_DASH] = ACTIONS(1907), - [anon_sym_SLASH] = ACTIONS(1907), - [anon_sym_LT] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_void] = ACTIONS(1907), - [anon_sym_delete] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1905), - [sym_number] = ACTIONS(1905), - [sym_private_property_identifier] = ACTIONS(1905), - [sym_this] = ACTIONS(1907), - [sym_super] = ACTIONS(1907), - [sym_true] = ACTIONS(1907), - [sym_false] = ACTIONS(1907), - [sym_null] = ACTIONS(1907), - [sym_undefined] = ACTIONS(1907), - [anon_sym_AT] = ACTIONS(1905), - [anon_sym_static] = ACTIONS(1907), - [anon_sym_readonly] = ACTIONS(1907), - [anon_sym_get] = ACTIONS(1907), - [anon_sym_set] = ACTIONS(1907), - [anon_sym_declare] = ACTIONS(1907), - [anon_sym_public] = ACTIONS(1907), - [anon_sym_private] = ACTIONS(1907), - [anon_sym_protected] = ACTIONS(1907), - [anon_sym_override] = ACTIONS(1907), - [anon_sym_module] = ACTIONS(1907), - [anon_sym_any] = ACTIONS(1907), - [anon_sym_number] = ACTIONS(1907), - [anon_sym_boolean] = ACTIONS(1907), - [anon_sym_string] = ACTIONS(1907), - [anon_sym_symbol] = ACTIONS(1907), - [anon_sym_object] = ACTIONS(1907), - [anon_sym_abstract] = ACTIONS(1907), - [anon_sym_interface] = ACTIONS(1907), - [anon_sym_enum] = ACTIONS(1907), - [sym_html_comment] = ACTIONS(5), - }, - [802] = { + [803] = { [ts_builtin_sym_end] = ACTIONS(2578), [sym_identifier] = ACTIONS(2580), [anon_sym_export] = ACTIONS(2580), @@ -108593,7 +112037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2580), [sym_html_comment] = ACTIONS(5), }, - [803] = { + [804] = { [ts_builtin_sym_end] = ACTIONS(2582), [sym_identifier] = ACTIONS(2584), [anon_sym_export] = ACTIONS(2584), @@ -108676,7 +112120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2584), [sym_html_comment] = ACTIONS(5), }, - [804] = { + [805] = { [ts_builtin_sym_end] = ACTIONS(2586), [sym_identifier] = ACTIONS(2588), [anon_sym_export] = ACTIONS(2588), @@ -108759,89 +112203,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2588), [sym_html_comment] = ACTIONS(5), }, - [805] = { - [ts_builtin_sym_end] = ACTIONS(2590), - [sym_identifier] = ACTIONS(2592), - [anon_sym_export] = ACTIONS(2592), - [anon_sym_default] = ACTIONS(2592), - [anon_sym_type] = ACTIONS(2592), - [anon_sym_namespace] = ACTIONS(2592), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_typeof] = ACTIONS(2592), - [anon_sym_import] = ACTIONS(2592), - [anon_sym_with] = ACTIONS(2592), - [anon_sym_var] = ACTIONS(2592), - [anon_sym_let] = ACTIONS(2592), - [anon_sym_const] = ACTIONS(2592), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_else] = ACTIONS(2592), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2592), - [anon_sym_for] = ACTIONS(2592), - [anon_sym_LPAREN] = ACTIONS(2590), - [anon_sym_await] = ACTIONS(2592), - [anon_sym_while] = ACTIONS(2592), - [anon_sym_do] = ACTIONS(2592), - [anon_sym_try] = ACTIONS(2592), - [anon_sym_break] = ACTIONS(2592), - [anon_sym_continue] = ACTIONS(2592), - [anon_sym_debugger] = ACTIONS(2592), - [anon_sym_return] = ACTIONS(2592), - [anon_sym_throw] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_case] = ACTIONS(2592), - [anon_sym_yield] = ACTIONS(2592), - [anon_sym_LBRACK] = ACTIONS(2590), - [sym_glimmer_opening_tag] = ACTIONS(2590), - [anon_sym_DQUOTE] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2590), - [anon_sym_class] = ACTIONS(2592), - [anon_sym_async] = ACTIONS(2592), - [anon_sym_function] = ACTIONS(2592), - [anon_sym_new] = ACTIONS(2592), - [anon_sym_using] = ACTIONS(2592), - [anon_sym_PLUS] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2592), - [anon_sym_SLASH] = ACTIONS(2592), - [anon_sym_LT] = ACTIONS(2592), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_void] = ACTIONS(2592), - [anon_sym_delete] = ACTIONS(2592), - [anon_sym_PLUS_PLUS] = ACTIONS(2590), - [anon_sym_DASH_DASH] = ACTIONS(2590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2590), - [sym_number] = ACTIONS(2590), - [sym_private_property_identifier] = ACTIONS(2590), - [sym_this] = ACTIONS(2592), - [sym_super] = ACTIONS(2592), - [sym_true] = ACTIONS(2592), - [sym_false] = ACTIONS(2592), - [sym_null] = ACTIONS(2592), - [sym_undefined] = ACTIONS(2592), - [anon_sym_AT] = ACTIONS(2590), - [anon_sym_static] = ACTIONS(2592), - [anon_sym_readonly] = ACTIONS(2592), - [anon_sym_get] = ACTIONS(2592), - [anon_sym_set] = ACTIONS(2592), - [anon_sym_declare] = ACTIONS(2592), - [anon_sym_public] = ACTIONS(2592), - [anon_sym_private] = ACTIONS(2592), - [anon_sym_protected] = ACTIONS(2592), - [anon_sym_override] = ACTIONS(2592), - [anon_sym_module] = ACTIONS(2592), - [anon_sym_any] = ACTIONS(2592), - [anon_sym_number] = ACTIONS(2592), - [anon_sym_boolean] = ACTIONS(2592), - [anon_sym_string] = ACTIONS(2592), - [anon_sym_symbol] = ACTIONS(2592), - [anon_sym_object] = ACTIONS(2592), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_interface] = ACTIONS(2592), - [anon_sym_enum] = ACTIONS(2592), - [sym_html_comment] = ACTIONS(5), - }, [806] = { [ts_builtin_sym_end] = ACTIONS(2590), [sym_identifier] = ACTIONS(2592), @@ -109175,6 +112536,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [810] = { + [ts_builtin_sym_end] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1887), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_default] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_namespace] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_typeof] = ACTIONS(1887), + [anon_sym_import] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1887), + [anon_sym_var] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1885), + [anon_sym_else] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_switch] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_await] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_debugger] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_throw] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_case] = ACTIONS(1887), + [anon_sym_yield] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1885), + [sym_glimmer_opening_tag] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [anon_sym_SQUOTE] = ACTIONS(1885), + [anon_sym_class] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_function] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1887), + [anon_sym_using] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_void] = ACTIONS(1887), + [anon_sym_delete] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1885), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1885), + [sym_number] = ACTIONS(1885), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(1887), + [sym_super] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_null] = ACTIONS(1887), + [sym_undefined] = ACTIONS(1887), + [anon_sym_AT] = ACTIONS(1885), + [anon_sym_static] = ACTIONS(1887), + [anon_sym_readonly] = ACTIONS(1887), + [anon_sym_get] = ACTIONS(1887), + [anon_sym_set] = ACTIONS(1887), + [anon_sym_declare] = ACTIONS(1887), + [anon_sym_public] = ACTIONS(1887), + [anon_sym_private] = ACTIONS(1887), + [anon_sym_protected] = ACTIONS(1887), + [anon_sym_override] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_any] = ACTIONS(1887), + [anon_sym_number] = ACTIONS(1887), + [anon_sym_boolean] = ACTIONS(1887), + [anon_sym_string] = ACTIONS(1887), + [anon_sym_symbol] = ACTIONS(1887), + [anon_sym_object] = ACTIONS(1887), + [anon_sym_abstract] = ACTIONS(1887), + [anon_sym_interface] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [sym_html_comment] = ACTIONS(5), + }, + [811] = { [ts_builtin_sym_end] = ACTIONS(2606), [sym_identifier] = ACTIONS(2608), [anon_sym_export] = ACTIONS(2608), @@ -109257,7 +112701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2608), [sym_html_comment] = ACTIONS(5), }, - [811] = { + [812] = { [ts_builtin_sym_end] = ACTIONS(2610), [sym_identifier] = ACTIONS(2612), [anon_sym_export] = ACTIONS(2612), @@ -109340,7 +112784,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2612), [sym_html_comment] = ACTIONS(5), }, - [812] = { + [813] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2568), + [anon_sym_export] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_type] = ACTIONS(2568), + [anon_sym_namespace] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_import] = ACTIONS(2568), + [anon_sym_with] = ACTIONS(2568), + [anon_sym_var] = ACTIONS(2568), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_await] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_try] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_debugger] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_throw] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_yield] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2566), + [sym_glimmer_opening_tag] = ACTIONS(2566), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_class] = ACTIONS(2568), + [anon_sym_async] = ACTIONS(2568), + [anon_sym_function] = ACTIONS(2568), + [anon_sym_new] = ACTIONS(2568), + [anon_sym_using] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_void] = ACTIONS(2568), + [anon_sym_delete] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2566), + [sym_number] = ACTIONS(2566), + [sym_private_property_identifier] = ACTIONS(2566), + [sym_this] = ACTIONS(2568), + [sym_super] = ACTIONS(2568), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [sym_null] = ACTIONS(2568), + [sym_undefined] = ACTIONS(2568), + [anon_sym_AT] = ACTIONS(2566), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_readonly] = ACTIONS(2568), + [anon_sym_get] = ACTIONS(2568), + [anon_sym_set] = ACTIONS(2568), + [anon_sym_declare] = ACTIONS(2568), + [anon_sym_public] = ACTIONS(2568), + [anon_sym_private] = ACTIONS(2568), + [anon_sym_protected] = ACTIONS(2568), + [anon_sym_override] = ACTIONS(2568), + [anon_sym_module] = ACTIONS(2568), + [anon_sym_any] = ACTIONS(2568), + [anon_sym_number] = ACTIONS(2568), + [anon_sym_boolean] = ACTIONS(2568), + [anon_sym_string] = ACTIONS(2568), + [anon_sym_symbol] = ACTIONS(2568), + [anon_sym_object] = ACTIONS(2568), + [anon_sym_abstract] = ACTIONS(2568), + [anon_sym_interface] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [sym_html_comment] = ACTIONS(5), + }, + [814] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2568), + [anon_sym_export] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_type] = ACTIONS(2568), + [anon_sym_namespace] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_import] = ACTIONS(2568), + [anon_sym_with] = ACTIONS(2568), + [anon_sym_var] = ACTIONS(2568), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_await] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_try] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_debugger] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_throw] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_yield] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2566), + [sym_glimmer_opening_tag] = ACTIONS(2566), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_class] = ACTIONS(2568), + [anon_sym_async] = ACTIONS(2568), + [anon_sym_function] = ACTIONS(2568), + [anon_sym_new] = ACTIONS(2568), + [anon_sym_using] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_void] = ACTIONS(2568), + [anon_sym_delete] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2566), + [sym_number] = ACTIONS(2566), + [sym_private_property_identifier] = ACTIONS(2566), + [sym_this] = ACTIONS(2568), + [sym_super] = ACTIONS(2568), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [sym_null] = ACTIONS(2568), + [sym_undefined] = ACTIONS(2568), + [anon_sym_AT] = ACTIONS(2566), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_readonly] = ACTIONS(2568), + [anon_sym_get] = ACTIONS(2568), + [anon_sym_set] = ACTIONS(2568), + [anon_sym_declare] = ACTIONS(2568), + [anon_sym_public] = ACTIONS(2568), + [anon_sym_private] = ACTIONS(2568), + [anon_sym_protected] = ACTIONS(2568), + [anon_sym_override] = ACTIONS(2568), + [anon_sym_module] = ACTIONS(2568), + [anon_sym_any] = ACTIONS(2568), + [anon_sym_number] = ACTIONS(2568), + [anon_sym_boolean] = ACTIONS(2568), + [anon_sym_string] = ACTIONS(2568), + [anon_sym_symbol] = ACTIONS(2568), + [anon_sym_object] = ACTIONS(2568), + [anon_sym_abstract] = ACTIONS(2568), + [anon_sym_interface] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [sym_html_comment] = ACTIONS(5), + }, + [815] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2568), + [anon_sym_export] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_type] = ACTIONS(2568), + [anon_sym_namespace] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_import] = ACTIONS(2568), + [anon_sym_with] = ACTIONS(2568), + [anon_sym_var] = ACTIONS(2568), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_await] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_try] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_debugger] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_throw] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_yield] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2566), + [sym_glimmer_opening_tag] = ACTIONS(2566), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_class] = ACTIONS(2568), + [anon_sym_async] = ACTIONS(2568), + [anon_sym_function] = ACTIONS(2568), + [anon_sym_new] = ACTIONS(2568), + [anon_sym_using] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_void] = ACTIONS(2568), + [anon_sym_delete] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2566), + [sym_number] = ACTIONS(2566), + [sym_private_property_identifier] = ACTIONS(2566), + [sym_this] = ACTIONS(2568), + [sym_super] = ACTIONS(2568), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [sym_null] = ACTIONS(2568), + [sym_undefined] = ACTIONS(2568), + [anon_sym_AT] = ACTIONS(2566), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_readonly] = ACTIONS(2568), + [anon_sym_get] = ACTIONS(2568), + [anon_sym_set] = ACTIONS(2568), + [anon_sym_declare] = ACTIONS(2568), + [anon_sym_public] = ACTIONS(2568), + [anon_sym_private] = ACTIONS(2568), + [anon_sym_protected] = ACTIONS(2568), + [anon_sym_override] = ACTIONS(2568), + [anon_sym_module] = ACTIONS(2568), + [anon_sym_any] = ACTIONS(2568), + [anon_sym_number] = ACTIONS(2568), + [anon_sym_boolean] = ACTIONS(2568), + [anon_sym_string] = ACTIONS(2568), + [anon_sym_symbol] = ACTIONS(2568), + [anon_sym_object] = ACTIONS(2568), + [anon_sym_abstract] = ACTIONS(2568), + [anon_sym_interface] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [sym_html_comment] = ACTIONS(5), + }, + [816] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2568), + [anon_sym_export] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_type] = ACTIONS(2568), + [anon_sym_namespace] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_import] = ACTIONS(2568), + [anon_sym_with] = ACTIONS(2568), + [anon_sym_var] = ACTIONS(2568), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_await] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_try] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_debugger] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_throw] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_yield] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2566), + [sym_glimmer_opening_tag] = ACTIONS(2566), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_class] = ACTIONS(2568), + [anon_sym_async] = ACTIONS(2568), + [anon_sym_function] = ACTIONS(2568), + [anon_sym_new] = ACTIONS(2568), + [anon_sym_using] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_void] = ACTIONS(2568), + [anon_sym_delete] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2566), + [sym_number] = ACTIONS(2566), + [sym_private_property_identifier] = ACTIONS(2566), + [sym_this] = ACTIONS(2568), + [sym_super] = ACTIONS(2568), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [sym_null] = ACTIONS(2568), + [sym_undefined] = ACTIONS(2568), + [anon_sym_AT] = ACTIONS(2566), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_readonly] = ACTIONS(2568), + [anon_sym_get] = ACTIONS(2568), + [anon_sym_set] = ACTIONS(2568), + [anon_sym_declare] = ACTIONS(2568), + [anon_sym_public] = ACTIONS(2568), + [anon_sym_private] = ACTIONS(2568), + [anon_sym_protected] = ACTIONS(2568), + [anon_sym_override] = ACTIONS(2568), + [anon_sym_module] = ACTIONS(2568), + [anon_sym_any] = ACTIONS(2568), + [anon_sym_number] = ACTIONS(2568), + [anon_sym_boolean] = ACTIONS(2568), + [anon_sym_string] = ACTIONS(2568), + [anon_sym_symbol] = ACTIONS(2568), + [anon_sym_object] = ACTIONS(2568), + [anon_sym_abstract] = ACTIONS(2568), + [anon_sym_interface] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [sym_html_comment] = ACTIONS(5), + }, + [817] = { [ts_builtin_sym_end] = ACTIONS(2614), [sym_identifier] = ACTIONS(2616), [anon_sym_export] = ACTIONS(2616), @@ -109423,90 +113199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2616), [sym_html_comment] = ACTIONS(5), }, - [813] = { - [ts_builtin_sym_end] = ACTIONS(2618), - [sym_identifier] = ACTIONS(2620), - [anon_sym_export] = ACTIONS(2620), - [anon_sym_default] = ACTIONS(2620), - [anon_sym_type] = ACTIONS(2620), - [anon_sym_namespace] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_typeof] = ACTIONS(2620), - [anon_sym_import] = ACTIONS(2620), - [anon_sym_with] = ACTIONS(2620), - [anon_sym_var] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_const] = ACTIONS(2620), - [anon_sym_BANG] = ACTIONS(2618), - [anon_sym_else] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_switch] = ACTIONS(2620), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_await] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_break] = ACTIONS(2620), - [anon_sym_continue] = ACTIONS(2620), - [anon_sym_debugger] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_throw] = ACTIONS(2620), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_case] = ACTIONS(2620), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2618), - [sym_glimmer_opening_tag] = ACTIONS(2618), - [anon_sym_DQUOTE] = ACTIONS(2618), - [anon_sym_SQUOTE] = ACTIONS(2618), - [anon_sym_class] = ACTIONS(2620), - [anon_sym_async] = ACTIONS(2620), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_using] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_void] = ACTIONS(2620), - [anon_sym_delete] = ACTIONS(2620), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2618), - [sym_number] = ACTIONS(2618), - [sym_private_property_identifier] = ACTIONS(2618), - [sym_this] = ACTIONS(2620), - [sym_super] = ACTIONS(2620), - [sym_true] = ACTIONS(2620), - [sym_false] = ACTIONS(2620), - [sym_null] = ACTIONS(2620), - [sym_undefined] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2618), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_readonly] = ACTIONS(2620), - [anon_sym_get] = ACTIONS(2620), - [anon_sym_set] = ACTIONS(2620), - [anon_sym_declare] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_protected] = ACTIONS(2620), - [anon_sym_override] = ACTIONS(2620), - [anon_sym_module] = ACTIONS(2620), - [anon_sym_any] = ACTIONS(2620), - [anon_sym_number] = ACTIONS(2620), - [anon_sym_boolean] = ACTIONS(2620), - [anon_sym_string] = ACTIONS(2620), - [anon_sym_symbol] = ACTIONS(2620), - [anon_sym_object] = ACTIONS(2620), - [anon_sym_abstract] = ACTIONS(2620), - [anon_sym_interface] = ACTIONS(2620), - [anon_sym_enum] = ACTIONS(2620), - [sym_html_comment] = ACTIONS(5), - }, - [814] = { + [818] = { [ts_builtin_sym_end] = ACTIONS(2618), [sym_identifier] = ACTIONS(2620), [anon_sym_export] = ACTIONS(2620), @@ -109589,7 +113282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2620), [sym_html_comment] = ACTIONS(5), }, - [815] = { + [819] = { [ts_builtin_sym_end] = ACTIONS(2622), [sym_identifier] = ACTIONS(2624), [anon_sym_export] = ACTIONS(2624), @@ -109672,7 +113365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2624), [sym_html_comment] = ACTIONS(5), }, - [816] = { + [820] = { [ts_builtin_sym_end] = ACTIONS(2626), [sym_identifier] = ACTIONS(2628), [anon_sym_export] = ACTIONS(2628), @@ -109755,256 +113448,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2628), [sym_html_comment] = ACTIONS(5), }, - [817] = { - [ts_builtin_sym_end] = ACTIONS(2630), - [sym_identifier] = ACTIONS(2632), - [anon_sym_export] = ACTIONS(2632), - [anon_sym_default] = ACTIONS(2632), - [anon_sym_type] = ACTIONS(2632), - [anon_sym_namespace] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_RBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), - [anon_sym_import] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2632), - [anon_sym_var] = ACTIONS(2632), - [anon_sym_let] = ACTIONS(2632), - [anon_sym_const] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2630), - [anon_sym_else] = ACTIONS(2632), - [anon_sym_if] = ACTIONS(2632), - [anon_sym_switch] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2630), - [anon_sym_await] = ACTIONS(2632), - [anon_sym_while] = ACTIONS(2632), - [anon_sym_do] = ACTIONS(2632), - [anon_sym_try] = ACTIONS(2632), - [anon_sym_break] = ACTIONS(2632), - [anon_sym_continue] = ACTIONS(2632), - [anon_sym_debugger] = ACTIONS(2632), - [anon_sym_return] = ACTIONS(2632), - [anon_sym_throw] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [sym_glimmer_opening_tag] = ACTIONS(2630), - [anon_sym_DQUOTE] = ACTIONS(2630), - [anon_sym_SQUOTE] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_async] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_using] = ACTIONS(2632), - [anon_sym_PLUS] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2632), - [anon_sym_SLASH] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_void] = ACTIONS(2632), - [anon_sym_delete] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2630), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2630), - [sym_number] = ACTIONS(2630), - [sym_private_property_identifier] = ACTIONS(2630), - [sym_this] = ACTIONS(2632), - [sym_super] = ACTIONS(2632), - [sym_true] = ACTIONS(2632), - [sym_false] = ACTIONS(2632), - [sym_null] = ACTIONS(2632), - [sym_undefined] = ACTIONS(2632), - [anon_sym_AT] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_readonly] = ACTIONS(2632), - [anon_sym_get] = ACTIONS(2632), - [anon_sym_set] = ACTIONS(2632), - [anon_sym_declare] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_protected] = ACTIONS(2632), - [anon_sym_override] = ACTIONS(2632), - [anon_sym_module] = ACTIONS(2632), - [anon_sym_any] = ACTIONS(2632), - [anon_sym_number] = ACTIONS(2632), - [anon_sym_boolean] = ACTIONS(2632), - [anon_sym_string] = ACTIONS(2632), - [anon_sym_symbol] = ACTIONS(2632), - [anon_sym_object] = ACTIONS(2632), - [anon_sym_abstract] = ACTIONS(2632), - [anon_sym_interface] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [sym_html_comment] = ACTIONS(5), - }, - [818] = { - [ts_builtin_sym_end] = ACTIONS(2634), - [sym_identifier] = ACTIONS(2636), - [anon_sym_export] = ACTIONS(2636), - [anon_sym_default] = ACTIONS(2636), - [anon_sym_type] = ACTIONS(2636), - [anon_sym_namespace] = ACTIONS(2636), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_RBRACE] = ACTIONS(2634), - [anon_sym_typeof] = ACTIONS(2636), - [anon_sym_import] = ACTIONS(2636), - [anon_sym_with] = ACTIONS(2636), - [anon_sym_var] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2636), - [anon_sym_const] = ACTIONS(2636), - [anon_sym_BANG] = ACTIONS(2634), - [anon_sym_else] = ACTIONS(2636), - [anon_sym_if] = ACTIONS(2636), - [anon_sym_switch] = ACTIONS(2636), - [anon_sym_for] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_await] = ACTIONS(2636), - [anon_sym_while] = ACTIONS(2636), - [anon_sym_do] = ACTIONS(2636), - [anon_sym_try] = ACTIONS(2636), - [anon_sym_break] = ACTIONS(2636), - [anon_sym_continue] = ACTIONS(2636), - [anon_sym_debugger] = ACTIONS(2636), - [anon_sym_return] = ACTIONS(2636), - [anon_sym_throw] = ACTIONS(2636), - [anon_sym_SEMI] = ACTIONS(2634), - [anon_sym_case] = ACTIONS(2636), - [anon_sym_yield] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2634), - [sym_glimmer_opening_tag] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_SQUOTE] = ACTIONS(2634), - [anon_sym_class] = ACTIONS(2636), - [anon_sym_async] = ACTIONS(2636), - [anon_sym_function] = ACTIONS(2636), - [anon_sym_new] = ACTIONS(2636), - [anon_sym_using] = ACTIONS(2636), - [anon_sym_PLUS] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2636), - [anon_sym_SLASH] = ACTIONS(2636), - [anon_sym_LT] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2634), - [anon_sym_void] = ACTIONS(2636), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_PLUS_PLUS] = ACTIONS(2634), - [anon_sym_DASH_DASH] = ACTIONS(2634), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2634), - [sym_number] = ACTIONS(2634), - [sym_private_property_identifier] = ACTIONS(2634), - [sym_this] = ACTIONS(2636), - [sym_super] = ACTIONS(2636), - [sym_true] = ACTIONS(2636), - [sym_false] = ACTIONS(2636), - [sym_null] = ACTIONS(2636), - [sym_undefined] = ACTIONS(2636), - [anon_sym_AT] = ACTIONS(2634), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_readonly] = ACTIONS(2636), - [anon_sym_get] = ACTIONS(2636), - [anon_sym_set] = ACTIONS(2636), - [anon_sym_declare] = ACTIONS(2636), - [anon_sym_public] = ACTIONS(2636), - [anon_sym_private] = ACTIONS(2636), - [anon_sym_protected] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2636), - [anon_sym_module] = ACTIONS(2636), - [anon_sym_any] = ACTIONS(2636), - [anon_sym_number] = ACTIONS(2636), - [anon_sym_boolean] = ACTIONS(2636), - [anon_sym_string] = ACTIONS(2636), - [anon_sym_symbol] = ACTIONS(2636), - [anon_sym_object] = ACTIONS(2636), - [anon_sym_abstract] = ACTIONS(2636), - [anon_sym_interface] = ACTIONS(2636), - [anon_sym_enum] = ACTIONS(2636), - [sym_html_comment] = ACTIONS(5), - }, - [819] = { - [ts_builtin_sym_end] = ACTIONS(2638), - [sym_identifier] = ACTIONS(2640), - [anon_sym_export] = ACTIONS(2640), - [anon_sym_default] = ACTIONS(2640), - [anon_sym_type] = ACTIONS(2640), - [anon_sym_namespace] = ACTIONS(2640), - [anon_sym_LBRACE] = ACTIONS(2638), - [anon_sym_RBRACE] = ACTIONS(2638), - [anon_sym_typeof] = ACTIONS(2640), - [anon_sym_import] = ACTIONS(2640), - [anon_sym_with] = ACTIONS(2640), - [anon_sym_var] = ACTIONS(2640), - [anon_sym_let] = ACTIONS(2640), - [anon_sym_const] = ACTIONS(2640), - [anon_sym_BANG] = ACTIONS(2638), - [anon_sym_else] = ACTIONS(2640), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_switch] = ACTIONS(2640), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_await] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_do] = ACTIONS(2640), - [anon_sym_try] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_debugger] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_throw] = ACTIONS(2640), - [anon_sym_SEMI] = ACTIONS(2638), - [anon_sym_case] = ACTIONS(2640), - [anon_sym_yield] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2638), - [sym_glimmer_opening_tag] = ACTIONS(2638), - [anon_sym_DQUOTE] = ACTIONS(2638), - [anon_sym_SQUOTE] = ACTIONS(2638), - [anon_sym_class] = ACTIONS(2640), - [anon_sym_async] = ACTIONS(2640), - [anon_sym_function] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2640), - [anon_sym_using] = ACTIONS(2640), - [anon_sym_PLUS] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2640), - [anon_sym_SLASH] = ACTIONS(2640), + [821] = { + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(6006), + [sym_optional_tuple_parameter] = STATE(6006), + [sym_optional_type] = STATE(6006), + [sym_rest_type] = STATE(6006), + [sym__tuple_type_member] = STATE(6006), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), [anon_sym_LT] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2638), - [anon_sym_void] = ACTIONS(2640), - [anon_sym_delete] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2638), - [anon_sym_DASH_DASH] = ACTIONS(2638), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2638), - [sym_number] = ACTIONS(2638), - [sym_private_property_identifier] = ACTIONS(2638), - [sym_this] = ACTIONS(2640), - [sym_super] = ACTIONS(2640), - [sym_true] = ACTIONS(2640), - [sym_false] = ACTIONS(2640), - [sym_null] = ACTIONS(2640), - [sym_undefined] = ACTIONS(2640), - [anon_sym_AT] = ACTIONS(2638), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_readonly] = ACTIONS(2640), - [anon_sym_get] = ACTIONS(2640), - [anon_sym_set] = ACTIONS(2640), - [anon_sym_declare] = ACTIONS(2640), - [anon_sym_public] = ACTIONS(2640), - [anon_sym_private] = ACTIONS(2640), - [anon_sym_protected] = ACTIONS(2640), - [anon_sym_override] = ACTIONS(2640), - [anon_sym_module] = ACTIONS(2640), - [anon_sym_any] = ACTIONS(2640), - [anon_sym_number] = ACTIONS(2640), - [anon_sym_boolean] = ACTIONS(2640), - [anon_sym_string] = ACTIONS(2640), - [anon_sym_symbol] = ACTIONS(2640), - [anon_sym_object] = ACTIONS(2640), - [anon_sym_abstract] = ACTIONS(2640), - [anon_sym_interface] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, - [820] = { + [822] = { [ts_builtin_sym_end] = ACTIONS(2642), [sym_identifier] = ACTIONS(2644), [anon_sym_export] = ACTIONS(2644), @@ -110087,7 +113614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2644), [sym_html_comment] = ACTIONS(5), }, - [821] = { + [823] = { [ts_builtin_sym_end] = ACTIONS(2646), [sym_identifier] = ACTIONS(2648), [anon_sym_export] = ACTIONS(2648), @@ -110170,7 +113697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2648), [sym_html_comment] = ACTIONS(5), }, - [822] = { + [824] = { [ts_builtin_sym_end] = ACTIONS(2650), [sym_identifier] = ACTIONS(2652), [anon_sym_export] = ACTIONS(2652), @@ -110253,7 +113780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2652), [sym_html_comment] = ACTIONS(5), }, - [823] = { + [825] = { [ts_builtin_sym_end] = ACTIONS(2654), [sym_identifier] = ACTIONS(2656), [anon_sym_export] = ACTIONS(2656), @@ -110336,7 +113863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2656), [sym_html_comment] = ACTIONS(5), }, - [824] = { + [826] = { [ts_builtin_sym_end] = ACTIONS(2658), [sym_identifier] = ACTIONS(2660), [anon_sym_export] = ACTIONS(2660), @@ -110419,7 +113946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2660), [sym_html_comment] = ACTIONS(5), }, - [825] = { + [827] = { [ts_builtin_sym_end] = ACTIONS(2662), [sym_identifier] = ACTIONS(2664), [anon_sym_export] = ACTIONS(2664), @@ -110502,7 +114029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2664), [sym_html_comment] = ACTIONS(5), }, - [826] = { + [828] = { [ts_builtin_sym_end] = ACTIONS(2666), [sym_identifier] = ACTIONS(2668), [anon_sym_export] = ACTIONS(2668), @@ -110585,90 +114112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2668), [sym_html_comment] = ACTIONS(5), }, - [827] = { - [ts_builtin_sym_end] = ACTIONS(1827), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1829), - [anon_sym_default] = ACTIONS(1829), - [anon_sym_type] = ACTIONS(1829), - [anon_sym_namespace] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_typeof] = ACTIONS(1829), - [anon_sym_import] = ACTIONS(1829), - [anon_sym_with] = ACTIONS(1829), - [anon_sym_var] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_else] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_switch] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_await] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_do] = ACTIONS(1829), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_debugger] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_throw] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_case] = ACTIONS(1829), - [anon_sym_yield] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1827), - [sym_glimmer_opening_tag] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1829), - [anon_sym_async] = ACTIONS(1829), - [anon_sym_function] = ACTIONS(1829), - [anon_sym_new] = ACTIONS(1829), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_SLASH] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_void] = ACTIONS(1829), - [anon_sym_delete] = ACTIONS(1829), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [sym_private_property_identifier] = ACTIONS(1827), - [sym_this] = ACTIONS(1829), - [sym_super] = ACTIONS(1829), - [sym_true] = ACTIONS(1829), - [sym_false] = ACTIONS(1829), - [sym_null] = ACTIONS(1829), - [sym_undefined] = ACTIONS(1829), - [anon_sym_AT] = ACTIONS(1827), - [anon_sym_static] = ACTIONS(1829), - [anon_sym_readonly] = ACTIONS(1829), - [anon_sym_get] = ACTIONS(1829), - [anon_sym_set] = ACTIONS(1829), - [anon_sym_declare] = ACTIONS(1829), - [anon_sym_public] = ACTIONS(1829), - [anon_sym_private] = ACTIONS(1829), - [anon_sym_protected] = ACTIONS(1829), - [anon_sym_override] = ACTIONS(1829), - [anon_sym_module] = ACTIONS(1829), - [anon_sym_any] = ACTIONS(1829), - [anon_sym_number] = ACTIONS(1829), - [anon_sym_boolean] = ACTIONS(1829), - [anon_sym_string] = ACTIONS(1829), - [anon_sym_symbol] = ACTIONS(1829), - [anon_sym_object] = ACTIONS(1829), - [anon_sym_abstract] = ACTIONS(1829), - [anon_sym_interface] = ACTIONS(1829), - [anon_sym_enum] = ACTIONS(1829), - [sym_html_comment] = ACTIONS(5), - }, - [828] = { + [829] = { [ts_builtin_sym_end] = ACTIONS(2670), [sym_identifier] = ACTIONS(2672), [anon_sym_export] = ACTIONS(2672), @@ -110751,7 +114195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2672), [sym_html_comment] = ACTIONS(5), }, - [829] = { + [830] = { [ts_builtin_sym_end] = ACTIONS(2674), [sym_identifier] = ACTIONS(2676), [anon_sym_export] = ACTIONS(2676), @@ -110834,89 +114278,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2676), [sym_html_comment] = ACTIONS(5), }, - [830] = { - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_export] = ACTIONS(2680), - [anon_sym_default] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_typeof] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_with] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_switch] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_await] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_debugger] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_throw] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_yield] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [sym_glimmer_opening_tag] = ACTIONS(2678), - [anon_sym_DQUOTE] = ACTIONS(2678), - [anon_sym_SQUOTE] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_function] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_using] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2678), - [anon_sym_void] = ACTIONS(2680), - [anon_sym_delete] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2678), - [sym_number] = ACTIONS(2678), - [sym_private_property_identifier] = ACTIONS(2678), - [sym_this] = ACTIONS(2680), - [sym_super] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_null] = ACTIONS(2680), - [sym_undefined] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_readonly] = ACTIONS(2680), - [anon_sym_get] = ACTIONS(2680), - [anon_sym_set] = ACTIONS(2680), - [anon_sym_declare] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_protected] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_module] = ACTIONS(2680), - [anon_sym_any] = ACTIONS(2680), - [anon_sym_number] = ACTIONS(2680), - [anon_sym_boolean] = ACTIONS(2680), - [anon_sym_string] = ACTIONS(2680), - [anon_sym_symbol] = ACTIONS(2680), - [anon_sym_object] = ACTIONS(2680), - [anon_sym_abstract] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [sym_html_comment] = ACTIONS(5), - }, [831] = { [ts_builtin_sym_end] = ACTIONS(2678), [sym_identifier] = ACTIONS(2680), @@ -111001,172 +114362,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [832] = { - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_typeof] = ACTIONS(1837), - [anon_sym_import] = ACTIONS(1837), - [anon_sym_with] = ACTIONS(1837), - [anon_sym_var] = ACTIONS(1837), - [anon_sym_let] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_switch] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_do] = ACTIONS(1837), - [anon_sym_try] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_debugger] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_throw] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [sym_glimmer_opening_tag] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1837), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_function] = ACTIONS(1837), - [anon_sym_new] = ACTIONS(1837), - [anon_sym_using] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_void] = ACTIONS(1837), - [anon_sym_delete] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1835), - [sym_number] = ACTIONS(1835), - [sym_private_property_identifier] = ACTIONS(1835), - [sym_this] = ACTIONS(1837), - [sym_super] = ACTIONS(1837), - [sym_true] = ACTIONS(1837), - [sym_false] = ACTIONS(1837), - [sym_null] = ACTIONS(1837), - [sym_undefined] = ACTIONS(1837), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_readonly] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1837), - [anon_sym_set] = ACTIONS(1837), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_override] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [anon_sym_object] = ACTIONS(1837), - [anon_sym_abstract] = ACTIONS(1837), - [anon_sym_interface] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), - [sym_html_comment] = ACTIONS(5), - }, - [833] = { - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_export] = ACTIONS(2680), - [anon_sym_default] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_typeof] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_with] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_switch] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_await] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_debugger] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_throw] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_yield] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [sym_glimmer_opening_tag] = ACTIONS(2678), - [anon_sym_DQUOTE] = ACTIONS(2678), - [anon_sym_SQUOTE] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_function] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_using] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2678), - [anon_sym_void] = ACTIONS(2680), - [anon_sym_delete] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2678), - [sym_number] = ACTIONS(2678), - [sym_private_property_identifier] = ACTIONS(2678), - [sym_this] = ACTIONS(2680), - [sym_super] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_null] = ACTIONS(2680), - [sym_undefined] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_readonly] = ACTIONS(2680), - [anon_sym_get] = ACTIONS(2680), - [anon_sym_set] = ACTIONS(2680), - [anon_sym_declare] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_protected] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_module] = ACTIONS(2680), - [anon_sym_any] = ACTIONS(2680), - [anon_sym_number] = ACTIONS(2680), - [anon_sym_boolean] = ACTIONS(2680), - [anon_sym_string] = ACTIONS(2680), - [anon_sym_symbol] = ACTIONS(2680), - [anon_sym_object] = ACTIONS(2680), - [anon_sym_abstract] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [sym_html_comment] = ACTIONS(5), - }, - [834] = { [ts_builtin_sym_end] = ACTIONS(2682), [sym_identifier] = ACTIONS(2684), [anon_sym_export] = ACTIONS(2684), @@ -111249,7 +114444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2684), [sym_html_comment] = ACTIONS(5), }, - [835] = { + [833] = { [ts_builtin_sym_end] = ACTIONS(2686), [sym_identifier] = ACTIONS(2688), [anon_sym_export] = ACTIONS(2688), @@ -111332,7 +114527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2688), [sym_html_comment] = ACTIONS(5), }, - [836] = { + [834] = { [ts_builtin_sym_end] = ACTIONS(2690), [sym_identifier] = ACTIONS(2692), [anon_sym_export] = ACTIONS(2692), @@ -111415,90 +114610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2692), [sym_html_comment] = ACTIONS(5), }, - [837] = { - [ts_builtin_sym_end] = ACTIONS(2694), - [sym_identifier] = ACTIONS(2696), - [anon_sym_export] = ACTIONS(2696), - [anon_sym_default] = ACTIONS(2696), - [anon_sym_type] = ACTIONS(2696), - [anon_sym_namespace] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(2696), - [anon_sym_import] = ACTIONS(2696), - [anon_sym_with] = ACTIONS(2696), - [anon_sym_var] = ACTIONS(2696), - [anon_sym_let] = ACTIONS(2696), - [anon_sym_const] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_else] = ACTIONS(2696), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_switch] = ACTIONS(2696), - [anon_sym_for] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_await] = ACTIONS(2696), - [anon_sym_while] = ACTIONS(2696), - [anon_sym_do] = ACTIONS(2696), - [anon_sym_try] = ACTIONS(2696), - [anon_sym_break] = ACTIONS(2696), - [anon_sym_continue] = ACTIONS(2696), - [anon_sym_debugger] = ACTIONS(2696), - [anon_sym_return] = ACTIONS(2696), - [anon_sym_throw] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2694), - [anon_sym_case] = ACTIONS(2696), - [anon_sym_yield] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2694), - [sym_glimmer_opening_tag] = ACTIONS(2694), - [anon_sym_DQUOTE] = ACTIONS(2694), - [anon_sym_SQUOTE] = ACTIONS(2694), - [anon_sym_class] = ACTIONS(2696), - [anon_sym_async] = ACTIONS(2696), - [anon_sym_function] = ACTIONS(2696), - [anon_sym_new] = ACTIONS(2696), - [anon_sym_using] = ACTIONS(2696), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_SLASH] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_void] = ACTIONS(2696), - [anon_sym_delete] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2694), - [sym_number] = ACTIONS(2694), - [sym_private_property_identifier] = ACTIONS(2694), - [sym_this] = ACTIONS(2696), - [sym_super] = ACTIONS(2696), - [sym_true] = ACTIONS(2696), - [sym_false] = ACTIONS(2696), - [sym_null] = ACTIONS(2696), - [sym_undefined] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_static] = ACTIONS(2696), - [anon_sym_readonly] = ACTIONS(2696), - [anon_sym_get] = ACTIONS(2696), - [anon_sym_set] = ACTIONS(2696), - [anon_sym_declare] = ACTIONS(2696), - [anon_sym_public] = ACTIONS(2696), - [anon_sym_private] = ACTIONS(2696), - [anon_sym_protected] = ACTIONS(2696), - [anon_sym_override] = ACTIONS(2696), - [anon_sym_module] = ACTIONS(2696), - [anon_sym_any] = ACTIONS(2696), - [anon_sym_number] = ACTIONS(2696), - [anon_sym_boolean] = ACTIONS(2696), - [anon_sym_string] = ACTIONS(2696), - [anon_sym_symbol] = ACTIONS(2696), - [anon_sym_object] = ACTIONS(2696), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_interface] = ACTIONS(2696), - [anon_sym_enum] = ACTIONS(2696), - [sym_html_comment] = ACTIONS(5), - }, - [838] = { + [835] = { [ts_builtin_sym_end] = ACTIONS(2694), [sym_identifier] = ACTIONS(2696), [anon_sym_export] = ACTIONS(2696), @@ -111581,256 +114693,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2696), [sym_html_comment] = ACTIONS(5), }, - [839] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4576), - [sym_optional_tuple_parameter] = STATE(4576), - [sym_optional_type] = STATE(4576), - [sym_rest_type] = STATE(4576), - [sym__tuple_type_member] = STATE(4576), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(2702), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [836] = { + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_export] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_type] = ACTIONS(2700), + [anon_sym_namespace] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_import] = ACTIONS(2700), + [anon_sym_with] = ACTIONS(2700), + [anon_sym_var] = ACTIONS(2700), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_else] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_await] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_debugger] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_throw] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_yield] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [sym_glimmer_opening_tag] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_class] = ACTIONS(2700), + [anon_sym_async] = ACTIONS(2700), + [anon_sym_function] = ACTIONS(2700), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_using] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_TILDE] = ACTIONS(2698), + [anon_sym_void] = ACTIONS(2700), + [anon_sym_delete] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2698), + [sym_number] = ACTIONS(2698), + [sym_private_property_identifier] = ACTIONS(2698), + [sym_this] = ACTIONS(2700), + [sym_super] = ACTIONS(2700), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [sym_null] = ACTIONS(2700), + [sym_undefined] = ACTIONS(2700), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_readonly] = ACTIONS(2700), + [anon_sym_get] = ACTIONS(2700), + [anon_sym_set] = ACTIONS(2700), + [anon_sym_declare] = ACTIONS(2700), + [anon_sym_public] = ACTIONS(2700), + [anon_sym_private] = ACTIONS(2700), + [anon_sym_protected] = ACTIONS(2700), + [anon_sym_override] = ACTIONS(2700), + [anon_sym_module] = ACTIONS(2700), + [anon_sym_any] = ACTIONS(2700), + [anon_sym_number] = ACTIONS(2700), + [anon_sym_boolean] = ACTIONS(2700), + [anon_sym_string] = ACTIONS(2700), + [anon_sym_symbol] = ACTIONS(2700), + [anon_sym_object] = ACTIONS(2700), + [anon_sym_abstract] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), [sym_html_comment] = ACTIONS(5), }, - [840] = { - [ts_builtin_sym_end] = ACTIONS(2694), - [sym_identifier] = ACTIONS(2696), - [anon_sym_export] = ACTIONS(2696), - [anon_sym_default] = ACTIONS(2696), - [anon_sym_type] = ACTIONS(2696), - [anon_sym_namespace] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(2696), - [anon_sym_import] = ACTIONS(2696), - [anon_sym_with] = ACTIONS(2696), - [anon_sym_var] = ACTIONS(2696), - [anon_sym_let] = ACTIONS(2696), - [anon_sym_const] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_else] = ACTIONS(2696), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_switch] = ACTIONS(2696), - [anon_sym_for] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_await] = ACTIONS(2696), - [anon_sym_while] = ACTIONS(2696), - [anon_sym_do] = ACTIONS(2696), - [anon_sym_try] = ACTIONS(2696), - [anon_sym_break] = ACTIONS(2696), - [anon_sym_continue] = ACTIONS(2696), - [anon_sym_debugger] = ACTIONS(2696), - [anon_sym_return] = ACTIONS(2696), - [anon_sym_throw] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2694), - [anon_sym_case] = ACTIONS(2696), - [anon_sym_yield] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2694), - [sym_glimmer_opening_tag] = ACTIONS(2694), - [anon_sym_DQUOTE] = ACTIONS(2694), - [anon_sym_SQUOTE] = ACTIONS(2694), - [anon_sym_class] = ACTIONS(2696), - [anon_sym_async] = ACTIONS(2696), - [anon_sym_function] = ACTIONS(2696), - [anon_sym_new] = ACTIONS(2696), - [anon_sym_using] = ACTIONS(2696), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_SLASH] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_void] = ACTIONS(2696), - [anon_sym_delete] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2694), - [sym_number] = ACTIONS(2694), - [sym_private_property_identifier] = ACTIONS(2694), - [sym_this] = ACTIONS(2696), - [sym_super] = ACTIONS(2696), - [sym_true] = ACTIONS(2696), - [sym_false] = ACTIONS(2696), - [sym_null] = ACTIONS(2696), - [sym_undefined] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_static] = ACTIONS(2696), - [anon_sym_readonly] = ACTIONS(2696), - [anon_sym_get] = ACTIONS(2696), - [anon_sym_set] = ACTIONS(2696), - [anon_sym_declare] = ACTIONS(2696), - [anon_sym_public] = ACTIONS(2696), - [anon_sym_private] = ACTIONS(2696), - [anon_sym_protected] = ACTIONS(2696), - [anon_sym_override] = ACTIONS(2696), - [anon_sym_module] = ACTIONS(2696), - [anon_sym_any] = ACTIONS(2696), - [anon_sym_number] = ACTIONS(2696), - [anon_sym_boolean] = ACTIONS(2696), - [anon_sym_string] = ACTIONS(2696), - [anon_sym_symbol] = ACTIONS(2696), - [anon_sym_object] = ACTIONS(2696), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_interface] = ACTIONS(2696), - [anon_sym_enum] = ACTIONS(2696), + [837] = { + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_export] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_namespace] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_typeof] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_with] = ACTIONS(2704), + [anon_sym_var] = ACTIONS(2704), + [anon_sym_let] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_await] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_debugger] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_throw] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_case] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2702), + [sym_glimmer_opening_tag] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_class] = ACTIONS(2704), + [anon_sym_async] = ACTIONS(2704), + [anon_sym_function] = ACTIONS(2704), + [anon_sym_new] = ACTIONS(2704), + [anon_sym_using] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_delete] = ACTIONS(2704), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2702), + [sym_number] = ACTIONS(2702), + [sym_private_property_identifier] = ACTIONS(2702), + [sym_this] = ACTIONS(2704), + [sym_super] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_null] = ACTIONS(2704), + [sym_undefined] = ACTIONS(2704), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_readonly] = ACTIONS(2704), + [anon_sym_get] = ACTIONS(2704), + [anon_sym_set] = ACTIONS(2704), + [anon_sym_declare] = ACTIONS(2704), + [anon_sym_public] = ACTIONS(2704), + [anon_sym_private] = ACTIONS(2704), + [anon_sym_protected] = ACTIONS(2704), + [anon_sym_override] = ACTIONS(2704), + [anon_sym_module] = ACTIONS(2704), + [anon_sym_any] = ACTIONS(2704), + [anon_sym_number] = ACTIONS(2704), + [anon_sym_boolean] = ACTIONS(2704), + [anon_sym_string] = ACTIONS(2704), + [anon_sym_symbol] = ACTIONS(2704), + [anon_sym_object] = ACTIONS(2704), + [anon_sym_abstract] = ACTIONS(2704), + [anon_sym_interface] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), [sym_html_comment] = ACTIONS(5), }, - [841] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_typeof] = ACTIONS(1903), - [anon_sym_import] = ACTIONS(1903), - [anon_sym_with] = ACTIONS(1903), - [anon_sym_var] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_await] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_debugger] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_case] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1901), - [sym_glimmer_opening_tag] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_class] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_function] = ACTIONS(1903), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_using] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_SLASH] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_void] = ACTIONS(1903), - [anon_sym_delete] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1901), - [sym_number] = ACTIONS(1901), - [sym_private_property_identifier] = ACTIONS(1901), - [sym_this] = ACTIONS(1903), - [sym_super] = ACTIONS(1903), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_null] = ACTIONS(1903), - [sym_undefined] = ACTIONS(1903), - [anon_sym_AT] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(1903), - [anon_sym_get] = ACTIONS(1903), - [anon_sym_set] = ACTIONS(1903), - [anon_sym_declare] = ACTIONS(1903), - [anon_sym_public] = ACTIONS(1903), - [anon_sym_private] = ACTIONS(1903), - [anon_sym_protected] = ACTIONS(1903), - [anon_sym_override] = ACTIONS(1903), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1903), - [anon_sym_number] = ACTIONS(1903), - [anon_sym_boolean] = ACTIONS(1903), - [anon_sym_string] = ACTIONS(1903), - [anon_sym_symbol] = ACTIONS(1903), - [anon_sym_object] = ACTIONS(1903), - [anon_sym_abstract] = ACTIONS(1903), - [anon_sym_interface] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), + [838] = { + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_identifier] = ACTIONS(2708), + [anon_sym_export] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_namespace] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_typeof] = ACTIONS(2708), + [anon_sym_import] = ACTIONS(2708), + [anon_sym_with] = ACTIONS(2708), + [anon_sym_var] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_const] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_switch] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_await] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_debugger] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_throw] = ACTIONS(2708), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_case] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [sym_glimmer_opening_tag] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2706), + [anon_sym_class] = ACTIONS(2708), + [anon_sym_async] = ACTIONS(2708), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_using] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_delete] = ACTIONS(2708), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2706), + [sym_number] = ACTIONS(2706), + [sym_private_property_identifier] = ACTIONS(2706), + [sym_this] = ACTIONS(2708), + [sym_super] = ACTIONS(2708), + [sym_true] = ACTIONS(2708), + [sym_false] = ACTIONS(2708), + [sym_null] = ACTIONS(2708), + [sym_undefined] = ACTIONS(2708), + [anon_sym_AT] = ACTIONS(2706), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_readonly] = ACTIONS(2708), + [anon_sym_get] = ACTIONS(2708), + [anon_sym_set] = ACTIONS(2708), + [anon_sym_declare] = ACTIONS(2708), + [anon_sym_public] = ACTIONS(2708), + [anon_sym_private] = ACTIONS(2708), + [anon_sym_protected] = ACTIONS(2708), + [anon_sym_override] = ACTIONS(2708), + [anon_sym_module] = ACTIONS(2708), + [anon_sym_any] = ACTIONS(2708), + [anon_sym_number] = ACTIONS(2708), + [anon_sym_boolean] = ACTIONS(2708), + [anon_sym_string] = ACTIONS(2708), + [anon_sym_symbol] = ACTIONS(2708), + [anon_sym_object] = ACTIONS(2708), + [anon_sym_abstract] = ACTIONS(2708), + [anon_sym_interface] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), [sym_html_comment] = ACTIONS(5), }, - [842] = { + [839] = { [ts_builtin_sym_end] = ACTIONS(2710), [sym_identifier] = ACTIONS(2712), [anon_sym_export] = ACTIONS(2712), @@ -111913,7 +115025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2712), [sym_html_comment] = ACTIONS(5), }, - [843] = { + [840] = { [ts_builtin_sym_end] = ACTIONS(2714), [sym_identifier] = ACTIONS(2716), [anon_sym_export] = ACTIONS(2716), @@ -111996,90 +115108,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2716), [sym_html_comment] = ACTIONS(5), }, - [844] = { - [ts_builtin_sym_end] = ACTIONS(2718), - [sym_identifier] = ACTIONS(2720), - [anon_sym_export] = ACTIONS(2720), - [anon_sym_default] = ACTIONS(2720), - [anon_sym_type] = ACTIONS(2720), - [anon_sym_namespace] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_RBRACE] = ACTIONS(2718), - [anon_sym_typeof] = ACTIONS(2720), - [anon_sym_import] = ACTIONS(2720), - [anon_sym_with] = ACTIONS(2720), - [anon_sym_var] = ACTIONS(2720), - [anon_sym_let] = ACTIONS(2720), - [anon_sym_const] = ACTIONS(2720), - [anon_sym_BANG] = ACTIONS(2718), - [anon_sym_else] = ACTIONS(2720), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_switch] = ACTIONS(2720), - [anon_sym_for] = ACTIONS(2720), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_await] = ACTIONS(2720), - [anon_sym_while] = ACTIONS(2720), - [anon_sym_do] = ACTIONS(2720), - [anon_sym_try] = ACTIONS(2720), - [anon_sym_break] = ACTIONS(2720), - [anon_sym_continue] = ACTIONS(2720), - [anon_sym_debugger] = ACTIONS(2720), - [anon_sym_return] = ACTIONS(2720), - [anon_sym_throw] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_case] = ACTIONS(2720), - [anon_sym_yield] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(2718), - [sym_glimmer_opening_tag] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2718), - [anon_sym_SQUOTE] = ACTIONS(2718), - [anon_sym_class] = ACTIONS(2720), - [anon_sym_async] = ACTIONS(2720), - [anon_sym_function] = ACTIONS(2720), - [anon_sym_new] = ACTIONS(2720), - [anon_sym_using] = ACTIONS(2720), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_SLASH] = ACTIONS(2720), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_TILDE] = ACTIONS(2718), - [anon_sym_void] = ACTIONS(2720), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_PLUS_PLUS] = ACTIONS(2718), - [anon_sym_DASH_DASH] = ACTIONS(2718), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2718), - [sym_number] = ACTIONS(2718), - [sym_private_property_identifier] = ACTIONS(2718), - [sym_this] = ACTIONS(2720), - [sym_super] = ACTIONS(2720), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_AT] = ACTIONS(2718), - [anon_sym_static] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2720), - [anon_sym_get] = ACTIONS(2720), - [anon_sym_set] = ACTIONS(2720), - [anon_sym_declare] = ACTIONS(2720), - [anon_sym_public] = ACTIONS(2720), - [anon_sym_private] = ACTIONS(2720), - [anon_sym_protected] = ACTIONS(2720), - [anon_sym_override] = ACTIONS(2720), - [anon_sym_module] = ACTIONS(2720), - [anon_sym_any] = ACTIONS(2720), - [anon_sym_number] = ACTIONS(2720), - [anon_sym_boolean] = ACTIONS(2720), - [anon_sym_string] = ACTIONS(2720), - [anon_sym_symbol] = ACTIONS(2720), - [anon_sym_object] = ACTIONS(2720), - [anon_sym_abstract] = ACTIONS(2720), - [anon_sym_interface] = ACTIONS(2720), - [anon_sym_enum] = ACTIONS(2720), + [841] = { + [ts_builtin_sym_end] = ACTIONS(1745), + [sym_identifier] = ACTIONS(1747), + [anon_sym_export] = ACTIONS(1747), + [anon_sym_default] = ACTIONS(1747), + [anon_sym_type] = ACTIONS(1747), + [anon_sym_namespace] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(1745), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym_typeof] = ACTIONS(1747), + [anon_sym_import] = ACTIONS(1747), + [anon_sym_with] = ACTIONS(1747), + [anon_sym_var] = ACTIONS(1747), + [anon_sym_let] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_else] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_switch] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_await] = ACTIONS(1747), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_do] = ACTIONS(1747), + [anon_sym_try] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_debugger] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_throw] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_case] = ACTIONS(1747), + [anon_sym_yield] = ACTIONS(1747), + [anon_sym_LBRACK] = ACTIONS(1745), + [sym_glimmer_opening_tag] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1745), + [anon_sym_SQUOTE] = ACTIONS(1745), + [anon_sym_class] = ACTIONS(1747), + [anon_sym_async] = ACTIONS(1747), + [anon_sym_function] = ACTIONS(1747), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(1747), + [anon_sym_PLUS] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_SLASH] = ACTIONS(1747), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_void] = ACTIONS(1747), + [anon_sym_delete] = ACTIONS(1747), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1745), + [sym_number] = ACTIONS(1745), + [sym_private_property_identifier] = ACTIONS(1745), + [sym_this] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_true] = ACTIONS(1747), + [sym_false] = ACTIONS(1747), + [sym_null] = ACTIONS(1747), + [sym_undefined] = ACTIONS(1747), + [anon_sym_AT] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1747), + [anon_sym_readonly] = ACTIONS(1747), + [anon_sym_get] = ACTIONS(1747), + [anon_sym_set] = ACTIONS(1747), + [anon_sym_declare] = ACTIONS(1747), + [anon_sym_public] = ACTIONS(1747), + [anon_sym_private] = ACTIONS(1747), + [anon_sym_protected] = ACTIONS(1747), + [anon_sym_override] = ACTIONS(1747), + [anon_sym_module] = ACTIONS(1747), + [anon_sym_any] = ACTIONS(1747), + [anon_sym_number] = ACTIONS(1747), + [anon_sym_boolean] = ACTIONS(1747), + [anon_sym_string] = ACTIONS(1747), + [anon_sym_symbol] = ACTIONS(1747), + [anon_sym_object] = ACTIONS(1747), + [anon_sym_abstract] = ACTIONS(1747), + [anon_sym_interface] = ACTIONS(1747), + [anon_sym_enum] = ACTIONS(1747), [sym_html_comment] = ACTIONS(5), }, - [845] = { + [842] = { + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5782), + [sym_optional_tuple_parameter] = STATE(5782), + [sym_optional_type] = STATE(5782), + [sym_rest_type] = STATE(5782), + [sym__tuple_type_member] = STATE(5782), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(2718), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), + [sym_html_comment] = ACTIONS(5), + }, + [843] = { [ts_builtin_sym_end] = ACTIONS(2722), [sym_identifier] = ACTIONS(2724), [anon_sym_export] = ACTIONS(2724), @@ -112162,7 +115357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2724), [sym_html_comment] = ACTIONS(5), }, - [846] = { + [844] = { [ts_builtin_sym_end] = ACTIONS(2726), [sym_identifier] = ACTIONS(2728), [anon_sym_export] = ACTIONS(2728), @@ -112245,7 +115440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2728), [sym_html_comment] = ACTIONS(5), }, - [847] = { + [845] = { [ts_builtin_sym_end] = ACTIONS(2730), [sym_identifier] = ACTIONS(2732), [anon_sym_export] = ACTIONS(2732), @@ -112328,7 +115523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2732), [sym_html_comment] = ACTIONS(5), }, - [848] = { + [846] = { [ts_builtin_sym_end] = ACTIONS(2734), [sym_identifier] = ACTIONS(2736), [anon_sym_export] = ACTIONS(2736), @@ -112411,90 +115606,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2736), [sym_html_comment] = ACTIONS(5), }, - [849] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_export] = ACTIONS(2740), - [anon_sym_default] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_namespace] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_typeof] = ACTIONS(2740), - [anon_sym_import] = ACTIONS(2740), - [anon_sym_with] = ACTIONS(2740), - [anon_sym_var] = ACTIONS(2740), - [anon_sym_let] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2738), - [anon_sym_else] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_switch] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_await] = ACTIONS(2740), - [anon_sym_while] = ACTIONS(2740), - [anon_sym_do] = ACTIONS(2740), - [anon_sym_try] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_debugger] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_throw] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_case] = ACTIONS(2740), - [anon_sym_yield] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [sym_glimmer_opening_tag] = ACTIONS(2738), - [anon_sym_DQUOTE] = ACTIONS(2738), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_class] = ACTIONS(2740), - [anon_sym_async] = ACTIONS(2740), - [anon_sym_function] = ACTIONS(2740), - [anon_sym_new] = ACTIONS(2740), - [anon_sym_using] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_void] = ACTIONS(2740), - [anon_sym_delete] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2738), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2738), - [sym_number] = ACTIONS(2738), - [sym_private_property_identifier] = ACTIONS(2738), - [sym_this] = ACTIONS(2740), - [sym_super] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_null] = ACTIONS(2740), - [sym_undefined] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2738), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_readonly] = ACTIONS(2740), - [anon_sym_get] = ACTIONS(2740), - [anon_sym_set] = ACTIONS(2740), - [anon_sym_declare] = ACTIONS(2740), - [anon_sym_public] = ACTIONS(2740), - [anon_sym_private] = ACTIONS(2740), - [anon_sym_protected] = ACTIONS(2740), - [anon_sym_override] = ACTIONS(2740), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_any] = ACTIONS(2740), - [anon_sym_number] = ACTIONS(2740), - [anon_sym_boolean] = ACTIONS(2740), - [anon_sym_string] = ACTIONS(2740), - [anon_sym_symbol] = ACTIONS(2740), - [anon_sym_object] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), + [847] = { + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5604), + [sym_optional_tuple_parameter] = STATE(5604), + [sym_optional_type] = STATE(5604), + [sym_rest_type] = STATE(5604), + [sym__tuple_type_member] = STATE(5604), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(2738), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(2740), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, - [850] = { + [848] = { [ts_builtin_sym_end] = ACTIONS(2742), [sym_identifier] = ACTIONS(2744), [anon_sym_export] = ACTIONS(2744), @@ -112577,90 +115772,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2744), [sym_html_comment] = ACTIONS(5), }, - [851] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_namespace] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_typeof] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_var] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_switch] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_debugger] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_throw] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [sym_glimmer_opening_tag] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_using] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_delete] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1843), - [sym_number] = ACTIONS(1843), - [sym_private_property_identifier] = ACTIONS(1843), - [sym_this] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_null] = ACTIONS(1845), - [sym_undefined] = ACTIONS(1845), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(1845), - [anon_sym_get] = ACTIONS(1845), - [anon_sym_set] = ACTIONS(1845), - [anon_sym_declare] = ACTIONS(1845), - [anon_sym_public] = ACTIONS(1845), - [anon_sym_private] = ACTIONS(1845), - [anon_sym_protected] = ACTIONS(1845), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_module] = ACTIONS(1845), - [anon_sym_any] = ACTIONS(1845), - [anon_sym_number] = ACTIONS(1845), - [anon_sym_boolean] = ACTIONS(1845), - [anon_sym_string] = ACTIONS(1845), - [anon_sym_symbol] = ACTIONS(1845), - [anon_sym_object] = ACTIONS(1845), - [anon_sym_abstract] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), + [849] = { + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_export] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_namespace] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_typeof] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(1795), + [anon_sym_with] = ACTIONS(1795), + [anon_sym_var] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_switch] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_debugger] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_throw] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_case] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1793), + [sym_glimmer_opening_tag] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_class] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_function] = ACTIONS(1795), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_SLASH] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_void] = ACTIONS(1795), + [anon_sym_delete] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1793), + [sym_number] = ACTIONS(1793), + [sym_private_property_identifier] = ACTIONS(1793), + [sym_this] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_null] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_readonly] = ACTIONS(1795), + [anon_sym_get] = ACTIONS(1795), + [anon_sym_set] = ACTIONS(1795), + [anon_sym_declare] = ACTIONS(1795), + [anon_sym_public] = ACTIONS(1795), + [anon_sym_private] = ACTIONS(1795), + [anon_sym_protected] = ACTIONS(1795), + [anon_sym_override] = ACTIONS(1795), + [anon_sym_module] = ACTIONS(1795), + [anon_sym_any] = ACTIONS(1795), + [anon_sym_number] = ACTIONS(1795), + [anon_sym_boolean] = ACTIONS(1795), + [anon_sym_string] = ACTIONS(1795), + [anon_sym_symbol] = ACTIONS(1795), + [anon_sym_object] = ACTIONS(1795), + [anon_sym_abstract] = ACTIONS(1795), + [anon_sym_interface] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), [sym_html_comment] = ACTIONS(5), }, - [852] = { + [850] = { [ts_builtin_sym_end] = ACTIONS(2746), [sym_identifier] = ACTIONS(2748), [anon_sym_export] = ACTIONS(2748), @@ -112743,90 +115938,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2748), [sym_html_comment] = ACTIONS(5), }, + [851] = { + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2536), + [anon_sym_export] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_namespace] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_import] = ACTIONS(2536), + [anon_sym_with] = ACTIONS(2536), + [anon_sym_var] = ACTIONS(2536), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_await] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_debugger] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_throw] = ACTIONS(2536), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_yield] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2534), + [sym_glimmer_opening_tag] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_class] = ACTIONS(2536), + [anon_sym_async] = ACTIONS(2536), + [anon_sym_function] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_using] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_void] = ACTIONS(2536), + [anon_sym_delete] = ACTIONS(2536), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2534), + [sym_number] = ACTIONS(2534), + [sym_private_property_identifier] = ACTIONS(2534), + [sym_this] = ACTIONS(2536), + [sym_super] = ACTIONS(2536), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [sym_null] = ACTIONS(2536), + [sym_undefined] = ACTIONS(2536), + [anon_sym_AT] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_readonly] = ACTIONS(2536), + [anon_sym_get] = ACTIONS(2536), + [anon_sym_set] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_protected] = ACTIONS(2536), + [anon_sym_override] = ACTIONS(2536), + [anon_sym_module] = ACTIONS(2536), + [anon_sym_any] = ACTIONS(2536), + [anon_sym_number] = ACTIONS(2536), + [anon_sym_boolean] = ACTIONS(2536), + [anon_sym_string] = ACTIONS(2536), + [anon_sym_symbol] = ACTIONS(2536), + [anon_sym_object] = ACTIONS(2536), + [anon_sym_abstract] = ACTIONS(2536), + [anon_sym_interface] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [sym_html_comment] = ACTIONS(5), + }, + [852] = { + [ts_builtin_sym_end] = ACTIONS(2730), + [sym_identifier] = ACTIONS(2732), + [anon_sym_export] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_RBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(2732), + [anon_sym_import] = ACTIONS(2732), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_var] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_else] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_switch] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2730), + [anon_sym_await] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_debugger] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_throw] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_case] = ACTIONS(2732), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2730), + [sym_glimmer_opening_tag] = ACTIONS(2730), + [anon_sym_DQUOTE] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(2730), + [anon_sym_class] = ACTIONS(2732), + [anon_sym_async] = ACTIONS(2732), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_using] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_SLASH] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2730), + [anon_sym_void] = ACTIONS(2732), + [anon_sym_delete] = ACTIONS(2732), + [anon_sym_PLUS_PLUS] = ACTIONS(2730), + [anon_sym_DASH_DASH] = ACTIONS(2730), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2730), + [sym_number] = ACTIONS(2730), + [sym_private_property_identifier] = ACTIONS(2730), + [sym_this] = ACTIONS(2732), + [sym_super] = ACTIONS(2732), + [sym_true] = ACTIONS(2732), + [sym_false] = ACTIONS(2732), + [sym_null] = ACTIONS(2732), + [sym_undefined] = ACTIONS(2732), + [anon_sym_AT] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_readonly] = ACTIONS(2732), + [anon_sym_get] = ACTIONS(2732), + [anon_sym_set] = ACTIONS(2732), + [anon_sym_declare] = ACTIONS(2732), + [anon_sym_public] = ACTIONS(2732), + [anon_sym_private] = ACTIONS(2732), + [anon_sym_protected] = ACTIONS(2732), + [anon_sym_override] = ACTIONS(2732), + [anon_sym_module] = ACTIONS(2732), + [anon_sym_any] = ACTIONS(2732), + [anon_sym_number] = ACTIONS(2732), + [anon_sym_boolean] = ACTIONS(2732), + [anon_sym_string] = ACTIONS(2732), + [anon_sym_symbol] = ACTIONS(2732), + [anon_sym_object] = ACTIONS(2732), + [anon_sym_abstract] = ACTIONS(2732), + [anon_sym_interface] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [sym_html_comment] = ACTIONS(5), + }, [853] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(5093), - [sym_optional_tuple_parameter] = STATE(5093), - [sym_optional_type] = STATE(5093), - [sym_rest_type] = STATE(5093), - [sym__tuple_type_member] = STATE(5093), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_identifier] = ACTIONS(1893), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_namespace] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_typeof] = ACTIONS(1893), + [anon_sym_import] = ACTIONS(1893), + [anon_sym_with] = ACTIONS(1893), + [anon_sym_var] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_switch] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_await] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_debugger] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_case] = ACTIONS(1893), + [anon_sym_yield] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1891), + [sym_glimmer_opening_tag] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1891), + [anon_sym_SQUOTE] = ACTIONS(1891), + [anon_sym_class] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_function] = ACTIONS(1893), + [anon_sym_new] = ACTIONS(1893), + [anon_sym_using] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_void] = ACTIONS(1893), + [anon_sym_delete] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1891), + [sym_number] = ACTIONS(1891), + [sym_private_property_identifier] = ACTIONS(1891), + [sym_this] = ACTIONS(1893), + [sym_super] = ACTIONS(1893), + [sym_true] = ACTIONS(1893), + [sym_false] = ACTIONS(1893), + [sym_null] = ACTIONS(1893), + [sym_undefined] = ACTIONS(1893), + [anon_sym_AT] = ACTIONS(1891), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_readonly] = ACTIONS(1893), + [anon_sym_get] = ACTIONS(1893), + [anon_sym_set] = ACTIONS(1893), + [anon_sym_declare] = ACTIONS(1893), + [anon_sym_public] = ACTIONS(1893), + [anon_sym_private] = ACTIONS(1893), + [anon_sym_protected] = ACTIONS(1893), + [anon_sym_override] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_any] = ACTIONS(1893), + [anon_sym_number] = ACTIONS(1893), + [anon_sym_boolean] = ACTIONS(1893), + [anon_sym_string] = ACTIONS(1893), + [anon_sym_symbol] = ACTIONS(1893), + [anon_sym_object] = ACTIONS(1893), + [anon_sym_abstract] = ACTIONS(1893), + [anon_sym_interface] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), + [sym_html_comment] = ACTIONS(5), + }, + [854] = { + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5929), + [sym_optional_tuple_parameter] = STATE(5929), + [sym_optional_type] = STATE(5929), + [sym_rest_type] = STATE(5929), + [sym__tuple_type_member] = STATE(5929), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), [anon_sym_COMMA] = ACTIONS(2750), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_RBRACK] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, - [854] = { + [855] = { + [ts_builtin_sym_end] = ACTIONS(1745), + [sym_identifier] = ACTIONS(1747), + [anon_sym_export] = ACTIONS(1747), + [anon_sym_default] = ACTIONS(1747), + [anon_sym_type] = ACTIONS(1747), + [anon_sym_namespace] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(1745), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym_typeof] = ACTIONS(1747), + [anon_sym_import] = ACTIONS(1747), + [anon_sym_with] = ACTIONS(1747), + [anon_sym_var] = ACTIONS(1747), + [anon_sym_let] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_else] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_switch] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_await] = ACTIONS(1747), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_do] = ACTIONS(1747), + [anon_sym_try] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_debugger] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_throw] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_case] = ACTIONS(1747), + [anon_sym_yield] = ACTIONS(1747), + [anon_sym_LBRACK] = ACTIONS(1745), + [sym_glimmer_opening_tag] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1745), + [anon_sym_SQUOTE] = ACTIONS(1745), + [anon_sym_class] = ACTIONS(1747), + [anon_sym_async] = ACTIONS(1747), + [anon_sym_function] = ACTIONS(1747), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_using] = ACTIONS(1747), + [anon_sym_PLUS] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_SLASH] = ACTIONS(1747), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_void] = ACTIONS(1747), + [anon_sym_delete] = ACTIONS(1747), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1745), + [sym_number] = ACTIONS(1745), + [sym_private_property_identifier] = ACTIONS(1745), + [sym_this] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_true] = ACTIONS(1747), + [sym_false] = ACTIONS(1747), + [sym_null] = ACTIONS(1747), + [sym_undefined] = ACTIONS(1747), + [anon_sym_AT] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1747), + [anon_sym_readonly] = ACTIONS(1747), + [anon_sym_get] = ACTIONS(1747), + [anon_sym_set] = ACTIONS(1747), + [anon_sym_declare] = ACTIONS(1747), + [anon_sym_public] = ACTIONS(1747), + [anon_sym_private] = ACTIONS(1747), + [anon_sym_protected] = ACTIONS(1747), + [anon_sym_override] = ACTIONS(1747), + [anon_sym_module] = ACTIONS(1747), + [anon_sym_any] = ACTIONS(1747), + [anon_sym_number] = ACTIONS(1747), + [anon_sym_boolean] = ACTIONS(1747), + [anon_sym_string] = ACTIONS(1747), + [anon_sym_symbol] = ACTIONS(1747), + [anon_sym_object] = ACTIONS(1747), + [anon_sym_abstract] = ACTIONS(1747), + [anon_sym_interface] = ACTIONS(1747), + [anon_sym_enum] = ACTIONS(1747), + [sym_html_comment] = ACTIONS(5), + }, + [856] = { [ts_builtin_sym_end] = ACTIONS(2754), [sym_identifier] = ACTIONS(2756), [anon_sym_export] = ACTIONS(2756), @@ -112909,7 +116436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2756), [sym_html_comment] = ACTIONS(5), }, - [855] = { + [857] = { [ts_builtin_sym_end] = ACTIONS(2758), [sym_identifier] = ACTIONS(2760), [anon_sym_export] = ACTIONS(2760), @@ -112992,90 +116519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2760), [sym_html_comment] = ACTIONS(5), }, - [856] = { - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym_export] = ACTIONS(2764), - [anon_sym_default] = ACTIONS(2764), - [anon_sym_type] = ACTIONS(2764), - [anon_sym_namespace] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_RBRACE] = ACTIONS(2762), - [anon_sym_typeof] = ACTIONS(2764), - [anon_sym_import] = ACTIONS(2764), - [anon_sym_with] = ACTIONS(2764), - [anon_sym_var] = ACTIONS(2764), - [anon_sym_let] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2762), - [anon_sym_else] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_switch] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_await] = ACTIONS(2764), - [anon_sym_while] = ACTIONS(2764), - [anon_sym_do] = ACTIONS(2764), - [anon_sym_try] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_debugger] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_throw] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_case] = ACTIONS(2764), - [anon_sym_yield] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [sym_glimmer_opening_tag] = ACTIONS(2762), - [anon_sym_DQUOTE] = ACTIONS(2762), - [anon_sym_SQUOTE] = ACTIONS(2762), - [anon_sym_class] = ACTIONS(2764), - [anon_sym_async] = ACTIONS(2764), - [anon_sym_function] = ACTIONS(2764), - [anon_sym_new] = ACTIONS(2764), - [anon_sym_using] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2762), - [anon_sym_void] = ACTIONS(2764), - [anon_sym_delete] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2762), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2762), - [sym_number] = ACTIONS(2762), - [sym_private_property_identifier] = ACTIONS(2762), - [sym_this] = ACTIONS(2764), - [sym_super] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_null] = ACTIONS(2764), - [sym_undefined] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_readonly] = ACTIONS(2764), - [anon_sym_get] = ACTIONS(2764), - [anon_sym_set] = ACTIONS(2764), - [anon_sym_declare] = ACTIONS(2764), - [anon_sym_public] = ACTIONS(2764), - [anon_sym_private] = ACTIONS(2764), - [anon_sym_protected] = ACTIONS(2764), - [anon_sym_override] = ACTIONS(2764), - [anon_sym_module] = ACTIONS(2764), - [anon_sym_any] = ACTIONS(2764), - [anon_sym_number] = ACTIONS(2764), - [anon_sym_boolean] = ACTIONS(2764), - [anon_sym_string] = ACTIONS(2764), - [anon_sym_symbol] = ACTIONS(2764), - [anon_sym_object] = ACTIONS(2764), - [anon_sym_abstract] = ACTIONS(2764), - [anon_sym_interface] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [sym_html_comment] = ACTIONS(5), - }, - [857] = { + [858] = { [ts_builtin_sym_end] = ACTIONS(2762), [sym_identifier] = ACTIONS(2764), [anon_sym_export] = ACTIONS(2764), @@ -113158,7 +116602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2764), [sym_html_comment] = ACTIONS(5), }, - [858] = { + [859] = { [ts_builtin_sym_end] = ACTIONS(2766), [sym_identifier] = ACTIONS(2768), [anon_sym_export] = ACTIONS(2768), @@ -113241,7 +116685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2768), [sym_html_comment] = ACTIONS(5), }, - [859] = { + [860] = { [ts_builtin_sym_end] = ACTIONS(2770), [sym_identifier] = ACTIONS(2772), [anon_sym_export] = ACTIONS(2772), @@ -113324,7 +116768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2772), [sym_html_comment] = ACTIONS(5), }, - [860] = { + [861] = { [ts_builtin_sym_end] = ACTIONS(2774), [sym_identifier] = ACTIONS(2776), [anon_sym_export] = ACTIONS(2776), @@ -113407,7 +116851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2776), [sym_html_comment] = ACTIONS(5), }, - [861] = { + [862] = { [ts_builtin_sym_end] = ACTIONS(2778), [sym_identifier] = ACTIONS(2780), [anon_sym_export] = ACTIONS(2780), @@ -113490,7 +116934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2780), [sym_html_comment] = ACTIONS(5), }, - [862] = { + [863] = { [ts_builtin_sym_end] = ACTIONS(2782), [sym_identifier] = ACTIONS(2784), [anon_sym_export] = ACTIONS(2784), @@ -113573,7 +117017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2784), [sym_html_comment] = ACTIONS(5), }, - [863] = { + [864] = { [ts_builtin_sym_end] = ACTIONS(2786), [sym_identifier] = ACTIONS(2788), [anon_sym_export] = ACTIONS(2788), @@ -113656,7 +117100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2788), [sym_html_comment] = ACTIONS(5), }, - [864] = { + [865] = { [ts_builtin_sym_end] = ACTIONS(2790), [sym_identifier] = ACTIONS(2792), [anon_sym_export] = ACTIONS(2792), @@ -113739,90 +117183,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2792), [sym_html_comment] = ACTIONS(5), }, - [865] = { - [ts_builtin_sym_end] = ACTIONS(2794), - [sym_identifier] = ACTIONS(2796), - [anon_sym_export] = ACTIONS(2796), - [anon_sym_default] = ACTIONS(2796), - [anon_sym_type] = ACTIONS(2796), - [anon_sym_namespace] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_RBRACE] = ACTIONS(2794), - [anon_sym_typeof] = ACTIONS(2796), - [anon_sym_import] = ACTIONS(2796), - [anon_sym_with] = ACTIONS(2796), - [anon_sym_var] = ACTIONS(2796), - [anon_sym_let] = ACTIONS(2796), - [anon_sym_const] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_else] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_switch] = ACTIONS(2796), - [anon_sym_for] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_await] = ACTIONS(2796), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2796), - [anon_sym_try] = ACTIONS(2796), - [anon_sym_break] = ACTIONS(2796), - [anon_sym_continue] = ACTIONS(2796), - [anon_sym_debugger] = ACTIONS(2796), - [anon_sym_return] = ACTIONS(2796), - [anon_sym_throw] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_case] = ACTIONS(2796), - [anon_sym_yield] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2794), - [sym_glimmer_opening_tag] = ACTIONS(2794), - [anon_sym_DQUOTE] = ACTIONS(2794), - [anon_sym_SQUOTE] = ACTIONS(2794), - [anon_sym_class] = ACTIONS(2796), - [anon_sym_async] = ACTIONS(2796), - [anon_sym_function] = ACTIONS(2796), - [anon_sym_new] = ACTIONS(2796), - [anon_sym_using] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_SLASH] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_void] = ACTIONS(2796), - [anon_sym_delete] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2794), - [sym_number] = ACTIONS(2794), - [sym_private_property_identifier] = ACTIONS(2794), - [sym_this] = ACTIONS(2796), - [sym_super] = ACTIONS(2796), - [sym_true] = ACTIONS(2796), - [sym_false] = ACTIONS(2796), - [sym_null] = ACTIONS(2796), - [sym_undefined] = ACTIONS(2796), - [anon_sym_AT] = ACTIONS(2794), - [anon_sym_static] = ACTIONS(2796), - [anon_sym_readonly] = ACTIONS(2796), - [anon_sym_get] = ACTIONS(2796), - [anon_sym_set] = ACTIONS(2796), - [anon_sym_declare] = ACTIONS(2796), - [anon_sym_public] = ACTIONS(2796), - [anon_sym_private] = ACTIONS(2796), - [anon_sym_protected] = ACTIONS(2796), - [anon_sym_override] = ACTIONS(2796), - [anon_sym_module] = ACTIONS(2796), - [anon_sym_any] = ACTIONS(2796), - [anon_sym_number] = ACTIONS(2796), - [anon_sym_boolean] = ACTIONS(2796), - [anon_sym_string] = ACTIONS(2796), - [anon_sym_symbol] = ACTIONS(2796), - [anon_sym_object] = ACTIONS(2796), - [anon_sym_abstract] = ACTIONS(2796), - [anon_sym_interface] = ACTIONS(2796), - [anon_sym_enum] = ACTIONS(2796), + [866] = { + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(5883), + [sym_optional_tuple_parameter] = STATE(5883), + [sym_optional_type] = STATE(5883), + [sym_rest_type] = STATE(5883), + [sym__tuple_type_member] = STATE(5883), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_COMMA] = ACTIONS(2794), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(2796), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, - [866] = { + [867] = { [ts_builtin_sym_end] = ACTIONS(2798), [sym_identifier] = ACTIONS(2800), [anon_sym_export] = ACTIONS(2800), @@ -113905,90 +117349,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2800), [sym_html_comment] = ACTIONS(5), }, - [867] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4707), - [sym_optional_tuple_parameter] = STATE(4707), - [sym_optional_type] = STATE(4707), - [sym_rest_type] = STATE(4707), - [sym__tuple_type_member] = STATE(4707), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(2802), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(2804), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [868] = { + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2804), + [anon_sym_export] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_type] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_typeof] = ACTIONS(2804), + [anon_sym_import] = ACTIONS(2804), + [anon_sym_with] = ACTIONS(2804), + [anon_sym_var] = ACTIONS(2804), + [anon_sym_let] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_await] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_debugger] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_yield] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2802), + [sym_glimmer_opening_tag] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_async] = ACTIONS(2804), + [anon_sym_function] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_SLASH] = ACTIONS(2804), + [anon_sym_LT] = ACTIONS(2804), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_void] = ACTIONS(2804), + [anon_sym_delete] = ACTIONS(2804), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2802), + [sym_number] = ACTIONS(2802), + [sym_private_property_identifier] = ACTIONS(2802), + [sym_this] = ACTIONS(2804), + [sym_super] = ACTIONS(2804), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [sym_null] = ACTIONS(2804), + [sym_undefined] = ACTIONS(2804), + [anon_sym_AT] = ACTIONS(2802), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_readonly] = ACTIONS(2804), + [anon_sym_get] = ACTIONS(2804), + [anon_sym_set] = ACTIONS(2804), + [anon_sym_declare] = ACTIONS(2804), + [anon_sym_public] = ACTIONS(2804), + [anon_sym_private] = ACTIONS(2804), + [anon_sym_protected] = ACTIONS(2804), + [anon_sym_override] = ACTIONS(2804), + [anon_sym_module] = ACTIONS(2804), + [anon_sym_any] = ACTIONS(2804), + [anon_sym_number] = ACTIONS(2804), + [anon_sym_boolean] = ACTIONS(2804), + [anon_sym_string] = ACTIONS(2804), + [anon_sym_symbol] = ACTIONS(2804), + [anon_sym_object] = ACTIONS(2804), + [anon_sym_abstract] = ACTIONS(2804), + [anon_sym_interface] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), [sym_html_comment] = ACTIONS(5), }, - [868] = { + [869] = { + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2804), + [anon_sym_export] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_type] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_typeof] = ACTIONS(2804), + [anon_sym_import] = ACTIONS(2804), + [anon_sym_with] = ACTIONS(2804), + [anon_sym_var] = ACTIONS(2804), + [anon_sym_let] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_await] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_debugger] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_yield] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2802), + [sym_glimmer_opening_tag] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_async] = ACTIONS(2804), + [anon_sym_function] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_SLASH] = ACTIONS(2804), + [anon_sym_LT] = ACTIONS(2804), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_void] = ACTIONS(2804), + [anon_sym_delete] = ACTIONS(2804), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2802), + [sym_number] = ACTIONS(2802), + [sym_private_property_identifier] = ACTIONS(2802), + [sym_this] = ACTIONS(2804), + [sym_super] = ACTIONS(2804), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [sym_null] = ACTIONS(2804), + [sym_undefined] = ACTIONS(2804), + [anon_sym_AT] = ACTIONS(2802), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_readonly] = ACTIONS(2804), + [anon_sym_get] = ACTIONS(2804), + [anon_sym_set] = ACTIONS(2804), + [anon_sym_declare] = ACTIONS(2804), + [anon_sym_public] = ACTIONS(2804), + [anon_sym_private] = ACTIONS(2804), + [anon_sym_protected] = ACTIONS(2804), + [anon_sym_override] = ACTIONS(2804), + [anon_sym_module] = ACTIONS(2804), + [anon_sym_any] = ACTIONS(2804), + [anon_sym_number] = ACTIONS(2804), + [anon_sym_boolean] = ACTIONS(2804), + [anon_sym_string] = ACTIONS(2804), + [anon_sym_symbol] = ACTIONS(2804), + [anon_sym_object] = ACTIONS(2804), + [anon_sym_abstract] = ACTIONS(2804), + [anon_sym_interface] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [sym_html_comment] = ACTIONS(5), + }, + [870] = { + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2804), + [anon_sym_export] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_type] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_typeof] = ACTIONS(2804), + [anon_sym_import] = ACTIONS(2804), + [anon_sym_with] = ACTIONS(2804), + [anon_sym_var] = ACTIONS(2804), + [anon_sym_let] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_await] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_debugger] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_yield] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2802), + [sym_glimmer_opening_tag] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_async] = ACTIONS(2804), + [anon_sym_function] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_SLASH] = ACTIONS(2804), + [anon_sym_LT] = ACTIONS(2804), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_void] = ACTIONS(2804), + [anon_sym_delete] = ACTIONS(2804), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2802), + [sym_number] = ACTIONS(2802), + [sym_private_property_identifier] = ACTIONS(2802), + [sym_this] = ACTIONS(2804), + [sym_super] = ACTIONS(2804), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [sym_null] = ACTIONS(2804), + [sym_undefined] = ACTIONS(2804), + [anon_sym_AT] = ACTIONS(2802), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_readonly] = ACTIONS(2804), + [anon_sym_get] = ACTIONS(2804), + [anon_sym_set] = ACTIONS(2804), + [anon_sym_declare] = ACTIONS(2804), + [anon_sym_public] = ACTIONS(2804), + [anon_sym_private] = ACTIONS(2804), + [anon_sym_protected] = ACTIONS(2804), + [anon_sym_override] = ACTIONS(2804), + [anon_sym_module] = ACTIONS(2804), + [anon_sym_any] = ACTIONS(2804), + [anon_sym_number] = ACTIONS(2804), + [anon_sym_boolean] = ACTIONS(2804), + [anon_sym_string] = ACTIONS(2804), + [anon_sym_symbol] = ACTIONS(2804), + [anon_sym_object] = ACTIONS(2804), + [anon_sym_abstract] = ACTIONS(2804), + [anon_sym_interface] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [sym_html_comment] = ACTIONS(5), + }, + [871] = { + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2536), + [anon_sym_export] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_namespace] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_import] = ACTIONS(2536), + [anon_sym_with] = ACTIONS(2536), + [anon_sym_var] = ACTIONS(2536), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_await] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_debugger] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_throw] = ACTIONS(2536), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_yield] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2534), + [sym_glimmer_opening_tag] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_class] = ACTIONS(2536), + [anon_sym_async] = ACTIONS(2536), + [anon_sym_function] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_using] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_void] = ACTIONS(2536), + [anon_sym_delete] = ACTIONS(2536), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2534), + [sym_number] = ACTIONS(2534), + [sym_private_property_identifier] = ACTIONS(2534), + [sym_this] = ACTIONS(2536), + [sym_super] = ACTIONS(2536), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [sym_null] = ACTIONS(2536), + [sym_undefined] = ACTIONS(2536), + [anon_sym_AT] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_readonly] = ACTIONS(2536), + [anon_sym_get] = ACTIONS(2536), + [anon_sym_set] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_protected] = ACTIONS(2536), + [anon_sym_override] = ACTIONS(2536), + [anon_sym_module] = ACTIONS(2536), + [anon_sym_any] = ACTIONS(2536), + [anon_sym_number] = ACTIONS(2536), + [anon_sym_boolean] = ACTIONS(2536), + [anon_sym_string] = ACTIONS(2536), + [anon_sym_symbol] = ACTIONS(2536), + [anon_sym_object] = ACTIONS(2536), + [anon_sym_abstract] = ACTIONS(2536), + [anon_sym_interface] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [sym_html_comment] = ACTIONS(5), + }, + [872] = { [ts_builtin_sym_end] = ACTIONS(2806), [sym_identifier] = ACTIONS(2808), [anon_sym_export] = ACTIONS(2808), @@ -114071,7 +117764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2808), [sym_html_comment] = ACTIONS(5), }, - [869] = { + [873] = { [ts_builtin_sym_end] = ACTIONS(2810), [sym_identifier] = ACTIONS(2812), [anon_sym_export] = ACTIONS(2812), @@ -114154,7 +117847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2812), [sym_html_comment] = ACTIONS(5), }, - [870] = { + [874] = { [ts_builtin_sym_end] = ACTIONS(2814), [sym_identifier] = ACTIONS(2816), [anon_sym_export] = ACTIONS(2816), @@ -114237,7 +117930,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2816), [sym_html_comment] = ACTIONS(5), }, - [871] = { + [875] = { + [ts_builtin_sym_end] = ACTIONS(2818), + [sym_identifier] = ACTIONS(2820), + [anon_sym_export] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_type] = ACTIONS(2820), + [anon_sym_namespace] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_import] = ACTIONS(2820), + [anon_sym_with] = ACTIONS(2820), + [anon_sym_var] = ACTIONS(2820), + [anon_sym_let] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_else] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym_await] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_debugger] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_throw] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_yield] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2818), + [sym_glimmer_opening_tag] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_async] = ACTIONS(2820), + [anon_sym_function] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_using] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_void] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2818), + [sym_number] = ACTIONS(2818), + [sym_private_property_identifier] = ACTIONS(2818), + [sym_this] = ACTIONS(2820), + [sym_super] = ACTIONS(2820), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [sym_null] = ACTIONS(2820), + [sym_undefined] = ACTIONS(2820), + [anon_sym_AT] = ACTIONS(2818), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_readonly] = ACTIONS(2820), + [anon_sym_get] = ACTIONS(2820), + [anon_sym_set] = ACTIONS(2820), + [anon_sym_declare] = ACTIONS(2820), + [anon_sym_public] = ACTIONS(2820), + [anon_sym_private] = ACTIONS(2820), + [anon_sym_protected] = ACTIONS(2820), + [anon_sym_override] = ACTIONS(2820), + [anon_sym_module] = ACTIONS(2820), + [anon_sym_any] = ACTIONS(2820), + [anon_sym_number] = ACTIONS(2820), + [anon_sym_boolean] = ACTIONS(2820), + [anon_sym_string] = ACTIONS(2820), + [anon_sym_symbol] = ACTIONS(2820), + [anon_sym_object] = ACTIONS(2820), + [anon_sym_abstract] = ACTIONS(2820), + [anon_sym_interface] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [sym_html_comment] = ACTIONS(5), + }, + [876] = { + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2824), + [anon_sym_export] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_type] = ACTIONS(2824), + [anon_sym_namespace] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_typeof] = ACTIONS(2824), + [anon_sym_import] = ACTIONS(2824), + [anon_sym_with] = ACTIONS(2824), + [anon_sym_var] = ACTIONS(2824), + [anon_sym_let] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_await] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_debugger] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_yield] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2822), + [sym_glimmer_opening_tag] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2824), + [anon_sym_async] = ACTIONS(2824), + [anon_sym_function] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_using] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_SLASH] = ACTIONS(2824), + [anon_sym_LT] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_void] = ACTIONS(2824), + [anon_sym_delete] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2822), + [sym_number] = ACTIONS(2822), + [sym_private_property_identifier] = ACTIONS(2822), + [sym_this] = ACTIONS(2824), + [sym_super] = ACTIONS(2824), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [sym_null] = ACTIONS(2824), + [sym_undefined] = ACTIONS(2824), + [anon_sym_AT] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_readonly] = ACTIONS(2824), + [anon_sym_get] = ACTIONS(2824), + [anon_sym_set] = ACTIONS(2824), + [anon_sym_declare] = ACTIONS(2824), + [anon_sym_public] = ACTIONS(2824), + [anon_sym_private] = ACTIONS(2824), + [anon_sym_protected] = ACTIONS(2824), + [anon_sym_override] = ACTIONS(2824), + [anon_sym_module] = ACTIONS(2824), + [anon_sym_any] = ACTIONS(2824), + [anon_sym_number] = ACTIONS(2824), + [anon_sym_boolean] = ACTIONS(2824), + [anon_sym_string] = ACTIONS(2824), + [anon_sym_symbol] = ACTIONS(2824), + [anon_sym_object] = ACTIONS(2824), + [anon_sym_abstract] = ACTIONS(2824), + [anon_sym_interface] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [sym_html_comment] = ACTIONS(5), + }, + [877] = { [ts_builtin_sym_end] = ACTIONS(2814), [sym_identifier] = ACTIONS(2816), [anon_sym_export] = ACTIONS(2816), @@ -114320,256 +118179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2816), [sym_html_comment] = ACTIONS(5), }, - [872] = { - [ts_builtin_sym_end] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2820), - [anon_sym_export] = ACTIONS(2820), - [anon_sym_default] = ACTIONS(2820), - [anon_sym_type] = ACTIONS(2820), - [anon_sym_namespace] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2818), - [anon_sym_typeof] = ACTIONS(2820), - [anon_sym_import] = ACTIONS(2820), - [anon_sym_with] = ACTIONS(2820), - [anon_sym_var] = ACTIONS(2820), - [anon_sym_let] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2818), - [anon_sym_else] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_switch] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_await] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_do] = ACTIONS(2820), - [anon_sym_try] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_debugger] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_throw] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [sym_glimmer_opening_tag] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [anon_sym_SQUOTE] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_async] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2820), - [anon_sym_using] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2818), - [anon_sym_void] = ACTIONS(2820), - [anon_sym_delete] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2818), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2818), - [sym_number] = ACTIONS(2818), - [sym_private_property_identifier] = ACTIONS(2818), - [sym_this] = ACTIONS(2820), - [sym_super] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2820), - [anon_sym_get] = ACTIONS(2820), - [anon_sym_set] = ACTIONS(2820), - [anon_sym_declare] = ACTIONS(2820), - [anon_sym_public] = ACTIONS(2820), - [anon_sym_private] = ACTIONS(2820), - [anon_sym_protected] = ACTIONS(2820), - [anon_sym_override] = ACTIONS(2820), - [anon_sym_module] = ACTIONS(2820), - [anon_sym_any] = ACTIONS(2820), - [anon_sym_number] = ACTIONS(2820), - [anon_sym_boolean] = ACTIONS(2820), - [anon_sym_string] = ACTIONS(2820), - [anon_sym_symbol] = ACTIONS(2820), - [anon_sym_object] = ACTIONS(2820), - [anon_sym_abstract] = ACTIONS(2820), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [sym_html_comment] = ACTIONS(5), - }, - [873] = { - [ts_builtin_sym_end] = ACTIONS(2822), - [sym_identifier] = ACTIONS(2824), - [anon_sym_export] = ACTIONS(2824), - [anon_sym_default] = ACTIONS(2824), - [anon_sym_type] = ACTIONS(2824), - [anon_sym_namespace] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_RBRACE] = ACTIONS(2822), - [anon_sym_typeof] = ACTIONS(2824), - [anon_sym_import] = ACTIONS(2824), - [anon_sym_with] = ACTIONS(2824), - [anon_sym_var] = ACTIONS(2824), - [anon_sym_let] = ACTIONS(2824), - [anon_sym_const] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_else] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_switch] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_await] = ACTIONS(2824), - [anon_sym_while] = ACTIONS(2824), - [anon_sym_do] = ACTIONS(2824), - [anon_sym_try] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_debugger] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_throw] = ACTIONS(2824), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_case] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [sym_glimmer_opening_tag] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [anon_sym_SQUOTE] = ACTIONS(2822), - [anon_sym_class] = ACTIONS(2824), - [anon_sym_async] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2824), - [anon_sym_new] = ACTIONS(2824), - [anon_sym_using] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_void] = ACTIONS(2824), - [anon_sym_delete] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2822), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [sym_this] = ACTIONS(2824), - [sym_super] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_null] = ACTIONS(2824), - [sym_undefined] = ACTIONS(2824), - [anon_sym_AT] = ACTIONS(2822), - [anon_sym_static] = ACTIONS(2824), - [anon_sym_readonly] = ACTIONS(2824), - [anon_sym_get] = ACTIONS(2824), - [anon_sym_set] = ACTIONS(2824), - [anon_sym_declare] = ACTIONS(2824), - [anon_sym_public] = ACTIONS(2824), - [anon_sym_private] = ACTIONS(2824), - [anon_sym_protected] = ACTIONS(2824), - [anon_sym_override] = ACTIONS(2824), - [anon_sym_module] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2824), - [anon_sym_number] = ACTIONS(2824), - [anon_sym_boolean] = ACTIONS(2824), - [anon_sym_string] = ACTIONS(2824), - [anon_sym_symbol] = ACTIONS(2824), - [anon_sym_object] = ACTIONS(2824), - [anon_sym_abstract] = ACTIONS(2824), - [anon_sym_interface] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [sym_html_comment] = ACTIONS(5), - }, - [874] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_export] = ACTIONS(2828), - [anon_sym_default] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_namespace] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_typeof] = ACTIONS(2828), - [anon_sym_import] = ACTIONS(2828), - [anon_sym_with] = ACTIONS(2828), - [anon_sym_var] = ACTIONS(2828), - [anon_sym_let] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2826), - [anon_sym_else] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_switch] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_await] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_do] = ACTIONS(2828), - [anon_sym_try] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_debugger] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_throw] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [sym_glimmer_opening_tag] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_SQUOTE] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2828), - [anon_sym_async] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2828), - [anon_sym_using] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_void] = ACTIONS(2828), - [anon_sym_delete] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2826), - [sym_number] = ACTIONS(2826), - [sym_private_property_identifier] = ACTIONS(2826), - [sym_this] = ACTIONS(2828), - [sym_super] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_null] = ACTIONS(2828), - [sym_undefined] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2828), - [anon_sym_readonly] = ACTIONS(2828), - [anon_sym_get] = ACTIONS(2828), - [anon_sym_set] = ACTIONS(2828), - [anon_sym_declare] = ACTIONS(2828), - [anon_sym_public] = ACTIONS(2828), - [anon_sym_private] = ACTIONS(2828), - [anon_sym_protected] = ACTIONS(2828), - [anon_sym_override] = ACTIONS(2828), - [anon_sym_module] = ACTIONS(2828), - [anon_sym_any] = ACTIONS(2828), - [anon_sym_number] = ACTIONS(2828), - [anon_sym_boolean] = ACTIONS(2828), - [anon_sym_string] = ACTIONS(2828), - [anon_sym_symbol] = ACTIONS(2828), - [anon_sym_object] = ACTIONS(2828), - [anon_sym_abstract] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [sym_html_comment] = ACTIONS(5), - }, - [875] = { + [878] = { [ts_builtin_sym_end] = ACTIONS(2826), [sym_identifier] = ACTIONS(2828), [anon_sym_export] = ACTIONS(2828), @@ -114652,7 +118262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2828), [sym_html_comment] = ACTIONS(5), }, - [876] = { + [879] = { [ts_builtin_sym_end] = ACTIONS(2830), [sym_identifier] = ACTIONS(2832), [anon_sym_export] = ACTIONS(2832), @@ -114735,7 +118345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2832), [sym_html_comment] = ACTIONS(5), }, - [877] = { + [880] = { [ts_builtin_sym_end] = ACTIONS(2834), [sym_identifier] = ACTIONS(2836), [anon_sym_export] = ACTIONS(2836), @@ -114818,7 +118428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2836), [sym_html_comment] = ACTIONS(5), }, - [878] = { + [881] = { [ts_builtin_sym_end] = ACTIONS(2838), [sym_identifier] = ACTIONS(2840), [anon_sym_export] = ACTIONS(2840), @@ -114901,339 +118511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2840), [sym_html_comment] = ACTIONS(5), }, - [879] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_export] = ACTIONS(2828), - [anon_sym_default] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_namespace] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_typeof] = ACTIONS(2828), - [anon_sym_import] = ACTIONS(2828), - [anon_sym_with] = ACTIONS(2828), - [anon_sym_var] = ACTIONS(2828), - [anon_sym_let] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2826), - [anon_sym_else] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_switch] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_await] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_do] = ACTIONS(2828), - [anon_sym_try] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_debugger] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_throw] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [sym_glimmer_opening_tag] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_SQUOTE] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2828), - [anon_sym_async] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2828), - [anon_sym_using] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_void] = ACTIONS(2828), - [anon_sym_delete] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2826), - [sym_number] = ACTIONS(2826), - [sym_private_property_identifier] = ACTIONS(2826), - [sym_this] = ACTIONS(2828), - [sym_super] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_null] = ACTIONS(2828), - [sym_undefined] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2828), - [anon_sym_readonly] = ACTIONS(2828), - [anon_sym_get] = ACTIONS(2828), - [anon_sym_set] = ACTIONS(2828), - [anon_sym_declare] = ACTIONS(2828), - [anon_sym_public] = ACTIONS(2828), - [anon_sym_private] = ACTIONS(2828), - [anon_sym_protected] = ACTIONS(2828), - [anon_sym_override] = ACTIONS(2828), - [anon_sym_module] = ACTIONS(2828), - [anon_sym_any] = ACTIONS(2828), - [anon_sym_number] = ACTIONS(2828), - [anon_sym_boolean] = ACTIONS(2828), - [anon_sym_string] = ACTIONS(2828), - [anon_sym_symbol] = ACTIONS(2828), - [anon_sym_object] = ACTIONS(2828), - [anon_sym_abstract] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [sym_html_comment] = ACTIONS(5), - }, - [880] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_namespace] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_typeof] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_var] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_switch] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_debugger] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_throw] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [sym_glimmer_opening_tag] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_using] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_delete] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1843), - [sym_number] = ACTIONS(1843), - [sym_private_property_identifier] = ACTIONS(1843), - [sym_this] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_null] = ACTIONS(1845), - [sym_undefined] = ACTIONS(1845), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(1845), - [anon_sym_get] = ACTIONS(1845), - [anon_sym_set] = ACTIONS(1845), - [anon_sym_declare] = ACTIONS(1845), - [anon_sym_public] = ACTIONS(1845), - [anon_sym_private] = ACTIONS(1845), - [anon_sym_protected] = ACTIONS(1845), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_module] = ACTIONS(1845), - [anon_sym_any] = ACTIONS(1845), - [anon_sym_number] = ACTIONS(1845), - [anon_sym_boolean] = ACTIONS(1845), - [anon_sym_string] = ACTIONS(1845), - [anon_sym_symbol] = ACTIONS(1845), - [anon_sym_object] = ACTIONS(1845), - [anon_sym_abstract] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [sym_html_comment] = ACTIONS(5), - }, - [881] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_export] = ACTIONS(2828), - [anon_sym_default] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_namespace] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_typeof] = ACTIONS(2828), - [anon_sym_import] = ACTIONS(2828), - [anon_sym_with] = ACTIONS(2828), - [anon_sym_var] = ACTIONS(2828), - [anon_sym_let] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2826), - [anon_sym_else] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_switch] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_await] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_do] = ACTIONS(2828), - [anon_sym_try] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_debugger] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_throw] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [sym_glimmer_opening_tag] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_SQUOTE] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2828), - [anon_sym_async] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2828), - [anon_sym_using] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_void] = ACTIONS(2828), - [anon_sym_delete] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2826), - [sym_number] = ACTIONS(2826), - [sym_private_property_identifier] = ACTIONS(2826), - [sym_this] = ACTIONS(2828), - [sym_super] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_null] = ACTIONS(2828), - [sym_undefined] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2828), - [anon_sym_readonly] = ACTIONS(2828), - [anon_sym_get] = ACTIONS(2828), - [anon_sym_set] = ACTIONS(2828), - [anon_sym_declare] = ACTIONS(2828), - [anon_sym_public] = ACTIONS(2828), - [anon_sym_private] = ACTIONS(2828), - [anon_sym_protected] = ACTIONS(2828), - [anon_sym_override] = ACTIONS(2828), - [anon_sym_module] = ACTIONS(2828), - [anon_sym_any] = ACTIONS(2828), - [anon_sym_number] = ACTIONS(2828), - [anon_sym_boolean] = ACTIONS(2828), - [anon_sym_string] = ACTIONS(2828), - [anon_sym_symbol] = ACTIONS(2828), - [anon_sym_object] = ACTIONS(2828), - [anon_sym_abstract] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [sym_html_comment] = ACTIONS(5), - }, [882] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_export] = ACTIONS(2828), - [anon_sym_default] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_namespace] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_typeof] = ACTIONS(2828), - [anon_sym_import] = ACTIONS(2828), - [anon_sym_with] = ACTIONS(2828), - [anon_sym_var] = ACTIONS(2828), - [anon_sym_let] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2826), - [anon_sym_else] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_switch] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_await] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_do] = ACTIONS(2828), - [anon_sym_try] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_debugger] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_throw] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [sym_glimmer_opening_tag] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_SQUOTE] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2828), - [anon_sym_async] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2828), - [anon_sym_using] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_void] = ACTIONS(2828), - [anon_sym_delete] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2826), - [sym_number] = ACTIONS(2826), - [sym_private_property_identifier] = ACTIONS(2826), - [sym_this] = ACTIONS(2828), - [sym_super] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_null] = ACTIONS(2828), - [sym_undefined] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2828), - [anon_sym_readonly] = ACTIONS(2828), - [anon_sym_get] = ACTIONS(2828), - [anon_sym_set] = ACTIONS(2828), - [anon_sym_declare] = ACTIONS(2828), - [anon_sym_public] = ACTIONS(2828), - [anon_sym_private] = ACTIONS(2828), - [anon_sym_protected] = ACTIONS(2828), - [anon_sym_override] = ACTIONS(2828), - [anon_sym_module] = ACTIONS(2828), - [anon_sym_any] = ACTIONS(2828), - [anon_sym_number] = ACTIONS(2828), - [anon_sym_boolean] = ACTIONS(2828), - [anon_sym_string] = ACTIONS(2828), - [anon_sym_symbol] = ACTIONS(2828), - [anon_sym_object] = ACTIONS(2828), - [anon_sym_abstract] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [sym_html_comment] = ACTIONS(5), - }, - [883] = { [ts_builtin_sym_end] = ACTIONS(2842), [sym_identifier] = ACTIONS(2844), [anon_sym_export] = ACTIONS(2844), @@ -115316,173 +118594,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2844), [sym_html_comment] = ACTIONS(5), }, - [884] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4970), - [sym_optional_tuple_parameter] = STATE(4970), - [sym_optional_type] = STATE(4970), - [sym_rest_type] = STATE(4970), - [sym__tuple_type_member] = STATE(4970), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(2848), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [885] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_export] = ACTIONS(2828), - [anon_sym_default] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_namespace] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_typeof] = ACTIONS(2828), - [anon_sym_import] = ACTIONS(2828), - [anon_sym_with] = ACTIONS(2828), - [anon_sym_var] = ACTIONS(2828), - [anon_sym_let] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2826), - [anon_sym_else] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_switch] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_await] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_do] = ACTIONS(2828), - [anon_sym_try] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_debugger] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_throw] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [sym_glimmer_opening_tag] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_SQUOTE] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2828), - [anon_sym_async] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2828), - [anon_sym_using] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_void] = ACTIONS(2828), - [anon_sym_delete] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2826), - [sym_number] = ACTIONS(2826), - [sym_private_property_identifier] = ACTIONS(2826), - [sym_this] = ACTIONS(2828), - [sym_super] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_null] = ACTIONS(2828), - [sym_undefined] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2828), - [anon_sym_readonly] = ACTIONS(2828), - [anon_sym_get] = ACTIONS(2828), - [anon_sym_set] = ACTIONS(2828), - [anon_sym_declare] = ACTIONS(2828), - [anon_sym_public] = ACTIONS(2828), - [anon_sym_private] = ACTIONS(2828), - [anon_sym_protected] = ACTIONS(2828), - [anon_sym_override] = ACTIONS(2828), - [anon_sym_module] = ACTIONS(2828), - [anon_sym_any] = ACTIONS(2828), - [anon_sym_number] = ACTIONS(2828), - [anon_sym_boolean] = ACTIONS(2828), - [anon_sym_string] = ACTIONS(2828), - [anon_sym_symbol] = ACTIONS(2828), - [anon_sym_object] = ACTIONS(2828), - [anon_sym_abstract] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), + [883] = { + [ts_builtin_sym_end] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2848), + [anon_sym_export] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_type] = ACTIONS(2848), + [anon_sym_namespace] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_typeof] = ACTIONS(2848), + [anon_sym_import] = ACTIONS(2848), + [anon_sym_with] = ACTIONS(2848), + [anon_sym_var] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_else] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_await] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_debugger] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_glimmer_opening_tag] = ACTIONS(2846), + [anon_sym_DQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_async] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_SLASH] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_void] = ACTIONS(2848), + [anon_sym_delete] = ACTIONS(2848), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2846), + [sym_number] = ACTIONS(2846), + [sym_private_property_identifier] = ACTIONS(2846), + [sym_this] = ACTIONS(2848), + [sym_super] = ACTIONS(2848), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [sym_null] = ACTIONS(2848), + [sym_undefined] = ACTIONS(2848), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_readonly] = ACTIONS(2848), + [anon_sym_get] = ACTIONS(2848), + [anon_sym_set] = ACTIONS(2848), + [anon_sym_declare] = ACTIONS(2848), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_protected] = ACTIONS(2848), + [anon_sym_override] = ACTIONS(2848), + [anon_sym_module] = ACTIONS(2848), + [anon_sym_any] = ACTIONS(2848), + [anon_sym_number] = ACTIONS(2848), + [anon_sym_boolean] = ACTIONS(2848), + [anon_sym_string] = ACTIONS(2848), + [anon_sym_symbol] = ACTIONS(2848), + [anon_sym_object] = ACTIONS(2848), + [anon_sym_abstract] = ACTIONS(2848), + [anon_sym_interface] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), [sym_html_comment] = ACTIONS(5), }, - [886] = { + [884] = { [ts_builtin_sym_end] = ACTIONS(2850), [sym_identifier] = ACTIONS(2852), [anon_sym_export] = ACTIONS(2852), @@ -115565,7 +118760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2852), [sym_html_comment] = ACTIONS(5), }, - [887] = { + [885] = { [ts_builtin_sym_end] = ACTIONS(2854), [sym_identifier] = ACTIONS(2856), [anon_sym_export] = ACTIONS(2856), @@ -115648,7 +118843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2856), [sym_html_comment] = ACTIONS(5), }, - [888] = { + [886] = { [ts_builtin_sym_end] = ACTIONS(2858), [sym_identifier] = ACTIONS(2860), [anon_sym_export] = ACTIONS(2860), @@ -115731,7 +118926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2860), [sym_html_comment] = ACTIONS(5), }, - [889] = { + [887] = { [ts_builtin_sym_end] = ACTIONS(2862), [sym_identifier] = ACTIONS(2864), [anon_sym_export] = ACTIONS(2864), @@ -115814,7 +119009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2864), [sym_html_comment] = ACTIONS(5), }, - [890] = { + [888] = { [ts_builtin_sym_end] = ACTIONS(2866), [sym_identifier] = ACTIONS(2868), [anon_sym_export] = ACTIONS(2868), @@ -115897,7 +119092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2868), [sym_html_comment] = ACTIONS(5), }, - [891] = { + [889] = { [ts_builtin_sym_end] = ACTIONS(2870), [sym_identifier] = ACTIONS(2872), [anon_sym_export] = ACTIONS(2872), @@ -115980,7 +119175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2872), [sym_html_comment] = ACTIONS(5), }, - [892] = { + [890] = { [ts_builtin_sym_end] = ACTIONS(2874), [sym_identifier] = ACTIONS(2876), [anon_sym_export] = ACTIONS(2876), @@ -116063,7 +119258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2876), [sym_html_comment] = ACTIONS(5), }, - [893] = { + [891] = { [ts_builtin_sym_end] = ACTIONS(2878), [sym_identifier] = ACTIONS(2880), [anon_sym_export] = ACTIONS(2880), @@ -116146,7 +119341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2880), [sym_html_comment] = ACTIONS(5), }, - [894] = { + [892] = { [ts_builtin_sym_end] = ACTIONS(2882), [sym_identifier] = ACTIONS(2884), [anon_sym_export] = ACTIONS(2884), @@ -116229,7 +119424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2884), [sym_html_comment] = ACTIONS(5), }, - [895] = { + [893] = { [ts_builtin_sym_end] = ACTIONS(2886), [sym_identifier] = ACTIONS(2888), [anon_sym_export] = ACTIONS(2888), @@ -116312,7 +119507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2888), [sym_html_comment] = ACTIONS(5), }, - [896] = { + [894] = { [ts_builtin_sym_end] = ACTIONS(2890), [sym_identifier] = ACTIONS(2892), [anon_sym_export] = ACTIONS(2892), @@ -116395,7 +119590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2892), [sym_html_comment] = ACTIONS(5), }, - [897] = { + [895] = { [ts_builtin_sym_end] = ACTIONS(2894), [sym_identifier] = ACTIONS(2896), [anon_sym_export] = ACTIONS(2896), @@ -116478,7 +119673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2896), [sym_html_comment] = ACTIONS(5), }, - [898] = { + [896] = { [ts_builtin_sym_end] = ACTIONS(2898), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), @@ -116561,7 +119756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2900), [sym_html_comment] = ACTIONS(5), }, - [899] = { + [897] = { [ts_builtin_sym_end] = ACTIONS(2902), [sym_identifier] = ACTIONS(2904), [anon_sym_export] = ACTIONS(2904), @@ -116644,7 +119839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2904), [sym_html_comment] = ACTIONS(5), }, - [900] = { + [898] = { [ts_builtin_sym_end] = ACTIONS(2906), [sym_identifier] = ACTIONS(2908), [anon_sym_export] = ACTIONS(2908), @@ -116727,7 +119922,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2908), [sym_html_comment] = ACTIONS(5), }, - [901] = { + [899] = { + [ts_builtin_sym_end] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2852), + [anon_sym_export] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_type] = ACTIONS(2852), + [anon_sym_namespace] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_typeof] = ACTIONS(2852), + [anon_sym_import] = ACTIONS(2852), + [anon_sym_with] = ACTIONS(2852), + [anon_sym_var] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_else] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym_await] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_debugger] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2850), + [sym_glimmer_opening_tag] = ACTIONS(2850), + [anon_sym_DQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_async] = ACTIONS(2852), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_using] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_SLASH] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_void] = ACTIONS(2852), + [anon_sym_delete] = ACTIONS(2852), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2850), + [sym_number] = ACTIONS(2850), + [sym_private_property_identifier] = ACTIONS(2850), + [sym_this] = ACTIONS(2852), + [sym_super] = ACTIONS(2852), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [sym_null] = ACTIONS(2852), + [sym_undefined] = ACTIONS(2852), + [anon_sym_AT] = ACTIONS(2850), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_readonly] = ACTIONS(2852), + [anon_sym_get] = ACTIONS(2852), + [anon_sym_set] = ACTIONS(2852), + [anon_sym_declare] = ACTIONS(2852), + [anon_sym_public] = ACTIONS(2852), + [anon_sym_private] = ACTIONS(2852), + [anon_sym_protected] = ACTIONS(2852), + [anon_sym_override] = ACTIONS(2852), + [anon_sym_module] = ACTIONS(2852), + [anon_sym_any] = ACTIONS(2852), + [anon_sym_number] = ACTIONS(2852), + [anon_sym_boolean] = ACTIONS(2852), + [anon_sym_string] = ACTIONS(2852), + [anon_sym_symbol] = ACTIONS(2852), + [anon_sym_object] = ACTIONS(2852), + [anon_sym_abstract] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [sym_html_comment] = ACTIONS(5), + }, + [900] = { [ts_builtin_sym_end] = ACTIONS(2910), [sym_identifier] = ACTIONS(2912), [anon_sym_export] = ACTIONS(2912), @@ -116810,7 +120088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2912), [sym_html_comment] = ACTIONS(5), }, - [902] = { + [901] = { [ts_builtin_sym_end] = ACTIONS(2914), [sym_identifier] = ACTIONS(2916), [anon_sym_export] = ACTIONS(2916), @@ -116893,6 +120171,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2916), [sym_html_comment] = ACTIONS(5), }, + [902] = { + [ts_builtin_sym_end] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2920), + [anon_sym_export] = ACTIONS(2920), + [anon_sym_default] = ACTIONS(2920), + [anon_sym_type] = ACTIONS(2920), + [anon_sym_namespace] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_typeof] = ACTIONS(2920), + [anon_sym_import] = ACTIONS(2920), + [anon_sym_with] = ACTIONS(2920), + [anon_sym_var] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_else] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_await] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_debugger] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_throw] = ACTIONS(2920), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_case] = ACTIONS(2920), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2918), + [sym_glimmer_opening_tag] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(2920), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_using] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_void] = ACTIONS(2920), + [anon_sym_delete] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2918), + [sym_number] = ACTIONS(2918), + [sym_private_property_identifier] = ACTIONS(2918), + [sym_this] = ACTIONS(2920), + [sym_super] = ACTIONS(2920), + [sym_true] = ACTIONS(2920), + [sym_false] = ACTIONS(2920), + [sym_null] = ACTIONS(2920), + [sym_undefined] = ACTIONS(2920), + [anon_sym_AT] = ACTIONS(2918), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_readonly] = ACTIONS(2920), + [anon_sym_get] = ACTIONS(2920), + [anon_sym_set] = ACTIONS(2920), + [anon_sym_declare] = ACTIONS(2920), + [anon_sym_public] = ACTIONS(2920), + [anon_sym_private] = ACTIONS(2920), + [anon_sym_protected] = ACTIONS(2920), + [anon_sym_override] = ACTIONS(2920), + [anon_sym_module] = ACTIONS(2920), + [anon_sym_any] = ACTIONS(2920), + [anon_sym_number] = ACTIONS(2920), + [anon_sym_boolean] = ACTIONS(2920), + [anon_sym_string] = ACTIONS(2920), + [anon_sym_symbol] = ACTIONS(2920), + [anon_sym_object] = ACTIONS(2920), + [anon_sym_abstract] = ACTIONS(2920), + [anon_sym_interface] = ACTIONS(2920), + [anon_sym_enum] = ACTIONS(2920), + [sym_html_comment] = ACTIONS(5), + }, [903] = { [ts_builtin_sym_end] = ACTIONS(2918), [sym_identifier] = ACTIONS(2920), @@ -117143,172 +120504,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [906] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(4521), - [sym_optional_tuple_parameter] = STATE(4521), - [sym_optional_type] = STATE(4521), - [sym_rest_type] = STATE(4521), - [sym__tuple_type_member] = STATE(4521), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(2930), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2930), + [sym_identifier] = ACTIONS(2932), + [anon_sym_export] = ACTIONS(2932), + [anon_sym_default] = ACTIONS(2932), + [anon_sym_type] = ACTIONS(2932), + [anon_sym_namespace] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym_typeof] = ACTIONS(2932), + [anon_sym_import] = ACTIONS(2932), + [anon_sym_with] = ACTIONS(2932), + [anon_sym_var] = ACTIONS(2932), + [anon_sym_let] = ACTIONS(2932), + [anon_sym_const] = ACTIONS(2932), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_else] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_await] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_debugger] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_throw] = ACTIONS(2932), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_case] = ACTIONS(2932), + [anon_sym_yield] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(2930), + [sym_glimmer_opening_tag] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_class] = ACTIONS(2932), + [anon_sym_async] = ACTIONS(2932), + [anon_sym_function] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2932), + [anon_sym_using] = ACTIONS(2932), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_SLASH] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_TILDE] = ACTIONS(2930), + [anon_sym_void] = ACTIONS(2932), + [anon_sym_delete] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2930), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [sym_this] = ACTIONS(2932), + [sym_super] = ACTIONS(2932), + [sym_true] = ACTIONS(2932), + [sym_false] = ACTIONS(2932), + [sym_null] = ACTIONS(2932), + [sym_undefined] = ACTIONS(2932), + [anon_sym_AT] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_readonly] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(2932), + [anon_sym_set] = ACTIONS(2932), + [anon_sym_declare] = ACTIONS(2932), + [anon_sym_public] = ACTIONS(2932), + [anon_sym_private] = ACTIONS(2932), + [anon_sym_protected] = ACTIONS(2932), + [anon_sym_override] = ACTIONS(2932), + [anon_sym_module] = ACTIONS(2932), + [anon_sym_any] = ACTIONS(2932), + [anon_sym_number] = ACTIONS(2932), + [anon_sym_boolean] = ACTIONS(2932), + [anon_sym_string] = ACTIONS(2932), + [anon_sym_symbol] = ACTIONS(2932), + [anon_sym_object] = ACTIONS(2932), + [anon_sym_abstract] = ACTIONS(2932), + [anon_sym_interface] = ACTIONS(2932), + [anon_sym_enum] = ACTIONS(2932), [sym_html_comment] = ACTIONS(5), }, [907] = { - [ts_builtin_sym_end] = ACTIONS(2926), - [sym_identifier] = ACTIONS(2928), - [anon_sym_export] = ACTIONS(2928), - [anon_sym_default] = ACTIONS(2928), - [anon_sym_type] = ACTIONS(2928), - [anon_sym_namespace] = ACTIONS(2928), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_typeof] = ACTIONS(2928), - [anon_sym_import] = ACTIONS(2928), - [anon_sym_with] = ACTIONS(2928), - [anon_sym_var] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_const] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_else] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_switch] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_await] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_do] = ACTIONS(2928), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_break] = ACTIONS(2928), - [anon_sym_continue] = ACTIONS(2928), - [anon_sym_debugger] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_throw] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2926), - [anon_sym_case] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_LBRACK] = ACTIONS(2926), - [sym_glimmer_opening_tag] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_SQUOTE] = ACTIONS(2926), - [anon_sym_class] = ACTIONS(2928), - [anon_sym_async] = ACTIONS(2928), - [anon_sym_function] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2928), - [anon_sym_using] = ACTIONS(2928), - [anon_sym_PLUS] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_SLASH] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(2928), - [anon_sym_delete] = ACTIONS(2928), - [anon_sym_PLUS_PLUS] = ACTIONS(2926), - [anon_sym_DASH_DASH] = ACTIONS(2926), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2926), - [sym_number] = ACTIONS(2926), - [sym_private_property_identifier] = ACTIONS(2926), - [sym_this] = ACTIONS(2928), - [sym_super] = ACTIONS(2928), - [sym_true] = ACTIONS(2928), - [sym_false] = ACTIONS(2928), - [sym_null] = ACTIONS(2928), - [sym_undefined] = ACTIONS(2928), - [anon_sym_AT] = ACTIONS(2926), - [anon_sym_static] = ACTIONS(2928), - [anon_sym_readonly] = ACTIONS(2928), - [anon_sym_get] = ACTIONS(2928), - [anon_sym_set] = ACTIONS(2928), - [anon_sym_declare] = ACTIONS(2928), - [anon_sym_public] = ACTIONS(2928), - [anon_sym_private] = ACTIONS(2928), - [anon_sym_protected] = ACTIONS(2928), - [anon_sym_override] = ACTIONS(2928), - [anon_sym_module] = ACTIONS(2928), - [anon_sym_any] = ACTIONS(2928), - [anon_sym_number] = ACTIONS(2928), - [anon_sym_boolean] = ACTIONS(2928), - [anon_sym_string] = ACTIONS(2928), - [anon_sym_symbol] = ACTIONS(2928), - [anon_sym_object] = ACTIONS(2928), - [anon_sym_abstract] = ACTIONS(2928), - [anon_sym_interface] = ACTIONS(2928), - [anon_sym_enum] = ACTIONS(2928), - [sym_html_comment] = ACTIONS(5), - }, - [908] = { [ts_builtin_sym_end] = ACTIONS(2934), [sym_identifier] = ACTIONS(2936), [anon_sym_export] = ACTIONS(2936), @@ -117391,905 +120669,988 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2936), [sym_html_comment] = ACTIONS(5), }, + [908] = { + [ts_builtin_sym_end] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2928), + [anon_sym_export] = ACTIONS(2928), + [anon_sym_default] = ACTIONS(2928), + [anon_sym_type] = ACTIONS(2928), + [anon_sym_namespace] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_typeof] = ACTIONS(2928), + [anon_sym_import] = ACTIONS(2928), + [anon_sym_with] = ACTIONS(2928), + [anon_sym_var] = ACTIONS(2928), + [anon_sym_let] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_else] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_await] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_do] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_debugger] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_throw] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_case] = ACTIONS(2928), + [anon_sym_yield] = ACTIONS(2928), + [anon_sym_LBRACK] = ACTIONS(2926), + [sym_glimmer_opening_tag] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_class] = ACTIONS(2928), + [anon_sym_async] = ACTIONS(2928), + [anon_sym_function] = ACTIONS(2928), + [anon_sym_new] = ACTIONS(2928), + [anon_sym_using] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_SLASH] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2928), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_void] = ACTIONS(2928), + [anon_sym_delete] = ACTIONS(2928), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2926), + [sym_number] = ACTIONS(2926), + [sym_private_property_identifier] = ACTIONS(2926), + [sym_this] = ACTIONS(2928), + [sym_super] = ACTIONS(2928), + [sym_true] = ACTIONS(2928), + [sym_false] = ACTIONS(2928), + [sym_null] = ACTIONS(2928), + [sym_undefined] = ACTIONS(2928), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_readonly] = ACTIONS(2928), + [anon_sym_get] = ACTIONS(2928), + [anon_sym_set] = ACTIONS(2928), + [anon_sym_declare] = ACTIONS(2928), + [anon_sym_public] = ACTIONS(2928), + [anon_sym_private] = ACTIONS(2928), + [anon_sym_protected] = ACTIONS(2928), + [anon_sym_override] = ACTIONS(2928), + [anon_sym_module] = ACTIONS(2928), + [anon_sym_any] = ACTIONS(2928), + [anon_sym_number] = ACTIONS(2928), + [anon_sym_boolean] = ACTIONS(2928), + [anon_sym_string] = ACTIONS(2928), + [anon_sym_symbol] = ACTIONS(2928), + [anon_sym_object] = ACTIONS(2928), + [anon_sym_abstract] = ACTIONS(2928), + [anon_sym_interface] = ACTIONS(2928), + [anon_sym_enum] = ACTIONS(2928), + [sym_html_comment] = ACTIONS(5), + }, [909] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(5325), - [sym_optional_tuple_parameter] = STATE(5325), - [sym_optional_type] = STATE(5325), - [sym_rest_type] = STATE(5325), - [sym__tuple_type_member] = STATE(5325), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(6035), + [sym_optional_tuple_parameter] = STATE(6035), + [sym_optional_type] = STATE(6035), + [sym_rest_type] = STATE(6035), + [sym__tuple_type_member] = STATE(6035), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_RBRACK] = ACTIONS(2938), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [910] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(5325), - [sym_optional_tuple_parameter] = STATE(5325), - [sym_optional_type] = STATE(5325), - [sym_rest_type] = STATE(5325), - [sym__tuple_type_member] = STATE(5325), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(6035), + [sym_optional_tuple_parameter] = STATE(6035), + [sym_optional_type] = STATE(6035), + [sym_rest_type] = STATE(6035), + [sym__tuple_type_member] = STATE(6035), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_RBRACK] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [911] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(5325), - [sym_optional_tuple_parameter] = STATE(5325), - [sym_optional_type] = STATE(5325), - [sym_rest_type] = STATE(5325), - [sym__tuple_type_member] = STATE(5325), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(6035), + [sym_optional_tuple_parameter] = STATE(6035), + [sym_optional_type] = STATE(6035), + [sym_rest_type] = STATE(6035), + [sym__tuple_type_member] = STATE(6035), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_RBRACK] = ACTIONS(2942), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [912] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(5325), - [sym_optional_tuple_parameter] = STATE(5325), - [sym_optional_type] = STATE(5325), - [sym_rest_type] = STATE(5325), - [sym__tuple_type_member] = STATE(5325), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(6035), + [sym_optional_tuple_parameter] = STATE(6035), + [sym_optional_type] = STATE(6035), + [sym_rest_type] = STATE(6035), + [sym__tuple_type_member] = STATE(6035), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_RBRACK] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [913] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(5325), - [sym_optional_tuple_parameter] = STATE(5325), - [sym_optional_type] = STATE(5325), - [sym_rest_type] = STATE(5325), - [sym__tuple_type_member] = STATE(5325), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(6035), + [sym_optional_tuple_parameter] = STATE(6035), + [sym_optional_type] = STATE(6035), + [sym_rest_type] = STATE(6035), + [sym__tuple_type_member] = STATE(6035), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_RBRACK] = ACTIONS(2946), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [914] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(5325), - [sym_optional_tuple_parameter] = STATE(5325), - [sym_optional_type] = STATE(5325), - [sym_rest_type] = STATE(5325), - [sym__tuple_type_member] = STATE(5325), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(6035), + [sym_optional_tuple_parameter] = STATE(6035), + [sym_optional_type] = STATE(6035), + [sym_rest_type] = STATE(6035), + [sym__tuple_type_member] = STATE(6035), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_RBRACK] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [915] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(5325), - [sym_optional_tuple_parameter] = STATE(5325), - [sym_optional_type] = STATE(5325), - [sym_rest_type] = STATE(5325), - [sym__tuple_type_member] = STATE(5325), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(6035), + [sym_optional_tuple_parameter] = STATE(6035), + [sym_optional_type] = STATE(6035), + [sym_rest_type] = STATE(6035), + [sym__tuple_type_member] = STATE(6035), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_RBRACK] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [916] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(5325), - [sym_optional_tuple_parameter] = STATE(5325), - [sym_optional_type] = STATE(5325), - [sym_rest_type] = STATE(5325), - [sym__tuple_type_member] = STATE(5325), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(6035), + [sym_optional_tuple_parameter] = STATE(6035), + [sym_optional_type] = STATE(6035), + [sym_rest_type] = STATE(6035), + [sym__tuple_type_member] = STATE(6035), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_RBRACK] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [917] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(5325), - [sym_optional_tuple_parameter] = STATE(5325), - [sym_optional_type] = STATE(5325), - [sym_rest_type] = STATE(5325), - [sym__tuple_type_member] = STATE(5325), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(6035), + [sym_optional_tuple_parameter] = STATE(6035), + [sym_optional_type] = STATE(6035), + [sym_rest_type] = STATE(6035), + [sym__tuple_type_member] = STATE(6035), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_RBRACK] = ACTIONS(2954), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [918] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(5325), - [sym_optional_tuple_parameter] = STATE(5325), - [sym_optional_type] = STATE(5325), - [sym_rest_type] = STATE(5325), - [sym__tuple_type_member] = STATE(5325), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(6035), + [sym_optional_tuple_parameter] = STATE(6035), + [sym_optional_type] = STATE(6035), + [sym_rest_type] = STATE(6035), + [sym__tuple_type_member] = STATE(6035), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_RBRACK] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [919] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_rest_pattern] = STATE(5304), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3746), - [sym_tuple_parameter] = STATE(5325), - [sym_optional_tuple_parameter] = STATE(5325), - [sym_optional_type] = STATE(5325), - [sym_rest_type] = STATE(5325), - [sym__tuple_type_member] = STATE(5325), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_rest_pattern] = STATE(7019), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4407), + [sym_tuple_parameter] = STATE(6035), + [sym_optional_tuple_parameter] = STATE(6035), + [sym_optional_type] = STATE(6035), + [sym_rest_type] = STATE(6035), + [sym__tuple_type_member] = STATE(6035), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [920] = { @@ -118371,318 +121732,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [921] = { - [sym_identifier] = ACTIONS(2502), - [anon_sym_export] = ACTIONS(2502), - [anon_sym_type] = ACTIONS(2502), - [anon_sym_namespace] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2500), - [anon_sym_typeof] = ACTIONS(2502), - [anon_sym_import] = ACTIONS(2502), - [anon_sym_with] = ACTIONS(2502), - [anon_sym_var] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_switch] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_await] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_do] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_debugger] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_throw] = ACTIONS(2502), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [sym_glimmer_opening_tag] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_function] = ACTIONS(2502), - [anon_sym_new] = ACTIONS(2502), - [anon_sym_using] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2500), - [anon_sym_void] = ACTIONS(2502), - [anon_sym_delete] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2500), - [sym_number] = ACTIONS(2500), - [sym_private_property_identifier] = ACTIONS(2500), - [sym_this] = ACTIONS(2502), - [sym_super] = ACTIONS(2502), - [sym_true] = ACTIONS(2502), - [sym_false] = ACTIONS(2502), - [sym_null] = ACTIONS(2502), - [sym_undefined] = ACTIONS(2502), - [anon_sym_AT] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2502), - [anon_sym_readonly] = ACTIONS(2502), - [anon_sym_get] = ACTIONS(2502), - [anon_sym_set] = ACTIONS(2502), - [anon_sym_declare] = ACTIONS(2502), - [anon_sym_public] = ACTIONS(2502), - [anon_sym_private] = ACTIONS(2502), - [anon_sym_protected] = ACTIONS(2502), - [anon_sym_override] = ACTIONS(2502), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_any] = ACTIONS(2502), - [anon_sym_number] = ACTIONS(2502), - [anon_sym_boolean] = ACTIONS(2502), - [anon_sym_string] = ACTIONS(2502), - [anon_sym_symbol] = ACTIONS(2502), - [anon_sym_object] = ACTIONS(2502), - [anon_sym_abstract] = ACTIONS(2502), - [anon_sym_interface] = ACTIONS(2502), - [anon_sym_enum] = ACTIONS(2502), - [sym_html_comment] = ACTIONS(5), - }, - [922] = { - [sym_identifier] = ACTIONS(2958), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_namespace] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_typeof] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_await] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_debugger] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2960), - [sym_glimmer_opening_tag] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [anon_sym_class] = ACTIONS(2958), - [anon_sym_async] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_using] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_void] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2960), - [sym_number] = ACTIONS(2960), - [sym_private_property_identifier] = ACTIONS(2960), - [sym_this] = ACTIONS(2958), - [sym_super] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_null] = ACTIONS(2958), - [sym_undefined] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_readonly] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2958), - [anon_sym_set] = ACTIONS(2958), - [anon_sym_declare] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_protected] = ACTIONS(2958), - [anon_sym_override] = ACTIONS(2958), - [anon_sym_module] = ACTIONS(2958), - [anon_sym_any] = ACTIONS(2958), - [anon_sym_number] = ACTIONS(2958), - [anon_sym_boolean] = ACTIONS(2958), - [anon_sym_string] = ACTIONS(2958), - [anon_sym_symbol] = ACTIONS(2958), - [anon_sym_object] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), - [sym_html_comment] = ACTIONS(5), - }, - [923] = { - [sym_identifier] = ACTIONS(2958), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_namespace] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_typeof] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_await] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_debugger] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2960), - [sym_glimmer_opening_tag] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [anon_sym_class] = ACTIONS(2958), - [anon_sym_async] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_using] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_void] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2960), - [sym_number] = ACTIONS(2960), - [sym_private_property_identifier] = ACTIONS(2960), - [sym_this] = ACTIONS(2958), - [sym_super] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_null] = ACTIONS(2958), - [sym_undefined] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_readonly] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2958), - [anon_sym_set] = ACTIONS(2958), - [anon_sym_declare] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_protected] = ACTIONS(2958), - [anon_sym_override] = ACTIONS(2958), - [anon_sym_module] = ACTIONS(2958), - [anon_sym_any] = ACTIONS(2958), - [anon_sym_number] = ACTIONS(2958), - [anon_sym_boolean] = ACTIONS(2958), - [anon_sym_string] = ACTIONS(2958), - [anon_sym_symbol] = ACTIONS(2958), - [anon_sym_object] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), - [sym_html_comment] = ACTIONS(5), - }, - [924] = { - [sym_identifier] = ACTIONS(2958), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_namespace] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_typeof] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_await] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_debugger] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2960), - [sym_glimmer_opening_tag] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [anon_sym_class] = ACTIONS(2958), - [anon_sym_async] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_using] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_void] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2960), - [sym_number] = ACTIONS(2960), - [sym_private_property_identifier] = ACTIONS(2960), - [sym_this] = ACTIONS(2958), - [sym_super] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_null] = ACTIONS(2958), - [sym_undefined] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_readonly] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2958), - [anon_sym_set] = ACTIONS(2958), - [anon_sym_declare] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_protected] = ACTIONS(2958), - [anon_sym_override] = ACTIONS(2958), - [anon_sym_module] = ACTIONS(2958), - [anon_sym_any] = ACTIONS(2958), - [anon_sym_number] = ACTIONS(2958), - [anon_sym_boolean] = ACTIONS(2958), - [anon_sym_string] = ACTIONS(2958), - [anon_sym_symbol] = ACTIONS(2958), - [anon_sym_object] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), - [sym_html_comment] = ACTIONS(5), - }, - [925] = { [sym_identifier] = ACTIONS(2962), [anon_sym_export] = ACTIONS(2962), [anon_sym_type] = ACTIONS(2962), @@ -118760,241 +121809,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2962), [sym_html_comment] = ACTIONS(5), }, - [926] = { - [sym_identifier] = ACTIONS(2958), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_namespace] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_typeof] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_await] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_debugger] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2960), - [sym_glimmer_opening_tag] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [anon_sym_class] = ACTIONS(2958), - [anon_sym_async] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_using] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_void] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2960), - [sym_number] = ACTIONS(2960), - [sym_private_property_identifier] = ACTIONS(2960), - [sym_this] = ACTIONS(2958), - [sym_super] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_null] = ACTIONS(2958), - [sym_undefined] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_readonly] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2958), - [anon_sym_set] = ACTIONS(2958), - [anon_sym_declare] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_protected] = ACTIONS(2958), - [anon_sym_override] = ACTIONS(2958), - [anon_sym_module] = ACTIONS(2958), - [anon_sym_any] = ACTIONS(2958), - [anon_sym_number] = ACTIONS(2958), - [anon_sym_boolean] = ACTIONS(2958), - [anon_sym_string] = ACTIONS(2958), - [anon_sym_symbol] = ACTIONS(2958), - [anon_sym_object] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), - [sym_html_comment] = ACTIONS(5), - }, - [927] = { - [sym_identifier] = ACTIONS(2958), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_namespace] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_typeof] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_await] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_debugger] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2960), - [sym_glimmer_opening_tag] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [anon_sym_class] = ACTIONS(2958), - [anon_sym_async] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_using] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_void] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), + [922] = { + [sym_identifier] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2966), + [anon_sym_var] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym_await] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_debugger] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [sym_glimmer_opening_tag] = ACTIONS(2968), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_async] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_void] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_DASH_DASH] = ACTIONS(2968), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2960), - [sym_number] = ACTIONS(2960), - [sym_private_property_identifier] = ACTIONS(2960), - [sym_this] = ACTIONS(2958), - [sym_super] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_null] = ACTIONS(2958), - [sym_undefined] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_readonly] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2958), - [anon_sym_set] = ACTIONS(2958), - [anon_sym_declare] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_protected] = ACTIONS(2958), - [anon_sym_override] = ACTIONS(2958), - [anon_sym_module] = ACTIONS(2958), - [anon_sym_any] = ACTIONS(2958), - [anon_sym_number] = ACTIONS(2958), - [anon_sym_boolean] = ACTIONS(2958), - [anon_sym_string] = ACTIONS(2958), - [anon_sym_symbol] = ACTIONS(2958), - [anon_sym_object] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), + [anon_sym_BQUOTE] = ACTIONS(2968), + [sym_number] = ACTIONS(2968), + [sym_private_property_identifier] = ACTIONS(2968), + [sym_this] = ACTIONS(2966), + [sym_super] = ACTIONS(2966), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [sym_null] = ACTIONS(2966), + [sym_undefined] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_readonly] = ACTIONS(2966), + [anon_sym_get] = ACTIONS(2966), + [anon_sym_set] = ACTIONS(2966), + [anon_sym_declare] = ACTIONS(2966), + [anon_sym_public] = ACTIONS(2966), + [anon_sym_private] = ACTIONS(2966), + [anon_sym_protected] = ACTIONS(2966), + [anon_sym_override] = ACTIONS(2966), + [anon_sym_module] = ACTIONS(2966), + [anon_sym_any] = ACTIONS(2966), + [anon_sym_number] = ACTIONS(2966), + [anon_sym_boolean] = ACTIONS(2966), + [anon_sym_string] = ACTIONS(2966), + [anon_sym_symbol] = ACTIONS(2966), + [anon_sym_object] = ACTIONS(2966), + [anon_sym_abstract] = ACTIONS(2966), + [anon_sym_interface] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), [sym_html_comment] = ACTIONS(5), }, - [928] = { - [sym_identifier] = ACTIONS(2958), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_namespace] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_typeof] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_await] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_debugger] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2960), - [sym_glimmer_opening_tag] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [anon_sym_class] = ACTIONS(2958), - [anon_sym_async] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_using] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_void] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), + [923] = { + [sym_identifier] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2966), + [anon_sym_var] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym_await] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_debugger] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [sym_glimmer_opening_tag] = ACTIONS(2968), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_async] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_void] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_DASH_DASH] = ACTIONS(2968), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2960), - [sym_number] = ACTIONS(2960), - [sym_private_property_identifier] = ACTIONS(2960), - [sym_this] = ACTIONS(2958), - [sym_super] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_null] = ACTIONS(2958), - [sym_undefined] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_readonly] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2958), - [anon_sym_set] = ACTIONS(2958), - [anon_sym_declare] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_protected] = ACTIONS(2958), - [anon_sym_override] = ACTIONS(2958), - [anon_sym_module] = ACTIONS(2958), - [anon_sym_any] = ACTIONS(2958), - [anon_sym_number] = ACTIONS(2958), - [anon_sym_boolean] = ACTIONS(2958), - [anon_sym_string] = ACTIONS(2958), - [anon_sym_symbol] = ACTIONS(2958), - [anon_sym_object] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), + [anon_sym_BQUOTE] = ACTIONS(2968), + [sym_number] = ACTIONS(2968), + [sym_private_property_identifier] = ACTIONS(2968), + [sym_this] = ACTIONS(2966), + [sym_super] = ACTIONS(2966), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [sym_null] = ACTIONS(2966), + [sym_undefined] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_readonly] = ACTIONS(2966), + [anon_sym_get] = ACTIONS(2966), + [anon_sym_set] = ACTIONS(2966), + [anon_sym_declare] = ACTIONS(2966), + [anon_sym_public] = ACTIONS(2966), + [anon_sym_private] = ACTIONS(2966), + [anon_sym_protected] = ACTIONS(2966), + [anon_sym_override] = ACTIONS(2966), + [anon_sym_module] = ACTIONS(2966), + [anon_sym_any] = ACTIONS(2966), + [anon_sym_number] = ACTIONS(2966), + [anon_sym_boolean] = ACTIONS(2966), + [anon_sym_string] = ACTIONS(2966), + [anon_sym_symbol] = ACTIONS(2966), + [anon_sym_object] = ACTIONS(2966), + [anon_sym_abstract] = ACTIONS(2966), + [anon_sym_interface] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), [sym_html_comment] = ACTIONS(5), }, - [929] = { + [924] = { [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2966), [anon_sym_type] = ACTIONS(2966), @@ -119072,15568 +122043,15730 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2966), [sym_html_comment] = ACTIONS(5), }, - [930] = { - [sym_identifier] = ACTIONS(2970), - [anon_sym_export] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_namespace] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_typeof] = ACTIONS(2970), - [anon_sym_import] = ACTIONS(2970), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_var] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_switch] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_await] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_debugger] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_throw] = ACTIONS(2970), - [anon_sym_SEMI] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2972), - [sym_glimmer_opening_tag] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_class] = ACTIONS(2970), - [anon_sym_async] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_using] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [anon_sym_void] = ACTIONS(2970), - [anon_sym_delete] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2972), - [anon_sym_DASH_DASH] = ACTIONS(2972), + [925] = { + [sym_identifier] = ACTIONS(2498), + [anon_sym_export] = ACTIONS(2498), + [anon_sym_type] = ACTIONS(2498), + [anon_sym_namespace] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_typeof] = ACTIONS(2498), + [anon_sym_import] = ACTIONS(2498), + [anon_sym_with] = ACTIONS(2498), + [anon_sym_var] = ACTIONS(2498), + [anon_sym_let] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_switch] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_await] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_debugger] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_throw] = ACTIONS(2498), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym_yield] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2496), + [sym_glimmer_opening_tag] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_class] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(2498), + [anon_sym_function] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2498), + [anon_sym_using] = ACTIONS(2498), + [anon_sym_PLUS] = ACTIONS(2498), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_SLASH] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2498), + [anon_sym_TILDE] = ACTIONS(2496), + [anon_sym_void] = ACTIONS(2498), + [anon_sym_delete] = ACTIONS(2498), + [anon_sym_PLUS_PLUS] = ACTIONS(2496), + [anon_sym_DASH_DASH] = ACTIONS(2496), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2972), - [sym_number] = ACTIONS(2972), - [sym_private_property_identifier] = ACTIONS(2972), - [sym_this] = ACTIONS(2970), - [sym_super] = ACTIONS(2970), - [sym_true] = ACTIONS(2970), - [sym_false] = ACTIONS(2970), - [sym_null] = ACTIONS(2970), - [sym_undefined] = ACTIONS(2970), - [anon_sym_AT] = ACTIONS(2972), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_readonly] = ACTIONS(2970), - [anon_sym_get] = ACTIONS(2970), - [anon_sym_set] = ACTIONS(2970), - [anon_sym_declare] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_protected] = ACTIONS(2970), - [anon_sym_override] = ACTIONS(2970), - [anon_sym_module] = ACTIONS(2970), - [anon_sym_any] = ACTIONS(2970), - [anon_sym_number] = ACTIONS(2970), - [anon_sym_boolean] = ACTIONS(2970), - [anon_sym_string] = ACTIONS(2970), - [anon_sym_symbol] = ACTIONS(2970), - [anon_sym_object] = ACTIONS(2970), - [anon_sym_abstract] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), + [anon_sym_BQUOTE] = ACTIONS(2496), + [sym_number] = ACTIONS(2496), + [sym_private_property_identifier] = ACTIONS(2496), + [sym_this] = ACTIONS(2498), + [sym_super] = ACTIONS(2498), + [sym_true] = ACTIONS(2498), + [sym_false] = ACTIONS(2498), + [sym_null] = ACTIONS(2498), + [sym_undefined] = ACTIONS(2498), + [anon_sym_AT] = ACTIONS(2496), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_readonly] = ACTIONS(2498), + [anon_sym_get] = ACTIONS(2498), + [anon_sym_set] = ACTIONS(2498), + [anon_sym_declare] = ACTIONS(2498), + [anon_sym_public] = ACTIONS(2498), + [anon_sym_private] = ACTIONS(2498), + [anon_sym_protected] = ACTIONS(2498), + [anon_sym_override] = ACTIONS(2498), + [anon_sym_module] = ACTIONS(2498), + [anon_sym_any] = ACTIONS(2498), + [anon_sym_number] = ACTIONS(2498), + [anon_sym_boolean] = ACTIONS(2498), + [anon_sym_string] = ACTIONS(2498), + [anon_sym_symbol] = ACTIONS(2498), + [anon_sym_object] = ACTIONS(2498), + [anon_sym_abstract] = ACTIONS(2498), + [anon_sym_interface] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), [sym_html_comment] = ACTIONS(5), }, - [931] = { - [sym_identifier] = ACTIONS(2958), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_namespace] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_typeof] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_await] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_debugger] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2960), - [sym_glimmer_opening_tag] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [anon_sym_class] = ACTIONS(2958), - [anon_sym_async] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_using] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_void] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2960), - [sym_number] = ACTIONS(2960), - [sym_private_property_identifier] = ACTIONS(2960), - [sym_this] = ACTIONS(2958), - [sym_super] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_null] = ACTIONS(2958), - [sym_undefined] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_readonly] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2958), - [anon_sym_set] = ACTIONS(2958), - [anon_sym_declare] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_protected] = ACTIONS(2958), - [anon_sym_override] = ACTIONS(2958), - [anon_sym_module] = ACTIONS(2958), - [anon_sym_any] = ACTIONS(2958), - [anon_sym_number] = ACTIONS(2958), - [anon_sym_boolean] = ACTIONS(2958), - [anon_sym_string] = ACTIONS(2958), - [anon_sym_symbol] = ACTIONS(2958), - [anon_sym_object] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), + [926] = { + [sym_identifier] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2966), + [anon_sym_var] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym_await] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_debugger] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [sym_glimmer_opening_tag] = ACTIONS(2968), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_async] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_void] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2968), + [sym_number] = ACTIONS(2968), + [sym_private_property_identifier] = ACTIONS(2968), + [sym_this] = ACTIONS(2966), + [sym_super] = ACTIONS(2966), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [sym_null] = ACTIONS(2966), + [sym_undefined] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_readonly] = ACTIONS(2966), + [anon_sym_get] = ACTIONS(2966), + [anon_sym_set] = ACTIONS(2966), + [anon_sym_declare] = ACTIONS(2966), + [anon_sym_public] = ACTIONS(2966), + [anon_sym_private] = ACTIONS(2966), + [anon_sym_protected] = ACTIONS(2966), + [anon_sym_override] = ACTIONS(2966), + [anon_sym_module] = ACTIONS(2966), + [anon_sym_any] = ACTIONS(2966), + [anon_sym_number] = ACTIONS(2966), + [anon_sym_boolean] = ACTIONS(2966), + [anon_sym_string] = ACTIONS(2966), + [anon_sym_symbol] = ACTIONS(2966), + [anon_sym_object] = ACTIONS(2966), + [anon_sym_abstract] = ACTIONS(2966), + [anon_sym_interface] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [sym_html_comment] = ACTIONS(5), + }, + [927] = { + [sym_identifier] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2966), + [anon_sym_var] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym_await] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_debugger] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [sym_glimmer_opening_tag] = ACTIONS(2968), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_async] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_void] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2968), + [sym_number] = ACTIONS(2968), + [sym_private_property_identifier] = ACTIONS(2968), + [sym_this] = ACTIONS(2966), + [sym_super] = ACTIONS(2966), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [sym_null] = ACTIONS(2966), + [sym_undefined] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_readonly] = ACTIONS(2966), + [anon_sym_get] = ACTIONS(2966), + [anon_sym_set] = ACTIONS(2966), + [anon_sym_declare] = ACTIONS(2966), + [anon_sym_public] = ACTIONS(2966), + [anon_sym_private] = ACTIONS(2966), + [anon_sym_protected] = ACTIONS(2966), + [anon_sym_override] = ACTIONS(2966), + [anon_sym_module] = ACTIONS(2966), + [anon_sym_any] = ACTIONS(2966), + [anon_sym_number] = ACTIONS(2966), + [anon_sym_boolean] = ACTIONS(2966), + [anon_sym_string] = ACTIONS(2966), + [anon_sym_symbol] = ACTIONS(2966), + [anon_sym_object] = ACTIONS(2966), + [anon_sym_abstract] = ACTIONS(2966), + [anon_sym_interface] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [sym_html_comment] = ACTIONS(5), + }, + [928] = { + [sym_identifier] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2966), + [anon_sym_var] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym_await] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_debugger] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [sym_glimmer_opening_tag] = ACTIONS(2968), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_async] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_void] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2968), + [sym_number] = ACTIONS(2968), + [sym_private_property_identifier] = ACTIONS(2968), + [sym_this] = ACTIONS(2966), + [sym_super] = ACTIONS(2966), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [sym_null] = ACTIONS(2966), + [sym_undefined] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_readonly] = ACTIONS(2966), + [anon_sym_get] = ACTIONS(2966), + [anon_sym_set] = ACTIONS(2966), + [anon_sym_declare] = ACTIONS(2966), + [anon_sym_public] = ACTIONS(2966), + [anon_sym_private] = ACTIONS(2966), + [anon_sym_protected] = ACTIONS(2966), + [anon_sym_override] = ACTIONS(2966), + [anon_sym_module] = ACTIONS(2966), + [anon_sym_any] = ACTIONS(2966), + [anon_sym_number] = ACTIONS(2966), + [anon_sym_boolean] = ACTIONS(2966), + [anon_sym_string] = ACTIONS(2966), + [anon_sym_symbol] = ACTIONS(2966), + [anon_sym_object] = ACTIONS(2966), + [anon_sym_abstract] = ACTIONS(2966), + [anon_sym_interface] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [sym_html_comment] = ACTIONS(5), + }, + [929] = { + [sym_identifier] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2966), + [anon_sym_var] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym_await] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_debugger] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [sym_glimmer_opening_tag] = ACTIONS(2968), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_async] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_void] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2968), + [sym_number] = ACTIONS(2968), + [sym_private_property_identifier] = ACTIONS(2968), + [sym_this] = ACTIONS(2966), + [sym_super] = ACTIONS(2966), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [sym_null] = ACTIONS(2966), + [sym_undefined] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_readonly] = ACTIONS(2966), + [anon_sym_get] = ACTIONS(2966), + [anon_sym_set] = ACTIONS(2966), + [anon_sym_declare] = ACTIONS(2966), + [anon_sym_public] = ACTIONS(2966), + [anon_sym_private] = ACTIONS(2966), + [anon_sym_protected] = ACTIONS(2966), + [anon_sym_override] = ACTIONS(2966), + [anon_sym_module] = ACTIONS(2966), + [anon_sym_any] = ACTIONS(2966), + [anon_sym_number] = ACTIONS(2966), + [anon_sym_boolean] = ACTIONS(2966), + [anon_sym_string] = ACTIONS(2966), + [anon_sym_symbol] = ACTIONS(2966), + [anon_sym_object] = ACTIONS(2966), + [anon_sym_abstract] = ACTIONS(2966), + [anon_sym_interface] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [sym_html_comment] = ACTIONS(5), + }, + [930] = { + [sym_identifier] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(2966), + [anon_sym_with] = ACTIONS(2966), + [anon_sym_var] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym_await] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_debugger] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [sym_glimmer_opening_tag] = ACTIONS(2968), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_async] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_void] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2968), + [sym_number] = ACTIONS(2968), + [sym_private_property_identifier] = ACTIONS(2968), + [sym_this] = ACTIONS(2966), + [sym_super] = ACTIONS(2966), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [sym_null] = ACTIONS(2966), + [sym_undefined] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_readonly] = ACTIONS(2966), + [anon_sym_get] = ACTIONS(2966), + [anon_sym_set] = ACTIONS(2966), + [anon_sym_declare] = ACTIONS(2966), + [anon_sym_public] = ACTIONS(2966), + [anon_sym_private] = ACTIONS(2966), + [anon_sym_protected] = ACTIONS(2966), + [anon_sym_override] = ACTIONS(2966), + [anon_sym_module] = ACTIONS(2966), + [anon_sym_any] = ACTIONS(2966), + [anon_sym_number] = ACTIONS(2966), + [anon_sym_boolean] = ACTIONS(2966), + [anon_sym_string] = ACTIONS(2966), + [anon_sym_symbol] = ACTIONS(2966), + [anon_sym_object] = ACTIONS(2966), + [anon_sym_abstract] = ACTIONS(2966), + [anon_sym_interface] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [sym_html_comment] = ACTIONS(5), + }, + [931] = { + [sym_identifier] = ACTIONS(2502), + [anon_sym_export] = ACTIONS(2502), + [anon_sym_type] = ACTIONS(2502), + [anon_sym_namespace] = ACTIONS(2502), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_typeof] = ACTIONS(2502), + [anon_sym_import] = ACTIONS(2502), + [anon_sym_with] = ACTIONS(2502), + [anon_sym_var] = ACTIONS(2502), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_const] = ACTIONS(2502), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2502), + [anon_sym_switch] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2500), + [anon_sym_await] = ACTIONS(2502), + [anon_sym_while] = ACTIONS(2502), + [anon_sym_do] = ACTIONS(2502), + [anon_sym_try] = ACTIONS(2502), + [anon_sym_break] = ACTIONS(2502), + [anon_sym_continue] = ACTIONS(2502), + [anon_sym_debugger] = ACTIONS(2502), + [anon_sym_return] = ACTIONS(2502), + [anon_sym_throw] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2500), + [anon_sym_yield] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(2500), + [sym_glimmer_opening_tag] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_class] = ACTIONS(2502), + [anon_sym_async] = ACTIONS(2502), + [anon_sym_function] = ACTIONS(2502), + [anon_sym_new] = ACTIONS(2502), + [anon_sym_using] = ACTIONS(2502), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_SLASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_TILDE] = ACTIONS(2500), + [anon_sym_void] = ACTIONS(2502), + [anon_sym_delete] = ACTIONS(2502), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2500), + [sym_number] = ACTIONS(2500), + [sym_private_property_identifier] = ACTIONS(2500), + [sym_this] = ACTIONS(2502), + [sym_super] = ACTIONS(2502), + [sym_true] = ACTIONS(2502), + [sym_false] = ACTIONS(2502), + [sym_null] = ACTIONS(2502), + [sym_undefined] = ACTIONS(2502), + [anon_sym_AT] = ACTIONS(2500), + [anon_sym_static] = ACTIONS(2502), + [anon_sym_readonly] = ACTIONS(2502), + [anon_sym_get] = ACTIONS(2502), + [anon_sym_set] = ACTIONS(2502), + [anon_sym_declare] = ACTIONS(2502), + [anon_sym_public] = ACTIONS(2502), + [anon_sym_private] = ACTIONS(2502), + [anon_sym_protected] = ACTIONS(2502), + [anon_sym_override] = ACTIONS(2502), + [anon_sym_module] = ACTIONS(2502), + [anon_sym_any] = ACTIONS(2502), + [anon_sym_number] = ACTIONS(2502), + [anon_sym_boolean] = ACTIONS(2502), + [anon_sym_string] = ACTIONS(2502), + [anon_sym_symbol] = ACTIONS(2502), + [anon_sym_object] = ACTIONS(2502), + [anon_sym_abstract] = ACTIONS(2502), + [anon_sym_interface] = ACTIONS(2502), + [anon_sym_enum] = ACTIONS(2502), [sym_html_comment] = ACTIONS(5), }, [932] = { - [sym_identifier] = ACTIONS(2510), - [anon_sym_export] = ACTIONS(2510), - [anon_sym_type] = ACTIONS(2510), - [anon_sym_namespace] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_typeof] = ACTIONS(2510), - [anon_sym_import] = ACTIONS(2510), - [anon_sym_with] = ACTIONS(2510), - [anon_sym_var] = ACTIONS(2510), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_await] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_debugger] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_throw] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_yield] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2508), - [sym_glimmer_opening_tag] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2508), - [anon_sym_class] = ACTIONS(2510), - [anon_sym_async] = ACTIONS(2510), - [anon_sym_function] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_using] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_TILDE] = ACTIONS(2508), - [anon_sym_void] = ACTIONS(2510), - [anon_sym_delete] = ACTIONS(2510), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_DASH_DASH] = ACTIONS(2508), + [sym_identifier] = ACTIONS(2970), + [anon_sym_export] = ACTIONS(2970), + [anon_sym_type] = ACTIONS(2970), + [anon_sym_namespace] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_typeof] = ACTIONS(2970), + [anon_sym_import] = ACTIONS(2970), + [anon_sym_with] = ACTIONS(2970), + [anon_sym_var] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_const] = ACTIONS(2970), + [anon_sym_BANG] = ACTIONS(2972), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2970), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2972), + [anon_sym_await] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_debugger] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_throw] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [sym_glimmer_opening_tag] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_class] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(2970), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_using] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_SLASH] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(2970), + [anon_sym_delete] = ACTIONS(2970), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_DASH_DASH] = ACTIONS(2972), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2508), - [sym_number] = ACTIONS(2508), - [sym_private_property_identifier] = ACTIONS(2508), - [sym_this] = ACTIONS(2510), - [sym_super] = ACTIONS(2510), - [sym_true] = ACTIONS(2510), - [sym_false] = ACTIONS(2510), - [sym_null] = ACTIONS(2510), - [sym_undefined] = ACTIONS(2510), - [anon_sym_AT] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_readonly] = ACTIONS(2510), - [anon_sym_get] = ACTIONS(2510), - [anon_sym_set] = ACTIONS(2510), - [anon_sym_declare] = ACTIONS(2510), - [anon_sym_public] = ACTIONS(2510), - [anon_sym_private] = ACTIONS(2510), - [anon_sym_protected] = ACTIONS(2510), - [anon_sym_override] = ACTIONS(2510), - [anon_sym_module] = ACTIONS(2510), - [anon_sym_any] = ACTIONS(2510), - [anon_sym_number] = ACTIONS(2510), - [anon_sym_boolean] = ACTIONS(2510), - [anon_sym_string] = ACTIONS(2510), - [anon_sym_symbol] = ACTIONS(2510), - [anon_sym_object] = ACTIONS(2510), - [anon_sym_abstract] = ACTIONS(2510), - [anon_sym_interface] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), + [anon_sym_BQUOTE] = ACTIONS(2972), + [sym_number] = ACTIONS(2972), + [sym_private_property_identifier] = ACTIONS(2972), + [sym_this] = ACTIONS(2970), + [sym_super] = ACTIONS(2970), + [sym_true] = ACTIONS(2970), + [sym_false] = ACTIONS(2970), + [sym_null] = ACTIONS(2970), + [sym_undefined] = ACTIONS(2970), + [anon_sym_AT] = ACTIONS(2972), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_readonly] = ACTIONS(2970), + [anon_sym_get] = ACTIONS(2970), + [anon_sym_set] = ACTIONS(2970), + [anon_sym_declare] = ACTIONS(2970), + [anon_sym_public] = ACTIONS(2970), + [anon_sym_private] = ACTIONS(2970), + [anon_sym_protected] = ACTIONS(2970), + [anon_sym_override] = ACTIONS(2970), + [anon_sym_module] = ACTIONS(2970), + [anon_sym_any] = ACTIONS(2970), + [anon_sym_number] = ACTIONS(2970), + [anon_sym_boolean] = ACTIONS(2970), + [anon_sym_string] = ACTIONS(2970), + [anon_sym_symbol] = ACTIONS(2970), + [anon_sym_object] = ACTIONS(2970), + [anon_sym_abstract] = ACTIONS(2970), + [anon_sym_interface] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), [sym_html_comment] = ACTIONS(5), }, [933] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_asserts] = STATE(2923), - [sym_type] = STATE(3747), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_predicate] = STATE(2923), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3661), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_asserts] = STATE(3432), + [sym_type] = STATE(4163), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_predicate] = STATE(3432), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3932), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), [sym_identifier] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(2986), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_asserts] = ACTIONS(2994), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(2976), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_asserts] = ACTIONS(2978), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [934] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_asserts] = STATE(2923), - [sym_type] = STATE(3086), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_predicate] = STATE(2923), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3015), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(3004), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_asserts] = ACTIONS(3006), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_asserts] = STATE(1588), + [sym_type] = STATE(1587), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_predicate] = STATE(1588), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1502), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3008), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_asserts] = ACTIONS(3018), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [935] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_asserts] = STATE(2147), - [sym_type] = STATE(2151), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_predicate] = STATE(2147), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(1899), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3008), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3036), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_asserts] = ACTIONS(3046), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_asserts] = STATE(4777), + [sym_type] = STATE(3916), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_predicate] = STATE(4775), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3730), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3060), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_asserts] = ACTIONS(3070), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [936] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_asserts] = STATE(2986), - [sym_type] = STATE(3825), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_predicate] = STATE(2986), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3661), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(2986), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_asserts] = ACTIONS(2994), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_asserts] = STATE(3801), + [sym_type] = STATE(3800), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_predicate] = STATE(3801), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3730), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3060), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_asserts] = ACTIONS(3070), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [937] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_asserts] = STATE(3422), - [sym_type] = STATE(3423), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_predicate] = STATE(3422), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3270), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3088), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_asserts] = ACTIONS(3098), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_asserts] = STATE(1968), + [sym_type] = STATE(1969), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_predicate] = STATE(1968), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(1925), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3108), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_asserts] = ACTIONS(3118), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [938] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_asserts] = STATE(5252), - [sym_type] = STATE(3329), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_predicate] = STATE(5254), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3015), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(3004), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_asserts] = ACTIONS(3006), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_asserts] = STATE(3368), + [sym_type] = STATE(4144), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_predicate] = STATE(3368), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3932), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(2976), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_asserts] = ACTIONS(2978), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [939] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_asserts] = STATE(1962), - [sym_type] = STATE(1966), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_predicate] = STATE(1962), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(1899), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3008), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3036), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_asserts] = ACTIONS(3046), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_asserts] = STATE(3664), + [sym_type] = STATE(3666), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_predicate] = STATE(3664), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3593), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(3132), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_asserts] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [940] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_asserts] = STATE(1627), - [sym_type] = STATE(1628), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_predicate] = STATE(1627), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1487), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3136), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_asserts] = ACTIONS(3146), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_asserts] = STATE(4463), + [sym_type] = STATE(3713), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_predicate] = STATE(4465), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3593), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(3132), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_asserts] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [941] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_asserts] = STATE(3790), - [sym_type] = STATE(3263), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_predicate] = STATE(3841), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3144), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(3160), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_asserts] = ACTIONS(3162), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_asserts] = STATE(2006), + [sym_type] = STATE(2007), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_predicate] = STATE(2006), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(1925), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3108), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_asserts] = ACTIONS(3118), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [942] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_asserts] = STATE(2923), - [sym_type] = STATE(3701), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_predicate] = STATE(2923), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3474), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(3166), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_asserts] = ACTIONS(3168), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_asserts] = STATE(3432), + [sym_type] = STATE(3509), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_predicate] = STATE(3432), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3500), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(3138), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_asserts] = ACTIONS(3140), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [943] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_asserts] = STATE(2986), - [sym_type] = STATE(3501), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_predicate] = STATE(2986), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3474), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(3166), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_asserts] = ACTIONS(3168), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_asserts] = STATE(6959), + [sym_type] = STATE(3799), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_predicate] = STATE(6957), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3500), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(3138), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_asserts] = ACTIONS(3140), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [944] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_asserts] = STATE(3231), - [sym_type] = STATE(3232), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_predicate] = STATE(3231), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3144), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(3160), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_asserts] = STATE(3368), + [sym_type] = STATE(4252), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_predicate] = STATE(3368), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(4138), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(3154), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), [anon_sym_asserts] = ACTIONS(3162), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [945] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_asserts] = STATE(4274), - [sym_type] = STATE(3483), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_predicate] = STATE(4275), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3270), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3088), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_asserts] = ACTIONS(3098), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_asserts] = STATE(1548), + [sym_type] = STATE(1546), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_predicate] = STATE(1548), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1502), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3008), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_asserts] = ACTIONS(3018), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [946] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_asserts] = STATE(2986), - [sym_type] = STATE(3072), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_predicate] = STATE(2986), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3015), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(3004), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_asserts] = ACTIONS(3006), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_asserts] = STATE(3712), + [sym_type] = STATE(3704), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_predicate] = STATE(3712), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3593), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(3132), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_asserts] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [947] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_asserts] = STATE(1593), - [sym_type] = STATE(1594), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_predicate] = STATE(1593), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1487), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3136), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_asserts] = ACTIONS(3146), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_asserts] = STATE(3884), + [sym_type] = STATE(3879), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_predicate] = STATE(3884), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3730), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3060), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_asserts] = ACTIONS(3070), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [948] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_asserts] = STATE(3394), - [sym_type] = STATE(3395), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_predicate] = STATE(3394), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3270), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3088), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_asserts] = ACTIONS(3098), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_asserts] = STATE(3432), + [sym_type] = STATE(4193), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_predicate] = STATE(3432), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(4138), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(3154), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_asserts] = ACTIONS(3162), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [949] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_asserts] = STATE(3192), - [sym_type] = STATE(3199), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_predicate] = STATE(3192), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3144), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(3160), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_asserts] = ACTIONS(3162), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_asserts] = STATE(3368), + [sym_type] = STATE(3511), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_predicate] = STATE(3368), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3500), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(3138), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_asserts] = ACTIONS(3140), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [950] = { - [sym_identifier] = ACTIONS(3170), - [anon_sym_export] = ACTIONS(3170), - [anon_sym_type] = ACTIONS(3170), - [anon_sym_EQ] = ACTIONS(3170), - [anon_sym_namespace] = ACTIONS(3170), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_typeof] = ACTIONS(3170), - [anon_sym_import] = ACTIONS(3170), - [anon_sym_let] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_RPAREN] = ACTIONS(3172), - [anon_sym_await] = ACTIONS(3170), - [anon_sym_COLON] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_RBRACK] = ACTIONS(3172), - [sym_glimmer_opening_tag] = ACTIONS(3172), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_DOT] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3170), - [anon_sym_async] = ACTIONS(3170), - [anon_sym_function] = ACTIONS(3170), - [anon_sym_EQ_GT] = ACTIONS(3172), - [anon_sym_QMARK_DOT] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3170), - [anon_sym_using] = ACTIONS(3170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3172), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_PIPE] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_SLASH] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_void] = ACTIONS(3170), - [anon_sym_delete] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_number] = ACTIONS(3172), - [sym_private_property_identifier] = ACTIONS(3172), - [sym_this] = ACTIONS(3170), - [sym_super] = ACTIONS(3170), - [sym_true] = ACTIONS(3170), - [sym_false] = ACTIONS(3170), - [sym_null] = ACTIONS(3170), - [sym_undefined] = ACTIONS(3170), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3170), - [anon_sym_readonly] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3170), - [anon_sym_set] = ACTIONS(3170), - [anon_sym_QMARK] = ACTIONS(3170), - [anon_sym_declare] = ACTIONS(3170), - [anon_sym_public] = ACTIONS(3170), - [anon_sym_private] = ACTIONS(3170), - [anon_sym_protected] = ACTIONS(3170), - [anon_sym_override] = ACTIONS(3170), - [anon_sym_module] = ACTIONS(3170), - [anon_sym_any] = ACTIONS(3170), - [anon_sym_number] = ACTIONS(3170), - [anon_sym_boolean] = ACTIONS(3170), - [anon_sym_string] = ACTIONS(3170), - [anon_sym_symbol] = ACTIONS(3170), - [anon_sym_object] = ACTIONS(3170), - [anon_sym_abstract] = ACTIONS(3170), - [anon_sym_extends] = ACTIONS(3170), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [951] = { - [sym_identifier] = ACTIONS(3174), - [anon_sym_export] = ACTIONS(3174), - [anon_sym_type] = ACTIONS(3174), - [anon_sym_EQ] = ACTIONS(3174), - [anon_sym_namespace] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_let] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_RPAREN] = ACTIONS(3176), - [anon_sym_await] = ACTIONS(3174), - [anon_sym_COLON] = ACTIONS(3176), - [anon_sym_yield] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_RBRACK] = ACTIONS(3176), - [sym_glimmer_opening_tag] = ACTIONS(3176), - [anon_sym_GT] = ACTIONS(3176), - [anon_sym_DOT] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3176), - [anon_sym_SQUOTE] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_async] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_EQ_GT] = ACTIONS(3176), - [anon_sym_QMARK_DOT] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3176), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_void] = ACTIONS(3174), - [anon_sym_delete] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3176), - [sym_number] = ACTIONS(3176), - [sym_private_property_identifier] = ACTIONS(3176), - [sym_this] = ACTIONS(3174), - [sym_super] = ACTIONS(3174), - [sym_true] = ACTIONS(3174), - [sym_false] = ACTIONS(3174), - [sym_null] = ACTIONS(3174), - [sym_undefined] = ACTIONS(3174), - [anon_sym_AT] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_readonly] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3174), - [anon_sym_set] = ACTIONS(3174), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_declare] = ACTIONS(3174), - [anon_sym_public] = ACTIONS(3174), - [anon_sym_private] = ACTIONS(3174), - [anon_sym_protected] = ACTIONS(3174), - [anon_sym_override] = ACTIONS(3174), - [anon_sym_module] = ACTIONS(3174), - [anon_sym_any] = ACTIONS(3174), - [anon_sym_number] = ACTIONS(3174), - [anon_sym_boolean] = ACTIONS(3174), - [anon_sym_string] = ACTIONS(3174), - [anon_sym_symbol] = ACTIONS(3174), - [anon_sym_object] = ACTIONS(3174), - [anon_sym_abstract] = ACTIONS(3174), - [anon_sym_extends] = ACTIONS(3174), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5399), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [952] = { - [sym_identifier] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_EQ] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_COMMA] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_typeof] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_RPAREN] = ACTIONS(3180), - [anon_sym_await] = ACTIONS(3178), - [anon_sym_COLON] = ACTIONS(3180), - [anon_sym_yield] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3180), - [sym_glimmer_opening_tag] = ACTIONS(3180), - [anon_sym_GT] = ACTIONS(3180), - [anon_sym_DOT] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_async] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_EQ_GT] = ACTIONS(3180), - [anon_sym_QMARK_DOT] = ACTIONS(3180), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_PIPE] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_void] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3180), - [sym_number] = ACTIONS(3180), - [sym_private_property_identifier] = ACTIONS(3180), - [sym_this] = ACTIONS(3178), - [sym_super] = ACTIONS(3178), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_undefined] = ACTIONS(3178), - [anon_sym_AT] = ACTIONS(3180), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_get] = ACTIONS(3178), - [anon_sym_set] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3178), - [anon_sym_declare] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_protected] = ACTIONS(3178), - [anon_sym_override] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_any] = ACTIONS(3178), - [anon_sym_number] = ACTIONS(3178), - [anon_sym_boolean] = ACTIONS(3178), - [anon_sym_string] = ACTIONS(3178), - [anon_sym_symbol] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3178), - [anon_sym_abstract] = ACTIONS(3178), - [anon_sym_extends] = ACTIONS(3178), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [953] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4459), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5316), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [954] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5315), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [955] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [956] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4433), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [957] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(3190), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [958] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [959] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4291), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_type_parameter] = STATE(5473), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [960] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4366), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5289), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [961] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [962] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [963] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [964] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [965] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4386), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5359), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [966] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4396), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [967] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [968] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1515), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [969] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3924), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [970] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3776), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_type_parameter] = STATE(4747), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5508), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3377), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [971] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1621), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1613), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [972] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3850), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4438), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [973] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3752), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3675), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [974] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1524), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3672), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [975] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3428), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5508), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [976] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1579), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3390), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [977] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3430), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3518), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [978] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3315), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4151), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [979] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3419), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3658), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [980] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(2135), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4155), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [981] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3436), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3390), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [982] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3087), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3378), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [983] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1583), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2158), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [984] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4364), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2041), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [985] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3229), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2157), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [986] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4474), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3530), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [987] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4523), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(1584), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3532), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [988] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4523), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(1586), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4386), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [989] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3257), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3657), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [990] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4387), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3390), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [991] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4390), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4549), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [992] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3437), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4557), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [993] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2036), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [994] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3787), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3676), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [995] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2916), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [996] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3810), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5912), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3377), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [997] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(4261), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5371), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [998] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3317), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4950), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [999] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3075), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(4707), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1000] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2913), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5369), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1001] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(2067), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2023), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1002] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2921), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3442), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1003] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3785), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5613), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1004] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3329), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4374), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1005] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2943), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3443), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1006] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3741), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3685), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1007] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(2068), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3688), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1008] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3738), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5613), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3377), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1009] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3254), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5296), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1010] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3074), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5338), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1011] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2944), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1545), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1012] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3054), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5361), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1013] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3245), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1618), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1014] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1633), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1544), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1015] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1577), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(5067), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1016] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2943), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1617), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1017] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4977), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3224), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2163), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1018] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2944), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2022), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1019] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5933), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(1612), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1020] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2931), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5933), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(1610), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1021] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3263), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5286), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1022] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3755), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3799), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1023] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4977), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3246), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4356), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1024] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4369), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1579), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1025] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(2134), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1508), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1026] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(4159), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1027] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1568), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1510), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1028] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1588), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1509), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1029] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3233), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3834), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1030] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4435), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1551), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1031] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3234), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3844), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1032] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1620), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1550), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1033] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3418), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3908), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1034] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2916), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5276), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1035] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3705), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4515), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1036] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(1977), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2108), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1037] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1517), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5278), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1038] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(2140), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3706), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1039] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2921), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2107), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1040] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3070), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5397), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1041] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3966), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3516), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1042] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3208), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3367), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1043] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3255), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3367), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [1044] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2921), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(5267), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1045] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3500), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3713), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1046] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1518), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3674), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1047] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4729), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(4136), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(4465), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2002), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1048] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4139), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4251), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [1049] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(2031), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4245), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1050] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3360), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2001), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1051] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3361), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4507), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1052] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(2042), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5291), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1053] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3228), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4787), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1054] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3485), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3527), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1055] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3256), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5613), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(4808), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(5392), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1056] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(4197), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5317), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1057] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(1979), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5912), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [1058] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3487), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1528), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1059] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4729), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(2919), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4291), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1060] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4729), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(2948), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1527), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1061] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3502), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3710), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1062] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3488), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5878), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(2100), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), + [sym_html_comment] = ACTIONS(5), + }, [1063] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3503), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3445), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [1064] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4414), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5277), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1065] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2943), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5910), + [sym_nested_identifier] = STATE(7155), + [sym_string] = STATE(1637), + [sym_formal_parameters] = STATE(7283), + [sym_nested_type_identifier] = STATE(1499), + [sym__type_query_member_expression_in_type_annotation] = STATE(1497), + [sym__type_query_call_expression_in_type_annotation] = STATE(1633), + [sym_type] = STATE(1514), + [sym_constructor_type] = STATE(1631), + [sym_primary_type] = STATE(1630), + [sym_template_literal_type] = STATE(1629), + [sym_infer_type] = STATE(1631), + [sym_conditional_type] = STATE(1629), + [sym_generic_type] = STATE(1629), + [sym_type_query] = STATE(1629), + [sym_index_type_query] = STATE(1629), + [sym_lookup_type] = STATE(1629), + [sym_literal_type] = STATE(1629), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1629), + [sym_flow_maybe_type] = STATE(1629), + [sym_parenthesized_type] = STATE(1629), + [sym_predefined_type] = STATE(1629), + [sym_object_type] = STATE(1629), + [sym_type_parameters] = STATE(6863), + [sym_array_type] = STATE(1629), + [sym_tuple_type] = STATE(1629), + [sym_readonly_type] = STATE(1631), + [sym_union_type] = STATE(1629), + [sym_intersection_type] = STATE(1629), + [sym_function_type] = STATE(1631), + [sym_identifier] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3004), + [sym_number] = ACTIONS(3006), + [sym_this] = ACTIONS(3210), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_null] = ACTIONS(3010), + [sym_undefined] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_object] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_infer] = ACTIONS(3020), + [anon_sym_keyof] = ACTIONS(3022), + [anon_sym_unique] = ACTIONS(3024), + [anon_sym_unknown] = ACTIONS(3002), + [anon_sym_never] = ACTIONS(3002), + [anon_sym_LBRACE_PIPE] = ACTIONS(3026), [sym_html_comment] = ACTIONS(5), }, [1066] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4415), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5878), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(2096), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1067] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2944), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4194), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [1068] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3365), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3667), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1069] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4362), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3535), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1070] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(2108), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3857), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1071] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3980), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4072), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1072] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4470), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3378), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1073] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3777), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4191), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [1074] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3949), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3668), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1075] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4066), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3862), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1076] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(2112), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5786), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3644), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1077] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2931), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3852), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1078] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3510), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2115), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1079] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4475), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3769), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1080] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4389), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3812), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1081] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2913), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(6004), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3819), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1082] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3657), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(4937), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1083] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3658), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(6004), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3830), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1084] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4995), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(2919), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3925), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1085] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4995), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(2948), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4190), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [1086] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4578), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3366), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(4713), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1087] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3209), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5284), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1088] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2931), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3923), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1089] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4578), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3368), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3445), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1090] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4502), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(2146), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5285), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1091] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4460), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4183), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [1092] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2913), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3891), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1093] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3725), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5786), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3691), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1094] = { - [sym_import] = STATE(4781), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5673), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(3356), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3726), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5345), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_infer] = ACTIONS(2996), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3367), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1095] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(1968), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3443), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1096] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4708), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(2919), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4145), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1097] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(3456), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4708), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(2948), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_typeof] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3378), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), [anon_sym_DQUOTE] = ACTIONS(2328), [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(2998), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [1098] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4397), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5297), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1099] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(2122), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3892), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1100] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1558), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(1979), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1101] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(1978), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(2101), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1102] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3793), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5931), + [sym_nested_identifier] = STATE(7319), + [sym_string] = STATE(2149), + [sym_formal_parameters] = STATE(7290), + [sym_nested_type_identifier] = STATE(1928), + [sym__type_query_member_expression_in_type_annotation] = STATE(1926), + [sym__type_query_call_expression_in_type_annotation] = STATE(2142), + [sym_type] = STATE(1978), + [sym_constructor_type] = STATE(2140), + [sym_primary_type] = STATE(2139), + [sym_template_literal_type] = STATE(2138), + [sym_infer_type] = STATE(2140), + [sym_conditional_type] = STATE(2138), + [sym_generic_type] = STATE(2138), + [sym_type_query] = STATE(2138), + [sym_index_type_query] = STATE(2138), + [sym_lookup_type] = STATE(2138), + [sym_literal_type] = STATE(2138), + [sym__number] = STATE(2137), + [sym_existential_type] = STATE(2138), + [sym_flow_maybe_type] = STATE(2138), + [sym_parenthesized_type] = STATE(2138), + [sym_predefined_type] = STATE(2138), + [sym_object_type] = STATE(2138), + [sym_type_parameters] = STATE(6268), + [sym_array_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_readonly_type] = STATE(2140), + [sym_union_type] = STATE(2138), + [sym_intersection_type] = STATE(2138), + [sym_function_type] = STATE(2140), + [sym_identifier] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3104), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3214), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_null] = ACTIONS(3110), + [sym_undefined] = ACTIONS(3110), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_infer] = ACTIONS(3120), + [anon_sym_keyof] = ACTIONS(3122), + [anon_sym_unique] = ACTIONS(3124), + [anon_sym_unknown] = ACTIONS(3102), + [anon_sym_never] = ACTIONS(3102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1103] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3079), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(5062), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1104] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1523), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5755), + [sym_nested_identifier] = STATE(7192), + [sym_string] = STATE(3700), + [sym_formal_parameters] = STATE(7213), + [sym_nested_type_identifier] = STATE(3531), + [sym__type_query_member_expression_in_type_annotation] = STATE(3495), + [sym__type_query_call_expression_in_type_annotation] = STATE(3631), + [sym_type] = STATE(3643), + [sym_constructor_type] = STATE(3669), + [sym_primary_type] = STATE(3650), + [sym_template_literal_type] = STATE(3678), + [sym_infer_type] = STATE(3669), + [sym_conditional_type] = STATE(3678), + [sym_generic_type] = STATE(3678), + [sym_type_query] = STATE(3678), + [sym_index_type_query] = STATE(3678), + [sym_lookup_type] = STATE(3678), + [sym_literal_type] = STATE(3678), + [sym__number] = STATE(3683), + [sym_existential_type] = STATE(3678), + [sym_flow_maybe_type] = STATE(3678), + [sym_parenthesized_type] = STATE(3678), + [sym_predefined_type] = STATE(3678), + [sym_object_type] = STATE(3678), + [sym_type_parameters] = STATE(6745), + [sym_array_type] = STATE(3678), + [sym_tuple_type] = STATE(3678), + [sym_readonly_type] = STATE(3669), + [sym_union_type] = STATE(3678), + [sym_intersection_type] = STATE(3678), + [sym_function_type] = STATE(3669), + [sym_identifier] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_number] = ACTIONS(1645), + [sym_this] = ACTIONS(1647), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_undefined] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_object] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_infer] = ACTIONS(1041), + [anon_sym_keyof] = ACTIONS(1043), + [anon_sym_unique] = ACTIONS(1045), + [anon_sym_unknown] = ACTIONS(1047), + [anon_sym_never] = ACTIONS(1047), + [anon_sym_LBRACE_PIPE] = ACTIONS(1049), [sym_html_comment] = ACTIONS(5), }, [1105] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3401), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5378), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1106] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1564), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5405), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1107] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4502), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(2123), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5307), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1108] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3210), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4393), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1109] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3776), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3442), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1110] = { - [sym_import] = STATE(4728), - [sym_nested_identifier] = STATE(5672), - [sym_string] = STATE(2004), - [sym_formal_parameters] = STATE(5616), - [sym_nested_type_identifier] = STATE(1889), - [sym__type_query_member_expression_in_type_annotation] = STATE(1890), - [sym__type_query_call_expression_in_type_annotation] = STATE(2034), - [sym_type] = STATE(1950), - [sym_constructor_type] = STATE(2035), - [sym_primary_type] = STATE(2037), - [sym_template_literal_type] = STATE(2038), - [sym_infer_type] = STATE(2035), - [sym_conditional_type] = STATE(2038), - [sym_generic_type] = STATE(2038), - [sym_type_query] = STATE(2038), - [sym_index_type_query] = STATE(2038), - [sym_lookup_type] = STATE(2038), - [sym_literal_type] = STATE(2038), - [sym__number] = STATE(2041), - [sym_existential_type] = STATE(2038), - [sym_flow_maybe_type] = STATE(2038), - [sym_parenthesized_type] = STATE(2038), - [sym_predefined_type] = STATE(2038), - [sym_object_type] = STATE(2038), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(2038), - [sym_tuple_type] = STATE(2038), - [sym_readonly_type] = STATE(2035), - [sym_union_type] = STATE(2038), - [sym_intersection_type] = STATE(2038), - [sym_function_type] = STATE(2035), - [sym_identifier] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_typeof] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3030), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3032), - [sym_number] = ACTIONS(3034), - [sym_this] = ACTIONS(3230), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_null] = ACTIONS(3038), - [sym_undefined] = ACTIONS(3038), - [anon_sym_readonly] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3030), - [anon_sym_number] = ACTIONS(3030), - [anon_sym_boolean] = ACTIONS(3030), - [anon_sym_string] = ACTIONS(3030), - [anon_sym_symbol] = ACTIONS(3030), - [anon_sym_object] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3044), - [anon_sym_infer] = ACTIONS(3048), - [anon_sym_keyof] = ACTIONS(3050), - [anon_sym_unique] = ACTIONS(3052), - [anon_sym_unknown] = ACTIONS(3030), - [anon_sym_never] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5325), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1111] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(2916), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3773), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1112] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3737), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3445), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1113] = { - [sym_import] = STATE(4568), - [sym_nested_identifier] = STATE(5736), - [sym_string] = STATE(3344), - [sym_formal_parameters] = STATE(5517), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3148), - [sym__type_query_call_expression_in_type_annotation] = STATE(3281), - [sym_type] = STATE(3402), - [sym_constructor_type] = STATE(3346), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3348), - [sym_infer_type] = STATE(3346), - [sym_conditional_type] = STATE(3348), - [sym_generic_type] = STATE(3348), - [sym_type_query] = STATE(3348), - [sym_index_type_query] = STATE(3348), - [sym_lookup_type] = STATE(3348), - [sym_literal_type] = STATE(3348), - [sym__number] = STATE(3349), - [sym_existential_type] = STATE(3348), - [sym_flow_maybe_type] = STATE(3348), - [sym_parenthesized_type] = STATE(3348), - [sym_predefined_type] = STATE(3348), - [sym_object_type] = STATE(3348), - [sym_type_parameters] = STATE(5224), - [sym_array_type] = STATE(3348), - [sym_tuple_type] = STATE(3348), - [sym_readonly_type] = STATE(3346), - [sym_union_type] = STATE(3348), - [sym_intersection_type] = STATE(3348), - [sym_function_type] = STATE(3346), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_typeof] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3082), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3084), - [sym_number] = ACTIONS(3086), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_null] = ACTIONS(3090), - [sym_undefined] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3082), - [anon_sym_number] = ACTIONS(3082), - [anon_sym_boolean] = ACTIONS(3082), - [anon_sym_string] = ACTIONS(3082), - [anon_sym_symbol] = ACTIONS(3082), - [anon_sym_object] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(3104), - [anon_sym_unknown] = ACTIONS(3082), - [anon_sym_never] = ACTIONS(3082), - [anon_sym_LBRACE_PIPE] = ACTIONS(3106), + [sym_import] = STATE(5472), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7303), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3360), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5406), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6302), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1607), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(212), + [anon_sym_keyof] = ACTIONS(214), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1114] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4431), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4162), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1115] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4439), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3442), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [1116] = { - [sym_import] = STATE(4936), - [sym_nested_identifier] = STATE(5496), - [sym_string] = STATE(3251), - [sym_formal_parameters] = STATE(5488), - [sym_nested_type_identifier] = STATE(3094), - [sym__type_query_member_expression_in_type_annotation] = STATE(3032), - [sym__type_query_call_expression_in_type_annotation] = STATE(3132), - [sym_type] = STATE(3238), - [sym_constructor_type] = STATE(3223), - [sym_primary_type] = STATE(3250), - [sym_template_literal_type] = STATE(3244), - [sym_infer_type] = STATE(3223), - [sym_conditional_type] = STATE(3244), - [sym_generic_type] = STATE(3244), - [sym_type_query] = STATE(3244), - [sym_index_type_query] = STATE(3244), - [sym_lookup_type] = STATE(3244), - [sym_literal_type] = STATE(3244), - [sym__number] = STATE(3195), - [sym_existential_type] = STATE(3244), - [sym_flow_maybe_type] = STATE(3244), - [sym_parenthesized_type] = STATE(3244), - [sym_predefined_type] = STATE(3244), - [sym_object_type] = STATE(3244), - [sym_type_parameters] = STATE(5121), - [sym_array_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_readonly_type] = STATE(3223), - [sym_union_type] = STATE(3244), - [sym_intersection_type] = STATE(3244), - [sym_function_type] = STATE(3223), - [sym_identifier] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_number] = ACTIONS(1635), - [sym_this] = ACTIONS(1637), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_null] = ACTIONS(1639), - [sym_undefined] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4165), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1117] = { - [sym_import] = STATE(4512), - [sym_nested_identifier] = STATE(5787), - [sym_string] = STATE(1556), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(1497), - [sym__type_query_member_expression_in_type_annotation] = STATE(1498), - [sym__type_query_call_expression_in_type_annotation] = STATE(1559), - [sym_type] = STATE(1634), - [sym_constructor_type] = STATE(1560), - [sym_primary_type] = STATE(1561), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1563), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(5187), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1560), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_import] = STATE(5747), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7318), + [sym_nested_type_identifier] = STATE(3919), + [sym__type_query_member_expression_in_type_annotation] = STATE(3772), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(3443), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6750), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(3164), + [anon_sym_keyof] = ACTIONS(3166), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, [1118] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4471), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(6021), + [sym_nested_identifier] = STATE(7104), + [sym_string] = STATE(3763), + [sym_formal_parameters] = STATE(7461), + [sym_nested_type_identifier] = STATE(3689), + [sym__type_query_member_expression_in_type_annotation] = STATE(3627), + [sym__type_query_call_expression_in_type_annotation] = STATE(3744), + [sym_type] = STATE(3753), + [sym_constructor_type] = STATE(3760), + [sym_primary_type] = STATE(3759), + [sym_template_literal_type] = STATE(3758), + [sym_infer_type] = STATE(3760), + [sym_conditional_type] = STATE(3758), + [sym_generic_type] = STATE(3758), + [sym_type_query] = STATE(3758), + [sym_index_type_query] = STATE(3758), + [sym_lookup_type] = STATE(3758), + [sym_literal_type] = STATE(3758), + [sym__number] = STATE(3757), + [sym_existential_type] = STATE(3758), + [sym_flow_maybe_type] = STATE(3758), + [sym_parenthesized_type] = STATE(3758), + [sym_predefined_type] = STATE(3758), + [sym_object_type] = STATE(3758), + [sym_type_parameters] = STATE(6935), + [sym_array_type] = STATE(3758), + [sym_tuple_type] = STATE(3758), + [sym_readonly_type] = STATE(3760), + [sym_union_type] = STATE(3758), + [sym_intersection_type] = STATE(3758), + [sym_function_type] = STATE(3760), + [sym_identifier] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3056), + [sym_number] = ACTIONS(3058), + [sym_this] = ACTIONS(3224), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_undefined] = ACTIONS(3062), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(3072), + [anon_sym_keyof] = ACTIONS(3074), + [anon_sym_unique] = ACTIONS(3076), + [anon_sym_unknown] = ACTIONS(3054), + [anon_sym_never] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [1119] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4473), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(4164), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1120] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4477), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(5957), + [sym_nested_identifier] = STATE(7304), + [sym_string] = STATE(3412), + [sym_formal_parameters] = STATE(7184), + [sym_nested_type_identifier] = STATE(3359), + [sym__type_query_member_expression_in_type_annotation] = STATE(3719), + [sym__type_query_call_expression_in_type_annotation] = STATE(3362), + [sym_type] = STATE(5385), + [sym_constructor_type] = STATE(3408), + [sym_primary_type] = STATE(3406), + [sym_template_literal_type] = STATE(3404), + [sym_infer_type] = STATE(3408), + [sym_conditional_type] = STATE(3404), + [sym_generic_type] = STATE(3404), + [sym_type_query] = STATE(3404), + [sym_index_type_query] = STATE(3404), + [sym_lookup_type] = STATE(3404), + [sym_literal_type] = STATE(3404), + [sym__number] = STATE(3402), + [sym_existential_type] = STATE(3404), + [sym_flow_maybe_type] = STATE(3404), + [sym_parenthesized_type] = STATE(3404), + [sym_predefined_type] = STATE(3404), + [sym_object_type] = STATE(3404), + [sym_type_parameters] = STATE(6059), + [sym_array_type] = STATE(3404), + [sym_tuple_type] = STATE(3404), + [sym_readonly_type] = STATE(3408), + [sym_union_type] = STATE(3404), + [sym_intersection_type] = STATE(3404), + [sym_function_type] = STATE(3408), + [sym_identifier] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(218), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_number] = ACTIONS(1601), + [sym_this] = ACTIONS(1603), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_undefined] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1615), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_any] = ACTIONS(218), + [anon_sym_number] = ACTIONS(218), + [anon_sym_boolean] = ACTIONS(218), + [anon_sym_string] = ACTIONS(218), + [anon_sym_symbol] = ACTIONS(218), + [anon_sym_object] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_infer] = ACTIONS(604), + [anon_sym_keyof] = ACTIONS(606), + [anon_sym_unique] = ACTIONS(216), + [anon_sym_unknown] = ACTIONS(218), + [anon_sym_never] = ACTIONS(218), + [anon_sym_LBRACE_PIPE] = ACTIONS(220), [sym_html_comment] = ACTIONS(5), }, [1121] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4486), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_export_statement] = STATE(4398), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(6014), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(6014), + [sym_pair] = STATE(6014), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4398), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4398), + [sym_property_signature] = STATE(4398), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4398), + [sym_index_signature] = STATE(4398), + [aux_sym_export_statement_repeat1] = STATE(2867), + [aux_sym_object_repeat1] = STATE(6012), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3256), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_PIPE_RBRACE] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, [1122] = { - [sym_import] = STATE(4678), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5593), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(3265), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(4488), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5429), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(3266), + [anon_sym_export] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_EQ] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_COMMA] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3266), + [anon_sym_import] = ACTIONS(3266), + [anon_sym_let] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3266), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_RBRACK] = ACTIONS(3268), + [sym_glimmer_opening_tag] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_async] = ACTIONS(3266), + [anon_sym_function] = ACTIONS(3266), + [anon_sym_EQ_GT] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3266), + [sym_super] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_undefined] = ACTIONS(3266), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_readonly] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3266), + [anon_sym_set] = ACTIONS(3266), + [anon_sym_QMARK] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3266), + [anon_sym_public] = ACTIONS(3266), + [anon_sym_private] = ACTIONS(3266), + [anon_sym_protected] = ACTIONS(3266), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3266), + [anon_sym_any] = ACTIONS(3266), + [anon_sym_number] = ACTIONS(3266), + [anon_sym_boolean] = ACTIONS(3266), + [anon_sym_string] = ACTIONS(3266), + [anon_sym_symbol] = ACTIONS(3266), + [anon_sym_object] = ACTIONS(3266), + [anon_sym_extends] = ACTIONS(3266), [sym_html_comment] = ACTIONS(5), }, [1123] = { - [sym_import] = STATE(4695), - [sym_nested_identifier] = STATE(5452), - [sym_string] = STATE(2967), - [sym_formal_parameters] = STATE(5457), - [sym_nested_type_identifier] = STATE(2906), - [sym__type_query_member_expression_in_type_annotation] = STATE(2905), - [sym__type_query_call_expression_in_type_annotation] = STATE(2904), - [sym_type] = STATE(3848), - [sym_constructor_type] = STATE(2929), - [sym_primary_type] = STATE(3007), - [sym_template_literal_type] = STATE(3008), - [sym_infer_type] = STATE(2929), - [sym_conditional_type] = STATE(3008), - [sym_generic_type] = STATE(3008), - [sym_type_query] = STATE(3008), - [sym_index_type_query] = STATE(3008), - [sym_lookup_type] = STATE(3008), - [sym_literal_type] = STATE(3008), - [sym__number] = STATE(2942), - [sym_existential_type] = STATE(3008), - [sym_flow_maybe_type] = STATE(3008), - [sym_parenthesized_type] = STATE(3008), - [sym_predefined_type] = STATE(3008), - [sym_object_type] = STATE(3008), - [sym_type_parameters] = STATE(5388), - [sym_array_type] = STATE(3008), - [sym_tuple_type] = STATE(3008), - [sym_readonly_type] = STATE(2929), - [sym_union_type] = STATE(3008), - [sym_intersection_type] = STATE(3008), - [sym_function_type] = STATE(2929), - [sym_identifier] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(132), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1587), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_undefined] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_COLON] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_RBRACK] = ACTIONS(3272), + [sym_glimmer_opening_tag] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_PIPE] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_QMARK] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_object] = ACTIONS(3270), + [anon_sym_extends] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1124] = { - [sym_export_statement] = STATE(3858), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(4796), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4796), - [sym_pair] = STATE(4796), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3858), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3858), - [sym_property_signature] = STATE(3858), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3858), - [sym_index_signature] = STATE(3858), - [aux_sym_export_statement_repeat1] = STATE(4358), - [aux_sym_object_repeat1] = STATE(4685), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3240), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3258), + [sym_export_statement] = STATE(4398), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(5452), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(5452), + [sym_pair] = STATE(5452), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4398), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4398), + [sym_property_signature] = STATE(4398), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4398), + [sym_index_signature] = STATE(4398), + [aux_sym_export_statement_repeat1] = STATE(2867), + [aux_sym_object_repeat1] = STATE(5454), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3278), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3282), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3266), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3238), - [anon_sym_any] = ACTIONS(3238), - [anon_sym_number] = ACTIONS(3238), - [anon_sym_boolean] = ACTIONS(3238), - [anon_sym_string] = ACTIONS(3238), - [anon_sym_symbol] = ACTIONS(3238), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3284), + [anon_sym_readonly] = ACTIONS(3286), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3290), + [anon_sym_private] = ACTIONS(3290), + [anon_sym_protected] = ACTIONS(3290), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_any] = ACTIONS(3274), + [anon_sym_number] = ACTIONS(3274), + [anon_sym_boolean] = ACTIONS(3274), + [anon_sym_string] = ACTIONS(3274), + [anon_sym_symbol] = ACTIONS(3274), + [anon_sym_object] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_PIPE_RBRACE] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, [1125] = { - [sym_identifier] = ACTIONS(3278), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_typeof] = ACTIONS(3278), - [anon_sym_import] = ACTIONS(3278), - [anon_sym_let] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_await] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_yield] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [sym_glimmer_opening_tag] = ACTIONS(3280), - [anon_sym_GT] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3278), - [anon_sym_EQ_GT] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_PIPE] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_void] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3280), - [sym_number] = ACTIONS(3280), - [sym_private_property_identifier] = ACTIONS(3280), - [sym_this] = ACTIONS(3278), - [sym_super] = ACTIONS(3278), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_null] = ACTIONS(3278), - [sym_undefined] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_readonly] = ACTIONS(3278), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [anon_sym_QMARK] = ACTIONS(3280), - [anon_sym_declare] = ACTIONS(3278), - [anon_sym_public] = ACTIONS(3278), - [anon_sym_private] = ACTIONS(3278), - [anon_sym_protected] = ACTIONS(3278), - [anon_sym_override] = ACTIONS(3278), - [anon_sym_module] = ACTIONS(3278), - [anon_sym_any] = ACTIONS(3278), - [anon_sym_number] = ACTIONS(3278), - [anon_sym_boolean] = ACTIONS(3278), - [anon_sym_string] = ACTIONS(3278), - [anon_sym_symbol] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_extends] = ACTIONS(3278), + [sym_export_statement] = STATE(4398), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(6014), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(6014), + [sym_pair] = STATE(6014), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4398), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4398), + [sym_property_signature] = STATE(4398), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4398), + [sym_index_signature] = STATE(4398), + [aux_sym_export_statement_repeat1] = STATE(2867), + [aux_sym_object_repeat1] = STATE(6012), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_object] = ACTIONS(3294), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_PIPE_RBRACE] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, [1126] = { - [sym_export_statement] = STATE(3858), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(4812), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4812), - [sym_pair] = STATE(4812), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3858), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3858), - [sym_property_signature] = STATE(3858), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3858), - [sym_index_signature] = STATE(3858), - [aux_sym_export_statement_repeat1] = STATE(4358), - [aux_sym_object_repeat1] = STATE(4874), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(3282), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_let] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3290), + [sym_export_statement] = STATE(4398), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(6014), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(6014), + [sym_pair] = STATE(6014), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4398), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4398), + [sym_property_signature] = STATE(4398), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4398), + [sym_index_signature] = STATE(4398), + [aux_sym_export_statement_repeat1] = STATE(2867), + [aux_sym_object_repeat1] = STATE(6012), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3322), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3294), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_override] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3282), - [anon_sym_any] = ACTIONS(3282), - [anon_sym_number] = ACTIONS(3282), - [anon_sym_boolean] = ACTIONS(3282), - [anon_sym_string] = ACTIONS(3282), - [anon_sym_symbol] = ACTIONS(3282), - [anon_sym_object] = ACTIONS(3282), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3328), + [anon_sym_set] = ACTIONS(3328), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_PIPE_RBRACE] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, [1127] = { - [sym_export_statement] = STATE(3858), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(4812), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4812), - [sym_pair] = STATE(4812), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3858), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3858), - [sym_property_signature] = STATE(3858), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3858), - [sym_index_signature] = STATE(3858), - [aux_sym_export_statement_repeat1] = STATE(4358), - [aux_sym_object_repeat1] = STATE(4874), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3310), + [sym_export_statement] = STATE(4398), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(6014), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(6014), + [sym_pair] = STATE(6014), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4398), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4398), + [sym_property_signature] = STATE(4398), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4398), + [sym_index_signature] = STATE(4398), + [aux_sym_export_statement_repeat1] = STATE(2867), + [aux_sym_object_repeat1] = STATE(6012), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3342), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3312), - [anon_sym_readonly] = ACTIONS(3314), - [anon_sym_get] = ACTIONS(3316), - [anon_sym_set] = ACTIONS(3316), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3318), - [anon_sym_private] = ACTIONS(3318), - [anon_sym_protected] = ACTIONS(3318), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3352), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_PIPE_RBRACE] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, [1128] = { - [sym_export_statement] = STATE(3858), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(4812), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4812), - [sym_pair] = STATE(4812), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3858), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3858), - [sym_property_signature] = STATE(3858), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3858), - [sym_index_signature] = STATE(3858), - [aux_sym_export_statement_repeat1] = STATE(4358), - [aux_sym_object_repeat1] = STATE(4874), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3330), + [sym_export_statement] = STATE(4398), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(6014), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(6014), + [sym_pair] = STATE(6014), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4398), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4398), + [sym_property_signature] = STATE(4398), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4398), + [sym_index_signature] = STATE(4398), + [aux_sym_export_statement_repeat1] = STATE(2867), + [aux_sym_object_repeat1] = STATE(6012), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3342), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3352), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_PIPE_RBRACE] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, [1129] = { - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_EQ] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_COMMA] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_RPAREN] = ACTIONS(3344), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_COLON] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_RBRACK] = ACTIONS(3344), - [sym_glimmer_opening_tag] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_EQ_GT] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3344), - [anon_sym_PIPE] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3344), - [sym_number] = ACTIONS(3344), - [sym_private_property_identifier] = ACTIONS(3344), - [sym_this] = ACTIONS(3342), - [sym_super] = ACTIONS(3342), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [sym_null] = ACTIONS(3342), - [sym_undefined] = ACTIONS(3342), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [anon_sym_QMARK] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3342), - [anon_sym_public] = ACTIONS(3342), - [anon_sym_private] = ACTIONS(3342), - [anon_sym_protected] = ACTIONS(3342), - [anon_sym_override] = ACTIONS(3342), - [anon_sym_module] = ACTIONS(3342), - [anon_sym_any] = ACTIONS(3342), - [anon_sym_number] = ACTIONS(3342), - [anon_sym_boolean] = ACTIONS(3342), - [anon_sym_string] = ACTIONS(3342), - [anon_sym_symbol] = ACTIONS(3342), - [anon_sym_object] = ACTIONS(3342), - [anon_sym_extends] = ACTIONS(3342), + [sym_export_statement] = STATE(4398), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(6014), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(6014), + [sym_pair] = STATE(6014), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4398), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4398), + [sym_property_signature] = STATE(4398), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4398), + [sym_index_signature] = STATE(4398), + [aux_sym_export_statement_repeat1] = STATE(2867), + [aux_sym_object_repeat1] = STATE(6012), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3256), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_PIPE_RBRACE] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, [1130] = { - [sym_export_statement] = STATE(3858), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(4812), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4812), - [sym_pair] = STATE(4812), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3858), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3858), - [sym_property_signature] = STATE(3858), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3858), - [sym_index_signature] = STATE(3858), - [aux_sym_export_statement_repeat1] = STATE(4358), - [aux_sym_object_repeat1] = STATE(4874), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3330), + [sym_export_statement] = STATE(4398), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(6014), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(6014), + [sym_pair] = STATE(6014), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4398), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4398), + [sym_property_signature] = STATE(4398), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4398), + [sym_index_signature] = STATE(4398), + [aux_sym_export_statement_repeat1] = STATE(2867), + [aux_sym_object_repeat1] = STATE(6012), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3246), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3256), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_PIPE_RBRACE] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, [1131] = { - [sym_export_statement] = STATE(3858), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(4796), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4796), - [sym_pair] = STATE(4796), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3858), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3858), - [sym_property_signature] = STATE(3858), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3858), - [sym_index_signature] = STATE(3858), - [aux_sym_export_statement_repeat1] = STATE(4358), - [aux_sym_object_repeat1] = STATE(4685), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3240), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3258), + [sym_export_statement] = STATE(4398), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(6014), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(6014), + [sym_pair] = STATE(6014), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4398), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4398), + [sym_property_signature] = STATE(4398), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4398), + [sym_index_signature] = STATE(4398), + [aux_sym_export_statement_repeat1] = STATE(2867), + [aux_sym_object_repeat1] = STATE(6012), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3342), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3266), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3238), - [anon_sym_any] = ACTIONS(3238), - [anon_sym_number] = ACTIONS(3238), - [anon_sym_boolean] = ACTIONS(3238), - [anon_sym_string] = ACTIONS(3238), - [anon_sym_symbol] = ACTIONS(3238), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3352), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_PIPE_RBRACE] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, [1132] = { - [sym_export_statement] = STATE(3858), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(4812), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4812), - [sym_pair] = STATE(4812), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3858), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3858), - [sym_property_signature] = STATE(3858), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3858), - [sym_index_signature] = STATE(3858), - [aux_sym_export_statement_repeat1] = STATE(4358), - [aux_sym_object_repeat1] = STATE(4874), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3276), + [sym_identifier] = ACTIONS(3358), + [anon_sym_export] = ACTIONS(3358), + [anon_sym_type] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_typeof] = ACTIONS(3358), + [anon_sym_import] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_RPAREN] = ACTIONS(3360), + [anon_sym_await] = ACTIONS(3358), + [anon_sym_COLON] = ACTIONS(3360), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3360), + [sym_glimmer_opening_tag] = ACTIONS(3360), + [anon_sym_GT] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_async] = ACTIONS(3358), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_void] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3360), + [sym_number] = ACTIONS(3360), + [sym_private_property_identifier] = ACTIONS(3360), + [sym_this] = ACTIONS(3358), + [sym_super] = ACTIONS(3358), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [sym_null] = ACTIONS(3358), + [sym_undefined] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_readonly] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3358), + [anon_sym_set] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3360), + [anon_sym_declare] = ACTIONS(3358), + [anon_sym_public] = ACTIONS(3358), + [anon_sym_private] = ACTIONS(3358), + [anon_sym_protected] = ACTIONS(3358), + [anon_sym_override] = ACTIONS(3358), + [anon_sym_module] = ACTIONS(3358), + [anon_sym_any] = ACTIONS(3358), + [anon_sym_number] = ACTIONS(3358), + [anon_sym_boolean] = ACTIONS(3358), + [anon_sym_string] = ACTIONS(3358), + [anon_sym_symbol] = ACTIONS(3358), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_extends] = ACTIONS(3358), [sym_html_comment] = ACTIONS(5), }, [1133] = { - [sym_export_statement] = STATE(3858), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(4812), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4812), - [sym_pair] = STATE(4812), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3858), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3858), - [sym_property_signature] = STATE(3858), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3858), - [sym_index_signature] = STATE(3858), - [aux_sym_export_statement_repeat1] = STATE(4358), - [aux_sym_object_repeat1] = STATE(4874), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3310), + [sym_export_statement] = STATE(4268), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(6014), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(6014), + [sym_pair] = STATE(6014), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4268), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4268), + [sym_property_signature] = STATE(4268), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4268), + [sym_index_signature] = STATE(4268), + [aux_sym_export_statement_repeat1] = STATE(2867), + [aux_sym_object_repeat1] = STATE(6012), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3246), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3312), - [anon_sym_readonly] = ACTIONS(3314), - [anon_sym_get] = ACTIONS(3316), - [anon_sym_set] = ACTIONS(3316), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3318), - [anon_sym_private] = ACTIONS(3318), - [anon_sym_protected] = ACTIONS(3318), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3302), - [anon_sym_any] = ACTIONS(3302), - [anon_sym_number] = ACTIONS(3302), - [anon_sym_boolean] = ACTIONS(3302), - [anon_sym_string] = ACTIONS(3302), - [anon_sym_symbol] = ACTIONS(3302), - [anon_sym_object] = ACTIONS(3302), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3256), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_PIPE_RBRACE] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, [1134] = { - [sym_identifier] = ACTIONS(3354), - [anon_sym_export] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_EQ] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_RPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3354), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_RBRACK] = ACTIONS(3356), - [sym_glimmer_opening_tag] = ACTIONS(3356), - [anon_sym_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_EQ_GT] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_PIPE] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3354), - [sym_super] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_null] = ACTIONS(3354), - [sym_undefined] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3354), - [anon_sym_set] = ACTIONS(3354), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_protected] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_module] = ACTIONS(3354), - [anon_sym_any] = ACTIONS(3354), - [anon_sym_number] = ACTIONS(3354), - [anon_sym_boolean] = ACTIONS(3354), - [anon_sym_string] = ACTIONS(3354), - [anon_sym_symbol] = ACTIONS(3354), - [anon_sym_object] = ACTIONS(3354), - [anon_sym_extends] = ACTIONS(3354), - [sym_html_comment] = ACTIONS(5), - }, - [1135] = { - [sym_export_statement] = STATE(3858), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(4812), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4812), - [sym_pair] = STATE(4812), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3858), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3858), - [sym_property_signature] = STATE(3858), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3858), - [sym_index_signature] = STATE(3858), - [aux_sym_export_statement_repeat1] = STATE(4358), - [aux_sym_object_repeat1] = STATE(4874), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(3282), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3290), + [sym_export_statement] = STATE(4398), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(5452), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(5452), + [sym_pair] = STATE(5452), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4398), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4398), + [sym_property_signature] = STATE(4398), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4398), + [sym_index_signature] = STATE(4398), + [aux_sym_export_statement_repeat1] = STATE(2867), + [aux_sym_object_repeat1] = STATE(5454), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3282), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3294), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_override] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3282), - [anon_sym_any] = ACTIONS(3282), - [anon_sym_number] = ACTIONS(3282), - [anon_sym_boolean] = ACTIONS(3282), - [anon_sym_string] = ACTIONS(3282), - [anon_sym_symbol] = ACTIONS(3282), - [anon_sym_object] = ACTIONS(3282), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3276), - [sym_html_comment] = ACTIONS(5), - }, - [1136] = { - [sym_export_statement] = STATE(3858), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(4812), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4812), - [sym_pair] = STATE(4812), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3858), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3858), - [sym_property_signature] = STATE(3858), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3858), - [sym_index_signature] = STATE(3858), - [aux_sym_export_statement_repeat1] = STATE(4358), - [aux_sym_object_repeat1] = STATE(4874), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(3360), - [anon_sym_export] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3360), - [anon_sym_namespace] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3370), - [anon_sym_get] = ACTIONS(3372), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_declare] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3374), - [anon_sym_private] = ACTIONS(3374), - [anon_sym_protected] = ACTIONS(3374), - [anon_sym_override] = ACTIONS(3376), - [anon_sym_module] = ACTIONS(3360), - [anon_sym_any] = ACTIONS(3360), - [anon_sym_number] = ACTIONS(3360), - [anon_sym_boolean] = ACTIONS(3360), - [anon_sym_string] = ACTIONS(3360), - [anon_sym_symbol] = ACTIONS(3360), - [anon_sym_object] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3276), - [sym_html_comment] = ACTIONS(5), - }, - [1137] = { - [sym_export_statement] = STATE(3858), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(4812), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4812), - [sym_pair] = STATE(4812), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3858), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3858), - [sym_property_signature] = STATE(3858), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3858), - [sym_index_signature] = STATE(3858), - [aux_sym_export_statement_repeat1] = STATE(4358), - [aux_sym_object_repeat1] = STATE(4874), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(3282), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3294), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_override] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3282), - [anon_sym_any] = ACTIONS(3282), - [anon_sym_number] = ACTIONS(3282), - [anon_sym_boolean] = ACTIONS(3282), - [anon_sym_string] = ACTIONS(3282), - [anon_sym_symbol] = ACTIONS(3282), - [anon_sym_object] = ACTIONS(3282), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3284), + [anon_sym_readonly] = ACTIONS(3286), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3290), + [anon_sym_private] = ACTIONS(3290), + [anon_sym_protected] = ACTIONS(3290), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_any] = ACTIONS(3274), + [anon_sym_number] = ACTIONS(3274), + [anon_sym_boolean] = ACTIONS(3274), + [anon_sym_string] = ACTIONS(3274), + [anon_sym_symbol] = ACTIONS(3274), + [anon_sym_object] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_PIPE_RBRACE] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, - [1138] = { - [sym_export_statement] = STATE(3856), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(4753), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(4812), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4753), - [sym_method_definition] = STATE(4812), - [sym_pair] = STATE(4812), - [sym_pair_pattern] = STATE(4753), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3856), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3856), - [sym_property_signature] = STATE(3856), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3856), - [sym_index_signature] = STATE(3856), - [aux_sym_export_statement_repeat1] = STATE(4358), - [aux_sym_object_repeat1] = STATE(4874), - [aux_sym_object_pattern_repeat1] = STATE(4692), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3378), - [anon_sym_RBRACE] = ACTIONS(3380), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3382), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3330), + [1135] = { + [sym_export_statement] = STATE(4398), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(5451), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(6014), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(5451), + [sym_method_definition] = STATE(6014), + [sym_pair] = STATE(6014), + [sym_pair_pattern] = STATE(5451), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4398), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4398), + [sym_property_signature] = STATE(4398), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4398), + [sym_index_signature] = STATE(4398), + [aux_sym_export_statement_repeat1] = STATE(2867), + [aux_sym_object_repeat1] = STATE(6012), + [aux_sym_object_pattern_repeat1] = STATE(5455), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3372), + [anon_sym_let] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3302), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_PIPE_RBRACE] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_object] = ACTIONS(3294), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_PIPE_RBRACE] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, - [1139] = { - [sym_variable_declarator] = STATE(4481), - [sym_object_pattern] = STATE(3543), - [sym_array_pattern] = STATE(3543), - [sym__destructuring_pattern] = STATE(3543), - [aux_sym_object_repeat1] = STATE(4937), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [sym_identifier] = ACTIONS(3386), + [1136] = { + [sym_nested_identifier] = STATE(194), + [sym_string] = STATE(198), + [sym__module] = STATE(212), + [aux_sym_object_repeat1] = STATE(5516), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3378), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -134648,63 +137781,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1140] = { + [1137] = { [sym_nested_identifier] = STATE(745), - [sym_string] = STATE(778), - [sym__module] = STATE(890), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [sym_identifier] = ACTIONS(3392), + [sym_string] = STATE(769), + [sym__module] = STATE(839), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [sym_identifier] = ACTIONS(3380), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -134719,63 +137852,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1141] = { - [sym_nested_identifier] = STATE(203), + [1138] = { + [sym_nested_identifier] = STATE(194), [sym_string] = STATE(198), - [sym__module] = STATE(231), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [sym_identifier] = ACTIONS(3394), + [sym__module] = STATE(212), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3396), - [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3378), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -134790,63 +137923,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1142] = { - [sym_nested_identifier] = STATE(203), - [sym_string] = STATE(198), - [sym__module] = STATE(231), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [sym_identifier] = ACTIONS(3394), + [1139] = { + [sym_variable_declarator] = STATE(5287), + [sym_object_pattern] = STATE(3959), + [sym_array_pattern] = STATE(3959), + [sym__destructuring_pattern] = STATE(3959), + [aux_sym_object_repeat1] = STATE(5516), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(3386), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3396), - [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -134861,63 +137994,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1143] = { - [sym_variable_declarator] = STATE(4481), - [sym_object_pattern] = STATE(3543), - [sym_array_pattern] = STATE(3543), - [sym__destructuring_pattern] = STATE(3543), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [sym_identifier] = ACTIONS(3386), + [1140] = { + [sym_variable_declarator] = STATE(5287), + [sym_object_pattern] = STATE(3959), + [sym_array_pattern] = STATE(3959), + [sym__destructuring_pattern] = STATE(3959), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3386), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -134932,63 +138065,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1144] = { - [sym_variable_declarator] = STATE(4481), - [sym_object_pattern] = STATE(3543), - [sym_array_pattern] = STATE(3543), - [sym__destructuring_pattern] = STATE(3543), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [sym_identifier] = ACTIONS(3386), + [1141] = { + [sym_variable_declarator] = STATE(5287), + [sym_object_pattern] = STATE(3959), + [sym_array_pattern] = STATE(3959), + [sym__destructuring_pattern] = STATE(3959), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3386), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135003,63 +138136,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1145] = { + [1142] = { [sym_nested_identifier] = STATE(745), - [sym_string] = STATE(778), - [sym__module] = STATE(890), - [aux_sym_object_repeat1] = STATE(4821), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [sym_identifier] = ACTIONS(3392), + [sym_string] = STATE(769), + [sym__module] = STATE(839), + [aux_sym_object_repeat1] = STATE(5516), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [sym_identifier] = ACTIONS(3380), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(695), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135074,63 +138207,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1146] = { + [1143] = { [sym_nested_identifier] = STATE(745), - [sym_string] = STATE(778), - [sym__module] = STATE(890), - [aux_sym_object_repeat1] = STATE(4937), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [sym_identifier] = ACTIONS(3392), + [sym_string] = STATE(769), + [sym__module] = STATE(839), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [sym_identifier] = ACTIONS(3380), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135145,63 +138278,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1147] = { - [sym_nested_identifier] = STATE(203), + [1144] = { + [sym_nested_identifier] = STATE(194), [sym_string] = STATE(198), - [sym__module] = STATE(231), - [aux_sym_object_repeat1] = STATE(4937), - [aux_sym_object_pattern_repeat1] = STATE(4940), - [sym_identifier] = ACTIONS(3394), + [sym__module] = STATE(212), + [aux_sym_object_repeat1] = STATE(5905), + [aux_sym_object_pattern_repeat1] = STATE(5518), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2292), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), [anon_sym_COLON] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3396), - [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3378), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135216,62 +138349,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(693), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1148] = { - [sym_nested_identifier] = STATE(1552), - [sym_string] = STATE(1553), - [sym__module] = STATE(1757), - [sym_identifier] = ACTIONS(3400), + [1145] = { + [sym_nested_identifier] = STATE(1604), + [sym_string] = STATE(1605), + [sym__module] = STATE(1760), + [sym_identifier] = ACTIONS(3388), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(222), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(225), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_RPAREN] = ACTIONS(225), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(225), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135286,61 +138419,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(785), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1149] = { - [sym_nested_identifier] = STATE(1552), - [sym_string] = STATE(1553), - [sym__module] = STATE(1757), - [sym_identifier] = ACTIONS(3400), + [1146] = { + [sym_nested_identifier] = STATE(1604), + [sym_string] = STATE(1605), + [sym__module] = STATE(1760), + [sym_identifier] = ACTIONS(3388), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_RBRACE] = ACTIONS(817), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_RPAREN] = ACTIONS(817), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(817), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135355,196 +138488,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(833), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, - [1150] = { - [sym_export_statement] = STATE(3843), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(5138), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(5180), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(5138), - [sym_method_definition] = STATE(5180), - [sym_pair] = STATE(5180), - [sym_pair_pattern] = STATE(5138), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3843), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3843), - [sym_property_signature] = STATE(3843), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3843), - [sym_index_signature] = STATE(3843), - [aux_sym_export_statement_repeat1] = STATE(4358), - [sym_identifier] = ACTIONS(3402), - [anon_sym_export] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3402), - [anon_sym_namespace] = ACTIONS(3402), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3406), - [anon_sym_RBRACE] = ACTIONS(3406), - [anon_sym_let] = ACTIONS(3402), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3411), + [1147] = { + [sym_identifier] = ACTIONS(3390), + [anon_sym_export] = ACTIONS(3390), + [anon_sym_type] = ACTIONS(3390), + [anon_sym_namespace] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3392), + [anon_sym_typeof] = ACTIONS(3390), + [anon_sym_import] = ACTIONS(3390), + [anon_sym_let] = ACTIONS(3390), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_await] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_RBRACK] = ACTIONS(3392), + [sym_glimmer_opening_tag] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3390), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_SQUOTE] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3390), + [anon_sym_async] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3390), + [anon_sym_using] = ACTIONS(3390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3392), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_SLASH] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_void] = ACTIONS(3390), + [anon_sym_delete] = ACTIONS(3390), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3392), + [sym_number] = ACTIONS(3392), + [sym_private_property_identifier] = ACTIONS(3392), + [sym_this] = ACTIONS(3390), + [sym_super] = ACTIONS(3390), + [sym_true] = ACTIONS(3390), + [sym_false] = ACTIONS(3390), + [sym_null] = ACTIONS(3390), + [sym_undefined] = ACTIONS(3390), + [anon_sym_AT] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3390), + [anon_sym_readonly] = ACTIONS(3390), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3390), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_declare] = ACTIONS(3390), + [anon_sym_public] = ACTIONS(3390), + [anon_sym_private] = ACTIONS(3390), + [anon_sym_protected] = ACTIONS(3390), + [anon_sym_override] = ACTIONS(3390), + [anon_sym_module] = ACTIONS(3390), + [anon_sym_any] = ACTIONS(3390), + [anon_sym_number] = ACTIONS(3390), + [anon_sym_boolean] = ACTIONS(3390), + [anon_sym_string] = ACTIONS(3390), + [anon_sym_symbol] = ACTIONS(3390), + [anon_sym_object] = ACTIONS(3390), + [anon_sym_extends] = ACTIONS(3390), + [sym_html_comment] = ACTIONS(5), + }, + [1148] = { + [sym_identifier] = ACTIONS(3394), + [anon_sym_export] = ACTIONS(3394), + [anon_sym_type] = ACTIONS(3394), + [anon_sym_namespace] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3396), + [anon_sym_COMMA] = ACTIONS(3396), + [anon_sym_typeof] = ACTIONS(3394), + [anon_sym_import] = ACTIONS(3394), + [anon_sym_let] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3396), + [anon_sym_LPAREN] = ACTIONS(3396), + [anon_sym_await] = ACTIONS(3394), + [anon_sym_yield] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_RBRACK] = ACTIONS(3396), + [sym_glimmer_opening_tag] = ACTIONS(3396), + [anon_sym_DOT] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3396), + [anon_sym_SQUOTE] = ACTIONS(3396), + [anon_sym_class] = ACTIONS(3394), + [anon_sym_async] = ACTIONS(3394), + [anon_sym_function] = ACTIONS(3394), + [anon_sym_new] = ACTIONS(3394), + [anon_sym_using] = ACTIONS(3394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_PIPE] = ACTIONS(3396), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3396), + [anon_sym_void] = ACTIONS(3394), + [anon_sym_delete] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3396), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3396), + [sym_number] = ACTIONS(3396), + [sym_private_property_identifier] = ACTIONS(3396), + [sym_this] = ACTIONS(3394), + [sym_super] = ACTIONS(3394), + [sym_true] = ACTIONS(3394), + [sym_false] = ACTIONS(3394), + [sym_null] = ACTIONS(3394), + [sym_undefined] = ACTIONS(3394), + [anon_sym_AT] = ACTIONS(3396), + [anon_sym_static] = ACTIONS(3394), + [anon_sym_readonly] = ACTIONS(3394), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3394), + [anon_sym_QMARK] = ACTIONS(3396), + [anon_sym_declare] = ACTIONS(3394), + [anon_sym_public] = ACTIONS(3394), + [anon_sym_private] = ACTIONS(3394), + [anon_sym_protected] = ACTIONS(3394), + [anon_sym_override] = ACTIONS(3394), + [anon_sym_module] = ACTIONS(3394), + [anon_sym_any] = ACTIONS(3394), + [anon_sym_number] = ACTIONS(3394), + [anon_sym_boolean] = ACTIONS(3394), + [anon_sym_string] = ACTIONS(3394), + [anon_sym_symbol] = ACTIONS(3394), + [anon_sym_object] = ACTIONS(3394), + [anon_sym_extends] = ACTIONS(3394), + [sym_html_comment] = ACTIONS(5), + }, + [1149] = { + [sym_export_statement] = STATE(4285), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(7045), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(6836), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(7045), + [sym_method_definition] = STATE(6836), + [sym_pair] = STATE(6836), + [sym_pair_pattern] = STATE(7045), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4285), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4285), + [sym_property_signature] = STATE(4285), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4285), + [sym_index_signature] = STATE(4285), + [aux_sym_export_statement_repeat1] = STATE(2867), + [sym_identifier] = ACTIONS(3398), + [anon_sym_export] = ACTIONS(3400), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3398), + [anon_sym_namespace] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3402), + [anon_sym_let] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3407), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_declare] = ACTIONS(3402), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3402), - [anon_sym_any] = ACTIONS(3402), - [anon_sym_number] = ACTIONS(3402), - [anon_sym_boolean] = ACTIONS(3402), - [anon_sym_string] = ACTIONS(3402), - [anon_sym_symbol] = ACTIONS(3402), - [anon_sym_object] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_readonly] = ACTIONS(3411), + [anon_sym_get] = ACTIONS(3413), + [anon_sym_set] = ACTIONS(3413), + [anon_sym_declare] = ACTIONS(3398), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3398), + [anon_sym_any] = ACTIONS(3398), + [anon_sym_number] = ACTIONS(3398), + [anon_sym_boolean] = ACTIONS(3398), + [anon_sym_string] = ACTIONS(3398), + [anon_sym_symbol] = ACTIONS(3398), + [anon_sym_object] = ACTIONS(3398), + [anon_sym_abstract] = ACTIONS(3262), [sym_html_comment] = ACTIONS(5), }, - [1151] = { - [sym_export_statement] = STATE(3868), - [sym_object_pattern] = STATE(5612), - [sym_object_assignment_pattern] = STATE(5138), - [sym_array_pattern] = STATE(5612), - [sym__call_signature] = STATE(4069), - [sym__destructuring_pattern] = STATE(5612), - [sym_spread_element] = STATE(5180), - [sym_string] = STATE(3080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(5138), - [sym_method_definition] = STATE(5180), - [sym_pair] = STATE(5180), - [sym_pair_pattern] = STATE(5138), - [sym__property_name] = STATE(3080), - [sym_computed_property_name] = STATE(3080), - [sym_method_signature] = STATE(3868), - [sym_accessibility_modifier] = STATE(2746), - [sym_override_modifier] = STATE(2781), - [sym_call_signature] = STATE(3868), - [sym_property_signature] = STATE(3868), - [sym_type_parameters] = STATE(5245), - [sym_construct_signature] = STATE(3868), - [sym_index_signature] = STATE(3868), - [aux_sym_export_statement_repeat1] = STATE(4358), - [sym_identifier] = ACTIONS(3402), - [anon_sym_export] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3402), - [anon_sym_namespace] = ACTIONS(3402), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3406), - [anon_sym_RBRACE] = ACTIONS(3406), - [anon_sym_let] = ACTIONS(3402), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3411), + [1150] = { + [sym_export_statement] = STATE(4489), + [sym_object_pattern] = STATE(7173), + [sym_object_assignment_pattern] = STATE(7045), + [sym_array_pattern] = STATE(7173), + [sym__call_signature] = STATE(5030), + [sym__destructuring_pattern] = STATE(7173), + [sym_spread_element] = STATE(6836), + [sym_string] = STATE(3515), + [sym_decorator] = STATE(3132), + [sym_formal_parameters] = STATE(3722), + [sym_rest_pattern] = STATE(7045), + [sym_method_definition] = STATE(6836), + [sym_pair] = STATE(6836), + [sym_pair_pattern] = STATE(7045), + [sym__property_name] = STATE(3515), + [sym_computed_property_name] = STATE(3515), + [sym_method_signature] = STATE(4489), + [sym_accessibility_modifier] = STATE(3154), + [sym_override_modifier] = STATE(3157), + [sym_call_signature] = STATE(4489), + [sym_property_signature] = STATE(4489), + [sym_type_parameters] = STATE(6830), + [sym_construct_signature] = STATE(4489), + [sym_index_signature] = STATE(4489), + [aux_sym_export_statement_repeat1] = STATE(2867), + [sym_identifier] = ACTIONS(3398), + [anon_sym_export] = ACTIONS(3400), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3398), + [anon_sym_namespace] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3402), + [anon_sym_let] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3407), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(2640), [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_declare] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_readonly] = ACTIONS(3411), + [anon_sym_get] = ACTIONS(3413), + [anon_sym_set] = ACTIONS(3413), + [anon_sym_declare] = ACTIONS(3398), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3398), + [anon_sym_any] = ACTIONS(3398), + [anon_sym_number] = ACTIONS(3398), + [anon_sym_boolean] = ACTIONS(3398), + [anon_sym_string] = ACTIONS(3398), + [anon_sym_symbol] = ACTIONS(3398), + [anon_sym_object] = ACTIONS(3398), + [anon_sym_abstract] = ACTIONS(3262), + [sym_html_comment] = ACTIONS(5), + }, + [1151] = { + [sym_identifier] = ACTIONS(3419), + [anon_sym_export] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_COMMA] = ACTIONS(3421), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_RBRACK] = ACTIONS(3421), + [sym_glimmer_opening_tag] = ACTIONS(3421), + [anon_sym_DOT] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_void] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_DASH_DASH] = ACTIONS(3421), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3421), + [sym_number] = ACTIONS(3421), + [sym_private_property_identifier] = ACTIONS(3421), + [sym_this] = ACTIONS(3419), + [sym_super] = ACTIONS(3419), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [sym_null] = ACTIONS(3419), + [sym_undefined] = ACTIONS(3419), + [anon_sym_AT] = ACTIONS(3421), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_get] = ACTIONS(3419), + [anon_sym_set] = ACTIONS(3419), + [anon_sym_QMARK] = ACTIONS(3421), + [anon_sym_declare] = ACTIONS(3419), [anon_sym_public] = ACTIONS(3419), [anon_sym_private] = ACTIONS(3419), [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3402), - [anon_sym_any] = ACTIONS(3402), - [anon_sym_number] = ACTIONS(3402), - [anon_sym_boolean] = ACTIONS(3402), - [anon_sym_string] = ACTIONS(3402), - [anon_sym_symbol] = ACTIONS(3402), - [anon_sym_object] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3419), + [anon_sym_module] = ACTIONS(3419), + [anon_sym_any] = ACTIONS(3419), + [anon_sym_number] = ACTIONS(3419), + [anon_sym_boolean] = ACTIONS(3419), + [anon_sym_string] = ACTIONS(3419), + [anon_sym_symbol] = ACTIONS(3419), + [anon_sym_object] = ACTIONS(3419), + [anon_sym_extends] = ACTIONS(3419), [sym_html_comment] = ACTIONS(5), }, [1152] = { - [sym_nested_identifier] = STATE(1552), - [sym_string] = STATE(1553), - [sym__module] = STATE(1757), - [sym_identifier] = ACTIONS(3400), + [sym_nested_identifier] = STATE(1604), + [sym_string] = STATE(1605), + [sym__module] = STATE(1760), + [sym_identifier] = ACTIONS(3388), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135559,58 +138896,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1153] = { - [sym_variable_declarator] = STATE(4481), - [sym_object_pattern] = STATE(3302), - [sym_array_pattern] = STATE(3302), - [sym__destructuring_pattern] = STATE(3302), - [sym_identifier] = ACTIONS(3423), + [sym_nested_identifier] = STATE(745), + [sym_string] = STATE(769), + [sym__module] = STATE(839), + [sym_identifier] = ACTIONS(3380), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(883), - [anon_sym_of] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_in] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135625,59 +138962,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1154] = { - [sym_nested_identifier] = STATE(203), - [sym_string] = STATE(198), - [sym__module] = STATE(231), - [sym_identifier] = ACTIONS(3394), + [sym_variable_declarator] = STATE(5287), + [sym_object_pattern] = STATE(3959), + [sym_array_pattern] = STATE(3959), + [sym__destructuring_pattern] = STATE(3959), + [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(3386), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3396), - [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135692,59 +139029,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1155] = { - [sym_variable_declarator] = STATE(4481), - [sym_object_pattern] = STATE(3543), - [sym_array_pattern] = STATE(3543), - [sym__destructuring_pattern] = STATE(3543), - [sym_identifier] = ACTIONS(3386), + [sym_nested_identifier] = STATE(1490), + [sym_string] = STATE(1495), + [sym__module] = STATE(1740), + [sym_identifier] = ACTIONS(3423), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_in] = ACTIONS(857), + [anon_sym_of] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135759,59 +139096,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1156] = { - [sym_nested_identifier] = STATE(745), - [sym_string] = STATE(778), - [sym__module] = STATE(890), - [sym_identifier] = ACTIONS(3392), + [sym_nested_identifier] = STATE(1604), + [sym_string] = STATE(1605), + [sym__module] = STATE(1760), + [sym_identifier] = ACTIONS(3388), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135826,59 +139163,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1157] = { - [sym_variable_declarator] = STATE(4481), - [sym_object_pattern] = STATE(3543), - [sym_array_pattern] = STATE(3543), - [sym__destructuring_pattern] = STATE(3543), - [sym_identifier] = ACTIONS(3386), + [sym_nested_identifier] = STATE(745), + [sym_string] = STATE(769), + [sym__module] = STATE(839), + [sym_identifier] = ACTIONS(3380), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135893,59 +139230,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1158] = { - [sym_nested_identifier] = STATE(745), - [sym_string] = STATE(778), - [sym__module] = STATE(890), - [sym_identifier] = ACTIONS(3392), + [sym_nested_identifier] = STATE(1490), + [sym_string] = STATE(1495), + [sym__module] = STATE(1740), + [sym_identifier] = ACTIONS(3423), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -135960,60 +139297,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1159] = { - [sym_nested_identifier] = STATE(1552), - [sym_string] = STATE(1553), - [sym__module] = STATE(1757), - [sym_identifier] = ACTIONS(3400), + [sym_nested_identifier] = STATE(1604), + [sym_string] = STATE(1605), + [sym__module] = STATE(1760), + [sym_identifier] = ACTIONS(3388), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(912), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -136028,58 +139365,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1160] = { - [sym_nested_identifier] = STATE(1503), - [sym_string] = STATE(1504), - [sym__module] = STATE(1712), - [sym_identifier] = ACTIONS(3425), + [sym_variable_declarator] = STATE(5287), + [sym_object_pattern] = STATE(3959), + [sym_array_pattern] = STATE(3959), + [sym__destructuring_pattern] = STATE(3959), + [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(3386), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(845), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -136094,59 +139431,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1161] = { - [sym_nested_identifier] = STATE(1552), - [sym_string] = STATE(1553), - [sym__module] = STATE(1757), - [sym_identifier] = ACTIONS(3400), + [sym_nested_identifier] = STATE(194), + [sym_string] = STATE(198), + [sym__module] = STATE(212), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(845), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -136161,60 +139498,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1162] = { - [sym_nested_identifier] = STATE(1552), - [sym_string] = STATE(1553), - [sym__module] = STATE(1757), - [sym_identifier] = ACTIONS(3400), + [sym_nested_identifier] = STATE(1604), + [sym_string] = STATE(1605), + [sym__module] = STATE(1760), + [sym_identifier] = ACTIONS(3388), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(839), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_RBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(879), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -136229,58 +139566,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1163] = { - [sym_nested_identifier] = STATE(1503), - [sym_string] = STATE(1504), - [sym__module] = STATE(1712), - [sym_identifier] = ACTIONS(3425), + [sym_nested_identifier] = STATE(1604), + [sym_string] = STATE(1605), + [sym__module] = STATE(1760), + [sym_identifier] = ACTIONS(3388), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(811), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(883), - [anon_sym_of] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_in] = ACTIONS(122), + [anon_sym_of] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -136295,59 +139632,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1164] = { - [sym_nested_identifier] = STATE(1503), - [sym_string] = STATE(1504), - [sym__module] = STATE(1712), + [sym_variable_declarator] = STATE(5287), + [sym_object_pattern] = STATE(3843), + [sym_array_pattern] = STATE(3843), + [sym__destructuring_pattern] = STATE(3843), [sym_identifier] = ACTIONS(3425), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_in] = ACTIONS(857), + [anon_sym_of] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(3386), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -136362,59 +139699,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1165] = { - [sym_nested_identifier] = STATE(1552), - [sym_string] = STATE(1553), - [sym__module] = STATE(1757), - [sym_identifier] = ACTIONS(3400), + [sym_nested_identifier] = STATE(1604), + [sym_string] = STATE(1605), + [sym__module] = STATE(1760), + [sym_identifier] = ACTIONS(3388), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(128), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(128), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -136429,59 +139766,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(785), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1166] = { - [sym_nested_identifier] = STATE(1552), - [sym_string] = STATE(1553), - [sym__module] = STATE(1757), - [sym_identifier] = ACTIONS(3400), + [sym_nested_identifier] = STATE(1490), + [sym_string] = STATE(1495), + [sym__module] = STATE(1740), + [sym_identifier] = ACTIONS(3423), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(853), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_COMMA] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(224), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -136496,59 +139833,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, [1167] = { - [sym_nested_identifier] = STATE(1503), - [sym_string] = STATE(1504), - [sym__module] = STATE(1712), - [sym_identifier] = ACTIONS(3425), + [sym_nested_identifier] = STATE(1490), + [sym_string] = STATE(1495), + [sym__module] = STATE(1740), + [sym_identifier] = ACTIONS(3423), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(878), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(162), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(162), [anon_sym_in] = ACTIONS(122), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_of] = ACTIONS(122), + [anon_sym_SEMI] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(162), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_QMARK_DOT] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_SLASH_EQ] = ACTIONS(168), + [anon_sym_PERCENT_EQ] = ACTIONS(168), + [anon_sym_CARET_EQ] = ACTIONS(168), + [anon_sym_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_EQ] = ACTIONS(168), + [anon_sym_GT_GT_EQ] = ACTIONS(168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(168), + [anon_sym_LT_LT_EQ] = ACTIONS(168), + [anon_sym_STAR_STAR_EQ] = ACTIONS(168), + [anon_sym_AMP_AMP_EQ] = ACTIONS(168), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -136563,55 +139900,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(162), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(162), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(162), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(162), + [anon_sym_DASH_DASH] = ACTIONS(162), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(162), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(162), + [sym__ternary_qmark] = ACTIONS(162), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 14, - ACTIONS(666), 1, - anon_sym_EQ, - ACTIONS(674), 1, - anon_sym_COLON, - ACTIONS(685), 1, + [0] = 13, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, anon_sym_EQ_GT, - ACTIONS(693), 1, - anon_sym_QMARK, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2301), 1, - anon_sym_LT, - ACTIONS(3427), 1, + ACTIONS(909), 1, + anon_sym_EQ, + ACTIONS(3388), 1, sym_identifier, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(128), 3, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(162), 12, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136622,7 +139957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136638,7 +139973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(122), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -136657,36 +139992,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [93] = 14, + [91] = 14, ACTIONS(666), 1, anon_sym_EQ, - ACTIONS(672), 1, - anon_sym_RBRACE, ACTIONS(674), 1, anon_sym_COLON, ACTIONS(685), 1, anon_sym_EQ_GT, ACTIONS(693), 1, anon_sym_QMARK, + ACTIONS(695), 1, + anon_sym_RBRACE, ACTIONS(2292), 1, anon_sym_LPAREN, ACTIONS(2301), 1, anon_sym_LT, ACTIONS(3427), 1, sym_identifier, - STATE(4821), 1, + STATE(5516), 1, aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(162), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -136701,7 +140037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136741,35 +140077,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [186] = 14, - ACTIONS(666), 1, + [184] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(919), 1, anon_sym_EQ, - ACTIONS(674), 1, - anon_sym_COLON, - ACTIONS(685), 1, + ACTIONS(925), 1, anon_sym_EQ_GT, - ACTIONS(693), 1, - anon_sym_QMARK, - ACTIONS(695), 1, - anon_sym_RBRACE, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2301), 1, - anon_sym_LT, - ACTIONS(3427), 1, + ACTIONS(3388), 1, sym_identifier, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(162), 14, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136780,7 +140112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136796,7 +140128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(122), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -136815,37 +140147,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [279] = 12, - ACTIONS(149), 1, + anon_sym_implements, + [273] = 15, + ACTIONS(128), 1, + anon_sym_RBRACK, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(803), 1, + ACTIONS(225), 1, + anon_sym_COMMA, + ACTIONS(896), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(901), 1, + anon_sym_COLON, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136856,7 +140193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136898,26 +140235,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_satisfies, [368] = 12, - ACTIONS(149), 1, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(937), 1, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(943), 1, + ACTIONS(925), 1, anon_sym_EQ_GT, - ACTIONS(3400), 1, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -136932,7 +140269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136975,26 +140312,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [457] = 12, - ACTIONS(149), 1, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(227), 1, + ACTIONS(160), 1, anon_sym_EQ_GT, - ACTIONS(893), 1, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -137010,7 +140347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137051,35 +140388,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [546] = 15, - ACTIONS(128), 1, + [546] = 14, + ACTIONS(666), 1, + anon_sym_EQ, + ACTIONS(672), 1, + anon_sym_RBRACE, + ACTIONS(674), 1, + anon_sym_COLON, + ACTIONS(685), 1, + anon_sym_EQ_GT, + ACTIONS(693), 1, + anon_sym_QMARK, + ACTIONS(2292), 1, + anon_sym_LPAREN, + ACTIONS(2301), 1, + anon_sym_LT, + ACTIONS(3427), 1, + sym_identifier, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 14, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - ACTIONS(149), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [639] = 12, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(899), 1, - anon_sym_EQ, - ACTIONS(904), 1, - anon_sym_COLON, - ACTIONS(908), 1, + ACTIONS(160), 1, anon_sym_EQ_GT, - ACTIONS(3400), 1, + ACTIONS(890), 1, + anon_sym_EQ, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(162), 15, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -137090,7 +140503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137131,31 +140544,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [641] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(803), 1, + [728] = 14, + ACTIONS(666), 1, anon_sym_EQ, - ACTIONS(943), 1, + ACTIONS(674), 1, + anon_sym_COLON, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(3400), 1, + ACTIONS(693), 1, + anon_sym_QMARK, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(2292), 1, + anon_sym_LPAREN, + ACTIONS(2301), 1, + anon_sym_LT, + ACTIONS(3427), 1, sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(162), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -137166,7 +140583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137182,7 +140599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(122), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137201,69 +140618,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [730] = 13, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(879), 1, - anon_sym_EQ_GT, - ACTIONS(912), 1, - anon_sym_EQ, - ACTIONS(3400), 1, - sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, + [821] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3429), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -137284,31 +140650,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [821] = 13, - ACTIONS(674), 1, - anon_sym_COLON, - ACTIONS(693), 1, anon_sym_QMARK, - ACTIONS(697), 1, + ACTIONS(3431), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3431), 1, - anon_sym_EQ, - ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3438), 1, - anon_sym_EQ_GT, - ACTIONS(3442), 1, - anon_sym_LT, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3440), 15, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137324,15 +140680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -137342,126 +140689,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [911] = 12, - ACTIONS(923), 1, - anon_sym_EQ, - ACTIONS(929), 1, - anon_sym_EQ_GT, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(3392), 1, - sym_identifier, - STATE(745), 1, - sym_nested_identifier, - STATE(778), 1, - sym_string, - STATE(890), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [999] = 13, - ACTIONS(672), 1, - anon_sym_RBRACE, + anon_sym_implements, + [891] = 13, ACTIONS(674), 1, anon_sym_COLON, ACTIONS(693), 1, anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_EQ, + ACTIONS(697), 1, + anon_sym_RBRACE, ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3438), 1, - anon_sym_EQ_GT, ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3446), 1, anon_sym_LT, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137477,7 +140728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 17, + ACTIONS(3437), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137495,7 +140746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 20, + ACTIONS(3433), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137516,42 +140767,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1089] = 12, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - anon_sym_SQUOTE, - ACTIONS(923), 1, + [981] = 13, + ACTIONS(666), 1, anon_sym_EQ, - ACTIONS(929), 1, + ACTIONS(674), 1, + anon_sym_COLON, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(3425), 1, - sym_identifier, - STATE(1503), 1, - sym_nested_identifier, - STATE(1504), 1, - sym_string, - STATE(1712), 1, - sym__module, + ACTIONS(693), 1, + anon_sym_QMARK, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(2292), 1, + anon_sym_LPAREN, + ACTIONS(2301), 1, + anon_sym_LT, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137567,84 +140805,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [1177] = 11, - ACTIONS(923), 1, - anon_sym_EQ, - ACTIONS(929), 1, - anon_sym_EQ_GT, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACE, - ACTIONS(3390), 1, - anon_sym_LBRACK, - STATE(4481), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3543), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 13, + ACTIONS(162), 17, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + anon_sym_satisfies, + ACTIONS(122), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -137661,17 +140841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [1263] = 3, + [1071] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 23, + ACTIONS(3449), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137695,7 +140872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3447), 38, + ACTIONS(3451), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137734,11 +140911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1333] = 3, + [1141] = 4, + ACTIONS(3457), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3449), 23, + ACTIONS(3453), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137762,7 +140941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3451), 38, + ACTIONS(3455), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137770,7 +140949,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -137801,11 +140979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1403] = 3, + [1213] = 4, + ACTIONS(3463), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 23, + ACTIONS(3459), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137829,7 +141009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3455), 38, + ACTIONS(3461), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137837,7 +141017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -137868,48 +141047,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1473] = 3, + [1285] = 14, + ACTIONS(3465), 1, + anon_sym_EQ, + ACTIONS(3469), 1, + anon_sym_LPAREN, + ACTIONS(3471), 1, + anon_sym_DOT, + ACTIONS(3473), 1, + anon_sym_EQ_GT, + ACTIONS(3475), 1, + anon_sym_QMARK_DOT, + ACTIONS(3479), 1, + anon_sym_LT, + STATE(3575), 1, + sym_arguments, + STATE(3686), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3457), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3477), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3459), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3467), 7, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137925,42 +141106,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [1543] = 12, - ACTIONS(149), 1, + ACTIONS(3433), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [1377] = 13, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, - anon_sym_EQ, - ACTIONS(929), 1, + ACTIONS(901), 1, + anon_sym_COLON, + ACTIONS(905), 1, anon_sym_EQ_GT, - ACTIONS(3400), 1, + ACTIONS(945), 1, + anon_sym_EQ, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(162), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -137970,7 +141161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138011,29 +141202,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1631] = 13, - ACTIONS(666), 1, + [1467] = 11, + ACTIONS(935), 1, anon_sym_EQ, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(674), 1, - anon_sym_COLON, - ACTIONS(685), 1, + ACTIONS(941), 1, anon_sym_EQ_GT, - ACTIONS(693), 1, - anon_sym_QMARK, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2301), 1, - anon_sym_LT, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3382), 1, + sym_identifier, + ACTIONS(3384), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_LBRACK, + STATE(5287), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + STATE(3959), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(162), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138049,26 +141252,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138085,32 +141271,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1721] = 13, + anon_sym_instanceof, + anon_sym_satisfies, + [1553] = 13, ACTIONS(666), 1, anon_sym_EQ, + ACTIONS(672), 1, + anon_sym_RBRACE, ACTIONS(674), 1, anon_sym_COLON, ACTIONS(685), 1, anon_sym_EQ_GT, ACTIONS(693), 1, anon_sym_QMARK, - ACTIONS(697), 1, - anon_sym_RBRACE, ACTIONS(2292), 1, anon_sym_LPAREN, ACTIONS(2301), 1, anon_sym_LT, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138126,7 +141315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, + ACTIONS(162), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138165,11 +141354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1811] = 3, + [1643] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 23, + ACTIONS(3481), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138193,7 +141382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3463), 38, + ACTIONS(3483), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138232,33 +141421,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1881] = 13, - ACTIONS(149), 1, + [1713] = 12, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(908), 1, - anon_sym_EQ_GT, - ACTIONS(915), 1, + ACTIONS(935), 1, anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_COLON, - ACTIONS(3400), 1, + ACTIONS(941), 1, + anon_sym_EQ_GT, + ACTIONS(3423), 1, sym_identifier, - STATE(1552), 1, + STATE(1490), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1495), 1, sym_string, - STATE(1757), 1, + STATE(1740), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(162), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -138268,7 +141456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138309,13 +141497,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1971] = 3, + [1801] = 14, + ACTIONS(128), 1, + anon_sym_RBRACK, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, + anon_sym_COMMA, + ACTIONS(896), 1, + anon_sym_EQ, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(3388), 1, + sym_identifier, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 23, + ACTIONS(162), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138336,21 +141573,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [1893] = 13, + ACTIONS(674), 1, + anon_sym_COLON, + ACTIONS(693), 1, anon_sym_QMARK, - ACTIONS(3467), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(695), 1, anon_sym_RBRACE, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3439), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3446), 1, + anon_sym_LT, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138366,6 +141613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -138375,30 +141631,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2041] = 13, + ACTIONS(3433), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [1983] = 13, + ACTIONS(672), 1, + anon_sym_RBRACE, ACTIONS(674), 1, anon_sym_COLON, ACTIONS(693), 1, anon_sym_QMARK, - ACTIONS(695), 1, - anon_sym_RBRACE, - ACTIONS(3431), 1, - anon_sym_EQ, ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3438), 1, - anon_sym_EQ_GT, ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3446), 1, anon_sym_LT, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138414,7 +141690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 17, + ACTIONS(3437), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138432,7 +141708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 20, + ACTIONS(3433), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138453,60 +141729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2131] = 12, - ACTIONS(923), 1, - anon_sym_EQ, - ACTIONS(929), 1, - anon_sym_EQ_GT, - ACTIONS(3394), 1, - sym_identifier, - ACTIONS(3396), 1, - anon_sym_DQUOTE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(198), 1, - sym_string, - STATE(203), 1, - sym_nested_identifier, - STATE(231), 1, - sym__module, + [2073] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3453), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138527,46 +141756,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2219] = 14, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(899), 1, - anon_sym_EQ, - ACTIONS(908), 1, - anon_sym_EQ_GT, - ACTIONS(3400), 1, - sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 12, + anon_sym_QMARK, + ACTIONS(3455), 38, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138582,9 +141786,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [2143] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3485), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138605,45 +141823,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2311] = 13, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - anon_sym_COLON, - ACTIONS(908), 1, - anon_sym_EQ_GT, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(3400), 1, - sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 13, + anon_sym_QMARK, + ACTIONS(3487), 38, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138659,9 +141853,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [2213] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3489), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138682,15 +141890,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3491), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [2401] = 4, - ACTIONS(3469), 1, - anon_sym_extends, + anon_sym_implements, + [2283] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 23, + ACTIONS(3459), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138714,7 +141958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3447), 37, + ACTIONS(3461), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138722,6 +141966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -138752,15 +141997,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2473] = 4, - ACTIONS(3471), 1, - anon_sym_extends, + [2353] = 11, + ACTIONS(935), 1, + anon_sym_EQ, + ACTIONS(941), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + ACTIONS(3384), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_LBRACK, + STATE(5328), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3449), 23, + STATE(3959), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(162), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138781,20 +142070,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3451), 37, + anon_sym_instanceof, + anon_sym_satisfies, + [2439] = 12, + ACTIONS(935), 1, + anon_sym_EQ, + ACTIONS(941), 1, + anon_sym_EQ_GT, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3493), 1, + sym_identifier, + STATE(3941), 1, + sym_nested_identifier, + STATE(4147), 1, + sym_string, + STATE(4913), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138810,17 +142123,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(122), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2545] = 13, + [2527] = 13, ACTIONS(666), 1, anon_sym_EQ, ACTIONS(674), 1, @@ -138835,14 +142163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2301), 1, anon_sym_LT, - STATE(4937), 1, + STATE(5516), 1, aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138858,7 +142186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, + ACTIONS(162), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138897,48 +142225,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2635] = 3, + [2617] = 13, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(945), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_COLON, + ACTIONS(3388), 1, + sym_identifier, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3475), 38, + ACTIONS(162), 13, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138954,41 +142277,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(122), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2705] = 11, - ACTIONS(923), 1, + [2707] = 12, + ACTIONS(935), 1, anon_sym_EQ, - ACTIONS(929), 1, + ACTIONS(941), 1, anon_sym_EQ_GT, - ACTIONS(3386), 1, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACE, - ACTIONS(3390), 1, - anon_sym_LBRACK, - STATE(4440), 1, - sym_variable_declarator, + ACTIONS(3376), 1, + anon_sym_DQUOTE, + ACTIONS(3378), 1, + anon_sym_SQUOTE, + STATE(194), 1, + sym_nested_identifier, + STATE(198), 1, + sym_string, + STATE(212), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3543), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 13, + ACTIONS(162), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -138998,7 +142337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139039,50 +142378,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2791] = 14, - ACTIONS(3477), 1, + [2795] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(3481), 1, - anon_sym_LPAREN, - ACTIONS(3483), 1, - anon_sym_DOT, - ACTIONS(3485), 1, + ACTIONS(941), 1, anon_sym_EQ_GT, - ACTIONS(3487), 1, - anon_sym_QMARK_DOT, - ACTIONS(3491), 1, - anon_sym_LT, - STATE(3056), 1, - sym_arguments, - STATE(3237), 1, - sym_type_arguments, + ACTIONS(3388), 1, + sym_identifier, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3479), 7, + ACTIONS(162), 14, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3433), 11, - sym__ternary_qmark, - anon_sym_as, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139098,8 +142429,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139108,36 +142440,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, [2883] = 12, - ACTIONS(923), 1, + ACTIONS(935), 1, anon_sym_EQ, - ACTIONS(929), 1, + ACTIONS(941), 1, anon_sym_EQ_GT, - ACTIONS(1621), 1, + ACTIONS(1589), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1591), 1, anon_sym_SQUOTE, - ACTIONS(3493), 1, + ACTIONS(3380), 1, sym_identifier, - STATE(3469), 1, + STATE(745), 1, sym_nested_identifier, - STATE(3507), 1, + STATE(769), 1, sym_string, - STATE(4121), 1, + STATE(839), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(162), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -139152,7 +142489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139259,38 +142596,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [3040] = 13, - ACTIONS(3485), 1, + [3040] = 14, + ACTIONS(3442), 1, anon_sym_EQ_GT, ACTIONS(3495), 1, anon_sym_EQ, - ACTIONS(3504), 1, - anon_sym_LBRACK, - ACTIONS(3507), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_DOT, - ACTIONS(3513), 1, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, + ACTIONS(3503), 1, anon_sym_LT, - STATE(3221), 1, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 2, + ACTIONS(3467), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3510), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3477), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3502), 4, + ACTIONS(3437), 14, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3433), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -139300,7 +142639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139316,11 +142655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -139335,87 +142673,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3129] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2510), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + [3131] = 8, + ACTIONS(3503), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2508), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [3198] = 8, - ACTIONS(3520), 1, + ACTIONS(3509), 1, anon_sym_LPAREN, - ACTIONS(3522), 1, + ACTIONS(3511), 1, anon_sym_DOT, - ACTIONS(3524), 1, - anon_sym_LT, - STATE(1225), 1, + STATE(1284), 1, sym_arguments, - STATE(5122), 1, + STATE(6489), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3518), 14, + ACTIONS(3507), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, @@ -139430,7 +142702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3516), 41, + ACTIONS(3505), 41, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -139472,50 +142744,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [3277] = 14, - ACTIONS(3477), 1, + [3210] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(3485), 1, + ACTIONS(959), 1, anon_sym_EQ_GT, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, + ACTIONS(3388), 1, + sym_identifier, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3433), 14, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139531,31 +142793,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(122), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3368] = 5, - ACTIONS(3530), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [3297] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(945), 1, anon_sym_EQ, + ACTIONS(3388), 1, + sym_identifier, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(162), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139571,8 +142869,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139593,74 +142892,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [3441] = 14, - ACTIONS(3438), 1, + [3384] = 14, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, - ACTIONS(3532), 1, + ACTIONS(811), 1, anon_sym_EQ, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, + ACTIONS(857), 1, + anon_sym_in, + ACTIONS(860), 1, + anon_sym_of, + ACTIONS(3388), 1, + sym_identifier, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3433), 14, - sym__automatic_semicolon, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139676,62 +142947,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(122), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3532] = 14, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(803), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [3475] = 14, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, + anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, + ACTIONS(3503), 1, + anon_sym_LT, + ACTIONS(3513), 1, anon_sym_EQ, - ACTIONS(883), 1, - anon_sym_in, - ACTIONS(886), 1, - anon_sym_of, - ACTIONS(3400), 1, - sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3467), 3, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(3477), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139747,51 +143030,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(3433), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3623] = 12, - ACTIONS(149), 1, + [3566] = 12, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(953), 1, - anon_sym_EQ, - ACTIONS(959), 1, + ACTIONS(965), 1, anon_sym_EQ_GT, - ACTIONS(3400), 1, + ACTIONS(971), 1, + anon_sym_EQ, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(162), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_COLON, @@ -139805,7 +143082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139846,31 +143123,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3710] = 12, - ACTIONS(149), 1, + [3653] = 12, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(908), 1, - anon_sym_EQ_GT, - ACTIONS(915), 1, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(965), 1, + anon_sym_EQ_GT, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(162), 13, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -139880,7 +143157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139921,30 +143198,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3797] = 12, - ACTIONS(149), 1, + [3740] = 12, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(953), 1, anon_sym_EQ, ACTIONS(959), 1, anon_sym_EQ_GT, - ACTIONS(3400), 1, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(162), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139955,7 +143231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139971,11 +143247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(122), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139996,41 +143273,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3884] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(803), 1, - anon_sym_EQ, - ACTIONS(908), 1, + [3827] = 13, + ACTIONS(3473), 1, anon_sym_EQ_GT, - ACTIONS(3400), 1, - sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, + ACTIONS(3517), 1, + anon_sym_EQ, + ACTIONS(3526), 1, + anon_sym_LBRACK, + ACTIONS(3529), 1, + anon_sym_DOT, + ACTIONS(3535), 1, + anon_sym_LT, + STATE(3707), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(3520), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3532), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3524), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3437), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140046,9 +143330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3433), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140057,54 +143340,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3971] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(967), 1, + [3916] = 5, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(973), 1, - anon_sym_EQ_GT, - ACTIONS(3400), 1, - sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140120,12 +143371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(3433), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140144,63 +143393,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4058] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(803), 1, - anon_sym_EQ, - ACTIONS(973), 1, - anon_sym_EQ_GT, - ACTIONS(3400), 1, - sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 12, + ACTIONS(3437), 23, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + anon_sym_satisfies, + anon_sym_implements, + [3989] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2498), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140219,39 +143444,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(2496), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [4145] = 16, - ACTIONS(3485), 1, + anon_sym_implements, + [4058] = 16, + ACTIONS(3473), 1, anon_sym_EQ_GT, - ACTIONS(3495), 1, + ACTIONS(3517), 1, anon_sym_EQ, - ACTIONS(3502), 1, + ACTIONS(3524), 1, anon_sym_extends, - ACTIONS(3504), 1, + ACTIONS(3526), 1, anon_sym_LBRACK, - ACTIONS(3534), 1, + ACTIONS(3540), 1, anon_sym_COLON, - ACTIONS(3536), 1, + ACTIONS(3542), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3542), 1, + ACTIONS(3548), 1, anon_sym_QMARK, - STATE(2915), 1, + STATE(3381), 1, sym_type_arguments, - STATE(5393), 1, + STATE(6729), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 2, + ACTIONS(3520), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(3510), 2, + ACTIONS(3532), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3433), 13, + ACTIONS(3437), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -140265,7 +143527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140281,7 +143543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, + ACTIONS(3433), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140300,29 +143562,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4240] = 13, - ACTIONS(149), 1, + [4153] = 13, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(803), 1, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(809), 1, + ACTIONS(817), 1, anon_sym_COLON, - ACTIONS(3400), 1, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(162), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -140335,7 +143597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140376,50 +143638,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4329] = 14, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, - ACTIONS(3545), 1, + [4242] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(3547), 1, + ACTIONS(905), 1, anon_sym_EQ_GT, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, + ACTIONS(3388), 1, + sym_identifier, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3433), 14, - sym__automatic_semicolon, + ACTIONS(162), 13, sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140435,56 +143688,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4420] = 14, - ACTIONS(3520), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4329] = 14, + ACTIONS(3465), 1, + anon_sym_EQ, + ACTIONS(3473), 1, + anon_sym_EQ_GT, + ACTIONS(3497), 1, anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, + ACTIONS(3499), 1, anon_sym_DOT, - ACTIONS(3528), 1, + ACTIONS(3501), 1, anon_sym_QMARK_DOT, - ACTIONS(3549), 1, - anon_sym_EQ, - ACTIONS(3551), 1, - anon_sym_EQ_GT, - STATE(2894), 1, + ACTIONS(3503), 1, + anon_sym_LT, + STATE(3347), 1, sym_arguments, - STATE(2980), 1, + STATE(3403), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 3, + ACTIONS(3467), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3489), 3, + ACTIONS(3477), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3433), 13, + ACTIONS(3437), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -140494,8 +143756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140511,7 +143772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140529,28 +143790,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4510] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(1035), 1, + [4420] = 8, + ACTIONS(222), 1, anon_sym_EQ, - ACTIONS(3400), 1, - sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, + ACTIONS(227), 1, + anon_sym_EQ_GT, + ACTIONS(785), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(225), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(162), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -140559,10 +143817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140578,9 +143838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(122), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140601,43 +143860,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4596] = 12, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(803), 1, + [4498] = 14, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, + anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, + ACTIONS(3503), 1, + anon_sym_LT, + ACTIONS(3551), 1, anon_sym_EQ, - ACTIONS(883), 1, - anon_sym_in, - ACTIONS(886), 1, - anon_sym_of, - ACTIONS(3244), 1, - anon_sym_LBRACE, ACTIONS(3553), 1, - sym_identifier, - ACTIONS(3555), 1, - anon_sym_LBRACK, + anon_sym_EQ_GT, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5158), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 11, + ACTIONS(3477), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3467), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3437), 13, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140653,51 +143917,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(3433), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4682] = 12, - ACTIONS(149), 1, + [4588] = 12, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(1041), 1, + ACTIONS(995), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(162), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -140710,7 +143969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140751,163 +144010,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4768] = 7, - ACTIONS(3562), 1, - anon_sym_class, - ACTIONS(3565), 1, - anon_sym_AT, - STATE(1238), 1, - aux_sym_export_statement_repeat1, - STATE(1267), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3560), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3558), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [4844] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3570), 16, - anon_sym_LBRACE, - anon_sym_BANG, + [4674] = 14, + ACTIONS(3497), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3568), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(3499), 1, + anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, + ACTIONS(3503), 1, anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [4912] = 8, - ACTIONS(3530), 1, + ACTIONS(3555), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3557), 1, anon_sym_EQ_GT, - ACTIONS(3576), 1, - anon_sym_QMARK, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3572), 5, + ACTIONS(3467), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3433), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3477), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -140917,7 +144052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140933,62 +144068,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4990] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(1043), 1, + [4764] = 12, + ACTIONS(3513), 1, anon_sym_EQ, - ACTIONS(3400), 1, - sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3524), 1, + anon_sym_extends, + ACTIONS(3542), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + STATE(3381), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3526), 2, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(3532), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141004,63 +144125,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, + ACTIONS(3437), 16, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3433), 17, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5076] = 15, - ACTIONS(3498), 1, - anon_sym_RPAREN, - ACTIONS(3502), 1, - anon_sym_extends, - ACTIONS(3504), 1, - anon_sym_LBRACK, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_LT, - ACTIONS(3578), 1, - anon_sym_EQ, - ACTIONS(3584), 1, + [4850] = 9, + ACTIONS(849), 1, anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_QMARK, - STATE(2915), 1, - sym_type_arguments, + ACTIONS(909), 1, + anon_sym_EQ, + ACTIONS(3559), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 2, + ACTIONS(3562), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3581), 2, + ACTIONS(1823), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3433), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -141071,7 +144195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141087,7 +144211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141103,55 +144227,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5168] = 12, - ACTIONS(3438), 1, - anon_sym_EQ_GT, - ACTIONS(3502), 1, + [4930] = 15, + ACTIONS(3524), 1, anon_sym_extends, - ACTIONS(3532), 1, - anon_sym_EQ, - ACTIONS(3536), 1, + ACTIONS(3526), 1, + anon_sym_LBRACK, + ACTIONS(3542), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3545), 1, anon_sym_LT, - STATE(2915), 1, + ACTIONS(3565), 1, + anon_sym_EQ, + ACTIONS(3570), 1, + anon_sym_RPAREN, + ACTIONS(3573), 1, + anon_sym_EQ_GT, + ACTIONS(3575), 1, + anon_sym_QMARK, + STATE(3381), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3504), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3510), 3, - anon_sym_GT, + ACTIONS(3532), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, - sym__automatic_semicolon, + ACTIONS(3568), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3437), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -141162,58 +144273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [5254] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(1047), 1, - anon_sym_EQ, - ACTIONS(3400), 1, - sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141229,9 +144289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3433), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141240,44 +144299,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5340] = 12, - ACTIONS(3502), 1, + [5022] = 15, + ACTIONS(3520), 1, + anon_sym_RPAREN, + ACTIONS(3524), 1, anon_sym_extends, - ACTIONS(3536), 1, + ACTIONS(3526), 1, + anon_sym_LBRACK, + ACTIONS(3542), 1, anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_LT, ACTIONS(3545), 1, - anon_sym_EQ, - ACTIONS(3547), 1, + anon_sym_LT, + ACTIONS(3553), 1, anon_sym_EQ_GT, - STATE(2915), 1, + ACTIONS(3575), 1, + anon_sym_QMARK, + ACTIONS(3577), 1, + anon_sym_EQ, + STATE(3381), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3504), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3510), 3, - anon_sym_GT, + ACTIONS(3532), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3440), 15, + ACTIONS(3580), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3437), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141293,27 +144366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3429), 17, + ACTIONS(3433), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141328,39 +144385,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5426] = 14, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3588), 1, + [5114] = 8, + ACTIONS(3538), 1, anon_sym_EQ, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, + ACTIONS(3573), 1, + anon_sym_EQ_GT, + ACTIONS(3585), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 3, + ACTIONS(3583), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3433), 13, - sym__ternary_qmark, - anon_sym_as, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3437), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141370,7 +144417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141386,43 +144433,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5516] = 8, - ACTIONS(119), 1, - anon_sym_EQ, - ACTIONS(159), 1, + [5192] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(723), 1, - anon_sym_QMARK, + ACTIONS(811), 1, + anon_sym_EQ, + ACTIONS(3388), 1, + sym_identifier, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(161), 15, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -141431,12 +144485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141452,8 +144504,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141474,27 +144527,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5594] = 12, - ACTIONS(149), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [5278] = 12, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(1037), 1, + ACTIONS(979), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(162), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -141507,7 +144562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141548,28 +144603,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5680] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(803), 1, + [5364] = 8, + ACTIONS(3565), 1, anon_sym_EQ, - ACTIONS(3400), 1, - sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, + ACTIONS(3573), 1, + anon_sym_EQ_GT, + ACTIONS(3575), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(3568), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3437), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -141578,10 +144630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141597,9 +144651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3433), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141620,29 +144673,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5766] = 12, - ACTIONS(149), 1, + [5442] = 12, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(1049), 1, + ACTIONS(983), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(162), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -141655,7 +144706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141696,29 +144747,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5852] = 8, - ACTIONS(3574), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_QMARK, - ACTIONS(3590), 1, + [5528] = 14, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, + anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, + ACTIONS(3503), 1, + anon_sym_LT, + ACTIONS(3587), 1, anon_sym_EQ, + ACTIONS(3589), 1, + anon_sym_EQ_GT, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 5, + ACTIONS(3467), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3433), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3477), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141728,7 +144788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + anon_sym_implements, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141744,39 +144805,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5930] = 6, - ACTIONS(3565), 1, + [5618] = 7, + ACTIONS(3595), 1, + anon_sym_class, + ACTIONS(3598), 1, anon_sym_AT, - STATE(1238), 1, + STATE(1246), 1, aux_sym_export_statement_repeat1, - STATE(1267), 1, + STATE(1308), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3560), 14, + ACTIONS(3593), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -141791,7 +144850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3558), 42, + ACTIONS(3591), 41, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -141800,7 +144859,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, - anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, @@ -141834,38 +144892,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [6004] = 15, - ACTIONS(3502), 1, + [5694] = 12, + ACTIONS(3465), 1, + anon_sym_EQ, + ACTIONS(3473), 1, + anon_sym_EQ_GT, + ACTIONS(3524), 1, anon_sym_extends, - ACTIONS(3504), 1, - anon_sym_LBRACK, - ACTIONS(3536), 1, + ACTIONS(3542), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3574), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_QMARK, - ACTIONS(3590), 1, - anon_sym_EQ, - ACTIONS(3595), 1, - anon_sym_RPAREN, - STATE(2915), 1, + STATE(3381), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 2, + ACTIONS(3526), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3532), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3593), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3433), 13, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 16, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -141876,7 +144948,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3433), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5780] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(227), 1, + anon_sym_EQ_GT, + ACTIONS(987), 1, + anon_sym_EQ, + ACTIONS(3388), 1, + sym_identifier, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141892,8 +145015,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141902,36 +145026,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6096] = 12, - ACTIONS(149), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [5866] = 12, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(1045), 1, + ACTIONS(997), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(162), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -141944,7 +145073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141985,30 +145114,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6182] = 12, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3485), 1, + [5952] = 12, + ACTIONS(3442), 1, anon_sym_EQ_GT, - ACTIONS(3502), 1, + ACTIONS(3495), 1, + anon_sym_EQ, + ACTIONS(3524), 1, anon_sym_extends, - ACTIONS(3536), 1, + ACTIONS(3542), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3545), 1, anon_sym_LT, - STATE(2915), 1, + STATE(3381), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3504), 2, + ACTIONS(3526), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3510), 3, + ACTIONS(3532), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142024,13 +145153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, + ACTIONS(3437), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142041,7 +145170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 17, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142059,107 +145188,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6268] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3600), 16, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [6038] = 12, + ACTIONS(150), 1, anon_sym_DQUOTE, + ACTIONS(152), 1, anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3598), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [6336] = 9, - ACTIONS(879), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(912), 1, + ACTIONS(981), 1, anon_sym_EQ, - ACTIONS(3602), 1, - anon_sym_LBRACK, + ACTIONS(3388), 1, + sym_identifier, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3605), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1817), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(161), 14, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142175,8 +145237,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142185,7 +145248,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -142195,39 +145260,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6416] = 14, - ACTIONS(3520), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6124] = 14, + ACTIONS(3465), 1, + anon_sym_EQ, + ACTIONS(3473), 1, + anon_sym_EQ_GT, + ACTIONS(3497), 1, anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, + ACTIONS(3499), 1, anon_sym_DOT, - ACTIONS(3528), 1, + ACTIONS(3501), 1, anon_sym_QMARK_DOT, - ACTIONS(3608), 1, - anon_sym_EQ, - ACTIONS(3610), 1, - anon_sym_EQ_GT, - STATE(2894), 1, + ACTIONS(3503), 1, + anon_sym_LT, + STATE(3347), 1, sym_arguments, - STATE(2980), 1, + STATE(3403), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 3, + ACTIONS(3477), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3467), 4, anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3433), 13, - sym__automatic_semicolon, + ACTIONS(3437), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142237,7 +145303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142253,10 +145319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(3433), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142271,25 +145338,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6506] = 8, - ACTIONS(159), 1, + [6214] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(803), 1, + ACTIONS(991), 1, anon_sym_EQ, - ACTIONS(825), 1, - anon_sym_QMARK, + ACTIONS(3388), 1, + sym_identifier, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(809), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(161), 15, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -142298,12 +145368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142319,8 +145387,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142341,30 +145410,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6584] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6300] = 14, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, + anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, + ACTIONS(3503), 1, + anon_sym_LT, + ACTIONS(3551), 1, + anon_sym_EQ, + ACTIONS(3553), 1, + anon_sym_EQ_GT, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3467), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3477), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6390] = 12, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(1039), 1, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(857), 1, + anon_sym_in, + ACTIONS(860), 1, + anon_sym_of, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(3601), 1, sym_identifier, - STATE(1552), 1, - sym_nested_identifier, - STATE(1553), 1, - sym_string, - STATE(1757), 1, - sym__module, + ACTIONS(3603), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + STATE(6280), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(162), 11, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142374,7 +145522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142390,11 +145538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(122), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142415,27 +145562,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6670] = 12, - ACTIONS(149), 1, + [6476] = 12, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(979), 1, + ACTIONS(989), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(162), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142448,7 +145595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142489,48 +145636,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6756] = 14, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3485), 1, + [6562] = 12, + ACTIONS(150), 1, + anon_sym_DQUOTE, + ACTIONS(152), 1, + anon_sym_SQUOTE, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, + ACTIONS(985), 1, + anon_sym_EQ, + ACTIONS(3388), 1, + sym_identifier, + STATE(1604), 1, + sym_nested_identifier, + STATE(1605), 1, + sym_string, + STATE(1760), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3479), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3433), 11, + ACTIONS(162), 12, sym__ternary_qmark, - anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142546,8 +145685,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142556,47 +145696,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6846] = 14, - ACTIONS(3520), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6648] = 6, + ACTIONS(3598), 1, + anon_sym_AT, + STATE(1246), 1, + aux_sym_export_statement_repeat1, + STATE(1308), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3593), 14, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3524), 1, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3591), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, - ACTIONS(3584), 1, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [6722] = 8, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(3588), 1, + ACTIONS(811), 1, anon_sym_EQ, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, + ACTIONS(833), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3479), 3, + ACTIONS(817), 5, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3433), 13, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142606,7 +145810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142622,7 +145826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142632,36 +145836,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6936] = 12, - ACTIONS(149), 1, + [6800] = 12, + ACTIONS(150), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(152), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(981), 1, + ACTIONS(993), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(3388), 1, sym_identifier, - STATE(1552), 1, + STATE(1604), 1, sym_nested_identifier, - STATE(1553), 1, + STATE(1605), 1, sym_string, - STATE(1757), 1, + STATE(1760), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(162), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142674,7 +145881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142715,38 +145922,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [7022] = 14, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, - ACTIONS(3612), 1, + [6886] = 11, + ACTIONS(119), 1, anon_sym_EQ, - ACTIONS(3614), 1, + ACTIONS(160), 1, anon_sym_EQ_GT, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, + ACTIONS(785), 1, + anon_sym_QMARK, + ACTIONS(3559), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 3, + ACTIONS(128), 2, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(1823), 2, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, + ACTIONS(3562), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3433), 12, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142756,7 +145958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142772,10 +145974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142787,27 +145990,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7111] = 8, - ACTIONS(685), 1, - anon_sym_EQ_GT, - ACTIONS(851), 1, + [6969] = 7, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(853), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - sym_identifier, + ACTIONS(3585), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3583), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3437), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142815,10 +146019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142834,9 +146040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3433), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142857,49 +146062,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [7188] = 4, - ACTIONS(3471), 1, - anon_sym_extends, + [7044] = 12, + ACTIONS(3526), 1, + anon_sym_LBRACK, + ACTIONS(3542), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3555), 1, + anon_sym_EQ, + ACTIONS(3557), 1, + anon_sym_EQ_GT, + STATE(3381), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3449), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3524), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3532), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3451), 35, + ACTIONS(3437), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142915,47 +146117,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [7257] = 14, - ACTIONS(3520), 1, + ACTIONS(3433), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7129] = 14, + ACTIONS(3497), 1, anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, + ACTIONS(3499), 1, anon_sym_DOT, - ACTIONS(3528), 1, + ACTIONS(3501), 1, anon_sym_QMARK_DOT, - ACTIONS(3616), 1, + ACTIONS(3503), 1, + anon_sym_LT, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(3618), 1, + ACTIONS(3573), 1, anon_sym_EQ_GT, - STATE(2894), 1, + STATE(3347), 1, sym_arguments, - STATE(2980), 1, + STATE(3403), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 3, + ACTIONS(3477), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3467), 4, anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3433), 12, + ACTIONS(3437), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142965,7 +146175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142981,10 +146191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(3433), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142999,24 +146210,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7346] = 8, - ACTIONS(685), 1, - anon_sym_EQ_GT, - ACTIONS(851), 1, + [7218] = 7, + ACTIONS(3565), 1, anon_sym_EQ, - ACTIONS(888), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - sym_identifier, + ACTIONS(3575), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3568), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3437), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -143024,10 +146235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143043,9 +146256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3433), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143066,49 +146278,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [7423] = 4, + [7293] = 12, + ACTIONS(3524), 1, + anon_sym_extends, + ACTIONS(3542), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3587), 1, + anon_sym_EQ, + ACTIONS(3589), 1, + anon_sym_EQ_GT, + STATE(3381), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3449), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3526), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3532), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3451), 32, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143124,108 +146333,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [7492] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3518), 15, - anon_sym_LBRACE, + ACTIONS(3433), 17, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3516), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [7559] = 14, - ACTIONS(3520), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7378] = 14, + ACTIONS(3497), 1, anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, + ACTIONS(3499), 1, anon_sym_DOT, - ACTIONS(3528), 1, + ACTIONS(3501), 1, anon_sym_QMARK_DOT, - ACTIONS(3620), 1, + ACTIONS(3503), 1, + anon_sym_LT, + ACTIONS(3606), 1, anon_sym_EQ, - ACTIONS(3622), 1, + ACTIONS(3608), 1, anon_sym_EQ_GT, - STATE(2894), 1, + STATE(3347), 1, sym_arguments, - STATE(2980), 1, + STATE(3403), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 3, + ACTIONS(3467), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3489), 3, + ACTIONS(3477), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3433), 12, + ACTIONS(3437), 12, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -143238,7 +146392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143254,7 +146408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143272,36 +146426,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7648] = 12, - ACTIONS(3502), 1, - anon_sym_extends, - ACTIONS(3536), 1, + [7467] = 14, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, + ACTIONS(3503), 1, anon_sym_LT, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3588), 1, + ACTIONS(3610), 1, anon_sym_EQ, - STATE(2915), 1, + ACTIONS(3612), 1, + anon_sym_EQ_GT, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3504), 2, + ACTIONS(3467), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3510), 3, + anon_sym_extends, + ACTIONS(3477), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3433), 15, + ACTIONS(3437), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143311,7 +146467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143327,7 +146483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143345,107 +146501,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7733] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3626), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3624), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [7800] = 11, - ACTIONS(221), 1, - anon_sym_EQ, - ACTIONS(227), 1, + [7556] = 8, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(723), 1, - anon_sym_QMARK, - ACTIONS(3602), 1, - anon_sym_LBRACK, + ACTIONS(853), 1, + anon_sym_EQ, + ACTIONS(855), 1, + anon_sym_COLON, + ACTIONS(3427), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1817), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3605), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 14, + ACTIONS(162), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143461,8 +146545,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143471,7 +146556,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -143481,46 +146568,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7883] = 12, - ACTIONS(3502), 1, - anon_sym_extends, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_LT, - ACTIONS(3549), 1, - anon_sym_EQ, - ACTIONS(3551), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [7633] = 9, + ACTIONS(685), 1, anon_sym_EQ_GT, - STATE(2915), 1, - sym_type_arguments, + ACTIONS(853), 1, + anon_sym_EQ, + ACTIONS(1823), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3504), 2, + ACTIONS(3559), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3510), 3, + ACTIONS(3562), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3433), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143536,7 +146603,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(162), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143551,28 +146636,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7968] = 7, - ACTIONS(3586), 1, - anon_sym_QMARK, - ACTIONS(3590), 1, + [7712] = 11, + ACTIONS(222), 1, anon_sym_EQ, + ACTIONS(227), 1, + anon_sym_EQ_GT, + ACTIONS(785), 1, + anon_sym_QMARK, + ACTIONS(3559), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 5, + ACTIONS(225), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3433), 15, + ACTIONS(1823), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3562), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143584,7 +146676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143600,7 +146692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143610,9 +146702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -143622,24 +146712,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8043] = 9, - ACTIONS(685), 1, - anon_sym_EQ_GT, - ACTIONS(851), 1, - anon_sym_EQ, - ACTIONS(1817), 1, - anon_sym_extends, + [7795] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3605), 3, + ACTIONS(3463), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3459), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3461), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143655,15 +146768,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143673,16 +146777,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + [7864] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3457), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3453), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -143692,24 +146809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8122] = 9, - ACTIONS(873), 1, - anon_sym_EQ, - ACTIONS(879), 1, - anon_sym_EQ_GT, - ACTIONS(1817), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3602), 2, + ACTIONS(3455), 32, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3605), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143725,15 +146833,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143743,16 +146842,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + [7933] = 4, + ACTIONS(3457), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3453), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -143762,24 +146871,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8201] = 9, - ACTIONS(839), 1, - anon_sym_EQ, - ACTIONS(845), 1, - anon_sym_EQ_GT, - ACTIONS(1817), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3602), 2, + ACTIONS(3455), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3605), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143795,15 +146898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143813,16 +146907,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + [8002] = 4, + ACTIONS(3463), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3459), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -143832,11 +146936,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8280] = 3, + ACTIONS(3461), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8071] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3630), 15, + ACTIONS(3616), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -143852,7 +146992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3628), 43, + ACTIONS(3614), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -143861,6 +147001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, + anon_sym_DOT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -143895,44 +147036,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [8347] = 11, - ACTIONS(119), 1, + [8138] = 9, + ACTIONS(839), 1, anon_sym_EQ, - ACTIONS(159), 1, + ACTIONS(849), 1, anon_sym_EQ_GT, - ACTIONS(723), 1, - anon_sym_QMARK, - ACTIONS(3602), 1, - anon_sym_LBRACK, + ACTIONS(1823), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 2, + ACTIONS(3559), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1817), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3605), 2, + anon_sym_LBRACK, + ACTIONS(3562), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143948,11 +147069,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(162), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143968,32 +147106,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8430] = 13, - ACTIONS(3504), 1, + [8217] = 13, + ACTIONS(3526), 1, anon_sym_LBRACK, - ACTIONS(3530), 1, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(3536), 1, + ACTIONS(3542), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3572), 1, - anon_sym_COLON, - ACTIONS(3574), 1, + ACTIONS(3573), 1, anon_sym_EQ_GT, - STATE(2915), 1, + ACTIONS(3583), 1, + anon_sym_COLON, + STATE(3381), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 2, + ACTIONS(3532), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3502), 3, + ACTIONS(3524), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3433), 13, + ACTIONS(3437), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -144007,7 +147145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144023,7 +147161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, + ACTIONS(3433), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144042,110 +147180,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8517] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3634), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3632), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [8584] = 12, - ACTIONS(3504), 1, - anon_sym_LBRACK, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_LT, - ACTIONS(3608), 1, - anon_sym_EQ, - ACTIONS(3610), 1, + [8304] = 8, + ACTIONS(685), 1, anon_sym_EQ_GT, - STATE(2915), 1, - sym_type_arguments, + ACTIONS(853), 1, + anon_sym_EQ, + ACTIONS(872), 1, + anon_sym_COLON, + ACTIONS(3427), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3510), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3433), 15, + ACTIONS(162), 15, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144161,55 +147224,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8669] = 14, - ACTIONS(3477), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [8381] = 14, + ACTIONS(3465), 1, anon_sym_EQ, - ACTIONS(3485), 1, + ACTIONS(3473), 1, anon_sym_EQ_GT, - ACTIONS(3502), 1, - anon_sym_extends, - ACTIONS(3504), 1, - anon_sym_LBRACK, - ACTIONS(3536), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, + ACTIONS(3503), 1, anon_sym_LT, - ACTIONS(3572), 1, - anon_sym_COLON, - STATE(2915), 1, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 2, + ACTIONS(3477), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3636), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3433), 13, + ACTIONS(3467), 3, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3437), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144219,7 +147289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144235,7 +147305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, + ACTIONS(3433), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144254,26 +147324,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8758] = 7, - ACTIONS(3530), 1, + [8470] = 12, + ACTIONS(3524), 1, + anon_sym_extends, + ACTIONS(3542), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3551), 1, anon_sym_EQ, - ACTIONS(3576), 1, - anon_sym_QMARK, + ACTIONS(3553), 1, + anon_sym_EQ_GT, + STATE(3381), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3572), 5, + ACTIONS(3526), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3433), 15, + anon_sym_LBRACK, + ACTIONS(3532), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144284,7 +147363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144300,59 +147379,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8833] = 14, - ACTIONS(3520), 1, + [8555] = 14, + ACTIONS(3497), 1, anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, + ACTIONS(3499), 1, anon_sym_DOT, - ACTIONS(3528), 1, + ACTIONS(3501), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + ACTIONS(3503), 1, + anon_sym_LT, + ACTIONS(3618), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3620), 1, anon_sym_EQ_GT, - STATE(2894), 1, + STATE(3347), 1, sym_arguments, - STATE(2980), 1, + STATE(3403), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3479), 4, + ACTIONS(3467), 3, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3433), 11, + ACTIONS(3477), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 12, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144362,7 +147438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144378,11 +147454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -144397,15 +147472,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8922] = 4, - ACTIONS(3469), 1, + [8644] = 14, + ACTIONS(3465), 1, + anon_sym_EQ, + ACTIONS(3473), 1, + anon_sym_EQ_GT, + ACTIONS(3524), 1, anon_sym_extends, + ACTIONS(3526), 1, + anon_sym_LBRACK, + ACTIONS(3542), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3583), 1, + anon_sym_COLON, + STATE(3381), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 22, + ACTIONS(3532), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3622), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3437), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 18, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144414,30 +147538,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3447), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [8733] = 9, + ACTIONS(878), 1, + anon_sym_EQ, + ACTIONS(884), 1, + anon_sym_EQ_GT, + ACTIONS(1823), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3559), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3562), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144453,6 +147580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(162), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144462,16 +147598,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8991] = 4, + ACTIONS(122), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8812] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3445), 22, + ACTIONS(3628), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3626), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [8878] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2498), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -144494,12 +147707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3447), 32, + ACTIONS(2496), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -144527,47 +147743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9060] = 14, - ACTIONS(3477), 1, + [8944] = 6, + ACTIONS(878), 1, anon_sym_EQ, - ACTIONS(3485), 1, + ACTIONS(884), 1, anon_sym_EQ_GT, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3479), 3, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3433), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144583,7 +147767,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, + ACTIONS(162), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144593,24 +147797,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9149] = 6, - ACTIONS(3485), 1, + [9016] = 8, + ACTIONS(3442), 1, anon_sym_EQ_GT, - ACTIONS(3530), 1, + ACTIONS(3495), 1, anon_sym_EQ, + ACTIONS(3630), 1, + anon_sym_in, + ACTIONS(3633), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144626,15 +147837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 19, + ACTIONS(3437), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144646,10 +147856,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(3433), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144668,17 +147877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9221] = 7, - ACTIONS(853), 1, - anon_sym_COLON, - ACTIONS(3438), 1, + [9092] = 8, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(3532), 1, + ACTIONS(853), 1, anon_sym_EQ, + ACTIONS(857), 1, + anon_sym_in, + ACTIONS(3635), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144694,7 +147905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 18, + ACTIONS(162), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144713,10 +147924,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(122), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144735,17 +147945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9295] = 7, - ACTIONS(685), 1, - anon_sym_EQ_GT, - ACTIONS(851), 1, + [9168] = 6, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(853), 1, - anon_sym_COLON, + ACTIONS(884), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144761,12 +147969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, + ACTIONS(162), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -144802,15 +148011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9369] = 6, - ACTIONS(685), 1, - anon_sym_EQ_GT, - ACTIONS(803), 1, + [9240] = 6, + ACTIONS(3513), 1, anon_sym_EQ, + ACTIONS(3515), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144826,13 +148035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, + ACTIONS(3437), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -144846,7 +148055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144868,13 +148077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9441] = 5, - ACTIONS(3530), 1, + [9312] = 6, + ACTIONS(685), 1, + anon_sym_EQ_GT, + ACTIONS(853), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144890,14 +148101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 20, + ACTIONS(162), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -144911,7 +148121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144933,11 +148143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9511] = 3, + [9384] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2510), 22, + ACTIONS(3429), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -144960,7 +148170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2508), 35, + ACTIONS(3431), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144996,36 +148206,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9577] = 14, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(3574), 1, - anon_sym_EQ_GT, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, + [9450] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, + ACTIONS(3489), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3479), 3, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3491), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [9516] = 12, + ACTIONS(3526), 1, anon_sym_LBRACK, + ACTIONS(3542), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3610), 1, + anon_sym_EQ, + ACTIONS(3612), 1, + anon_sym_EQ_GT, + STATE(3381), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(3433), 11, + ACTIONS(3532), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145035,7 +148307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145051,11 +148323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -145070,24 +148341,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9665] = 3, + [9600] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 22, - anon_sym_STAR, + ACTIONS(3639), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3637), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [9666] = 9, + ACTIONS(935), 1, anon_sym_EQ, + ACTIONS(941), 1, + anon_sym_EQ_GT, + ACTIONS(3559), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1823), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3562), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(162), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 18, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -145097,18 +148473,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3447), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [9744] = 14, + ACTIONS(3497), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(3499), 1, anon_sym_DOT, + ACTIONS(3501), 1, anon_sym_QMARK_DOT, + ACTIONS(3503), 1, + anon_sym_LT, + ACTIONS(3538), 1, + anon_sym_EQ, + ACTIONS(3573), 1, + anon_sym_EQ_GT, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3477), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3467), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3437), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145124,6 +148528,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9832] = 8, + ACTIONS(119), 1, + anon_sym_EQ, + ACTIONS(160), 1, + anon_sym_EQ_GT, + ACTIONS(785), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(128), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(162), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145133,13 +148577,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9731] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3449), 22, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145160,18 +148615,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3451), 35, - sym__automatic_semicolon, + [9908] = 8, + ACTIONS(3553), 1, + anon_sym_EQ_GT, + ACTIONS(3575), 1, + anon_sym_QMARK, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3580), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145187,22 +148661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [9797] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2502), 22, + ACTIONS(3433), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145223,18 +148683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2500), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [9984] = 6, + ACTIONS(811), 1, + anon_sym_EQ, + ACTIONS(849), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145250,6 +148707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(162), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145259,11 +148727,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9863] = 3, + ACTIONS(122), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10056] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 22, + ACTIONS(3481), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -145286,7 +148776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3455), 35, + ACTIONS(3483), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145322,24 +148812,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9929] = 9, - ACTIONS(227), 1, + [10122] = 9, + ACTIONS(160), 1, anon_sym_EQ_GT, - ACTIONS(893), 1, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(1817), 1, + ACTIONS(1823), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 2, + ACTIONS(3559), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3605), 3, + ACTIONS(3562), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145355,7 +148845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(162), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -145391,11 +148881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10007] = 3, + [10200] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3457), 22, + ACTIONS(3457), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3453), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -145418,15 +148912,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3459), 35, - sym__automatic_semicolon, + ACTIONS(3455), 32, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -145454,15 +148945,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10073] = 6, - ACTIONS(3438), 1, - anon_sym_EQ_GT, - ACTIONS(3532), 1, - anon_sym_EQ, + [10268] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3463), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3459), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3461), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145478,17 +149000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145498,39 +149009,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10145] = 7, - ACTIONS(888), 1, - anon_sym_COLON, - ACTIONS(3438), 1, + [10336] = 7, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(3532), 1, + ACTIONS(853), 1, anon_sym_EQ, + ACTIONS(855), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145546,7 +149035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 18, + ACTIONS(162), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145565,7 +149054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145587,15 +149076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10219] = 6, - ACTIONS(839), 1, - anon_sym_EQ, - ACTIONS(845), 1, + [10410] = 6, + ACTIONS(3442), 1, anon_sym_EQ_GT, + ACTIONS(3495), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145611,13 +149100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, + ACTIONS(3437), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -145631,7 +149120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145653,31 +149142,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10291] = 11, - ACTIONS(809), 1, - anon_sym_COLON, - ACTIONS(873), 1, + [10482] = 12, + ACTIONS(3526), 1, + anon_sym_LBRACK, + ACTIONS(3542), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3606), 1, anon_sym_EQ, - ACTIONS(879), 1, + ACTIONS(3608), 1, anon_sym_EQ_GT, - ACTIONS(1817), 1, - anon_sym_extends, - ACTIONS(3602), 1, - anon_sym_LBRACK, + STATE(3381), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3605), 2, + ACTIONS(3524), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3532), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3640), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(161), 14, + ACTIONS(3437), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -145688,7 +149180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145704,11 +149196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -145720,19 +149211,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10373] = 6, - ACTIONS(803), 1, - anon_sym_EQ, - ACTIONS(845), 1, + [10566] = 6, + ACTIONS(3442), 1, anon_sym_EQ_GT, + ACTIONS(3538), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145748,13 +149238,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, + ACTIONS(3437), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -145768,7 +149258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145790,25 +149280,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10445] = 8, - ACTIONS(221), 1, + [10638] = 11, + ACTIONS(817), 1, + anon_sym_COLON, + ACTIONS(839), 1, anon_sym_EQ, - ACTIONS(227), 1, + ACTIONS(849), 1, anon_sym_EQ_GT, - ACTIONS(723), 1, - anon_sym_QMARK, + ACTIONS(1823), 1, + anon_sym_extends, + ACTIONS(3559), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, + ACTIONS(3562), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3641), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(161), 15, + anon_sym_RBRACK, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -145820,7 +149315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145836,7 +149331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145846,9 +149341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -145858,24 +149351,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10521] = 9, - ACTIONS(937), 1, - anon_sym_EQ, - ACTIONS(943), 1, + [10720] = 7, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(1817), 1, - anon_sym_extends, + ACTIONS(853), 1, + anon_sym_EQ, + ACTIONS(872), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3605), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145891,11 +149377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(162), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -145907,17 +149396,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 18, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -145927,11 +149418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10599] = 3, + [10794] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 22, + ACTIONS(3449), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -145954,7 +149445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3475), 35, + ACTIONS(3451), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145990,37 +149481,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10665] = 14, - ACTIONS(3520), 1, + [10860] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3647), 15, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3524), 1, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3645), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(3526), 1, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [10926] = 7, + ACTIONS(855), 1, + anon_sym_COLON, + ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3495), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3528), 1, anon_sym_QMARK_DOT, - ACTIONS(3530), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3433), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11000] = 12, + ACTIONS(3526), 1, + anon_sym_LBRACK, + ACTIONS(3542), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3618), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3620), 1, anon_sym_EQ_GT, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, + STATE(3381), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 3, + ACTIONS(3524), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3489), 3, + ACTIONS(3532), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3433), 11, + ACTIONS(3437), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146030,7 +149649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146046,7 +149665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146064,15 +149683,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10753] = 6, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(3547), 1, - anon_sym_EQ_GT, + [11084] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(2502), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2500), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146088,17 +149737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146108,37 +149746,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10825] = 6, - ACTIONS(803), 1, + [11150] = 9, + ACTIONS(919), 1, anon_sym_EQ, - ACTIONS(879), 1, + ACTIONS(925), 1, anon_sym_EQ_GT, + ACTIONS(1823), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3559), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3562), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146154,15 +149779,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, + ACTIONS(162), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146174,19 +149795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + anon_sym_implements, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -146196,29 +149815,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10897] = 10, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(803), 1, - anon_sym_EQ, - ACTIONS(809), 1, + [11228] = 8, + ACTIONS(817), 1, anon_sym_COLON, - ACTIONS(3602), 1, - anon_sym_LBRACK, + ACTIONS(839), 1, + anon_sym_EQ, + ACTIONS(849), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3605), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1817), 3, + ACTIONS(912), 3, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(161), 14, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146230,7 +149845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146246,7 +149861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146256,7 +149871,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -146266,17 +149883,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10977] = 7, - ACTIONS(685), 1, - anon_sym_EQ_GT, - ACTIONS(851), 1, + [11304] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3459), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(888), 1, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3461), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11370] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3651), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3649), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [11436] = 6, + ACTIONS(839), 1, + anon_sym_EQ, + ACTIONS(849), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146292,14 +150033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, - sym__automatic_semicolon, + ACTIONS(162), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146333,15 +150075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11051] = 6, - ACTIONS(3438), 1, - anon_sym_EQ_GT, - ACTIONS(3530), 1, + [11508] = 5, + ACTIONS(3538), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146357,13 +150097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 19, + ACTIONS(3437), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -146377,7 +150118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146399,19 +150140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11123] = 8, - ACTIONS(3438), 1, + [11578] = 6, + ACTIONS(685), 1, anon_sym_EQ_GT, - ACTIONS(3532), 1, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(3644), 1, - anon_sym_in, - ACTIONS(3647), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146427,11 +150164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 18, + ACTIONS(162), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -146446,9 +150184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 20, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146467,26 +150206,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11199] = 10, - ACTIONS(879), 1, + [11650] = 10, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(912), 1, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(1819), 1, - anon_sym_QMARK, - ACTIONS(3602), 1, + ACTIONS(817), 1, + anon_sym_COLON, + ACTIONS(3559), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3605), 2, + ACTIONS(3562), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1817), 3, + ACTIONS(1823), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(161), 14, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -146501,7 +150240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146537,46 +150276,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11279] = 4, + [11730] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3445), 22, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3507), 15, + anon_sym_LBRACE, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3505), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3447), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [11796] = 6, + ACTIONS(3465), 1, + anon_sym_EQ, + ACTIONS(3473), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146592,6 +150363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146601,17 +150383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11347] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3471), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3449), 22, + ACTIONS(3433), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -146632,60 +150405,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3451), 32, - sym__ternary_qmark, - anon_sym_as, + [11868] = 14, + ACTIONS(3497), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, + ACTIONS(3499), 1, anon_sym_DOT, + ACTIONS(3501), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [11415] = 8, - ACTIONS(3578), 1, + ACTIONS(3503), 1, + anon_sym_LT, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(3584), 1, + ACTIONS(3573), 1, anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_QMARK, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3581), 3, + ACTIONS(3467), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3433), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3477), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146695,7 +150445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146711,35 +150461,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11491] = 3, + [11956] = 7, + ACTIONS(872), 1, + anon_sym_COLON, + ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3495), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 22, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3433), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -146760,18 +150546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3463), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [12030] = 6, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3538), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146787,6 +150570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146796,15 +150590,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11557] = 6, - ACTIONS(685), 1, + ACTIONS(3433), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12102] = 6, + ACTIONS(3473), 1, anon_sym_EQ_GT, - ACTIONS(851), 1, + ACTIONS(3538), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146820,15 +150636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, - sym__automatic_semicolon, + ACTIONS(3437), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146840,7 +150656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146862,25 +150678,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11629] = 8, - ACTIONS(809), 1, - anon_sym_COLON, - ACTIONS(873), 1, - anon_sym_EQ, - ACTIONS(879), 1, + [12174] = 10, + ACTIONS(849), 1, anon_sym_EQ_GT, + ACTIONS(909), 1, + anon_sym_EQ, + ACTIONS(1825), 1, + anon_sym_QMARK, + ACTIONS(3559), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(890), 3, + ACTIONS(3562), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1823), 3, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(161), 15, + anon_sym_extends, + ACTIONS(162), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146892,7 +150712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146908,7 +150728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146918,9 +150738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -146930,24 +150748,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11705] = 9, - ACTIONS(923), 1, - anon_sym_EQ, - ACTIONS(929), 1, - anon_sym_EQ_GT, - ACTIONS(3602), 1, - anon_sym_LBRACK, + [12254] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1817), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3605), 3, + ACTIONS(3453), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3455), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146963,14 +150802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146980,16 +150811,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + [12320] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3485), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -146999,44 +150838,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11783] = 12, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3485), 1, - anon_sym_EQ_GT, - ACTIONS(3502), 1, - anon_sym_extends, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_LT, - STATE(2915), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3504), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3510), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3433), 14, + ACTIONS(3487), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147052,53 +150865,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11867] = 12, - ACTIONS(3504), 1, - anon_sym_LBRACK, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_LT, - ACTIONS(3616), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [12386] = 12, + ACTIONS(3465), 1, anon_sym_EQ, - ACTIONS(3618), 1, + ACTIONS(3473), 1, anon_sym_EQ_GT, - STATE(2915), 1, + ACTIONS(3524), 1, + anon_sym_extends, + ACTIONS(3542), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + STATE(3381), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3510), 3, - anon_sym_GT, + ACTIONS(3526), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3532), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3433), 14, + ACTIONS(3437), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147109,7 +150911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147125,10 +150927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(3433), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -147143,39 +150946,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11951] = 6, - ACTIONS(3545), 1, - anon_sym_EQ, - ACTIONS(3547), 1, + [12470] = 9, + ACTIONS(905), 1, anon_sym_EQ_GT, + ACTIONS(945), 1, + anon_sym_EQ, + ACTIONS(3559), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 19, - sym__automatic_semicolon, + ACTIONS(1823), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3562), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -147187,37 +150979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12023] = 6, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3485), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147233,39 +150995,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -147275,34 +151014,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12095] = 12, - ACTIONS(3504), 1, - anon_sym_LBRACK, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_LT, - ACTIONS(3612), 1, + [12547] = 9, + ACTIONS(953), 1, anon_sym_EQ, - ACTIONS(3614), 1, + ACTIONS(959), 1, anon_sym_EQ_GT, - STATE(2915), 1, - sym_type_arguments, + ACTIONS(3559), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 2, + ACTIONS(1823), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3510), 3, + ACTIONS(3562), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3433), 14, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147313,7 +151047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147329,7 +151063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147344,14 +151078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12179] = 3, + [12624] = 5, + ACTIONS(3457), 1, + anon_sym_extends, + ACTIONS(3653), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 22, + ACTIONS(3453), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147374,16 +151113,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3467), 35, - sym__automatic_semicolon, + ACTIONS(3455), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -147410,19 +151146,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12245] = 8, - ACTIONS(685), 1, - anon_sym_EQ_GT, - ACTIONS(851), 1, - anon_sym_EQ, - ACTIONS(883), 1, - anon_sym_in, - ACTIONS(3649), 1, - anon_sym_of, + [12693] = 5, + ACTIONS(3463), 1, + anon_sym_extends, + ACTIONS(3655), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3459), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3461), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147438,16 +151201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147457,55 +151210,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12321] = 12, - ACTIONS(3504), 1, + [12762] = 12, + ACTIONS(3526), 1, anon_sym_LBRACK, - ACTIONS(3536), 1, + ACTIONS(3538), 1, + anon_sym_EQ, + ACTIONS(3542), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3620), 1, - anon_sym_EQ, - ACTIONS(3622), 1, + ACTIONS(3573), 1, anon_sym_EQ_GT, - STATE(2915), 1, + STATE(3381), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 2, + ACTIONS(3524), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3510), 3, + ACTIONS(3532), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3433), 14, + ACTIONS(3437), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147516,7 +151247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147532,7 +151263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, + ACTIONS(3433), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147550,88 +151281,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12405] = 6, - ACTIONS(873), 1, + [12845] = 7, + ACTIONS(935), 1, anon_sym_EQ, - ACTIONS(879), 1, + ACTIONS(941), 1, anon_sym_EQ_GT, + ACTIONS(3427), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12477] = 7, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3572), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3651), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3433), 15, + ACTIONS(162), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147639,12 +151303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147660,8 +151322,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147682,14 +151345,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12550] = 4, + anon_sym_instanceof, + anon_sym_satisfies, + [12918] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 2, + ACTIONS(3463), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3445), 22, + ACTIONS(3459), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147712,7 +151377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3447), 32, + ACTIONS(3461), 32, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147745,14 +151410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12617] = 4, + [12985] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 2, + ACTIONS(3457), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3449), 22, + ACTIONS(3453), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147775,7 +151440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3451), 32, + ACTIONS(3455), 32, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147808,39 +151473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12684] = 9, - ACTIONS(873), 1, + [13052] = 7, + ACTIONS(3495), 1, anon_sym_EQ, - ACTIONS(879), 1, - anon_sym_EQ_GT, - ACTIONS(1817), 1, - anon_sym_extends, + ACTIONS(3630), 1, + anon_sym_in, + ACTIONS(3633), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3605), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147856,17 +151499,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3437), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3433), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -147876,35 +151539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12761] = 7, - ACTIONS(3578), 1, + [13125] = 6, + ACTIONS(160), 1, + anon_sym_EQ_GT, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3581), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3433), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147920,7 +151563,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(162), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147942,15 +151604,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12834] = 6, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3588), 1, + [13196] = 7, + ACTIONS(935), 1, anon_sym_EQ, + ACTIONS(941), 1, + anon_sym_EQ_GT, + ACTIONS(3657), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(162), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147966,27 +151645,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -148007,15 +151668,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12905] = 6, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(893), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [13269] = 6, + ACTIONS(3551), 1, anon_sym_EQ, + ACTIONS(3553), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148031,7 +151694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, + ACTIONS(3437), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -148050,7 +151713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148072,19 +151735,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12976] = 7, - ACTIONS(3477), 1, + [13340] = 7, + ACTIONS(3465), 1, anon_sym_EQ, - ACTIONS(3485), 1, + ACTIONS(3473), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3651), 3, + ACTIONS(3659), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -148100,7 +151763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148116,7 +151779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148138,15 +151801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13049] = 6, - ACTIONS(937), 1, + [13413] = 6, + ACTIONS(919), 1, anon_sym_EQ, - ACTIONS(943), 1, + ACTIONS(925), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148162,7 +151825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, + ACTIONS(162), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -148203,44 +151866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13120] = 12, - ACTIONS(3504), 1, - anon_sym_LBRACK, - ACTIONS(3530), 1, + [13484] = 6, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_LT, - ACTIONS(3574), 1, + ACTIONS(3589), 1, anon_sym_EQ_GT, - STATE(2915), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3510), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3433), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148256,41 +151890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13203] = 9, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(899), 1, - anon_sym_EQ, - ACTIONS(904), 1, - anon_sym_COLON, - ACTIONS(908), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 15, + ACTIONS(3437), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -148304,23 +151908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + anon_sym_implements, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148342,27 +151931,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13280] = 10, - ACTIONS(3581), 1, - anon_sym_RBRACK, - ACTIONS(3593), 1, - anon_sym_COMMA, - ACTIONS(3614), 1, - anon_sym_EQ_GT, - ACTIONS(3654), 1, + [13555] = 9, + ACTIONS(839), 1, anon_sym_EQ, - ACTIONS(3657), 1, - anon_sym_in, - ACTIONS(3659), 1, - anon_sym_COLON, + ACTIONS(849), 1, + anon_sym_EQ_GT, + ACTIONS(1823), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3559), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3562), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148374,7 +151963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148390,18 +151979,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 20, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -148411,17 +151999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13359] = 7, - ACTIONS(3532), 1, + [13632] = 5, + ACTIONS(3495), 1, anon_sym_EQ, - ACTIONS(3644), 1, - anon_sym_in, - ACTIONS(3647), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148437,11 +152021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 18, + ACTIONS(3437), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -148456,9 +152041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 20, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148477,35 +152063,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13432] = 6, - ACTIONS(803), 1, + [13701] = 7, + ACTIONS(3575), 1, + anon_sym_QMARK, + ACTIONS(3577), 1, anon_sym_EQ, - ACTIONS(943), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, + ACTIONS(3580), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -148519,8 +152091,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 21, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148542,17 +152129,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13503] = 5, - ACTIONS(3471), 1, - anon_sym_extends, - ACTIONS(3661), 1, - anon_sym_QMARK, + [13774] = 6, + ACTIONS(160), 1, + anon_sym_EQ_GT, + ACTIONS(811), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3449), 22, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(162), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -148573,15 +152194,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3451), 32, + [13845] = 9, + ACTIONS(128), 1, + anon_sym_RBRACK, + ACTIONS(225), 1, + anon_sym_COMMA, + ACTIONS(896), 1, + anon_sym_EQ, + ACTIONS(901), 1, + anon_sym_COLON, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148597,28 +152240,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [13572] = 7, - ACTIONS(879), 1, - anon_sym_EQ_GT, - ACTIONS(912), 1, + ACTIONS(122), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13922] = 7, + ACTIONS(3465), 1, anon_sym_EQ, + ACTIONS(3583), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, + ACTIONS(3659), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(161), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -148634,7 +152290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148650,7 +152306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148672,19 +152328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13645] = 7, - ACTIONS(3485), 1, + [13995] = 7, + ACTIONS(849), 1, anon_sym_EQ_GT, - ACTIONS(3495), 1, + ACTIONS(909), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3581), 3, + ACTIONS(128), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(3433), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -148700,7 +152356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148716,7 +152372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148738,36 +152394,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13718] = 5, - ACTIONS(3532), 1, + [14068] = 7, + ACTIONS(3473), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3580), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3437), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148780,7 +152422,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148802,21 +152460,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13787] = 7, - ACTIONS(923), 1, - anon_sym_EQ, - ACTIONS(929), 1, + [14141] = 10, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3580), 1, + anon_sym_RBRACK, + ACTIONS(3620), 1, anon_sym_EQ_GT, - ACTIONS(3663), 1, - sym_identifier, + ACTIONS(3662), 1, + anon_sym_EQ, + ACTIONS(3665), 1, + anon_sym_in, + ACTIONS(3667), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(3437), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148824,57 +152487,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_satisfies, - [13860] = 5, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148890,30 +152508,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(3433), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148932,15 +152529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13929] = 6, - ACTIONS(3530), 1, + [14220] = 6, + ACTIONS(3587), 1, anon_sym_EQ, - ACTIONS(3584), 1, + ACTIONS(3589), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148956,13 +152553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 18, + ACTIONS(3437), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148975,7 +152571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + anon_sym_implements, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148997,81 +152594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14000] = 9, - ACTIONS(953), 1, - anon_sym_EQ, - ACTIONS(959), 1, - anon_sym_EQ_GT, - ACTIONS(3602), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1817), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3605), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14077] = 5, - ACTIONS(3545), 1, + [14291] = 5, + ACTIONS(3513), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149087,7 +152616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 19, + ACTIONS(3437), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149107,39 +152636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14146] = 5, - ACTIONS(3469), 1, - anon_sym_extends, - ACTIONS(3665), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3445), 22, + ACTIONS(3433), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -149160,182 +152658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3447), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [14215] = 9, - ACTIONS(908), 1, - anon_sym_EQ_GT, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(3602), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1817), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3605), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14292] = 7, - ACTIONS(923), 1, + [14360] = 6, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(929), 1, - anon_sym_EQ_GT, - ACTIONS(3427), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [14365] = 6, - ACTIONS(227), 1, + ACTIONS(3553), 1, anon_sym_EQ_GT, - ACTIONS(803), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149351,7 +152682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, + ACTIONS(3437), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -149370,7 +152701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149392,28 +152723,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14436] = 9, - ACTIONS(967), 1, - anon_sym_EQ, - ACTIONS(973), 1, + [14431] = 9, + ACTIONS(965), 1, anon_sym_EQ_GT, - ACTIONS(3602), 1, + ACTIONS(971), 1, + anon_sym_EQ, + ACTIONS(3559), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1817), 2, + ACTIONS(1823), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3605), 3, + ACTIONS(3562), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149425,7 +152756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149460,15 +152791,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14513] = 6, - ACTIONS(3549), 1, + [14508] = 5, + ACTIONS(3465), 1, anon_sym_EQ, - ACTIONS(3551), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149484,13 +152813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 18, + ACTIONS(3437), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149502,8 +152833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149525,15 +152855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14584] = 6, - ACTIONS(3530), 1, + [14577] = 6, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(3551), 1, + ACTIONS(925), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149549,7 +152879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 18, + ACTIONS(162), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -149568,7 +152898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(3429), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149590,15 +152920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14655] = 6, - ACTIONS(803), 1, + [14648] = 8, + ACTIONS(3618), 1, anon_sym_EQ, - ACTIONS(929), 1, + ACTIONS(3620), 1, anon_sym_EQ_GT, + ACTIONS(3665), 1, + anon_sym_in, + ACTIONS(3669), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149614,13 +152948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, + ACTIONS(3437), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149632,10 +152965,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3433), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149654,83 +152986,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14725] = 8, - ACTIONS(3581), 1, - anon_sym_RBRACK, - ACTIONS(3593), 1, - anon_sym_COMMA, - ACTIONS(3614), 1, - anon_sym_EQ_GT, - ACTIONS(3654), 1, - anon_sym_EQ, + [14722] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_abstract, + ACTIONS(3673), 1, + anon_sym_export, + ACTIONS(3675), 1, + anon_sym_STAR, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3683), 1, + anon_sym_async, + ACTIONS(3685), 1, + anon_sym_new, + ACTIONS(3689), 1, + anon_sym_static, + ACTIONS(3691), 1, + anon_sym_readonly, + ACTIONS(3697), 1, + anon_sym_override, + STATE(3132), 1, + sym_decorator, + STATE(3149), 1, + sym_accessibility_modifier, + STATE(3164), 1, + sym_override_modifier, + STATE(3722), 1, + sym_formal_parameters, + STATE(5030), 1, + sym__call_signature, + STATE(5355), 1, + aux_sym_export_statement_repeat1, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3677), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3679), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3687), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3693), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3695), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3537), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4392), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3671), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14842] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3262), 1, + anon_sym_abstract, + ACTIONS(3673), 1, + anon_sym_export, + ACTIONS(3675), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3683), 1, + anon_sym_async, + ACTIONS(3685), 1, + anon_sym_new, + ACTIONS(3689), 1, + anon_sym_static, + ACTIONS(3691), 1, + anon_sym_readonly, + ACTIONS(3697), 1, + anon_sym_override, + STATE(3132), 1, + sym_decorator, + STATE(3149), 1, + sym_accessibility_modifier, + STATE(3164), 1, + sym_override_modifier, + STATE(3722), 1, + sym_formal_parameters, + STATE(5030), 1, + sym__call_signature, + STATE(5355), 1, + aux_sym_export_statement_repeat1, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14799] = 7, - ACTIONS(904), 1, - anon_sym_COLON, - ACTIONS(908), 1, - anon_sym_EQ_GT, - ACTIONS(915), 1, + ACTIONS(3687), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3693), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3699), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3701), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3695), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3537), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4344), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3671), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14962] = 6, + ACTIONS(3555), 1, anon_sym_EQ, + ACTIONS(3557), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149746,12 +153188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3437), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149763,7 +153206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149785,27 +153228,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14871] = 9, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(803), 1, + [15032] = 6, + ACTIONS(3517), 1, anon_sym_EQ, - ACTIONS(3602), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1817), 2, + ACTIONS(3580), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3605), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 14, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149817,7 +153254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149833,73 +153270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14947] = 8, - ACTIONS(3612), 1, - anon_sym_EQ, - ACTIONS(3614), 1, - anon_sym_EQ_GT, - ACTIONS(3657), 1, - anon_sym_in, - ACTIONS(3659), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3429), 20, - anon_sym_STAR, - anon_sym_BANG, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149918,83 +153292,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15021] = 31, + [15102] = 31, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3252), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3276), 2, + ACTIONS(3366), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3368), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3858), 6, + STATE(4268), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150007,172 +153381,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15141] = 31, + [15222] = 31, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3679), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3685), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3691), 2, + ACTIONS(3240), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3693), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3073), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3721), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3667), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [15261] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3669), 1, - anon_sym_export, - ACTIONS(3671), 1, - anon_sym_STAR, - ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3675), 1, - anon_sym_async, - ACTIONS(3677), 1, - anon_sym_new, - ACTIONS(3681), 1, - anon_sym_static, - ACTIONS(3683), 1, - anon_sym_readonly, - ACTIONS(3689), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2749), 1, - sym_accessibility_modifier, - STATE(2768), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4069), 1, - sym__call_signature, - STATE(4358), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3264), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3695), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3697), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3783), 6, + STATE(4398), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150185,15 +153470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15381] = 6, - ACTIONS(923), 1, + [15342] = 6, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(929), 1, + ACTIONS(941), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150209,7 +153494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, + ACTIONS(162), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150249,103 +153534,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15451] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3669), 1, - anon_sym_export, - ACTIONS(3671), 1, - anon_sym_STAR, - ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3675), 1, - anon_sym_async, - ACTIONS(3677), 1, - anon_sym_new, - ACTIONS(3681), 1, - anon_sym_static, - ACTIONS(3683), 1, - anon_sym_readonly, - ACTIONS(3689), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2749), 1, - sym_accessibility_modifier, - STATE(2768), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4069), 1, - sym__call_signature, - STATE(4358), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_type_parameters, + [15412] = 8, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3580), 1, + anon_sym_RBRACK, + ACTIONS(3620), 1, + anon_sym_EQ_GT, + ACTIONS(3662), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3437), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3685), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3699), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3701), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3073), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3742), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3667), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [15571] = 4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15486] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 2, + ACTIONS(3463), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3445), 22, + ACTIONS(3459), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -150368,7 +153630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3447), 31, + ACTIONS(3461), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150400,14 +153662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15637] = 4, + [15552] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 2, + ACTIONS(3457), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3449), 22, + ACTIONS(3453), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -150430,7 +153692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3451), 31, + ACTIONS(3455), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150462,15 +153724,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15703] = 6, - ACTIONS(3608), 1, - anon_sym_EQ, - ACTIONS(3610), 1, + [15618] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_abstract, + ACTIONS(3673), 1, + anon_sym_export, + ACTIONS(3675), 1, + anon_sym_STAR, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3683), 1, + anon_sym_async, + ACTIONS(3685), 1, + anon_sym_new, + ACTIONS(3689), 1, + anon_sym_static, + ACTIONS(3691), 1, + anon_sym_readonly, + ACTIONS(3697), 1, + anon_sym_override, + STATE(3132), 1, + sym_decorator, + STATE(3149), 1, + sym_accessibility_modifier, + STATE(3164), 1, + sym_override_modifier, + STATE(3722), 1, + sym_formal_parameters, + STATE(5030), 1, + sym__call_signature, + STATE(5355), 1, + aux_sym_export_statement_repeat1, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3687), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3693), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3703), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3705), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3695), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3537), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4360), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3671), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [15738] = 9, + ACTIONS(227), 1, anon_sym_EQ_GT, + ACTIONS(811), 1, + anon_sym_EQ, + ACTIONS(3559), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(1823), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3562), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(162), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150486,37 +153861,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -150526,33 +153880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15773] = 6, - ACTIONS(3495), 1, + [15814] = 8, + ACTIONS(3618), 1, anon_sym_EQ, + ACTIONS(3620), 1, + anon_sym_EQ_GT, + ACTIONS(3665), 1, + anon_sym_in, + ACTIONS(3667), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3581), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3433), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150568,10 +153908,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3437), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3433), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -150590,17 +153946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15843] = 7, - ACTIONS(908), 1, - anon_sym_EQ_GT, - ACTIONS(915), 1, + [15888] = 5, + ACTIONS(3551), 1, anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150616,12 +153968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3437), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -150633,7 +153987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150655,124 +154009,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15915] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3669), 1, - anon_sym_export, - ACTIONS(3671), 1, - anon_sym_STAR, - ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3675), 1, - anon_sym_async, - ACTIONS(3677), 1, - anon_sym_new, - ACTIONS(3681), 1, - anon_sym_static, - ACTIONS(3683), 1, - anon_sym_readonly, - ACTIONS(3689), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2749), 1, - sym_accessibility_modifier, - STATE(2768), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4069), 1, - sym__call_signature, - STATE(4358), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3679), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3685), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3703), 2, + [15956] = 8, + ACTIONS(128), 1, + anon_sym_RBRACK, + ACTIONS(225), 1, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3705), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3073), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3861), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3667), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [16035] = 5, - ACTIONS(3588), 1, + ACTIONS(896), 1, anon_sym_EQ, + ACTIONS(905), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 18, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150785,7 +154037,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150807,13 +154075,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16103] = 5, - ACTIONS(3549), 1, + [16030] = 6, + ACTIONS(935), 1, anon_sym_EQ, + ACTIONS(941), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150829,12 +154099,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 18, + ACTIONS(162), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150847,8 +154117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3429), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150870,83 +154139,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16171] = 31, + [16100] = 31, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3382), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3384), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3687), 3, + ACTIONS(3707), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3856), 6, + STATE(4454), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -150959,19 +154228,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16291] = 8, - ACTIONS(3612), 1, - anon_sym_EQ, - ACTIONS(3614), 1, - anon_sym_EQ_GT, - ACTIONS(3657), 1, - anon_sym_in, - ACTIONS(3707), 1, + [16220] = 7, + ACTIONS(901), 1, anon_sym_COLON, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(945), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150987,7 +154254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, + ACTIONS(162), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151004,71 +154271,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16365] = 8, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(899), 1, - anon_sym_EQ, - ACTIONS(908), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, @@ -151091,15 +154293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16439] = 6, - ACTIONS(3530), 1, + [16292] = 6, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(3610), 1, + ACTIONS(3557), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151115,7 +154317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 17, + ACTIONS(3437), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151133,7 +154335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151155,33 +154357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16509] = 7, - ACTIONS(3581), 1, - anon_sym_RBRACK, - ACTIONS(3593), 1, - anon_sym_COMMA, - ACTIONS(3654), 1, + [16362] = 7, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(945), 1, anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151197,7 +154383,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(162), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151219,15 +154422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16580] = 6, - ACTIONS(3530), 1, + [16434] = 5, + ACTIONS(3587), 1, anon_sym_EQ, - ACTIONS(3622), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151243,11 +154444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, + ACTIONS(3437), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151260,7 +154462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + anon_sym_implements, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151282,15 +154485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16649] = 6, - ACTIONS(953), 1, + [16502] = 6, + ACTIONS(811), 1, anon_sym_EQ, ACTIONS(959), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151306,11 +154509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(162), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151345,15 +154548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16718] = 6, - ACTIONS(908), 1, - anon_sym_EQ_GT, - ACTIONS(915), 1, + [16571] = 6, + ACTIONS(953), 1, anon_sym_EQ, + ACTIONS(959), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151369,12 +154572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(162), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151408,15 +154611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16787] = 6, - ACTIONS(803), 1, + [16640] = 6, + ACTIONS(811), 1, anon_sym_EQ, - ACTIONS(959), 1, + ACTIONS(905), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151432,12 +154635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(162), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151471,15 +154674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16856] = 6, - ACTIONS(803), 1, - anon_sym_EQ, - ACTIONS(908), 1, + [16709] = 6, + ACTIONS(965), 1, anon_sym_EQ_GT, + ACTIONS(971), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151495,12 +154698,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(162), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151534,15 +154737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16925] = 6, - ACTIONS(967), 1, + [16778] = 6, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(973), 1, + ACTIONS(3620), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151558,12 +154761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3437), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151575,7 +154778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151597,15 +154800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16994] = 6, - ACTIONS(803), 1, + [16847] = 6, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(973), 1, + ACTIONS(3612), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151621,11 +154824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3437), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151638,7 +154841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151660,34 +154863,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17063] = 5, - ACTIONS(3608), 1, + [16916] = 7, + ACTIONS(227), 1, + anon_sym_EQ_GT, + ACTIONS(811), 1, anon_sym_EQ, + ACTIONS(817), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 17, - sym__automatic_semicolon, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151700,7 +154889,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151722,19 +154927,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17130] = 8, - ACTIONS(3530), 1, + [16987] = 8, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3573), 1, anon_sym_EQ_GT, - ACTIONS(3644), 1, + ACTIONS(3630), 1, anon_sym_in, - ACTIONS(3647), 1, + ACTIONS(3633), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151750,7 +154955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151766,7 +154971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 20, + ACTIONS(3433), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -151787,33 +154992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17203] = 7, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(803), 1, + [17060] = 6, + ACTIONS(3618), 1, anon_sym_EQ, - ACTIONS(809), 1, - anon_sym_COLON, + ACTIONS(3620), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151829,7 +155016,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3437), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151851,22 +155055,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17274] = 8, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(803), 1, + [17129] = 6, + ACTIONS(3610), 1, anon_sym_EQ, - ACTIONS(883), 1, - anon_sym_in, - ACTIONS(3649), 1, - anon_sym_of, + ACTIONS(3612), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151879,7 +155096,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3433), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17198] = 6, + ACTIONS(811), 1, + anon_sym_EQ, + ACTIONS(965), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151895,9 +155142,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 20, + ACTIONS(162), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151916,15 +155181,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17347] = 6, - ACTIONS(3616), 1, + [17267] = 5, + ACTIONS(3555), 1, anon_sym_EQ, - ACTIONS(3618), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151940,11 +155203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, + ACTIONS(3437), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151957,7 +155221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151979,15 +155243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17416] = 6, - ACTIONS(3612), 1, + [17334] = 6, + ACTIONS(3606), 1, anon_sym_EQ, - ACTIONS(3614), 1, + ACTIONS(3608), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152003,12 +155267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, + ACTIONS(3437), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -152020,7 +155284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152042,15 +155306,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17485] = 6, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(3618), 1, + [17403] = 6, + ACTIONS(905), 1, anon_sym_EQ_GT, + ACTIONS(945), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152066,12 +155330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, + ACTIONS(162), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -152083,7 +155347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152105,15 +155369,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17554] = 6, - ACTIONS(3530), 1, + [17472] = 7, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3580), 1, + anon_sym_RBRACK, + ACTIONS(3662), 1, anon_sym_EQ, - ACTIONS(3614), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3437), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152129,12 +155411,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, + ACTIONS(3433), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17543] = 8, + ACTIONS(227), 1, + anon_sym_EQ_GT, + ACTIONS(811), 1, + anon_sym_EQ, + ACTIONS(857), 1, + anon_sym_in, + ACTIONS(3635), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -152146,10 +155461,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152168,15 +155498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17623] = 6, - ACTIONS(3620), 1, + [17616] = 6, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(3622), 1, + ACTIONS(3608), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152192,7 +155522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, + ACTIONS(3437), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152209,7 +155539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152231,80 +155561,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17692] = 30, + [17685] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3709), 2, + ACTIONS(3711), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -152317,142 +155647,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17808] = 6, - ACTIONS(3574), 1, - anon_sym_EQ_GT, - ACTIONS(3711), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3433), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17876] = 30, + [17801] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, ACTIONS(3713), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -152465,31 +155733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17992] = 6, - ACTIONS(3574), 1, - anon_sym_EQ_GT, - ACTIONS(3715), 1, + [17917] = 5, + ACTIONS(3606), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152505,7 +155755,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3437), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152527,15 +155794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18060] = 6, - ACTIONS(159), 1, + [17983] = 6, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(1039), 1, + ACTIONS(811), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152551,7 +155818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152589,15 +155856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18128] = 6, - ACTIONS(3574), 1, - anon_sym_EQ_GT, - ACTIONS(3717), 1, + [18051] = 6, + ACTIONS(3538), 1, anon_sym_EQ, + ACTIONS(3573), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152613,7 +155880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152629,7 +155896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152651,101 +155918,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18196] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3669), 1, - anon_sym_export, - ACTIONS(3671), 1, - anon_sym_STAR, - ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3675), 1, - anon_sym_async, - ACTIONS(3677), 1, - anon_sym_new, - ACTIONS(3681), 1, - anon_sym_static, - ACTIONS(3683), 1, - anon_sym_readonly, - ACTIONS(3689), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2749), 1, - sym_accessibility_modifier, - STATE(2768), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4069), 1, - sym__call_signature, - STATE(4358), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_type_parameters, + [18119] = 5, + ACTIONS(3618), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3433), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3685), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3719), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3073), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3995), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3667), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18312] = 6, - ACTIONS(159), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18185] = 6, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(1035), 1, + ACTIONS(985), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152761,7 +156003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152799,80 +156041,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18380] = 30, + [18253] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3721), 2, + ACTIONS(3715), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -152885,15 +156127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18496] = 6, - ACTIONS(159), 1, + [18369] = 6, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(1041), 1, + ACTIONS(979), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152909,7 +156151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152947,101 +156189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18564] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3669), 1, - anon_sym_export, - ACTIONS(3671), 1, - anon_sym_STAR, - ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3675), 1, - anon_sym_async, - ACTIONS(3677), 1, - anon_sym_new, - ACTIONS(3681), 1, - anon_sym_static, - ACTIONS(3683), 1, - anon_sym_readonly, - ACTIONS(3689), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2749), 1, - sym_accessibility_modifier, - STATE(2768), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4069), 1, - sym__call_signature, - STATE(4358), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3679), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3685), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3723), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3073), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3995), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3667), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18680] = 6, - ACTIONS(159), 1, + [18437] = 6, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(1037), 1, + ACTIONS(997), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153057,7 +156213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153095,15 +156251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18748] = 6, - ACTIONS(159), 1, + [18505] = 6, + ACTIONS(3573), 1, anon_sym_EQ_GT, - ACTIONS(979), 1, + ACTIONS(3717), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153119,7 +156275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153135,7 +156291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153157,31 +156313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18816] = 6, - ACTIONS(3574), 1, - anon_sym_EQ_GT, - ACTIONS(3725), 1, + [18573] = 5, + ACTIONS(3610), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153197,7 +156335,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3437), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153219,15 +156374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18884] = 6, - ACTIONS(3574), 1, + [18639] = 6, + ACTIONS(3573), 1, anon_sym_EQ_GT, - ACTIONS(3727), 1, + ACTIONS(3719), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153243,7 +156398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153259,7 +156414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153281,80 +156436,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18952] = 30, + [18707] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 2, + ACTIONS(3721), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153367,142 +156522,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19068] = 6, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(1045), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19136] = 30, + [18823] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3731), 2, + ACTIONS(3723), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153515,15 +156608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19252] = 6, - ACTIONS(3530), 1, + [18939] = 6, + ACTIONS(227), 1, + anon_sym_EQ_GT, + ACTIONS(995), 1, anon_sym_EQ, - ACTIONS(3572), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153539,7 +156632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153555,7 +156648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153577,166 +156670,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19320] = 30, + [19007] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, - anon_sym_export, - ACTIONS(3671), 1, - anon_sym_STAR, ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3675), 1, - anon_sym_async, - ACTIONS(3677), 1, - anon_sym_new, - ACTIONS(3681), 1, - anon_sym_static, - ACTIONS(3683), 1, - anon_sym_readonly, - ACTIONS(3689), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2749), 1, - sym_accessibility_modifier, - STATE(2768), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4069), 1, - sym__call_signature, - STATE(4358), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3679), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3685), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3733), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3073), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3995), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3667), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [19436] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3735), 2, + ACTIONS(3725), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153749,15 +156756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19552] = 6, - ACTIONS(159), 1, + [19123] = 6, + ACTIONS(3573), 1, anon_sym_EQ_GT, - ACTIONS(1047), 1, + ACTIONS(3727), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153773,7 +156780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153789,7 +156796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153811,143 +156818,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19620] = 7, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(3644), 1, - anon_sym_in, - ACTIONS(3647), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3433), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19690] = 30, + [19191] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3737), 2, + ACTIONS(3729), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153960,80 +156904,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19806] = 30, + [19307] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3739), 2, + ACTIONS(3731), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -154046,80 +156990,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19922] = 30, + [19423] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3741), 2, + ACTIONS(3733), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -154132,15 +157076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20038] = 6, - ACTIONS(159), 1, + [19539] = 6, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(1043), 1, + ACTIONS(987), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154156,7 +157100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154194,15 +157138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20106] = 6, - ACTIONS(159), 1, + [19607] = 6, + ACTIONS(3573), 1, anon_sym_EQ_GT, - ACTIONS(981), 1, + ACTIONS(3735), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154218,7 +157162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154234,7 +157178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154256,15 +157200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20174] = 6, - ACTIONS(3574), 1, + [19675] = 6, + ACTIONS(3573), 1, anon_sym_EQ_GT, - ACTIONS(3743), 1, + ACTIONS(3737), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154280,7 +157224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154296,7 +157240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154318,15 +157262,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20242] = 6, - ACTIONS(3574), 1, + [19743] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_abstract, + ACTIONS(3673), 1, + anon_sym_export, + ACTIONS(3675), 1, + anon_sym_STAR, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3683), 1, + anon_sym_async, + ACTIONS(3685), 1, + anon_sym_new, + ACTIONS(3689), 1, + anon_sym_static, + ACTIONS(3691), 1, + anon_sym_readonly, + ACTIONS(3697), 1, + anon_sym_override, + STATE(3132), 1, + sym_decorator, + STATE(3149), 1, + sym_accessibility_modifier, + STATE(3164), 1, + sym_override_modifier, + STATE(3722), 1, + sym_formal_parameters, + STATE(5030), 1, + sym__call_signature, + STATE(5355), 1, + aux_sym_export_statement_repeat1, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3687), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3693), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3739), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3695), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3537), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4963), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3671), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19859] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_abstract, + ACTIONS(3673), 1, + anon_sym_export, + ACTIONS(3675), 1, + anon_sym_STAR, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3683), 1, + anon_sym_async, + ACTIONS(3685), 1, + anon_sym_new, + ACTIONS(3689), 1, + anon_sym_static, + ACTIONS(3691), 1, + anon_sym_readonly, + ACTIONS(3697), 1, + anon_sym_override, + STATE(3132), 1, + sym_decorator, + STATE(3149), 1, + sym_accessibility_modifier, + STATE(3164), 1, + sym_override_modifier, + STATE(3722), 1, + sym_formal_parameters, + STATE(5030), 1, + sym__call_signature, + STATE(5355), 1, + aux_sym_export_statement_repeat1, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3687), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3693), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3741), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3695), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3537), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4963), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3671), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19975] = 6, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(3745), 1, + ACTIONS(983), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154342,7 +157458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154358,7 +157474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154380,15 +157496,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20310] = 6, - ACTIONS(3574), 1, + [20043] = 6, + ACTIONS(3573), 1, anon_sym_EQ_GT, - ACTIONS(3747), 1, + ACTIONS(3743), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154404,7 +157520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154420,7 +157536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154442,15 +157558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20378] = 6, - ACTIONS(3574), 1, + [20111] = 6, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(3749), 1, + ACTIONS(981), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154466,7 +157582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154482,7 +157598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154504,101 +157620,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20446] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3669), 1, - anon_sym_export, - ACTIONS(3671), 1, - anon_sym_STAR, - ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3675), 1, - anon_sym_async, - ACTIONS(3677), 1, - anon_sym_new, - ACTIONS(3681), 1, - anon_sym_static, - ACTIONS(3683), 1, - anon_sym_readonly, - ACTIONS(3689), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2749), 1, - sym_accessibility_modifier, - STATE(2768), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4069), 1, - sym__call_signature, - STATE(4358), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3679), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3685), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3751), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3073), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3995), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3667), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [20562] = 6, - ACTIONS(3574), 1, - anon_sym_EQ_GT, - ACTIONS(3753), 1, + [20179] = 7, + ACTIONS(3538), 1, anon_sym_EQ, + ACTIONS(3630), 1, + anon_sym_in, + ACTIONS(3633), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154614,7 +157646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154630,10 +157662,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154652,15 +157683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20630] = 6, - ACTIONS(159), 1, + [20249] = 6, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(803), 1, + ACTIONS(993), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154676,7 +157707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154714,141 +157745,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20698] = 5, - ACTIONS(3616), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3429), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20764] = 30, + [20317] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -154861,76 +157831,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20880] = 5, - ACTIONS(3612), 1, - anon_sym_EQ, + [20433] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_abstract, + ACTIONS(3673), 1, + anon_sym_export, + ACTIONS(3675), 1, + anon_sym_STAR, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3683), 1, + anon_sym_async, + ACTIONS(3685), 1, + anon_sym_new, + ACTIONS(3689), 1, + anon_sym_static, + ACTIONS(3691), 1, + anon_sym_readonly, + ACTIONS(3697), 1, + anon_sym_override, + STATE(3132), 1, + sym_decorator, + STATE(3149), 1, + sym_accessibility_modifier, + STATE(3164), 1, + sym_override_modifier, + STATE(3722), 1, + sym_formal_parameters, + STATE(5030), 1, + sym__call_signature, + STATE(5355), 1, + aux_sym_export_statement_repeat1, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3429), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20946] = 6, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3687), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3693), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3747), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3695), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3537), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4963), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3671), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20549] = 6, + ACTIONS(3573), 1, anon_sym_EQ_GT, + ACTIONS(3749), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154946,51 +157941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [21014] = 5, - ACTIONS(3620), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155006,24 +157957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3433), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155045,166 +157979,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21080] = 30, + [20617] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, - anon_sym_export, - ACTIONS(3671), 1, - anon_sym_STAR, ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3675), 1, - anon_sym_async, - ACTIONS(3677), 1, - anon_sym_new, - ACTIONS(3681), 1, - anon_sym_static, - ACTIONS(3683), 1, - anon_sym_readonly, - ACTIONS(3689), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2749), 1, - sym_accessibility_modifier, - STATE(2768), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4069), 1, - sym__call_signature, - STATE(4358), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3679), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3685), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3757), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3073), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3995), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3667), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21196] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3669), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3759), 2, + ACTIONS(3751), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155217,80 +158065,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21312] = 30, + [20733] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3761), 2, + ACTIONS(3753), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155303,15 +158151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21428] = 6, - ACTIONS(159), 1, + [20849] = 6, + ACTIONS(3573), 1, anon_sym_EQ_GT, - ACTIONS(1049), 1, + ACTIONS(3755), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155327,7 +158175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155343,7 +158191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155365,80 +158213,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21496] = 30, + [20917] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3763), 2, + ACTIONS(3757), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155451,13 +158299,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21612] = 5, - ACTIONS(3717), 1, + [21033] = 6, + ACTIONS(3538), 1, anon_sym_EQ, + ACTIONS(3583), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155473,7 +158323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155489,7 +158339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155511,13 +158361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21677] = 5, - ACTIONS(3753), 1, + [21101] = 6, + ACTIONS(3573), 1, + anon_sym_EQ_GT, + ACTIONS(3759), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155533,7 +158385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155549,7 +158401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155571,13 +158423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21742] = 5, - ACTIONS(3747), 1, + [21169] = 6, + ACTIONS(227), 1, + anon_sym_EQ_GT, + ACTIONS(989), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155593,7 +158447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155609,7 +158463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155631,13 +158485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21807] = 5, - ACTIONS(3715), 1, + [21237] = 6, + ACTIONS(3573), 1, + anon_sym_EQ_GT, + ACTIONS(3761), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155653,7 +158509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155669,7 +158525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155691,13 +158547,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21872] = 5, - ACTIONS(3745), 1, + [21305] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_abstract, + ACTIONS(3673), 1, + anon_sym_export, + ACTIONS(3675), 1, + anon_sym_STAR, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3683), 1, + anon_sym_async, + ACTIONS(3685), 1, + anon_sym_new, + ACTIONS(3689), 1, + anon_sym_static, + ACTIONS(3691), 1, + anon_sym_readonly, + ACTIONS(3697), 1, + anon_sym_override, + STATE(3132), 1, + sym_decorator, + STATE(3149), 1, + sym_accessibility_modifier, + STATE(3164), 1, + sym_override_modifier, + STATE(3722), 1, + sym_formal_parameters, + STATE(5030), 1, + sym__call_signature, + STATE(5355), 1, + aux_sym_export_statement_repeat1, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3687), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3693), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3763), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3695), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3537), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4963), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3671), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21421] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_abstract, + ACTIONS(3673), 1, + anon_sym_export, + ACTIONS(3675), 1, + anon_sym_STAR, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3683), 1, + anon_sym_async, + ACTIONS(3685), 1, + anon_sym_new, + ACTIONS(3689), 1, + anon_sym_static, + ACTIONS(3691), 1, + anon_sym_readonly, + ACTIONS(3697), 1, + anon_sym_override, + STATE(3132), 1, + sym_decorator, + STATE(3149), 1, + sym_accessibility_modifier, + STATE(3164), 1, + sym_override_modifier, + STATE(3722), 1, + sym_formal_parameters, + STATE(5030), 1, + sym__call_signature, + STATE(5355), 1, + aux_sym_export_statement_repeat1, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3687), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3693), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3765), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3695), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3537), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4963), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3671), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21537] = 6, + ACTIONS(227), 1, + anon_sym_EQ_GT, + ACTIONS(991), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(162), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155713,7 +158743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155729,7 +158759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155751,13 +158781,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21937] = 5, - ACTIONS(3711), 1, + [21605] = 28, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(233), 1, + anon_sym_STAR, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(251), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(3769), 1, + anon_sym_RBRACE, + ACTIONS(3771), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_async, + ACTIONS(3777), 1, + anon_sym_static, + ACTIONS(3779), 1, + anon_sym_readonly, + ACTIONS(3785), 1, + anon_sym_override, + STATE(2798), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + STATE(3147), 1, + sym_accessibility_modifier, + STATE(3167), 1, + sym_override_modifier, + STATE(5455), 1, + aux_sym_object_pattern_repeat1, + STATE(6012), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3775), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3781), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3783), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4039), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5451), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6014), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7173), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3767), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21716] = 5, + ACTIONS(3737), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155773,7 +158886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155789,7 +158902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155811,13 +158924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22002] = 5, - ACTIONS(3749), 1, + [21781] = 5, + ACTIONS(3761), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155833,7 +158946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155849,7 +158962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155871,13 +158984,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22067] = 5, - ACTIONS(3727), 1, + [21846] = 28, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(233), 1, + anon_sym_STAR, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(251), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(3771), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + anon_sym_RBRACE, + ACTIONS(3791), 1, + anon_sym_async, + ACTIONS(3793), 1, + anon_sym_static, + ACTIONS(3795), 1, + anon_sym_readonly, + ACTIONS(3801), 1, + anon_sym_override, + STATE(2798), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + STATE(3147), 1, + sym_accessibility_modifier, + STATE(3167), 1, + sym_override_modifier, + STATE(5455), 1, + aux_sym_object_pattern_repeat1, + STATE(6012), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3775), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3797), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3799), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4039), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5451), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6014), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7173), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3787), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21957] = 28, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(233), 1, + anon_sym_STAR, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(251), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(3771), 1, + anon_sym_LBRACK, + ACTIONS(3805), 1, + anon_sym_RBRACE, + ACTIONS(3807), 1, + anon_sym_async, + ACTIONS(3809), 1, + anon_sym_static, + ACTIONS(3811), 1, + anon_sym_readonly, + ACTIONS(3817), 1, + anon_sym_override, + STATE(2798), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + STATE(3147), 1, + sym_accessibility_modifier, + STATE(3167), 1, + sym_override_modifier, + STATE(5454), 1, + aux_sym_object_repeat1, + STATE(5455), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3775), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3813), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3815), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4039), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5451), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5452), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7173), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3803), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22068] = 5, + ACTIONS(3743), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155893,7 +159172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155909,7 +159188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155931,13 +159210,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22132] = 5, - ACTIONS(3743), 1, + [22133] = 5, + ACTIONS(3719), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155953,7 +159232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155969,7 +159248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155991,13 +159270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22197] = 5, - ACTIONS(3725), 1, + [22198] = 5, + ACTIONS(3735), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3433), 15, + ACTIONS(3437), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156013,7 +159292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3440), 15, + ACTIONS(3444), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156029,7 +159308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3429), 21, + ACTIONS(3433), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156051,80 +159330,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22262] = 29, + [22263] = 28, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(233), 1, + anon_sym_STAR, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(251), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3669), 1, - anon_sym_export, - ACTIONS(3671), 1, - anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(3771), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3821), 1, + anon_sym_RBRACE, + ACTIONS(3823), 1, anon_sym_async, - ACTIONS(3677), 1, - anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3825), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3827), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3833), 1, anon_sym_override, - STATE(1267), 1, + STATE(2798), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3147), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3167), 1, sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4069), 1, - sym__call_signature, - STATE(4358), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_type_parameters, + STATE(5455), 1, + aux_sym_object_pattern_repeat1, + STATE(6012), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3775), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3829), 2, anon_sym_get, anon_sym_set, - ACTIONS(3687), 3, + ACTIONS(3831), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(4039), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3843), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3667), 12, + STATE(5451), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6014), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7173), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3819), 14, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_new, sym_identifier, anon_sym_declare, anon_sym_module, @@ -156134,80 +159413,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22374] = 29, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3669), 1, - anon_sym_export, - ACTIONS(3671), 1, - anon_sym_STAR, - ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3675), 1, - anon_sym_async, - ACTIONS(3677), 1, - anon_sym_new, - ACTIONS(3681), 1, - anon_sym_static, - ACTIONS(3683), 1, - anon_sym_readonly, - ACTIONS(3689), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2749), 1, - sym_accessibility_modifier, - STATE(2768), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4069), 1, - sym__call_signature, - STATE(4358), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_type_parameters, + [22374] = 5, + ACTIONS(3727), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3679), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3437), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [22439] = 28, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(233), 1, + anon_sym_STAR, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(251), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(3771), 1, + anon_sym_LBRACK, + ACTIONS(3837), 1, + anon_sym_RBRACE, + ACTIONS(3839), 1, + anon_sym_async, + ACTIONS(3841), 1, + anon_sym_static, + ACTIONS(3843), 1, + anon_sym_readonly, + ACTIONS(3849), 1, + anon_sym_override, + STATE(2798), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + STATE(3147), 1, + sym_accessibility_modifier, + STATE(3167), 1, + sym_override_modifier, + STATE(5455), 1, + aux_sym_object_pattern_repeat1, + STATE(6012), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3775), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3845), 2, anon_sym_get, anon_sym_set, - ACTIONS(3687), 3, + ACTIONS(3847), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(4039), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3761), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3667), 12, + STATE(5451), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6014), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7173), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3835), 14, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_new, sym_identifier, anon_sym_declare, anon_sym_module, @@ -156217,80 +159556,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22486] = 29, + [22550] = 5, + ACTIONS(3755), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [22615] = 5, + ACTIONS(3759), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [22680] = 5, + ACTIONS(3749), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [22745] = 28, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(233), 1, + anon_sym_STAR, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(251), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3669), 1, - anon_sym_export, - ACTIONS(3671), 1, - anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(3771), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3853), 1, + anon_sym_RBRACE, + ACTIONS(3855), 1, anon_sym_async, - ACTIONS(3677), 1, - anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3857), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3859), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3865), 1, anon_sym_override, - STATE(1267), 1, + STATE(2798), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3147), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3167), 1, sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4069), 1, - sym__call_signature, - STATE(4358), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_type_parameters, + STATE(5454), 1, + aux_sym_object_repeat1, + STATE(5455), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3775), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3861), 2, anon_sym_get, anon_sym_set, - ACTIONS(3687), 3, + ACTIONS(3863), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(4039), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3868), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3667), 12, + STATE(5451), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5452), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7173), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3851), 14, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_new, sym_identifier, anon_sym_declare, anon_sym_module, @@ -156300,80 +159819,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22598] = 29, + [22856] = 28, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(233), 1, + anon_sym_STAR, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(251), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3274), 1, - anon_sym_abstract, - ACTIONS(3669), 1, - anon_sym_export, - ACTIONS(3671), 1, - anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(3771), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3869), 1, + anon_sym_RBRACE, + ACTIONS(3871), 1, anon_sym_async, - ACTIONS(3677), 1, - anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3873), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3875), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3881), 1, anon_sym_override, - STATE(1267), 1, + STATE(2798), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3147), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3167), 1, sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4069), 1, - sym__call_signature, - STATE(4358), 1, - aux_sym_export_statement_repeat1, - STATE(5245), 1, - sym_type_parameters, + STATE(5455), 1, + aux_sym_object_pattern_repeat1, + STATE(6012), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3775), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3877), 2, anon_sym_get, anon_sym_set, - ACTIONS(3687), 3, + ACTIONS(3879), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(4039), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3774), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3667), 12, + STATE(5451), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6014), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7173), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3867), 14, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_new, sym_identifier, anon_sym_declare, anon_sym_module, @@ -156383,77 +159902,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22710] = 29, + [22967] = 5, + ACTIONS(3717), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3444), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3433), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [23032] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3995), 6, + STATE(4377), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156466,77 +160045,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22822] = 29, + [23144] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3771), 6, + STATE(4285), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156549,77 +160128,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22934] = 29, + [23256] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2708), 1, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3262), 1, anon_sym_abstract, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_export, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3677), 1, + ACTIONS(3685), 1, anon_sym_new, - ACTIONS(3681), 1, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3683), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(2749), 1, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2768), 1, + STATE(3164), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4069), 1, + STATE(5030), 1, sym__call_signature, - STATE(4358), 1, + STATE(5355), 1, aux_sym_export_statement_repeat1, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3679), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3685), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3073), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3859), 6, + STATE(4963), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3667), 12, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156632,81 +160211,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23046] = 29, - ACTIONS(1621), 1, + [23368] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_abstract, ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(3765), 1, + anon_sym_export, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3767), 1, - anon_sym_RBRACE, - ACTIONS(3769), 1, - anon_sym_SEMI, - ACTIONS(3771), 1, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3775), 1, - anon_sym_AT, - ACTIONS(3777), 1, + ACTIONS(3685), 1, + anon_sym_new, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3779), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3783), 1, - anon_sym_declare, - ACTIONS(3785), 1, - anon_sym_abstract, - ACTIONS(3787), 1, - anon_sym_accessor, - STATE(2535), 1, - aux_sym_export_statement_repeat1, - STATE(2683), 1, - sym_method_definition, - STATE(2700), 1, + ACTIONS(3697), 1, + anon_sym_override, + STATE(3132), 1, + sym_decorator, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2767), 1, + STATE(3164), 1, sym_override_modifier, - STATE(2770), 1, - sym_decorator, - STATE(4363), 1, - sym_method_signature, + STATE(3722), 1, + sym_formal_parameters, + STATE(5030), 1, + sym__call_signature, + STATE(5355), 1, + aux_sym_export_statement_repeat1, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3773), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3781), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - STATE(1457), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3043), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4766), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4488), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(3667), 13, - anon_sym_export, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -156714,81 +160294,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23157] = 29, - ACTIONS(1621), 1, + [23480] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_abstract, ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(3765), 1, + anon_sym_export, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3769), 1, - anon_sym_SEMI, - ACTIONS(3771), 1, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3775), 1, - anon_sym_AT, - ACTIONS(3777), 1, + ACTIONS(3685), 1, + anon_sym_new, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3779), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3783), 1, - anon_sym_declare, - ACTIONS(3785), 1, - anon_sym_abstract, - ACTIONS(3787), 1, - anon_sym_accessor, - ACTIONS(3789), 1, - anon_sym_RBRACE, - STATE(2535), 1, - aux_sym_export_statement_repeat1, - STATE(2683), 1, - sym_method_definition, - STATE(2700), 1, + ACTIONS(3697), 1, + anon_sym_override, + STATE(3132), 1, + sym_decorator, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2767), 1, + STATE(3164), 1, sym_override_modifier, - STATE(2770), 1, - sym_decorator, - STATE(4363), 1, - sym_method_signature, + STATE(3722), 1, + sym_formal_parameters, + STATE(5030), 1, + sym__call_signature, + STATE(5355), 1, + aux_sym_export_statement_repeat1, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3773), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3781), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - STATE(1457), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3043), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4766), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4489), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(3667), 13, - anon_sym_export, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -156796,81 +160377,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23268] = 29, - ACTIONS(1621), 1, + [23592] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_abstract, ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(3765), 1, + anon_sym_export, + ACTIONS(3675), 1, anon_sym_STAR, - ACTIONS(3769), 1, - anon_sym_SEMI, - ACTIONS(3771), 1, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3775), 1, - anon_sym_AT, - ACTIONS(3777), 1, + ACTIONS(3685), 1, + anon_sym_new, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3779), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3783), 1, - anon_sym_declare, - ACTIONS(3785), 1, - anon_sym_abstract, - ACTIONS(3787), 1, - anon_sym_accessor, - ACTIONS(3791), 1, - anon_sym_RBRACE, - STATE(2535), 1, - aux_sym_export_statement_repeat1, - STATE(2683), 1, - sym_method_definition, - STATE(2700), 1, + ACTIONS(3697), 1, + anon_sym_override, + STATE(3132), 1, + sym_decorator, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2767), 1, + STATE(3164), 1, sym_override_modifier, - STATE(2770), 1, - sym_decorator, - STATE(4363), 1, - sym_method_signature, + STATE(3722), 1, + sym_formal_parameters, + STATE(5030), 1, + sym__call_signature, + STATE(5355), 1, + aux_sym_export_statement_repeat1, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3773), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3781), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - STATE(1457), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3043), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4766), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4405), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(3667), 13, - anon_sym_export, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -156878,81 +160460,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23379] = 29, - ACTIONS(3796), 1, - anon_sym_STAR, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(3801), 1, - anon_sym_SEMI, - ACTIONS(3804), 1, - anon_sym_LBRACK, - ACTIONS(3807), 1, + [23704] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(3810), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_abstract, + ACTIONS(3673), 1, + anon_sym_export, + ACTIONS(3675), 1, + anon_sym_STAR, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3683), 1, anon_sym_async, - ACTIONS(3822), 1, - anon_sym_AT, - ACTIONS(3825), 1, + ACTIONS(3685), 1, + anon_sym_new, + ACTIONS(3689), 1, anon_sym_static, - ACTIONS(3828), 1, + ACTIONS(3691), 1, anon_sym_readonly, - ACTIONS(3834), 1, - anon_sym_declare, - ACTIONS(3840), 1, + ACTIONS(3697), 1, anon_sym_override, - ACTIONS(3843), 1, - anon_sym_abstract, - ACTIONS(3846), 1, - anon_sym_accessor, - STATE(2535), 1, - aux_sym_export_statement_repeat1, - STATE(2683), 1, - sym_method_definition, - STATE(2700), 1, + STATE(3132), 1, + sym_decorator, + STATE(3149), 1, sym_accessibility_modifier, - STATE(2767), 1, + STATE(3164), 1, sym_override_modifier, - STATE(2770), 1, - sym_decorator, - STATE(4363), 1, - sym_method_signature, + STATE(3722), 1, + sym_formal_parameters, + STATE(5030), 1, + sym__call_signature, + STATE(5355), 1, + aux_sym_export_statement_repeat1, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3816), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3819), 2, + ACTIONS(3687), 2, sym_number, sym_private_property_identifier, - ACTIONS(3831), 2, + ACTIONS(3693), 2, anon_sym_get, anon_sym_set, - STATE(1457), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3837), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3043), 3, + STATE(3537), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4766), 3, - sym_public_field_definition, - sym_abstract_method_signature, + STATE(4277), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, sym_index_signature, - ACTIONS(3793), 13, - anon_sym_export, + ACTIONS(3671), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -156960,75 +160543,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23490] = 29, - ACTIONS(1621), 1, + [23816] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - ACTIONS(3765), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3771), 1, + ACTIONS(3885), 1, + anon_sym_RBRACE, + ACTIONS(3887), 1, + anon_sym_SEMI, + ACTIONS(3889), 1, anon_sym_async, - ACTIONS(3775), 1, - anon_sym_AT, - ACTIONS(3777), 1, + ACTIONS(3893), 1, anon_sym_static, - ACTIONS(3779), 1, + ACTIONS(3895), 1, anon_sym_readonly, - ACTIONS(3783), 1, + ACTIONS(3899), 1, anon_sym_declare, - ACTIONS(3785), 1, + ACTIONS(3901), 1, anon_sym_abstract, - ACTIONS(3787), 1, + ACTIONS(3903), 1, anon_sym_accessor, - ACTIONS(3849), 1, - anon_sym_RBRACE, - ACTIONS(3851), 1, - anon_sym_SEMI, - STATE(2535), 1, + STATE(2608), 1, aux_sym_export_statement_repeat1, - STATE(2683), 1, + STATE(2909), 1, sym_method_definition, - STATE(2700), 1, + STATE(2983), 1, sym_accessibility_modifier, - STATE(2767), 1, - sym_override_modifier, - STATE(2770), 1, + STATE(3132), 1, sym_decorator, - STATE(4363), 1, + STATE(3173), 1, + sym_override_modifier, + STATE(5347), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3773), 2, + ACTIONS(3891), 2, sym_number, sym_private_property_identifier, - ACTIONS(3781), 2, + ACTIONS(3897), 2, anon_sym_get, anon_sym_set, - STATE(1455), 2, + STATE(1463), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3043), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4766), 3, + STATE(5589), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3667), 13, + ACTIONS(3671), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157042,75 +160625,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23601] = 29, - ACTIONS(1621), 1, + [23927] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - ACTIONS(3765), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3771), 1, + ACTIONS(3889), 1, anon_sym_async, - ACTIONS(3775), 1, - anon_sym_AT, - ACTIONS(3777), 1, + ACTIONS(3893), 1, anon_sym_static, - ACTIONS(3779), 1, + ACTIONS(3895), 1, anon_sym_readonly, - ACTIONS(3783), 1, + ACTIONS(3899), 1, anon_sym_declare, - ACTIONS(3785), 1, + ACTIONS(3901), 1, anon_sym_abstract, - ACTIONS(3787), 1, + ACTIONS(3903), 1, anon_sym_accessor, - ACTIONS(3853), 1, + ACTIONS(3905), 1, anon_sym_RBRACE, - ACTIONS(3855), 1, + ACTIONS(3907), 1, anon_sym_SEMI, - STATE(2535), 1, + STATE(2608), 1, aux_sym_export_statement_repeat1, - STATE(2683), 1, + STATE(2909), 1, sym_method_definition, - STATE(2700), 1, + STATE(2983), 1, sym_accessibility_modifier, - STATE(2767), 1, - sym_override_modifier, - STATE(2770), 1, + STATE(3132), 1, sym_decorator, - STATE(4363), 1, + STATE(3173), 1, + sym_override_modifier, + STATE(5347), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3773), 2, + ACTIONS(3891), 2, sym_number, sym_private_property_identifier, - ACTIONS(3781), 2, + ACTIONS(3897), 2, anon_sym_get, anon_sym_set, - STATE(1456), 2, + STATE(1471), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3043), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4766), 3, + STATE(5589), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3667), 13, + ACTIONS(3671), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157124,75 +160707,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23712] = 29, - ACTIONS(1621), 1, + [24038] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - ACTIONS(3765), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3771), 1, + ACTIONS(3889), 1, anon_sym_async, - ACTIONS(3775), 1, - anon_sym_AT, - ACTIONS(3777), 1, + ACTIONS(3893), 1, anon_sym_static, - ACTIONS(3779), 1, + ACTIONS(3895), 1, anon_sym_readonly, - ACTIONS(3783), 1, + ACTIONS(3899), 1, anon_sym_declare, - ACTIONS(3785), 1, + ACTIONS(3901), 1, anon_sym_abstract, - ACTIONS(3787), 1, + ACTIONS(3903), 1, anon_sym_accessor, - ACTIONS(3857), 1, - anon_sym_RBRACE, - ACTIONS(3859), 1, + ACTIONS(3907), 1, anon_sym_SEMI, - STATE(2535), 1, + ACTIONS(3909), 1, + anon_sym_RBRACE, + STATE(2608), 1, aux_sym_export_statement_repeat1, - STATE(2683), 1, + STATE(2909), 1, sym_method_definition, - STATE(2700), 1, + STATE(2983), 1, sym_accessibility_modifier, - STATE(2767), 1, - sym_override_modifier, - STATE(2770), 1, + STATE(3132), 1, sym_decorator, - STATE(4363), 1, + STATE(3173), 1, + sym_override_modifier, + STATE(5347), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3773), 2, + ACTIONS(3891), 2, sym_number, sym_private_property_identifier, - ACTIONS(3781), 2, + ACTIONS(3897), 2, anon_sym_get, anon_sym_set, - STATE(1454), 2, + STATE(1471), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3043), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4766), 3, + STATE(5589), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3667), 13, + ACTIONS(3671), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157206,75 +160789,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23823] = 29, - ACTIONS(1621), 1, + [24149] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - ACTIONS(3765), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3769), 1, - anon_sym_SEMI, - ACTIONS(3771), 1, + ACTIONS(3889), 1, anon_sym_async, - ACTIONS(3775), 1, - anon_sym_AT, - ACTIONS(3777), 1, + ACTIONS(3893), 1, anon_sym_static, - ACTIONS(3779), 1, + ACTIONS(3895), 1, anon_sym_readonly, - ACTIONS(3783), 1, + ACTIONS(3899), 1, anon_sym_declare, - ACTIONS(3785), 1, + ACTIONS(3901), 1, anon_sym_abstract, - ACTIONS(3787), 1, + ACTIONS(3903), 1, anon_sym_accessor, - ACTIONS(3861), 1, + ACTIONS(3911), 1, anon_sym_RBRACE, - STATE(2535), 1, + ACTIONS(3913), 1, + anon_sym_SEMI, + STATE(2608), 1, aux_sym_export_statement_repeat1, - STATE(2683), 1, + STATE(2909), 1, sym_method_definition, - STATE(2700), 1, + STATE(2983), 1, sym_accessibility_modifier, - STATE(2767), 1, - sym_override_modifier, - STATE(2770), 1, + STATE(3132), 1, sym_decorator, - STATE(4363), 1, + STATE(3173), 1, + sym_override_modifier, + STATE(5347), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3773), 2, + ACTIONS(3891), 2, sym_number, sym_private_property_identifier, - ACTIONS(3781), 2, + ACTIONS(3897), 2, anon_sym_get, anon_sym_set, - STATE(1457), 2, + STATE(1465), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3043), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4766), 3, + STATE(5589), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3667), 13, + ACTIONS(3671), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157288,161 +160871,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23934] = 33, + [24260] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(2282), 1, - anon_sym_LBRACE, - ACTIONS(2384), 1, - anon_sym_namespace, - ACTIONS(2386), 1, - anon_sym_import, - ACTIONS(2388), 1, - anon_sym_var, - ACTIONS(2390), 1, - anon_sym_let, - ACTIONS(2392), 1, - anon_sym_const, - ACTIONS(2394), 1, - anon_sym_class, - ACTIONS(2396), 1, - anon_sym_async, - ACTIONS(2398), 1, - anon_sym_function, - ACTIONS(2400), 1, - anon_sym_declare, - ACTIONS(2404), 1, - anon_sym_abstract, - ACTIONS(2408), 1, - anon_sym_interface, - ACTIONS(2410), 1, - anon_sym_enum, - ACTIONS(3863), 1, - anon_sym_STAR, - ACTIONS(3865), 1, - anon_sym_default, - ACTIONS(3867), 1, - anon_sym_type, - ACTIONS(3869), 1, - anon_sym_EQ, - ACTIONS(3871), 1, - anon_sym_as, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3876), 1, - anon_sym_RBRACE, - ACTIONS(3881), 1, - anon_sym_module, - STATE(1267), 1, - sym_decorator, - STATE(4081), 1, - sym_declaration, - STATE(4082), 1, - sym_internal_module, - STATE(4277), 1, - aux_sym_export_statement_repeat1, - STATE(4476), 1, - sym_export_clause, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - STATE(5228), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4071), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [24053] = 29, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - ACTIONS(3765), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3769), 1, - anon_sym_SEMI, - ACTIONS(3771), 1, + ACTIONS(3889), 1, anon_sym_async, - ACTIONS(3775), 1, - anon_sym_AT, - ACTIONS(3777), 1, + ACTIONS(3893), 1, anon_sym_static, - ACTIONS(3779), 1, + ACTIONS(3895), 1, anon_sym_readonly, - ACTIONS(3783), 1, + ACTIONS(3899), 1, anon_sym_declare, - ACTIONS(3785), 1, + ACTIONS(3901), 1, anon_sym_abstract, - ACTIONS(3787), 1, + ACTIONS(3903), 1, anon_sym_accessor, - ACTIONS(3883), 1, + ACTIONS(3907), 1, + anon_sym_SEMI, + ACTIONS(3915), 1, anon_sym_RBRACE, - STATE(2535), 1, + STATE(2608), 1, aux_sym_export_statement_repeat1, - STATE(2683), 1, + STATE(2909), 1, sym_method_definition, - STATE(2700), 1, + STATE(2983), 1, sym_accessibility_modifier, - STATE(2767), 1, - sym_override_modifier, - STATE(2770), 1, + STATE(3132), 1, sym_decorator, - STATE(4363), 1, + STATE(3173), 1, + sym_override_modifier, + STATE(5347), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3773), 2, + ACTIONS(3891), 2, sym_number, sym_private_property_identifier, - ACTIONS(3781), 2, + ACTIONS(3897), 2, anon_sym_get, anon_sym_set, - STATE(1457), 2, + STATE(1471), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3043), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4766), 3, + STATE(5589), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3667), 13, + ACTIONS(3671), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157456,7 +160953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24164] = 33, + [24371] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2282), 1, @@ -157485,42 +160982,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2410), 1, anon_sym_enum, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_STAR, - ACTIONS(3865), 1, + ACTIONS(3919), 1, anon_sym_default, - ACTIONS(3867), 1, + ACTIONS(3921), 1, anon_sym_type, - ACTIONS(3869), 1, + ACTIONS(3923), 1, anon_sym_EQ, - ACTIONS(3871), 1, + ACTIONS(3925), 1, anon_sym_as, - ACTIONS(3873), 1, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3881), 1, - anon_sym_module, - ACTIONS(3885), 1, + ACTIONS(3930), 1, anon_sym_RBRACE, - STATE(1267), 1, + ACTIONS(3935), 1, + anon_sym_module, + STATE(3132), 1, sym_decorator, - STATE(4081), 1, - sym_declaration, - STATE(4082), 1, + STATE(4974), 1, sym_internal_module, - STATE(4277), 1, + STATE(4975), 1, + sym_declaration, + STATE(5115), 1, aux_sym_export_statement_repeat1, - STATE(4476), 1, + STATE(5346), 1, sym_export_clause, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, - STATE(5228), 1, + STATE(5905), 1, + aux_sym_object_repeat1, + STATE(6242), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -157528,7 +161025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4071), 13, + STATE(4991), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -157542,7 +161039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24283] = 33, + [24490] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2282), 1, @@ -157571,42 +161068,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2410), 1, anon_sym_enum, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_STAR, - ACTIONS(3865), 1, + ACTIONS(3919), 1, anon_sym_default, - ACTIONS(3867), 1, + ACTIONS(3921), 1, anon_sym_type, - ACTIONS(3869), 1, + ACTIONS(3923), 1, anon_sym_EQ, - ACTIONS(3871), 1, + ACTIONS(3925), 1, anon_sym_as, - ACTIONS(3873), 1, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3881), 1, + ACTIONS(3935), 1, anon_sym_module, - ACTIONS(3888), 1, + ACTIONS(3937), 1, anon_sym_RBRACE, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(4081), 1, - sym_declaration, - STATE(4082), 1, + STATE(4974), 1, sym_internal_module, - STATE(4277), 1, + STATE(4975), 1, + sym_declaration, + STATE(5115), 1, aux_sym_export_statement_repeat1, - STATE(4476), 1, + STATE(5346), 1, sym_export_clause, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, - STATE(5228), 1, + STATE(5905), 1, + aux_sym_object_repeat1, + STATE(6242), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -157614,7 +161111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4071), 13, + STATE(4991), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -157628,167 +161125,77 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24402] = 33, + [24609] = 25, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(2282), 1, + ACTIONS(233), 1, + anon_sym_STAR, + ACTIONS(251), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3232), 1, anon_sym_LBRACE, - ACTIONS(2384), 1, - anon_sym_namespace, - ACTIONS(2386), 1, - anon_sym_import, - ACTIONS(2388), 1, - anon_sym_var, - ACTIONS(2390), 1, - anon_sym_let, - ACTIONS(2392), 1, - anon_sym_const, - ACTIONS(2394), 1, - anon_sym_class, - ACTIONS(2396), 1, + ACTIONS(3771), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_async, - ACTIONS(2398), 1, - anon_sym_function, - ACTIONS(2400), 1, - anon_sym_declare, - ACTIONS(2404), 1, - anon_sym_abstract, - ACTIONS(2408), 1, - anon_sym_interface, - ACTIONS(2410), 1, - anon_sym_enum, - ACTIONS(3863), 1, - anon_sym_STAR, - ACTIONS(3865), 1, - anon_sym_default, - ACTIONS(3867), 1, - anon_sym_type, - ACTIONS(3869), 1, - anon_sym_EQ, - ACTIONS(3871), 1, - anon_sym_as, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3881), 1, - anon_sym_module, - ACTIONS(3891), 1, - anon_sym_RBRACE, - STATE(1267), 1, - sym_decorator, - STATE(4081), 1, - sym_declaration, - STATE(4082), 1, - sym_internal_module, - STATE(4277), 1, + ACTIONS(3944), 1, + anon_sym_static, + ACTIONS(3946), 1, + anon_sym_readonly, + ACTIONS(3952), 1, + anon_sym_override, + STATE(2798), 1, aux_sym_export_statement_repeat1, - STATE(4476), 1, - sym_export_clause, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - STATE(5228), 1, - sym_namespace_export, + STATE(3132), 1, + sym_decorator, + STATE(3147), 1, + sym_accessibility_modifier, + STATE(3167), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4071), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [24521] = 29, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(3765), 1, - anon_sym_STAR, - ACTIONS(3771), 1, - anon_sym_async, - ACTIONS(3775), 1, - anon_sym_AT, - ACTIONS(3777), 1, - anon_sym_static, - ACTIONS(3779), 1, - anon_sym_readonly, - ACTIONS(3783), 1, - anon_sym_declare, - ACTIONS(3785), 1, - anon_sym_abstract, - ACTIONS(3787), 1, - anon_sym_accessor, - ACTIONS(3894), 1, + ACTIONS(3402), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3896), 1, - anon_sym_SEMI, - STATE(2535), 1, - aux_sym_export_statement_repeat1, - STATE(2683), 1, - sym_method_definition, - STATE(2700), 1, - sym_accessibility_modifier, - STATE(2767), 1, - sym_override_modifier, - STATE(2770), 1, - sym_decorator, - STATE(4363), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3260), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3773), 2, + ACTIONS(3775), 2, sym_number, sym_private_property_identifier, - ACTIONS(3781), 2, + ACTIONS(3948), 2, anon_sym_get, anon_sym_set, - STATE(1463), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3687), 3, + ACTIONS(3950), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3043), 3, + STATE(4039), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4766), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3667), 13, + STATE(6836), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7045), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7173), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3940), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -157796,161 +161203,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24632] = 33, + [24712] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(2282), 1, - anon_sym_LBRACE, - ACTIONS(2384), 1, - anon_sym_namespace, - ACTIONS(2386), 1, - anon_sym_import, - ACTIONS(2388), 1, - anon_sym_var, - ACTIONS(2390), 1, - anon_sym_let, - ACTIONS(2392), 1, - anon_sym_const, - ACTIONS(2394), 1, - anon_sym_class, - ACTIONS(2396), 1, - anon_sym_async, - ACTIONS(2398), 1, - anon_sym_function, - ACTIONS(2400), 1, - anon_sym_declare, - ACTIONS(2404), 1, - anon_sym_abstract, - ACTIONS(2408), 1, - anon_sym_interface, - ACTIONS(2410), 1, - anon_sym_enum, - ACTIONS(3863), 1, - anon_sym_STAR, - ACTIONS(3865), 1, - anon_sym_default, - ACTIONS(3867), 1, - anon_sym_type, - ACTIONS(3869), 1, - anon_sym_EQ, - ACTIONS(3871), 1, - anon_sym_as, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3881), 1, - anon_sym_module, - ACTIONS(3898), 1, - anon_sym_RBRACE, - STATE(1267), 1, - sym_decorator, - STATE(4081), 1, - sym_declaration, - STATE(4082), 1, - sym_internal_module, - STATE(4277), 1, - aux_sym_export_statement_repeat1, - STATE(4476), 1, - sym_export_clause, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - STATE(5228), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4071), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [24751] = 29, - ACTIONS(1621), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - ACTIONS(3765), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3771), 1, + ACTIONS(3889), 1, anon_sym_async, - ACTIONS(3775), 1, - anon_sym_AT, - ACTIONS(3777), 1, + ACTIONS(3893), 1, anon_sym_static, - ACTIONS(3779), 1, + ACTIONS(3895), 1, anon_sym_readonly, - ACTIONS(3783), 1, + ACTIONS(3899), 1, anon_sym_declare, - ACTIONS(3785), 1, + ACTIONS(3901), 1, anon_sym_abstract, - ACTIONS(3787), 1, + ACTIONS(3903), 1, anon_sym_accessor, - ACTIONS(3901), 1, + ACTIONS(3954), 1, anon_sym_RBRACE, - ACTIONS(3903), 1, + ACTIONS(3956), 1, anon_sym_SEMI, - STATE(2535), 1, + STATE(2608), 1, aux_sym_export_statement_repeat1, - STATE(2683), 1, + STATE(2909), 1, sym_method_definition, - STATE(2700), 1, + STATE(2983), 1, sym_accessibility_modifier, - STATE(2767), 1, - sym_override_modifier, - STATE(2770), 1, + STATE(3132), 1, sym_decorator, - STATE(4363), 1, + STATE(3173), 1, + sym_override_modifier, + STATE(5347), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3248), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3773), 2, + ACTIONS(3891), 2, sym_number, sym_private_property_identifier, - ACTIONS(3781), 2, + ACTIONS(3897), 2, anon_sym_get, anon_sym_set, - STATE(1461), 2, + STATE(1462), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3687), 3, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3043), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4766), 3, + STATE(5589), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3667), 13, + ACTIONS(3671), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -157964,76 +161285,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24862] = 25, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(251), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2328), 1, + [24823] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3907), 1, - anon_sym_RBRACE, - ACTIONS(3909), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3911), 1, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3889), 1, anon_sym_async, - ACTIONS(3915), 1, + ACTIONS(3893), 1, anon_sym_static, - ACTIONS(3917), 1, + ACTIONS(3895), 1, anon_sym_readonly, - ACTIONS(3923), 1, - anon_sym_override, - STATE(2740), 1, + ACTIONS(3899), 1, + anon_sym_declare, + ACTIONS(3901), 1, + anon_sym_abstract, + ACTIONS(3903), 1, + anon_sym_accessor, + ACTIONS(3907), 1, + anon_sym_SEMI, + ACTIONS(3958), 1, + anon_sym_RBRACE, + STATE(2608), 1, + aux_sym_export_statement_repeat1, + STATE(2909), 1, + sym_method_definition, + STATE(2983), 1, sym_accessibility_modifier, - STATE(2780), 1, + STATE(3132), 1, + sym_decorator, + STATE(3173), 1, sym_override_modifier, - STATE(4685), 1, - aux_sym_object_repeat1, - STATE(4692), 1, - aux_sym_object_pattern_repeat1, + STATE(5347), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3913), 2, + ACTIONS(3248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3891), 2, sym_number, sym_private_property_identifier, - ACTIONS(3919), 2, + ACTIONS(3897), 2, anon_sym_get, anon_sym_set, - ACTIONS(3921), 3, + STATE(1471), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3630), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4753), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4796), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5612), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3905), 14, + STATE(5589), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3671), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -158041,76 +161367,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24964] = 25, - ACTIONS(233), 1, + [24934] = 29, + ACTIONS(3963), 1, anon_sym_STAR, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(251), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2328), 1, + ACTIONS(3966), 1, + anon_sym_RBRACE, + ACTIONS(3968), 1, + anon_sym_SEMI, + ACTIONS(3971), 1, + anon_sym_LBRACK, + ACTIONS(3974), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(3977), 1, anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3909), 1, - anon_sym_LBRACK, - ACTIONS(3927), 1, - anon_sym_RBRACE, - ACTIONS(3929), 1, + ACTIONS(3980), 1, anon_sym_async, - ACTIONS(3931), 1, + ACTIONS(3989), 1, + anon_sym_AT, + ACTIONS(3992), 1, anon_sym_static, - ACTIONS(3933), 1, + ACTIONS(3995), 1, anon_sym_readonly, - ACTIONS(3939), 1, + ACTIONS(4001), 1, + anon_sym_declare, + ACTIONS(4007), 1, anon_sym_override, - STATE(2740), 1, + ACTIONS(4010), 1, + anon_sym_abstract, + ACTIONS(4013), 1, + anon_sym_accessor, + STATE(2608), 1, + aux_sym_export_statement_repeat1, + STATE(2909), 1, + sym_method_definition, + STATE(2983), 1, sym_accessibility_modifier, - STATE(2780), 1, + STATE(3132), 1, + sym_decorator, + STATE(3173), 1, sym_override_modifier, - STATE(4685), 1, - aux_sym_object_repeat1, - STATE(4692), 1, - aux_sym_object_pattern_repeat1, + STATE(5347), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3913), 2, + ACTIONS(3983), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3986), 2, sym_number, sym_private_property_identifier, - ACTIONS(3935), 2, + ACTIONS(3998), 2, anon_sym_get, anon_sym_set, - ACTIONS(3937), 3, + STATE(1471), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(4004), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3630), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4753), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4796), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5612), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3925), 14, + STATE(5589), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3960), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -158118,230 +161449,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25066] = 25, - ACTIONS(233), 1, + [25045] = 33, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2282), 1, + anon_sym_LBRACE, + ACTIONS(2384), 1, + anon_sym_namespace, + ACTIONS(2386), 1, + anon_sym_import, + ACTIONS(2388), 1, + anon_sym_var, + ACTIONS(2390), 1, + anon_sym_let, + ACTIONS(2392), 1, + anon_sym_const, + ACTIONS(2394), 1, + anon_sym_class, + ACTIONS(2396), 1, + anon_sym_async, + ACTIONS(2398), 1, + anon_sym_function, + ACTIONS(2400), 1, + anon_sym_declare, + ACTIONS(2404), 1, + anon_sym_abstract, + ACTIONS(2408), 1, + anon_sym_interface, + ACTIONS(2410), 1, + anon_sym_enum, + ACTIONS(3917), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(3919), 1, + anon_sym_default, + ACTIONS(3921), 1, + anon_sym_type, + ACTIONS(3923), 1, + anon_sym_EQ, + ACTIONS(3925), 1, + anon_sym_as, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(251), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3909), 1, - anon_sym_LBRACK, - ACTIONS(3943), 1, + ACTIONS(3935), 1, + anon_sym_module, + ACTIONS(4016), 1, anon_sym_RBRACE, - ACTIONS(3945), 1, - anon_sym_async, - ACTIONS(3947), 1, - anon_sym_static, - ACTIONS(3949), 1, - anon_sym_readonly, - ACTIONS(3955), 1, - anon_sym_override, - STATE(2740), 1, - sym_accessibility_modifier, - STATE(2780), 1, - sym_override_modifier, - STATE(4692), 1, - aux_sym_object_pattern_repeat1, - STATE(4874), 1, + STATE(3132), 1, + sym_decorator, + STATE(4974), 1, + sym_internal_module, + STATE(4975), 1, + sym_declaration, + STATE(5115), 1, + aux_sym_export_statement_repeat1, + STATE(5346), 1, + sym_export_clause, + STATE(5516), 1, aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(6242), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3913), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3951), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3953), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3630), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4753), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4812), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5612), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3941), 14, - anon_sym_export, - anon_sym_type, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4991), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [25164] = 33, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2282), 1, + anon_sym_LBRACE, + ACTIONS(2384), 1, anon_sym_namespace, + ACTIONS(2386), 1, + anon_sym_import, + ACTIONS(2388), 1, + anon_sym_var, + ACTIONS(2390), 1, anon_sym_let, - anon_sym_new, - sym_identifier, + ACTIONS(2392), 1, + anon_sym_const, + ACTIONS(2394), 1, + anon_sym_class, + ACTIONS(2396), 1, + anon_sym_async, + ACTIONS(2398), 1, + anon_sym_function, + ACTIONS(2400), 1, anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [25168] = 25, - ACTIONS(233), 1, + ACTIONS(2404), 1, + anon_sym_abstract, + ACTIONS(2408), 1, + anon_sym_interface, + ACTIONS(2410), 1, + anon_sym_enum, + ACTIONS(3917), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(3919), 1, + anon_sym_default, + ACTIONS(3921), 1, + anon_sym_type, + ACTIONS(3923), 1, + anon_sym_EQ, + ACTIONS(3925), 1, + anon_sym_as, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(251), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3909), 1, - anon_sym_LBRACK, - ACTIONS(3959), 1, + ACTIONS(3935), 1, + anon_sym_module, + ACTIONS(4019), 1, anon_sym_RBRACE, - ACTIONS(3961), 1, - anon_sym_async, - ACTIONS(3963), 1, - anon_sym_static, - ACTIONS(3965), 1, - anon_sym_readonly, - ACTIONS(3971), 1, - anon_sym_override, - STATE(2740), 1, - sym_accessibility_modifier, - STATE(2780), 1, - sym_override_modifier, - STATE(4692), 1, + STATE(3132), 1, + sym_decorator, + STATE(4974), 1, + sym_internal_module, + STATE(4975), 1, + sym_declaration, + STATE(5115), 1, + aux_sym_export_statement_repeat1, + STATE(5346), 1, + sym_export_clause, + STATE(5518), 1, aux_sym_object_pattern_repeat1, - STATE(4874), 1, + STATE(5905), 1, aux_sym_object_repeat1, + STATE(6242), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3913), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3967), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3969), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3630), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4753), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4812), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5612), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3957), 14, - anon_sym_export, - anon_sym_type, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4991), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [25283] = 33, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2282), 1, + anon_sym_LBRACE, + ACTIONS(2384), 1, anon_sym_namespace, + ACTIONS(2386), 1, + anon_sym_import, + ACTIONS(2388), 1, + anon_sym_var, + ACTIONS(2390), 1, anon_sym_let, - anon_sym_new, - sym_identifier, + ACTIONS(2392), 1, + anon_sym_const, + ACTIONS(2394), 1, + anon_sym_class, + ACTIONS(2396), 1, + anon_sym_async, + ACTIONS(2398), 1, + anon_sym_function, + ACTIONS(2400), 1, anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [25270] = 25, - ACTIONS(233), 1, + ACTIONS(2404), 1, + anon_sym_abstract, + ACTIONS(2408), 1, + anon_sym_interface, + ACTIONS(2410), 1, + anon_sym_enum, + ACTIONS(3917), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(3919), 1, + anon_sym_default, + ACTIONS(3921), 1, + anon_sym_type, + ACTIONS(3923), 1, + anon_sym_EQ, + ACTIONS(3925), 1, + anon_sym_as, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(251), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2328), 1, + ACTIONS(3935), 1, + anon_sym_module, + ACTIONS(4022), 1, + anon_sym_RBRACE, + STATE(3132), 1, + sym_decorator, + STATE(4974), 1, + sym_internal_module, + STATE(4975), 1, + sym_declaration, + STATE(5115), 1, + aux_sym_export_statement_repeat1, + STATE(5346), 1, + sym_export_clause, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + STATE(6242), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4991), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [25402] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3909), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3975), 1, - anon_sym_RBRACE, - ACTIONS(3977), 1, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3889), 1, anon_sym_async, - ACTIONS(3979), 1, + ACTIONS(3893), 1, anon_sym_static, - ACTIONS(3981), 1, + ACTIONS(3895), 1, anon_sym_readonly, - ACTIONS(3987), 1, - anon_sym_override, - STATE(2740), 1, + ACTIONS(3899), 1, + anon_sym_declare, + ACTIONS(3901), 1, + anon_sym_abstract, + ACTIONS(3903), 1, + anon_sym_accessor, + ACTIONS(4025), 1, + anon_sym_RBRACE, + ACTIONS(4027), 1, + anon_sym_SEMI, + STATE(2608), 1, + aux_sym_export_statement_repeat1, + STATE(2909), 1, + sym_method_definition, + STATE(2983), 1, sym_accessibility_modifier, - STATE(2780), 1, + STATE(3132), 1, + sym_decorator, + STATE(3173), 1, sym_override_modifier, - STATE(4692), 1, - aux_sym_object_pattern_repeat1, - STATE(4874), 1, - aux_sym_object_repeat1, + STATE(5347), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3913), 2, + ACTIONS(3248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3891), 2, sym_number, sym_private_property_identifier, - ACTIONS(3983), 2, + ACTIONS(3897), 2, anon_sym_get, anon_sym_set, - ACTIONS(3985), 3, + STATE(1470), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3630), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4753), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4812), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5612), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3973), 14, + STATE(5589), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3671), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -158349,76 +161789,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25372] = 25, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(251), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2328), 1, + [25513] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3909), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(3991), 1, - anon_sym_RBRACE, - ACTIONS(3993), 1, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3889), 1, anon_sym_async, - ACTIONS(3995), 1, + ACTIONS(3893), 1, anon_sym_static, - ACTIONS(3997), 1, + ACTIONS(3895), 1, anon_sym_readonly, - ACTIONS(4003), 1, - anon_sym_override, - STATE(2740), 1, + ACTIONS(3899), 1, + anon_sym_declare, + ACTIONS(3901), 1, + anon_sym_abstract, + ACTIONS(3903), 1, + anon_sym_accessor, + ACTIONS(4029), 1, + anon_sym_RBRACE, + ACTIONS(4031), 1, + anon_sym_SEMI, + STATE(2608), 1, + aux_sym_export_statement_repeat1, + STATE(2909), 1, + sym_method_definition, + STATE(2983), 1, sym_accessibility_modifier, - STATE(2780), 1, + STATE(3132), 1, + sym_decorator, + STATE(3173), 1, sym_override_modifier, - STATE(4692), 1, - aux_sym_object_pattern_repeat1, - STATE(4874), 1, - aux_sym_object_repeat1, + STATE(5347), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3913), 2, + ACTIONS(3248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3891), 2, sym_number, sym_private_property_identifier, - ACTIONS(3999), 2, + ACTIONS(3897), 2, anon_sym_get, anon_sym_set, - ACTIONS(4001), 3, + STATE(1477), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3630), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4753), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4812), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5612), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3989), 14, + STATE(5589), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3671), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -158426,76 +161871,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25474] = 25, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(251), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2328), 1, + [25624] = 29, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3909), 1, + ACTIONS(3681), 1, anon_sym_LBRACK, - ACTIONS(4007), 1, - anon_sym_RBRACE, - ACTIONS(4009), 1, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3889), 1, anon_sym_async, - ACTIONS(4011), 1, + ACTIONS(3893), 1, anon_sym_static, - ACTIONS(4013), 1, + ACTIONS(3895), 1, anon_sym_readonly, - ACTIONS(4019), 1, - anon_sym_override, - STATE(2740), 1, + ACTIONS(3899), 1, + anon_sym_declare, + ACTIONS(3901), 1, + anon_sym_abstract, + ACTIONS(3903), 1, + anon_sym_accessor, + ACTIONS(3907), 1, + anon_sym_SEMI, + ACTIONS(4033), 1, + anon_sym_RBRACE, + STATE(2608), 1, + aux_sym_export_statement_repeat1, + STATE(2909), 1, + sym_method_definition, + STATE(2983), 1, sym_accessibility_modifier, - STATE(2780), 1, + STATE(3132), 1, + sym_decorator, + STATE(3173), 1, sym_override_modifier, - STATE(4692), 1, - aux_sym_object_pattern_repeat1, - STATE(4874), 1, - aux_sym_object_repeat1, + STATE(5347), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3913), 2, + ACTIONS(3248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3891), 2, sym_number, sym_private_property_identifier, - ACTIONS(4015), 2, + ACTIONS(3897), 2, anon_sym_get, anon_sym_set, - ACTIONS(4017), 3, + STATE(1471), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3695), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3630), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4753), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4812), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5612), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4005), 14, + STATE(5589), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3671), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -158503,7 +161953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25576] = 29, + [25735] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2282), 1, @@ -158532,44 +161982,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2410), 1, anon_sym_enum, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_STAR, - ACTIONS(3865), 1, + ACTIONS(3919), 1, anon_sym_default, - ACTIONS(3867), 1, + ACTIONS(3921), 1, anon_sym_type, - ACTIONS(3871), 1, + ACTIONS(3923), 1, + anon_sym_EQ, + ACTIONS(3925), 1, anon_sym_as, - ACTIONS(3881), 1, + ACTIONS(3935), 1, anon_sym_module, - ACTIONS(4021), 1, - anon_sym_EQ, - STATE(1267), 1, + STATE(3132), 1, sym_decorator, - STATE(4081), 1, - sym_declaration, - STATE(4082), 1, + STATE(4974), 1, sym_internal_module, - STATE(4277), 1, + STATE(4975), 1, + sym_declaration, + STATE(5115), 1, aux_sym_export_statement_repeat1, - STATE(4476), 1, + STATE(5346), 1, sym_export_clause, - STATE(5228), 1, + STATE(6242), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 9, - sym__automatic_semicolon, + ACTIONS(4035), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3933), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4071), 13, + STATE(4991), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -158583,11 +162034,65 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [25685] = 3, + [25846] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1821), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(1819), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [25903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1805), 14, + ACTIONS(1897), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158602,7 +162107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1803), 34, + ACTIONS(1895), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158637,7 +162142,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [25742] = 30, + [25960] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3392), 18, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3390), 30, + anon_sym_export, + anon_sym_type, + anon_sym_EQ, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_QMARK, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [26017] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3396), 18, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3394), 30, + anon_sym_export, + anon_sym_type, + anon_sym_EQ, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_QMARK, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [26074] = 29, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2282), 1, @@ -158666,45 +162279,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2410), 1, anon_sym_enum, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_STAR, - ACTIONS(3865), 1, + ACTIONS(3919), 1, anon_sym_default, - ACTIONS(3867), 1, + ACTIONS(3921), 1, anon_sym_type, - ACTIONS(3869), 1, - anon_sym_EQ, - ACTIONS(3871), 1, + ACTIONS(3925), 1, anon_sym_as, - ACTIONS(3881), 1, + ACTIONS(3935), 1, anon_sym_module, - STATE(1267), 1, + ACTIONS(4039), 1, + anon_sym_EQ, + STATE(3132), 1, sym_decorator, - STATE(4081), 1, - sym_declaration, - STATE(4082), 1, + STATE(4974), 1, sym_internal_module, - STATE(4277), 1, + STATE(4975), 1, + sym_declaration, + STATE(5115), 1, aux_sym_export_statement_repeat1, - STATE(4476), 1, + STATE(5346), 1, sym_export_clause, - STATE(5228), 1, + STATE(6242), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 2, + ACTIONS(3933), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3879), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4071), 13, + STATE(4991), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -158718,11 +162330,73 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [25853] = 3, + [26183] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3421), 18, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3419), 30, + anon_sym_export, + anon_sym_type, + anon_sym_EQ, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_QMARK, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [26240] = 7, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LT, + ACTIONS(4047), 1, + anon_sym_is, + STATE(1614), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 14, + ACTIONS(4041), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158733,25 +162407,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1809), 34, - sym__automatic_semicolon, + ACTIONS(3524), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158771,28 +162440,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [25910] = 11, - ACTIONS(4031), 1, + anon_sym_implements, + [26304] = 8, + ACTIONS(4045), 1, + anon_sym_LT, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4055), 1, anon_sym_DOT, - ACTIONS(4037), 1, - anon_sym_QMARK_DOT, - ACTIONS(4039), 1, - anon_sym_LT, - STATE(1519), 1, + STATE(1597), 1, sym_type_arguments, - STATE(1777), 1, + STATE(1598), 1, sym_arguments, - STATE(4786), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 12, + ACTIONS(4049), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158805,7 +162468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4029), 27, + ACTIONS(4051), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158814,7 +162477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -158832,94 +162497,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [25982] = 22, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(251), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3909), 1, - anon_sym_LBRACK, - ACTIONS(4043), 1, - anon_sym_async, + [26370] = 8, ACTIONS(4045), 1, - anon_sym_static, - ACTIONS(4047), 1, - anon_sym_readonly, + anon_sym_LT, ACTIONS(4053), 1, - anon_sym_override, - STATE(2740), 1, - sym_accessibility_modifier, - STATE(2780), 1, - sym_override_modifier, + anon_sym_LPAREN, + ACTIONS(4061), 1, + anon_sym_DOT, + STATE(1599), 1, + sym_type_arguments, + STATE(1600), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3406), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3913), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4049), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4051), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3630), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5138), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5180), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5612), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4041), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [26076] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4039), 1, - anon_sym_LT, - ACTIONS(4059), 1, - anon_sym_DOT, - STATE(1600), 1, - sym_arguments, - STATE(1601), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4055), 12, + ACTIONS(4057), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158932,7 +162526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4057), 30, + ACTIONS(4059), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158963,21 +162557,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26142] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4039), 1, + [26436] = 8, + ACTIONS(4045), 1, anon_sym_LT, - ACTIONS(4065), 1, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4063), 1, anon_sym_DOT, + STATE(1601), 1, + sym_type_arguments, STATE(1602), 1, sym_arguments, - STATE(1603), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4061), 12, + ACTIONS(3477), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158990,7 +162584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4063), 30, + ACTIONS(3467), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159021,21 +162615,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26208] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4039), 1, + [26502] = 11, + ACTIONS(4045), 1, anon_sym_LT, - ACTIONS(4067), 1, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, - STATE(1598), 1, - sym_arguments, - STATE(1599), 1, + ACTIONS(4073), 1, + anon_sym_QMARK_DOT, + STATE(1553), 1, sym_type_arguments, + STATE(1738), 1, + sym_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 12, + ACTIONS(4065), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159048,7 +162648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3479), 30, + ACTIONS(4067), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159057,9 +162657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -159077,21 +162675,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26274] = 7, - ACTIONS(4039), 1, - anon_sym_LT, - ACTIONS(4071), 1, + [26574] = 6, + ACTIONS(4075), 1, + anon_sym_LBRACE, + ACTIONS(4077), 1, anon_sym_DOT, - ACTIONS(4073), 1, - anon_sym_is, - STATE(1582), 1, - sym_type_arguments, + STATE(1751), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1689), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1687), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [26635] = 5, + ACTIONS(1715), 1, + anon_sym_EQ, + ACTIONS(4079), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 12, + ACTIONS(1711), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159102,9 +162750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 31, + ACTIONS(1709), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159116,6 +162765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159134,15 +162784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26338] = 4, - ACTIONS(4079), 1, - anon_sym_is, + [26694] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 13, + ACTIONS(1897), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159156,7 +162803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4077), 32, + anon_sym_QMARK, + ACTIONS(1895), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159189,11 +162837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26395] = 3, + [26749] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3170), 14, + ACTIONS(3390), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159208,7 +162856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(3172), 32, + ACTIONS(3392), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159241,11 +162889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26450] = 3, + [26804] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3174), 14, + ACTIONS(4081), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159259,8 +162907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3176), 32, + ACTIONS(4083), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159293,11 +162940,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26505] = 3, + anon_sym_is, + [26859] = 5, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(1751), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1805), 14, + ACTIONS(1689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159311,8 +162963,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1803), 32, + ACTIONS(1687), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [26918] = 6, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LT, + STATE(1614), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4041), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3524), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159324,7 +163030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159345,11 +163050,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26560] = 3, + [26979] = 6, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4089), 1, + anon_sym_DOT, + STATE(1606), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3178), 14, + ACTIONS(4085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159363,20 +163074,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3180), 32, + ACTIONS(4087), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159397,11 +163105,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26615] = 3, + [27040] = 6, + ACTIONS(4075), 1, + anon_sym_LBRACE, + ACTIONS(4091), 1, + anon_sym_DOT, + STATE(1751), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1819), 13, + ACTIONS(1689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159415,7 +163129,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 33, + ACTIONS(1687), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [27101] = 5, + ACTIONS(4045), 1, + anon_sym_LT, + STATE(1607), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4093), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159448,19 +163214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [26670] = 6, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, + [27160] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1647), 2, - sym_template_string, - sym_arguments, - ACTIONS(4081), 13, + ACTIONS(1821), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159474,12 +163232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4083), 29, + anon_sym_QMARK, + ACTIONS(1819), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -159502,13 +163262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [26731] = 3, + [27215] = 4, + ACTIONS(4047), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 14, + ACTIONS(4097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159522,8 +163286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1809), 32, + ACTIONS(4099), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159556,13 +163319,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26786] = 4, - ACTIONS(4073), 1, + [27272] = 4, + ACTIONS(4101), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 13, + ACTIONS(4093), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159576,7 +163339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 32, + ACTIONS(4095), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159609,11 +163372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26843] = 3, + [27329] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 13, + ACTIONS(3419), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159627,7 +163390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4091), 33, + anon_sym_QMARK, + ACTIONS(3421), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159660,16 +163424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [26898] = 5, - ACTIONS(4039), 1, - anon_sym_LT, - STATE(1589), 1, - sym_type_arguments, + [27384] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 12, + ACTIONS(3394), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159680,9 +163439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4077), 32, + anon_sym_QMARK, + ACTIONS(3396), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159715,17 +163476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26957] = 6, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, - anon_sym_DOT, - STATE(1591), 1, - sym_arguments, + [27439] = 4, + ACTIONS(4047), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 13, + ACTIONS(4103), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159739,17 +163496,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4095), 30, + ACTIONS(4105), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159770,17 +163529,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27018] = 6, - ACTIONS(4039), 1, - anon_sym_LT, - ACTIONS(4071), 1, - anon_sym_DOT, - STATE(1582), 1, - sym_type_arguments, + [27496] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 12, + ACTIONS(1825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159791,9 +163544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 31, + ACTIONS(1823), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159805,6 +163559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159825,13 +163580,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27079] = 4, - ACTIONS(4073), 1, anon_sym_is, + [27551] = 6, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + STATE(1802), 2, + sym_template_string, + sym_arguments, + ACTIONS(4107), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159845,13 +163606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4101), 32, + ACTIONS(4109), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -159874,25 +163634,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27136] = 5, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(4103), 1, - sym__automatic_semicolon, + [27612] = 4, + ACTIONS(4115), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1699), 13, + ACTIONS(4111), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -159900,7 +163655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1697), 31, + ACTIONS(4113), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159931,43 +163686,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27195] = 6, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_DOT, - STATE(1724), 1, - sym_statement_block, + [27668] = 6, + ACTIONS(4115), 1, + anon_sym_AMP, + ACTIONS(4121), 1, + anon_sym_PIPE, + ACTIONS(4123), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 13, + ACTIONS(4117), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1715), 30, - sym__automatic_semicolon, + ACTIONS(4119), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159986,43 +163741,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [27256] = 6, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4109), 1, - anon_sym_DOT, - STATE(1724), 1, - sym_statement_block, + anon_sym_implements, + [27728] = 6, + ACTIONS(4115), 1, + anon_sym_AMP, + ACTIONS(4121), 1, + anon_sym_PIPE, + ACTIONS(4123), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 13, + ACTIONS(4125), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1715), 30, - sym__automatic_semicolon, + ACTIONS(4127), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160041,16 +163795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [27317] = 5, - ACTIONS(4105), 1, - anon_sym_LBRACE, - STATE(1724), 1, - sym_statement_block, + anon_sym_implements, + [27788] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 13, + ACTIONS(4129), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160064,18 +163814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1715), 31, - sym__automatic_semicolon, + ACTIONS(4131), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -160095,12 +163845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [27376] = 3, + anon_sym_extends, + anon_sym_implements, + [27842] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 13, + ACTIONS(4103), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160114,7 +163865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4113), 32, + ACTIONS(4105), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160147,11 +163898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27430] = 3, + [27896] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 13, + ACTIONS(3358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160165,7 +163916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4117), 32, + ACTIONS(3360), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160198,25 +163949,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27484] = 3, + [27950] = 6, + ACTIONS(4115), 1, + anon_sym_AMP, + ACTIONS(4121), 1, + anon_sym_PIPE, + ACTIONS(4123), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 13, + ACTIONS(4133), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4121), 32, + ACTIONS(4135), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160247,13 +164002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27538] = 3, + [28010] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160267,7 +164021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4121), 32, + ACTIONS(4139), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160300,95 +164054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27592] = 36, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4131), 1, - anon_sym_RPAREN, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4754), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, - sym_optional_chain, - STATE(5737), 1, - sym_type_annotation, + [28064] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27712] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4119), 13, + ACTIONS(4141), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160402,7 +164072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4121), 32, + ACTIONS(4143), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160435,11 +164105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27766] = 3, + [28118] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 13, + ACTIONS(4141), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160453,7 +164123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4175), 32, + ACTIONS(4143), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160486,11 +164156,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27820] = 3, + [28172] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 13, + ACTIONS(4141), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160504,7 +164174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4175), 32, + ACTIONS(4143), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160537,11 +164207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27874] = 3, + [28226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 13, + ACTIONS(4145), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160555,7 +164225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4175), 32, + ACTIONS(4147), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160588,11 +164258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27928] = 3, + [28280] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 13, + ACTIONS(4145), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160606,7 +164276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4179), 32, + ACTIONS(4147), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160639,11 +164309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27982] = 3, + [28334] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 13, + ACTIONS(4145), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160657,7 +164327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4179), 32, + ACTIONS(4147), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160690,11 +164360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28036] = 3, + [28388] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 13, + ACTIONS(4129), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160708,7 +164378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4179), 32, + ACTIONS(4131), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160741,11 +164411,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28090] = 3, + [28442] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 13, + ACTIONS(4149), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160759,7 +164429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4183), 32, + ACTIONS(4151), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160792,29 +164462,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28144] = 6, - ACTIONS(4189), 1, - anon_sym_AMP, - ACTIONS(4191), 1, - anon_sym_PIPE, - ACTIONS(4193), 1, - anon_sym_extends, + [28496] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 11, + ACTIONS(4129), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4187), 31, + ACTIONS(4131), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160845,16 +164511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28204] = 5, - ACTIONS(4031), 1, - anon_sym_LPAREN, - STATE(1672), 1, - sym_arguments, + [28550] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 13, + ACTIONS(4153), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160868,12 +164531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4197), 30, + ACTIONS(4155), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -160898,96 +164562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28262] = 36, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - ACTIONS(4199), 1, - anon_sym_RPAREN, - STATE(1493), 1, - sym_type_arguments, - STATE(4754), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, - sym_optional_chain, - STATE(5772), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28382] = 3, + [28604] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 13, + ACTIONS(2372), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161001,7 +164582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4203), 32, + ACTIONS(2370), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161034,13 +164615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28436] = 4, - ACTIONS(4077), 1, - anon_sym_extends, + [28658] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 13, + ACTIONS(4157), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161054,7 +164633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4207), 31, + ACTIONS(4159), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161085,30 +164664,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [28492] = 6, - ACTIONS(4189), 1, - anon_sym_AMP, - ACTIONS(4191), 1, - anon_sym_PIPE, - ACTIONS(4193), 1, anon_sym_extends, + anon_sym_implements, + [28712] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 11, + ACTIONS(4161), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4207), 31, + ACTIONS(4163), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161139,30 +164715,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [28552] = 6, - ACTIONS(4189), 1, - anon_sym_AMP, - ACTIONS(4191), 1, - anon_sym_PIPE, - ACTIONS(4193), 1, anon_sym_extends, + anon_sym_implements, + [28766] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4209), 11, + ACTIONS(4165), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4211), 31, + ACTIONS(4167), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161193,79 +164766,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28612] = 19, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3876), 1, - anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4223), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + [28820] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4225), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [28698] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4227), 13, + ACTIONS(4169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161279,7 +164786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4229), 32, + ACTIONS(4171), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161312,78 +164819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28752] = 19, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3885), 1, - anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4223), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4221), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4225), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [28838] = 3, + [28874] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 13, + ACTIONS(4169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161397,7 +164837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4203), 32, + ACTIONS(4171), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161430,19 +164870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28892] = 7, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4037), 1, - anon_sym_QMARK_DOT, - STATE(4786), 1, - sym_optional_chain, + [28928] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1847), 13, + ACTIONS(4169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161456,7 +164888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1849), 28, + ACTIONS(4171), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161466,7 +164898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -161484,12 +164919,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28954] = 3, + [28982] = 36, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(3540), 1, + anon_sym_COLON, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4181), 1, + anon_sym_RPAREN, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, + anon_sym_AMP_AMP, + ACTIONS(4189), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4191), 1, + anon_sym_GT_GT, + ACTIONS(4195), 1, + anon_sym_AMP, + ACTIONS(4197), 1, + anon_sym_CARET, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(4203), 1, + anon_sym_PERCENT, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, + sym_optional_chain, + STATE(7275), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4227), 13, + ACTIONS(4173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4183), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4193), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4201), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4213), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4209), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29102] = 19, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4016), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4233), 1, + anon_sym_readonly, + STATE(3163), 1, + sym_override_modifier, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [29188] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161503,7 +165090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4229), 32, + ACTIONS(4239), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161536,11 +165123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29008] = 3, + [29242] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 13, + ACTIONS(4237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161554,7 +165141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4233), 32, + ACTIONS(4239), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161587,11 +165174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29062] = 3, + [29296] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 13, + ACTIONS(4237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161605,7 +165192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4237), 32, + ACTIONS(4239), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161638,11 +165225,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29116] = 3, + [29350] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 13, + ACTIONS(4241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161656,7 +165243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4233), 32, + ACTIONS(4243), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161689,11 +165276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29170] = 3, + [29404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 13, + ACTIONS(4241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161707,7 +165294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4237), 32, + ACTIONS(4243), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161740,11 +165327,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29224] = 3, + [29458] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 13, + ACTIONS(4241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161758,7 +165345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4241), 32, + ACTIONS(4243), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161791,80 +165378,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29278] = 19, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4223), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + [29512] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4225), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [29364] = 4, - ACTIONS(4243), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1823), 13, + ACTIONS(4245), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161878,7 +165396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1821), 31, + ACTIONS(4247), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161909,12 +165427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [29420] = 3, + [29566] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 13, + ACTIONS(2380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161928,7 +165447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4247), 32, + ACTIONS(2378), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161961,139 +165480,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29474] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3354), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3356), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + [29620] = 36, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(3540), 1, anon_sym_COLON, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4187), 1, anon_sym_AMP_AMP, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4191), 1, + anon_sym_GT_GT, + ACTIONS(4195), 1, + anon_sym_AMP, + ACTIONS(4197), 1, anon_sym_CARET, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(4203), 1, anon_sym_PERCENT, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4219), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [29528] = 3, + ACTIONS(4221), 1, + sym__ternary_qmark, + ACTIONS(4249), 1, + anon_sym_RPAREN, + STATE(1507), 1, + sym_type_arguments, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, + sym_optional_chain, + STATE(7090), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 13, + ACTIONS(4173), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4193), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1813), 32, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [29582] = 3, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4209), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29740] = 6, + ACTIONS(4115), 1, + anon_sym_AMP, + ACTIONS(4121), 1, + anon_sym_PIPE, + ACTIONS(4123), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1841), 13, + ACTIONS(4251), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 32, - sym__automatic_semicolon, + ACTIONS(4253), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -162113,26 +165617,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [29636] = 7, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(2362), 1, + anon_sym_implements, + [29800] = 6, + ACTIONS(4115), 1, + anon_sym_AMP, + ACTIONS(4121), 1, + anon_sym_PIPE, + ACTIONS(4123), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4252), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1701), 10, + ACTIONS(4255), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -162140,14 +165640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 28, + ACTIONS(4257), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162169,26 +165672,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29698] = 7, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, + [29860] = 6, + ACTIONS(4115), 1, + anon_sym_AMP, + ACTIONS(4121), 1, + anon_sym_PIPE, + ACTIONS(4123), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(4259), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -162196,16 +165694,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 27, + ACTIONS(4261), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -162224,40 +165726,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29760] = 7, - ACTIONS(4257), 1, - anon_sym_EQ, - ACTIONS(4267), 1, + [29920] = 4, + ACTIONS(4095), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4261), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4264), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4255), 10, + ACTIONS(4255), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 28, + ACTIONS(4257), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162279,38 +165778,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29822] = 5, + [29976] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4269), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4271), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(4259), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 29, + ACTIONS(4261), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162331,12 +165827,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [29880] = 3, + [30030] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3342), 13, + ACTIONS(4263), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162350,7 +165847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3344), 32, + ACTIONS(4265), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162383,36 +165880,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29934] = 5, - ACTIONS(4279), 1, - anon_sym_QMARK, + [30084] = 6, + ACTIONS(4115), 1, + anon_sym_AMP, + ACTIONS(4121), 1, + anon_sym_PIPE, + ACTIONS(4123), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4273), 13, + ACTIONS(4267), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 29, + ACTIONS(4269), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -162436,11 +165934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29992] = 3, + [30144] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3278), 13, + ACTIONS(4271), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162454,7 +165952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 32, + ACTIONS(4273), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162487,11 +165985,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30046] = 3, + [30198] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 13, + ACTIONS(4275), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162505,7 +166003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4241), 32, + ACTIONS(4277), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162538,11 +166036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30100] = 3, + [30252] = 5, + ACTIONS(4053), 1, + anon_sym_LPAREN, + STATE(1759), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + ACTIONS(4279), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162556,13 +166058,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4101), 32, + ACTIONS(4281), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -162587,19 +166088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30154] = 6, - ACTIONS(4281), 1, - anon_sym_LBRACE, - ACTIONS(4283), 1, - anon_sym_DOT, - STATE(1770), 1, - sym_statement_block, + [30310] = 5, + ACTIONS(4289), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 13, + ACTIONS(4287), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162613,17 +166112,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1715), 29, + ACTIONS(4285), 29, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162643,17 +166142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30214] = 6, - ACTIONS(4281), 1, - anon_sym_LBRACE, - ACTIONS(4285), 1, - anon_sym_DOT, - STATE(1770), 1, - sym_statement_block, + [30368] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 13, + ACTIONS(4291), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162667,9 +166160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1715), 29, + ACTIONS(4293), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162678,6 +166172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162696,16 +166191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30274] = 5, - ACTIONS(4281), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_statement_block, + [30422] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 13, + ACTIONS(4295), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162719,9 +166211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1715), 30, + ACTIONS(4297), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162749,12 +166242,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30332] = 3, + [30476] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 13, + ACTIONS(4291), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162768,7 +166262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4247), 32, + ACTIONS(4293), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162801,11 +166295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30386] = 3, + [30530] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 13, + ACTIONS(4295), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162819,7 +166313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4289), 32, + ACTIONS(4297), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162852,11 +166346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30440] = 3, + [30584] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4291), 13, + ACTIONS(4299), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162870,7 +166364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4293), 32, + ACTIONS(4301), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162903,11 +166397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30494] = 3, + [30638] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 13, + ACTIONS(4303), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162921,7 +166415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 32, + ACTIONS(4305), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162954,29 +166448,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30548] = 6, - ACTIONS(4189), 1, - anon_sym_AMP, - ACTIONS(4191), 1, - anon_sym_PIPE, - ACTIONS(4193), 1, - anon_sym_extends, + [30692] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 11, + ACTIONS(4299), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4297), 31, + ACTIONS(4301), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163007,14 +166497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30608] = 4, - ACTIONS(4303), 1, - anon_sym_DOT, + [30746] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4299), 13, + ACTIONS(4303), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163028,7 +166517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4301), 31, + ACTIONS(4305), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163040,6 +166529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163060,11 +166550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30664] = 3, + [30800] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4305), 13, + ACTIONS(4307), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163078,7 +166568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4307), 32, + ACTIONS(4309), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163111,13 +166601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30718] = 4, - ACTIONS(4309), 1, - anon_sym_LBRACK, + [30854] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4305), 13, + ACTIONS(4311), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163131,7 +166619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4307), 31, + ACTIONS(4313), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163141,6 +166629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163163,11 +166652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30774] = 3, + [30908] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 13, + ACTIONS(4307), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163181,7 +166670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4077), 32, + ACTIONS(4309), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163214,7 +166703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30828] = 3, + [30962] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -163265,29 +166754,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30882] = 6, - ACTIONS(4189), 1, - anon_sym_AMP, - ACTIONS(4191), 1, - anon_sym_PIPE, - ACTIONS(4193), 1, - anon_sym_extends, + [31016] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 11, + ACTIONS(4315), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 31, + ACTIONS(4317), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163318,12 +166803,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30942] = 3, + [31070] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4319), 13, + ACTIONS(1859), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163337,18 +166823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4321), 32, + ACTIONS(1857), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163368,15 +166855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [30996] = 4, - ACTIONS(4103), 1, - sym__automatic_semicolon, + anon_sym_PIPE_RBRACE, + [31124] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1699), 13, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163390,18 +166874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1697), 31, + ACTIONS(1861), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163421,96 +166906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [31052] = 36, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - ACTIONS(4323), 1, - anon_sym_RPAREN, - STATE(1493), 1, - sym_type_arguments, - STATE(4754), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, - sym_optional_chain, - STATE(5522), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [31172] = 3, + anon_sym_PIPE_RBRACE, + [31178] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 13, + ACTIONS(4319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163524,7 +166925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4327), 32, + ACTIONS(4321), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163557,35 +166958,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31226] = 3, + [31232] = 7, + ACTIONS(1715), 1, + anon_sym_EQ, + ACTIONS(2366), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2364), 13, + ACTIONS(4323), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4326), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1713), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2362), 32, + ACTIONS(1717), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163606,40 +167012,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31280] = 4, - ACTIONS(4067), 1, - anon_sym_DOT, + [31294] = 19, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3930), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4233), 1, + anon_sym_readonly, + STATE(3163), 1, + sym_override_modifier, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [31380] = 7, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 13, + ACTIONS(4335), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4338), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4329), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3479), 31, + ACTIONS(4333), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163658,40 +167134,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31336] = 5, - ACTIONS(4331), 1, - anon_sym_QMARK, + [31442] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 2, - anon_sym_RPAREN, + ACTIONS(4343), 3, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4273), 13, + ACTIONS(4345), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 29, + ACTIONS(3437), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163713,13 +167188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31394] = 4, - ACTIONS(4337), 1, - anon_sym_DOT, + [31500] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 13, + ACTIONS(3270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163733,7 +167206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4335), 31, + ACTIONS(3272), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163745,6 +167218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163765,58 +167239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31450] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4339), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4341), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [31504] = 3, + [31554] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -163867,11 +167290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31558] = 3, + [31608] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 13, + ACTIONS(4347), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163885,7 +167308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4345), 32, + ACTIONS(4349), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163918,11 +167341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31612] = 3, + [31662] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 13, + ACTIONS(3266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163936,7 +167359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4267), 32, + ACTIONS(3268), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163969,18 +167392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31666] = 4, - ACTIONS(4189), 1, - anon_sym_AMP, + [31716] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 12, + ACTIONS(4351), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163988,7 +167410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 32, + ACTIONS(4353), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164021,47 +167443,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31722] = 19, - ACTIONS(1621), 1, + [31770] = 19, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3689), 1, + ACTIONS(3697), 1, anon_sym_override, - ACTIONS(3873), 1, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3888), 1, + ACTIONS(4019), 1, anon_sym_RBRACE, - ACTIONS(4213), 1, + ACTIONS(4223), 1, anon_sym_STAR, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4217), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(4219), 1, + ACTIONS(4229), 1, anon_sym_async, - ACTIONS(4223), 1, + ACTIONS(4233), 1, anon_sym_readonly, - STATE(2769), 1, + STATE(3163), 1, sym_override_modifier, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 2, + ACTIONS(4231), 2, sym_number, sym_private_property_identifier, - ACTIONS(4225), 2, + ACTIONS(4235), 2, anon_sym_get, anon_sym_set, - STATE(3069), 3, + STATE(3513), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -164069,7 +167491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3667), 18, + ACTIONS(3671), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -164088,18 +167510,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31808] = 4, - ACTIONS(4189), 1, - anon_sym_AMP, + [31856] = 5, + ACTIONS(4357), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 12, + ACTIONS(4355), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164107,15 +167533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 32, + ACTIONS(4285), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -164138,13 +167562,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31864] = 3, + [31914] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4359), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164158,7 +167581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4269), 32, + ACTIONS(4361), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164191,11 +167614,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31918] = 3, + [31968] = 6, + ACTIONS(4363), 1, + anon_sym_LBRACE, + ACTIONS(4365), 1, + anon_sym_DOT, + STATE(1750), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4357), 13, + ACTIONS(1689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164209,10 +167638,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4359), 32, + ACTIONS(1687), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -164221,7 +167649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164240,13 +167667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31972] = 3, + [32028] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4361), 13, + ACTIONS(4367), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164260,7 +167686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4363), 32, + ACTIONS(4369), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164293,29 +167719,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32026] = 6, - ACTIONS(4189), 1, - anon_sym_AMP, - ACTIONS(4191), 1, - anon_sym_PIPE, - ACTIONS(4193), 1, - anon_sym_extends, + [32082] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4365), 11, + ACTIONS(4371), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4367), 31, + ACTIONS(4373), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164346,31 +167768,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [32086] = 6, - ACTIONS(4307), 1, anon_sym_extends, - ACTIONS(4309), 1, - anon_sym_LBRACK, + anon_sym_implements, + [32136] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4305), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4369), 11, + ACTIONS(4375), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 30, + ACTIONS(4377), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164380,6 +167798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164400,28 +167819,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32146] = 4, - ACTIONS(4377), 1, + [32190] = 6, + ACTIONS(4115), 1, + anon_sym_AMP, + ACTIONS(4121), 1, + anon_sym_PIPE, + ACTIONS(4123), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4373), 13, + ACTIONS(4379), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 31, + ACTIONS(4381), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164453,9 +167875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32202] = 4, - ACTIONS(4309), 1, - anon_sym_LBRACK, + [32250] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -164473,7 +167893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4381), 31, + ACTIONS(4381), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164483,6 +167903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164505,11 +167926,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32258] = 3, + [32304] = 4, + ACTIONS(4387), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4331), 13, + ACTIONS(4383), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164523,7 +167946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4329), 32, + ACTIONS(4385), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164535,7 +167958,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164556,29 +167978,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32312] = 6, - ACTIONS(4189), 1, - anon_sym_AMP, - ACTIONS(4191), 1, - anon_sym_PIPE, - ACTIONS(4193), 1, - anon_sym_extends, + [32360] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 11, + ACTIONS(3653), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4385), 31, + ACTIONS(3457), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164609,12 +168027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32372] = 3, + [32414] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 13, + ACTIONS(3655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164628,7 +168047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4389), 32, + ACTIONS(3463), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164661,95 +168080,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32426] = 36, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(4031), 1, + [32468] = 4, + ACTIONS(4390), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1935), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1933), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4035), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4165), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - ACTIONS(4391), 1, - anon_sym_RPAREN, - STATE(1493), 1, - sym_type_arguments, - STATE(4754), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, - sym_optional_chain, - STATE(5491), 1, - sym_type_annotation, + anon_sym_implements, + [32524] = 4, + ACTIONS(4392), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4383), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4385), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32546] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32580] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 13, + ACTIONS(4395), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164763,7 +168202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4395), 32, + ACTIONS(4397), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164796,11 +168235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32600] = 3, + [32634] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 13, + ACTIONS(4399), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164814,7 +168253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4399), 32, + ACTIONS(4401), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164847,11 +168286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32654] = 3, + [32688] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4401), 13, + ACTIONS(4403), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164865,7 +168304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4403), 32, + ACTIONS(4405), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164898,29 +168337,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32708] = 6, - ACTIONS(4189), 1, - anon_sym_AMP, - ACTIONS(4191), 1, - anon_sym_PIPE, - ACTIONS(4193), 1, - anon_sym_extends, + [32742] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4401), 11, + ACTIONS(4407), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4403), 31, + ACTIONS(4409), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164951,14 +168386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32768] = 4, - ACTIONS(3530), 1, - anon_sym_EQ, + [32796] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, + ACTIONS(4411), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164972,7 +168406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 31, + ACTIONS(4413), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165003,12 +168437,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32824] = 3, + [32850] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 13, + ACTIONS(4415), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165022,7 +168457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2378), 32, + ACTIONS(4417), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165055,11 +168490,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32878] = 3, + [32904] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2368), 13, + ACTIONS(4419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165073,7 +168508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2366), 32, + ACTIONS(4421), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165106,11 +168541,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32932] = 3, + [32958] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4279), 13, + ACTIONS(4423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165124,7 +168559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4277), 32, + ACTIONS(4425), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165157,11 +168592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32986] = 3, + [33012] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 13, + ACTIONS(4289), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165175,7 +168610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4407), 32, + ACTIONS(4287), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165208,11 +168643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33040] = 3, + [33066] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 13, + ACTIONS(2364), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165226,7 +168661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4411), 32, + ACTIONS(2362), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165259,11 +168694,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33094] = 3, + [33120] = 6, + ACTIONS(4363), 1, + anon_sym_LBRACE, + ACTIONS(4427), 1, + anon_sym_DOT, + STATE(1750), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 13, + ACTIONS(1689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165277,10 +168718,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4415), 32, + ACTIONS(1687), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -165289,7 +168729,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165308,13 +168747,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33148] = 3, + [33180] = 5, + ACTIONS(4363), 1, + anon_sym_LBRACE, + STATE(1750), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 13, + ACTIONS(1689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165328,10 +168770,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4419), 32, + ACTIONS(1687), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -165359,13 +168800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33202] = 3, + [33238] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4421), 13, + ACTIONS(4429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165379,7 +168819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4423), 32, + ACTIONS(4431), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165412,78 +168852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33256] = 19, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3891), 1, - anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4223), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + [33292] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4225), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [33342] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4425), 13, + ACTIONS(4433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165497,7 +168870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4427), 32, + ACTIONS(4435), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165530,11 +168903,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33396] = 3, + [33346] = 36, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(3540), 1, + anon_sym_COLON, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, + anon_sym_AMP_AMP, + ACTIONS(4189), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4191), 1, + anon_sym_GT_GT, + ACTIONS(4195), 1, + anon_sym_AMP, + ACTIONS(4197), 1, + anon_sym_CARET, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(4203), 1, + anon_sym_PERCENT, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, + sym__ternary_qmark, + ACTIONS(4437), 1, + anon_sym_RPAREN, + STATE(1507), 1, + sym_type_arguments, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, + sym_optional_chain, + STATE(7218), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 13, + ACTIONS(4173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4183), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4193), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4201), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4213), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4209), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [33466] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4357), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165548,7 +169005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 32, + ACTIONS(4355), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165581,11 +169038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33450] = 3, + [33520] = 4, + ACTIONS(4443), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 13, + ACTIONS(4439), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165599,7 +169058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4435), 32, + ACTIONS(4441), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165609,7 +169068,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165632,11 +169090,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33504] = 3, + [33576] = 4, + ACTIONS(4449), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 13, + ACTIONS(4445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165650,7 +169110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 32, + ACTIONS(4447), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165681,27 +169141,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33558] = 3, + [33632] = 6, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 13, + ACTIONS(4455), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4451), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 32, + ACTIONS(4453), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165711,7 +169175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165732,27 +169195,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33612] = 3, + [33692] = 6, + ACTIONS(4115), 1, + anon_sym_AMP, + ACTIONS(4121), 1, + anon_sym_PIPE, + ACTIONS(4123), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 13, + ACTIONS(4459), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4439), 32, + ACTIONS(4461), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165783,13 +169249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33666] = 3, + [33752] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(4463), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165803,7 +169268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 32, + ACTIONS(4465), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165836,11 +169301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33720] = 3, + [33806] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 13, + ACTIONS(4467), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165854,7 +169319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4439), 32, + ACTIONS(4469), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165887,11 +169352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33774] = 3, + [33860] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 13, + ACTIONS(4345), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165905,7 +169370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4439), 32, + ACTIONS(4343), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165938,17 +169403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33828] = 3, + [33914] = 4, + ACTIONS(4115), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(4471), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165956,7 +169422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 32, + ACTIONS(4473), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165989,11 +169455,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33882] = 3, + [33970] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(4475), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166007,7 +169473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 32, + ACTIONS(4477), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166040,11 +169506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33936] = 3, + [34024] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4449), 13, + ACTIONS(4479), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166058,7 +169524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4451), 32, + ACTIONS(4341), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166091,39 +169557,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33990] = 4, - ACTIONS(4457), 1, + [34078] = 19, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4233), 1, + anon_sym_readonly, + STATE(3163), 1, + sym_override_modifier, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [34164] = 7, + ACTIONS(3499), 1, anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4453), 13, + ACTIONS(3467), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3477), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4455), 31, + ACTIONS(3437), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -166141,13 +169678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [34046] = 3, + [34226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(4481), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166161,7 +169697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 32, + ACTIONS(4483), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166194,11 +169730,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34100] = 3, + [34280] = 4, + ACTIONS(4489), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4460), 13, + ACTIONS(4485), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166212,7 +169750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4462), 32, + ACTIONS(4487), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166224,7 +169762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166245,11 +169782,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34154] = 3, + [34336] = 4, + ACTIONS(4063), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4464), 13, + ACTIONS(3477), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166263,7 +169802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4466), 32, + ACTIONS(3467), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166275,7 +169814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166296,11 +169834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34208] = 3, + [34392] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4468), 13, + ACTIONS(2368), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166314,7 +169852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4470), 32, + ACTIONS(2366), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166347,11 +169885,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34262] = 3, + [34446] = 4, + ACTIONS(4079), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4472), 13, + ACTIONS(1711), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166365,7 +169905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4474), 32, + ACTIONS(1709), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166396,13 +169936,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [34316] = 3, + [34502] = 7, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4073), 1, + anon_sym_QMARK_DOT, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 13, + ACTIONS(1749), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166416,7 +169963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2370), 32, + ACTIONS(1751), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166426,10 +169973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -166447,13 +169991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [34370] = 3, + [34564] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3665), 13, + ACTIONS(4491), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166467,7 +170010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3469), 32, + ACTIONS(4493), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166500,11 +170043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34424] = 3, + [34618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3661), 13, + ACTIONS(4093), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166518,7 +170061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3471), 32, + ACTIONS(4095), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166551,13 +170094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34478] = 4, - ACTIONS(4476), 1, - anon_sym_DOT, + [34672] = 4, + ACTIONS(4443), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4453), 13, + ACTIONS(4455), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166571,7 +170114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4455), 31, + ACTIONS(4457), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166581,8 +170124,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166603,11 +170146,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34534] = 3, + [34728] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4479), 13, + ACTIONS(4455), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166621,7 +170164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 32, + ACTIONS(4457), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166654,29 +170197,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34588] = 6, - ACTIONS(4189), 1, - anon_sym_AMP, - ACTIONS(4191), 1, - anon_sym_PIPE, - ACTIONS(4193), 1, - anon_sym_extends, + [34782] = 19, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4233), 1, + anon_sym_readonly, + STATE(3163), 1, + sym_override_modifier, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [34868] = 4, + ACTIONS(4499), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4479), 11, + ACTIONS(4495), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 31, + ACTIONS(4497), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166688,7 +170296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166707,12 +170314,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34648] = 3, + [34924] = 4, + ACTIONS(3538), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166726,7 +170336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4485), 32, + ACTIONS(3437), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166757,13 +170367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [34702] = 3, + [34980] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4487), 13, + ACTIONS(4097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166777,7 +170386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4489), 32, + ACTIONS(4099), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166810,62 +170419,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34756] = 3, + [35034] = 36, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(3540), 1, + anon_sym_COLON, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, + anon_sym_AMP_AMP, + ACTIONS(4189), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4191), 1, + anon_sym_GT_GT, + ACTIONS(4195), 1, + anon_sym_AMP, + ACTIONS(4197), 1, + anon_sym_CARET, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(4203), 1, + anon_sym_PERCENT, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, + sym__ternary_qmark, + ACTIONS(4501), 1, + anon_sym_RPAREN, + STATE(1507), 1, + sym_type_arguments, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, + sym_optional_chain, + STATE(7289), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4491), 13, + ACTIONS(4173), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4193), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4493), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [34810] = 3, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4209), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35154] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 13, + ACTIONS(4503), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166879,7 +170521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 32, + ACTIONS(4505), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166912,11 +170554,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34864] = 3, + [35208] = 16, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4507), 1, + anon_sym_LBRACK, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [35287] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4499), 13, + ACTIONS(4509), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166930,7 +170635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4501), 32, + ACTIONS(4511), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166961,64 +170666,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [34918] = 3, + [35340] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, + anon_sym_AMP_AMP, + ACTIONS(4521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, + anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4549), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4503), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4505), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [34972] = 3, + ACTIONS(4515), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [35451] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1923), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167032,7 +170764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1925), 31, + ACTIONS(3437), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167064,487 +170796,472 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35025] = 32, + [35504] = 24, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(233), 1, + anon_sym_STAR, + ACTIONS(2026), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(4555), 1, + anon_sym_RBRACE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(4559), 1, + anon_sym_async, + ACTIONS(4563), 1, + anon_sym_static, + ACTIONS(4565), 1, + anon_sym_readonly, + ACTIONS(4571), 1, + anon_sym_override, + STATE(2798), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + STATE(3147), 1, + sym_accessibility_modifier, + STATE(3167), 1, + sym_override_modifier, + STATE(5737), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4561), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4567), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4569), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4071), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5735), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4551), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [35599] = 25, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4523), 1, - anon_sym_AMP_AMP, - ACTIONS(4525), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4535), 1, - anon_sym_PIPE, - ACTIONS(4539), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4551), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4557), 1, - sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, + ACTIONS(4577), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4511), 4, + ACTIONS(4575), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [35136] = 32, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [35696] = 24, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4523), 1, - anon_sym_AMP_AMP, - ACTIONS(4525), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4533), 1, - anon_sym_CARET, - ACTIONS(4535), 1, - anon_sym_PIPE, - ACTIONS(4539), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4551), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4557), 1, - sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, + ACTIONS(4577), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4559), 4, + ACTIONS(4575), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [35247] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4523), 1, anon_sym_AMP_AMP, - ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4531), 1, - anon_sym_AMP, - ACTIONS(4533), 1, anon_sym_CARET, - ACTIONS(4535), 1, - anon_sym_PIPE, - ACTIONS(4539), 1, - anon_sym_PERCENT, - ACTIONS(4541), 1, - anon_sym_STAR_STAR, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4551), 1, anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(4557), 1, - sym__ternary_qmark, - STATE(1876), 1, + [35791] = 16, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4615), 1, + anon_sym_LT, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4611), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4537), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4545), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4561), 4, - sym__automatic_semicolon, + ACTIONS(4613), 18, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [35358] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4523), 1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, - ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4531), 1, - anon_sym_AMP, - ACTIONS(4533), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4535), 1, - anon_sym_PIPE, - ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4551), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4557), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_instanceof, + [35870] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(1749), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4517), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4537), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(1751), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4545), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4563), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [35469] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [35923] = 23, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4567), 1, - anon_sym_COMMA, - ACTIONS(4570), 1, - anon_sym_RBRACE, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, - anon_sym_AMP, - ACTIONS(4586), 1, - anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4604), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, - sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4574), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4582), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4577), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35584] = 32, + ACTIONS(4575), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [36016] = 17, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, - anon_sym_GT_GT, - ACTIONS(4584), 1, - anon_sym_AMP, - ACTIONS(4586), 1, - anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4618), 1, anon_sym_LT, - ACTIONS(4604), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, - sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4582), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4602), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4608), 4, + ACTIONS(4577), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 18, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [35695] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [36097] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4610), 13, + ACTIONS(1831), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167558,7 +171275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4612), 31, + ACTIONS(1833), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167590,11 +171307,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35748] = 3, + [36150] = 16, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4507), 1, + anon_sym_LBRACK, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [36229] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4623), 2, + anon_sym_get, + anon_sym_set, + STATE(4279), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [36306] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4614), 13, + ACTIONS(1757), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167608,7 +171450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4616), 31, + ACTIONS(1759), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167640,248 +171482,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35801] = 32, + [36359] = 27, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, + ACTIONS(4577), 1, anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4604), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, - sym__ternary_qmark, - STATE(1876), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4511), 4, + ACTIONS(4575), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [35912] = 32, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [36460] = 26, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, + ACTIONS(4577), 1, anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4604), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, - sym__ternary_qmark, - STATE(1876), 1, + ACTIONS(4627), 1, + anon_sym_PIPE, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4559), 4, + ACTIONS(4575), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [36023] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [36559] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1869), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4515), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1871), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4519), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4521), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4523), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4531), 1, - anon_sym_AMP, - ACTIONS(4533), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4535), 1, - anon_sym_PIPE, - ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4551), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4557), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_implements, + [36612] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(1879), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4517), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4537), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(1881), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4545), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4618), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [36134] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36665] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4620), 13, + ACTIONS(4629), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167895,7 +171747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4622), 31, + ACTIONS(4631), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167927,112 +171779,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36187] = 32, + [36718] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4635), 1, + anon_sym_COMMA, + ACTIONS(4638), 1, + anon_sym_RBRACE, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4642), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4561), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [36298] = 13, - ACTIONS(821), 1, + [36833] = 13, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4628), 1, + ACTIONS(4656), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4624), 12, + ACTIONS(4652), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168045,7 +171899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 20, + ACTIONS(4654), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -168066,40 +171920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [36371] = 16, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4635), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [36906] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4631), 11, + ACTIONS(4659), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -168108,14 +171935,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4633), 18, + ACTIONS(4661), 31, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168129,109 +171965,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36450] = 32, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, - anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, - anon_sym_PERCENT, - ACTIONS(4662), 1, - anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - ACTIONS(4672), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4668), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4640), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [36561] = 12, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4680), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_implements, + [36959] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4676), 12, + ACTIONS(4663), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168242,15 +171985,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4678), 22, + ACTIONS(4665), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168266,42 +172017,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [36632] = 6, - ACTIONS(4087), 1, - anon_sym_extends, + anon_sym_implements, + [37012] = 16, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4667), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4683), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4686), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4611), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 28, + ACTIONS(4613), 18, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168315,25 +172083,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [37091] = 14, + ACTIONS(89), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [36691] = 5, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4672), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4691), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4695), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4689), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168344,139 +172122,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4693), 24, + ACTIONS(4575), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [36748] = 3, + [37166] = 26, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4698), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4677), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4700), 31, + ACTIONS(4699), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [36801] = 3, + [37265] = 27, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, + anon_sym_LT, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4702), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4677), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 31, + ACTIONS(4699), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 9, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [37366] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4587), 1, + anon_sym_GT_GT, + ACTIONS(4591), 1, + anon_sym_AMP, + ACTIONS(4593), 1, + anon_sym_CARET, + ACTIONS(4597), 1, + anon_sym_PERCENT, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4601), 1, + anon_sym_LT, + ACTIONS(4625), 1, anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4573), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4581), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4595), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [36854] = 3, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4603), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4703), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [37477] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 13, + ACTIONS(1841), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168490,7 +172388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4708), 31, + ACTIONS(1843), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168522,11 +172420,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36907] = 3, + [37530] = 13, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4705), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4710), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4652), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168537,23 +172457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4712), 31, + ACTIONS(4654), 20, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168567,16 +172479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [36960] = 3, + [37603] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4714), 13, + ACTIONS(1739), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168590,7 +172498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4716), 31, + ACTIONS(1741), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168622,11 +172530,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37013] = 3, + [37656] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, + anon_sym_LT, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4714), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4677), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4699), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4708), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [37767] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4718), 13, + ACTIONS(1903), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168640,7 +172627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4720), 31, + ACTIONS(1905), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168672,11 +172659,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37066] = 3, + [37820] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 13, + ACTIONS(4331), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4716), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4329), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168690,17 +172686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1831), 31, - sym__automatic_semicolon, + ACTIONS(4333), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -168721,12 +172711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [37119] = 3, + [37877] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1797), 13, + ACTIONS(4719), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168740,7 +172729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1799), 31, + ACTIONS(4721), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168772,72 +172761,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37172] = 14, + [37930] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4594), 1, + ACTIONS(4587), 1, + anon_sym_GT_GT, + ACTIONS(4591), 1, + anon_sym_AMP, + ACTIONS(4593), 1, + anon_sym_CARET, + ACTIONS(4597), 1, + anon_sym_PERCENT, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4726), 1, + ACTIONS(4601), 1, anon_sym_LT, - STATE(1876), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, + sym__ternary_qmark, + ACTIONS(4723), 1, + anon_sym_COMMA, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5288), 1, + aux_sym_sequence_expression_repeat1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 12, + ACTIONS(4573), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4589), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 19, + ACTIONS(4607), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4725), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4603), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [37247] = 3, + [38045] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4729), 13, + ACTIONS(4727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168851,7 +172860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4731), 31, + ACTIONS(4729), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168883,11 +172892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37300] = 3, + [38098] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1837), 13, + ACTIONS(1923), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168901,7 +172910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1835), 31, + ACTIONS(1925), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168933,13 +172942,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37353] = 3, + [38151] = 16, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4733), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4611), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -168948,23 +172984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4735), 31, + ACTIONS(4613), 18, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168978,16 +173005,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [37406] = 3, + [38230] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 13, + ACTIONS(1943), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169001,7 +173023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 31, + ACTIONS(1945), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169033,11 +173055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37459] = 3, + [38283] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4739), 13, + ACTIONS(4734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169051,7 +173073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4741), 31, + ACTIONS(4736), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169083,61 +173105,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37512] = 3, + [38336] = 33, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4587), 1, + anon_sym_GT_GT, + ACTIONS(4591), 1, + anon_sym_AMP, + ACTIONS(4593), 1, + anon_sym_CARET, + ACTIONS(4597), 1, + anon_sym_PERCENT, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4601), 1, + anon_sym_LT, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4743), 13, + ACTIONS(4573), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4589), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4595), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4607), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4738), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4740), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4603), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38449] = 24, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, anon_sym_GT_GT, + ACTIONS(4683), 1, anon_sym_AMP, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4577), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4677), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4511), 31, + ACTIONS(4699), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 11, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [38544] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4587), 1, + anon_sym_GT_GT, + ACTIONS(4591), 1, + anon_sym_AMP, + ACTIONS(4593), 1, + anon_sym_CARET, + ACTIONS(4597), 1, + anon_sym_PERCENT, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4601), 1, + anon_sym_LT, + ACTIONS(4625), 1, anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4573), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4581), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4595), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [37565] = 3, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4603), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4742), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [38655] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4745), 13, + ACTIONS(1733), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169151,7 +173353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4559), 31, + ACTIONS(1731), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169183,11 +173385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37618] = 3, + [38708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4747), 13, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169201,7 +173403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 31, + ACTIONS(1861), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169233,11 +173435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37671] = 3, + [38761] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 13, + ACTIONS(1859), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169251,7 +173453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4753), 31, + ACTIONS(1857), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169283,11 +173485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37724] = 3, + [38814] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4755), 13, + ACTIONS(1913), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169301,7 +173503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4757), 31, + ACTIONS(1915), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169333,295 +173535,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37777] = 15, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3876), 1, - anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4761), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4763), 2, - anon_sym_get, - anon_sym_set, - STATE(3807), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [37854] = 16, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3876), 1, - anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4765), 1, - anon_sym_LBRACK, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4221), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4225), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [37933] = 32, + [38867] = 12, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, - anon_sym_GT_GT, - ACTIONS(4584), 1, - anon_sym_AMP, - ACTIONS(4586), 1, - anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, - anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4748), 1, anon_sym_LT, - ACTIONS(4604), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, - sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4744), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4572), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4590), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4746), 22, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4598), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4563), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [38044] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [38938] = 16, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, - anon_sym_GT_GT, - ACTIONS(4584), 1, - anon_sym_AMP, - ACTIONS(4586), 1, - anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4618), 1, anon_sym_LT, - ACTIONS(4604), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, - sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4582), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4590), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4602), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4712), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [38155] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1823), 13, - anon_sym_STAR, + ACTIONS(4577), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -169630,47 +173636,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1821), 31, + ACTIONS(4575), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [38208] = 3, + [39017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4767), 13, + ACTIONS(4751), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169684,7 +173675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4769), 31, + ACTIONS(4753), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169716,208 +173707,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38261] = 26, + [39070] = 17, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4580), 1, - anon_sym_GT_GT, - ACTIONS(4584), 1, - anon_sym_AMP, - ACTIONS(4586), 1, - anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, - anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4670), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4672), 1, anon_sym_LT, - ACTIONS(4722), 1, - anon_sym_BANG, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4572), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4582), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4590), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4602), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4598), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 10, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [38360] = 27, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4580), 1, - anon_sym_GT_GT, - ACTIONS(4584), 1, - anon_sym_AMP, - ACTIONS(4586), 1, - anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4691), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, - anon_sym_LT, - ACTIONS(4722), 1, - anon_sym_BANG, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4675), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4582), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4602), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [38461] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4771), 13, - anon_sym_STAR, + ACTIONS(4577), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4773), 31, + ACTIONS(4575), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38514] = 3, + [39151] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4775), 13, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169931,7 +173789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4777), 31, + ACTIONS(4285), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169963,11 +173821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38567] = 3, + [39204] = 7, + ACTIONS(4755), 1, + anon_sym_DOT, + ACTIONS(4757), 1, + anon_sym_LT, + ACTIONS(4759), 1, + anon_sym_is, + STATE(2103), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 13, + ACTIONS(4041), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169978,22 +173844,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 31, + ACTIONS(3524), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170012,12 +173874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38620] = 3, + anon_sym_extends, + [39265] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1865), 13, + ACTIONS(4761), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170031,7 +173893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1867), 31, + ACTIONS(4763), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170063,61 +173925,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38673] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1875), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + [39318] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, anon_sym_LT, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4714), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4677), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1877), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4699), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4765), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, + [39429] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, + anon_sym_LT, + ACTIONS(4701), 1, anon_sym_AMP_AMP, + ACTIONS(4710), 1, anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4714), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4677), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4699), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4767), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [39540] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, + anon_sym_LT, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4714), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4675), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4677), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4699), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4769), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [39651] = 34, + ACTIONS(89), 1, anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4587), 1, + anon_sym_GT_GT, + ACTIONS(4591), 1, + anon_sym_AMP, + ACTIONS(4593), 1, + anon_sym_CARET, + ACTIONS(4597), 1, + anon_sym_PERCENT, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4601), 1, + anon_sym_LT, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, anon_sym_satisfies, - anon_sym_implements, - [38726] = 3, + ACTIONS(4650), 1, + sym__ternary_qmark, + ACTIONS(4738), 1, + anon_sym_RBRACE, + ACTIONS(4771), 1, + anon_sym_COMMA, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1913), 13, + ACTIONS(4573), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4581), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4589), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4595), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4607), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4642), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4603), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39766] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170131,7 +174261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1915), 31, + ACTIONS(4742), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170163,204 +174293,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38779] = 3, + [39819] = 19, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4587), 1, + anon_sym_GT_GT, + ACTIONS(4597), 1, + anon_sym_PERCENT, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4601), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4779), 13, + ACTIONS(4573), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4589), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4595), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4781), 31, + ACTIONS(4575), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38832] = 34, + [39904] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, sym__ternary_qmark, - ACTIONS(4783), 1, - anon_sym_COMMA, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4373), 1, - aux_sym_sequence_expression_repeat1, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4785), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38947] = 15, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3873), 1, + ACTIONS(4511), 4, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3885), 1, anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + anon_sym_SEMI, + [40015] = 23, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4761), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4763), 2, - anon_sym_get, - anon_sym_set, - STATE(3807), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4677), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4699), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4695), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 11, sym__automatic_semicolon, - anon_sym_LPAREN, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [40108] = 12, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4776), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [39024] = 3, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 13, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4744), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170371,23 +174542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4789), 31, + ACTIONS(4746), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -170403,44 +174566,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [39077] = 16, - ACTIONS(1621), 1, + [40179] = 15, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3873), 1, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3885), 1, + ACTIONS(4022), 1, anon_sym_RBRACE, - ACTIONS(4213), 1, + ACTIONS(4223), 1, anon_sym_STAR, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4765), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 2, + ACTIONS(4621), 2, sym_number, sym_private_property_identifier, - ACTIONS(4225), 2, + ACTIONS(4623), 2, anon_sym_get, anon_sym_set, - STATE(3069), 3, + STATE(4279), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -170448,11 +174607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -170469,142 +174629,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39156] = 3, + [40256] = 34, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4587), 1, + anon_sym_GT_GT, + ACTIONS(4591), 1, + anon_sym_AMP, + ACTIONS(4593), 1, + anon_sym_CARET, + ACTIONS(4597), 1, + anon_sym_PERCENT, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4601), 1, + anon_sym_LT, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, + sym__ternary_qmark, + ACTIONS(4723), 1, + anon_sym_COMMA, + STATE(1930), 1, + sym_type_arguments, + STATE(5288), 1, + aux_sym_sequence_expression_repeat1, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, + ACTIONS(4573), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4589), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [39209] = 32, + ACTIONS(4779), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4603), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40371] = 34, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, sym__ternary_qmark, - STATE(1876), 1, + ACTIONS(4738), 1, + anon_sym_RBRACE, + ACTIONS(4781), 1, + anon_sym_COMMA, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4703), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4640), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [39320] = 4, - ACTIONS(4791), 1, - sym__automatic_semicolon, + [40486] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 13, + ACTIONS(4786), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4790), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4784), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170618,16 +174818,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1821), 30, + ACTIONS(4788), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -170648,12 +174843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [39375] = 3, + [40543] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1847), 13, + ACTIONS(1935), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170667,18 +174861,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1849), 31, + ACTIONS(1933), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -170698,64 +174892,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [39428] = 5, + anon_sym_PIPE_RBRACE, + [40596] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, + anon_sym_LT, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4714), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4793), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1701), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4677), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(4699), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4793), 4, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_of, + anon_sym_SEMI, + [40707] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, anon_sym_LBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, + anon_sym_LT, + ACTIONS(4701), 1, anon_sym_AMP_AMP, + ACTIONS(4710), 1, anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4714), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4677), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4699), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [39485] = 3, + ACTIONS(4515), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [40818] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 13, + ACTIONS(4795), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170769,7 +175069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4798), 31, + ACTIONS(4797), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170801,61 +175101,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39538] = 3, + [40871] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4587), 1, + anon_sym_GT_GT, + ACTIONS(4591), 1, + anon_sym_AMP, + ACTIONS(4593), 1, + anon_sym_CARET, + ACTIONS(4597), 1, + anon_sym_PERCENT, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4601), 1, + anon_sym_LT, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1933), 13, + ACTIONS(4573), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4589), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1935), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4607), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4603), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4642), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + [40982] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4583), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, + anon_sym_LT, + ACTIONS(4701), 1, anon_sym_AMP_AMP, + ACTIONS(4710), 1, anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4714), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4677), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4699), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [39591] = 3, + ACTIONS(4799), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [41093] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1943), 13, + ACTIONS(1767), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170869,7 +175277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1945), 31, + ACTIONS(1769), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170901,11 +175309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39644] = 3, + [41146] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1757), 13, + ACTIONS(4801), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170919,7 +175327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 31, + ACTIONS(4803), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170951,11 +175359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39697] = 3, + [41199] = 4, + ACTIONS(4805), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 13, + ACTIONS(1935), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170969,18 +175379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1769), 31, + ACTIONS(1933), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171000,53 +175409,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [39750] = 17, + anon_sym_PIPE_RBRACE, + [41254] = 12, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4726), 1, + ACTIONS(4807), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4590), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 8, + ACTIONS(4744), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 18, + ACTIONS(4746), 22, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -171058,18 +175458,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [39831] = 3, + [41325] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 13, + ACTIONS(1715), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4810), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1713), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171083,18 +175496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1779), 31, + ACTIONS(1717), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171114,64 +175521,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [39884] = 3, + [41382] = 34, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4587), 1, + anon_sym_GT_GT, + ACTIONS(4591), 1, + anon_sym_AMP, + ACTIONS(4593), 1, + anon_sym_CARET, + ACTIONS(4597), 1, + anon_sym_PERCENT, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4601), 1, + anon_sym_LT, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, + sym__ternary_qmark, + ACTIONS(4738), 1, + anon_sym_RBRACE, + ACTIONS(4781), 1, + anon_sym_COMMA, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1829), 13, + ACTIONS(4573), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4589), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1827), 31, + ACTIONS(4607), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4813), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4603), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [41497] = 17, + ACTIONS(89), 1, anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4618), 1, + anon_sym_LT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [39937] = 3, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1787), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -171180,376 +175646,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 31, + ACTIONS(4575), 17, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [39990] = 15, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4761), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4763), 2, - anon_sym_get, - anon_sym_set, - STATE(3807), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [40067] = 23, + [41578] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4580), 1, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, anon_sym_GT_GT, - ACTIONS(4592), 1, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4693), 1, anon_sym_LT, - STATE(1876), 1, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4714), 1, + sym__ternary_qmark, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4675), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4677), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4699), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4695), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4722), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4724), 11, + ACTIONS(4815), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [40160] = 16, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4765), 1, - anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4221), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4225), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [40239] = 9, - ACTIONS(821), 1, + [41689] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4664), 1, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4714), 1, + sym__ternary_qmark, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4800), 12, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4677), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4699), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [40304] = 32, - ACTIONS(821), 1, + ACTIONS(4817), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [41800] = 34, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(4723), 1, + anon_sym_COMMA, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5288), 1, + aux_sym_sequence_expression_repeat1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4819), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4712), 4, + [41915] = 13, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4821), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4652), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4654), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [40415] = 3, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [41988] = 9, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4601), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1907), 13, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4824), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171560,19 +175993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1905), 31, + ACTIONS(4826), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -171592,144 +176020,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [40468] = 32, - ACTIONS(821), 1, + [42053] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4804), 4, + ACTIONS(4515), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [40579] = 16, - ACTIONS(1621), 1, + anon_sym_SEMI, + [42164] = 16, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4016), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4507), 1, anon_sym_LBRACK, - ACTIONS(4808), 1, - anon_sym_static, - ACTIONS(4810), 1, - anon_sym_readonly, - ACTIONS(4812), 1, - anon_sym_abstract, - ACTIONS(4814), 1, - anon_sym_accessor, - STATE(2712), 1, - sym_accessibility_modifier, - STATE(2841), 1, - sym_override_modifier, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4806), 2, + ACTIONS(4231), 2, sym_number, sym_private_property_identifier, - ACTIONS(3687), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3351), 3, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -171737,250 +176163,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [40658] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + [42243] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4828), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4035), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - ACTIONS(4672), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [42296] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4832), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4816), 4, + ACTIONS(4834), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [40769] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4035), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - ACTIONS(4672), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [42349] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(1931), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4574), 4, + ACTIONS(1929), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [40880] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4035), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - ACTIONS(4672), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [42402] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4016), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4621), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4623), 2, + anon_sym_get, + anon_sym_set, + STATE(4279), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42479] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4836), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4616), 4, + ACTIONS(4838), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - [40991] = 4, - ACTIONS(4257), 1, - anon_sym_EQ, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [42532] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 13, + ACTIONS(4840), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171994,7 +176443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 30, + ACTIONS(4842), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172002,6 +176451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -172025,66 +176475,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41046] = 24, + [42585] = 21, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4580), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, - anon_sym_AMP, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4601), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4602), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 11, + ACTIONS(4577), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -172094,114 +176539,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [41141] = 25, + [42674] = 19, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4580), 1, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, - anon_sym_AMP, - ACTIONS(4586), 1, - anon_sym_CARET, - ACTIONS(4592), 1, + ACTIONS(4691), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4693), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4675), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4602), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 10, + ACTIONS(4577), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_satisfies, - [41238] = 16, + [42759] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, anon_sym_STAR_STAR, - ACTIONS(4726), 1, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, anon_sym_LT, - STATE(1876), 1, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4714), 1, + sym__ternary_qmark, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4675), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2173), 2, + ACTIONS(4677), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4699), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 10, + ACTIONS(4695), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4511), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [42870] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4844), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -172210,63 +176702,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 18, - sym__automatic_semicolon, + ACTIONS(4846), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [41317] = 17, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, + anon_sym_satisfies, + anon_sym_implements, + [42923] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4848), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4515), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4850), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4519), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4521), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4594), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(4726), 1, - anon_sym_LT, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [42976] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 11, + ACTIONS(4852), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -172275,97 +176803,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 17, - sym__automatic_semicolon, + ACTIONS(4854), 31, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [41398] = 19, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_satisfies, + anon_sym_implements, + [43029] = 28, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4648), 1, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, anon_sym_GT_GT, - ACTIONS(4660), 1, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, - anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4693), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4675), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4650), 2, + ACTIONS(4677), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4699), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4575), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [41483] = 3, + [43132] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1903), 13, + ACTIONS(1795), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172379,7 +176931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1901), 31, + ACTIONS(1793), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -172411,13 +176963,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [41536] = 4, + [43185] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, + anon_sym_GT_GT, + ACTIONS(4683), 1, + anon_sym_AMP, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_PIPE, ACTIONS(4691), 1, + anon_sym_PERCENT, + ACTIONS(4693), 1, + anon_sym_LT, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4714), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4677), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4699), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4695), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4642), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [43296] = 16, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(4858), 1, + anon_sym_static, + ACTIONS(4860), 1, + anon_sym_readonly, + ACTIONS(4862), 1, + anon_sym_abstract, + ACTIONS(4864), 1, + anon_sym_accessor, + STATE(3114), 1, + sym_accessibility_modifier, + STATE(3215), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4856), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3695), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3780), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3671), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [43375] = 4, + ACTIONS(4331), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4689), 13, + ACTIONS(4329), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172431,7 +177125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4693), 30, + ACTIONS(4333), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172462,35 +177156,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41591] = 14, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + [43430] = 8, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4662), 1, - anon_sym_STAR_STAR, - ACTIONS(4818), 1, + ACTIONS(4757), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(4866), 1, + anon_sym_DOT, + STATE(2052), 1, sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + STATE(2060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 12, + ACTIONS(3477), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172503,33 +177183,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 19, + ACTIONS(3467), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [41666] = 4, - ACTIONS(1703), 1, - anon_sym_EQ, + anon_sym_extends, + [43493] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 13, + ACTIONS(1935), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172543,7 +177229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 30, + ACTIONS(1933), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172551,6 +177237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -172574,373 +177261,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [41721] = 32, - ACTIONS(821), 1, + [43546] = 28, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4672), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4821), 4, + ACTIONS(4575), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [41832] = 26, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [43649] = 8, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, - anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, - anon_sym_PERCENT, - ACTIONS(4662), 1, - anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4757), 1, anon_sym_LT, - ACTIONS(4722), 1, - anon_sym_BANG, - STATE(1493), 1, + ACTIONS(4868), 1, + anon_sym_DOT, + STATE(2045), 1, sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + STATE(2051), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4057), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 10, + ACTIONS(4059), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [41931] = 27, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [43712] = 8, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4757), 1, anon_sym_LT, - ACTIONS(4722), 1, - anon_sym_BANG, - STATE(1493), 1, + ACTIONS(4870), 1, + anon_sym_DOT, + STATE(1954), 1, + sym_arguments, + STATE(2044), 1, sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4049), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 9, + ACTIONS(4051), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [42032] = 17, - ACTIONS(821), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_satisfies, + anon_sym_extends, + [43775] = 11, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4660), 1, - anon_sym_PERCENT, - ACTIONS(4662), 1, - anon_sym_STAR_STAR, - ACTIONS(4818), 1, + ACTIONS(4757), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(4872), 1, + anon_sym_QMARK_DOT, + STATE(2114), 1, sym_type_arguments, - STATE(4786), 1, + STATE(2243), 1, + sym_arguments, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4065), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 18, + ACTIONS(4067), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [42113] = 23, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4660), 1, - anon_sym_PERCENT, - ACTIONS(4662), 1, - anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_satisfies, + [43844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(1893), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4722), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4724), 11, + ACTIONS(1891), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [42206] = 4, - ACTIONS(4823), 1, - sym__automatic_semicolon, + anon_sym_implements, + [43897] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1699), 13, + ACTIONS(1893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172954,7 +177572,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1697), 30, + ACTIONS(1891), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -172985,181 +177604,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42261] = 24, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4660), 1, - anon_sym_PERCENT, - ACTIONS(4662), 1, - anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [43950] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(1887), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 11, + ACTIONS(1885), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [42356] = 25, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4668), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4670), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [42453] = 6, - ACTIONS(4293), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [44003] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4825), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4828), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(4874), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 28, + ACTIONS(4876), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -173181,40 +177704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42512] = 16, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4660), 1, - anon_sym_PERCENT, - ACTIONS(4662), 1, - anon_sym_STAR_STAR, - ACTIONS(4818), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [44056] = 4, + ACTIONS(4786), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4784), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -173223,63 +177720,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 18, + ACTIONS(4788), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [42591] = 17, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4662), 1, - anon_sym_STAR_STAR, - ACTIONS(4818), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_implements, + [44111] = 4, + ACTIONS(1715), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 11, + ACTIONS(1713), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -173288,308 +177772,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 17, + ACTIONS(1717), 30, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [42672] = 21, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4660), 1, - anon_sym_PERCENT, - ACTIONS(4662), 1, - anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_implements, + [44166] = 4, + ACTIONS(4878), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(1711), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4722), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 13, + ACTIONS(1709), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [42761] = 28, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - ACTIONS(4722), 1, - anon_sym_BANG, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4668), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4670), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [42864] = 32, - ACTIONS(821), 1, + anon_sym_PIPE_RBRACE, + [44221] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4704), 4, + ACTIONS(4799), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [42975] = 21, + anon_sym_SEMI, + [44332] = 21, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4580), 1, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, anon_sym_GT_GT, - ACTIONS(4592), 1, + ACTIONS(4691), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4693), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4675), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4677), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4695), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4722), 5, + ACTIONS(4577), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 13, + ACTIONS(4575), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173598,355 +178004,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [43064] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, + [44421] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4880), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4515), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4882), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4519), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4521), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4523), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4531), 1, - anon_sym_AMP, - ACTIONS(4533), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4535), 1, - anon_sym_PIPE, - ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4551), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4557), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_implements, + [44474] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(1795), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4517), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4537), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(1793), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4545), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4608), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [43175] = 33, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + anon_sym_satisfies, + anon_sym_implements, + [44527] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4517), 1, - anon_sym_GT, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4523), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4539), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4551), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4557), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - ACTIONS(4833), 1, - anon_sym_in, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4529), 2, + ACTIONS(4517), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4831), 4, - sym__automatic_semicolon, + ACTIONS(4708), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [43288] = 32, - ACTIONS(821), 1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [44638] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4608), 4, + ACTIONS(4793), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [43399] = 32, - ACTIONS(821), 1, + anon_sym_SEMI, + [44749] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4511), 4, + ACTIONS(4769), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [43510] = 6, - ACTIONS(4359), 1, - anon_sym_extends, + anon_sym_SEMI, + [44860] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4840), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4843), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4836), 10, + ACTIONS(4884), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4838), 28, + ACTIONS(4886), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -173968,534 +178391,645 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43569] = 32, - ACTIONS(821), 1, + [44913] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4559), 4, + ACTIONS(4765), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [43680] = 32, - ACTIONS(821), 1, + [45024] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4561), 4, + ACTIONS(4767), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [43791] = 28, - ACTIONS(89), 1, + [45135] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4576), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4578), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4588), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4722), 1, - anon_sym_BANG, - STATE(1876), 1, + ACTIONS(4547), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4549), 1, + sym__ternary_qmark, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4769), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [43894] = 32, - ACTIONS(821), 1, + anon_sym_COLON, + anon_sym_RBRACK, + [45246] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4563), 4, + ACTIONS(4793), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [44005] = 32, - ACTIONS(821), 1, + [45357] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4618), 4, + ACTIONS(4799), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [44116] = 34, + [45468] = 9, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4693), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4824), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4826), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4578), 1, anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [45533] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4683), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(4588), 1, + ACTIONS(4687), 1, anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4691), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4693), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(4714), 1, sym__ternary_qmark, - ACTIONS(4783), 1, - anon_sym_COMMA, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4373), 1, - aux_sym_sequence_expression_repeat1, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4675), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4677), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4699), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4846), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4695), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [44231] = 16, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4850), 1, - anon_sym_static, - ACTIONS(4852), 1, - anon_sym_readonly, - ACTIONS(4854), 1, - anon_sym_abstract, - ACTIONS(4856), 1, - anon_sym_accessor, - STATE(2709), 1, - sym_accessibility_modifier, - STATE(2840), 1, - sym_override_modifier, + ACTIONS(4742), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [45644] = 6, + ACTIONS(4505), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4848), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3687), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3438), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4888), 2, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(4891), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [45703] = 16, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3930), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4507), 1, + anon_sym_LBRACK, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -174503,150 +179037,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [44310] = 32, + [45782] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4683), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(4588), 1, + ACTIONS(4687), 1, anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4691), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4693), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(4714), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4675), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4677), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4699), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4695), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4704), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [44421] = 13, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4858), 1, - anon_sym_LT, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4624), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4626), 20, + ACTIONS(4703), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [44494] = 3, + [45893] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1907), 13, + ACTIONS(4894), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174660,7 +179134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1905), 31, + ACTIONS(4769), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174692,61 +179166,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44547] = 3, + [45946] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3930), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4861), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4863), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4621), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4623), 2, + anon_sym_get, + anon_sym_set, + STATE(4279), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [46023] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4587), 1, + anon_sym_GT_GT, + ACTIONS(4591), 1, + anon_sym_AMP, + ACTIONS(4593), 1, + anon_sym_CARET, + ACTIONS(4597), 1, + anon_sym_PERCENT, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4601), 1, + anon_sym_LT, + ACTIONS(4625), 1, anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4573), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4581), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4595), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [44600] = 3, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4603), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4767), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [46134] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4865), 13, + ACTIONS(4896), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174760,7 +179325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 31, + ACTIONS(4793), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174792,386 +179357,422 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44653] = 32, + [46187] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4869), 4, + ACTIONS(4817), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [44764] = 32, - ACTIONS(89), 1, + [46298] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4578), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4588), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4574), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [44875] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1829), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1827), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4815), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [46409] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, anon_sym_AMP_AMP, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, anon_sym_PERCENT, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [44928] = 5, + ACTIONS(4549), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4871), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4255), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 24, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4817), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [46520] = 28, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_AMP_AMP, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, anon_sym_PERCENT, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [44985] = 3, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4577), 1, + anon_sym_BANG, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4874), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4876), 31, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [45038] = 16, - ACTIONS(89), 1, + [46623] = 21, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4878), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4539), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4631), 11, + ACTIONS(4513), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4577), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4633), 18, - sym__automatic_semicolon, + ACTIONS(4575), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [45117] = 3, + anon_sym_satisfies, + [46712] = 17, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4898), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1837), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -175180,127 +179781,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1835), 31, - sym__automatic_semicolon, + ACTIONS(4575), 17, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [45170] = 34, + [46793] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4683), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(4588), 1, + ACTIONS(4687), 1, anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4691), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4693), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(4714), 1, sym__ternary_qmark, - ACTIONS(4881), 1, - anon_sym_COMMA, - ACTIONS(4884), 1, - anon_sym_RBRACE, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4675), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4677), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4699), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4886), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4695), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45285] = 3, + ACTIONS(4901), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [46904] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4888), 13, + ACTIONS(4903), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175314,7 +179898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4890), 31, + ACTIONS(4905), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175346,11 +179930,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45338] = 3, + [46957] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4019), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4623), 2, + anon_sym_get, + anon_sym_set, + STATE(4279), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [47034] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4892), 13, + ACTIONS(4907), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175364,7 +180010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4894), 31, + ACTIONS(4799), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175396,12 +180042,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45391] = 3, + [47087] = 16, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4898), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1903), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -175410,21 +180084,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [47166] = 6, + ACTIONS(4469), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4909), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4912), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4751), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1901), 31, + ACTIONS(4753), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -175446,11 +180158,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45444] = 3, + [47225] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 13, + ACTIONS(4915), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175464,7 +180176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1821), 31, + ACTIONS(4917), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175496,90 +180208,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45497] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, + [47278] = 16, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4019), 1, + anon_sym_RBRACE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4507), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, - anon_sym_GT_GT, - ACTIONS(4584), 1, - anon_sym_AMP, - ACTIONS(4586), 1, - anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, - anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, - anon_sym_LT, - ACTIONS(4604), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4572), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4582), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4590), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4602), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4598), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4616), 4, + ACTIONS(4231), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [45608] = 3, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [47357] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4896), 13, + ACTIONS(4919), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175593,7 +180289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4898), 31, + ACTIONS(4921), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175625,90 +180321,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45661] = 32, + [47410] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4804), 4, + ACTIONS(4708), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [45772] = 3, + [47521] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4900), 13, + ACTIONS(1887), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175722,7 +180418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4902), 31, + ACTIONS(1885), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175754,11 +180450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45825] = 3, + [47574] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4904), 13, + ACTIONS(4923), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175772,7 +180468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4906), 31, + ACTIONS(4925), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175804,11 +180500,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45878] = 3, + [47627] = 25, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, + anon_sym_CARET, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4539), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4517), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4577), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [47724] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4908), 13, + ACTIONS(1851), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175822,7 +180590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4910), 31, + ACTIONS(1853), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -175854,30 +180622,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45931] = 12, - ACTIONS(89), 1, + [47777] = 24, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4912), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4539), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2173), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4517), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4577), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4676), 12, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [47872] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1733), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175888,15 +180708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4678), 22, + ACTIONS(1731), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -175912,150 +180740,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [46002] = 19, + anon_sym_PIPE_RBRACE, + [47925] = 17, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4580), 1, - anon_sym_GT_GT, - ACTIONS(4592), 1, - anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4672), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4582), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4590), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 7, - anon_sym_BANG, + ACTIONS(4577), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 16, + ACTIONS(4575), 17, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [46087] = 15, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3888), 1, - anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4761), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4763), 2, - anon_sym_get, - anon_sym_set, - STATE(3807), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [46164] = 8, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_DOT, - ACTIONS(4917), 1, - anon_sym_LT, - STATE(2059), 1, - sym_arguments, - STATE(2064), 1, - sym_type_arguments, + [48006] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 12, + ACTIONS(4927), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176066,17 +180822,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3479), 27, - sym__automatic_semicolon, + ACTIONS(4929), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176095,297 +180856,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [46227] = 16, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3888), 1, - anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4765), 1, - anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4221), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4225), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [46306] = 8, - ACTIONS(4515), 1, + anon_sym_implements, + [48059] = 23, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4917), 1, - anon_sym_LT, - ACTIONS(4919), 1, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, - STATE(2073), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4539), 1, + anon_sym_LT, + STATE(1507), 1, sym_type_arguments, - STATE(2158), 1, - sym_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4055), 12, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4057), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [46369] = 8, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, - anon_sym_LT, - ACTIONS(4921), 1, - anon_sym_DOT, - STATE(2074), 1, - sym_arguments, - STATE(2075), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4061), 12, - anon_sym_STAR, + ACTIONS(4577), 3, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4063), 27, - sym__automatic_semicolon, + ACTIONS(4575), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [46432] = 17, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4923), 1, - anon_sym_STAR, - ACTIONS(4925), 1, - anon_sym_LBRACE, - ACTIONS(4927), 1, - anon_sym_async, - ACTIONS(4931), 1, - anon_sym_readonly, - ACTIONS(4935), 1, - sym__automatic_semicolon, - STATE(2689), 1, - sym_statement_block, - STATE(2774), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4929), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4933), 2, - anon_sym_get, - anon_sym_set, - STATE(3039), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [46513] = 13, - ACTIONS(89), 1, + [48152] = 17, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4898), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2173), 2, + ACTIONS(4513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4624), 12, - anon_sym_STAR, + ACTIONS(4577), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 20, - sym__automatic_semicolon, + ACTIONS(4575), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -176393,247 +180991,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [46586] = 34, - ACTIONS(89), 1, + [48233] = 27, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4588), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4604), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, - sym__ternary_qmark, - ACTIONS(4881), 1, - anon_sym_COMMA, - ACTIONS(4884), 1, - anon_sym_RBRACE, - STATE(1876), 1, + ACTIONS(4577), 1, + anon_sym_BANG, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4804), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46701] = 16, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, + ACTIONS(4575), 9, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [48334] = 26, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4941), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, + anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4539), 1, anon_sym_LT, - STATE(1876), 1, + ACTIONS(4577), 1, + anon_sym_BANG, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4631), 11, + ACTIONS(4513), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4633), 18, - sym__automatic_semicolon, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 10, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [46780] = 32, - ACTIONS(89), 1, + anon_sym_satisfies, + [48433] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4523), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4539), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4551), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4557), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4640), 4, - sym__automatic_semicolon, + ACTIONS(4931), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [46891] = 9, - ACTIONS(89), 1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [48544] = 14, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4543), 1, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4898), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2173), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4800), 12, + ACTIONS(4577), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176646,195 +181258,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 25, - sym__automatic_semicolon, + ACTIONS(4575), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, - [46956] = 32, - ACTIONS(89), 1, + [48619] = 19, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, ACTIONS(4523), 1, - anon_sym_AMP_AMP, - ACTIONS(4525), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, - anon_sym_AMP, - ACTIONS(4533), 1, - anon_sym_CARET, ACTIONS(4535), 1, - anon_sym_PIPE, - ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4551), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4557), 1, - sym__ternary_qmark, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4549), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4712), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [47067] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, + ACTIONS(4577), 7, anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4523), 1, - anon_sym_AMP_AMP, - ACTIONS(4525), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4531), 1, - anon_sym_AMP, - ACTIONS(4533), 1, - anon_sym_CARET, - ACTIONS(4535), 1, - anon_sym_PIPE, - ACTIONS(4539), 1, - anon_sym_PERCENT, - ACTIONS(4541), 1, - anon_sym_STAR_STAR, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4551), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4557), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4507), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4547), 2, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4575), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4545), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4804), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [47178] = 3, + anon_sym_satisfies, + [48704] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4836), 13, + ACTIONS(4933), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176848,7 +181362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4838), 31, + ACTIONS(4935), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -176880,31 +181394,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47231] = 12, + [48757] = 16, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4944), 1, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4672), 1, anon_sym_LT, - STATE(1876), 1, + ACTIONS(4691), 1, + anon_sym_PERCENT, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4676), 12, - anon_sym_STAR, + ACTIONS(4577), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -176913,10 +181436,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4678), 22, + ACTIONS(4575), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176928,171 +181450,421 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, - [47302] = 7, - ACTIONS(4917), 1, - anon_sym_LT, - ACTIONS(4947), 1, + [48836] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4949), 1, - anon_sym_is, - STATE(2121), 1, + ACTIONS(4587), 1, + anon_sym_GT_GT, + ACTIONS(4591), 1, + anon_sym_AMP, + ACTIONS(4593), 1, + anon_sym_CARET, + ACTIONS(4597), 1, + anon_sym_PERCENT, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4601), 1, + anon_sym_LT, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, + sym__ternary_qmark, + STATE(1930), 1, sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 12, + ACTIONS(4573), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4589), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3502), 28, + ACTIONS(4607), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4603), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4765), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + [48947] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, anon_sym_AMP_AMP, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, anon_sym_PERCENT, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4549), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4517), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [47363] = 32, - ACTIONS(89), 1, + ACTIONS(4511), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [49058] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4523), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4525), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4535), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4539), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4551), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4557), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4816), 4, + ACTIONS(4642), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [49169] = 16, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(4939), 1, + anon_sym_static, + ACTIONS(4941), 1, + anon_sym_readonly, + ACTIONS(4943), 1, + anon_sym_abstract, + ACTIONS(4945), 1, + anon_sym_accessor, + STATE(3128), 1, + sym_accessibility_modifier, + STATE(3269), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4937), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3695), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3745), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_of, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - [47474] = 11, - ACTIONS(4515), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3671), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [49248] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4917), 1, - anon_sym_LT, - ACTIONS(4951), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - STATE(1949), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, + anon_sym_AMP_AMP, + ACTIONS(4521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, + anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4549), 1, + sym__ternary_qmark, + STATE(1507), 1, sym_type_arguments, - STATE(2408), 1, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4517), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, sym_arguments, - STATE(4903), 1, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4901), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [49359] = 14, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4618), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 12, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177105,13 +181877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4029), 24, + ACTIONS(4575), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177119,22 +181890,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [47543] = 3, + [49434] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 13, + ACTIONS(4947), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177148,7 +181915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1813), 31, + ACTIONS(4949), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -177180,61 +181947,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47596] = 3, + [49487] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, + anon_sym_AMP_AMP, + ACTIONS(4521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, + anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4549), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4703), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [49598] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, anon_sym_AMP_AMP, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, anon_sym_PERCENT, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4549), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4517), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [47649] = 3, + ACTIONS(4742), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [49709] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1841), 13, + ACTIONS(4951), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177248,7 +182123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 31, + ACTIONS(4953), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -177280,11 +182155,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47702] = 3, + [49762] = 9, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4539), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 13, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4824), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177295,18 +182183,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1831), 31, + ACTIONS(4826), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -177327,280 +182210,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [47755] = 32, + [49827] = 25, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4679), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4683), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4691), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4693), 1, anon_sym_LT, - ACTIONS(4604), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, - sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4577), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4675), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4677), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4699), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4695), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4618), 4, + ACTIONS(4575), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [47866] = 34, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [49924] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, sym__ternary_qmark, - ACTIONS(4783), 1, - anon_sym_COMMA, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4373), 1, - aux_sym_sequence_expression_repeat1, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4953), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2173), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47981] = 9, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4596), 1, - anon_sym_LT, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4800), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4802), 25, + ACTIONS(4901), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [48046] = 15, - ACTIONS(2328), 1, + [50035] = 17, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3891), 1, - anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4955), 1, + anon_sym_STAR, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(4959), 1, + anon_sym_async, + ACTIONS(4963), 1, + anon_sym_readonly, + ACTIONS(4967), 1, + sym__automatic_semicolon, + STATE(2958), 1, + sym_statement_block, + STATE(3176), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4761), 2, + ACTIONS(4961), 2, sym_number, sym_private_property_identifier, - ACTIONS(4763), 2, + ACTIONS(4965), 2, anon_sym_get, anon_sym_set, - STATE(3807), 3, + STATE(3473), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, + ACTIONS(3933), 8, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, + ACTIONS(3671), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -177608,942 +182426,811 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [48123] = 16, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3891), 1, - anon_sym_RBRACE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4765), 1, - anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + [50116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4225), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4970), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [48202] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4817), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4519), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4521), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4523), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4531), 1, - anon_sym_AMP, - ACTIONS(4533), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4535), 1, - anon_sym_PIPE, - ACTIONS(4539), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4551), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4557), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_implements, + [50169] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4972), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4517), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4537), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4974), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4545), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4574), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [48313] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [50222] = 33, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4523), 1, - anon_sym_AMP_AMP, - ACTIONS(4525), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4670), 1, + anon_sym_STAR_STAR, + ACTIONS(4677), 1, + anon_sym_GT, + ACTIONS(4679), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, + ACTIONS(4683), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(4535), 1, + ACTIONS(4687), 1, anon_sym_PIPE, - ACTIONS(4539), 1, + ACTIONS(4691), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, - anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4693), 1, anon_sym_LT, - ACTIONS(4551), 1, + ACTIONS(4701), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4557), 1, + ACTIONS(4714), 1, sym__ternary_qmark, - STATE(1876), 1, + ACTIONS(4978), 1, + anon_sym_in, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4675), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + ACTIONS(4697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4699), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4695), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4616), 4, + ACTIONS(4976), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [48424] = 19, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4539), 1, - anon_sym_PERCENT, - ACTIONS(4541), 1, - anon_sym_STAR_STAR, - ACTIONS(4543), 1, - anon_sym_LT, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + [50335] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(1931), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 16, + ACTIONS(1929), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_of, + anon_sym_while, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [48509] = 33, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, - anon_sym_GT_GT, - ACTIONS(4584), 1, - anon_sym_AMP, - ACTIONS(4586), 1, - anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, - anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, - anon_sym_LT, - ACTIONS(4604), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_PIPE_RBRACE, + [50388] = 6, + ACTIONS(4099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4572), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4582), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4590), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4602), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4884), 2, + ACTIONS(4981), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4955), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4598), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48622] = 14, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, - anon_sym_LT, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 12, + ACTIONS(4984), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 19, - sym__automatic_semicolon, + ACTIONS(3437), 28, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [48697] = 26, + anon_sym_implements, + [50447] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(4535), 1, - anon_sym_PIPE, - ACTIONS(4539), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4601), 1, anon_sym_LT, - ACTIONS(4722), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - STATE(1876), 1, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, + sym__ternary_qmark, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 10, + ACTIONS(4815), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [48796] = 27, - ACTIONS(89), 1, + [50558] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4523), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4991), 1, anon_sym_AMP_AMP, - ACTIONS(4527), 1, + ACTIONS(4993), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4535), 1, + ACTIONS(5003), 1, anon_sym_PIPE, - ACTIONS(4539), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4722), 1, - anon_sym_BANG, - STATE(1876), 1, + ACTIONS(5019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5021), 1, + sym__ternary_qmark, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4767), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [48897] = 17, - ACTIONS(89), 1, + [50668] = 23, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4539), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4191), 1, + anon_sym_GT_GT, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + ACTIONS(4207), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4537), 2, + ACTIONS(4183), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4193), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4553), 2, + ACTIONS(4211), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4213), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 8, + ACTIONS(4209), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4577), 3, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 18, - sym__automatic_semicolon, + ACTIONS(4575), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_satisfies, - [48978] = 32, - ACTIONS(89), 1, + [50760] = 25, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4604), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, - sym__ternary_qmark, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4577), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4816), 4, - sym__automatic_semicolon, + ACTIONS(4575), 9, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [49089] = 23, - ACTIONS(89), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [50856] = 21, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4539), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4207), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4549), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4722), 3, + ACTIONS(4577), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4724), 11, - sym__automatic_semicolon, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 12, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [49182] = 24, - ACTIONS(89), 1, + [50944] = 28, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, + anon_sym_AMP_AMP, + ACTIONS(4189), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4539), 1, + ACTIONS(4197), 1, + anon_sym_CARET, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4207), 1, anon_sym_LT, - STATE(1876), 1, + ACTIONS(4577), 1, + anon_sym_BANG, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 11, - sym__automatic_semicolon, + ACTIONS(4575), 7, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [49277] = 25, - ACTIONS(89), 1, + [51046] = 24, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4533), 1, - anon_sym_CARET, - ACTIONS(4539), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4207), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4722), 2, + ACTIONS(4577), 2, anon_sym_BANG, anon_sym_PIPE, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 10, - sym__automatic_semicolon, + ACTIONS(4575), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [49374] = 3, + [51140] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4960), 13, + ACTIONS(1715), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5023), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1713), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178557,18 +183244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4962), 31, + ACTIONS(1717), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -178588,717 +183268,896 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [49427] = 16, + [51196] = 33, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4539), 1, + ACTIONS(4587), 1, + anon_sym_GT_GT, + ACTIONS(4591), 1, + anon_sym_AMP, + ACTIONS(4593), 1, + anon_sym_CARET, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + ACTIONS(4601), 1, anon_sym_LT, - STATE(1876), 1, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, + sym__ternary_qmark, + ACTIONS(4703), 1, + anon_sym_COMMA, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 10, - anon_sym_BANG, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4589), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 18, + ACTIONS(4607), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4813), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4603), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51308] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, anon_sym_AMP_AMP, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, + ACTIONS(4191), 1, + anon_sym_GT_GT, + ACTIONS(4195), 1, + anon_sym_AMP, + ACTIONS(4197), 1, + anon_sym_CARET, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(4203), 1, + anon_sym_PERCENT, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4183), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4201), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4209), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [49506] = 17, - ACTIONS(89), 1, + ACTIONS(4817), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [51418] = 17, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4541), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_PERCENT, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4957), 1, + ACTIONS(5025), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4201), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 11, - anon_sym_STAR, + ACTIONS(4577), 8, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 17, - sym__automatic_semicolon, + ACTIONS(4575), 17, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [49587] = 34, - ACTIONS(89), 1, + anon_sym_satisfies, + [51498] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4578), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4588), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, sym__ternary_qmark, - ACTIONS(4884), 1, - anon_sym_RBRACE, - ACTIONS(4964), 1, - anon_sym_COMMA, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4574), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4582), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49702] = 21, - ACTIONS(89), 1, + ACTIONS(4815), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [51608] = 27, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4527), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(4991), 1, + anon_sym_AMP_AMP, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4539), 1, + ACTIONS(4999), 1, + anon_sym_AMP, + ACTIONS(5001), 1, + anon_sym_CARET, + ACTIONS(5003), 1, + anon_sym_PIPE, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(5011), 1, anon_sym_LT, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, + ACTIONS(5015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5017), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4722), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 13, - sym__automatic_semicolon, + ACTIONS(4575), 8, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [49791] = 28, - ACTIONS(89), 1, + anon_sym_implements, + [51708] = 27, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4523), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4525), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4535), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4539), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4722), 1, + ACTIONS(4577), 1, anon_sym_BANG, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 8, - sym__automatic_semicolon, + ACTIONS(4575), 8, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [49894] = 32, - ACTIONS(89), 1, + [51808] = 17, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4523), 1, - anon_sym_AMP_AMP, - ACTIONS(4525), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, - anon_sym_GT_GT, - ACTIONS(4531), 1, - anon_sym_AMP, - ACTIONS(4533), 1, - anon_sym_CARET, - ACTIONS(4535), 1, - anon_sym_PIPE, - ACTIONS(4539), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(5028), 1, anon_sym_LT, - ACTIONS(4551), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4557), 1, - sym__ternary_qmark, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4529), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4575), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4545), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4704), 4, + anon_sym_satisfies, + anon_sym_implements, + [51888] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3421), 30, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - [50005] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4523), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4525), 1, anon_sym_PIPE_PIPE, - ACTIONS(4527), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [51940] = 26, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4531), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4535), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4539), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4541), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4543), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4551), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(4557), 1, - sym__ternary_qmark, - STATE(1876), 1, + ACTIONS(4577), 1, + anon_sym_BANG, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4529), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4537), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4547), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4545), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4869), 4, - sym__automatic_semicolon, + ACTIONS(4575), 9, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [50116] = 32, - ACTIONS(821), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [52038] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5031), 1, + anon_sym_COMMA, + ACTIONS(5033), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(4732), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4869), 4, + [52152] = 14, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(5025), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 18, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [50227] = 34, - ACTIONS(821), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [52226] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - ACTIONS(4967), 1, + ACTIONS(5035), 1, anon_sym_RPAREN, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4754), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, + STATE(5749), 1, + aux_sym_array_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50341] = 19, - ACTIONS(821), 1, + [52340] = 19, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 7, + ACTIONS(4577), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -179306,7 +184165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 15, + ACTIONS(4575), 15, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -179322,721 +184181,687 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [50425] = 34, - ACTIONS(821), 1, + [52424] = 23, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, - anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4672), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - ACTIONS(4969), 1, - anon_sym_COMMA, - ACTIONS(4971), 1, - anon_sym_RBRACK, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4153), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4577), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50539] = 27, - ACTIONS(821), 1, + ACTIONS(4575), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [52516] = 24, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4141), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4722), 1, - anon_sym_BANG, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4577), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 8, + ACTIONS(4575), 10, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [50639] = 32, - ACTIONS(821), 1, + anon_sym_implements, + [52610] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4574), 3, + ACTIONS(4511), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [50749] = 34, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [52720] = 16, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - ACTIONS(4973), 1, - anon_sym_RPAREN, - STATE(1493), 1, - sym_type_arguments, - STATE(4650), 1, - aux_sym_array_repeat1, - STATE(4786), 1, - sym_optional_chain, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4233), 1, + anon_sym_readonly, + STATE(3163), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [50863] = 32, - ACTIONS(821), 1, + ACTIONS(4035), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4231), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [52798] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4991), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4993), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(5003), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(5019), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(5021), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(2325), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4804), 3, + ACTIONS(5037), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_implements, + [52908] = 13, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4019), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 2, + sym_number, + sym_private_property_identifier, + STATE(4279), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - [50973] = 32, - ACTIONS(821), 1, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [52980] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4608), 3, + ACTIONS(4642), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [51083] = 17, - ACTIONS(821), 1, + [53090] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4975), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4151), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 17, - sym__ternary_qmark, + ACTIONS(4175), 1, anon_sym_as, + ACTIONS(4177), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [51163] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5039), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4511), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [51273] = 34, - ACTIONS(821), 1, + [53204] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - ACTIONS(4978), 1, - anon_sym_RPAREN, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4754), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51387] = 13, - ACTIONS(821), 1, + ACTIONS(4799), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [53314] = 14, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4980), 1, + ACTIONS(5009), 1, + anon_sym_STAR_STAR, + ACTIONS(5028), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4624), 12, + ACTIONS(4577), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -180049,19 +184874,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 19, + ACTIONS(4575), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -180069,874 +184892,688 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [51459] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4985), 1, - anon_sym_static, - ACTIONS(4987), 1, - anon_sym_readonly, - ACTIONS(4989), 1, - anon_sym_abstract, - ACTIONS(4991), 1, - anon_sym_accessor, - STATE(2822), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4983), 2, - sym_number, - sym_private_property_identifier, - STATE(3338), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [51533] = 23, - ACTIONS(821), 1, + anon_sym_implements, + [53388] = 19, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4141), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4153), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5011), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4575), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4722), 3, + anon_sym_satisfies, + anon_sym_implements, + [53472] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4081), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4724), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4083), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [51625] = 32, - ACTIONS(821), 1, + anon_sym_extends, + anon_sym_is, + [53524] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4559), 3, + ACTIONS(4793), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [51735] = 24, - ACTIONS(821), 1, + [53634] = 25, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4141), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(5001), 1, + anon_sym_CARET, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5011), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4577), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 10, + ACTIONS(4575), 9, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [51829] = 25, - ACTIONS(821), 1, + anon_sym_implements, + [53730] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4141), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4991), 1, + anon_sym_AMP_AMP, + ACTIONS(4993), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4153), 1, + ACTIONS(5003), 1, + anon_sym_PIPE, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5011), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(5019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5021), 1, + sym__ternary_qmark, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4642), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [51925] = 32, - ACTIONS(821), 1, + [53840] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4991), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4993), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(5003), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(5019), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(5021), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4901), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4561), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [52035] = 32, - ACTIONS(821), 1, + [53950] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4991), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4993), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(5003), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(5019), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(5021), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4703), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4563), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [52145] = 16, - ACTIONS(821), 1, + [54060] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4975), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 10, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [52223] = 7, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(2362), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4249), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4252), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1701), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1705), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [52283] = 17, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4975), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 16, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [52363] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4712), 3, + ACTIONS(4769), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [52473] = 34, - ACTIONS(821), 1, + [54170] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(4991), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(4993), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(5003), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(5019), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(5021), 1, sym__ternary_qmark, - ACTIONS(4969), 1, - anon_sym_COMMA, - ACTIONS(4993), 1, - anon_sym_COLON, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4153), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4742), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52587] = 13, + [54280] = 13, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3873), 1, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3876), 1, + ACTIONS(3930), 1, anon_sym_RBRACE, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4761), 2, + ACTIONS(4621), 2, sym_number, sym_private_property_identifier, - STATE(3807), 3, + STATE(4279), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180968,120 +185605,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [52659] = 34, - ACTIONS(821), 1, + [54352] = 9, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - ACTIONS(4995), 1, - anon_sym_RPAREN, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4754), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4824), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4826), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [52773] = 7, - ACTIONS(4257), 1, - anon_sym_EQ, - ACTIONS(4267), 1, - anon_sym_extends, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [54416] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4261), 2, + ACTIONS(4331), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5041), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4264), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4255), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4329), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 26, - sym__automatic_semicolon, + ACTIONS(4333), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -181101,520 +185711,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52833] = 34, - ACTIONS(821), 1, + [54472] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - ACTIONS(4997), 1, - anon_sym_RPAREN, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4754), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52947] = 34, - ACTIONS(821), 1, + ACTIONS(4767), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [54582] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - ACTIONS(4999), 1, - anon_sym_RPAREN, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4754), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53061] = 34, - ACTIONS(821), 1, + ACTIONS(4765), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [54692] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - ACTIONS(5001), 1, - anon_sym_RPAREN, - STATE(1493), 1, + ACTIONS(5031), 1, + anon_sym_COMMA, + ACTIONS(5043), 1, + anon_sym_COLON, + STATE(1507), 1, sym_type_arguments, - STATE(4754), 1, + STATE(4732), 1, aux_sym_sequence_expression_repeat1, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53175] = 16, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4223), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4023), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4221), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4225), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [53253] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5005), 1, - anon_sym_static, - ACTIONS(5007), 1, - anon_sym_readonly, - ACTIONS(5009), 1, - anon_sym_abstract, - ACTIONS(5011), 1, - anon_sym_accessor, - STATE(2833), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5003), 2, - sym_number, - sym_private_property_identifier, - STATE(3352), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [53327] = 32, - ACTIONS(821), 1, + [54806] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5045), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5013), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [53437] = 13, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4761), 2, - sym_number, - sym_private_property_identifier, - STATE(3807), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, + [54920] = 13, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5047), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [53509] = 6, - ACTIONS(3586), 1, - anon_sym_QMARK, - ACTIONS(3590), 1, - anon_sym_EQ, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3429), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4652), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181625,16 +186064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(4654), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -181648,253 +186084,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [53567] = 32, - ACTIONS(89), 1, + anon_sym_implements, + [54992] = 16, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4576), 1, - anon_sym_AMP_AMP, - ACTIONS(4578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, - anon_sym_GT_GT, - ACTIONS(4584), 1, - anon_sym_AMP, - ACTIONS(4586), 1, - anon_sym_CARET, - ACTIONS(4588), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, - anon_sym_PERCENT, - ACTIONS(4594), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(4604), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, - sym__ternary_qmark, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4611), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4572), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4590), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4598), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4831), 3, - sym__automatic_semicolon, + ACTIONS(4613), 17, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [53677] = 34, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - ACTIONS(4672), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - ACTIONS(4969), 1, - anon_sym_COMMA, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(1493), 1, - sym_type_arguments, - STATE(4153), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4668), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4670), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53791] = 32, - ACTIONS(821), 1, + anon_sym_implements, + [55070] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5053), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4816), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [53901] = 4, - ACTIONS(4949), 1, - anon_sym_is, + [55184] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + ACTIONS(4786), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5055), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4784), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181908,15 +186255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4101), 29, - sym__automatic_semicolon, + ACTIONS(4788), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -181937,22 +186279,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53955] = 5, + [55240] = 16, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5007), 1, + anon_sym_PERCENT, + ACTIONS(5009), 1, + anon_sym_STAR_STAR, + ACTIONS(5028), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5017), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4255), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -181961,67 +186321,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 23, + ACTIONS(4575), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [54011] = 16, - ACTIONS(821), 1, + anon_sym_implements, + [55318] = 17, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(5019), 1, + ACTIONS(5009), 1, + anon_sym_STAR_STAR, + ACTIONS(5028), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4631), 11, + ACTIONS(4577), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -182033,508 +186387,512 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4633), 17, + ACTIONS(4575), 16, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54089] = 34, - ACTIONS(821), 1, + anon_sym_implements, + [55398] = 21, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, - anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4672), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - ACTIONS(5022), 1, - anon_sym_COMMA, - ACTIONS(5024), 1, - anon_sym_RBRACK, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4565), 1, - aux_sym_array_repeat1, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54203] = 32, - ACTIONS(821), 1, + ACTIONS(4577), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [55486] = 28, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(4991), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4993), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(5003), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4640), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [54313] = 6, - ACTIONS(4917), 1, - anon_sym_LT, - ACTIONS(4947), 1, - anon_sym_DOT, - STATE(2121), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4069), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3502), 28, - sym__automatic_semicolon, + ACTIONS(4575), 7, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [54371] = 32, - ACTIONS(89), 1, + anon_sym_implements, + [55588] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4991), 1, anon_sym_AMP_AMP, - ACTIONS(4578), 1, + ACTIONS(4993), 1, anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4588), 1, + ACTIONS(5003), 1, anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(5019), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(5021), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4817), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4821), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [54481] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4691), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5026), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4689), 13, - anon_sym_STAR, + [55698] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4991), 1, + anon_sym_AMP_AMP, + ACTIONS(4993), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4995), 1, anon_sym_GT_GT, + ACTIONS(4999), 1, anon_sym_AMP, + ACTIONS(5001), 1, + anon_sym_CARET, + ACTIONS(5003), 1, anon_sym_PIPE, + ACTIONS(5007), 1, + anon_sym_PERCENT, + ACTIONS(5009), 1, + anon_sym_STAR_STAR, + ACTIONS(5011), 1, + anon_sym_LT, + ACTIONS(5019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5021), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4989), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4693), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5017), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4815), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55808] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4991), 1, anon_sym_AMP_AMP, + ACTIONS(4993), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4995), 1, + anon_sym_GT_GT, + ACTIONS(4999), 1, + anon_sym_AMP, + ACTIONS(5001), 1, anon_sym_CARET, + ACTIONS(5003), 1, + anon_sym_PIPE, + ACTIONS(5007), 1, anon_sym_PERCENT, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5011), 1, + anon_sym_LT, + ACTIONS(5019), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [54537] = 5, + ACTIONS(5021), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5028), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1701), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4799), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [54593] = 34, - ACTIONS(821), 1, + [55918] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(4991), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(4993), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(5003), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(5019), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(5021), 1, sym__ternary_qmark, - ACTIONS(4969), 1, - anon_sym_COMMA, - ACTIONS(5030), 1, - anon_sym_RBRACK, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4153), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4793), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54707] = 6, - ACTIONS(89), 1, + [56028] = 17, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5025), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2170), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4081), 13, + ACTIONS(4577), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -182543,109 +186901,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4083), 26, - sym__automatic_semicolon, + ACTIONS(4575), 16, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [54765] = 21, - ACTIONS(821), 1, + [56108] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4141), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, + anon_sym_AMP_AMP, + ACTIONS(4521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4153), 1, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, + anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4539), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(4547), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4549), 1, + sym__ternary_qmark, + ACTIONS(5031), 1, + anon_sym_COMMA, + ACTIONS(5057), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(4732), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + ACTIONS(4543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4722), 5, + [56222] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4991), 1, + anon_sym_AMP_AMP, + ACTIONS(4993), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4995), 1, + anon_sym_GT_GT, + ACTIONS(4999), 1, anon_sym_AMP, + ACTIONS(5001), 1, + anon_sym_CARET, + ACTIONS(5003), 1, anon_sym_PIPE, + ACTIONS(5007), 1, + anon_sym_PERCENT, + ACTIONS(5009), 1, + anon_sym_STAR_STAR, + ACTIONS(5011), 1, + anon_sym_LT, + ACTIONS(5019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5021), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4989), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [54853] = 3, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4769), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56332] = 16, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_PERCENT, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(5025), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1819), 13, + ACTIONS(4173), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -182654,310 +187120,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 30, - sym__automatic_semicolon, + ACTIONS(4575), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [54905] = 28, - ACTIONS(821), 1, + [56410] = 26, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(5003), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4722), 1, - anon_sym_BANG, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 7, + ACTIONS(4575), 9, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [55007] = 33, - ACTIONS(89), 1, + anon_sym_implements, + [56508] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4576), 1, + ACTIONS(4991), 1, anon_sym_AMP_AMP, - ACTIONS(4578), 1, + ACTIONS(4993), 1, anon_sym_PIPE_PIPE, - ACTIONS(4580), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4584), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4586), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4588), 1, + ACTIONS(5003), 1, anon_sym_PIPE, - ACTIONS(4592), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4594), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4596), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4604), 1, + ACTIONS(5019), 1, anon_sym_QMARK_QMARK, - ACTIONS(4606), 1, + ACTIONS(5021), 1, sym__ternary_qmark, - ACTIONS(4804), 1, - anon_sym_COMMA, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4565), 2, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4572), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4590), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4600), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4602), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4886), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2173), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4598), 3, + ACTIONS(4765), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55119] = 34, - ACTIONS(821), 1, + [56618] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4991), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4993), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(5003), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(5019), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(5021), 1, sym__ternary_qmark, - ACTIONS(5032), 1, - anon_sym_RPAREN, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, - STATE(5032), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4708), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56728] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4991), 1, + anon_sym_AMP_AMP, + ACTIONS(4993), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4995), 1, + anon_sym_GT_GT, + ACTIONS(4999), 1, + anon_sym_AMP, + ACTIONS(5001), 1, + anon_sym_CARET, + ACTIONS(5003), 1, + anon_sym_PIPE, + ACTIONS(5007), 1, + anon_sym_PERCENT, + ACTIONS(5009), 1, + anon_sym_STAR_STAR, + ACTIONS(5011), 1, + anon_sym_LT, + ACTIONS(5019), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5021), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + ACTIONS(4987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4989), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4997), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5017), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4515), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55233] = 7, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(4825), 1, + [56838] = 12, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5059), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4828), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4293), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3429), 11, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4744), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(4746), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -182973,352 +187502,439 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [55293] = 34, - ACTIONS(821), 1, + anon_sym_implements, + [56908] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4991), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4993), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4995), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4999), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(5003), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(5007), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5009), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5011), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(5019), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(5021), 1, sym__ternary_qmark, - ACTIONS(5034), 1, - anon_sym_RPAREN, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4754), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4989), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4997), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5015), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5017), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4511), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5013), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55407] = 32, - ACTIONS(821), 1, + [57018] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5062), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4704), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55517] = 32, - ACTIONS(821), 1, + [57132] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5064), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4869), 3, + [57246] = 7, + ACTIONS(1715), 1, + anon_sym_EQ, + ACTIONS(2366), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4323), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55627] = 34, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, + ACTIONS(4326), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1713), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4135), 1, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1717), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4165), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - ACTIONS(5036), 1, - anon_sym_RPAREN, - STATE(1493), 1, + [57306] = 6, + ACTIONS(4755), 1, + anon_sym_DOT, + ACTIONS(4757), 1, + anon_sym_LT, + STATE(2103), 1, sym_type_arguments, - STATE(4754), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4041), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(3524), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [55741] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [57364] = 14, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5068), 1, + anon_sym_static, + ACTIONS(5070), 1, + anon_sym_readonly, + ACTIONS(5072), 1, + anon_sym_abstract, + ACTIONS(5074), 1, + anon_sym_accessor, + STATE(3213), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5066), 2, + sym_number, + sym_private_property_identifier, + STATE(3809), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57438] = 13, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3873), 1, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3888), 1, + ACTIONS(4016), 1, anon_sym_RBRACE, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - STATE(4821), 1, + STATE(5516), 1, aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4761), 2, + ACTIONS(4621), 2, sym_number, sym_private_property_identifier, - STATE(3807), 3, + STATE(4279), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -183350,150 +187966,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [55813] = 14, - ACTIONS(821), 1, + [57510] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4155), 1, + ACTIONS(4187), 1, + anon_sym_AMP_AMP, + ACTIONS(4189), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4191), 1, + anon_sym_GT_GT, + ACTIONS(4195), 1, + anon_sym_AMP, + ACTIONS(4197), 1, + anon_sym_CARET, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(4203), 1, + anon_sym_PERCENT, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4975), 1, + ACTIONS(4207), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(4215), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, + sym__ternary_qmark, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4183), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4193), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4201), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4213), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 12, + ACTIONS(4209), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4901), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57620] = 7, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4335), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4338), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4329), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 18, + ACTIONS(4333), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [55887] = 5, - ACTIONS(4917), 1, + [57680] = 34, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, + anon_sym_AMP_AMP, + ACTIONS(4521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, + anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4539), 1, anon_sym_LT, - STATE(2157), 1, + ACTIONS(4547), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4549), 1, + sym__ternary_qmark, + ACTIONS(5076), 1, + anon_sym_COMMA, + ACTIONS(5078), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_type_arguments, + STATE(5582), 1, + aux_sym_array_repeat1, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 12, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4077), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57794] = 34, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, anon_sym_AMP_AMP, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, anon_sym_PERCENT, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4549), 1, + sym__ternary_qmark, + ACTIONS(5031), 1, + anon_sym_COMMA, + ACTIONS(5080), 1, + anon_sym_RBRACK, + STATE(1507), 1, + sym_type_arguments, + STATE(4732), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [55943] = 6, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_DOT, - STATE(2079), 1, + ACTIONS(4513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4517), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57908] = 7, + ACTIONS(3517), 1, + anon_sym_EQ, + ACTIONS(4888), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 13, + ACTIONS(4891), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4505), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4095), 27, - sym__automatic_semicolon, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183512,83 +188310,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [56001] = 12, - ACTIONS(821), 1, + [57968] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5040), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, + anon_sym_AMP_AMP, + ACTIONS(4521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, + anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4539), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(4547), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4549), 1, + sym__ternary_qmark, + ACTIONS(5031), 1, + anon_sym_COMMA, + ACTIONS(5082), 1, + anon_sym_RBRACE, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(4732), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4676), 12, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4678), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58082] = 34, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(1978), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, anon_sym_AMP_AMP, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4191), 1, + anon_sym_GT_GT, + ACTIONS(4195), 1, + anon_sym_AMP, + ACTIONS(4197), 1, anon_sym_CARET, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(4203), 1, anon_sym_PERCENT, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4219), 1, anon_sym_satisfies, - [56071] = 9, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4157), 1, - anon_sym_LT, - STATE(1493), 1, + ACTIONS(4221), 1, + sym__ternary_qmark, + ACTIONS(5084), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5829), 1, + aux_sym_array_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1799), 2, + ACTIONS(4173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4183), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4193), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4201), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4213), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4800), 12, + ACTIONS(4209), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58196] = 6, + ACTIONS(3538), 1, + anon_sym_EQ, + ACTIONS(3585), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3583), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183599,14 +188495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 24, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -183625,96 +188520,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [56135] = 8, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(4249), 1, + [58254] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, + anon_sym_AMP_AMP, + ACTIONS(4189), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4191), 1, + anon_sym_GT_GT, + ACTIONS(4195), 1, + anon_sym_AMP, + ACTIONS(4197), 1, + anon_sym_CARET, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(4203), 1, + anon_sym_PERCENT, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5043), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2362), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1701), 11, + ACTIONS(4173), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4193), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4213), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4209), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4703), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [58364] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4187), 1, anon_sym_AMP_AMP, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4191), 1, + anon_sym_GT_GT, + ACTIONS(4195), 1, + anon_sym_AMP, + ACTIONS(4197), 1, anon_sym_CARET, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(4203), 1, anon_sym_PERCENT, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4173), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4183), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4193), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4201), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [56197] = 8, - ACTIONS(4257), 1, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4209), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4742), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [58474] = 13, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4261), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5047), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4267), 4, + ACTIONS(4621), 2, + sym_number, + sym_private_property_identifier, + STATE(4279), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4255), 11, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [58546] = 9, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4207), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4824), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 22, + ACTIONS(4826), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -183732,175 +188791,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [56259] = 34, - ACTIONS(821), 1, + [58610] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - ACTIONS(5051), 1, - anon_sym_RPAREN, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4714), 1, - aux_sym_array_repeat1, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56373] = 34, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(1978), 1, + ACTIONS(5086), 3, anon_sym_COMMA, - ACTIONS(4031), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + [58720] = 34, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4221), 1, sym__ternary_qmark, - ACTIONS(5053), 1, + ACTIONS(5088), 1, anon_sym_RPAREN, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4635), 1, - aux_sym_array_repeat1, - STATE(4786), 1, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56487] = 4, - ACTIONS(4949), 1, - anon_sym_is, + [58834] = 12, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5090), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 13, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4744), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183911,21 +188984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 29, - sym__automatic_semicolon, + ACTIONS(4746), 21, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -183941,96 +189007,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [56541] = 34, - ACTIONS(821), 1, + [58904] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - ACTIONS(5022), 1, + ACTIONS(5076), 1, anon_sym_COMMA, - ACTIONS(5055), 1, + ACTIONS(5093), 1, anon_sym_RBRACK, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - STATE(4927), 1, + STATE(5893), 1, aux_sym_array_repeat1, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56655] = 4, - ACTIONS(5057), 1, + [59018] = 8, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4335), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4338), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5095), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4341), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4329), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4333), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59080] = 8, + ACTIONS(1715), 1, + anon_sym_EQ, + ACTIONS(4323), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4326), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5099), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2366), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1713), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1717), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59142] = 4, + ACTIONS(4759), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 13, + ACTIONS(4097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184044,7 +189216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4077), 29, + ACTIONS(4099), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184074,11 +189246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56709] = 3, + [59196] = 4, + ACTIONS(5103), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3178), 13, + ACTIONS(4093), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184092,7 +189266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3180), 30, + ACTIONS(4095), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184122,59 +189296,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [56761] = 13, + [59250] = 6, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(5105), 1, + anon_sym_DOT, + STATE(2091), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4085), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4087), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [59308] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(233), 1, + anon_sym_STAR, + ACTIONS(2026), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3885), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5111), 1, + anon_sym_async, + ACTIONS(5113), 1, + anon_sym_static, + ACTIONS(5115), 1, + anon_sym_readonly, + ACTIONS(5121), 1, + anon_sym_override, + STATE(2798), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + STATE(3147), 1, + sym_accessibility_modifier, + STATE(3167), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4761), 2, + ACTIONS(4561), 2, sym_number, sym_private_property_identifier, - STATE(3807), 3, + ACTIONS(5109), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5117), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5119), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4071), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 23, + STATE(6836), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5107), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -184182,104 +189416,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [56833] = 34, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(1978), 1, + [59398] = 5, + ACTIONS(4757), 1, + anon_sym_LT, + STATE(2092), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4093), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4095), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(4031), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [59454] = 34, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(4539), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - ACTIONS(5059), 1, - anon_sym_RPAREN, - STATE(1493), 1, + ACTIONS(5076), 1, + anon_sym_COMMA, + ACTIONS(5123), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_type_arguments, - STATE(4535), 1, + STATE(5582), 1, aux_sym_array_repeat1, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56947] = 9, - ACTIONS(821), 1, + [59568] = 6, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(5061), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1799), 2, + STATE(2173), 2, sym_template_string, sym_arguments, - ACTIONS(4800), 12, + ACTIONS(4107), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184290,13 +189569,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 24, + ACTIONS(4109), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -184316,491 +189599,576 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - anon_sym_implements, - [57011] = 32, - ACTIONS(821), 1, + [59626] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(5069), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(5077), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(5079), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(5093), 1, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4712), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57121] = 32, - ACTIONS(821), 1, + ACTIONS(4708), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [59736] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(5069), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(5077), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(5079), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(5093), 1, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5125), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, + STATE(5993), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4804), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57231] = 32, - ACTIONS(821), 1, + [59850] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(5069), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(5077), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(5079), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(5093), 1, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4816), 3, - anon_sym_LBRACE, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5127), 3, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + [59960] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1825), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1823), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57341] = 32, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [60012] = 4, + ACTIONS(4759), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4103), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4105), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [60066] = 34, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(5069), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(5077), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(5079), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(5093), 1, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5129), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4574), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57451] = 32, - ACTIONS(821), 1, + [60180] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(5069), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(5077), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(5079), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(5093), 1, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4616), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57561] = 19, - ACTIONS(821), 1, + ACTIONS(4515), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [60290] = 16, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5061), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_GT_GT, - ACTIONS(5083), 1, - anon_sym_PERCENT, - ACTIONS(5085), 1, - anon_sym_STAR_STAR, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5063), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5073), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5081), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 7, - anon_sym_BANG, + ACTIONS(4611), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 15, + ACTIONS(4613), 17, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - anon_sym_LT_EQ, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [57645] = 14, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5085), 1, - anon_sym_STAR_STAR, - ACTIONS(5097), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [60368] = 6, + ACTIONS(3565), 1, + anon_sym_EQ, + ACTIONS(3575), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 12, + ACTIONS(3568), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184811,543 +190179,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 18, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [57719] = 26, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_GT_GT, - ACTIONS(5075), 1, - anon_sym_AMP, - ACTIONS(5077), 1, - anon_sym_CARET, - ACTIONS(5079), 1, - anon_sym_PIPE, - ACTIONS(5083), 1, - anon_sym_PERCENT, - ACTIONS(5085), 1, - anon_sym_STAR_STAR, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5063), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5065), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5073), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5089), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5091), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5087), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [57817] = 27, - ACTIONS(821), 1, + [60426] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(5071), 1, + ACTIONS(4189), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(5077), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(5079), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - STATE(1493), 1, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, + sym__ternary_qmark, + ACTIONS(5134), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5087), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [57917] = 17, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_PERCENT, - ACTIONS(5085), 1, - anon_sym_STAR_STAR, - ACTIONS(5097), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [60540] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(3394), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5081), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 17, + ACTIONS(3396), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [57997] = 23, - ACTIONS(821), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [60592] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(4187), 1, + anon_sym_AMP_AMP, + ACTIONS(4189), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(5083), 1, + ACTIONS(4195), 1, + anon_sym_AMP, + ACTIONS(4197), 1, + anon_sym_CARET, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - STATE(1493), 1, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, + sym__ternary_qmark, + ACTIONS(5136), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5756), 1, + aux_sym_array_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5087), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [58089] = 24, - ACTIONS(821), 1, + [60706] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(5083), 1, + ACTIONS(4593), 1, + anon_sym_CARET, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, + ACTIONS(4601), 1, + anon_sym_LT, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, anon_sym_PIPE, - ACTIONS(5063), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5065), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5073), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5089), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5091), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5087), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 10, - sym__ternary_qmark, + ACTIONS(4633), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, + ACTIONS(4648), 1, anon_sym_satisfies, - anon_sym_implements, - [58183] = 25, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_GT_GT, - ACTIONS(5075), 1, - anon_sym_AMP, - ACTIONS(5077), 1, - anon_sym_CARET, - ACTIONS(5083), 1, - anon_sym_PERCENT, - ACTIONS(5085), 1, - anon_sym_STAR_STAR, - STATE(1493), 1, + ACTIONS(4650), 1, + sym__ternary_qmark, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5063), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5087), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [58279] = 16, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_PERCENT, - ACTIONS(5085), 1, - anon_sym_STAR_STAR, - ACTIONS(5097), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5063), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1799), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 10, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(4603), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [58357] = 17, - ACTIONS(821), 1, + ACTIONS(4976), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [60816] = 13, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5085), 1, - anon_sym_STAR_STAR, - ACTIONS(5097), 1, + ACTIONS(5138), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 11, + ACTIONS(4652), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -185358,803 +190532,677 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 16, + ACTIONS(4654), 19, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [58437] = 21, - ACTIONS(821), 1, + anon_sym_satisfies, + [60888] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_GT_GT, - ACTIONS(5083), 1, - anon_sym_PERCENT, - ACTIONS(5085), 1, - anon_sym_STAR_STAR, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5065), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5073), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5081), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5087), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4722), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 12, - sym__ternary_qmark, + ACTIONS(4175), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4177), 1, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [58525] = 28, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(5069), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(5077), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(5079), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - STATE(1493), 1, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, + sym__ternary_qmark, + ACTIONS(5141), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5686), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5087), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [58627] = 32, - ACTIONS(821), 1, + [61002] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(5069), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(5077), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(5079), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(5093), 1, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5143), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, + STATE(5986), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4704), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58737] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, - anon_sym_AMP_AMP, - ACTIONS(5069), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, - anon_sym_GT_GT, - ACTIONS(5075), 1, - anon_sym_AMP, - ACTIONS(5077), 1, - anon_sym_CARET, - ACTIONS(5079), 1, - anon_sym_PIPE, - ACTIONS(5083), 1, - anon_sym_PERCENT, - ACTIONS(5085), 1, - anon_sym_STAR_STAR, - ACTIONS(5093), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [61116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(3390), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5065), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5081), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4869), 3, - anon_sym_LBRACE, + ACTIONS(3392), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58847] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, anon_sym_AMP_AMP, - ACTIONS(5069), 1, anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, - anon_sym_GT_GT, - ACTIONS(5075), 1, - anon_sym_AMP, - ACTIONS(5077), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5079), 1, - anon_sym_PIPE, - ACTIONS(5083), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, anon_sym_STAR_STAR, - ACTIONS(5093), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5065), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5073), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5089), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5091), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4608), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58957] = 32, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, - anon_sym_AMP_AMP, - ACTIONS(5069), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, - anon_sym_GT_GT, - ACTIONS(5075), 1, - anon_sym_AMP, - ACTIONS(5077), 1, - anon_sym_CARET, - ACTIONS(5079), 1, - anon_sym_PIPE, - ACTIONS(5083), 1, - anon_sym_PERCENT, - ACTIONS(5085), 1, - anon_sym_STAR_STAR, - ACTIONS(5093), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [61168] = 14, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5147), 1, + anon_sym_static, + ACTIONS(5149), 1, + anon_sym_readonly, + ACTIONS(5151), 1, + anon_sym_abstract, + ACTIONS(5153), 1, + anon_sym_accessor, + STATE(3225), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5065), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5073), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5089), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5091), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4511), 3, - anon_sym_LBRACE, + ACTIONS(5145), 2, + sym_number, + sym_private_property_identifier, + STATE(3839), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59067] = 32, - ACTIONS(821), 1, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [61242] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(5069), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(5077), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(5079), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(5093), 1, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5155), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, + STATE(5982), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4559), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59177] = 32, - ACTIONS(821), 1, + [61356] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, - anon_sym_AMP_AMP, - ACTIONS(5069), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, + ACTIONS(4587), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4591), 1, anon_sym_AMP, - ACTIONS(5077), 1, + ACTIONS(4593), 1, anon_sym_CARET, - ACTIONS(5079), 1, - anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(4597), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(5093), 1, + ACTIONS(4601), 1, + anon_sym_LT, + ACTIONS(4625), 1, + anon_sym_AMP_AMP, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4646), 1, anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(4650), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4581), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4589), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4595), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4607), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4561), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, + ACTIONS(4603), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59287] = 32, - ACTIONS(821), 1, + ACTIONS(4931), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [61466] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(5069), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(5077), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(5079), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(5093), 1, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5031), 1, + anon_sym_COMMA, + ACTIONS(5157), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(4732), 1, + aux_sym_sequence_expression_repeat1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4563), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59397] = 32, - ACTIONS(821), 1, + [61580] = 34, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(5069), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(5075), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(5077), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(5079), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(5085), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(5093), 1, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5159), 1, + anon_sym_RPAREN, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, + STATE(5967), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5065), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5081), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5089), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4618), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59507] = 6, - ACTIONS(3530), 1, + [61694] = 13, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(3576), 1, - anon_sym_QMARK, + ACTIONS(4557), 1, + anon_sym_LBRACK, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3572), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(4621), 2, + sym_number, + sym_private_property_identifier, + STATE(4279), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3429), 13, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [61766] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4411), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186168,10 +191216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(4413), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -186192,33 +191245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59565] = 13, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5100), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_extends, + [61817] = 4, + ACTIONS(4355), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4624), 12, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186229,13 +191263,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 19, + ACTIONS(4285), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186249,42 +191291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [59637] = 16, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5103), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [61870] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4631), 11, + ACTIONS(4403), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -186293,12 +191310,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4633), 17, + ACTIONS(4405), 29, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186312,109 +191338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [59715] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, - anon_sym_AMP_AMP, - ACTIONS(5069), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, - anon_sym_GT_GT, - ACTIONS(5075), 1, - anon_sym_AMP, - ACTIONS(5077), 1, - anon_sym_CARET, - ACTIONS(5079), 1, - anon_sym_PIPE, - ACTIONS(5083), 1, - anon_sym_PERCENT, - ACTIONS(5085), 1, - anon_sym_STAR_STAR, - ACTIONS(5093), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5063), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5065), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5073), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5089), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5091), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4640), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5087), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59825] = 12, - ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5106), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [61921] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4676), 12, + ACTIONS(4399), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186425,13 +191358,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4678), 21, + ACTIONS(4401), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186447,138 +191388,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [59895] = 32, - ACTIONS(821), 1, + anon_sym_extends, + [61972] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4633), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4137), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(4147), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(4149), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5185), 1, anon_sym_LT, - ACTIONS(4165), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4616), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [60005] = 13, - ACTIONS(2328), 1, + [62081] = 14, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3891), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5197), 1, + anon_sym_STAR, + ACTIONS(5199), 1, + anon_sym_async, + ACTIONS(5203), 1, + anon_sym_readonly, + STATE(3177), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4761), 2, + ACTIONS(5201), 2, sym_number, sym_private_property_identifier, - STATE(3807), 3, + ACTIONS(5205), 2, + anon_sym_get, + anon_sym_set, + STATE(3534), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2352), 23, + ACTIONS(3671), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -186586,243 +191527,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60077] = 26, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4722), 1, - anon_sym_BANG, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [62154] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4395), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 9, + ACTIONS(4397), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [60175] = 34, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - ACTIONS(5109), 1, - anon_sym_RPAREN, - STATE(1493), 1, - sym_type_arguments, - STATE(4754), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4143), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60289] = 34, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - ACTIONS(4672), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - ACTIONS(4969), 1, - anon_sym_COMMA, - ACTIONS(5111), 1, - anon_sym_RBRACK, - STATE(1493), 1, - sym_type_arguments, - STATE(4153), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4668), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4670), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60403] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62205] = 4, + ACTIONS(4392), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3174), 13, + ACTIONS(4383), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186836,7 +191595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3176), 30, + ACTIONS(4385), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186846,7 +191605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186866,330 +191624,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [60455] = 32, - ACTIONS(821), 1, + [62258] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4633), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4648), 1, anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(5185), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4703), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5113), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [60565] = 34, - ACTIONS(821), 1, + [62367] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4633), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4648), 1, anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(5185), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - ACTIONS(4969), 1, - anon_sym_COMMA, - ACTIONS(5115), 1, - anon_sym_RBRACK, - STATE(1493), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4153), 1, - aux_sym_sequence_expression_repeat1, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4742), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60679] = 34, - ACTIONS(821), 1, + [62476] = 32, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4633), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4648), 1, anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(5185), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - ACTIONS(5022), 1, - anon_sym_COMMA, - ACTIONS(5117), 1, - anon_sym_RBRACK, - STATE(1493), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4565), 1, - aux_sym_array_repeat1, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4668), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60793] = 34, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - ACTIONS(5119), 1, - anon_sym_RPAREN, - STATE(1493), 1, - sym_type_arguments, - STATE(4594), 1, - aux_sym_array_repeat1, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + ACTIONS(5207), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60907] = 3, + [62585] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 13, + ACTIONS(3655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187203,7 +191873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4091), 30, + ACTIONS(3463), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187233,248 +191903,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_is, - [60959] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5061), 1, - anon_sym_LT, - ACTIONS(5067), 1, - anon_sym_AMP_AMP, - ACTIONS(5069), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, - anon_sym_GT_GT, - ACTIONS(5075), 1, - anon_sym_AMP, - ACTIONS(5077), 1, - anon_sym_CARET, - ACTIONS(5079), 1, - anon_sym_PIPE, - ACTIONS(5083), 1, - anon_sym_PERCENT, - ACTIONS(5085), 1, - anon_sym_STAR_STAR, - ACTIONS(5093), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5095), 1, - sym__ternary_qmark, - STATE(2212), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [62636] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5063), 2, + ACTIONS(3653), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5065), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5073), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5089), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5091), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5087), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5121), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [61069] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4618), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [61179] = 34, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(1978), 1, + ACTIONS(3457), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(4031), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4137), 1, anon_sym_AMP_AMP, - ACTIONS(4139), 1, anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - ACTIONS(5123), 1, - anon_sym_RPAREN, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - STATE(4789), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4163), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [61293] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62687] = 4, + ACTIONS(4387), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3170), 13, + ACTIONS(4383), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187488,7 +191971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3172), 30, + ACTIONS(4385), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187498,7 +191981,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -187518,16 +192000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [61345] = 5, - ACTIONS(4515), 1, - anon_sym_LPAREN, - STATE(2224), 1, - sym_arguments, + [62740] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 13, + ACTIONS(4379), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187541,12 +192018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4197), 27, + ACTIONS(4381), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, @@ -187569,17 +192047,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61400] = 6, - ACTIONS(5125), 1, + anon_sym_extends, + [62791] = 6, + ACTIONS(5209), 1, anon_sym_AMP, - ACTIONS(5127), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(5129), 1, + ACTIONS(5213), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 11, + ACTIONS(4379), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187591,7 +192070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4207), 28, + ACTIONS(4381), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187620,11 +192099,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61457] = 3, + [62848] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 13, + ACTIONS(4375), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187638,7 +192117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4175), 29, + ACTIONS(4377), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187668,11 +192147,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61508] = 3, + [62899] = 19, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(695), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + STATE(3178), 1, + sym_override_modifier, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [62982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 13, + ACTIONS(4371), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187686,7 +192229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4175), 29, + ACTIONS(4373), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187716,24 +192259,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61559] = 9, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(5131), 1, - anon_sym_LT, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + [63033] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4800), 12, + ACTIONS(4367), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187744,12 +192274,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 23, + ACTIONS(4369), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -187769,17 +192304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [61622] = 4, + anon_sym_extends, + [63084] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4273), 13, + ACTIONS(4359), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187793,12 +192325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 25, + ACTIONS(4361), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -187819,41 +192354,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61675] = 9, - ACTIONS(4261), 1, - anon_sym_LBRACK, - ACTIONS(4267), 1, anon_sym_extends, - ACTIONS(5133), 1, - anon_sym_RPAREN, + [63135] = 9, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4264), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5017), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4255), 11, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4824), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 22, + ACTIONS(4826), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187871,72 +192408,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [61738] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5136), 1, - anon_sym_STAR, - ACTIONS(5138), 1, - anon_sym_async, - ACTIONS(5142), 1, - anon_sym_readonly, - STATE(2760), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5140), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5144), 2, - anon_sym_get, - anon_sym_set, - STATE(3068), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [61811] = 3, + [63198] = 4, + ACTIONS(1715), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3665), 13, + ACTIONS(1713), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187950,7 +192429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3469), 29, + ACTIONS(1717), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187979,12 +192458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61862] = 3, + [63251] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3661), 13, + ACTIONS(3270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187998,7 +192476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3471), 29, + ACTIONS(3272), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188028,11 +192506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61913] = 3, + [63302] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 13, + ACTIONS(4351), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188046,7 +192524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4179), 29, + ACTIONS(4353), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188076,91 +192554,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61964] = 33, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5150), 1, - anon_sym_SEMI, - ACTIONS(5152), 1, - anon_sym_AMP_AMP, - ACTIONS(5154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, + [63353] = 4, + ACTIONS(5209), 1, anon_sym_AMP, - ACTIONS(5162), 1, - anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - ACTIONS(5178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5180), 1, - sym__automatic_semicolon, - ACTIONS(5182), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5146), 2, + ACTIONS(4111), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(4113), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62075] = 4, - ACTIONS(4476), 1, - anon_sym_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [63406] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4453), 13, + ACTIONS(4347), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188174,7 +192621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4455), 28, + ACTIONS(4349), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188184,6 +192631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188203,11 +192651,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62128] = 3, + [63457] = 13, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4507), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4479), 13, + ACTIONS(4035), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4231), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [63528] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2376), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188221,7 +192727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 29, + ACTIONS(2374), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188251,42 +192757,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62179] = 14, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1573), 1, + [63579] = 12, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1575), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3909), 1, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5186), 1, - anon_sym_COMMA, - ACTIONS(5188), 1, - anon_sym_RBRACE, - STATE(4692), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5190), 2, + ACTIONS(4035), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4621), 2, sym_number, sym_private_property_identifier, - STATE(4753), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5612), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5619), 3, + ACTIONS(4623), 2, + anon_sym_get, + anon_sym_set, + STATE(4279), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(5184), 23, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -188296,8 +192802,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -188310,11 +192814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [62252] = 3, + [63648] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 13, + ACTIONS(4319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188328,7 +192832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4179), 29, + ACTIONS(4321), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188358,11 +192862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62303] = 3, + [63699] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 13, + ACTIONS(4315), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188376,7 +192880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4179), 29, + ACTIONS(4317), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188406,29 +192910,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62354] = 6, - ACTIONS(5125), 1, - anon_sym_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE, - ACTIONS(5129), 1, - anon_sym_extends, + [63750] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4479), 11, + ACTIONS(4311), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 28, + ACTIONS(4313), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188457,11 +192957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62411] = 3, + anon_sym_extends, + [63801] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 13, + ACTIONS(4307), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188475,7 +192976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4485), 29, + ACTIONS(4309), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188505,11 +193006,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62462] = 3, + [63852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 13, + ACTIONS(4311), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188523,7 +193024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4183), 29, + ACTIONS(4313), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188553,11 +193054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62513] = 3, + [63903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 13, + ACTIONS(4307), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188571,7 +193072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 29, + ACTIONS(4309), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188601,11 +193102,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62564] = 3, + [63954] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 13, + ACTIONS(4303), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188619,7 +193120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4113), 29, + ACTIONS(4305), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188649,11 +193150,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62615] = 3, + [64005] = 14, + ACTIONS(170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(3771), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_COMMA, + ACTIONS(5221), 1, + anon_sym_RBRACE, + STATE(5455), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4491), 13, + ACTIONS(5223), 2, + sym_number, + sym_private_property_identifier, + STATE(5451), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7114), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(7173), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5217), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [64078] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4299), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188667,7 +193227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4493), 29, + ACTIONS(4301), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188697,11 +193257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62666] = 3, + [64129] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 13, + ACTIONS(4303), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188715,7 +193275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 29, + ACTIONS(4305), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188745,165 +193305,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62717] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, - anon_sym_AMP_AMP, - ACTIONS(5154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5162), 1, - anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - ACTIONS(5178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + [64180] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4559), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5146), 2, + ACTIONS(4299), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62826] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, + ACTIONS(4301), 29, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4519), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5154), 1, anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5162), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, anon_sym_STAR_STAR, - ACTIONS(5178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4561), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5146), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5176), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62935] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [64231] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + ACTIONS(4295), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188917,7 +193371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4101), 29, + ACTIONS(4297), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188947,11 +193401,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62986] = 3, + [64282] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3342), 13, + ACTIONS(4291), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188965,7 +193419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3344), 29, + ACTIONS(4293), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188995,11 +193449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63037] = 3, + [64333] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4499), 13, + ACTIONS(4295), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189013,7 +193467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4501), 29, + ACTIONS(4297), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189043,29 +193497,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63088] = 6, - ACTIONS(5125), 1, - anon_sym_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE, - ACTIONS(5129), 1, - anon_sym_extends, + [64384] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 11, + ACTIONS(4291), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4187), 28, + ACTIONS(4293), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189094,18 +193544,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63145] = 4, - ACTIONS(5125), 1, - anon_sym_AMP, + anon_sym_extends, + [64435] = 4, + ACTIONS(4287), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 12, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -189113,7 +193565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 29, + ACTIONS(4285), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189142,34 +193594,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63198] = 13, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(5192), 1, - anon_sym_LT, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + [64488] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4624), 12, + ACTIONS(4275), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189180,13 +193609,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 18, + ACTIONS(4277), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -189200,12 +193637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [63269] = 3, + anon_sym_extends, + [64539] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4487), 13, + ACTIONS(4271), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189219,7 +193660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4489), 29, + ACTIONS(4273), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189249,25 +193690,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63320] = 3, + [64590] = 6, + ACTIONS(5209), 1, + anon_sym_AMP, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5213), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3354), 13, + ACTIONS(4267), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3356), 29, + ACTIONS(4269), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189296,321 +193741,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63371] = 24, - ACTIONS(89), 1, + [64647] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5146), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5176), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [63464] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4513), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(5154), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(5160), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(5162), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(5168), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(5178), 1, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4563), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5146), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5148), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5166), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(5225), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5172), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63573] = 25, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5162), 1, - anon_sym_CARET, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + [64756] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5146), 2, + ACTIONS(3266), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 8, + ACTIONS(3268), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [63668] = 19, - ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - ACTIONS(5197), 1, anon_sym_RBRACE, - STATE(2766), 1, - sym_override_modifier, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [63751] = 16, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(4555), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5199), 1, - anon_sym_LT, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_extends, + [64807] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4631), 11, + ACTIONS(4263), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -189619,12 +193881,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4633), 16, + ACTIONS(4265), 29, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -189638,258 +193909,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63828] = 19, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(2766), 1, - sym_override_modifier, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [63911] = 32, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, - anon_sym_AMP_AMP, - ACTIONS(5154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5162), 1, - anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - ACTIONS(5178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_extends, + [64858] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4640), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5146), 2, + ACTIONS(4259), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64020] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4261), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - ACTIONS(4672), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [64909] = 6, + ACTIONS(5209), 1, + anon_sym_AMP, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5213), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4259), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4884), 2, + ACTIONS(4261), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64129] = 16, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4521), 1, anon_sym_DOT, - ACTIONS(5168), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5170), 1, anon_sym_STAR_STAR, - ACTIONS(5204), 1, - anon_sym_LT, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64966] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5146), 2, + ACTIONS(2380), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -189898,108 +194027,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 16, + ACTIONS(2378), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [64206] = 14, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3909), 1, - anon_sym_LBRACK, - ACTIONS(5186), 1, - anon_sym_COMMA, - ACTIONS(5209), 1, - anon_sym_RBRACE, - STATE(4880), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5190), 2, - sym_number, - sym_private_property_identifier, - STATE(4809), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5612), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5619), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(5207), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [64279] = 12, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(5211), 1, - anon_sym_LT, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [65017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4676), 12, + ACTIONS(4245), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190010,13 +194076,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4678), 20, + ACTIONS(4247), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -190032,153 +194106,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [64348] = 32, - ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4555), 1, anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, - anon_sym_AMP_AMP, - ACTIONS(5154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5162), 1, - anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - ACTIONS(5178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_extends, + [65068] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5146), 2, + ACTIONS(4241), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(4243), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64457] = 19, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - ACTIONS(5214), 1, - anon_sym_RBRACE, - STATE(2766), 1, - sym_override_modifier, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [64540] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [65119] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 13, + ACTIONS(4241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190192,7 +194175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4289), 29, + ACTIONS(4243), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190222,118 +194205,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64591] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, - anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, - anon_sym_PERCENT, - ACTIONS(4662), 1, - anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - ACTIONS(4672), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [65170] = 4, + ACTIONS(4786), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4570), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4638), 2, + ACTIONS(4784), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4788), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64700] = 9, - ACTIONS(4087), 1, - anon_sym_extends, - ACTIONS(4683), 1, - anon_sym_LBRACK, - ACTIONS(5220), 1, - anon_sym_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65223] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4686), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5216), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5218), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3429), 11, + ACTIONS(4241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(4243), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190353,19 +194301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64763] = 7, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4951), 1, - anon_sym_QMARK_DOT, - STATE(4903), 1, - sym_optional_chain, + anon_sym_extends, + [65274] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1847), 13, + ACTIONS(4237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190379,7 +194320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1849), 25, + ACTIONS(4239), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190388,6 +194329,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -190405,15 +194349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64822] = 5, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(4823), 1, - sym__automatic_semicolon, + anon_sym_extends, + [65325] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1699), 13, + ACTIONS(4237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190427,7 +194368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1697), 27, + ACTIONS(4239), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -190455,75 +194397,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64877] = 19, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_extends, + [65376] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5146), 2, + ACTIONS(4237), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 14, + ACTIONS(4239), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [64960] = 3, + anon_sym_extends, + [65427] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 13, + ACTIONS(4169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190537,7 +194464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 29, + ACTIONS(4171), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190567,11 +194494,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [65011] = 3, + [65478] = 4, + ACTIONS(3538), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190585,7 +194514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 29, + ACTIONS(3437), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190614,12 +194543,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [65062] = 3, + [65531] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4291), 13, + ACTIONS(4169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190633,7 +194561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4293), 29, + ACTIONS(4171), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190663,11 +194591,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [65113] = 3, + [65582] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 13, + ACTIONS(4169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190681,7 +194609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4087), 29, + ACTIONS(4171), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190711,42 +194639,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [65164] = 10, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(2362), 1, - anon_sym_extends, - ACTIONS(2364), 1, - anon_sym_QMARK, - ACTIONS(4249), 1, - anon_sym_LBRACK, - ACTIONS(5028), 1, - anon_sym_COLON, + [65633] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5043), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1701), 11, + ACTIONS(4165), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 22, + ACTIONS(4167), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190766,11 +194686,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65229] = 3, + anon_sym_extends, + [65684] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 13, + ACTIONS(4161), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190784,7 +194705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4439), 29, + ACTIONS(4163), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190814,101 +194735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [65280] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5223), 1, - anon_sym_STAR, - ACTIONS(5225), 1, - anon_sym_async, - ACTIONS(5229), 1, - anon_sym_readonly, - STATE(2762), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5227), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5231), 2, - anon_sym_get, - anon_sym_set, - STATE(3037), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [65353] = 17, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - ACTIONS(5204), 1, - anon_sym_LT, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + [65735] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 11, + ACTIONS(4157), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -190917,60 +194750,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 15, + ACTIONS(4159), 29, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65432] = 10, - ACTIONS(4257), 1, - anon_sym_EQ, - ACTIONS(4261), 1, - anon_sym_LBRACK, - ACTIONS(4267), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_extends, - ACTIONS(4347), 1, - anon_sym_QMARK, - ACTIONS(5017), 1, - anon_sym_COLON, + [65786] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5047), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4255), 11, + ACTIONS(2372), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 22, + ACTIONS(2370), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190990,11 +194830,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65497] = 3, + anon_sym_extends, + [65837] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 13, + ACTIONS(4153), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191008,7 +194849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4439), 29, + ACTIONS(4155), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191038,39 +194879,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [65548] = 7, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(4293), 1, - anon_sym_extends, + [65888] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4825), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4828), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(4129), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 25, + ACTIONS(4131), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191090,149 +194926,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65607] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, - anon_sym_AMP_AMP, - ACTIONS(5154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5162), 1, - anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - ACTIONS(5178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5146), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5176), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5233), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65716] = 12, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5223), 1, - anon_sym_STAR, - ACTIONS(5225), 1, - anon_sym_async, - ACTIONS(5237), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5231), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5235), 2, - sym_number, - sym_private_property_identifier, - STATE(3038), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [65785] = 4, - ACTIONS(5243), 1, - sym_regex_flags, + anon_sym_extends, + [65939] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5239), 16, + ACTIONS(4129), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -191245,17 +194945,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(5241), 25, + ACTIONS(4131), 29, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191270,14 +194969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65838] = 3, + anon_sym_satisfies, + anon_sym_extends, + [65990] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2364), 13, + ACTIONS(4129), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191291,7 +194993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2362), 29, + ACTIONS(4131), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191321,11 +195023,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [65889] = 3, + [66041] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 13, + ACTIONS(4145), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191339,7 +195041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4439), 29, + ACTIONS(4147), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191369,79 +195071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [65940] = 21, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + [66092] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5146), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4722), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 11, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [66027] = 4, - ACTIONS(4915), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3489), 13, + ACTIONS(4145), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191455,7 +195089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3479), 28, + ACTIONS(4147), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191465,6 +195099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -191484,11 +195119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66080] = 3, + [66143] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(4145), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191502,7 +195137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 29, + ACTIONS(4147), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191532,11 +195167,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66131] = 3, + [66194] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(4141), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191550,7 +195185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 29, + ACTIONS(4143), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191580,98 +195215,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66182] = 19, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - ACTIONS(5245), 1, - anon_sym_RBRACE, - STATE(2766), 1, - sym_override_modifier, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + [66245] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66265] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4445), 13, + ACTIONS(4984), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4981), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4099), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 29, - sym__automatic_semicolon, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191691,14 +195266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [66316] = 4, - ACTIONS(5247), 1, - anon_sym_DOT, + [66302] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 13, + ACTIONS(4141), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191712,7 +195284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4335), 28, + ACTIONS(4143), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191722,6 +195294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -191741,11 +195314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66369] = 3, + [66353] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4460), 13, + ACTIONS(4141), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191759,7 +195332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4462), 29, + ACTIONS(4143), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191789,11 +195362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66420] = 3, + [66404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4339), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191807,7 +195380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4341), 29, + ACTIONS(4139), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191837,165 +195410,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [66471] = 32, + [66455] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, - anon_sym_AMP_AMP, - ACTIONS(5154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5162), 1, - anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - ACTIONS(5178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4712), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5146), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5176), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66580] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, + ACTIONS(4633), 1, anon_sym_as, - ACTIONS(4513), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4648), 1, anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(5154), 1, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(5160), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(5162), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(5168), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(5178), 1, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4804), 2, + ACTIONS(4642), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5146), 2, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5148), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5166), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(5172), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66689] = 3, + [66564] = 4, + ACTIONS(4331), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 13, + ACTIONS(4329), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192009,7 +195507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2374), 29, + ACTIONS(4333), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192038,28 +195536,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [66617] = 6, + ACTIONS(4469), 1, anon_sym_extends, - [66740] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4828), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4825), 3, + ACTIONS(4909), 2, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4293), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3429), 11, + ACTIONS(4912), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4751), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -192067,10 +195560,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(4753), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192090,34 +195587,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66797] = 3, + [66674] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4464), 13, + ACTIONS(4343), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4345), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4466), 29, + ACTIONS(3437), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192137,26 +195637,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [66729] = 6, + ACTIONS(5209), 1, + anon_sym_AMP, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5213), 1, anon_sym_extends, - [66848] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 13, + ACTIONS(4133), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4345), 29, + ACTIONS(4135), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192185,24 +195688,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [66899] = 6, + [66786] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4843), 2, + ACTIONS(4912), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4840), 3, + ACTIONS(4909), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4359), 4, + ACTIONS(4469), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4836), 11, + ACTIONS(4751), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192214,7 +195716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4838), 22, + ACTIONS(4753), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -192237,37 +195739,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66956] = 4, - ACTIONS(5249), 1, + [66843] = 7, + ACTIONS(3499), 1, anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4299), 13, + ACTIONS(3467), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3477), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4301), 28, + ACTIONS(3437), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -192285,12 +195791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67009] = 3, + [66902] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4305), 13, + ACTIONS(4407), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192304,7 +195809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4307), 29, + ACTIONS(4409), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192334,11 +195839,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67060] = 3, + [66953] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4472), 13, + ACTIONS(4415), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192352,7 +195857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4474), 29, + ACTIONS(4417), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192382,13 +195887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67111] = 4, - ACTIONS(5251), 1, - anon_sym_LBRACK, + [67004] = 5, + ACTIONS(1715), 1, + anon_sym_EQ, + ACTIONS(4878), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4305), 13, + ACTIONS(1711), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192402,8 +195909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4307), 28, - sym__automatic_semicolon, + ACTIONS(1709), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -192411,6 +195917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192430,83 +195937,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67164] = 3, + [67059] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4891), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4077), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4888), 3, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, + ACTIONS(4505), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - [67215] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4201), 13, + anon_sym_PIPE_RBRACE, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4203), 29, - sym__automatic_semicolon, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192526,12 +195988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67266] = 3, + [67116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4227), 13, + ACTIONS(4345), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192545,7 +196006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4229), 29, + ACTIONS(4343), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192575,251 +196036,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67317] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4311), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4313), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [67167] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4583), 1, anon_sym_LBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [67368] = 3, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4468), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4470), 29, + ACTIONS(4511), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [67419] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4201), 13, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4203), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [67276] = 19, + ACTIONS(89), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [67470] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4227), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4229), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4583), 1, anon_sym_LBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [67521] = 3, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4233), 29, + ACTIONS(4575), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67572] = 3, + [67359] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 13, + ACTIONS(4419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192833,7 +196195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4237), 29, + ACTIONS(4421), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192863,13 +196225,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67623] = 4, - ACTIONS(1703), 1, - anon_sym_EQ, + [67410] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 13, + ACTIONS(4423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192883,7 +196243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 28, + ACTIONS(4425), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192912,560 +196272,477 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67676] = 6, - ACTIONS(4293), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4825), 2, + [67461] = 19, + ACTIONS(239), 1, anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4828), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(5215), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5227), 1, anon_sym_RBRACE, + STATE(3178), 1, + sym_override_modifier, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67544] = 14, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67733] = 6, + ACTIONS(5229), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4686), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4683), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4087), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3429), 11, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(4575), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [67790] = 28, + [67617] = 26, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, - anon_sym_AMP_AMP, - ACTIONS(5154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(5160), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(5162), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(5168), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - STATE(1876), 1, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5146), 2, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5148), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5166), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(5172), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 6, + ACTIONS(4575), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [67891] = 32, + [67714] = 27, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, + ACTIONS(4577), 1, anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(5154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(5160), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(5162), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(5168), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(5178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, - sym__ternary_qmark, - STATE(1876), 1, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4704), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5146), 2, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5148), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5166), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(5172), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68000] = 27, + ACTIONS(4575), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [67813] = 17, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, - anon_sym_AMP_AMP, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5162), 1, - anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - STATE(1876), 1, + ACTIONS(5229), 1, + anon_sym_LT, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5146), 2, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5148), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5176), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [68099] = 4, - ACTIONS(4691), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4689), 13, - anon_sym_STAR, + ACTIONS(4577), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4693), 28, + ACTIONS(4575), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [68152] = 3, + [67892] = 23, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4233), 29, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [68203] = 32, - ACTIONS(821), 1, + [67983] = 24, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(4145), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(4155), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(4157), 1, + ACTIONS(5185), 1, anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - STATE(1493), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4577), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4133), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4143), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4151), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4161), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4163), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5013), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1799), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4159), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68312] = 6, - ACTIONS(4087), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4683), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4686), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 26, + ACTIONS(4575), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [68369] = 3, + [68076] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2368), 13, + ACTIONS(4289), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193479,7 +196756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2366), 29, + ACTIONS(4287), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193509,64 +196786,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [68420] = 7, - ACTIONS(3532), 1, - anon_sym_EQ, - ACTIONS(4293), 1, - anon_sym_extends, + [68127] = 25, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4825), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4828), 3, - anon_sym_GT, - anon_sym_AMP, + ACTIONS(4577), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 25, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [68479] = 3, + [68222] = 16, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5229), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4279), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -193575,47 +196898,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4277), 29, + ACTIONS(4575), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_satisfies, + [68299] = 17, + ACTIONS(89), 1, anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, anon_sym_satisfies, - anon_sym_extends, - [68530] = 3, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5229), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -193624,169 +196961,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4237), 29, + ACTIONS(4575), 15, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [68581] = 32, - ACTIONS(821), 1, + [68378] = 21, + ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, - anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(5185), 1, anon_sym_LT, - ACTIONS(4672), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - STATE(1493), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5253), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1799), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68690] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4239), 13, - anon_sym_STAR, + ACTIONS(4577), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4241), 29, + ACTIONS(4575), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [68741] = 3, + [68465] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 13, + ACTIONS(2364), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193800,7 +197063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4247), 29, + ACTIONS(2362), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193830,91 +197093,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [68792] = 3, + [68516] = 28, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4407), 29, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 6, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [68843] = 12, - ACTIONS(1621), 1, + [68617] = 19, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5255), 1, + ACTIONS(5215), 1, anon_sym_STAR, - ACTIONS(5257), 1, - anon_sym_async, - ACTIONS(5263), 1, - anon_sym_abstract, + STATE(3178), 1, + sym_override_modifier, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5259), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5261), 2, + ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3020), 3, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3933), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 20, + ACTIONS(2352), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -193922,12 +197219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -193935,94 +197230,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68912] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [68700] = 10, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4335), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + ACTIONS(4341), 1, + anon_sym_extends, + ACTIONS(4479), 1, + anon_sym_QMARK, + ACTIONS(5041), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5265), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69021] = 6, - ACTIONS(5125), 1, + ACTIONS(4338), 2, anon_sym_AMP, - ACTIONS(5127), 1, anon_sym_PIPE, - ACTIONS(5129), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4295), 11, + ACTIONS(5095), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4329), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194034,16 +197262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4297), 28, - sym__automatic_semicolon, + ACTIONS(4333), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -194063,17 +197285,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69078] = 6, - ACTIONS(5125), 1, - anon_sym_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE, - ACTIONS(5129), 1, + [68765] = 10, + ACTIONS(1715), 1, + anon_sym_EQ, + ACTIONS(2366), 1, anon_sym_extends, + ACTIONS(2368), 1, + anon_sym_QMARK, + ACTIONS(4323), 1, + anon_sym_LBRACK, + ACTIONS(5023), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 11, + ACTIONS(4326), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5099), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1713), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194085,16 +197317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 28, - sym__automatic_semicolon, + ACTIONS(1717), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -194114,346 +197340,426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69135] = 4, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, + [68830] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4817), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68939] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4583), 1, anon_sym_LBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69188] = 19, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, ACTIONS(5195), 1, - anon_sym_STAR, - STATE(2766), 1, - sym_override_modifier, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69271] = 4, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1994), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3879), 11, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4815), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1992), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [69324] = 9, - ACTIONS(4087), 1, - anon_sym_extends, - ACTIONS(4683), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4686), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5267), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5269), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3429), 11, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69048] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69387] = 3, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4799), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4415), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69157] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4583), 1, anon_sym_LBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [69438] = 3, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4793), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4419), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69266] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4583), 1, anon_sym_LBRACK, + ACTIONS(4585), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4769), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, + [69375] = 9, + ACTIONS(2366), 1, anon_sym_extends, - [69489] = 3, + ACTIONS(4323), 1, + anon_sym_LBRACK, + ACTIONS(5232), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4421), 13, + ACTIONS(1715), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4326), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5023), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1713), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4423), 29, - sym__automatic_semicolon, + ACTIONS(1717), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -194473,89 +197779,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [69540] = 32, + [69438] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, anon_sym_as, - ACTIONS(4513), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4767), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5163), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69547] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(5154), 1, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(5160), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(5162), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(5168), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(5178), 1, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4869), 2, + ACTIONS(4765), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5146), 2, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5148), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5166), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(5172), 3, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69656] = 9, + ACTIONS(4335), 1, + anon_sym_LBRACK, + ACTIONS(4341), 1, + anon_sym_extends, + ACTIONS(5235), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4331), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4338), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5041), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4329), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4333), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69649] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69719] = 19, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(695), 1, - anon_sym_RBRACE, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, @@ -194566,18 +198000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2360), 1, anon_sym_override, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5215), 1, anon_sym_STAR, - STATE(2766), 1, + ACTIONS(5238), 1, + anon_sym_RBRACE, + STATE(3178), 1, sym_override_modifier, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -194587,11 +198023,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3821), 3, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -194615,474 +198051,601 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69732] = 26, - ACTIONS(89), 1, + [69802] = 14, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5240), 1, + anon_sym_STAR, + ACTIONS(5242), 1, + anon_sym_async, + ACTIONS(5246), 1, + anon_sym_readonly, + STATE(3166), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5244), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5248), 2, + anon_sym_get, + anon_sym_set, + STATE(3545), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [69875] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4722), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5156), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, + anon_sym_AMP_AMP, + ACTIONS(4189), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(5160), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(5162), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(5168), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - STATE(1876), 1, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, + sym__ternary_qmark, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5146), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5148), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5166), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4976), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5172), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 8, - sym__automatic_semicolon, - sym__ternary_qmark, + [69984] = 33, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, anon_sym_as, - anon_sym_SEMI, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, anon_sym_AMP_AMP, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [69829] = 3, + ACTIONS(5195), 1, + sym__ternary_qmark, + ACTIONS(5250), 1, + anon_sym_SEMI, + ACTIONS(5252), 1, + sym__automatic_semicolon, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4395), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [69880] = 32, - ACTIONS(89), 1, + [70095] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, + ACTIONS(4519), 1, anon_sym_AMP_AMP, - ACTIONS(5154), 1, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, + ACTIONS(4523), 1, anon_sym_GT_GT, - ACTIONS(5160), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(5162), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(5168), 1, + ACTIONS(4535), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - ACTIONS(5178), 1, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, + ACTIONS(4549), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4955), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5146), 2, + ACTIONS(4513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5148), 2, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(4525), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5166), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(4545), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(5254), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5172), 3, + ACTIONS(4541), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69989] = 17, + [70204] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(5168), 1, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(5204), 1, + ACTIONS(5185), 1, anon_sym_LT, - STATE(1876), 1, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5146), 2, + ACTIONS(4708), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5166), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 8, - anon_sym_BANG, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [70068] = 3, + [70313] = 12, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4507), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_abstract, + ACTIONS(4955), 1, + anon_sym_STAR, + ACTIONS(4959), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2370), 29, + ACTIONS(4961), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4965), 2, + anon_sym_get, + anon_sym_set, + STATE(3473), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [70382] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4187), 1, anon_sym_AMP_AMP, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4191), 1, + anon_sym_GT_GT, + ACTIONS(4195), 1, + anon_sym_AMP, + ACTIONS(4197), 1, anon_sym_CARET, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(4203), 1, anon_sym_PERCENT, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4219), 1, anon_sym_satisfies, - anon_sym_extends, - [70119] = 23, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - STATE(1876), 1, + ACTIONS(4221), 1, + sym__ternary_qmark, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5146), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5148), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5166), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5172), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [70210] = 32, - ACTIONS(89), 1, + [70491] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(5154), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(5160), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(5162), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(5168), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(5178), 1, + ACTIONS(4207), 1, + anon_sym_LT, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4574), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5146), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5148), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5166), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5254), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5172), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70319] = 7, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, + [70600] = 7, + ACTIONS(3513), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 3, + ACTIONS(4888), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3489), 3, + ACTIONS(4891), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195093,14 +198656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 24, + ACTIONS(3437), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -195118,88 +198682,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70378] = 32, + [70659] = 32, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(5154), 1, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(5160), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(5162), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(5168), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(5178), 1, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4618), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5146), 2, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5148), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5166), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + ACTIONS(5256), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(5172), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70487] = 3, + [70768] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 13, + ACTIONS(3358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195213,7 +198777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4117), 29, + ACTIONS(3360), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195243,11 +198807,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [70538] = 3, + [70819] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 13, + ACTIONS(4429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195261,7 +198825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4121), 29, + ACTIONS(4431), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195291,37 +198855,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [70589] = 5, + [70870] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4269), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4271), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(4433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 26, + ACTIONS(4435), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195341,41 +198902,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70644] = 9, - ACTIONS(4261), 1, - anon_sym_LBRACK, - ACTIONS(4267), 1, anon_sym_extends, - ACTIONS(5047), 1, - anon_sym_RPAREN, + [70921] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4264), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4871), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4255), 11, + ACTIONS(4287), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 22, + ACTIONS(4285), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195395,95 +198952,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70707] = 32, - ACTIONS(821), 1, + [70974] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, + ACTIONS(4187), 1, anon_sym_AMP_AMP, - ACTIONS(4646), 1, + ACTIONS(4189), 1, anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, + ACTIONS(4191), 1, anon_sym_GT_GT, - ACTIONS(4652), 1, + ACTIONS(4195), 1, anon_sym_AMP, - ACTIONS(4654), 1, + ACTIONS(4197), 1, anon_sym_CARET, - ACTIONS(4656), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4203), 1, anon_sym_PERCENT, - ACTIONS(4662), 1, + ACTIONS(4205), 1, anon_sym_STAR_STAR, - ACTIONS(4664), 1, + ACTIONS(4207), 1, anon_sym_LT, - ACTIONS(4672), 1, + ACTIONS(4215), 1, anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4221), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4173), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4642), 2, + ACTIONS(4183), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, + ACTIONS(4193), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4658), 2, + ACTIONS(4201), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + ACTIONS(4211), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, + ACTIONS(4213), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4831), 2, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5086), 2, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1799), 2, + anon_sym_RPAREN, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4666), 3, + ACTIONS(4209), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70816] = 6, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(1707), 1, - sym__automatic_semicolon, + [71083] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1697), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1701), 13, + ACTIONS(4357), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195497,11 +199047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 25, + ACTIONS(4355), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -195523,11 +199076,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70873] = 3, + anon_sym_extends, + [71134] = 4, + ACTIONS(5258), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 13, + ACTIONS(4439), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195541,7 +199097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2378), 29, + ACTIONS(4441), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195550,7 +199106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195571,95 +199126,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [70924] = 12, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, + [71187] = 4, + ACTIONS(5260), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4761), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4763), 2, - anon_sym_get, - anon_sym_set, - STATE(3807), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70993] = 6, - ACTIONS(4359), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4840), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4843), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4836), 10, + ACTIONS(4445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4838), 26, + ACTIONS(4447), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195679,13 +199175,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71050] = 4, - ACTIONS(4329), 1, - anon_sym_extends, + [71240] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, + anon_sym_AMP_AMP, + ACTIONS(4521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, + anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4549), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4517), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4976), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71349] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 13, + ACTIONS(4355), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195699,15 +199275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 28, - sym__automatic_semicolon, + ACTIONS(4285), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195728,25 +199301,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71103] = 3, + [71402] = 6, + ACTIONS(4457), 1, + anon_sym_extends, + ACTIONS(5258), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 13, + ACTIONS(4455), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4451), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4121), 29, + ACTIONS(4453), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195755,7 +199333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195775,86 +199352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [71459] = 6, + ACTIONS(5209), 1, + anon_sym_AMP, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5213), 1, anon_sym_extends, - [71154] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5276), 1, - anon_sym_STAR, - ACTIONS(5278), 1, - anon_sym_async, - ACTIONS(5282), 1, - anon_sym_readonly, - STATE(2777), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5280), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5284), 2, - anon_sym_get, - anon_sym_set, - STATE(3017), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [71227] = 9, - ACTIONS(3578), 1, - anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_QMARK, - ACTIONS(4825), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3581), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4293), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4828), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 11, + ACTIONS(4459), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195866,10 +199374,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(4461), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195889,34 +199403,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71290] = 3, + [71516] = 9, + ACTIONS(4335), 1, + anon_sym_LBRACK, + ACTIONS(4341), 1, + anon_sym_extends, + ACTIONS(5095), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 13, + ACTIONS(4331), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4338), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4716), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4329), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4435), 29, - sym__automatic_semicolon, + ACTIONS(4333), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195936,69 +199457,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [71341] = 12, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4765), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_abstract, - ACTIONS(4923), 1, - anon_sym_STAR, - ACTIONS(4927), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4929), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4933), 2, - anon_sym_get, - anon_sym_set, - STATE(3039), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [71410] = 3, + [71579] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 13, + ACTIONS(4463), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196012,7 +199475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4267), 29, + ACTIONS(4465), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196042,68 +199505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71461] = 12, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5011), 1, - anon_sym_abstract, - ACTIONS(5276), 1, - anon_sym_STAR, - ACTIONS(5278), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5280), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5284), 2, - anon_sym_get, - anon_sym_set, - STATE(3017), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [71530] = 3, + [71630] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 13, + ACTIONS(4467), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196117,7 +199523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4121), 29, + ACTIONS(4469), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196147,92 +199553,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71581] = 13, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4765), 1, + [71681] = 9, + ACTIONS(2366), 1, + anon_sym_extends, + ACTIONS(4323), 1, anon_sym_LBRACK, + ACTIONS(5099), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 2, + ACTIONS(1715), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4326), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4810), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4221), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4225), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [71652] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4425), 13, + ACTIONS(1713), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4427), 29, - sym__automatic_semicolon, + ACTIONS(1717), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196252,95 +199607,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [71703] = 32, + [71744] = 33, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, + ACTIONS(5165), 1, anon_sym_AMP_AMP, - ACTIONS(5154), 1, + ACTIONS(5167), 1, anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, + ACTIONS(5169), 1, anon_sym_GT_GT, - ACTIONS(5160), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(5162), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(5177), 1, anon_sym_PIPE, - ACTIONS(5168), 1, + ACTIONS(5181), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, + ACTIONS(5183), 1, anon_sym_STAR_STAR, - ACTIONS(5178), 1, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1876), 1, + ACTIONS(5262), 1, + anon_sym_SEMI, + ACTIONS(5264), 1, + sym__automatic_semicolon, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4816), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5146), 2, + ACTIONS(5161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5148), 2, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(5171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5166), 2, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(5172), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71812] = 3, + [71855] = 4, + ACTIONS(5209), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4503), 13, + ACTIONS(4471), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -196348,7 +199704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4505), 29, + ACTIONS(4473), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196378,39 +199734,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71863] = 7, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(4249), 1, - anon_sym_LBRACK, + [71908] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2362), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4252), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1701), 10, + ACTIONS(4475), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 25, + ACTIONS(4477), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196430,11 +199781,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71922] = 3, + anon_sym_extends, + [71959] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 13, + ACTIONS(4479), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196448,7 +199800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4241), 29, + ACTIONS(4341), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196478,34 +199830,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71973] = 3, + [72010] = 9, + ACTIONS(3575), 1, + anon_sym_QMARK, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(4888), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 13, + ACTIONS(3580), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4505), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4891), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4247), 29, - sym__automatic_semicolon, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196525,36 +199884,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [72073] = 9, + ACTIONS(4099), 1, anon_sym_extends, - [72024] = 4, - ACTIONS(5125), 1, - anon_sym_AMP, + ACTIONS(4981), 1, + anon_sym_LBRACK, + ACTIONS(5271), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 12, + ACTIONS(4984), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5266), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5268), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 29, - sym__automatic_semicolon, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196574,35 +199938,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [72136] = 6, + ACTIONS(4505), 1, anon_sym_extends, - [72077] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(4888), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4891), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 29, + ACTIONS(3437), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196622,119 +199989,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [72128] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, + [72193] = 14, + ACTIONS(170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(3771), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, - anon_sym_AMP_AMP, - ACTIONS(5154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5162), 1, - anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - ACTIONS(5178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + ACTIONS(5219), 1, + anon_sym_COMMA, + ACTIONS(5277), 1, + anon_sym_RBRACE, + STATE(5411), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5146), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5176), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5286), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2173), 2, - sym_template_string, + ACTIONS(5223), 2, + sym_number, + sym_private_property_identifier, + STATE(6017), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7114), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(7173), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5275), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72266] = 5, + ACTIONS(4579), 1, + anon_sym_LPAREN, + STATE(2357), 1, sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72237] = 7, - ACTIONS(3483), 1, - anon_sym_DOT, - ACTIONS(3487), 1, - anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3479), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3429), 11, + ACTIONS(4279), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 20, + ACTIONS(4281), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -196752,25 +200098,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72296] = 3, + [72321] = 6, + ACTIONS(5209), 1, + anon_sym_AMP, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5213), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4251), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4269), 29, + ACTIONS(4253), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196799,42 +200149,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [72347] = 9, - ACTIONS(4087), 1, - anon_sym_extends, - ACTIONS(4683), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_RPAREN, + [72378] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4686), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5267), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5288), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3429), 11, + ACTIONS(4481), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(4483), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196854,40 +200196,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72410] = 7, - ACTIONS(4257), 1, - anon_sym_EQ, - ACTIONS(4261), 1, + anon_sym_extends, + [72429] = 14, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, anon_sym_LBRACK, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_async, + ACTIONS(5285), 1, + anon_sym_readonly, + STATE(3156), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4267), 2, + ACTIONS(5283), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5287), 2, + anon_sym_get, + anon_sym_set, + STATE(3524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4264), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4255), 10, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72502] = 4, + ACTIONS(5289), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4485), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 25, + ACTIONS(4487), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -196906,11 +200304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72469] = 3, + anon_sym_extends, + [72555] = 4, + ACTIONS(4866), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4357), 13, + ACTIONS(3477), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196924,7 +200325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4359), 29, + ACTIONS(3467), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196934,7 +200335,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -196954,37 +200354,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72520] = 5, + [72608] = 19, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + ACTIONS(5291), 1, + anon_sym_RBRACE, + STATE(3178), 1, + sym_override_modifier, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4269), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3429), 11, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72691] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2368), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(2366), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197004,12 +200465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72575] = 3, + anon_sym_extends, + [72742] = 4, + ACTIONS(5297), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4361), 13, + ACTIONS(5293), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -197022,16 +200487,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4363), 29, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5295), 25, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197046,23 +200512,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [72626] = 6, - ACTIONS(5125), 1, - anon_sym_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE, - ACTIONS(5129), 1, + [72795] = 9, + ACTIONS(4099), 1, anon_sym_extends, + ACTIONS(4981), 1, + anon_sym_LBRACK, + ACTIONS(5301), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4365), 11, + ACTIONS(4984), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5266), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5299), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197074,16 +200546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4367), 28, - sym__automatic_semicolon, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197103,18 +200569,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72683] = 6, - ACTIONS(4307), 1, - anon_sym_extends, - ACTIONS(5251), 1, + [72858] = 13, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5304), 1, + anon_sym_STAR, + ACTIONS(5306), 1, + anon_sym_async, + ACTIONS(5310), 1, + anon_sym_get, + ACTIONS(5312), 1, + anon_sym_set, + ACTIONS(5314), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5308), 2, + sym_number, + sym_private_property_identifier, + STATE(3499), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72929] = 15, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5316), 1, + anon_sym_STAR, + ACTIONS(5318), 1, + anon_sym_async, + ACTIONS(5322), 1, + anon_sym_readonly, + ACTIONS(5324), 1, + anon_sym_get, + ACTIONS(5326), 1, + anon_sym_set, + STATE(3165), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5320), 2, + sym_number, + sym_private_property_identifier, + STATE(3502), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3671), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73004] = 9, + ACTIONS(3565), 1, + anon_sym_EQ, + ACTIONS(3575), 1, + anon_sym_QMARK, + ACTIONS(4888), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4305), 2, + ACTIONS(3568), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4505), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4891), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4369), 11, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197126,15 +200718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 27, - sym__automatic_semicolon, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197154,107 +200741,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72740] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [73067] = 12, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + ACTIONS(5074), 1, + anon_sym_abstract, + ACTIONS(5328), 1, + anon_sym_STAR, + ACTIONS(5330), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4821), 2, + ACTIONS(5332), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5334), 2, + anon_sym_get, + anon_sym_set, + STATE(3505), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72849] = 9, - ACTIONS(3586), 1, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3590), 1, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73136] = 7, + ACTIONS(3495), 1, anon_sym_EQ, - ACTIONS(4825), 1, - anon_sym_LBRACK, + ACTIONS(4505), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 2, + ACTIONS(4888), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4293), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4828), 2, + anon_sym_LBRACK, + ACTIONS(4891), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3429), 11, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -197262,10 +200824,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(3437), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197285,113 +200850,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72912] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [73195] = 14, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(5328), 1, + anon_sym_STAR, + ACTIONS(5330), 1, + anon_sym_async, + ACTIONS(5336), 1, + anon_sym_readonly, + STATE(3159), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5332), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5334), 2, + anon_sym_get, + anon_sym_set, + STATE(3505), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4137), 1, - anon_sym_AMP_AMP, - ACTIONS(4139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4141), 1, - anon_sym_GT_GT, - ACTIONS(4145), 1, - anon_sym_AMP, - ACTIONS(4147), 1, - anon_sym_CARET, - ACTIONS(4149), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_PERCENT, - ACTIONS(4155), 1, - anon_sym_STAR_STAR, - ACTIONS(4157), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4171), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4133), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4143), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4151), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4831), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73021] = 4, - ACTIONS(4277), 1, + anon_sym_QMARK, + ACTIONS(3671), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73268] = 6, + ACTIONS(4099), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 13, + ACTIONS(4981), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4984), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 28, + ACTIONS(3437), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197411,90 +200960,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73074] = 32, + [73325] = 12, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5338), 1, anon_sym_LT, - ACTIONS(5152), 1, - anon_sym_AMP_AMP, - ACTIONS(5154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5162), 1, - anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - ACTIONS(5178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, - sym__ternary_qmark, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5146), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5176), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, + STATE(2183), 2, sym_template_string, sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73183] = 4, - ACTIONS(5293), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4373), 13, + ACTIONS(4744), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197505,21 +200994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 28, + ACTIONS(4746), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -197535,49 +201016,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [73236] = 14, - ACTIONS(1621), 1, + [73394] = 19, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3689), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, anon_sym_override, - ACTIONS(4217), 1, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5255), 1, + ACTIONS(5215), 1, anon_sym_STAR, - ACTIONS(5257), 1, - anon_sym_async, - ACTIONS(5297), 1, - anon_sym_readonly, - STATE(2758), 1, + STATE(3178), 1, sym_override_modifier, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5261), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5295), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3019), 3, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3933), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 18, + ACTIONS(2352), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -197596,107 +201081,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [73309] = 4, - ACTIONS(4077), 1, - anon_sym_extends, + [73477] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 13, + ACTIONS(4515), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4207), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73362] = 14, - ACTIONS(1621), 1, + [73586] = 19, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3689), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, anon_sym_override, - ACTIONS(4217), 1, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5299), 1, + ACTIONS(5215), 1, anon_sym_STAR, - ACTIONS(5301), 1, - anon_sym_async, - ACTIONS(5305), 1, - anon_sym_readonly, - STATE(2782), 1, + ACTIONS(5341), 1, + anon_sym_RBRACE, + STATE(3178), 1, sym_override_modifier, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5303), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5307), 2, + ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3059), 3, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73669] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 11, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3667), 18, + ACTIONS(1988), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -197704,34 +201269,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [73435] = 3, + anon_sym_abstract, + anon_sym_accessor, + [73722] = 9, + ACTIONS(4099), 1, + anon_sym_extends, + ACTIONS(4981), 1, + anon_sym_LBRACK, + ACTIONS(5347), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4319), 13, + ACTIONS(4984), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5343), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5345), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4321), 29, - sym__automatic_semicolon, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197751,12 +201325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73486] = 3, + [73785] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 13, + ACTIONS(4491), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197770,7 +201343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4327), 29, + ACTIONS(4493), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197800,29 +201373,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73537] = 6, - ACTIONS(5125), 1, - anon_sym_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE, - ACTIONS(5129), 1, - anon_sym_extends, + [73836] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4209), 11, + ACTIONS(4093), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4211), 28, + ACTIONS(4095), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197851,112 +201420,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73594] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_extends, + [73887] = 4, + ACTIONS(5258), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4644), 1, - anon_sym_AMP_AMP, - ACTIONS(4646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4648), 1, - anon_sym_GT_GT, - ACTIONS(4652), 1, - anon_sym_AMP, - ACTIONS(4654), 1, - anon_sym_CARET, - ACTIONS(4656), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, - anon_sym_PERCENT, - ACTIONS(4662), 1, - anon_sym_STAR_STAR, - ACTIONS(4664), 1, - anon_sym_LT, - ACTIONS(4672), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4674), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4638), 2, + ACTIONS(4455), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4642), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4650), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4658), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4668), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4670), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5265), 2, + ACTIONS(4457), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4666), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73703] = 14, - ACTIONS(89), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - ACTIONS(5204), 1, - anon_sym_LT, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [73940] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 12, + ACTIONS(4455), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197967,204 +201485,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 17, + ACTIONS(4457), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [73776] = 33, + anon_sym_extends, + [73991] = 16, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4585), 1, anon_sym_DOT, - ACTIONS(4555), 1, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5350), 1, anon_sym_LT, - ACTIONS(5152), 1, - anon_sym_AMP_AMP, - ACTIONS(5154), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5162), 1, - anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, - anon_sym_PERCENT, - ACTIONS(5170), 1, - anon_sym_STAR_STAR, - ACTIONS(5178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, - sym__ternary_qmark, - ACTIONS(5309), 1, - anon_sym_SEMI, - ACTIONS(5311), 1, - sym__automatic_semicolon, - STATE(1876), 1, + STATE(1930), 1, sym_type_arguments, - STATE(4903), 1, + STATE(5476), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(4609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5146), 2, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4611), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73887] = 32, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4509), 1, - anon_sym_as, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(4555), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_LT, - ACTIONS(5152), 1, + ACTIONS(4613), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(5154), 1, anon_sym_PIPE_PIPE, - ACTIONS(5156), 1, - anon_sym_GT_GT, - ACTIONS(5160), 1, - anon_sym_AMP, - ACTIONS(5162), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, anon_sym_PERCENT, - ACTIONS(5170), 1, anon_sym_STAR_STAR, - ACTIONS(5178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5182), 1, - sym__ternary_qmark, - STATE(1876), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4511), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4553), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5146), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5148), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5166), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5176), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5172), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73996] = 6, - ACTIONS(5125), 1, - anon_sym_AMP, - ACTIONS(5127), 1, - anon_sym_PIPE, - ACTIONS(5129), 1, - anon_sym_extends, + [74068] = 4, + ACTIONS(5353), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 11, + ACTIONS(4495), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4385), 28, + ACTIONS(4497), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198174,7 +201609,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198193,11 +201627,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74053] = 3, + anon_sym_extends, + [74121] = 13, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(5355), 1, + anon_sym_LT, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3278), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(4652), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198208,19 +201665,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 29, + ACTIONS(4654), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [74192] = 7, + ACTIONS(1715), 1, + anon_sym_EQ, + ACTIONS(4323), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2366), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_extends, + ACTIONS(4326), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1713), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1717), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198240,39 +201738,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74104] = 4, + [74251] = 7, + ACTIONS(3471), 1, + anon_sym_DOT, + ACTIONS(3475), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 4, + ACTIONS(3477), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3467), 7, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4273), 13, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 25, + ACTIONS(3437), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -198290,30 +201790,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74157] = 9, - ACTIONS(2362), 1, - anon_sym_extends, - ACTIONS(4249), 1, + [74310] = 7, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4335), 1, anon_sym_LBRACK, - ACTIONS(5043), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4252), 2, + ACTIONS(4341), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4338), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4793), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1701), 11, + ACTIONS(4329), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -198321,10 +201816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 22, + ACTIONS(4333), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198344,34 +201842,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74220] = 3, + [74369] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 13, + ACTIONS(4345), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4343), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4399), 29, - sym__automatic_semicolon, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198391,12 +201892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74271] = 3, + [74424] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4449), 13, + ACTIONS(4097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198410,7 +201910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4451), 29, + ACTIONS(4099), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198440,13 +201940,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74322] = 4, - ACTIONS(5251), 1, - anon_sym_LBRACK, + [74475] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 13, + ACTIONS(4503), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198460,7 +201958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4381), 28, + ACTIONS(4505), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198469,6 +201967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198489,11 +201988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74375] = 3, + [74526] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4401), 13, + ACTIONS(4103), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198507,7 +202006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4403), 29, + ACTIONS(4105), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198537,39 +202036,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74426] = 7, - ACTIONS(3545), 1, - anon_sym_EQ, - ACTIONS(4293), 1, - anon_sym_extends, + [74577] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4825), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4828), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(4149), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 25, + ACTIONS(4151), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198589,13 +202083,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74485] = 4, - ACTIONS(4457), 1, + anon_sym_extends, + [74628] = 7, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, anon_sym_DOT, + ACTIONS(4872), 1, + anon_sym_QMARK_DOT, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4453), 13, + ACTIONS(1749), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198609,7 +202110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4455), 28, + ACTIONS(1751), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198618,8 +202119,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -198637,163 +202136,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74538] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5313), 1, - anon_sym_STAR, - ACTIONS(5315), 1, - anon_sym_async, - ACTIONS(5319), 1, - anon_sym_readonly, - STATE(2763), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5317), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5321), 2, - anon_sym_get, - anon_sym_set, - STATE(3093), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [74687] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [74611] = 6, - ACTIONS(5125), 1, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, + anon_sym_AMP_AMP, + ACTIONS(4521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(5127), 1, + ACTIONS(4529), 1, + anon_sym_CARET, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(5129), 1, - anon_sym_extends, + ACTIONS(4535), 1, + anon_sym_PERCENT, + ACTIONS(4537), 1, + anon_sym_STAR_STAR, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4549), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4401), 11, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4513), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4403), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4638), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74796] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4519), 1, anon_sym_AMP_AMP, + ACTIONS(4521), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4523), 1, + anon_sym_GT_GT, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, anon_sym_PERCENT, + ACTIONS(4537), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4539), 1, + anon_sym_LT, + ACTIONS(4547), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4549), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [74668] = 19, - ACTIONS(239), 1, + ACTIONS(4513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4517), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4525), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4545), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4738), 2, anon_sym_COMMA, - ACTIONS(672), 1, anon_sym_RBRACE, - ACTIONS(2328), 1, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4541), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74905] = 13, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5358), 1, anon_sym_STAR, - STATE(2766), 1, - sym_override_modifier, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5360), 1, + anon_sym_async, + ACTIONS(5364), 1, + anon_sym_get, + ACTIONS(5366), 1, + anon_sym_set, + ACTIONS(5368), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5362), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, + STATE(3508), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 18, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -198801,10 +202335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -198812,25 +202348,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74751] = 3, + [74976] = 32, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4633), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_satisfies, + ACTIONS(5165), 1, + anon_sym_AMP_AMP, + ACTIONS(5167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5169), 1, + anon_sym_GT_GT, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_PERCENT, + ACTIONS(5183), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1930), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4331), 13, + ACTIONS(4609), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4740), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5161), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5163), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75085] = 6, + ACTIONS(5209), 1, anon_sym_AMP, + ACTIONS(5211), 1, anon_sym_PIPE, + ACTIONS(5213), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4125), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4329), 29, + ACTIONS(4127), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198859,28 +202476,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [75142] = 6, + ACTIONS(5209), 1, + anon_sym_AMP, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5213), 1, anon_sym_extends, - [74802] = 4, - ACTIONS(4257), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 13, + ACTIONS(4117), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 28, + ACTIONS(4119), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198909,30 +202527,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74855] = 9, - ACTIONS(2362), 1, + [75199] = 7, + ACTIONS(3465), 1, + anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_extends, - ACTIONS(4249), 1, - anon_sym_LBRACK, - ACTIONS(5323), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4252), 2, + ACTIONS(4888), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4891), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5028), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1701), 11, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -198940,10 +202553,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 22, + ACTIONS(3437), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198963,11 +202579,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74918] = 3, + [75258] = 6, + ACTIONS(1715), 1, + anon_sym_EQ, + ACTIONS(1719), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 13, + ACTIONS(1709), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1713), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198981,14 +202604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4175), 29, - sym__automatic_semicolon, + ACTIONS(1717), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -199010,12 +202630,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [75315] = 15, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5370), 1, + anon_sym_STAR, + ACTIONS(5372), 1, + anon_sym_async, + ACTIONS(5376), 1, + anon_sym_readonly, + ACTIONS(5378), 1, + anon_sym_get, + ACTIONS(5380), 1, + anon_sym_set, + STATE(3169), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5374), 2, + sym_number, + sym_private_property_identifier, + STATE(3492), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3671), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75390] = 4, + ACTIONS(4095), 1, anon_sym_extends, - [74969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 13, + ACTIONS(4255), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199029,7 +202710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4389), 29, + ACTIONS(4257), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199058,26 +202739,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [75443] = 6, + ACTIONS(5209), 1, + anon_sym_AMP, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5213), 1, anon_sym_extends, - [75020] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 13, + ACTIONS(4255), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4411), 29, + ACTIONS(4257), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199106,20 +202790,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75071] = 6, - ACTIONS(4257), 1, + [75500] = 9, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4019), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_of, - ACTIONS(5326), 1, - anon_sym_in, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 12, + ACTIONS(1976), 6, anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1974), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75562] = 16, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5382), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4611), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -199127,19 +202885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 26, - sym__automatic_semicolon, + ACTIONS(4613), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -199153,17 +202903,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [75638] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4742), 1, + anon_sym_COLON, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75746] = 9, + ACTIONS(829), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [75127] = 4, - ACTIONS(3477), 1, - anon_sym_EQ, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(5409), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4824), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199174,18 +203007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 27, + ACTIONS(4826), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199203,16 +203031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [75179] = 4, + [75808] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1847), 13, + ACTIONS(4795), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199226,12 +203050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1849), 26, + ACTIONS(4797), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -199253,23 +203079,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75231] = 7, - ACTIONS(4291), 1, + [75858] = 7, + ACTIONS(4503), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 2, + ACTIONS(4505), 2, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(4828), 2, + ACTIONS(4891), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4825), 3, + ACTIONS(4888), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3429), 11, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199281,7 +203107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -199304,18 +203130,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75289] = 5, + [75916] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + ACTIONS(5421), 1, + anon_sym_COLON, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5267), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5288), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3429), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76024] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1745), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1749), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199329,10 +203227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(1751), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -199353,11 +203254,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75343] = 3, + [76076] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4836), 13, + ACTIONS(4663), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199371,7 +203272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4838), 28, + ACTIONS(4665), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199400,11 +203301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75393] = 3, + [76126] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4610), 13, + ACTIONS(4927), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199418,7 +203319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4612), 28, + ACTIONS(4929), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199447,11 +203348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75443] = 3, + [76176] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4614), 13, + ACTIONS(4659), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199465,7 +203366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4616), 28, + ACTIONS(4661), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199494,159 +203395,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75493] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5223), 1, - anon_sym_STAR, + [76226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5329), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5331), 2, - anon_sym_get, - anon_sym_set, - STATE(3786), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(1851), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75557] = 15, - ACTIONS(239), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1853), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(672), 1, anon_sym_RBRACE, - ACTIONS(2328), 1, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76276] = 12, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5423), 1, anon_sym_STAR, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, + ACTIONS(5425), 1, + anon_sym_async, + ACTIONS(5429), 1, anon_sym_get, + ACTIONS(5431), 1, anon_sym_set, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75631] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5427), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, + STATE(3494), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 20, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -199667,11 +203498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75707] = 3, + [76344] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4620), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199685,7 +203516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4622), 28, + ACTIONS(3437), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199714,92 +203545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75757] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5337), 1, - anon_sym_COLON, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75865] = 5, - ACTIONS(1801), 1, - sym__automatic_semicolon, + [76394] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1793), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1797), 13, + ACTIONS(4629), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199813,11 +203563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1799), 25, + ACTIONS(4631), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -199839,34 +203592,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75919] = 3, + [76444] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 13, + ACTIONS(4345), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4343), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 28, - sym__automatic_semicolon, + ACTIONS(3437), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199886,11 +203641,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75969] = 3, + [76498] = 4, + ACTIONS(3495), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4698), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199904,14 +203661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4700), 28, + ACTIONS(3437), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -199933,11 +203689,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76019] = 3, + [76550] = 12, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5433), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4702), 13, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4744), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199948,21 +203723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 28, - sym__automatic_semicolon, + ACTIONS(4746), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -199978,13 +203744,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [76069] = 3, + [76618] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5436), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5438), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5440), 2, + anon_sym_get, + anon_sym_set, + STATE(4182), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [76682] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 13, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199998,7 +203817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4708), 28, + ACTIONS(4285), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -200027,11 +203846,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76119] = 3, + [76732] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5442), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5444), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5446), 2, + anon_sym_get, + anon_sym_set, + STATE(4181), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [76796] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4960), 13, + ACTIONS(5266), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5299), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200045,15 +203925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4962), 28, - sym__automatic_semicolon, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200074,11 +203949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76169] = 3, + [76850] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4714), 13, + ACTIONS(1749), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200092,7 +203967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4716), 28, + ACTIONS(1751), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -200121,97 +203996,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76219] = 32, - ACTIONS(821), 1, + [76900] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(5375), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, + ACTIONS(4515), 1, + anon_sym_COLON, + ACTIONS(5389), 1, anon_sym_AMP_AMP, - ACTIONS(5379), 1, + ACTIONS(5391), 1, anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, + ACTIONS(5393), 1, anon_sym_GT_GT, - ACTIONS(5385), 1, + ACTIONS(5397), 1, anon_sym_AMP, - ACTIONS(5387), 1, + ACTIONS(5399), 1, anon_sym_CARET, - ACTIONS(5389), 1, + ACTIONS(5401), 1, anon_sym_PIPE, - ACTIONS(5393), 1, + ACTIONS(5405), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5407), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, + ACTIONS(5409), 1, anon_sym_LT, - ACTIONS(5405), 1, + ACTIONS(5417), 1, anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, + ACTIONS(5419), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(5385), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5373), 2, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, + ACTIONS(5395), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5391), 2, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 2, + ACTIONS(5415), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5399), 3, + ACTIONS(5411), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76327] = 7, - ACTIONS(5409), 1, + [77008] = 16, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(5412), 1, - anon_sym_COLON, - ACTIONS(5414), 1, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5448), 1, anon_sym_LT, - ACTIONS(5417), 1, - anon_sym_QMARK, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4861), 12, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4611), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -200222,15 +204116,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4863), 25, - sym__automatic_semicolon, + ACTIONS(4613), 15, sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [77084] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + ACTIONS(5451), 1, + anon_sym_COLON, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77192] = 13, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(5453), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4652), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4654), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -200244,42 +204264,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [76385] = 10, + [77262] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5419), 1, + ACTIONS(5456), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5421), 2, + ACTIONS(5458), 2, sym_number, sym_private_property_identifier, - ACTIONS(5423), 2, + ACTIONS(5460), 2, anon_sym_get, anon_sym_set, - STATE(3804), 3, + STATE(4177), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2352), 21, anon_sym_export, anon_sym_type, @@ -200302,36 +204319,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76449] = 5, - ACTIONS(1859), 1, - sym__automatic_semicolon, + [77326] = 8, + ACTIONS(3538), 1, + anon_sym_EQ, + ACTIONS(3583), 1, + anon_sym_COLON, + ACTIONS(4888), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1851), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1855), 13, + ACTIONS(4891), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4505), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 25, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -200351,16 +204371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76503] = 5, - ACTIONS(1869), 1, - sym__automatic_semicolon, + [77386] = 4, + ACTIONS(3465), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1861), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1865), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200374,13 +204391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1867), 25, + ACTIONS(3437), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -200400,34 +204419,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76557] = 3, + [77438] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + ACTIONS(5462), 1, + anon_sym_COLON, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4718), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77546] = 7, + ACTIONS(4467), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4469), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4912), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4909), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4751), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4720), 28, - sym__automatic_semicolon, + ACTIONS(4753), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -200447,16 +204546,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76607] = 5, - ACTIONS(1879), 1, - sym__automatic_semicolon, + [77604] = 7, + ACTIONS(5464), 1, + anon_sym_LPAREN, + ACTIONS(5467), 1, + anon_sym_COLON, + ACTIONS(5469), 1, + anon_sym_LT, + ACTIONS(5472), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1875), 13, + ACTIONS(3433), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200467,14 +204569,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1877), 25, + ACTIONS(3437), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200496,11 +204597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76661] = 3, + [77662] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1797), 13, + ACTIONS(4509), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200514,7 +204615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1799), 28, + ACTIONS(4511), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -200543,40 +204644,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76711] = 9, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3572), 1, - anon_sym_COLON, - ACTIONS(4293), 1, - anon_sym_extends, - ACTIONS(4825), 1, - anon_sym_LBRACK, + [77712] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4828), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5425), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3429), 11, + ACTIONS(4915), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(4917), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -200596,64 +204691,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76773] = 21, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(2028), 1, - anon_sym_DOT_DOT_DOT, + [77762] = 11, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, + ACTIONS(5474), 1, + anon_sym_STAR, + ACTIONS(5478), 1, + anon_sym_get, + ACTIONS(5480), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5476), 2, + sym_number, + sym_private_property_identifier, + STATE(4372), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(5433), 1, - anon_sym_RBRACE, - ACTIONS(5435), 1, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(5439), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(5441), 1, anon_sym_readonly, - ACTIONS(5447), 1, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - STATE(2740), 1, - sym_accessibility_modifier, - STATE(2780), 1, - sym_override_modifier, - STATE(4919), 1, - aux_sym_object_repeat1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [77828] = 12, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5482), 1, + anon_sym_STAR, + ACTIONS(5484), 1, + anon_sym_async, + ACTIONS(5488), 1, + anon_sym_get, + ACTIONS(5490), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5437), 2, + ACTIONS(5486), 2, sym_number, sym_private_property_identifier, - ACTIONS(5443), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5445), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3680), 3, + STATE(3488), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4913), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5429), 14, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -200661,18 +204802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76859] = 5, + [77896] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5267), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5269), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3429), 13, + ACTIONS(1913), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200686,10 +204820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(1915), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200710,16 +204849,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76913] = 5, - ACTIONS(1917), 1, - sym__automatic_semicolon, + [77946] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1909), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1913), 13, + ACTIONS(1757), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200733,11 +204867,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1915), 25, + ACTIONS(1759), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200759,42 +204896,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76967] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_STAR, + [77996] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5451), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5453), 2, - anon_sym_get, - anon_sym_set, - STATE(3854), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4970), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4817), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [78046] = 15, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, anon_sym_let, anon_sym_async, anon_sym_new, @@ -200813,16 +205002,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77031] = 5, - ACTIONS(1927), 1, + [78120] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4901), 1, + anon_sym_COLON, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78228] = 16, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78304] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5197), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5492), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5494), 2, + anon_sym_get, + anon_sym_set, + STATE(4214), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78368] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1919), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1923), 13, + ACTIONS(4919), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200836,11 +205210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1925), 25, + ACTIONS(4921), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200862,16 +205239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77085] = 5, - ACTIONS(1937), 1, - sym__automatic_semicolon, + [78418] = 4, + ACTIONS(3513), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1929), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1933), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200885,11 +205259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1935), 25, + ACTIONS(3437), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200911,38 +205287,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77139] = 5, - ACTIONS(1947), 1, - sym__automatic_semicolon, + [78470] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4703), 1, + anon_sym_COLON, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1939), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1943), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78578] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4642), 1, + anon_sym_COLON, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, anon_sym_GT_GT, + ACTIONS(5397), 1, anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1945), 25, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78686] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4511), 1, + anon_sym_COLON, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78794] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, anon_sym_as, - anon_sym_COMMA, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + ACTIONS(5496), 1, + anon_sym_COLON, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78902] = 12, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(5498), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4744), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4746), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -200958,21 +205646,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [77193] = 6, - ACTIONS(3578), 1, - anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_QMARK, + [78970] = 19, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3581), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 13, + sym__ternary_qmark, + anon_sym_as, anon_sym_COLON, - ACTIONS(3429), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [79052] = 5, + ACTIONS(1855), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1847), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1851), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200986,10 +205733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(1853), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201010,18 +205759,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77249] = 5, + [79106] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5501), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5455), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5457), 3, + ACTIONS(5503), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5505), 2, + anon_sym_get, + anon_sym_set, + STATE(4361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(3429), 13, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [79170] = 14, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5507), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201032,47 +205852,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(4575), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_satisfies, + [79242] = 26, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [79338] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, anon_sym_satisfies, - [77303] = 5, + ACTIONS(4515), 1, + anon_sym_of, + ACTIONS(5514), 1, + anon_sym_AMP_AMP, + ACTIONS(5516), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, + anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_PERCENT, + ACTIONS(5532), 1, + anon_sym_STAR_STAR, + ACTIONS(5534), 1, + anon_sym_LT, + ACTIONS(5542), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5544), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5459), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5461), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3429), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5510), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5512), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5540), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79446] = 16, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5546), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4611), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -201081,14 +206059,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4613), 15, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [79522] = 7, + ACTIONS(3587), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4888), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4891), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(3437), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -201108,18 +206127,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77357] = 5, + anon_sym_implements, + [79580] = 13, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5549), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4652), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4654), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [79650] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5459), 2, + ACTIONS(5552), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5461), 3, + ACTIONS(5554), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3429), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201133,7 +206210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -201157,11 +206234,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77411] = 3, + [79704] = 27, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [79802] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4710), 13, + ACTIONS(4844), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201175,7 +206323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4712), 28, + ACTIONS(4846), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201204,18 +206352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77461] = 5, + [79852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5459), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5461), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3429), 13, + ACTIONS(4734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201229,10 +206370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(4736), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201253,16 +206399,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77515] = 5, - ACTIONS(1761), 1, - sym__automatic_semicolon, + [79902] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1757), 13, + ACTIONS(5556), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5558), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201276,12 +206424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 25, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201302,16 +206448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77569] = 5, - ACTIONS(1771), 1, - sym__automatic_semicolon, + [79956] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1763), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1767), 13, + ACTIONS(5556), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5558), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201325,12 +206473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1769), 25, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201351,29 +206497,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77623] = 10, - ACTIONS(2328), 1, + [80010] = 11, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5463), 1, + ACTIONS(5560), 1, anon_sym_STAR, + ACTIONS(5562), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5465), 2, + ACTIONS(5564), 2, sym_number, sym_private_property_identifier, - ACTIONS(5467), 2, + ACTIONS(5566), 2, anon_sym_get, anon_sym_set, - STATE(3757), 3, + STATE(3485), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -201383,12 +206531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 21, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -201405,11 +206552,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77687] = 3, + [80076] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4729), 13, + ACTIONS(5556), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5558), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201423,15 +206577,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4731), 28, - sym__automatic_semicolon, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201452,16 +206601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77737] = 5, - ACTIONS(1781), 1, - sym__automatic_semicolon, + [80130] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1773), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1777), 13, + ACTIONS(4923), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201475,11 +206619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1779), 25, + ACTIONS(4925), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -201501,297 +206648,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77791] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, + [80180] = 17, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(5276), 1, - anon_sym_STAR, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5507), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5469), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5471), 2, - anon_sym_get, - anon_sym_set, - STATE(3775), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [77855] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5276), 1, - anon_sym_STAR, - ACTIONS(5278), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5280), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5284), 2, - anon_sym_get, - anon_sym_set, - STATE(3017), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [77921] = 5, - ACTIONS(1791), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1783), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1787), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1789), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [77975] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3429), 13, + ACTIONS(5385), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78025] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1843), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1847), 13, - anon_sym_STAR, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1849), 23, + ACTIONS(4575), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [78077] = 10, - ACTIONS(2328), 1, + [80258] = 11, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4507), 1, anon_sym_LBRACK, - ACTIONS(5255), 1, + ACTIONS(5279), 1, anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5473), 2, + ACTIONS(5283), 2, sym_number, sym_private_property_identifier, - ACTIONS(5475), 2, + ACTIONS(5287), 2, anon_sym_get, anon_sym_set, - STATE(3829), 3, + STATE(3524), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -201808,94 +206764,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78141] = 7, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1647), 2, - sym_template_string, - sym_arguments, - ACTIONS(5477), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4081), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4083), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [78199] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, + [80324] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5279), 1, anon_sym_STAR, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5568), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, + ACTIONS(5570), 2, anon_sym_get, anon_sym_set, - STATE(3821), 3, + STATE(4487), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2352), 21, anon_sym_export, anon_sym_type, @@ -201918,50 +206818,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78273] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, + [80388] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5560), 1, anon_sym_STAR, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5572), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, + ACTIONS(5574), 2, anon_sym_get, anon_sym_set, - STATE(3821), 3, + STATE(4192), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -201978,11 +206872,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78349] = 3, + [80452] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4733), 13, + ACTIONS(4972), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201996,7 +206890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4735), 28, + ACTIONS(4974), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202025,12 +206919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78399] = 3, + [80502] = 4, + ACTIONS(5576), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 13, + ACTIONS(5293), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -202043,14 +206940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5295), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -202067,188 +206964,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + [80554] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, anon_sym_satisfies, - [78449] = 4, + ACTIONS(4708), 1, + anon_sym_of, + ACTIONS(5514), 1, + anon_sym_AMP_AMP, + ACTIONS(5516), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, + anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_PERCENT, + ACTIONS(5532), 1, + anon_sym_STAR_STAR, + ACTIONS(5534), 1, + anon_sym_LT, + ACTIONS(5542), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5544), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1793), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1797), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5510), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5538), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1799), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5540), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80662] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4765), 1, + anon_sym_of, + ACTIONS(5514), 1, anon_sym_AMP_AMP, + ACTIONS(5516), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, anon_sym_PERCENT, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5534), 1, + anon_sym_LT, + ACTIONS(5542), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78501] = 8, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(4291), 1, - anon_sym_QMARK, - ACTIONS(4825), 1, - anon_sym_LBRACK, + ACTIONS(5544), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4828), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4293), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3429), 11, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5510), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5538), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5540), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80770] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4767), 1, + anon_sym_of, + ACTIONS(5514), 1, anon_sym_AMP_AMP, + ACTIONS(5516), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, anon_sym_PERCENT, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5534), 1, + anon_sym_LT, + ACTIONS(5542), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78561] = 3, + ACTIONS(5544), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4739), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5510), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5538), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4741), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5540), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78611] = 3, + [80878] = 7, + ACTIONS(3499), 1, + anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4743), 13, + ACTIONS(3477), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3467), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4511), 28, - sym__automatic_semicolon, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -202266,11 +207246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78661] = 3, + [80936] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4745), 13, + ACTIONS(4852), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202284,7 +207264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4559), 28, + ACTIONS(4854), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202313,20 +207293,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78711] = 6, - ACTIONS(4683), 1, + [80986] = 6, + ACTIONS(4909), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 2, + ACTIONS(4469), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4686), 3, + ACTIONS(4912), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(4751), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202337,7 +207317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 25, + ACTIONS(4753), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -202363,111 +207343,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78767] = 3, + [81042] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, + anon_sym_AMP_AMP, + ACTIONS(5584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5586), 1, + anon_sym_GT_GT, + ACTIONS(5590), 1, + anon_sym_AMP, + ACTIONS(5592), 1, + anon_sym_CARET, + ACTIONS(5594), 1, + anon_sym_PIPE, + ACTIONS(5598), 1, + anon_sym_PERCENT, + ACTIONS(5600), 1, + anon_sym_STAR_STAR, + ACTIONS(5602), 1, + anon_sym_LT, + ACTIONS(5610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5612), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4747), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5578), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81150] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4765), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, anon_sym_AMP_AMP, + ACTIONS(5584), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5586), 1, + anon_sym_GT_GT, + ACTIONS(5590), 1, + anon_sym_AMP, + ACTIONS(5592), 1, anon_sym_CARET, + ACTIONS(5594), 1, + anon_sym_PIPE, + ACTIONS(5598), 1, anon_sym_PERCENT, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5602), 1, + anon_sym_LT, + ACTIONS(5610), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78817] = 3, + ACTIONS(5612), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5578), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4753), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81258] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4767), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, anon_sym_AMP_AMP, + ACTIONS(5584), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5586), 1, + anon_sym_GT_GT, + ACTIONS(5590), 1, + anon_sym_AMP, + ACTIONS(5592), 1, anon_sym_CARET, + ACTIONS(5594), 1, + anon_sym_PIPE, + ACTIONS(5598), 1, anon_sym_PERCENT, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5602), 1, + anon_sym_LT, + ACTIONS(5610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5612), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5580), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5606), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5604), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78867] = 4, + [81366] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1851), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1855), 13, + ACTIONS(4848), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202481,10 +207589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 23, + ACTIONS(4850), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202505,20 +207618,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78919] = 4, + [81416] = 6, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_of, + ACTIONS(5614), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1861), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1865), 13, + ACTIONS(4329), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -202529,10 +207641,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1867), 23, + ACTIONS(4333), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202553,18 +207668,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78971] = 5, - ACTIONS(5479), 1, - sym__automatic_semicolon, + [81472] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5328), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 4, + ACTIONS(5617), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5619), 2, + anon_sym_get, + anon_sym_set, + STATE(4534), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1875), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [81536] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1923), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202578,10 +207740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1877), 23, + ACTIONS(1925), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202602,11 +207769,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79025] = 3, + [81586] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4755), 13, + ACTIONS(4761), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202620,7 +207787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4757), 28, + ACTIONS(4763), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202649,44 +207816,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79075] = 10, - ACTIONS(2328), 1, + [81636] = 11, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5299), 1, + ACTIONS(5328), 1, anon_sym_STAR, + ACTIONS(5330), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5332), 2, sym_number, sym_private_property_identifier, - ACTIONS(5483), 2, + ACTIONS(5334), 2, anon_sym_get, anon_sym_set, - STATE(3782), 3, + STATE(3505), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -202703,45 +207871,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79139] = 11, - ACTIONS(1621), 1, + [81702] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1903), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1905), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [81752] = 10, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5299), 1, + ACTIONS(5621), 1, anon_sym_STAR, - ACTIONS(5301), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5303), 2, + ACTIONS(5623), 2, sym_number, sym_private_property_identifier, - ACTIONS(5307), 2, + ACTIONS(5625), 2, anon_sym_get, anon_sym_set, - STATE(3059), 3, + STATE(4300), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -202758,17 +207972,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79205] = 4, + [81816] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1909), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1913), 13, + ACTIONS(1739), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202782,10 +207990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1915), 23, + ACTIONS(1741), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202806,17 +208019,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79257] = 4, + [81866] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1919), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1923), 13, + ACTIONS(1841), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202830,10 +208037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1925), 23, + ACTIONS(1843), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202854,18 +208066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79309] = 5, - ACTIONS(5485), 1, - sym__automatic_semicolon, + [81916] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1929), 4, + ACTIONS(5343), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5345), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1933), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202879,7 +208091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1935), 23, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -202903,66 +208115,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79363] = 5, - ACTIONS(5487), 1, - sym__automatic_semicolon, + [81970] = 23, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1939), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1943), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1945), 23, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [79417] = 4, + [82060] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1757), 13, + ACTIONS(4751), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202976,10 +208200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 23, + ACTIONS(4753), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203000,83 +208229,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79469] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1763), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1767), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1769), 23, - sym__ternary_qmark, - anon_sym_as, + [82110] = 33, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4976), 1, + anon_sym_of, + ACTIONS(5512), 1, + anon_sym_GT, + ACTIONS(5514), 1, anon_sym_AMP_AMP, + ACTIONS(5516), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, anon_sym_PERCENT, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5534), 1, + anon_sym_LT, + ACTIONS(5542), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79521] = 5, - ACTIONS(5489), 1, - sym__automatic_semicolon, + ACTIONS(5544), 1, + sym__ternary_qmark, + ACTIONS(5627), 1, + anon_sym_in, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1773), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1777), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5510), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5540), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82220] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4769), 1, + anon_sym_of, + ACTIONS(5514), 1, + anon_sym_AMP_AMP, + ACTIONS(5516), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, + anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_PERCENT, + ACTIONS(5532), 1, + anon_sym_STAR_STAR, + ACTIONS(5534), 1, + anon_sym_LT, + ACTIONS(5542), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5544), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5512), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5540), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82328] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4840), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1779), 23, + ACTIONS(4842), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203097,20 +208429,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79575] = 4, + [82378] = 24, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1783), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1787), 13, - anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4577), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [82470] = 6, + ACTIONS(4786), 1, + anon_sym_EQ, + ACTIONS(5055), 1, + anon_sym_of, + ACTIONS(5630), 1, anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4784), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -203121,10 +208520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 23, + ACTIONS(4788), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203145,16 +208547,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79627] = 4, - ACTIONS(3532), 1, + [82526] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + ACTIONS(5633), 1, + anon_sym_COLON, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82634] = 6, + ACTIONS(1715), 1, anon_sym_EQ, + ACTIONS(5023), 1, + anon_sym_of, + ACTIONS(5635), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, + ACTIONS(1713), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -203165,12 +208646,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 27, + ACTIONS(1717), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -203193,86 +208673,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79679] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + [82690] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - ACTIONS(5197), 1, - anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4793), 1, + anon_sym_of, + ACTIONS(5514), 1, + anon_sym_AMP_AMP, + ACTIONS(5516), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, + anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_PERCENT, + ACTIONS(5532), 1, + anon_sym_STAR_STAR, + ACTIONS(5534), 1, + anon_sym_LT, + ACTIONS(5542), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5544), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [79753] = 7, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5512), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5540), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82798] = 7, + ACTIONS(3555), 1, + anon_sym_EQ, + ACTIONS(4888), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, + ACTIONS(4505), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4891), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3479), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3429), 11, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -203280,12 +208775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(3437), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -203303,26 +208800,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79811] = 16, + [82856] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4799), 1, + anon_sym_of, + ACTIONS(5514), 1, + anon_sym_AMP_AMP, + ACTIONS(5516), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, + anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_PERCENT, + ACTIONS(5532), 1, + anon_sym_STAR_STAR, + ACTIONS(5534), 1, + anon_sym_LT, + ACTIONS(5542), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5544), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5512), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5540), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82964] = 15, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5215), 1, anon_sym_STAR, - ACTIONS(5197), 1, + ACTIONS(5341), 1, anon_sym_RBRACE, - STATE(4821), 1, + STATE(5516), 1, aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -203333,20 +208904,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3821), 3, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203363,98 +208935,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79887] = 4, - ACTIONS(5491), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5239), 17, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(5241), 23, - sym__automatic_semicolon, - sym__ternary_qmark, + [83038] = 16, + ACTIONS(239), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [79939] = 12, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1573), 1, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1575), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(3909), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + ACTIONS(5341), 1, + anon_sym_RBRACE, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5190), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5495), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5138), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5612), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5619), 3, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(5493), 23, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -203467,36 +208995,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80007] = 5, + [83114] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4269), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3429), 11, + ACTIONS(4836), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 24, + ACTIONS(4838), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -203516,88 +209042,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80061] = 7, - ACTIONS(4357), 1, - anon_sym_QMARK, + [83164] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4815), 1, + anon_sym_of, + ACTIONS(5514), 1, + anon_sym_AMP_AMP, + ACTIONS(5516), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, + anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_PERCENT, + ACTIONS(5532), 1, + anon_sym_STAR_STAR, + ACTIONS(5534), 1, + anon_sym_LT, + ACTIONS(5542), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5544), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4843), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4840), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4836), 11, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5510), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5538), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4838), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5540), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83272] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4817), 1, + anon_sym_of, + ACTIONS(5514), 1, anon_sym_AMP_AMP, + ACTIONS(5516), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, anon_sym_PERCENT, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5534), 1, + anon_sym_LT, + ACTIONS(5542), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5544), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5512), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5540), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80119] = 6, - ACTIONS(4825), 1, - anon_sym_LBRACK, + [83380] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 2, + ACTIONS(5638), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5640), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4828), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 25, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -203617,11 +209243,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80175] = 3, + [83434] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 13, + ACTIONS(5642), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5644), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203635,15 +209268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4789), 28, - sym__automatic_semicolon, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203664,90 +209292,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80225] = 8, - ACTIONS(3530), 1, + [83488] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(4955), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5646), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5648), 2, + anon_sym_get, + anon_sym_set, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3572), 1, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4825), 1, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83552] = 25, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4828), 2, - anon_sym_AMP, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4577), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4293), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3429), 11, + ACTIONS(5385), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [80285] = 7, - ACTIONS(3608), 1, - anon_sym_EQ, - ACTIONS(4825), 1, - anon_sym_LBRACK, + [83646] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 2, + ACTIONS(5642), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5644), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4828), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 24, - sym__automatic_semicolon, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -203767,114 +209464,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80343] = 33, - ACTIONS(821), 1, + [83700] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4831), 1, - anon_sym_of, - ACTIONS(5499), 1, - anon_sym_in, - ACTIONS(5502), 1, - anon_sym_GT, - ACTIONS(5504), 1, + ACTIONS(5389), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5391), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5393), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5397), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5399), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5401), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5405), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5407), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5409), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5417), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5419), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5650), 1, + anon_sym_COLON, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5385), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5510), 2, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5415), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5411), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80453] = 6, - ACTIONS(4840), 1, - anon_sym_LBRACK, + [83808] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 2, + ACTIONS(5642), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5644), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4843), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4836), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4838), 25, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -203894,40 +209589,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80509] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(695), 1, - anon_sym_RBRACE, + [83862] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5652), 1, anon_sym_STAR, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5654), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, + ACTIONS(5656), 2, anon_sym_get, anon_sym_set, - STATE(3821), 3, + STATE(4532), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -203953,50 +209643,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80583] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(695), 1, - anon_sym_RBRACE, + [83926] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5240), 1, anon_sym_STAR, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5658), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, + ACTIONS(5660), 2, anon_sym_get, anon_sym_set, - STATE(3821), 3, + STATE(4440), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -204013,11 +209697,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80659] = 3, + [83990] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4767), 13, + ACTIONS(5266), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5268), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204031,15 +209722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4769), 28, - sym__automatic_semicolon, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204060,11 +209746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80709] = 3, + [84044] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4771), 13, + ACTIONS(4832), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204078,7 +209764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4773), 28, + ACTIONS(4834), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204107,34 +209793,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80759] = 3, + [84094] = 7, + ACTIONS(3551), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4775), 13, + ACTIONS(4888), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4891), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4777), 28, - sym__automatic_semicolon, + ACTIONS(3437), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204154,19 +209844,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80809] = 6, - ACTIONS(4691), 1, + [84152] = 6, + ACTIONS(3575), 1, + anon_sym_QMARK, + ACTIONS(3577), 1, anon_sym_EQ, - ACTIONS(5026), 1, - anon_sym_of, - ACTIONS(5536), 1, - anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4689), 12, + ACTIONS(3580), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -204177,13 +209870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4693), 26, - sym__automatic_semicolon, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204204,19 +209894,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80865] = 6, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(5028), 1, - anon_sym_of, - ACTIONS(5539), 1, - anon_sym_in, + [84208] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 12, + ACTIONS(4828), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -204227,12 +209912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 26, + ACTIONS(4830), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -204254,153 +209941,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80921] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + [84258] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4767), 1, + anon_sym_COLON, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84366] = 23, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5586), 1, + anon_sym_GT_GT, + ACTIONS(5598), 1, + anon_sym_PERCENT, + ACTIONS(5600), 1, + anon_sym_STAR_STAR, + ACTIONS(5602), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [80995] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81071] = 3, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5580), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5606), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [84456] = 6, + ACTIONS(4888), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 13, + ACTIONS(4505), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4891), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 28, - sym__automatic_semicolon, + ACTIONS(3437), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204420,61 +210134,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81121] = 6, - ACTIONS(4293), 1, - anon_sym_extends, + [84512] = 16, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5507), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4828), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4825), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3429), 11, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 24, + ACTIONS(4575), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [81177] = 3, + [84588] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1865), 13, + ACTIONS(5662), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5664), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204488,15 +210219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1867), 28, - sym__automatic_semicolon, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204517,11 +210243,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81227] = 3, + [84642] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 13, + ACTIONS(5666), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5668), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204535,15 +210268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1877), 28, - sym__automatic_semicolon, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204564,13 +210292,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81277] = 3, + [84696] = 17, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5507), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1913), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -204579,69 +210336,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1915), 28, - sym__automatic_semicolon, + ACTIONS(4575), 14, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [84774] = 28, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(5514), 1, + anon_sym_AMP_AMP, + ACTIONS(5516), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, + anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, + anon_sym_PERCENT, + ACTIONS(5532), 1, + anon_sym_STAR_STAR, + ACTIONS(5534), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5512), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5540), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [81327] = 6, - ACTIONS(4359), 1, - anon_sym_extends, + [84874] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5652), 1, + anon_sym_STAR, + ACTIONS(5670), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4843), 2, + ACTIONS(5672), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5674), 2, + anon_sym_get, + anon_sym_set, + STATE(3506), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84940] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4515), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, + anon_sym_AMP_AMP, + ACTIONS(5584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5586), 1, + anon_sym_GT_GT, + ACTIONS(5590), 1, anon_sym_AMP, + ACTIONS(5592), 1, + anon_sym_CARET, + ACTIONS(5594), 1, anon_sym_PIPE, - ACTIONS(4840), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4836), 11, + ACTIONS(5598), 1, + anon_sym_PERCENT, + ACTIONS(5600), 1, + anon_sym_STAR_STAR, + ACTIONS(5602), 1, + anon_sym_LT, + ACTIONS(5610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5612), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5580), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5606), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85048] = 4, + ACTIONS(5576), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5293), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4838), 24, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5295), 23, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204656,45 +210601,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [81383] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, + [85100] = 11, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5676), 1, anon_sym_STAR, - ACTIONS(5214), 1, - anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5680), 1, + anon_sym_get, + ACTIONS(5682), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5678), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, + STATE(4324), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -204720,50 +210659,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81457] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, + [85166] = 11, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5214), 1, - anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5688), 1, + anon_sym_get, + ACTIONS(5690), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5686), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, + STATE(4320), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -204780,36 +210714,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81533] = 9, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + [85232] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, + anon_sym_STAR, + ACTIONS(5696), 1, + anon_sym_get, + ACTIONS(5698), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1994), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5694), 2, sym_number, sym_private_property_identifier, - ACTIONS(3879), 7, + STATE(4314), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1992), 23, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -204819,8 +210757,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -204833,36 +210769,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81595] = 9, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + [85298] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5700), 1, + anon_sym_STAR, + ACTIONS(5704), 1, + anon_sym_get, + ACTIONS(5706), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1976), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5702), 2, sym_number, sym_private_property_identifier, - ACTIONS(3879), 7, + STATE(4310), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1974), 23, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -204872,8 +210812,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -204886,18 +210824,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81657] = 4, + [85364] = 21, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4273), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4577), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [85450] = 28, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4577), 1, anon_sym_BANG, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [85550] = 6, + ACTIONS(3495), 1, + anon_sym_EQ, + ACTIONS(3630), 1, anon_sym_in, + ACTIONS(3633), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -204908,12 +210984,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 25, + ACTIONS(3437), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204934,15 +211011,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81709] = 4, + [85606] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4817), 1, + anon_sym_COLON, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4273), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85714] = 5, + ACTIONS(1883), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1875), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1879), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204956,12 +211110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 25, + ACTIONS(1881), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204982,25 +211136,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81761] = 15, + [85768] = 16, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4215), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5215), 1, anon_sym_STAR, - ACTIONS(5245), 1, + ACTIONS(5291), 1, anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -205010,21 +211166,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3821), 3, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 21, + ACTIONS(2352), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -205041,27 +211196,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81835] = 16, + [85844] = 5, + ACTIONS(1873), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1865), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1869), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1871), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85898] = 15, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5215), 1, anon_sym_STAR, - ACTIONS(5245), 1, + ACTIONS(5291), 1, anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -205071,20 +211273,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3821), 3, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -205101,100 +211304,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81911] = 9, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3876), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + [85972] = 6, + ACTIONS(4505), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1994), 6, - anon_sym_STAR, + ACTIONS(4891), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4888), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3879), 7, - sym__automatic_semicolon, + ACTIONS(3433), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [86028] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4815), 1, + anon_sym_COLON, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1992), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81973] = 9, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3876), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1976), 6, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86136] = 12, + ACTIONS(1631), 1, anon_sym_DQUOTE, + ACTIONS(1633), 1, anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5708), 1, + anon_sym_STAR, + ACTIONS(5710), 1, + anon_sym_async, + ACTIONS(5714), 1, + anon_sym_get, + ACTIONS(5716), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3879), 7, + STATE(3507), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1974), 23, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -205207,39 +211486,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82035] = 8, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(4249), 1, - anon_sym_LBRACK, - ACTIONS(5028), 1, - anon_sym_COLON, + [86204] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2362), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1701), 11, + ACTIONS(4951), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 22, + ACTIONS(4953), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -205259,39 +211533,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82095] = 8, - ACTIONS(4257), 1, - anon_sym_EQ, - ACTIONS(4261), 1, + [86254] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(5017), 1, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4799), 1, anon_sym_COLON, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4267), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4255), 11, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5387), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5415), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86362] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1943), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 22, + ACTIONS(1945), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -205311,308 +211656,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82155] = 7, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(4249), 1, + [86412] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2362), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4252), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1701), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1705), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82213] = 7, - ACTIONS(4257), 1, - anon_sym_EQ, - ACTIONS(4261), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4267), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4264), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4255), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4259), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82271] = 9, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3885), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1994), 6, + ACTIONS(5501), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1992), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(5718), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82333] = 9, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3885), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1976), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5720), 2, sym_number, sym_private_property_identifier, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1974), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(5722), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82395] = 9, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3888), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1994), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3879), 7, + STATE(3514), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1992), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82457] = 9, - ACTIONS(3873), 1, anon_sym_COMMA, - ACTIONS(3888), 1, anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1976), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3879), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1974), 23, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -205625,173 +211711,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82519] = 9, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3891), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1994), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3879), 7, - sym__automatic_semicolon, + [86478] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1992), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82581] = 9, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3891), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1976), 6, - anon_sym_STAR, + ACTIONS(4069), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4793), 1, anon_sym_COLON, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1974), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82643] = 5, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5542), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5544), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3429), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5415), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82697] = 5, + [86586] = 5, + ACTIONS(1835), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5546), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5548), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3429), 13, + ACTIONS(1827), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1831), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205805,10 +211810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(1833), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -205829,480 +211836,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82751] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5546), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5548), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, + [86640] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4769), 1, + anon_sym_COLON, + ACTIONS(5389), 1, anon_sym_AMP_AMP, + ACTIONS(5391), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, anon_sym_PERCENT, + ACTIONS(5407), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82805] = 5, + ACTIONS(5419), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5546), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5548), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3429), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5385), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5395), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5415), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5411), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82859] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5552), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5554), 2, - anon_sym_get, - anon_sym_set, - STATE(3818), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82923] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5556), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5558), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5560), 2, - anon_sym_get, - anon_sym_set, - STATE(3033), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82989] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5223), 1, - anon_sym_STAR, - ACTIONS(5225), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5231), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5562), 2, - sym_number, - sym_private_property_identifier, - STATE(3034), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83055] = 32, - ACTIONS(821), 1, + [86748] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(5339), 1, + ACTIONS(5582), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, + ACTIONS(5584), 1, anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5347), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5349), 1, + ACTIONS(5592), 1, anon_sym_CARET, - ACTIONS(5351), 1, + ACTIONS(5594), 1, anon_sym_PIPE, - ACTIONS(5355), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5367), 1, + ACTIONS(5610), 1, anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, + ACTIONS(5612), 1, sym__ternary_qmark, - ACTIONS(5564), 1, - anon_sym_COLON, - STATE(1493), 1, + ACTIONS(5724), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5335), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5353), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5361), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83163] = 32, - ACTIONS(821), 1, + [86856] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(5377), 1, + ACTIONS(5389), 1, anon_sym_AMP_AMP, - ACTIONS(5379), 1, + ACTIONS(5391), 1, anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, + ACTIONS(5393), 1, anon_sym_GT_GT, - ACTIONS(5385), 1, + ACTIONS(5397), 1, anon_sym_AMP, - ACTIONS(5387), 1, + ACTIONS(5399), 1, anon_sym_CARET, - ACTIONS(5389), 1, + ACTIONS(5401), 1, anon_sym_PIPE, - ACTIONS(5393), 1, + ACTIONS(5405), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5407), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, + ACTIONS(5409), 1, anon_sym_LT, - ACTIONS(5405), 1, + ACTIONS(5417), 1, anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, + ACTIONS(5419), 1, sym__ternary_qmark, - ACTIONS(5566), 1, - anon_sym_RBRACK, - STATE(1493), 1, + ACTIONS(5726), 1, + anon_sym_COLON, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(5385), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5373), 2, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, + ACTIONS(5395), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5391), 2, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 2, + ACTIONS(5415), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5399), 3, + ACTIONS(5411), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83271] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5223), 1, - anon_sym_STAR, - ACTIONS(5225), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5231), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5568), 2, - sym_number, - sym_private_property_identifier, - STATE(3042), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + [86964] = 7, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83337] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4779), 13, + STATE(1802), 2, + sym_template_string, + sym_arguments, + ACTIONS(5728), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4107), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206316,15 +212093,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4781), 28, - sym__automatic_semicolon, + ACTIONS(4109), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -206343,13 +212114,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [83387] = 3, + [87022] = 13, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5730), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4874), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4652), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206360,21 +212152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4876), 28, - sym__automatic_semicolon, + ACTIONS(4654), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -206388,23 +212171,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_satisfies, + [87092] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, anon_sym_satisfies, - [83437] = 6, - ACTIONS(3532), 1, - anon_sym_EQ, - ACTIONS(3644), 1, + ACTIONS(4769), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, + anon_sym_AMP_AMP, + ACTIONS(5584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5586), 1, + anon_sym_GT_GT, + ACTIONS(5590), 1, + anon_sym_AMP, + ACTIONS(5592), 1, + anon_sym_CARET, + ACTIONS(5594), 1, + anon_sym_PIPE, + ACTIONS(5598), 1, + anon_sym_PERCENT, + ACTIONS(5600), 1, + anon_sym_STAR_STAR, + ACTIONS(5602), 1, + anon_sym_LT, + ACTIONS(5610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5612), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5580), 2, anon_sym_in, - ACTIONS(3647), 1, - anon_sym_of, + anon_sym_GT, + ACTIONS(5588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5606), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87200] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 12, + ACTIONS(4907), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -206415,12 +212266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 26, + ACTIONS(4799), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -206442,19 +212295,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83493] = 7, - ACTIONS(5570), 1, + [87250] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_COLON, - ACTIONS(5575), 1, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4793), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, + anon_sym_AMP_AMP, + ACTIONS(5584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5586), 1, + anon_sym_GT_GT, + ACTIONS(5590), 1, + anon_sym_AMP, + ACTIONS(5592), 1, + anon_sym_CARET, + ACTIONS(5594), 1, + anon_sym_PIPE, + ACTIONS(5598), 1, + anon_sym_PERCENT, + ACTIONS(5600), 1, + anon_sym_STAR_STAR, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5578), 1, - anon_sym_QMARK, + ACTIONS(5610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5612), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5580), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5606), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87358] = 14, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5600), 1, + anon_sym_STAR_STAR, + ACTIONS(5733), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 12, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206467,70 +212412,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 25, - sym__automatic_semicolon, + ACTIONS(4575), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [83551] = 10, - ACTIONS(2328), 1, + [87430] = 12, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5580), 1, + ACTIONS(5736), 1, anon_sym_STAR, + ACTIONS(5738), 1, + anon_sym_async, + ACTIONS(5742), 1, + anon_sym_get, + ACTIONS(5744), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5582), 2, + ACTIONS(5740), 2, sym_number, sym_private_property_identifier, - ACTIONS(5584), 2, - anon_sym_get, - anon_sym_set, - STATE(3723), 3, + STATE(3483), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -206547,934 +212485,499 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83615] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, + [87498] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(5580), 1, - anon_sym_STAR, - ACTIONS(5586), 1, - anon_sym_async, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5389), 1, + anon_sym_AMP_AMP, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, + anon_sym_GT_GT, + ACTIONS(5397), 1, + anon_sym_AMP, + ACTIONS(5399), 1, + anon_sym_CARET, + ACTIONS(5401), 1, + anon_sym_PIPE, + ACTIONS(5405), 1, + anon_sym_PERCENT, + ACTIONS(5407), 1, + anon_sym_STAR_STAR, + ACTIONS(5409), 1, + anon_sym_LT, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + ACTIONS(5746), 1, + anon_sym_COLON, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5588), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5590), 2, - anon_sym_get, - anon_sym_set, - STATE(3092), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83681] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5216), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5218), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83735] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4023), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4761), 2, - sym_number, - sym_private_property_identifier, - STATE(3807), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83799] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5313), 1, - anon_sym_STAR, - ACTIONS(5315), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5317), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5321), 2, - anon_sym_get, - anon_sym_set, - STATE(3093), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83865] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5592), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5594), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83919] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4896), 13, + ACTIONS(5385), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4898), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83969] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1847), 13, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1849), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5395), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [84019] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4796), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4798), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5415), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [84069] = 9, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(5359), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4800), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4802), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5411), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [84131] = 32, - ACTIONS(821), 1, + [87606] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4712), 1, + ACTIONS(4765), 1, anon_sym_COLON, - ACTIONS(5339), 1, + ACTIONS(5389), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, + ACTIONS(5391), 1, anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, + ACTIONS(5393), 1, anon_sym_GT_GT, - ACTIONS(5347), 1, + ACTIONS(5397), 1, anon_sym_AMP, - ACTIONS(5349), 1, + ACTIONS(5399), 1, anon_sym_CARET, - ACTIONS(5351), 1, + ACTIONS(5401), 1, anon_sym_PIPE, - ACTIONS(5355), 1, + ACTIONS(5405), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5407), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5409), 1, anon_sym_LT, - ACTIONS(5367), 1, + ACTIONS(5417), 1, anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, + ACTIONS(5419), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(5385), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5335), 2, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, + ACTIONS(5395), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5353), 2, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, + ACTIONS(5415), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5361), 3, + ACTIONS(5411), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84239] = 32, - ACTIONS(821), 1, + [87714] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4804), 1, + ACTIONS(4708), 1, anon_sym_COLON, - ACTIONS(5339), 1, + ACTIONS(5389), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, + ACTIONS(5391), 1, anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, + ACTIONS(5393), 1, anon_sym_GT_GT, - ACTIONS(5347), 1, + ACTIONS(5397), 1, anon_sym_AMP, - ACTIONS(5349), 1, + ACTIONS(5399), 1, anon_sym_CARET, - ACTIONS(5351), 1, + ACTIONS(5401), 1, anon_sym_PIPE, - ACTIONS(5355), 1, + ACTIONS(5405), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5407), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5409), 1, anon_sym_LT, - ACTIONS(5367), 1, + ACTIONS(5417), 1, anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, + ACTIONS(5419), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(5385), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5335), 2, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, + ACTIONS(5395), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5353), 2, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, + ACTIONS(5415), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5361), 3, + ACTIONS(5411), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84347] = 32, - ACTIONS(821), 1, + [87822] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4816), 1, - anon_sym_COLON, - ACTIONS(5339), 1, + ACTIONS(5389), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, + ACTIONS(5391), 1, anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, + ACTIONS(5393), 1, anon_sym_GT_GT, - ACTIONS(5347), 1, + ACTIONS(5397), 1, anon_sym_AMP, - ACTIONS(5349), 1, + ACTIONS(5399), 1, anon_sym_CARET, - ACTIONS(5351), 1, + ACTIONS(5401), 1, anon_sym_PIPE, - ACTIONS(5355), 1, + ACTIONS(5405), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5407), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5409), 1, anon_sym_LT, - ACTIONS(5367), 1, + ACTIONS(5417), 1, anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, + ACTIONS(5419), 1, sym__ternary_qmark, - STATE(1493), 1, + ACTIONS(5748), 1, + anon_sym_COLON, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(5385), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5335), 2, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, + ACTIONS(5395), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5353), 2, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, + ACTIONS(5415), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5361), 3, + ACTIONS(5411), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84455] = 32, - ACTIONS(821), 1, + [87930] = 17, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4574), 1, - anon_sym_COLON, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5750), 1, anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, + ACTIONS(4575), 14, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84563] = 32, - ACTIONS(821), 1, + [88008] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4616), 1, - anon_sym_COLON, - ACTIONS(5339), 1, + ACTIONS(4799), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, + ACTIONS(5584), 1, anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5347), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5349), 1, + ACTIONS(5592), 1, anon_sym_CARET, - ACTIONS(5351), 1, + ACTIONS(5594), 1, anon_sym_PIPE, - ACTIONS(5355), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5367), 1, + ACTIONS(5610), 1, anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, + ACTIONS(5612), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5335), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5353), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5361), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84671] = 19, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [88116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(4903), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 13, + ACTIONS(4905), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [84753] = 14, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5596), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_satisfies, + [88166] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 12, + ACTIONS(4896), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207485,465 +212988,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 16, + ACTIONS(4793), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [84825] = 26, - ACTIONS(821), 1, + [88216] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(5343), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4815), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, + anon_sym_AMP_AMP, + ACTIONS(5584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5347), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5349), 1, + ACTIONS(5592), 1, anon_sym_CARET, - ACTIONS(5351), 1, + ACTIONS(5594), 1, anon_sym_PIPE, - ACTIONS(5355), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5602), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(5610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5612), 1, + sym__ternary_qmark, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5335), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5353), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5361), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [84921] = 27, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [88324] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(4947), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 6, + ACTIONS(4949), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [85019] = 17, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5355), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5596), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88374] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(4894), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 15, + ACTIONS(4769), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [85097] = 23, - ACTIONS(821), 1, + [88424] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5343), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5582), 1, + anon_sym_AMP_AMP, + ACTIONS(5584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5355), 1, + ACTIONS(5590), 1, + anon_sym_AMP, + ACTIONS(5592), 1, + anon_sym_CARET, + ACTIONS(5594), 1, + anon_sym_PIPE, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5602), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(5610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5612), 1, + sym__ternary_qmark, + ACTIONS(5753), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5335), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5353), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5361), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [85187] = 24, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [88532] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5333), 2, + ACTIONS(4884), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 8, + ACTIONS(4886), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [85279] = 25, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5333), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [85373] = 16, - ACTIONS(821), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5596), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_satisfies, + [88582] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(1753), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1757), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -207952,60 +213333,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 15, + ACTIONS(1759), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [85449] = 17, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5596), 1, + [88634] = 7, + ACTIONS(5755), 1, + anon_sym_LPAREN, + ACTIONS(5758), 1, + anon_sym_COLON, + ACTIONS(5760), 1, anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + ACTIONS(5763), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 11, + ACTIONS(4828), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -208016,772 +213386,452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 14, + ACTIONS(4830), 25, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COLON, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85527] = 21, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_satisfies, + [88692] = 5, + ACTIONS(5765), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(1909), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1913), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4722), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 10, + ACTIONS(1915), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [85613] = 28, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88746] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(1837), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1841), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 5, + ACTIONS(1843), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [85713] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4704), 1, - anon_sym_COLON, - ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5345), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85821] = 32, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_satisfies, + [88798] = 12, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(5767), 1, + anon_sym_STAR, + ACTIONS(5769), 1, + anon_sym_async, + ACTIONS(5773), 1, + anon_sym_get, + ACTIONS(5775), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5771), 2, + sym_number, + sym_private_property_identifier, + STATE(3478), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4869), 1, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88866] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(1735), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1739), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85929] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(1741), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4608), 1, - anon_sym_COLON, - ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86037] = 32, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4511), 1, - anon_sym_COLON, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [88918] = 12, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5777), 1, + anon_sym_STAR, + ACTIONS(5779), 1, + anon_sym_async, + ACTIONS(5783), 1, + anon_sym_get, + ACTIONS(5785), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86145] = 32, - ACTIONS(821), 1, + ACTIONS(5781), 2, + sym_number, + sym_private_property_identifier, + STATE(3480), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88986] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4559), 1, - anon_sym_COLON, - ACTIONS(5339), 1, + ACTIONS(4817), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, + ACTIONS(5584), 1, anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5347), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5349), 1, + ACTIONS(5592), 1, anon_sym_CARET, - ACTIONS(5351), 1, + ACTIONS(5594), 1, anon_sym_PIPE, - ACTIONS(5355), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5367), 1, + ACTIONS(5610), 1, anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, + ACTIONS(5612), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5335), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5353), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5361), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86253] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4561), 1, + [89094] = 9, + ACTIONS(3465), 1, + anon_sym_EQ, + ACTIONS(3583), 1, anon_sym_COLON, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + ACTIONS(4505), 1, + anon_sym_extends, + ACTIONS(4888), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(4891), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5787), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3433), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86361] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(3437), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4563), 1, - anon_sym_COLON, - ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86469] = 32, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_satisfies, + [89156] = 16, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4618), 1, - anon_sym_COLON, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, + ACTIONS(5530), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5750), 1, anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(5510), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5335), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86577] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4861), 13, - anon_sym_STAR, + ACTIONS(4577), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -208790,67 +213840,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4863), 28, - sym__automatic_semicolon, + ACTIONS(4575), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [86627] = 3, + [89232] = 6, + ACTIONS(4469), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1923), 13, + ACTIONS(4912), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4909), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4751), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1925), 28, - sym__automatic_semicolon, + ACTIONS(4753), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208870,11 +213908,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86677] = 3, + [89288] = 25, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, + anon_sym_CARET, + ACTIONS(5530), 1, + anon_sym_PERCENT, + ACTIONS(5532), 1, + anon_sym_STAR_STAR, + ACTIONS(5534), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4577), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5512), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5540), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [89382] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1933), 13, + ACTIONS(4880), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208888,7 +213995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1935), 28, + ACTIONS(4882), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -208917,11 +214024,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86727] = 3, + [89432] = 16, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(695), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1943), 13, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89508] = 5, + ACTIONS(5791), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1899), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1903), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208935,15 +214109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1945), 28, - sym__automatic_semicolon, + ACTIONS(1905), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -208964,11 +214133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86777] = 3, + [89562] = 5, + ACTIONS(5793), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1757), 13, + ACTIONS(1919), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1923), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208982,15 +214158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 28, - sym__automatic_semicolon, + ACTIONS(1925), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209011,11 +214182,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86827] = 3, + [89616] = 15, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(695), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 13, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89690] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1939), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1943), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209029,15 +214265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1769), 28, - sym__automatic_semicolon, + ACTIONS(1945), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209058,24 +214289,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86877] = 9, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(5397), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [89742] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4800), 12, + ACTIONS(1763), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1767), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209086,13 +214310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 22, + ACTIONS(1769), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -209110,442 +214335,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [86939] = 32, - ACTIONS(821), 1, + [89794] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5197), 1, + anon_sym_STAR, + ACTIONS(5199), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5201), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5205), 2, + anon_sym_get, + anon_sym_set, + STATE(3534), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89860] = 24, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4712), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, + ACTIONS(5518), 1, anon_sym_GT_GT, - ACTIONS(5385), 1, + ACTIONS(5522), 1, anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, + ACTIONS(5530), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, + ACTIONS(5534), 1, anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(4577), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5510), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5373), 2, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, + ACTIONS(5520), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5391), 2, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, + ACTIONS(5538), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 2, + ACTIONS(5540), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5399), 3, + ACTIONS(5536), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87047] = 32, - ACTIONS(821), 1, + ACTIONS(4575), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [89952] = 28, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4804), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(5582), 1, anon_sym_AMP_AMP, - ACTIONS(5379), 1, + ACTIONS(5584), 1, anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5385), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5387), 1, + ACTIONS(5592), 1, anon_sym_CARET, - ACTIONS(5389), 1, + ACTIONS(5594), 1, anon_sym_PIPE, - ACTIONS(5393), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5373), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5391), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5399), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87155] = 32, - ACTIONS(821), 1, + ACTIONS(4575), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [90052] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5795), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5797), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5799), 2, + anon_sym_get, + anon_sym_set, + STATE(4435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90116] = 23, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4816), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, + ACTIONS(5518), 1, anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, + ACTIONS(5530), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, + ACTIONS(5534), 1, anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(5510), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5373), 2, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, + ACTIONS(5520), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5391), 2, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, + ACTIONS(5538), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 2, + ACTIONS(5540), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5399), 3, + ACTIONS(4577), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5536), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87263] = 32, - ACTIONS(821), 1, + ACTIONS(4575), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [90206] = 21, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4574), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5373), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5391), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5403), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5399), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87371] = 32, - ACTIONS(821), 1, + ACTIONS(4577), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [90292] = 17, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4616), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, - anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, - anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, + ACTIONS(5733), 1, anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5371), 2, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 2, + ACTIONS(4575), 14, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87479] = 19, - ACTIONS(821), 1, + [90370] = 16, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5381), 1, - anon_sym_GT_GT, - ACTIONS(5393), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, + ACTIONS(5733), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 7, + ACTIONS(4577), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 13, + ACTIONS(4575), 15, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -209554,242 +214839,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [87561] = 14, - ACTIONS(821), 1, + [90446] = 17, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5599), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [87633] = 26, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5381), 1, - anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, - anon_sym_PERCENT, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5397), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5403), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [87729] = 27, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, - anon_sym_PERCENT, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5397), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5403), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [87827] = 17, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5393), 1, + ACTIONS(5530), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5599), 1, + ACTIONS(5750), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(5510), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5391), 2, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 8, + ACTIONS(4577), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -209798,10 +214884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 15, + ACTIONS(4575), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -209814,244 +214900,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [87905] = 23, - ACTIONS(821), 1, + [90524] = 27, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5381), 1, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(5514), 1, + anon_sym_AMP_AMP, + ACTIONS(5518), 1, anon_sym_GT_GT, - ACTIONS(5393), 1, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, + anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, + ACTIONS(5534), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(5510), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5373), 2, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, + ACTIONS(5520), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5391), 2, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, + ACTIONS(5538), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 2, + ACTIONS(5540), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5399), 3, + ACTIONS(5536), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 8, + ACTIONS(4575), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, + anon_sym_of, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [87995] = 24, - ACTIONS(821), 1, + [90622] = 25, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5381), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5385), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5393), 1, + ACTIONS(5592), 1, + anon_sym_CARET, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, + ACTIONS(5602), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4722), 2, + ACTIONS(4577), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5371), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5373), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5391), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5399), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 8, + ACTIONS(4575), 7, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [88087] = 25, - ACTIONS(821), 1, + [90716] = 24, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5381), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5385), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5393), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, + ACTIONS(5602), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4722), 2, + ACTIONS(4577), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5371), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5373), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5391), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5399), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 7, + ACTIONS(4575), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [88181] = 16, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5393), 1, - anon_sym_PERCENT, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5599), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [90808] = 5, + ACTIONS(1771), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(1763), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1767), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -210060,835 +215127,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 15, + ACTIONS(1769), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [88257] = 17, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5599), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 14, - sym__ternary_qmark, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [88335] = 21, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5381), 1, - anon_sym_GT_GT, - ACTIONS(5393), 1, - anon_sym_PERCENT, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5397), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_satisfies, + [90862] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(4874), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4722), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [88421] = 28, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, anon_sym_GT_GT, - ACTIONS(5385), 1, anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, anon_sym_PIPE, - ACTIONS(5393), 1, - anon_sym_PERCENT, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5397), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 5, + ACTIONS(4876), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [88521] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4704), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, anon_sym_AMP_AMP, - ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, - anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, - anon_sym_PERCENT, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5397), 1, - anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5383), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5391), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5403), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88629] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, - anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, - anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5403), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [88737] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4608), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, - anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, - anon_sym_PERCENT, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5397), 1, - anon_sym_LT, - ACTIONS(5405), 1, anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5403), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88845] = 32, - ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(4511), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, - anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, - anon_sym_PERCENT, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5397), 1, - anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [90912] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5795), 1, + anon_sym_STAR, + ACTIONS(5801), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5403), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88953] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(5803), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5805), 2, + anon_sym_get, + anon_sym_set, + STATE(3547), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4559), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, - anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, - anon_sym_PERCENT, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5397), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90978] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_STAR, + ACTIONS(5811), 1, + anon_sym_get, + ACTIONS(5813), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5403), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89061] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(5809), 2, + sym_number, + sym_private_property_identifier, + STATE(4267), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4561), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, - anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, - anon_sym_PERCENT, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5397), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91044] = 5, + ACTIONS(5815), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(1827), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1831), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5403), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89169] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4563), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, anon_sym_GT_GT, - ACTIONS(5385), 1, anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, anon_sym_PIPE, - ACTIONS(5393), 1, - anon_sym_PERCENT, - ACTIONS(5395), 1, - anon_sym_STAR_STAR, - ACTIONS(5397), 1, - anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89277] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(1833), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4618), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, anon_sym_AMP_AMP, - ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, - anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, - anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5371), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5373), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5383), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5391), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5403), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5399), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89385] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91098] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4865), 13, + ACTIONS(1865), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1869), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210902,15 +215387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 28, - sym__automatic_semicolon, + ACTIONS(1871), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -210931,18 +215411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89435] = 5, + [91150] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5602), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5604), 3, + ACTIONS(1875), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3429), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1879), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210956,7 +215435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(1881), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -210980,29 +215459,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89489] = 10, + [91202] = 11, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4923), 1, + ACTIONS(5817), 1, anon_sym_STAR, + ACTIONS(5821), 1, + anon_sym_get, + ACTIONS(5823), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5606), 2, + ACTIONS(5819), 2, sym_number, sym_private_property_identifier, - ACTIONS(5608), 2, - anon_sym_get, - anon_sym_set, - STATE(3839), 3, + STATE(4249), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -211034,29 +215514,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89553] = 10, + [91268] = 11, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5610), 1, + ACTIONS(5825), 1, anon_sym_STAR, + ACTIONS(5829), 1, + anon_sym_get, + ACTIONS(5831), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5612), 2, + ACTIONS(5827), 2, sym_number, sym_private_property_identifier, - ACTIONS(5614), 2, - anon_sym_get, - anon_sym_set, - STATE(3800), 3, + STATE(4230), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -211088,31 +215569,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89617] = 11, - ACTIONS(1621), 1, + [91334] = 11, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5610), 1, + ACTIONS(5833), 1, anon_sym_STAR, - ACTIONS(5616), 1, - anon_sym_async, + ACTIONS(5837), 1, + anon_sym_get, + ACTIONS(5839), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5618), 2, + ACTIONS(5835), 2, sym_number, sym_private_property_identifier, - ACTIONS(5620), 2, - anon_sym_get, - anon_sym_set, - STATE(3045), 3, + STATE(4223), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -211122,11 +215602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -211143,31 +215624,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89683] = 11, - ACTIONS(1621), 1, + [91400] = 11, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5419), 1, + ACTIONS(5841), 1, anon_sym_STAR, - ACTIONS(5622), 1, - anon_sym_async, + ACTIONS(5845), 1, + anon_sym_get, + ACTIONS(5847), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5624), 2, + ACTIONS(5843), 2, sym_number, sym_private_property_identifier, - ACTIONS(5626), 2, - anon_sym_get, - anon_sym_set, - STATE(3046), 3, + STATE(4210), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -211177,11 +215657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -211198,41 +215679,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89749] = 11, - ACTIONS(1621), 1, + [91466] = 11, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5419), 1, + ACTIONS(5240), 1, anon_sym_STAR, - ACTIONS(5622), 1, + ACTIONS(5242), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5626), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5628), 2, + ACTIONS(5244), 2, sym_number, sym_private_property_identifier, - STATE(3047), 3, + ACTIONS(5248), 2, + anon_sym_get, + anon_sym_set, + STATE(3545), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -211253,38 +215734,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89815] = 10, + [91532] = 11, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5313), 1, + ACTIONS(5849), 1, anon_sym_STAR, + ACTIONS(5853), 1, + anon_sym_get, + ACTIONS(5855), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5630), 2, + ACTIONS(5851), 2, sym_number, sym_private_property_identifier, - ACTIONS(5632), 2, - anon_sym_get, - anon_sym_set, - STATE(3838), 3, + STATE(4201), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2352), 21, anon_sym_export, anon_sym_type, @@ -211307,39 +215789,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89879] = 10, + [91598] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1767), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1769), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91648] = 10, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5634), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5636), 2, + ACTIONS(4035), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4621), 2, sym_number, sym_private_property_identifier, - ACTIONS(5638), 2, - anon_sym_get, - anon_sym_set, - STATE(3824), 3, + STATE(4279), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -211349,6 +215876,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -211361,147 +215890,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89943] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, + [91712] = 6, + ACTIONS(4981), 1, anon_sym_LBRACK, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5622), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5626), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5640), 2, - sym_number, - sym_private_property_identifier, - STATE(3049), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4099), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4984), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91768] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1831), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90009] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1833), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5642), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91818] = 5, + ACTIONS(1947), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1939), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1943), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91872] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5644), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5646), 2, - anon_sym_get, - anon_sym_set, - STATE(3855), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(1869), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1871), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90073] = 10, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91922] = 15, + ACTIONS(239), 1, + anon_sym_COMMA, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5648), 1, + ACTIONS(5215), 1, anon_sym_STAR, + ACTIONS(5238), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5650), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5652), 2, + ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3744), 3, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3933), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2352), 21, anon_sym_export, anon_sym_type, @@ -211524,44 +216142,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90137] = 10, + [91996] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1879), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1881), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92046] = 16, + ACTIONS(239), 1, + anon_sym_COMMA, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5654), 1, + ACTIONS(5215), 1, anon_sym_STAR, + ACTIONS(5238), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5656), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5658), 2, + ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3862), 3, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3933), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, + ACTIONS(2352), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -211578,49 +216249,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90201] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5654), 1, + [92122] = 5, + ACTIONS(1927), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1919), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1923), 13, anon_sym_STAR, - ACTIONS(5660), 1, - anon_sym_async, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1925), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92176] = 9, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3930), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5662), 2, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5664), 2, - anon_sym_get, - anon_sym_set, - STATE(3106), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -211633,49 +216351,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90267] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5634), 1, - anon_sym_STAR, - ACTIONS(5666), 1, - anon_sym_async, + [92238] = 9, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3930), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5668), 2, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5670), 2, - anon_sym_get, - anon_sym_set, - STATE(3109), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -211688,157 +216404,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90333] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [92300] = 8, + ACTIONS(3517), 1, + anon_sym_EQ, + ACTIONS(4503), 1, + anon_sym_QMARK, + ACTIONS(4888), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - ACTIONS(5672), 1, - anon_sym_COLON, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90441] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4888), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4891), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4890), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4505), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90491] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1777), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1779), 28, - sym__automatic_semicolon, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -211858,11 +216456,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90541] = 3, + [92360] = 5, + ACTIONS(1907), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1787), 13, + ACTIONS(1899), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1903), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211876,14 +216479,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 28, - sym__automatic_semicolon, + ACTIONS(1905), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -211905,11 +216505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90591] = 3, + [92414] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4892), 13, + ACTIONS(4801), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211923,7 +216523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4894), 28, + ACTIONS(4803), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -211952,95 +216552,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90641] = 7, - ACTIONS(3549), 1, - anon_sym_EQ, - ACTIONS(4293), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4825), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4828), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [90699] = 10, - ACTIONS(2328), 1, + [92464] = 11, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5674), 1, + ACTIONS(5456), 1, anon_sym_STAR, + ACTIONS(5857), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5676), 2, + ACTIONS(5859), 2, sym_number, sym_private_property_identifier, - ACTIONS(5678), 2, + ACTIONS(5861), 2, anon_sym_get, anon_sym_set, - STATE(3753), 3, + STATE(3528), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -212057,109 +216607,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90763] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [92530] = 12, + ACTIONS(170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(3771), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - ACTIONS(5680), 1, - anon_sym_COLON, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90871] = 13, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5682), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + ACTIONS(5223), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5865), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7045), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7114), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(7173), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5863), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92598] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4624), 12, + ACTIONS(1847), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1851), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212170,73 +216684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 17, + ACTIONS(1853), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [90941] = 16, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5685), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4631), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4633), 15, - sym__ternary_qmark, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212250,106 +216707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91017] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4640), 1, - anon_sym_COLON, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91125] = 12, - ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5688), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_satisfies, + [92650] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4676), 12, + ACTIONS(4933), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212360,12 +216726,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4678), 19, + ACTIONS(4935), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212381,110 +216756,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [91193] = 32, - ACTIONS(821), 1, + [92700] = 26, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(5518), 1, anon_sym_GT_GT, - ACTIONS(5347), 1, + ACTIONS(5522), 1, anon_sym_AMP, - ACTIONS(5349), 1, + ACTIONS(5524), 1, anon_sym_CARET, - ACTIONS(5351), 1, + ACTIONS(5526), 1, anon_sym_PIPE, - ACTIONS(5355), 1, + ACTIONS(5530), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5534), 1, anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - ACTIONS(5691), 1, - anon_sym_COLON, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(5510), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5335), 2, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, + ACTIONS(5520), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5353), 2, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + ACTIONS(5538), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, + ACTIONS(5540), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5361), 3, + ACTIONS(5536), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91301] = 13, - ACTIONS(821), 1, + ACTIONS(4575), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [92796] = 12, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5693), 1, + ACTIONS(5867), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4624), 12, + ACTIONS(4744), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212497,7 +216864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 17, + ACTIONS(4746), 19, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -212514,41 +216881,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [91371] = 16, - ACTIONS(821), 1, + [92864] = 9, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5696), 1, + ACTIONS(5602), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4631), 11, + ACTIONS(4824), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -212559,9 +216914,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4633), 15, + ACTIONS(4826), 22, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212575,177 +216934,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91447] = 32, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [92926] = 21, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4640), 1, - anon_sym_RBRACK, - ACTIONS(5377), 1, - anon_sym_AMP_AMP, - ACTIONS(5379), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5381), 1, + ACTIONS(5518), 1, anon_sym_GT_GT, - ACTIONS(5385), 1, - anon_sym_AMP, - ACTIONS(5387), 1, - anon_sym_CARET, - ACTIONS(5389), 1, - anon_sym_PIPE, - ACTIONS(5393), 1, + ACTIONS(5530), 1, anon_sym_PERCENT, - ACTIONS(5395), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5397), 1, + ACTIONS(5534), 1, anon_sym_LT, - ACTIONS(5405), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5407), 1, - sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5371), 2, + ACTIONS(5510), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5373), 2, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5383), 2, + ACTIONS(5520), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5391), 2, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5403), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5399), 3, + ACTIONS(5536), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91555] = 12, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5699), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4676), 12, - anon_sym_STAR, + ACTIONS(4577), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4678), 19, + ACTIONS(4575), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, - [91623] = 11, - ACTIONS(1621), 1, + [93012] = 10, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5449), 1, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5702), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5704), 2, + ACTIONS(5872), 2, sym_number, sym_private_property_identifier, - ACTIONS(5706), 2, + ACTIONS(5874), 2, anon_sym_get, anon_sym_set, - STATE(3027), 3, + STATE(4545), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -212762,163 +217056,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91689] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - ACTIONS(5708), 1, - anon_sym_COLON, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [93076] = 5, + ACTIONS(1743), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(1735), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1739), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91797] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(1741), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5339), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - ACTIONS(5710), 1, - anon_sym_COLON, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91905] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93130] = 5, + ACTIONS(1845), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4900), 13, + ACTIONS(1837), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1841), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212932,14 +217128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4902), 28, - sym__automatic_semicolon, + ACTIONS(1843), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -212961,44 +217154,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91955] = 10, + [93184] = 16, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5712), 1, + ACTIONS(5215), 1, anon_sym_STAR, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5714), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5716), 2, + ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3830), 3, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3933), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 21, + ACTIONS(2352), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -213015,45 +217214,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92019] = 11, - ACTIONS(1621), 1, + [93260] = 8, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4335), 1, + anon_sym_LBRACK, + ACTIONS(5041), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4338), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4341), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4329), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4333), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93320] = 15, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(5215), 1, anon_sym_STAR, - ACTIONS(5718), 1, - anon_sym_async, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5720), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5722), 2, + ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - STATE(3078), 3, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3933), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -213070,58 +217325,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92085] = 3, + [93394] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4742), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, + anon_sym_AMP_AMP, + ACTIONS(5584), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5586), 1, + anon_sym_GT_GT, + ACTIONS(5590), 1, + anon_sym_AMP, + ACTIONS(5592), 1, + anon_sym_CARET, + ACTIONS(5594), 1, + anon_sym_PIPE, + ACTIONS(5598), 1, + anon_sym_PERCENT, + ACTIONS(5600), 1, + anon_sym_STAR_STAR, + ACTIONS(5602), 1, + anon_sym_LT, + ACTIONS(5610), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5612), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4904), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5578), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5588), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4906), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5604), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93502] = 32, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4742), 1, + anon_sym_of, + ACTIONS(5514), 1, anon_sym_AMP_AMP, + ACTIONS(5516), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5518), 1, + anon_sym_GT_GT, + ACTIONS(5522), 1, + anon_sym_AMP, + ACTIONS(5524), 1, anon_sym_CARET, + ACTIONS(5526), 1, + anon_sym_PIPE, + ACTIONS(5530), 1, anon_sym_PERCENT, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5534), 1, + anon_sym_LT, + ACTIONS(5542), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5544), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5512), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5520), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5528), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5540), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5536), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92135] = 3, + [93610] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5876), 1, + anon_sym_STAR, + ACTIONS(5880), 1, + anon_sym_get, + ACTIONS(5882), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5878), 2, + sym_number, + sym_private_property_identifier, + STATE(4338), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93676] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4908), 13, + ACTIONS(4355), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213135,15 +217554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4910), 28, - sym__automatic_semicolon, + ACTIONS(4285), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -213164,15 +217580,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92185] = 4, - ACTIONS(5491), 1, - sym_regex_flags, + [93728] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5884), 1, + anon_sym_STAR, + ACTIONS(5888), 1, + anon_sym_get, + ACTIONS(5890), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5886), 2, + sym_number, + sym_private_property_identifier, + STATE(4400), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93794] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5239), 16, + ACTIONS(4287), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4283), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -213185,15 +217657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(5241), 24, - sym__automatic_semicolon, + ACTIONS(4285), 25, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -213209,117 +217678,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [92237] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5339), 1, - anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, - anon_sym_GT_GT, - ACTIONS(5347), 1, - anon_sym_AMP, - ACTIONS(5349), 1, - anon_sym_CARET, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5355), 1, - anon_sym_PERCENT, - ACTIONS(5357), 1, - anon_sym_STAR_STAR, - ACTIONS(5359), 1, - anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - ACTIONS(5724), 1, - anon_sym_COLON, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5333), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5335), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5345), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5361), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [92345] = 10, + [93846] = 11, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5136), 1, + ACTIONS(5892), 1, anon_sym_STAR, + ACTIONS(5896), 1, + anon_sym_get, + ACTIONS(5898), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5726), 2, + ACTIONS(5894), 2, sym_number, sym_private_property_identifier, - ACTIONS(5728), 2, - anon_sym_get, - anon_sym_set, - STATE(3745), 3, + STATE(4410), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2352), 21, anon_sym_export, anon_sym_type, @@ -213342,31 +217738,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92409] = 11, - ACTIONS(1621), 1, + [93912] = 17, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5598), 1, + anon_sym_PERCENT, + ACTIONS(5600), 1, + anon_sym_STAR_STAR, + ACTIONS(5733), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5578), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5596), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [93990] = 11, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4765), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5136), 1, + ACTIONS(5442), 1, anon_sym_STAR, - ACTIONS(5138), 1, + ACTIONS(5900), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5140), 2, + ACTIONS(5902), 2, sym_number, sym_private_property_identifier, - ACTIONS(5144), 2, + ACTIONS(5904), 2, anon_sym_get, anon_sym_set, - STATE(3068), 3, + STATE(3529), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -213376,7 +217833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3667), 20, + ACTIONS(3671), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213397,100 +217854,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92475] = 32, - ACTIONS(821), 1, + [94056] = 27, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5339), 1, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(5582), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5347), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5349), 1, + ACTIONS(5592), 1, anon_sym_CARET, - ACTIONS(5351), 1, + ACTIONS(5594), 1, anon_sym_PIPE, - ACTIONS(5355), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5367), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, - sym__ternary_qmark, - ACTIONS(5730), 1, - anon_sym_COLON, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5335), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5353), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5361), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92583] = 9, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4575), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [94154] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5906), 1, + anon_sym_STAR, + ACTIONS(5910), 1, + anon_sym_get, + ACTIONS(5912), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5908), 2, + sym_number, + sym_private_property_identifier, + STATE(4444), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(5524), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94220] = 5, + ACTIONS(1917), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4800), 12, + ACTIONS(1909), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1913), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213501,12 +218000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 22, + ACTIONS(1915), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -213525,429 +218027,401 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [92645] = 32, - ACTIONS(821), 1, + [94274] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4712), 1, - anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(4703), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5584), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5594), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5610), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5612), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92753] = 32, - ACTIONS(821), 1, + [94382] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4804), 1, - anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(4901), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5584), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5594), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5610), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5612), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92861] = 32, - ACTIONS(821), 1, + [94490] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4816), 1, - anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(4642), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5584), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5594), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5610), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5612), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92969] = 32, - ACTIONS(821), 1, + [94598] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4574), 1, - anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(4511), 1, + anon_sym_RBRACK, + ACTIONS(5582), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5584), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5594), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5610), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5612), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5606), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5608), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93077] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4616), 1, - anon_sym_of, - ACTIONS(5504), 1, - anon_sym_AMP_AMP, - ACTIONS(5506), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, - anon_sym_GT_GT, - ACTIONS(5512), 1, - anon_sym_AMP, - ACTIONS(5514), 1, - anon_sym_CARET, - ACTIONS(5516), 1, - anon_sym_PIPE, - ACTIONS(5520), 1, - anon_sym_PERCENT, - ACTIONS(5522), 1, - anon_sym_STAR_STAR, - ACTIONS(5524), 1, - anon_sym_LT, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [94706] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(4774), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5502), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5518), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(4742), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5526), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [93185] = 19, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_satisfies, + [94756] = 19, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5520), 1, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5602), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5510), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 7, + ACTIONS(4577), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -213955,10 +218429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 13, + ACTIONS(4575), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -213969,251 +218443,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [93267] = 14, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [94838] = 15, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5522), 1, - anon_sym_STAR_STAR, - ACTIONS(5732), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + ACTIONS(5215), 1, + anon_sym_STAR, + ACTIONS(5227), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [93339] = 26, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5508), 1, - anon_sym_GT_GT, - ACTIONS(5512), 1, - anon_sym_AMP, - ACTIONS(5514), 1, - anon_sym_CARET, - ACTIONS(5516), 1, - anon_sym_PIPE, - ACTIONS(5520), 1, - anon_sym_PERCENT, - ACTIONS(5522), 1, - anon_sym_STAR_STAR, - ACTIONS(5524), 1, + anon_sym_COLON, anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94912] = 16, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + ACTIONS(5227), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5497), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5502), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5510), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5518), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5528), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5530), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5526), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [93435] = 27, - ACTIONS(821), 1, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94988] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(5504), 1, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5389), 1, anon_sym_AMP_AMP, - ACTIONS(5508), 1, + ACTIONS(5391), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5393), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5397), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5399), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5401), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5405), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5407), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5409), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(5417), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5419), 1, + sym__ternary_qmark, + ACTIONS(5914), 1, + anon_sym_COLON, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5385), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5387), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5395), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5415), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5411), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [93533] = 17, - ACTIONS(821), 1, + [95096] = 9, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1974), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95158] = 9, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95220] = 14, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5520), 1, - anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5732), 1, + ACTIONS(5750), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5518), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 8, + ACTIONS(4577), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 15, + ACTIONS(4575), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -214222,6 +218794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -214229,306 +218802,642 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [93611] = 23, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + [95292] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4727), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4729), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_GT_GT, - ACTIONS(5520), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95342] = 9, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4016), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95404] = 5, + ACTIONS(1761), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(1753), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1757), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5502), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5518), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5526), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 8, + ACTIONS(1759), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [93701] = 24, - ACTIONS(821), 1, + [95458] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5916), 1, + anon_sym_STAR, + ACTIONS(5920), 1, + anon_sym_get, + ACTIONS(5922), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5918), 2, + sym_number, + sym_private_property_identifier, + STATE(4553), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95524] = 9, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_GT_GT, - ACTIONS(5512), 1, - anon_sym_AMP, - ACTIONS(5520), 1, - anon_sym_PERCENT, - ACTIONS(5522), 1, - anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5534), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5497), 2, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4824), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5502), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5518), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5526), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 8, + ACTIONS(4826), 22, sym__ternary_qmark, anon_sym_as, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [93793] = 25, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + [95586] = 9, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1974), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95648] = 9, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4016), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1976), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_GT_GT, - ACTIONS(5512), 1, - anon_sym_AMP, - ACTIONS(5514), 1, - anon_sym_CARET, - ACTIONS(5520), 1, - anon_sym_PERCENT, - ACTIONS(5522), 1, - anon_sym_STAR_STAR, - ACTIONS(5524), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1974), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95710] = 9, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95772] = 7, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4335), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4341), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4338), 3, + anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5497), 2, + ACTIONS(4329), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5502), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5510), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5518), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5526), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 7, + ACTIONS(4333), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [93887] = 16, - ACTIONS(821), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_satisfies, + [95830] = 7, + ACTIONS(1715), 1, + anon_sym_EQ, + ACTIONS(4323), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2366), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4326), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1713), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1717), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(5520), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5522), 1, anon_sym_STAR_STAR, - ACTIONS(5732), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95888] = 8, + ACTIONS(1715), 1, + anon_sym_EQ, + ACTIONS(4323), 1, + anon_sym_LBRACK, + ACTIONS(5023), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(4326), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2366), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1713), 11, anon_sym_STAR, - anon_sym_SLASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 15, + ACTIONS(1717), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [93963] = 17, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5522), 1, - anon_sym_STAR_STAR, - ACTIONS(5732), 1, + [95948] = 9, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4019), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96010] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 11, + ACTIONS(1745), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1749), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -214537,795 +219446,927 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 14, + ACTIONS(1751), 23, sym__ternary_qmark, - anon_sym_of, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [94041] = 21, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_satisfies, + [96062] = 26, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(5586), 1, anon_sym_GT_GT, - ACTIONS(5520), 1, + ACTIONS(5590), 1, + anon_sym_AMP, + ACTIONS(5592), 1, + anon_sym_CARET, + ACTIONS(5594), 1, + anon_sym_PIPE, + ACTIONS(5598), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5600), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5602), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5580), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5588), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5596), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1799), 2, + ACTIONS(5606), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5608), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5604), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4722), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 10, + ACTIONS(4575), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [94127] = 28, - ACTIONS(821), 1, + [96158] = 19, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5504), 1, - anon_sym_AMP_AMP, - ACTIONS(5506), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5518), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, - anon_sym_AMP, - ACTIONS(5514), 1, - anon_sym_CARET, - ACTIONS(5516), 1, - anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5530), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5534), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5510), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5520), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5530), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 5, + ACTIONS(4577), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 13, sym__ternary_qmark, anon_sym_as, anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_satisfies, - [94227] = 32, - ACTIONS(821), 1, + [96240] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4704), 1, + ACTIONS(4511), 1, anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(5514), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5516), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5518), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5522), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5524), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5526), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5530), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5534), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5542), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5544), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5510), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5520), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5538), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5540), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5536), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94335] = 32, - ACTIONS(821), 1, + [96348] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4869), 1, + ACTIONS(4642), 1, anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(5514), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5516), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5518), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5522), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5524), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5526), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5530), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5534), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5542), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5544), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5510), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5520), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5538), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5540), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5536), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94443] = 32, - ACTIONS(821), 1, + [96456] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4608), 1, + ACTIONS(4901), 1, anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(5514), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5516), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5518), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5522), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5524), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5526), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5530), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5534), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5542), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5544), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5510), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5520), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5538), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5540), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5536), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94551] = 32, - ACTIONS(821), 1, + [96564] = 32, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4511), 1, + ACTIONS(4703), 1, anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(5514), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5516), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5518), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5522), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5524), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5526), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5530), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5532), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5534), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5542), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5544), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5510), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5512), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5520), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5528), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5538), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5540), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5536), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96672] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4719), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4721), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [94659] = 32, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_satisfies, + [96722] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5438), 2, + sym_number, + sym_private_property_identifier, + STATE(4182), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96781] = 31, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4559), 1, - anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(5928), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5930), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5932), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5936), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5938), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5940), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5944), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5946), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5948), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5956), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5958), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5954), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5950), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94767] = 32, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [96886] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5623), 2, + sym_number, + sym_private_property_identifier, + STATE(4300), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96945] = 31, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4561), 1, - anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(5928), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5930), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5932), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5936), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5938), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5940), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5944), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5946), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5948), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5956), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5958), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5954), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5950), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94875] = 32, - ACTIONS(821), 1, + [97050] = 31, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4563), 1, - anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(5928), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5930), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5932), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5936), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5938), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5940), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5944), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5946), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5948), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5956), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5958), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5954), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5950), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94983] = 32, - ACTIONS(821), 1, + [97155] = 31, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4618), 1, - anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(5928), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5930), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5932), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5936), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5938), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5940), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5944), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5946), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5948), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5956), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5958), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5954), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5526), 3, + ACTIONS(5950), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95091] = 13, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5735), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [97260] = 6, + ACTIONS(4786), 1, + anon_sym_EQ, + ACTIONS(5055), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4624), 12, + ACTIONS(4790), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4784), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215336,73 +220377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 17, + ACTIONS(4788), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [95161] = 16, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5738), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4631), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4633), 15, - sym__ternary_qmark, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215416,499 +220400,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95237] = 32, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_satisfies, + [97315] = 31, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(4640), 1, - anon_sym_of, - ACTIONS(5504), 1, + ACTIONS(5928), 1, anon_sym_AMP_AMP, - ACTIONS(5506), 1, + ACTIONS(5930), 1, anon_sym_PIPE_PIPE, - ACTIONS(5508), 1, + ACTIONS(5932), 1, anon_sym_GT_GT, - ACTIONS(5512), 1, + ACTIONS(5936), 1, anon_sym_AMP, - ACTIONS(5514), 1, + ACTIONS(5938), 1, anon_sym_CARET, - ACTIONS(5516), 1, + ACTIONS(5940), 1, anon_sym_PIPE, - ACTIONS(5520), 1, + ACTIONS(5944), 1, anon_sym_PERCENT, - ACTIONS(5522), 1, + ACTIONS(5946), 1, anon_sym_STAR_STAR, - ACTIONS(5524), 1, + ACTIONS(5948), 1, anon_sym_LT, - ACTIONS(5532), 1, + ACTIONS(5956), 1, anon_sym_QMARK_QMARK, - ACTIONS(5534), 1, + ACTIONS(5958), 1, sym__ternary_qmark, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5497), 2, + ACTIONS(5924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5502), 2, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5510), 2, + ACTIONS(5934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5518), 2, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5528), 2, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5530), 2, + ACTIONS(5954), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5526), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95345] = 12, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5741), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4676), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4678), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [95413] = 4, - ACTIONS(3545), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5950), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95465] = 32, - ACTIONS(821), 1, + [97420] = 31, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(5339), 1, + ACTIONS(5928), 1, anon_sym_AMP_AMP, - ACTIONS(5341), 1, + ACTIONS(5930), 1, anon_sym_PIPE_PIPE, - ACTIONS(5343), 1, + ACTIONS(5932), 1, anon_sym_GT_GT, - ACTIONS(5347), 1, + ACTIONS(5936), 1, anon_sym_AMP, - ACTIONS(5349), 1, + ACTIONS(5938), 1, anon_sym_CARET, - ACTIONS(5351), 1, + ACTIONS(5940), 1, anon_sym_PIPE, - ACTIONS(5355), 1, + ACTIONS(5944), 1, anon_sym_PERCENT, - ACTIONS(5357), 1, + ACTIONS(5946), 1, anon_sym_STAR_STAR, - ACTIONS(5359), 1, + ACTIONS(5948), 1, anon_sym_LT, - ACTIONS(5367), 1, + ACTIONS(5956), 1, anon_sym_QMARK_QMARK, - ACTIONS(5369), 1, + ACTIONS(5958), 1, sym__ternary_qmark, - ACTIONS(5744), 1, - anon_sym_COLON, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5333), 2, + ACTIONS(5924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5335), 2, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5345), 2, + ACTIONS(5934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5353), 2, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5363), 2, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 2, + ACTIONS(5954), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5361), 3, + ACTIONS(5950), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95573] = 7, - ACTIONS(3588), 1, - anon_sym_EQ, - ACTIONS(4293), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4825), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4828), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 24, - sym__ternary_qmark, - anon_sym_as, + [97525] = 31, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5928), 1, anon_sym_AMP_AMP, + ACTIONS(5930), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5938), 1, anon_sym_CARET, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, anon_sym_PERCENT, + ACTIONS(5946), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95631] = 13, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5746), 1, + ACTIONS(5948), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(5956), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5958), 1, + sym__ternary_qmark, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4624), 12, + ACTIONS(5924), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5954), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [95700] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [95769] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [95838] = 8, + [97630] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5444), 2, sym_number, sym_private_property_identifier, - STATE(3782), 3, + STATE(4181), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -215942,74 +220677,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95897] = 7, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(4293), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4825), 2, - anon_sym_RBRACE, + [97689] = 31, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4828), 2, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5928), 1, + anon_sym_AMP_AMP, + ACTIONS(5930), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, anon_sym_AMP, + ACTIONS(5938), 1, + anon_sym_CARET, + ACTIONS(5940), 1, anon_sym_PIPE, - ACTIONS(3429), 11, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, + anon_sym_LT, + ACTIONS(5956), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5958), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5954), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95954] = 8, + [97794] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5465), 2, + ACTIONS(5960), 2, sym_number, sym_private_property_identifier, - STATE(3757), 3, + STATE(4550), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -216043,267 +220802,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96013] = 7, - ACTIONS(3526), 1, + [97853] = 28, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(3528), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3489), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3479), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3429), 11, - anon_sym_STAR, + ACTIONS(4577), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(5928), 1, anon_sym_AMP_AMP, + ACTIONS(5930), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5938), 1, anon_sym_CARET, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, anon_sym_PERCENT, + ACTIONS(5946), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96070] = 5, + ACTIONS(5948), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4269), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3429), 11, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(5954), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 4, sym__ternary_qmark, anon_sym_as, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [97952] = 21, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, anon_sym_DOT, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5944), 1, anon_sym_PERCENT, + ACTIONS(5946), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96123] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5612), 2, - sym_number, - sym_private_property_identifier, - STATE(3800), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5948), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96182] = 4, - ACTIONS(3588), 1, - anon_sym_EQ, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4577), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 26, + ACTIONS(4575), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [96233] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, + [98037] = 17, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5962), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96302] = 4, - ACTIONS(4329), 1, - anon_sym_extends, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 13, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -216312,161 +220981,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 26, + ACTIONS(4575), 13, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96353] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5656), 2, - sym_number, - sym_private_property_identifier, - STATE(3862), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96412] = 17, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(5749), 1, - anon_sym_RBRACE, - STATE(2766), 1, - sym_override_modifier, - STATE(4944), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96489] = 6, - ACTIONS(4825), 1, + [98114] = 7, + ACTIONS(3606), 1, + anon_sym_EQ, + ACTIONS(4888), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 2, + ACTIONS(4505), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4828), 3, + ACTIONS(4891), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216477,12 +221023,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 24, - sym__automatic_semicolon, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -216502,422 +221047,592 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96544] = 6, - ACTIONS(4683), 1, + [98171] = 16, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5962), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4686), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 10, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 24, - sym__automatic_semicolon, + ACTIONS(4575), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [96599] = 6, - ACTIONS(4840), 1, + [98246] = 25, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5938), 1, + anon_sym_CARET, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4843), 3, - anon_sym_GT, - anon_sym_AMP, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4577), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4836), 10, + ACTIONS(5924), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5926), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4838), 24, - sym__automatic_semicolon, + ACTIONS(5954), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [96654] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, + [98339] = 24, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5329), 2, - sym_number, - sym_private_property_identifier, - STATE(3786), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4577), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5924), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5926), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5954), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [98430] = 23, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96713] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5451), 2, - sym_number, - sym_private_property_identifier, - STATE(3854), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5926), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5954), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5950), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [98519] = 17, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96772] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5962), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5421), 2, - sym_number, - sym_private_property_identifier, - STATE(3804), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5942), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 8, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [98596] = 27, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96831] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(5928), 1, + anon_sym_AMP_AMP, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5938), 1, + anon_sym_CARET, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5552), 2, - sym_number, - sym_private_property_identifier, - STATE(3818), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5926), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5954), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [98693] = 26, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96890] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(5245), 1, - anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5938), 1, + anon_sym_CARET, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5926), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5954), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4575), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [98788] = 14, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96959] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5962), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5676), 2, - sym_number, - sym_private_property_identifier, - STATE(3753), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 12, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [98859] = 19, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97018] = 4, - ACTIONS(4277), 1, - anon_sym_extends, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4575), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [98940] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 13, + ACTIONS(4287), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216931,13 +221646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 26, + ACTIONS(4285), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -216958,24 +221672,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97069] = 8, + [98991] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5714), 2, + ACTIONS(5872), 2, sym_number, sym_private_property_identifier, - STATE(3830), 3, + STATE(4545), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -217009,18 +221723,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97128] = 6, - ACTIONS(4691), 1, + [99050] = 31, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5928), 1, + anon_sym_AMP_AMP, + ACTIONS(5930), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5938), 1, + anon_sym_CARET, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, + anon_sym_LT, + ACTIONS(5956), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5958), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5926), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5954), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99155] = 31, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5928), 1, + anon_sym_AMP_AMP, + ACTIONS(5930), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5938), 1, + anon_sym_CARET, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, + anon_sym_LT, + ACTIONS(5956), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5958), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5926), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5954), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99260] = 4, + ACTIONS(3587), 1, anon_sym_EQ, - ACTIONS(5026), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4689), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217034,9 +221891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4693), 23, + ACTIONS(3437), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -217058,72 +221917,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97183] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, + anon_sym_implements, + [99311] = 7, + ACTIONS(3618), 1, + anon_sym_EQ, + ACTIONS(4888), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5003), 2, - sym_number, - sym_private_property_identifier, - STATE(3352), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4505), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4891), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99368] = 31, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5928), 1, + anon_sym_AMP_AMP, + ACTIONS(5930), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5938), 1, + anon_sym_CARET, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3667), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97242] = 7, - ACTIONS(1703), 1, + ACTIONS(5956), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5958), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5926), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5954), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99473] = 7, + ACTIONS(4331), 1, anon_sym_EQ, - ACTIONS(2362), 1, + ACTIONS(4341), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 2, + ACTIONS(4335), 2, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4252), 2, + ACTIONS(4338), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1701), 11, + ACTIONS(4329), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217135,7 +222068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 23, + ACTIONS(4333), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -217159,72 +222092,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97299] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5606), 2, - sym_number, - sym_private_property_identifier, - STATE(3839), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97358] = 7, - ACTIONS(4257), 1, + [99530] = 7, + ACTIONS(1715), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(2366), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4261), 2, + ACTIONS(4323), 2, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4264), 2, + ACTIONS(4326), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4255), 11, + ACTIONS(1713), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217236,7 +222118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 23, + ACTIONS(1717), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -217260,68 +222142,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97415] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, + [99587] = 31, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5928), 1, + anon_sym_AMP_AMP, + ACTIONS(5930), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5938), 1, + anon_sym_CARET, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, + anon_sym_LT, + ACTIONS(5956), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5958), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5751), 2, - sym_number, - sym_private_property_identifier, - STATE(3819), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5926), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5954), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99692] = 31, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, anon_sym_BANG, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5928), 1, + anon_sym_AMP_AMP, + ACTIONS(5930), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5938), 1, + anon_sym_CARET, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, + anon_sym_LT, + ACTIONS(5956), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5958), 1, + sym__ternary_qmark, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5926), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5954), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99797] = 9, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5948), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97474] = 5, - ACTIONS(3477), 1, - anon_sym_EQ, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3651), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3429), 13, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4824), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217332,13 +222318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(4826), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -217357,26 +222341,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [97527] = 8, + [99858] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5753), 2, + ACTIONS(5965), 2, sym_number, sym_private_property_identifier, - STATE(3791), 3, + STATE(4551), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -217410,30 +222393,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97586] = 4, + [99917] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5227), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1976), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(3879), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1974), 23, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217457,33 +222449,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97637] = 8, + [99986] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5473), 2, + ACTIONS(5797), 2, sym_number, sym_private_property_identifier, - STATE(3829), 3, + STATE(4435), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2352), 23, anon_sym_export, anon_sym_type, @@ -217508,35 +222500,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97696] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, + [100045] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, anon_sym_SQUOTE, - ACTIONS(4215), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 11, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5197), 1, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1974), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100096] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5967), 2, sym_number, sym_private_property_identifier, - STATE(3821), 3, + STATE(4371), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -217564,81 +222598,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97765] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [100155] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5969), 2, + sym_number, + sym_private_property_identifier, + STATE(4370), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100214] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97870] = 16, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100283] = 16, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, @@ -217649,13 +222716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2360), 1, anon_sym_override, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, + ACTIONS(5215), 1, anon_sym_STAR, - STATE(2766), 1, + STATE(3178), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -217666,14 +222733,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2358), 2, anon_sym_get, anon_sym_set, - ACTIONS(5791), 2, + ACTIONS(5971), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3821), 3, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -217697,212 +222764,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97945] = 16, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [100358] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5794), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4631), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4633), 14, - sym__ternary_qmark, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [98020] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(5654), 2, + sym_number, + sym_private_property_identifier, + STATE(4532), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98125] = 12, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5797), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4676), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4678), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [98192] = 8, - ACTIONS(1621), 1, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100417] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5800), 2, + ACTIONS(5974), 2, sym_number, sym_private_property_identifier, - STATE(3323), 3, + STATE(4466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -217912,7 +222842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217936,61 +222866,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98251] = 19, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(2028), 1, - anon_sym_DOT_DOT_DOT, + [100476] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5806), 1, - anon_sym_async, - ACTIONS(5808), 1, - anon_sym_static, - ACTIONS(5810), 1, - anon_sym_readonly, - ACTIONS(5816), 1, - anon_sym_override, - STATE(2740), 1, - sym_accessibility_modifier, - STATE(2780), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5437), 2, + ACTIONS(5976), 2, sym_number, sym_private_property_identifier, - ACTIONS(5804), 2, + STATE(4462), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5812), 2, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(5814), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3680), 3, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100535] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5978), 2, + sym_number, + sym_private_property_identifier, + STATE(4413), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5180), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5802), 14, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -217998,24 +222968,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98332] = 8, + [100594] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5469), 2, + ACTIONS(5980), 2, sym_number, sym_private_property_identifier, - STATE(3775), 3, + STATE(4220), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -218049,84 +223019,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98391] = 7, - ACTIONS(4085), 1, - anon_sym_QMARK, - ACTIONS(4087), 1, - anon_sym_extends, + [100653] = 31, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_LBRACK, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(5928), 1, + anon_sym_AMP_AMP, + ACTIONS(5930), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5932), 1, + anon_sym_GT_GT, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5938), 1, + anon_sym_CARET, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, + anon_sym_PERCENT, + ACTIONS(5946), 1, + anon_sym_STAR_STAR, + ACTIONS(5948), 1, + anon_sym_LT, + ACTIONS(5956), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5958), 1, + sym__ternary_qmark, + STATE(2616), 1, + sym_type_arguments, + STATE(5476), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4686), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4683), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3429), 11, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5954), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2183), 2, + sym_template_string, + sym_arguments, + ACTIONS(5950), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [98448] = 8, - ACTIONS(2328), 1, + [100758] = 8, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5582), 2, + ACTIONS(5982), 2, sym_number, sym_private_property_identifier, - STATE(3723), 3, + STATE(3767), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2352), 23, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218150,35 +223144,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98507] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, + [100817] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5984), 2, sym_number, sym_private_property_identifier, - STATE(3821), 3, + STATE(4402), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -218206,71 +223195,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98576] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4329), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4273), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4275), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [98627] = 8, + [100876] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5630), 2, + ACTIONS(5568), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(4487), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -218304,33 +223246,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98686] = 8, + [100935] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5636), 2, + ACTIONS(5986), 2, sym_number, sym_private_property_identifier, - STATE(3824), 3, + STATE(4401), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2352), 23, anon_sym_export, anon_sym_type, @@ -218355,33 +223297,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98745] = 8, + [100994] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5644), 2, + ACTIONS(5988), 2, sym_number, sym_private_property_identifier, - STATE(3855), 3, + STATE(4412), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2352), 23, anon_sym_export, anon_sym_type, @@ -218406,24 +223348,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98804] = 8, + [101053] = 4, + ACTIONS(3551), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101104] = 13, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(5990), 1, + anon_sym_LT, + STATE(1507), 1, + sym_type_arguments, + STATE(5921), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4217), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1691), 2, + sym_template_string, + sym_arguments, + ACTIONS(4652), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4654), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [101173] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4355), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4283), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4285), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101224] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5650), 2, + ACTIONS(5492), 2, sym_number, sym_private_property_identifier, - STATE(3744), 3, + STATE(4214), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -218457,35 +223549,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98863] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(695), 1, - anon_sym_RBRACE, + [101283] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5993), 2, sym_number, sym_private_property_identifier, - STATE(3821), 3, + STATE(4341), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -218513,33 +223600,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98932] = 8, + [101342] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5726), 2, + ACTIONS(5995), 2, sym_number, sym_private_property_identifier, - STATE(3745), 3, + STATE(4339), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 9, + ACTIONS(3933), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2352), 23, anon_sym_export, anon_sym_type, @@ -218564,35 +223651,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98991] = 5, - ACTIONS(3495), 1, - anon_sym_EQ, + [101401] = 6, + ACTIONS(4909), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3581), 3, + ACTIONS(4469), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3429), 13, + anon_sym_extends, + ACTIONS(4912), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4751), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(4753), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218612,25 +223700,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99044] = 7, - ACTIONS(3616), 1, - anon_sym_EQ, - ACTIONS(4825), 1, - anon_sym_LBRACK, + [101456] = 7, + ACTIONS(4097), 1, + anon_sym_QMARK, + ACTIONS(4099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4828), 3, - anon_sym_GT, + ACTIONS(4984), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3429), 10, + ACTIONS(4981), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -218638,11 +223727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 23, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218662,34 +223750,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99101] = 4, + [101513] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101582] = 6, + ACTIONS(4981), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 2, + ACTIONS(4099), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4273), 13, + ACTIONS(4984), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4275), 25, + ACTIONS(3437), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218709,24 +223855,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99152] = 9, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(5779), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [101637] = 5, + ACTIONS(3465), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4800), 12, + ACTIONS(3659), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218737,11 +223876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4802), 21, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -218760,468 +223901,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [99213] = 31, - ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + [101690] = 4, + ACTIONS(5297), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, + ACTIONS(5293), 17, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, + anon_sym_as, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5783), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - [99318] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(5295), 22, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [99423] = 31, - ACTIONS(821), 1, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [101741] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99528] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(5066), 2, + sym_number, + sym_private_property_identifier, + STATE(3809), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101800] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5646), 2, + sym_number, + sym_private_property_identifier, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101859] = 6, + ACTIONS(4888), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, + ACTIONS(4505), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4891), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5783), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99633] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(3437), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, anon_sym_AMP_AMP, - ACTIONS(5761), 1, anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, anon_sym_PERCENT, - ACTIONS(5777), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [99738] = 19, - ACTIONS(821), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_satisfies, + [101914] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5341), 1, + anon_sym_RBRACE, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101983] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 7, + ACTIONS(5997), 2, + sym_number, + sym_private_property_identifier, + STATE(4524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [99819] = 14, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5818), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102042] = 5, + ACTIONS(3517), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 12, + ACTIONS(3580), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219232,209 +224229,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 15, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [99890] = 26, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [99985] = 27, - ACTIONS(821), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_satisfies, + [102095] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [100082] = 17, - ACTIONS(821), 1, + ACTIONS(5503), 2, + sym_number, + sym_private_property_identifier, + STATE(4361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102154] = 12, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5818), 1, + ACTIONS(5999), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 8, + ACTIONS(4744), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 14, + ACTIONS(4746), 18, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -219442,308 +224351,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [100159] = 23, - ACTIONS(821), 1, + [102221] = 31, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5763), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5928), 1, + anon_sym_AMP_AMP, + ACTIONS(5930), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5932), 1, anon_sym_GT_GT, - ACTIONS(5775), 1, + ACTIONS(5936), 1, + anon_sym_AMP, + ACTIONS(5938), 1, + anon_sym_CARET, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, anon_sym_PERCENT, - ACTIONS(5777), 1, + ACTIONS(5946), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5948), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(5956), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5958), 1, + sym__ternary_qmark, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5755), 2, + ACTIONS(5924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5757), 2, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5765), 2, + ACTIONS(5934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5773), 2, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5783), 2, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5785), 2, + ACTIONS(5954), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5781), 3, + ACTIONS(5950), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [100248] = 24, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [102326] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + ACTIONS(5238), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [100339] = 25, - ACTIONS(821), 1, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102395] = 31, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(4175), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_BANG, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(5763), 1, + ACTIONS(4219), 1, + anon_sym_satisfies, + ACTIONS(5928), 1, + anon_sym_AMP_AMP, + ACTIONS(5930), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5932), 1, anon_sym_GT_GT, - ACTIONS(5767), 1, + ACTIONS(5936), 1, anon_sym_AMP, - ACTIONS(5769), 1, + ACTIONS(5938), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, anon_sym_PERCENT, - ACTIONS(5777), 1, + ACTIONS(5946), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5948), 1, anon_sym_LT, - STATE(1493), 1, + ACTIONS(5956), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5958), 1, + sym__ternary_qmark, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4722), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5755), 2, + ACTIONS(5924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5757), 2, + ACTIONS(5926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5765), 2, + ACTIONS(5934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5773), 2, + ACTIONS(5942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5783), 2, + ACTIONS(5952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5785), 2, + ACTIONS(5954), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(5950), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4724), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [100432] = 16, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [102500] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5818), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(4722), 10, + ACTIONS(6002), 2, + sym_number, + sym_private_property_identifier, + STATE(4239), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [100507] = 17, - ACTIONS(821), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102559] = 16, + ACTIONS(829), 1, anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(4053), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(4125), 1, + ACTIONS(4175), 1, anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(4179), 1, anon_sym_BANG, - ACTIONS(4135), 1, + ACTIONS(4185), 1, anon_sym_QMARK_DOT, - ACTIONS(4169), 1, + ACTIONS(4219), 1, anon_sym_satisfies, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5818), 1, + ACTIONS(6004), 1, anon_sym_LT, - STATE(1493), 1, + STATE(1507), 1, sym_type_arguments, - STATE(4786), 1, + STATE(5921), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4217), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1799), 2, + STATE(1691), 2, sym_template_string, sym_arguments, - ACTIONS(4722), 11, + ACTIONS(4611), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -219755,7 +224661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 13, + ACTIONS(4613), 14, sym__ternary_qmark, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -219763,1066 +224669,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [100584] = 21, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [102634] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4722), 5, + ACTIONS(5572), 2, + sym_number, + sym_private_property_identifier, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4724), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [100669] = 28, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4722), 1, - anon_sym_BANG, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102693] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4724), 4, - sym__ternary_qmark, - anon_sym_as, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [100768] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + ACTIONS(6007), 2, + sym_number, + sym_private_property_identifier, + STATE(4323), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102752] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6009), 2, + sym_number, + sym_private_property_identifier, + STATE(4322), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102811] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [100873] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [100978] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101083] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101188] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101293] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101398] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101503] = 31, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4129), 1, - anon_sym_BANG, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(1493), 1, - sym_type_arguments, - STATE(4786), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1799), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101608] = 31, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4125), 1, - anon_sym_as, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4169), 1, - anon_sym_satisfies, - ACTIONS(4513), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_LBRACK, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(5759), 1, - anon_sym_AMP_AMP, - ACTIONS(5761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5763), 1, - anon_sym_GT_GT, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_CARET, - ACTIONS(5771), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_PERCENT, - ACTIONS(5777), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, - anon_sym_LT, - ACTIONS(5787), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5789), 1, - sym__ternary_qmark, - STATE(2602), 1, - sym_type_arguments, - STATE(4903), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5755), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5757), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5765), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5773), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5785), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2173), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101713] = 4, - ACTIONS(5243), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5239), 17, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(5241), 22, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [101764] = 7, - ACTIONS(3612), 1, + ACTIONS(6011), 2, + sym_number, + sym_private_property_identifier, + STATE(4199), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4825), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4293), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4828), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101821] = 4, - ACTIONS(3549), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [101872] = 7, - ACTIONS(3620), 1, - anon_sym_EQ, - ACTIONS(4825), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4293), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4828), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101929] = 23, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(3775), 1, - anon_sym_AT, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5821), 1, - anon_sym_STAR, - ACTIONS(5823), 1, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(5827), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(5829), 1, anon_sym_readonly, - ACTIONS(5833), 1, - anon_sym_declare, - ACTIONS(5835), 1, - anon_sym_abstract, - ACTIONS(5837), 1, - anon_sym_accessor, - STATE(2654), 1, - sym_method_definition, - STATE(2707), 1, - sym_accessibility_modifier, - STATE(2723), 1, - aux_sym_export_statement_repeat1, - STATE(2770), 1, - sym_decorator, - STATE(2771), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5825), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5831), 2, anon_sym_get, anon_sym_set, - ACTIONS(3687), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3051), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -220830,181 +224880,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102018] = 4, - ACTIONS(3608), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [102068] = 6, - ACTIONS(1703), 1, - anon_sym_EQ, - ACTIONS(4793), 1, - anon_sym_RBRACK, - ACTIONS(5028), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1701), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1705), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [102122] = 7, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(4825), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4293), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4828), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [102178] = 11, - ACTIONS(1621), 1, + [102870] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5839), 1, - anon_sym_readonly, - STATE(2794), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5800), 2, + ACTIONS(6013), 2, sym_number, sym_private_property_identifier, - STATE(3323), 3, + STATE(4319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 21, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221013,12 +224916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -221026,34 +224931,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102242] = 9, - ACTIONS(1621), 1, + [102929] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5841), 1, - anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5800), 2, + ACTIONS(6015), 2, sym_number, sym_private_property_identifier, - STATE(3323), 3, + STATE(4318), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221077,49 +224982,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102302] = 13, + [102988] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(6017), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5791), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3821), 3, + STATE(4313), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 20, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -221132,38 +225033,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102370] = 11, - ACTIONS(1621), 1, + [103047] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5845), 1, - anon_sym_readonly, - STATE(2804), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5843), 2, + ACTIONS(6019), 2, sym_number, sym_private_property_identifier, - STATE(3326), 3, + STATE(4312), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 21, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221172,12 +225069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -221185,34 +225084,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102434] = 9, - ACTIONS(1621), 1, + [103106] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5849), 1, - anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5847), 2, + ACTIONS(5458), 2, sym_number, sym_private_property_identifier, - STATE(3328), 3, + STATE(4177), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221236,40 +225135,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102494] = 13, + [103165] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(5749), 1, - anon_sym_RBRACE, - STATE(4944), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(6021), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, + STATE(4309), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 21, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221279,6 +225172,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -221291,134 +225186,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102562] = 6, - ACTIONS(4683), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4686), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4087), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3429), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [102616] = 6, - ACTIONS(4087), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4683), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4686), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3429), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [102670] = 11, - ACTIONS(1621), 1, + [103224] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5851), 1, - anon_sym_readonly, - STATE(2833), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5003), 2, + ACTIONS(6023), 2, sym_number, sym_private_property_identifier, - STATE(3352), 3, + STATE(4308), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 21, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221427,12 +225222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -221440,148 +225237,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102734] = 4, + [103283] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 2, + ACTIONS(6025), 2, + sym_number, + sym_private_property_identifier, + STATE(4200), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4273), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4275), 24, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103342] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [102784] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 2, + ACTIONS(6027), 2, + sym_number, + sym_private_property_identifier, + STATE(4208), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4273), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4275), 24, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [102834] = 15, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103401] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5617), 2, + sym_number, + sym_private_property_identifier, + STATE(4534), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(2356), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_readonly, - ACTIONS(2360), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - ACTIONS(4759), 1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103460] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - STATE(2766), 1, - sym_override_modifier, + ACTIONS(5291), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(5853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3821), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103529] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6029), 2, + sym_number, + sym_private_property_identifier, + STATE(4209), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 18, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -221589,20 +225497,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102906] = 6, - ACTIONS(4825), 1, + [103588] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4828), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4293), 3, + ACTIONS(5658), 2, + sym_number, + sym_private_property_identifier, + STATE(4440), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103647] = 7, + ACTIONS(3465), 1, + anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_extends, - ACTIONS(3429), 11, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4888), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4891), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221614,9 +225574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 22, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -221637,33 +225598,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102960] = 4, + [103704] = 7, + ACTIONS(3610), 1, + anon_sym_EQ, + ACTIONS(4888), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1789), 3, + ACTIONS(4505), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5855), 13, + anon_sym_extends, + ACTIONS(4891), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5858), 23, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -221683,50 +225648,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103010] = 9, - ACTIONS(1621), 1, + [103761] = 17, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5011), 1, - anon_sym_abstract, + ACTIONS(5215), 1, + anon_sym_STAR, + ACTIONS(6031), 1, + anon_sym_RBRACE, + STATE(3178), 1, + sym_override_modifier, + STATE(5763), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5003), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3352), 3, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3933), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(2352), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -221734,20 +225708,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103070] = 6, - ACTIONS(4840), 1, - anon_sym_LBRACK, + [103838] = 7, + ACTIONS(3499), 1, + anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4843), 2, + ACTIONS(3477), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4359), 3, + anon_sym_QMARK, + ACTIONS(3467), 4, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4836), 11, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221759,12 +225737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4838), 22, + ACTIONS(3437), 20, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -221782,33 +225758,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103124] = 4, + [103895] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1759), 3, + ACTIONS(4345), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4343), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5861), 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5864), 23, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -221828,15 +225806,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103174] = 4, + [103948] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(695), 1, + anon_sym_RBRACE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1769), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(5867), 13, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [104017] = 4, + ACTIONS(4287), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221850,10 +225882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 23, + ACTIONS(4285), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -221874,15 +225909,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103224] = 4, + [104068] = 4, + ACTIONS(4355), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4798), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5873), 13, + ACTIONS(4283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221896,10 +225929,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5876), 23, + ACTIONS(4285), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -221920,29 +225956,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103274] = 3, + [104119] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3172), 12, - anon_sym_STAR, + ACTIONS(6033), 2, + sym_number, + sym_private_property_identifier, + STATE(4262), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [104178] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, + ACTIONS(2330), 1, anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6035), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(4255), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3170), 27, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -221962,53 +226058,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [103322] = 14, + [104237] = 8, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(5749), 1, - anon_sym_RBRACE, - STATE(4944), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(6037), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, + STATE(4248), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3821), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [104296] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6039), 2, + sym_number, + sym_private_property_identifier, + STATE(4247), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 20, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -222021,38 +226160,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103392] = 11, - ACTIONS(1621), 1, + [104355] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5881), 1, - anon_sym_readonly, - STATE(2792), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5879), 2, + ACTIONS(6041), 2, sym_number, sym_private_property_identifier, - STATE(3386), 3, + STATE(4228), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 21, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222061,12 +226196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -222074,34 +226211,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103456] = 9, - ACTIONS(1621), 1, + [104414] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5885), 1, - anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5883), 2, + ACTIONS(6043), 2, sym_number, sym_private_property_identifier, - STATE(3389), 3, + STATE(4226), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222125,38 +226262,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103516] = 11, - ACTIONS(1621), 1, + [104473] = 8, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(5889), 1, - anon_sym_readonly, - STATE(2797), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5887), 2, + ACTIONS(6045), 2, sym_number, sym_private_property_identifier, - STATE(3403), 3, + STATE(4222), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 21, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222165,12 +226298,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -222178,26 +226313,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103580] = 9, - ACTIONS(1621), 1, + [104532] = 9, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5893), 1, + ACTIONS(6047), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5891), 2, + ACTIONS(5982), 2, sym_number, sym_private_property_identifier, - STATE(3407), 3, + STATE(3767), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222205,7 +226340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222229,17 +226364,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103640] = 6, - ACTIONS(4257), 1, - anon_sym_EQ, - ACTIONS(4871), 1, - anon_sym_RBRACK, - ACTIONS(5017), 1, - anon_sym_COMMA, + [104592] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 13, + ACTIONS(1843), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6049), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222253,7 +226386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 23, + ACTIONS(6052), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -222277,80 +226410,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103694] = 3, + [104642] = 6, + ACTIONS(4981), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3176), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(4984), 2, anon_sym_AMP, anon_sym_PIPE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3174), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [103742] = 6, - ACTIONS(4691), 1, - anon_sym_EQ, - ACTIONS(4695), 1, - anon_sym_RBRACK, - ACTIONS(5026), 1, + ACTIONS(4099), 3, anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4689), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4693), 23, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -222370,15 +226458,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103796] = 4, + [104696] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6057), 1, + anon_sym_readonly, + STATE(3243), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1915), 3, + ACTIONS(6055), 2, + sym_number, + sym_private_property_identifier, + STATE(3877), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(5895), 13, + anon_sym_QMARK, + ACTIONS(3671), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [104760] = 4, + ACTIONS(3555), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222392,10 +226531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5898), 23, + ACTIONS(3437), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -222416,33 +226557,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103846] = 4, + [104810] = 6, + ACTIONS(4909), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4773), 3, + ACTIONS(4912), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5901), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4751), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5904), 23, + ACTIONS(4753), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -222462,81 +226605,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103896] = 6, - ACTIONS(4215), 1, - anon_sym_EQ, + [104864] = 6, + ACTIONS(4099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 2, - anon_sym_COMMA, + ACTIONS(4981), 2, anon_sym_RBRACE, - ACTIONS(1994), 6, - anon_sym_STAR, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1992), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103950] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4708), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5907), 13, + ACTIONS(4984), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5910), 23, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -222556,33 +226653,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104000] = 4, + [104918] = 6, + ACTIONS(4888), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4777), 3, + ACTIONS(4891), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4505), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5913), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3433), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 23, + ACTIONS(3437), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -222602,31 +226701,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104050] = 6, - ACTIONS(4215), 1, - anon_sym_EQ, + [104972] = 9, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6061), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1976), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6059), 2, sym_number, sym_private_property_identifier, - ACTIONS(3879), 7, + STATE(3880), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1974), 23, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222650,87 +226752,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104104] = 6, - ACTIONS(3581), 1, - anon_sym_RBRACK, - ACTIONS(3593), 1, - anon_sym_COMMA, - ACTIONS(3654), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [104158] = 12, - ACTIONS(2328), 1, + [105032] = 9, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, + ACTIONS(6065), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(6063), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5791), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3821), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 21, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222740,6 +226789,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -222752,41 +226803,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104224] = 3, + [105092] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6069), 1, + anon_sym_readonly, + STATE(3180), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3180), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6067), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(3868), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3178), 27, + ACTIONS(3671), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -222794,36 +226856,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [104272] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, + [105156] = 6, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(5197), 1, - anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1976), 6, + ACTIONS(4035), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1990), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1974), 23, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222847,33 +226904,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104331] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(695), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, + [105210] = 6, + ACTIONS(4225), 1, anon_sym_EQ, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1994), 6, + ACTIONS(4035), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1976), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1992), 23, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222897,13 +226952,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104390] = 4, - ACTIONS(3620), 1, + [105264] = 23, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6071), 1, + anon_sym_export, + ACTIONS(6073), 1, + anon_sym_STAR, + ACTIONS(6075), 1, + anon_sym_class, + ACTIONS(6077), 1, + anon_sym_async, + ACTIONS(6081), 1, + anon_sym_static, + ACTIONS(6083), 1, + anon_sym_readonly, + ACTIONS(6085), 1, + anon_sym_get, + ACTIONS(6087), 1, + anon_sym_set, + ACTIONS(6091), 1, + anon_sym_abstract, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + STATE(3140), 1, + sym_accessibility_modifier, + STATE(3158), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6079), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6089), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4376), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 13, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [105352] = 6, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3580), 1, + anon_sym_RBRACK, + ACTIONS(3662), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222917,11 +227041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 24, + ACTIONS(3437), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -222942,44 +227065,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104439] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(695), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4937), 1, + [105406] = 14, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + ACTIONS(6031), 1, + anon_sym_RBRACE, + STATE(5763), 1, aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1976), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1974), 23, + ACTIONS(2352), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -222992,24 +227121,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104498] = 8, - ACTIONS(1621), 1, + [105476] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4287), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4283), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4285), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [105526] = 11, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, anon_sym_LBRACK, + ACTIONS(6095), 1, + anon_sym_readonly, + STATE(3261), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5919), 2, + ACTIONS(6093), 2, sym_number, sym_private_property_identifier, - STATE(3335), 3, + STATE(3796), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223017,7 +227198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(3671), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223026,14 +227207,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -223041,33 +227220,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104555] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + [105590] = 9, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6099), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1976), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6097), 2, sym_number, sym_private_property_identifier, - ACTIONS(1974), 23, + STATE(3847), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223091,34 +227271,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104614] = 10, + [105650] = 6, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4716), 1, + anon_sym_RBRACK, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4329), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4333), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [105704] = 12, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4759), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(5791), 2, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5971), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3821), 3, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 23, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223128,8 +227361,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -223142,32 +227373,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104675] = 8, - ACTIONS(1621), 1, + [105770] = 13, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(4557), 1, anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + ACTIONS(6031), 1, + anon_sym_RBRACE, + STATE(5763), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5921), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3374), 3, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3933), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223177,8 +227416,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -223191,44 +227428,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104732] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, + [105838] = 6, + ACTIONS(4786), 1, anon_sym_EQ, - ACTIONS(5245), 1, - anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4790), 1, + anon_sym_RBRACK, + ACTIONS(5055), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4784), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1994), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4788), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [105892] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4355), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4283), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4285), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [105942] = 13, + ACTIONS(2328), 1, anon_sym_DQUOTE, + ACTIONS(2330), 1, anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - ACTIONS(1992), 23, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5971), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -223241,33 +227577,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104791] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(5245), 1, - anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + [106010] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, + ACTIONS(1759), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1976), 6, + ACTIONS(6101), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6104), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106060] = 11, + ACTIONS(1631), 1, anon_sym_DQUOTE, + ACTIONS(1633), 1, anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6107), 1, + anon_sym_readonly, + STATE(3193), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5982), 2, sym_number, sym_private_property_identifier, - ACTIONS(1974), 23, + STATE(3767), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3671), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223276,14 +227663,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -223291,33 +227676,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104850] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, + [106124] = 7, + ACTIONS(3538), 1, anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4888), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, + ACTIONS(4505), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4891), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3433), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106180] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4953), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1994), 6, + ACTIONS(6109), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6112), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106230] = 11, + ACTIONS(1631), 1, anon_sym_DQUOTE, + ACTIONS(1633), 1, anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6115), 1, + anon_sym_readonly, + STATE(3213), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5066), 2, sym_number, sym_private_property_identifier, - ACTIONS(1992), 23, + STATE(3809), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3671), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223326,14 +227811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -223341,37 +227824,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104909] = 11, - ACTIONS(2328), 1, + [106294] = 6, + ACTIONS(1715), 1, + anon_sym_EQ, + ACTIONS(4810), 1, + anon_sym_RBRACK, + ACTIONS(5023), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1713), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1717), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106348] = 9, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, + ACTIONS(5074), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(5066), 2, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3821), 3, + STATE(3809), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 21, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223381,6 +227909,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -223393,48 +227923,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104972] = 8, - ACTIONS(1621), 1, + [106408] = 23, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, anon_sym_LBRACK, + ACTIONS(6117), 1, + anon_sym_STAR, + ACTIONS(6119), 1, + anon_sym_async, + ACTIONS(6123), 1, + anon_sym_static, + ACTIONS(6125), 1, + anon_sym_readonly, + ACTIONS(6127), 1, + anon_sym_get, + ACTIONS(6129), 1, + anon_sym_set, + ACTIONS(6131), 1, + anon_sym_declare, + ACTIONS(6133), 1, + anon_sym_abstract, + ACTIONS(6135), 1, + anon_sym_accessor, + STATE(2972), 1, + sym_accessibility_modifier, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + STATE(3174), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 2, + ACTIONS(6121), 2, sym_number, sym_private_property_identifier, - STATE(3373), 3, + ACTIONS(3695), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3477), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(3671), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [106496] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1741), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6137), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_SEMI, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6140), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106546] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1769), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(6143), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6146), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106596] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + STATE(3178), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6149), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(2352), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -223442,18 +228137,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105029] = 4, - ACTIONS(5243), 1, - sym_regex_flags, + [106668] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5239), 17, + ACTIONS(4736), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6151), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6154), 23, + sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106718] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4661), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6157), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -223464,10 +228205,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6160), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5241), 20, + [106768] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4631), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6163), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6166), 23, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -223484,27 +228270,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [105078] = 8, - ACTIONS(1621), 1, + anon_sym_satisfies, + [106818] = 8, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5925), 2, + ACTIONS(6169), 2, sym_number, sym_private_property_identifier, - STATE(3446), 3, + STATE(3755), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223512,7 +228300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223536,43 +228324,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105135] = 8, - ACTIONS(1621), 1, + [106875] = 6, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4107), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4109), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [106928] = 12, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(4557), 1, anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5927), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3381), 3, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6149), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3933), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(2352), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -223585,24 +228424,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105192] = 8, - ACTIONS(1621), 1, + [106993] = 8, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5929), 2, + ACTIONS(6171), 2, sym_number, sym_private_property_identifier, - STATE(3385), 3, + STATE(3903), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223610,7 +228449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223634,33 +228473,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105249] = 9, + [107050] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(5202), 1, + ACTIONS(672), 1, anon_sym_RBRACE, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1994), 6, + ACTIONS(1976), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1992), 23, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223684,32 +228523,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105308] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + [107109] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5931), 2, - sym_number, - sym_private_property_identifier, - STATE(3357), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3933), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223733,24 +228573,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105365] = 8, - ACTIONS(1621), 1, + [107168] = 8, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5933), 2, + ACTIONS(6173), 2, sym_number, sym_private_property_identifier, - STATE(3397), 3, + STATE(3823), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223758,7 +228598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223782,24 +228622,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105422] = 8, - ACTIONS(1621), 1, + [107225] = 8, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5935), 2, + ACTIONS(6175), 2, sym_number, sym_private_property_identifier, - STATE(3452), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223807,7 +228647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223831,79 +228671,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105479] = 6, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(3644), 1, - anon_sym_in, - ACTIONS(3647), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3429), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105532] = 8, - ACTIONS(1621), 1, + [107282] = 11, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5937), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3300), 3, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6149), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3933), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(2352), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223913,8 +228711,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -223927,33 +228723,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105589] = 9, + [107345] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - STATE(4821), 1, + ACTIONS(5341), 1, + anon_sym_RBRACE, + STATE(5516), 1, aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1994), 6, + ACTIONS(1976), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1992), 23, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223977,24 +228773,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105648] = 8, - ACTIONS(1621), 1, + [107404] = 8, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5939), 2, + ACTIONS(6177), 2, sym_number, sym_private_property_identifier, - STATE(3412), 3, + STATE(3766), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224002,7 +228798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224026,36 +228822,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105705] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + [107461] = 8, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(6179), 1, + anon_sym_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(3093), 1, + sym_arguments, + STATE(6973), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5941), 2, + ACTIONS(3507), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3433), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(3505), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_class, anon_sym_async, anon_sym_new, sym_identifier, @@ -224075,21 +228869,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105762] = 6, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4515), 1, - anon_sym_LPAREN, + anon_sym_abstract, + anon_sym_accessor, + [107518] = 4, + ACTIONS(5297), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2170), 2, - sym_template_string, - sym_arguments, - ACTIONS(4081), 13, + ACTIONS(5293), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -224100,9 +228893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4083), 21, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5295), 20, sym__ternary_qmark, - anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -224118,25 +228913,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [105815] = 9, + anon_sym_BQUOTE, + [107567] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + ACTIONS(5291), 1, + anon_sym_RBRACE, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -224172,129 +228966,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105874] = 9, + [107626] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(5197), 1, + ACTIONS(5227), 1, anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1994), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1992), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [105933] = 6, - ACTIONS(4691), 1, - anon_sym_EQ, - ACTIONS(5026), 1, - anon_sym_of, - ACTIONS(5536), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4689), 12, + ACTIONS(1990), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4693), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105986] = 8, - ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5943), 2, sym_number, sym_private_property_identifier, - STATE(3441), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224318,33 +229016,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106043] = 9, + [107685] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(5202), 1, + ACTIONS(5291), 1, anon_sym_RBRACE, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1976), 6, + ACTIONS(1990), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1974), 23, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224368,33 +229066,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106102] = 9, + [107744] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(4215), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(5214), 1, + ACTIONS(5341), 1, anon_sym_RBRACE, - STATE(4821), 1, + STATE(5516), 1, aux_sym_object_repeat1, - STATE(4940), 1, + STATE(5518), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, + ACTIONS(3933), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1994), 6, + ACTIONS(1990), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1992), 23, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224418,32 +229116,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106161] = 8, - ACTIONS(1621), 1, + [107803] = 10, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(4557), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5945), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3448), 3, + ACTIONS(5971), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3933), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224467,24 +229167,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106218] = 8, - ACTIONS(1621), 1, + [107864] = 8, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5947), 2, + ACTIONS(6183), 2, sym_number, sym_private_property_identifier, - STATE(3320), 3, + STATE(3855), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224492,7 +229192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224516,122 +229216,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106275] = 12, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106340] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, + [107921] = 6, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(5214), 1, - anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3630), 1, + anon_sym_in, + ACTIONS(3633), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1976), 6, + ACTIONS(3433), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1974), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106399] = 6, - ACTIONS(4257), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [107974] = 4, + ACTIONS(3606), 1, anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_of, - ACTIONS(5326), 1, - anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 12, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -224642,10 +229283,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4259), 23, + ACTIONS(3437), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -224666,17 +229308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106452] = 6, - ACTIONS(1703), 1, + [108023] = 6, + ACTIONS(4331), 1, anon_sym_EQ, - ACTIONS(5028), 1, + ACTIONS(5041), 1, anon_sym_of, - ACTIONS(5539), 1, + ACTIONS(5614), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 12, + ACTIONS(4329), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -224689,7 +229331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 23, + ACTIONS(4333), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224713,24 +229355,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106505] = 8, - ACTIONS(1621), 1, + [108076] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1974), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108135] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108194] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 2, + ACTIONS(6185), 2, sym_number, sym_private_property_identifier, - STATE(3451), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 7, + ACTIONS(3933), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224738,7 +229480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3667), 23, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224762,16 +229504,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106562] = 4, - ACTIONS(3616), 1, + [108251] = 6, + ACTIONS(4786), 1, anon_sym_EQ, + ACTIONS(5055), 1, + anon_sym_of, + ACTIONS(5630), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, + ACTIONS(4784), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -224782,11 +229527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 24, + ACTIONS(4788), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -224807,16 +229551,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106611] = 4, - ACTIONS(3612), 1, + [108304] = 6, + ACTIONS(1715), 1, anon_sym_EQ, + ACTIONS(5023), 1, + anon_sym_of, + ACTIONS(5635), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, + ACTIONS(1713), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -224827,12 +229574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3433), 24, + ACTIONS(1717), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -224852,35 +229598,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106660] = 11, - ACTIONS(2328), 1, + [108357] = 8, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(5749), 1, - anon_sym_RBRACE, - STATE(4944), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(6187), 2, sym_number, sym_private_property_identifier, - STATE(3821), 3, + STATE(3864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2352), 23, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224904,68 +229647,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106723] = 4, - ACTIONS(3711), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + [108414] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(4557), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [106771] = 3, + ACTIONS(6031), 1, + anon_sym_RBRACE, + STATE(5763), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5951), 25, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224989,27 +229699,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106817] = 4, - ACTIONS(5955), 1, - sym__automatic_semicolon, + [108477] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1821), 11, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1823), 25, + STATE(3854), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225033,27 +229748,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106865] = 4, - ACTIONS(5957), 1, - sym__automatic_semicolon, + [108534] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1821), 11, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6191), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1823), 25, + STATE(3873), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225077,26 +229797,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106913] = 3, + [108591] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6193), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5959), 25, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225120,26 +229846,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106959] = 3, + [108648] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5227), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5965), 12, - sym__automatic_semicolon, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1976), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5963), 25, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225163,26 +229896,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107005] = 3, + [108707] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6195), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5967), 25, + STATE(3831), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225206,26 +229945,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107051] = 3, + [108764] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5973), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6197), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5971), 25, + STATE(3793), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225249,26 +229994,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107097] = 3, + [108821] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6199), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5967), 25, + STATE(3866), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225292,26 +230043,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107143] = 3, + [108878] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5973), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6201), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5971), 25, + STATE(3907), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225335,26 +230092,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107189] = 3, + [108935] = 4, + ACTIONS(3610), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 12, - sym__automatic_semicolon, + ACTIONS(3433), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [108984] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5238), 1, anon_sym_RBRACE, - anon_sym_SEMI, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5975), 25, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225378,26 +230187,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107235] = 3, + [109043] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5238), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5981), 12, - sym__automatic_semicolon, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1976), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5979), 25, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225421,26 +230237,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107281] = 3, + [109102] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(695), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 12, - sym__automatic_semicolon, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5967), 25, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225464,26 +230287,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107327] = 3, + [109161] = 4, + ACTIONS(3618), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5973), 12, - sym__automatic_semicolon, + ACTIONS(3433), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [109210] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(695), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1976), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5971), 25, + ACTIONS(1974), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225507,26 +230382,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107373] = 3, + [109269] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6203), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5967), 25, + STATE(3775), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3671), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225550,13 +230431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107419] = 3, + [109326] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 12, + ACTIONS(6207), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225569,7 +230448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5967), 25, + ACTIONS(6205), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225595,11 +230474,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107465] = 3, + [109372] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5985), 12, + ACTIONS(6211), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225612,7 +230491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5983), 25, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225638,28 +230517,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107511] = 3, + [109418] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3634), 10, + ACTIONS(6215), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3632), 27, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, - anon_sym_class, anon_sym_async, anon_sym_new, sym_identifier, @@ -225681,11 +230560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107557] = 3, + [109464] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225698,7 +230577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225724,11 +230603,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107603] = 3, + [109510] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225741,7 +230620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225767,11 +230646,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107649] = 3, + [109556] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225784,7 +230663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225810,11 +230689,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107695] = 3, + [109602] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 12, + ACTIONS(6219), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225827,7 +230706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5967), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225853,11 +230732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107741] = 3, + [109648] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5973), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225870,7 +230749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5971), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225896,11 +230775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107787] = 3, + [109694] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 12, + ACTIONS(6223), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225913,7 +230792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5975), 25, + ACTIONS(6221), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225939,13 +230818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107833] = 4, - ACTIONS(5987), 1, - sym__automatic_semicolon, + [109740] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1697), 11, + ACTIONS(6215), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -225957,7 +230835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1699), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225983,11 +230861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107881] = 3, + [109786] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5981), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226000,7 +230878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5979), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226026,11 +230904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107927] = 3, + [109832] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(6219), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226043,7 +230921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226069,11 +230947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107973] = 3, + [109878] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 12, + ACTIONS(6219), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226086,7 +230964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5959), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226112,55 +230990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108019] = 4, - ACTIONS(3745), 1, - anon_sym_EQ, + [109924] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [108067] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5965), 12, + ACTIONS(6219), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226173,7 +231007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5963), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226199,11 +231033,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108113] = 3, + [109970] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5985), 12, + ACTIONS(6227), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226216,7 +231050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5983), 25, + ACTIONS(6225), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226242,11 +231076,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108159] = 3, + [110016] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 12, + ACTIONS(6219), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226259,7 +231093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5993), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226285,11 +231119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108205] = 3, + [110062] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226302,7 +231136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5997), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226328,11 +231162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108251] = 3, + [110108] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226345,7 +231179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226371,11 +231205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108297] = 3, + [110154] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6007), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226388,7 +231222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6005), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226414,17 +231248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108343] = 5, - ACTIONS(6013), 1, - anon_sym_SEMI, - ACTIONS(6016), 1, - sym__automatic_semicolon, + [110200] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6011), 10, + ACTIONS(6219), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -226433,7 +231265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6009), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226459,11 +231291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108393] = 3, + [110246] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5981), 12, + ACTIONS(6219), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226476,7 +231308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5979), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226502,55 +231334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108439] = 4, - ACTIONS(3749), 1, - anon_sym_EQ, + [110292] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [108487] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6020), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226563,7 +231351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6018), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226589,11 +231377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108533] = 3, + [110338] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1821), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226606,7 +231394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1823), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226632,11 +231420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108579] = 3, + [110384] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5981), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226649,7 +231437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5979), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226675,11 +231463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108625] = 3, + [110430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 12, + ACTIONS(6231), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226692,7 +231480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5975), 25, + ACTIONS(6229), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226718,11 +231506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108671] = 3, + [110476] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5981), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226735,7 +231523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5979), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226761,11 +231549,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108717] = 3, + [110522] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226778,7 +231566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5975), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226804,57 +231592,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108763] = 4, - ACTIONS(3727), 1, - anon_sym_EQ, + [110568] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [108811] = 4, - ACTIONS(6022), 1, + ACTIONS(6219), 12, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1697), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -226866,7 +231609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1699), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226892,11 +231635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108859] = 3, + [110614] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1831), 12, + ACTIONS(6219), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226909,7 +231652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1833), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226935,11 +231678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108905] = 3, + [110660] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(6219), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226952,7 +231695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226978,76 +231721,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108951] = 4, - ACTIONS(3753), 1, - anon_sym_EQ, + [110706] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, + ACTIONS(6215), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [108999] = 9, - ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227071,55 +231762,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109057] = 4, - ACTIONS(3717), 1, - anon_sym_EQ, + anon_sym_abstract, + anon_sym_accessor, + [110752] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, + ACTIONS(6215), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109105] = 3, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6213), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [110798] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227132,7 +231824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227158,11 +231850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109151] = 3, + [110844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227175,7 +231867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227201,99 +231893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109197] = 4, - ACTIONS(3715), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109245] = 4, - ACTIONS(3747), 1, - anon_sym_EQ, + [110890] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109293] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5969), 12, + ACTIONS(6219), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227306,7 +231910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5967), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227332,11 +231936,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109339] = 3, + [110936] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5973), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227349,7 +231953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5971), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227375,55 +231979,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109385] = 4, - ACTIONS(3725), 1, - anon_sym_EQ, + [110982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109433] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5981), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227436,7 +231996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5979), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227462,11 +232022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109479] = 3, + [111028] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(6215), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227479,7 +232039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227505,11 +232065,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109525] = 3, + [111074] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 12, + ACTIONS(6219), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227522,7 +232082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5975), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227548,11 +232108,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109571] = 3, + [111120] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5981), 12, + ACTIONS(6219), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227565,7 +232125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5979), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227591,29 +232151,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109617] = 8, - ACTIONS(6024), 1, - anon_sym_LPAREN, - ACTIONS(6026), 1, - anon_sym_DOT, - ACTIONS(6028), 1, - anon_sym_LT, - STATE(2761), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, + [111166] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3518), 7, + ACTIONS(6219), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3516), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227639,61 +232194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109673] = 4, - ACTIONS(3743), 1, - anon_sym_EQ, + [111212] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3433), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109721] = 5, - ACTIONS(6034), 1, - anon_sym_SEMI, - ACTIONS(6037), 1, + ACTIONS(6219), 12, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6032), 10, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -227702,7 +232211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6030), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227728,29 +232237,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109771] = 7, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(5749), 1, - anon_sym_RBRACE, - STATE(4944), 1, - aux_sym_object_repeat1, + [111258] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1994), 6, + ACTIONS(6235), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1992), 23, + anon_sym_AT, + ACTIONS(6233), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227774,28 +232278,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109824] = 6, - ACTIONS(4215), 1, - anon_sym_EQ, + anon_sym_abstract, + anon_sym_accessor, + [111304] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5791), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1994), 6, + ACTIONS(6239), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1992), 23, + anon_sym_AT, + ACTIONS(6237), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227819,32 +232321,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109875] = 6, - ACTIONS(4215), 1, - anon_sym_EQ, + anon_sym_abstract, + anon_sym_accessor, + [111350] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5791), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1976), 6, + ACTIONS(3616), 10, anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_LT, sym_number, sym_private_property_identifier, - ACTIONS(1974), 23, + anon_sym_AT, + ACTIONS(3614), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, + anon_sym_class, anon_sym_async, anon_sym_new, sym_identifier, @@ -227864,52 +232364,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109926] = 14, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6039), 1, - anon_sym_STAR, - ACTIONS(6041), 1, - anon_sym_async, - ACTIONS(6045), 1, - anon_sym_readonly, - STATE(2765), 1, - sym_override_modifier, + anon_sym_abstract, + anon_sym_accessor, + [111396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 2, + ACTIONS(1731), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6047), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3831), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 18, + anon_sym_AT, + ACTIONS(1733), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -227917,29 +232407,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109993] = 7, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(5749), 1, - anon_sym_RBRACE, - STATE(4944), 1, - aux_sym_object_repeat1, + anon_sym_abstract, + anon_sym_accessor, + [111442] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1976), 6, + ACTIONS(6231), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1974), 23, + anon_sym_AT, + ACTIONS(6229), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227963,11 +232450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110046] = 3, + anon_sym_abstract, + anon_sym_accessor, + [111488] = 4, + ACTIONS(6241), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6051), 11, + ACTIONS(1709), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227979,7 +232470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6049), 25, + ACTIONS(1711), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228005,11 +232496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110091] = 3, + [111536] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1821), 11, + ACTIONS(6231), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228021,7 +232513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1823), 25, + ACTIONS(6229), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228047,11 +232539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110136] = 3, + [111582] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1831), 11, + ACTIONS(6245), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228063,7 +232556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1833), 25, + ACTIONS(6243), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228089,11 +232582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110181] = 3, + [111628] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6055), 11, + ACTIONS(6249), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228105,7 +232599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6053), 25, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228131,11 +232625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110226] = 3, + [111674] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6059), 11, + ACTIONS(6249), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228147,7 +232642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6057), 25, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228173,11 +232668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110271] = 3, + [111720] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6063), 11, + ACTIONS(6249), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228189,7 +232685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6061), 25, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228215,11 +232711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110316] = 3, + [111766] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6063), 11, + ACTIONS(6249), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228231,7 +232728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6061), 25, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228257,30 +232754,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110361] = 9, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6065), 1, - anon_sym_EQ_GT, + [111812] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3831), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228304,26 +232795,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110417] = 5, + anon_sym_abstract, + anon_sym_accessor, + [111858] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1994), 6, + ACTIONS(6249), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1992), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228347,26 +232838,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110465] = 5, + anon_sym_abstract, + anon_sym_accessor, + [111904] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1976), 6, + ACTIONS(6245), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1974), 23, + anon_sym_AT, + ACTIONS(6243), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228390,33 +232881,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110513] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6039), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [111950] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6047), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3831), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 21, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228426,6 +232910,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -228438,88 +232924,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110571] = 17, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_accessor, - ACTIONS(4923), 1, - anon_sym_STAR, - ACTIONS(4927), 1, - anon_sym_async, - ACTIONS(6067), 1, - anon_sym_static, - ACTIONS(6069), 1, - anon_sym_readonly, - ACTIONS(6071), 1, - anon_sym_declare, - ACTIONS(6073), 1, anon_sym_abstract, - STATE(2774), 1, - sym_override_modifier, + anon_sym_accessor, + [111996] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4929), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4933), 2, - anon_sym_get, - anon_sym_set, - STATE(3039), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [110643] = 10, - ACTIONS(2328), 1, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6075), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6077), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6079), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3832), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 21, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228529,6 +232953,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -228541,43 +232967,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110701] = 11, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6075), 1, - anon_sym_STAR, - ACTIONS(6081), 1, - anon_sym_async, + anon_sym_abstract, + anon_sym_accessor, + [112042] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6077), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6079), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3832), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 20, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -228590,33 +233010,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110761] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6083), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [112088] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6085), 2, + ACTIONS(6219), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6087), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3792), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 21, + anon_sym_AT, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228626,6 +233039,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -228638,33 +233053,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110819] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6089), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [112134] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6091), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6093), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3756), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 21, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228674,6 +233082,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -228686,43 +233096,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110877] = 11, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6083), 1, - anon_sym_STAR, - ACTIONS(6095), 1, - anon_sym_async, + anon_sym_abstract, + anon_sym_accessor, + [112180] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6085), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6087), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3792), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 20, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -228735,43 +233139,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110937] = 11, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6039), 1, - anon_sym_STAR, - ACTIONS(6041), 1, - anon_sym_async, + anon_sym_abstract, + anon_sym_accessor, + [112226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6047), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3831), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 20, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -228784,54 +233182,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110997] = 17, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5255), 1, - anon_sym_STAR, - ACTIONS(5257), 1, - anon_sym_async, - ACTIONS(6099), 1, - anon_sym_static, - ACTIONS(6101), 1, - anon_sym_readonly, - ACTIONS(6103), 1, - anon_sym_declare, - ACTIONS(6105), 1, anon_sym_abstract, - ACTIONS(6107), 1, anon_sym_accessor, - STATE(2779), 1, - sym_override_modifier, + [112272] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5261), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6097), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3021), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 16, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -228839,28 +233225,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111069] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112318] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5650), 2, + ACTIONS(6245), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3744), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6243), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228884,36 +233268,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111122] = 13, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6111), 1, - anon_sym_static, - ACTIONS(6113), 1, - anon_sym_readonly, - ACTIONS(6115), 1, anon_sym_abstract, - ACTIONS(6117), 1, anon_sym_accessor, - STATE(2809), 1, - sym_override_modifier, + [112364] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6109), 2, + ACTIONS(6245), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3333), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 20, + anon_sym_AT, + ACTIONS(6243), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228921,12 +233295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -228934,28 +233311,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111185] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112410] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5469), 2, + ACTIONS(6245), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3775), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6243), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228979,28 +233354,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111238] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112456] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6085), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3792), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229024,36 +233397,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111291] = 13, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5005), 1, - anon_sym_static, - ACTIONS(5007), 1, - anon_sym_readonly, - ACTIONS(5009), 1, anon_sym_abstract, - ACTIONS(5011), 1, anon_sym_accessor, - STATE(2833), 1, - sym_override_modifier, + [112502] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5003), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3352), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 20, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229061,12 +233424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -229074,28 +233440,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111354] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112548] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5612), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3800), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229119,28 +233483,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111407] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112594] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6119), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3833), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229164,28 +233526,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111460] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112640] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5630), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3838), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229209,28 +233569,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111513] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112686] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5636), 2, + ACTIONS(6245), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3824), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6243), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229254,28 +233612,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111566] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112732] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5644), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3855), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229299,28 +233655,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111619] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112778] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6121), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3758), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229344,28 +233698,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111672] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112824] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5656), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3862), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229389,28 +233741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111725] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112870] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6077), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3832), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229434,28 +233784,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111778] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112916] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6123), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3740), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229479,28 +233827,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111831] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [112962] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5676), 2, + ACTIONS(6245), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3753), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6243), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229524,24 +233870,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111884] = 6, - ACTIONS(6125), 1, - anon_sym_AT, - STATE(2723), 1, - aux_sym_export_statement_repeat1, - STATE(2770), 1, - sym_decorator, + anon_sym_abstract, + anon_sym_accessor, + [113008] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3560), 6, + ACTIONS(6249), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3558), 25, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229567,28 +233915,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [111933] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + [113054] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6128), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3728), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229612,28 +233956,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111986] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113100] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5714), 2, + ACTIONS(6249), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3830), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6247), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229657,28 +233999,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112039] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113146] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5481), 2, + ACTIONS(6245), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3782), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6243), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229702,28 +234042,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112092] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113192] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5582), 2, + ACTIONS(6219), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3723), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229747,28 +234085,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112145] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113238] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6130), 2, + ACTIONS(6227), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3801), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6225), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229792,28 +234128,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112198] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113284] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 2, + ACTIONS(6223), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3831), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6221), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229837,28 +234171,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112251] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113330] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5329), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3786), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229882,28 +234214,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112304] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113376] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5421), 2, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3804), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229927,29 +234257,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112357] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113422] = 4, + ACTIONS(3717), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5451), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3854), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, - anon_sym_export, + ACTIONS(3433), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [113470] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6213), 25, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -229972,28 +234344,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112410] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113516] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5465), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3757), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230017,28 +234387,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112463] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113562] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6132), 2, + ACTIONS(6207), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3805), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6205), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230062,28 +234430,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112516] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113608] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6091), 2, + ACTIONS(1933), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3756), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(1935), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230107,28 +234473,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112569] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113654] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5552), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3818), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230152,28 +234516,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112622] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [113700] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5753), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3791), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230197,28 +234559,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112675] = 9, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6134), 1, - anon_sym_RBRACE, - STATE(5117), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [113746] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6136), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4376), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230242,28 +234602,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112729] = 9, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6138), 1, - anon_sym_RBRACE, - STATE(4785), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [113792] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6140), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4167), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230287,49 +234645,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112783] = 14, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(2360), 1, - anon_sym_override, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, - ACTIONS(6142), 1, - anon_sym_static, - STATE(2766), 1, - sym_override_modifier, + anon_sym_abstract, + anon_sym_accessor, + [113838] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 17, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -230337,28 +234688,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112847] = 9, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6144), 1, - anon_sym_RBRACE, - STATE(5117), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [113884] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6136), 2, + ACTIONS(6207), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4376), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6205), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230382,93 +234731,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112901] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2382), 1, - anon_sym_type, - ACTIONS(2384), 1, - anon_sym_namespace, - ACTIONS(2386), 1, - anon_sym_import, - ACTIONS(2388), 1, - anon_sym_var, - ACTIONS(2390), 1, - anon_sym_let, - ACTIONS(2392), 1, - anon_sym_const, - ACTIONS(2394), 1, - anon_sym_class, - ACTIONS(2396), 1, - anon_sym_async, - ACTIONS(2398), 1, - anon_sym_function, - ACTIONS(2400), 1, - anon_sym_declare, - ACTIONS(2402), 1, - anon_sym_module, - ACTIONS(2404), 1, anon_sym_abstract, - ACTIONS(2406), 1, - anon_sym_global, - ACTIONS(2408), 1, - anon_sym_interface, - ACTIONS(2410), 1, - anon_sym_enum, - STATE(1267), 1, - sym_decorator, - STATE(4082), 1, - sym_internal_module, - STATE(4120), 1, - sym_declaration, - STATE(4277), 1, - aux_sym_export_statement_repeat1, + anon_sym_accessor, + [113930] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4071), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [112981] = 12, - ACTIONS(1621), 1, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5851), 1, - anon_sym_readonly, - ACTIONS(6146), 1, - anon_sym_STAR, - STATE(2778), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6148), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6150), 2, - anon_sym_get, - anon_sym_set, - STATE(3018), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230477,10 +234759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -230488,93 +234774,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113041] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2382), 1, - anon_sym_type, - ACTIONS(2384), 1, - anon_sym_namespace, - ACTIONS(2386), 1, - anon_sym_import, - ACTIONS(2388), 1, - anon_sym_var, - ACTIONS(2390), 1, - anon_sym_let, - ACTIONS(2392), 1, - anon_sym_const, - ACTIONS(2394), 1, - anon_sym_class, - ACTIONS(2396), 1, - anon_sym_async, - ACTIONS(2398), 1, - anon_sym_function, - ACTIONS(2400), 1, - anon_sym_declare, - ACTIONS(2404), 1, anon_sym_abstract, - ACTIONS(2408), 1, - anon_sym_interface, - ACTIONS(2410), 1, - anon_sym_enum, - ACTIONS(3881), 1, - anon_sym_module, - ACTIONS(6152), 1, - anon_sym_default, - STATE(1267), 1, - sym_decorator, - STATE(4082), 1, - sym_internal_module, - STATE(4277), 1, - aux_sym_export_statement_repeat1, - STATE(4280), 1, - sym_declaration, + anon_sym_accessor, + [113976] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4071), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [113121] = 12, - ACTIONS(1621), 1, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6154), 1, - anon_sym_STAR, - ACTIONS(6158), 1, - anon_sym_readonly, - STATE(2776), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6156), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6160), 2, - anon_sym_get, - anon_sym_set, - STATE(3044), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230583,10 +234802,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -230594,49 +234817,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113181] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4223), 1, - anon_sym_readonly, - ACTIONS(6162), 1, - anon_sym_static, - STATE(2769), 1, - sym_override_modifier, + anon_sym_abstract, + anon_sym_accessor, + [114022] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(4225), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 17, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -230644,28 +234860,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113245] = 9, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6164), 1, - anon_sym_RBRACE, - STATE(5117), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [114068] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6136), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4376), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230689,28 +234903,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113299] = 9, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6166), 1, - anon_sym_RBRACE, - STATE(5117), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [114114] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6136), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4376), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230734,49 +234946,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113353] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, - anon_sym_override, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5136), 1, - anon_sym_STAR, - ACTIONS(5138), 1, - anon_sym_async, - ACTIONS(5142), 1, - anon_sym_readonly, - ACTIONS(6168), 1, - anon_sym_static, - STATE(2760), 1, - sym_override_modifier, + anon_sym_abstract, + anon_sym_accessor, + [114160] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5140), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5144), 2, - anon_sym_get, - anon_sym_set, - STATE(3068), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 17, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -230784,86 +234989,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113417] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2280), 1, - anon_sym_namespace, - ACTIONS(2284), 1, - anon_sym_import, - ACTIONS(2286), 1, - anon_sym_var, - ACTIONS(2288), 1, - anon_sym_let, - ACTIONS(2290), 1, - anon_sym_const, - ACTIONS(2295), 1, - anon_sym_class, - ACTIONS(2297), 1, - anon_sym_async, - ACTIONS(2299), 1, - anon_sym_function, - ACTIONS(2304), 1, - anon_sym_declare, - ACTIONS(2306), 1, - anon_sym_module, - ACTIONS(2308), 1, anon_sym_abstract, - ACTIONS(2310), 1, - anon_sym_interface, - ACTIONS(2312), 1, - anon_sym_enum, - ACTIONS(2342), 1, - anon_sym_type, - ACTIONS(6170), 1, - anon_sym_default, - STATE(873), 1, - sym_declaration, - STATE(880), 1, - sym_internal_module, - STATE(1267), 1, - sym_decorator, - STATE(4053), 1, - aux_sym_export_statement_repeat1, + anon_sym_accessor, + [114206] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(851), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [113497] = 9, - ACTIONS(1573), 1, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6172), 1, - anon_sym_RBRACE, - STATE(5117), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6136), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4376), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230887,28 +235032,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113551] = 9, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6174), 1, - anon_sym_RBRACE, - STATE(5117), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [114252] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6136), 2, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4376), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230932,28 +235075,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113605] = 9, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6176), 1, - anon_sym_RBRACE, - STATE(5117), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [114298] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6136), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4376), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230977,86 +235118,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113659] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2280), 1, - anon_sym_namespace, - ACTIONS(2284), 1, - anon_sym_import, - ACTIONS(2286), 1, - anon_sym_var, - ACTIONS(2288), 1, - anon_sym_let, - ACTIONS(2290), 1, - anon_sym_const, - ACTIONS(2295), 1, - anon_sym_class, - ACTIONS(2297), 1, - anon_sym_async, - ACTIONS(2299), 1, - anon_sym_function, - ACTIONS(2304), 1, - anon_sym_declare, - ACTIONS(2306), 1, - anon_sym_module, - ACTIONS(2308), 1, anon_sym_abstract, - ACTIONS(2310), 1, - anon_sym_interface, - ACTIONS(2312), 1, - anon_sym_enum, - ACTIONS(2342), 1, - anon_sym_type, - ACTIONS(6178), 1, - anon_sym_default, - STATE(873), 1, - sym_declaration, - STATE(880), 1, - sym_internal_module, - STATE(1267), 1, - sym_decorator, - STATE(4053), 1, - aux_sym_export_statement_repeat1, + anon_sym_accessor, + [114344] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(851), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [113739] = 9, - ACTIONS(1573), 1, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1575), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6180), 1, - anon_sym_RBRACE, - STATE(5117), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6136), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4376), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231080,28 +235161,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113793] = 9, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, + anon_sym_abstract, + anon_sym_accessor, + [114390] = 4, + ACTIONS(3743), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(6182), 1, - anon_sym_RBRACE, - STATE(4712), 1, - sym_enum_assignment, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [114438] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6257), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3958), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6255), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231125,98 +235248,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113847] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2280), 1, - anon_sym_namespace, - ACTIONS(2284), 1, - anon_sym_import, - ACTIONS(2286), 1, - anon_sym_var, - ACTIONS(2288), 1, - anon_sym_let, - ACTIONS(2290), 1, - anon_sym_const, - ACTIONS(2295), 1, - anon_sym_class, - ACTIONS(2297), 1, - anon_sym_async, - ACTIONS(2299), 1, - anon_sym_function, - ACTIONS(2304), 1, - anon_sym_declare, - ACTIONS(2308), 1, anon_sym_abstract, - ACTIONS(2310), 1, - anon_sym_interface, - ACTIONS(2312), 1, - anon_sym_enum, - ACTIONS(2342), 1, - anon_sym_type, - ACTIONS(2344), 1, - anon_sym_module, - ACTIONS(2346), 1, - anon_sym_global, - STATE(868), 1, - sym_declaration, - STATE(880), 1, - sym_internal_module, - STATE(1267), 1, - sym_decorator, - STATE(4053), 1, - aux_sym_export_statement_repeat1, + anon_sym_accessor, + [114484] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(851), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [113927] = 11, - ACTIONS(1621), 1, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5223), 1, - anon_sym_STAR, - ACTIONS(5225), 1, - anon_sym_async, - ACTIONS(6188), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5231), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6186), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3035), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231229,19 +235291,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113984] = 3, + anon_sym_abstract, + anon_sym_accessor, + [114530] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3600), 7, + ACTIONS(6219), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3598), 25, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231267,40 +235336,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [114025] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5299), 1, - anon_sym_STAR, - ACTIONS(5301), 1, - anon_sym_async, - ACTIONS(5305), 1, - anon_sym_readonly, + [114576] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5303), 2, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5307), 2, - anon_sym_get, - anon_sym_set, - STATE(3059), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6251), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231313,19 +235377,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114082] = 3, + anon_sym_abstract, + anon_sym_accessor, + [114622] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3570), 7, + ACTIONS(6257), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3568), 25, + ACTIONS(6255), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231351,40 +235422,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [114123] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5622), 1, - anon_sym_async, - ACTIONS(6192), 1, - anon_sym_readonly, + [114668] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5626), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6190), 2, + ACTIONS(6219), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3048), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231397,40 +235463,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114180] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5634), 1, - anon_sym_STAR, - ACTIONS(5666), 1, - anon_sym_async, - ACTIONS(6194), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [114714] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5668), 2, + ACTIONS(6219), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5670), 2, - anon_sym_get, - anon_sym_set, - STATE(3109), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231443,22 +235506,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114237] = 4, + anon_sym_abstract, + anon_sym_accessor, + [114760] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1976), 6, + ACTIONS(6215), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1974), 23, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231482,86 +235549,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114280] = 11, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6075), 1, - anon_sym_STAR, - ACTIONS(6081), 1, - anon_sym_async, - ACTIONS(6196), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [114806] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6077), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6079), 2, - anon_sym_get, - anon_sym_set, - STATE(3832), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114337] = 11, - ACTIONS(2328), 1, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6039), 1, - anon_sym_STAR, - ACTIONS(6041), 1, - anon_sym_async, - ACTIONS(6045), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6043), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6047), 2, - anon_sym_get, - anon_sym_set, - STATE(3831), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 19, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231574,40 +235592,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114394] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4923), 1, - anon_sym_STAR, - ACTIONS(4927), 1, - anon_sym_async, - ACTIONS(4931), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [114852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4929), 2, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(4933), 2, - anon_sym_get, - anon_sym_set, - STATE(3039), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231620,40 +235635,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114451] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5136), 1, - anon_sym_STAR, - ACTIONS(5138), 1, - anon_sym_async, - ACTIONS(5142), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [114898] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5140), 2, + ACTIONS(6261), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5144), 2, - anon_sym_get, - anon_sym_set, - STATE(3068), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6259), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231666,40 +235678,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114508] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5313), 1, - anon_sym_STAR, - ACTIONS(5315), 1, - anon_sym_async, - ACTIONS(5319), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [114944] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5317), 2, + ACTIONS(6265), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5321), 2, - anon_sym_get, - anon_sym_set, - STATE(3093), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6263), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231712,19 +235721,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114565] = 3, + anon_sym_abstract, + anon_sym_accessor, + [114990] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3630), 7, + ACTIONS(6257), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3628), 25, + ACTIONS(6255), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231750,40 +235766,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [114606] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5255), 1, - anon_sym_STAR, - ACTIONS(5257), 1, - anon_sym_async, - ACTIONS(6200), 1, - anon_sym_readonly, + [115036] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5261), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6198), 2, + ACTIONS(6257), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3022), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6255), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231796,19 +235807,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114663] = 3, + anon_sym_abstract, + anon_sym_accessor, + [115082] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3518), 7, + ACTIONS(6257), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3516), 25, + ACTIONS(6255), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231834,26 +235852,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [114704] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - STATE(5117), 1, - sym_enum_assignment, + [115128] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6136), 2, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(4376), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231877,40 +235893,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114755] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5276), 1, - anon_sym_STAR, - ACTIONS(5278), 1, - anon_sym_async, - ACTIONS(5282), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115174] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5280), 2, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5284), 2, - anon_sym_get, - anon_sym_set, - STATE(3017), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231923,19 +235936,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114812] = 3, + anon_sym_abstract, + anon_sym_accessor, + [115220] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3626), 7, + ACTIONS(6211), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3624), 25, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231961,29 +235981,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [114853] = 9, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6146), 1, - anon_sym_STAR, + [115266] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5751), 2, + ACTIONS(6257), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6202), 2, - anon_sym_get, - anon_sym_set, - STATE(3819), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 21, + anon_sym_AT, + ACTIONS(6255), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231993,6 +236008,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232005,40 +236022,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114906] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5556), 1, - anon_sym_async, - ACTIONS(6204), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115312] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5558), 2, + ACTIONS(6257), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5560), 2, - anon_sym_get, - anon_sym_set, - STATE(3033), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6255), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232051,29 +236065,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114963] = 9, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(6206), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [115358] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5753), 2, + ACTIONS(6257), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6208), 2, - anon_sym_get, - anon_sym_set, - STATE(3791), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 21, + anon_sym_AT, + ACTIONS(6255), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232083,6 +236094,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232095,40 +236108,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115016] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5223), 1, - anon_sym_STAR, - ACTIONS(5225), 1, - anon_sym_async, - ACTIONS(6212), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5231), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6210), 2, + ACTIONS(6269), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3041), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6267), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232141,40 +236151,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115073] = 11, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(2354), 1, - anon_sym_async, - ACTIONS(2356), 1, - anon_sym_readonly, - ACTIONS(4759), 1, - anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [115450] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(6273), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(2358), 2, - anon_sym_get, - anon_sym_set, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 19, + anon_sym_AT, + ACTIONS(6271), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232187,40 +236194,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115130] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4213), 1, - anon_sym_STAR, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4219), 1, - anon_sym_async, - ACTIONS(4223), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115496] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 2, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(4225), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6275), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232233,40 +236237,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115187] = 11, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5580), 1, - anon_sym_STAR, - ACTIONS(5586), 1, - anon_sym_async, - ACTIONS(6214), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115542] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5588), 2, + ACTIONS(6219), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(5590), 2, - anon_sym_get, - anon_sym_set, - STATE(3092), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 19, + anon_sym_AT, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232279,26 +236280,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115244] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6218), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [115588] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6216), 2, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3330), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232307,6 +236308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -232321,24 +236323,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115294] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115634] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6220), 2, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3339), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232362,40 +236366,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115342] = 7, + anon_sym_abstract, + anon_sym_accessor, + [115680] = 4, + ACTIONS(3755), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [115728] = 20, + ACTIONS(99), 1, + anon_sym_AT, ACTIONS(2328), 1, anon_sym_DQUOTE, ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4759), 1, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4557), 1, anon_sym_LBRACK, + ACTIONS(6073), 1, + anon_sym_STAR, + ACTIONS(6077), 1, + anon_sym_async, + ACTIONS(6081), 1, + anon_sym_static, + ACTIONS(6083), 1, + anon_sym_readonly, + ACTIONS(6085), 1, + anon_sym_get, + ACTIONS(6087), 1, + anon_sym_set, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + STATE(3140), 1, + sym_accessibility_modifier, + STATE(3158), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5469), 2, + ACTIONS(6079), 2, sym_number, sym_private_property_identifier, - STATE(3775), 3, + ACTIONS(6089), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4376), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2352), 23, + ACTIONS(2352), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -232403,24 +236472,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115390] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, + [115808] = 4, + ACTIONS(3735), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [115856] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5751), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3819), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232444,24 +236557,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115438] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115902] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6077), 2, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3832), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232485,24 +236600,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115486] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115948] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5606), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3839), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232526,24 +236643,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115534] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [115994] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6123), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3740), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232567,24 +236686,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115582] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116040] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5612), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3800), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232608,24 +236729,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115630] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116086] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5676), 2, + ACTIONS(6219), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3753), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232649,26 +236772,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115678] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6224), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [116132] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6222), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3449), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232677,6 +236800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -232691,24 +236815,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115728] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116178] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6226), 2, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3450), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6279), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232732,26 +236858,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115776] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6228), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [116224] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 2, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3373), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6279), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232760,6 +236886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -232774,24 +236901,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115826] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116270] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5923), 2, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3373), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6279), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232815,24 +236944,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115874] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116316] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6128), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3728), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232856,26 +236987,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115922] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6232), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [116362] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6230), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3312), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232884,6 +237015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -232898,24 +237030,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115972] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116408] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6234), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3343), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232939,24 +237073,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116020] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116454] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6119), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3833), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232980,24 +237116,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116068] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116500] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4761), 2, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3807), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233021,24 +237159,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116116] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116546] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5582), 2, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3723), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233062,24 +237202,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116164] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116592] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3831), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233103,24 +237245,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116212] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, + anon_sym_abstract, + anon_sym_accessor, + [116638] = 4, + ACTIONS(3719), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [116686] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5714), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3830), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233144,26 +237332,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116260] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6238), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [116732] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6236), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3383), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233172,6 +237360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233186,24 +237375,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116310] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116778] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 2, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233227,24 +237418,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116358] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [116824] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6240), 2, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3384), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6213), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233268,26 +237461,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116406] = 8, - ACTIONS(1621), 1, + anon_sym_abstract, + anon_sym_accessor, + [116870] = 9, + ACTIONS(2328), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2330), 1, anon_sym_SQUOTE, - ACTIONS(4217), 1, + ACTIONS(4557), 1, anon_sym_LBRACK, - ACTIONS(6244), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6242), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(3392), 3, + ACTIONS(6149), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3667), 22, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2352), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233296,6 +237497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233310,24 +237512,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116456] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + [116928] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6246), 2, + ACTIONS(6219), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3393), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233351,26 +237553,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116504] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6250), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [116974] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6248), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3396), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233379,6 +237581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233393,24 +237596,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116554] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117020] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5726), 2, + ACTIONS(6219), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3745), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233434,24 +237639,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116602] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117066] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6085), 2, + ACTIONS(6219), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3792), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6217), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233475,24 +237682,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116650] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117112] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5630), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3838), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233516,24 +237725,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116698] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6091), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3756), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233557,24 +237768,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116746] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117204] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6252), 2, + ACTIONS(6285), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3400), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6283), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233598,24 +237811,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116794] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117250] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5473), 2, + ACTIONS(6289), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3829), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6287), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233639,24 +237854,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116842] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117296] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6130), 2, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3801), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6291), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233680,26 +237897,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116890] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [117342] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6254), 2, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3453), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6291), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233708,6 +237925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233722,24 +237940,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116940] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117388] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6258), 2, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3378), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6291), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233763,24 +237983,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116988] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117434] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5329), 2, + ACTIONS(6297), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3786), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6295), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233804,26 +238026,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117036] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6262), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [117480] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6260), 2, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3409), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6209), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233832,6 +238054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233846,24 +238069,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117086] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, + anon_sym_abstract, + anon_sym_accessor, + [117526] = 4, + ACTIONS(3737), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [117574] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6264), 2, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3410), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6291), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233887,26 +238156,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117134] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6268), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [117620] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6266), 2, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6275), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233915,6 +238184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233929,24 +238199,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117184] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117666] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5421), 2, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3804), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6275), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233970,24 +238242,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117232] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117712] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5451), 2, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3854), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6279), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234011,24 +238285,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117280] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117758] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5636), 2, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3824), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6275), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234052,24 +238328,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117328] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117804] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5465), 2, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3757), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6291), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234093,24 +238371,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117376] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117850] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6132), 2, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3805), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6291), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234134,24 +238414,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117424] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117896] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5644), 2, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3855), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6291), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234175,24 +238457,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117472] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117942] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5650), 2, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3744), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6291), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234216,24 +238500,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117520] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [117988] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5552), 2, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3818), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6275), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234257,24 +238543,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117568] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [118034] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5003), 2, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3352), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6275), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234298,24 +238586,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117616] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [118080] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6121), 2, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3758), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6275), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234339,26 +238629,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117664] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5839), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [118126] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5800), 2, + ACTIONS(6285), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3323), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6283), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234367,6 +238657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -234381,24 +238672,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117714] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [118172] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5800), 2, + ACTIONS(6301), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3323), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6299), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234422,24 +238715,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117762] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [118218] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5753), 2, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3791), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6291), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234463,24 +238758,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117810] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [118264] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4806), 2, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3351), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6275), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234504,24 +238801,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117858] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, + anon_sym_abstract, + anon_sym_accessor, + [118310] = 4, + ACTIONS(3759), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [118358] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5656), 2, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3862), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6275), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234545,24 +238888,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117906] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [118404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6270), 2, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3325), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6275), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234586,24 +238931,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117954] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [118450] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6272), 2, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3331), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 23, + anon_sym_AT, + ACTIONS(6279), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234627,26 +238974,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118002] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6276), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [118496] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6274), 2, + ACTIONS(6305), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3334), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6303), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234655,6 +239002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -234669,26 +239017,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118052] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(5851), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [118542] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5003), 2, + ACTIONS(6309), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3352), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6307), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234697,6 +239045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -234711,26 +239060,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118102] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(6280), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [118588] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6278), 2, + ACTIONS(6313), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3667), 22, + anon_sym_AT, + ACTIONS(6311), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234739,6 +239088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -234753,24 +239103,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118152] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(4759), 1, - anon_sym_LBRACK, + anon_sym_abstract, + anon_sym_accessor, + [118634] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5481), 2, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - STATE(3782), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2352), 23, + anon_sym_AT, + ACTIONS(6279), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234794,21 +239146,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118200] = 4, - ACTIONS(6282), 1, - sym_identifier, - STATE(5500), 1, - sym_mapped_type_clause, + anon_sym_abstract, + anon_sym_accessor, + [118680] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6284), 22, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6279), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_async, anon_sym_new, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -234825,41300 +239189,74803 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118235] = 9, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(6028), 1, + anon_sym_abstract, + anon_sym_accessor, + [118726] = 4, + ACTIONS(3749), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(6286), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6288), 1, anon_sym_QMARK_DOT, - STATE(2900), 1, - sym_arguments, - STATE(3002), 1, - sym_type_arguments, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [118774] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118820] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118866] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118912] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6279), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [118958] = 21, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6073), 1, + anon_sym_STAR, + ACTIONS(6077), 1, + anon_sym_async, + ACTIONS(6081), 1, + anon_sym_static, + ACTIONS(6083), 1, + anon_sym_readonly, + ACTIONS(6085), 1, + anon_sym_get, + ACTIONS(6087), 1, + anon_sym_set, + ACTIONS(6315), 1, + anon_sym_export, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + STATE(3140), 1, + sym_accessibility_modifier, + STATE(3158), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6079), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6089), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4376), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 13, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119040] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6279), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119086] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6279), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119132] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119178] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119224] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119270] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119316] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6279), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119362] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6235), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6233), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119408] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6279), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119454] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6253), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6251), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119500] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119546] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119592] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6239), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6237), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119638] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119684] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119730] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119776] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119822] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119868] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119914] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [119960] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120006] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120052] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120098] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120144] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120190] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120236] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120282] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120328] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120374] = 4, + ACTIONS(3761), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [120422] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120468] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120514] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120560] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6269), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6267), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120606] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120652] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120698] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6273), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6271), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120744] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120790] = 4, + ACTIONS(6317), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1933), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1935), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120838] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120884] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120930] = 5, + ACTIONS(6323), 1, + anon_sym_SEMI, + ACTIONS(6326), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6321), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6319), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [120980] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121026] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6279), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121072] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6279), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121118] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121164] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121210] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121256] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121302] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121348] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121394] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6279), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121440] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121486] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6215), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6213), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121532] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6281), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6279), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121578] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121624] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121670] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121716] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121762] = 4, + ACTIONS(3727), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3433), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3437), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [121810] = 4, + ACTIONS(6328), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1933), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1935), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121858] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121904] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121950] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [121996] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122042] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122088] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122134] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6209), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122180] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122226] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122272] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122318] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122364] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122410] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122456] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122502] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122548] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122594] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122640] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6332), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6330), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122686] = 4, + ACTIONS(6334), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1709), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1711), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122734] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122780] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6277), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6275), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122826] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122872] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122918] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [122964] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [123010] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [123056] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [123102] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6291), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [123148] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6309), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6307), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [123194] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6338), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6336), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [123239] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6340), 1, + anon_sym_STAR, + ACTIONS(6342), 1, + anon_sym_async, + ACTIONS(6346), 1, + anon_sym_readonly, + ACTIONS(6348), 1, + anon_sym_get, + ACTIONS(6350), 1, + anon_sym_set, + STATE(3155), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6344), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4548), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123308] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6354), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6352), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [123353] = 7, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(6031), 1, + anon_sym_RBRACE, + STATE(5763), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1974), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123406] = 7, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(6031), 1, + anon_sym_RBRACE, + STATE(5763), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123459] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1731), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1733), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [123504] = 23, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2382), 1, + anon_sym_type, + ACTIONS(2384), 1, + anon_sym_namespace, + ACTIONS(2386), 1, + anon_sym_import, + ACTIONS(2388), 1, + anon_sym_var, + ACTIONS(2390), 1, + anon_sym_let, + ACTIONS(2392), 1, + anon_sym_const, + ACTIONS(2394), 1, + anon_sym_class, + ACTIONS(2396), 1, + anon_sym_async, + ACTIONS(2398), 1, + anon_sym_function, + ACTIONS(2400), 1, + anon_sym_declare, + ACTIONS(2404), 1, + anon_sym_abstract, + ACTIONS(2408), 1, + anon_sym_interface, + ACTIONS(2410), 1, + anon_sym_enum, + ACTIONS(3935), 1, + anon_sym_module, + ACTIONS(6356), 1, + anon_sym_default, + STATE(3132), 1, + sym_decorator, + STATE(4770), 1, + sym_declaration, + STATE(4974), 1, + sym_internal_module, + STATE(5115), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4991), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [123589] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6358), 1, + anon_sym_STAR, + ACTIONS(6360), 1, + anon_sym_async, + ACTIONS(6364), 1, + anon_sym_readonly, + ACTIONS(6366), 1, + anon_sym_get, + ACTIONS(6368), 1, + anon_sym_set, + STATE(3172), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6362), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4449), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123658] = 23, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2280), 1, + anon_sym_namespace, + ACTIONS(2284), 1, + anon_sym_import, + ACTIONS(2286), 1, + anon_sym_var, + ACTIONS(2288), 1, + anon_sym_let, + ACTIONS(2290), 1, + anon_sym_const, + ACTIONS(2295), 1, + anon_sym_class, + ACTIONS(2297), 1, + anon_sym_async, + ACTIONS(2299), 1, + anon_sym_function, + ACTIONS(2304), 1, + anon_sym_declare, + ACTIONS(2306), 1, + anon_sym_module, + ACTIONS(2308), 1, + anon_sym_abstract, + ACTIONS(2310), 1, + anon_sym_interface, + ACTIONS(2312), 1, + anon_sym_enum, + ACTIONS(2342), 1, + anon_sym_type, + ACTIONS(6370), 1, + anon_sym_default, + STATE(792), 1, + sym_declaration, + STATE(841), 1, + sym_internal_module, + STATE(3132), 1, + sym_decorator, + STATE(5193), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(855), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [123743] = 14, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6372), 1, + anon_sym_STAR, + ACTIONS(6374), 1, + anon_sym_async, + ACTIONS(6378), 1, + anon_sym_readonly, + STATE(3160), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6376), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6380), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4445), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123810] = 6, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5971), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1974), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123861] = 6, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5971), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123912] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1933), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1935), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [123957] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3966), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6382), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [124002] = 18, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6384), 1, + anon_sym_STAR, + ACTIONS(6386), 1, + anon_sym_async, + ACTIONS(6390), 1, + anon_sym_static, + ACTIONS(6392), 1, + anon_sym_readonly, + ACTIONS(6394), 1, + anon_sym_get, + ACTIONS(6396), 1, + anon_sym_set, + ACTIONS(6398), 1, + anon_sym_declare, + ACTIONS(6400), 1, + anon_sym_abstract, + ACTIONS(6402), 1, + anon_sym_accessor, + STATE(3162), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6388), 2, + sym_number, + sym_private_property_identifier, + STATE(3479), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124076] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6404), 1, + anon_sym_STAR, + ACTIONS(6406), 1, + anon_sym_async, + ACTIONS(6410), 1, + anon_sym_get, + ACTIONS(6412), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6408), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4345), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124138] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6414), 1, + anon_sym_STAR, + ACTIONS(6416), 1, + anon_sym_async, + ACTIONS(6420), 1, + anon_sym_get, + ACTIONS(6422), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6418), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4453), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124200] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6424), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6426), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6428), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4390), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124258] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_STAR, + ACTIONS(6434), 1, + anon_sym_get, + ACTIONS(6436), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6432), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4479), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124318] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6438), 1, + anon_sym_STAR, + ACTIONS(6442), 1, + anon_sym_get, + ACTIONS(6444), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6440), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4259), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124378] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6446), 1, + anon_sym_STAR, + ACTIONS(6448), 1, + anon_sym_async, + ACTIONS(6452), 1, + anon_sym_get, + ACTIONS(6454), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6450), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4490), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124440] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6456), 1, + anon_sym_STAR, + ACTIONS(6460), 1, + anon_sym_get, + ACTIONS(6462), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6458), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4358), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124500] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6464), 1, + anon_sym_STAR, + ACTIONS(6468), 1, + anon_sym_get, + ACTIONS(6470), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6466), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4198), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124560] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6472), 1, + anon_sym_STAR, + ACTIONS(6476), 1, + anon_sym_get, + ACTIONS(6478), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6474), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4213), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124620] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6480), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6482), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6484), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4381), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124678] = 17, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_accessor, + ACTIONS(4955), 1, + anon_sym_STAR, + ACTIONS(4959), 1, + anon_sym_async, + ACTIONS(6486), 1, + anon_sym_static, + ACTIONS(6488), 1, + anon_sym_readonly, + ACTIONS(6490), 1, + anon_sym_declare, + ACTIONS(6492), 1, + anon_sym_abstract, + STATE(3176), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4961), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4965), 2, + anon_sym_get, + anon_sym_set, + STATE(3473), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124750] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6494), 1, + anon_sym_STAR, + ACTIONS(6498), 1, + anon_sym_get, + ACTIONS(6500), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6496), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4425), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124810] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6480), 1, + anon_sym_STAR, + ACTIONS(6502), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6482), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6484), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4381), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124870] = 9, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6504), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6376), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4445), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124926] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6372), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6376), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6380), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4445), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124984] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6506), 1, + anon_sym_STAR, + ACTIONS(6508), 1, + anon_sym_async, + ACTIONS(6512), 1, + anon_sym_get, + ACTIONS(6514), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6510), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4232), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125046] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6516), 1, + anon_sym_STAR, + ACTIONS(6520), 1, + anon_sym_get, + ACTIONS(6522), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4236), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125106] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6372), 1, + anon_sym_STAR, + ACTIONS(6374), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6376), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6380), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4445), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125166] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6149), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1974), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125214] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6149), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125262] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6524), 1, + anon_sym_STAR, + ACTIONS(6528), 1, + anon_sym_get, + ACTIONS(6530), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6526), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4352), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125322] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6532), 1, + anon_sym_STAR, + ACTIONS(6536), 1, + anon_sym_get, + ACTIONS(6538), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6534), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4448), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125382] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6540), 1, + anon_sym_STAR, + ACTIONS(6544), 1, + anon_sym_get, + ACTIONS(6546), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6542), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4346), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125442] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6548), 1, + anon_sym_STAR, + ACTIONS(6550), 1, + anon_sym_async, + ACTIONS(6554), 1, + anon_sym_get, + ACTIONS(6556), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6552), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4283), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125504] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6558), 1, + anon_sym_STAR, + ACTIONS(6560), 1, + anon_sym_async, + ACTIONS(6564), 1, + anon_sym_get, + ACTIONS(6566), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6562), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4450), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125566] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6568), 1, + anon_sym_STAR, + ACTIONS(6572), 1, + anon_sym_get, + ACTIONS(6574), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6570), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4478), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125626] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6576), 1, + anon_sym_STAR, + ACTIONS(6578), 1, + anon_sym_async, + ACTIONS(6582), 1, + anon_sym_get, + ACTIONS(6584), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6580), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4337), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125688] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6586), 1, + anon_sym_STAR, + ACTIONS(6590), 1, + anon_sym_get, + ACTIONS(6592), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6588), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4496), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125748] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6594), 1, + anon_sym_STAR, + ACTIONS(6598), 1, + anon_sym_get, + ACTIONS(6600), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6596), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4388), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125808] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6602), 1, + anon_sym_STAR, + ACTIONS(6604), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6606), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6608), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4196), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125868] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6610), 1, + anon_sym_STAR, + ACTIONS(6614), 1, + anon_sym_get, + ACTIONS(6616), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6612), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4342), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125928] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6618), 1, + anon_sym_STAR, + ACTIONS(6622), 1, + anon_sym_get, + ACTIONS(6624), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6620), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4512), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125988] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6626), 1, + anon_sym_STAR, + ACTIONS(6630), 1, + anon_sym_get, + ACTIONS(6632), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6628), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4256), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126048] = 6, + ACTIONS(6634), 1, + anon_sym_AT, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3593), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3591), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [126098] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6602), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6606), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6608), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4196), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126156] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6637), 1, + anon_sym_STAR, + ACTIONS(6639), 1, + anon_sym_async, + ACTIONS(6643), 1, + anon_sym_get, + ACTIONS(6645), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6641), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4497), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126218] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6647), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4498), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126271] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6649), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4329), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126324] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6651), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4558), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126377] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6653), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4455), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126430] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6655), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4395), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126483] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6657), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4505), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126536] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6659), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4227), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126589] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6661), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4537), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126642] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6663), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4538), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126695] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6665), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4265), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126748] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6667), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4559), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126801] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6426), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4390), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126854] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6669), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4186), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126907] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5617), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4534), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [126960] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6671), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4185), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127013] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6673), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4457), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127066] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6675), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4523), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127119] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5623), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4300), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127172] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5654), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4532), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127225] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127278] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6679), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127331] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5572), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127384] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6681), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4254), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127437] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4525), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127490] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6685), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4246), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127543] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6687), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4298), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127596] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3647), 8, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3645), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [127639] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6689), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127692] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6691), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4204), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127745] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6693), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4514), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127798] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6695), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127851] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6697), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4554), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127904] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6699), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4552), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127957] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128010] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6703), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4287), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128063] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6705), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4288), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128116] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6606), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4196), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128169] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6707), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4509), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128222] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6709), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4528), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128275] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4411), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128328] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6713), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4522), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128381] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6715), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128434] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6717), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4280), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128487] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6719), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4491), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128540] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5503), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128593] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6376), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4445), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128646] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4239), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128699] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6721), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4414), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128752] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6723), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4503), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128805] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6725), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4359), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128858] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6727), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4205), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128911] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6729), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4502), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128964] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6731), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4350), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129017] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5492), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4214), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129070] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6733), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4326), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129123] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6735), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4328), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129176] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6737), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4221), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129229] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5797), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129282] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6739), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4184), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129335] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6741), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4441), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129388] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6743), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4439), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129441] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6745), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4216), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129494] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6747), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4499), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129547] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6749), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4218), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129600] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6751), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4233), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129653] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6753), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4363), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129706] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6755), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129759] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5438), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4182), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129812] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6757), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4424), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129865] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6759), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4281), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129918] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129971] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6763), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4332), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130024] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6765), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4336), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130077] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6767), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4420), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130130] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6769), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4394), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130183] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6771), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4483), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130236] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6773), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4452), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130289] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6775), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4451), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130342] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6777), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4294), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130395] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6779), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4334), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130448] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6781), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4179), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130501] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6783), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4476), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130554] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6785), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4475), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130607] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5444), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4181), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130660] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3639), 8, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3637), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [130703] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6482), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4381), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130756] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6787), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4541), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130809] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6789), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4234), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130862] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6791), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4240), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130915] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5658), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4440), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130968] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6793), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4212), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131021] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6795), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4241), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131074] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6797), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4422), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131127] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6799), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4274), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131180] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6801), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4539), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131233] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6803), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4348), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131286] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6805), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4333), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131339] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6807), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4175), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131392] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6809), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4349), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131445] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6811), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4543), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131498] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6813), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4365), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131551] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6815), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4271), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131604] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6817), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4366), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131657] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6819), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4426), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131710] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6821), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4258), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131763] = 13, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6825), 1, + anon_sym_static, + ACTIONS(6827), 1, + anon_sym_readonly, + ACTIONS(6829), 1, + anon_sym_abstract, + ACTIONS(6831), 1, + anon_sym_accessor, + STATE(3280), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6823), 2, + sym_number, + sym_private_property_identifier, + STATE(3893), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131826] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6833), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4427), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131879] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5458), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4177), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131932] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6835), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4299), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131985] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6837), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4257), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132038] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6839), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4217), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132091] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6841), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4474), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132144] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6843), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4421), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132197] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6845), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4282), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132250] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6847), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4264), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132303] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6849), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4301), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132356] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5872), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4545), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132409] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6851), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4272), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132462] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6853), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4327), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132515] = 13, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5068), 1, + anon_sym_static, + ACTIONS(5070), 1, + anon_sym_readonly, + ACTIONS(5072), 1, + anon_sym_abstract, + ACTIONS(5074), 1, + anon_sym_accessor, + STATE(3213), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5066), 2, + sym_number, + sym_private_property_identifier, + STATE(3809), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132578] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6855), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4229), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132631] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6857), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4203), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132684] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3507), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3505), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [132726] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3651), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3649), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [132768] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3628), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3626), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_class, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [132810] = 9, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6859), 1, + anon_sym_RBRACE, + STATE(6033), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6861), 2, + sym_number, + sym_private_property_identifier, + STATE(5343), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132864] = 9, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6863), 1, + anon_sym_RBRACE, + STATE(6033), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6861), 2, + sym_number, + sym_private_property_identifier, + STATE(5343), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132918] = 9, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_RBRACE, + STATE(6033), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6861), 2, + sym_number, + sym_private_property_identifier, + STATE(5343), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132972] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2280), 1, + anon_sym_namespace, + ACTIONS(2284), 1, + anon_sym_import, + ACTIONS(2286), 1, + anon_sym_var, + ACTIONS(2288), 1, + anon_sym_let, + ACTIONS(2290), 1, + anon_sym_const, + ACTIONS(2295), 1, + anon_sym_class, + ACTIONS(2297), 1, + anon_sym_async, + ACTIONS(2299), 1, + anon_sym_function, + ACTIONS(2304), 1, + anon_sym_declare, + ACTIONS(2306), 1, + anon_sym_module, + ACTIONS(2308), 1, + anon_sym_abstract, + ACTIONS(2310), 1, + anon_sym_interface, + ACTIONS(2312), 1, + anon_sym_enum, + ACTIONS(2342), 1, + anon_sym_type, + ACTIONS(6370), 1, + anon_sym_default, + STATE(792), 1, + sym_declaration, + STATE(841), 1, + sym_internal_module, + STATE(3132), 1, + sym_decorator, + STATE(5193), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(855), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [133052] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2382), 1, + anon_sym_type, + ACTIONS(2384), 1, + anon_sym_namespace, + ACTIONS(2386), 1, + anon_sym_import, + ACTIONS(2388), 1, + anon_sym_var, + ACTIONS(2390), 1, + anon_sym_let, + ACTIONS(2392), 1, + anon_sym_const, + ACTIONS(2394), 1, + anon_sym_class, + ACTIONS(2396), 1, + anon_sym_async, + ACTIONS(2398), 1, + anon_sym_function, + ACTIONS(2400), 1, + anon_sym_declare, + ACTIONS(2402), 1, + anon_sym_module, + ACTIONS(2404), 1, + anon_sym_abstract, + ACTIONS(2406), 1, + anon_sym_global, + ACTIONS(2408), 1, + anon_sym_interface, + ACTIONS(2410), 1, + anon_sym_enum, + STATE(3132), 1, + sym_decorator, + STATE(4914), 1, + sym_declaration, + STATE(4974), 1, + sym_internal_module, + STATE(5115), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4991), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [133132] = 9, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6867), 1, + anon_sym_RBRACE, + STATE(5752), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6869), 2, + sym_number, + sym_private_property_identifier, + STATE(5092), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133186] = 15, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6871), 1, + anon_sym_STAR, + ACTIONS(6873), 1, + anon_sym_async, + ACTIONS(6877), 1, + anon_sym_static, + ACTIONS(6879), 1, + anon_sym_readonly, + ACTIONS(6881), 1, + anon_sym_get, + ACTIONS(6883), 1, + anon_sym_set, + STATE(3168), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6875), 2, + sym_number, + sym_private_property_identifier, + STATE(4456), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133252] = 9, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6885), 1, + anon_sym_RBRACE, + STATE(6033), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6861), 2, + sym_number, + sym_private_property_identifier, + STATE(5343), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133306] = 9, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6887), 1, + anon_sym_RBRACE, + STATE(6033), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6861), 2, + sym_number, + sym_private_property_identifier, + STATE(5343), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133360] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2280), 1, + anon_sym_namespace, + ACTIONS(2284), 1, + anon_sym_import, + ACTIONS(2286), 1, + anon_sym_var, + ACTIONS(2288), 1, + anon_sym_let, + ACTIONS(2290), 1, + anon_sym_const, + ACTIONS(2295), 1, + anon_sym_class, + ACTIONS(2297), 1, + anon_sym_async, + ACTIONS(2299), 1, + anon_sym_function, + ACTIONS(2304), 1, + anon_sym_declare, + ACTIONS(2308), 1, + anon_sym_abstract, + ACTIONS(2310), 1, + anon_sym_interface, + ACTIONS(2312), 1, + anon_sym_enum, + ACTIONS(2342), 1, + anon_sym_type, + ACTIONS(2344), 1, + anon_sym_module, + ACTIONS(2346), 1, + anon_sym_global, + STATE(841), 1, + sym_internal_module, + STATE(889), 1, + sym_declaration, + STATE(3132), 1, + sym_decorator, + STATE(5193), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(855), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [133440] = 9, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6889), 1, + anon_sym_RBRACE, + STATE(6033), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6861), 2, + sym_number, + sym_private_property_identifier, + STATE(5343), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133494] = 9, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6891), 1, + anon_sym_RBRACE, + STATE(6033), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6861), 2, + sym_number, + sym_private_property_identifier, + STATE(5343), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133548] = 9, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6893), 1, + anon_sym_RBRACE, + STATE(5754), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6895), 2, + sym_number, + sym_private_property_identifier, + STATE(4720), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133602] = 14, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(2360), 1, + anon_sym_override, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + ACTIONS(6897), 1, + anon_sym_static, + STATE(3178), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133666] = 12, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6115), 1, + anon_sym_readonly, + ACTIONS(6899), 1, + anon_sym_STAR, + STATE(3170), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6901), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6903), 2, + anon_sym_get, + anon_sym_set, + STATE(3503), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133726] = 14, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_async, + ACTIONS(5285), 1, + anon_sym_readonly, + ACTIONS(6905), 1, + anon_sym_static, + STATE(3156), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5283), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5287), 2, + anon_sym_get, + anon_sym_set, + STATE(3524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133790] = 12, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6907), 1, + anon_sym_STAR, + ACTIONS(6911), 1, + anon_sym_readonly, + STATE(3171), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6909), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6913), 2, + anon_sym_get, + anon_sym_set, + STATE(3476), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133850] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2382), 1, + anon_sym_type, + ACTIONS(2384), 1, + anon_sym_namespace, + ACTIONS(2386), 1, + anon_sym_import, + ACTIONS(2388), 1, + anon_sym_var, + ACTIONS(2390), 1, + anon_sym_let, + ACTIONS(2392), 1, + anon_sym_const, + ACTIONS(2394), 1, + anon_sym_class, + ACTIONS(2396), 1, + anon_sym_async, + ACTIONS(2398), 1, + anon_sym_function, + ACTIONS(2400), 1, + anon_sym_declare, + ACTIONS(2404), 1, + anon_sym_abstract, + ACTIONS(2408), 1, + anon_sym_interface, + ACTIONS(2410), 1, + anon_sym_enum, + ACTIONS(3935), 1, + anon_sym_module, + ACTIONS(6356), 1, + anon_sym_default, + STATE(3132), 1, + sym_decorator, + STATE(4770), 1, + sym_declaration, + STATE(4974), 1, + sym_internal_module, + STATE(5115), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4991), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [133930] = 9, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6915), 1, + anon_sym_RBRACE, + STATE(6033), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6861), 2, + sym_number, + sym_private_property_identifier, + STATE(5343), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133984] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2280), 1, + anon_sym_namespace, + ACTIONS(2284), 1, + anon_sym_import, + ACTIONS(2286), 1, + anon_sym_var, + ACTIONS(2288), 1, + anon_sym_let, + ACTIONS(2290), 1, + anon_sym_const, + ACTIONS(2295), 1, + anon_sym_class, + ACTIONS(2297), 1, + anon_sym_async, + ACTIONS(2299), 1, + anon_sym_function, + ACTIONS(2304), 1, + anon_sym_declare, + ACTIONS(2306), 1, + anon_sym_module, + ACTIONS(2308), 1, + anon_sym_abstract, + ACTIONS(2310), 1, + anon_sym_interface, + ACTIONS(2312), 1, + anon_sym_enum, + ACTIONS(2342), 1, + anon_sym_type, + ACTIONS(6917), 1, + anon_sym_default, + STATE(792), 1, + sym_declaration, + STATE(841), 1, + sym_internal_module, + STATE(3132), 1, + sym_decorator, + STATE(5193), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(855), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [134064] = 14, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(3697), 1, + anon_sym_override, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4233), 1, + anon_sym_readonly, + ACTIONS(6919), 1, + anon_sym_static, + STATE(3163), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134128] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6921), 1, + anon_sym_STAR, + ACTIONS(6923), 1, + anon_sym_async, + ACTIONS(6927), 1, + anon_sym_readonly, + ACTIONS(6929), 1, + anon_sym_get, + ACTIONS(6931), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6925), 2, + sym_number, + sym_private_property_identifier, + STATE(4275), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134187] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5240), 1, + anon_sym_STAR, + ACTIONS(5242), 1, + anon_sym_async, + ACTIONS(5246), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5244), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5248), 2, + anon_sym_get, + anon_sym_set, + STATE(3545), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134244] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4223), 1, + anon_sym_STAR, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(4229), 1, + anon_sym_async, + ACTIONS(4233), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4231), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4235), 2, + anon_sym_get, + anon_sym_set, + STATE(3513), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134301] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6933), 1, + anon_sym_STAR, + ACTIONS(6935), 1, + anon_sym_async, + ACTIONS(6939), 1, + anon_sym_readonly, + ACTIONS(6941), 1, + anon_sym_get, + ACTIONS(6943), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6937), 2, + sym_number, + sym_private_property_identifier, + STATE(4458), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134360] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5560), 1, + anon_sym_STAR, + ACTIONS(5562), 1, + anon_sym_async, + ACTIONS(6945), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5564), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5566), 2, + anon_sym_get, + anon_sym_set, + STATE(3485), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134417] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6602), 1, + anon_sym_STAR, + ACTIONS(6604), 1, + anon_sym_async, + ACTIONS(6947), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6606), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6608), 2, + anon_sym_get, + anon_sym_set, + STATE(4196), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134474] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134517] = 12, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6949), 1, + anon_sym_STAR, + ACTIONS(6951), 1, + anon_sym_async, + ACTIONS(6955), 1, + anon_sym_readonly, + ACTIONS(6957), 1, + anon_sym_get, + ACTIONS(6959), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6953), 2, + sym_number, + sym_private_property_identifier, + STATE(3493), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134576] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5197), 1, + anon_sym_STAR, + ACTIONS(5199), 1, + anon_sym_async, + ACTIONS(5203), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5201), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5205), 2, + anon_sym_get, + anon_sym_set, + STATE(3534), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134633] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_async, + ACTIONS(5285), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5283), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5287), 2, + anon_sym_get, + anon_sym_set, + STATE(3524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134690] = 12, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6961), 1, + anon_sym_STAR, + ACTIONS(6963), 1, + anon_sym_async, + ACTIONS(6967), 1, + anon_sym_readonly, + ACTIONS(6969), 1, + anon_sym_get, + ACTIONS(6971), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6965), 2, + sym_number, + sym_private_property_identifier, + STATE(3497), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134749] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5501), 1, + anon_sym_STAR, + ACTIONS(5718), 1, + anon_sym_async, + ACTIONS(6973), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5720), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5722), 2, + anon_sym_get, + anon_sym_set, + STATE(3514), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134806] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(2354), 1, + anon_sym_async, + ACTIONS(2356), 1, + anon_sym_readonly, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2358), 2, + anon_sym_get, + anon_sym_set, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134863] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6975), 1, + anon_sym_STAR, + ACTIONS(6977), 1, + anon_sym_async, + ACTIONS(6981), 1, + anon_sym_readonly, + ACTIONS(6983), 1, + anon_sym_get, + ACTIONS(6985), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6979), 2, + sym_number, + sym_private_property_identifier, + STATE(4471), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134922] = 12, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6987), 1, + anon_sym_STAR, + ACTIONS(6989), 1, + anon_sym_async, + ACTIONS(6993), 1, + anon_sym_readonly, + ACTIONS(6995), 1, + anon_sym_get, + ACTIONS(6997), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6991), 2, + sym_number, + sym_private_property_identifier, + STATE(3470), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134981] = 9, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6999), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6002), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(7001), 2, + anon_sym_get, + anon_sym_set, + STATE(4239), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135034] = 9, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6899), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5997), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(7003), 2, + anon_sym_get, + anon_sym_set, + STATE(4524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135087] = 12, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(7005), 1, + anon_sym_STAR, + ACTIONS(7007), 1, + anon_sym_async, + ACTIONS(7011), 1, + anon_sym_readonly, + ACTIONS(7013), 1, + anon_sym_get, + ACTIONS(7015), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7009), 2, + sym_number, + sym_private_property_identifier, + STATE(4354), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135146] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(4955), 1, + anon_sym_STAR, + ACTIONS(4959), 1, + anon_sym_async, + ACTIONS(4963), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4961), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4965), 2, + anon_sym_get, + anon_sym_set, + STATE(3473), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135203] = 12, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7017), 1, + anon_sym_STAR, + ACTIONS(7019), 1, + anon_sym_async, + ACTIONS(7023), 1, + anon_sym_readonly, + ACTIONS(7025), 1, + anon_sym_get, + ACTIONS(7027), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7021), 2, + sym_number, + sym_private_property_identifier, + STATE(3475), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135262] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + STATE(6033), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6861), 2, + sym_number, + sym_private_property_identifier, + STATE(5343), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135313] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5328), 1, + anon_sym_STAR, + ACTIONS(5330), 1, + anon_sym_async, + ACTIONS(5336), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5332), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5334), 2, + anon_sym_get, + anon_sym_set, + STATE(3505), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135370] = 11, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_STAR, + ACTIONS(5857), 1, + anon_sym_async, + ACTIONS(7029), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5859), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5861), 2, + anon_sym_get, + anon_sym_set, + STATE(3528), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135427] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(6372), 1, + anon_sym_STAR, + ACTIONS(6374), 1, + anon_sym_async, + ACTIONS(6378), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6376), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6380), 2, + anon_sym_get, + anon_sym_set, + STATE(4445), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135484] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1976), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1974), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135527] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7033), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7031), 2, + sym_number, + sym_private_property_identifier, + STATE(3860), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135577] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7035), 2, + sym_number, + sym_private_property_identifier, + STATE(4224), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135625] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5444), 2, + sym_number, + sym_private_property_identifier, + STATE(4181), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135673] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6482), 2, + sym_number, + sym_private_property_identifier, + STATE(4381), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135721] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7037), 2, + sym_number, + sym_private_property_identifier, + STATE(4506), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135769] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7039), 2, + sym_number, + sym_private_property_identifier, + STATE(4373), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135817] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7041), 2, + sym_number, + sym_private_property_identifier, + STATE(3846), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135865] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7043), 2, + sym_number, + sym_private_property_identifier, + STATE(4331), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135913] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5654), 2, + sym_number, + sym_private_property_identifier, + STATE(4532), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135961] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7045), 2, + sym_number, + sym_private_property_identifier, + STATE(4325), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136009] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5458), 2, + sym_number, + sym_private_property_identifier, + STATE(4177), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136057] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7047), 2, + sym_number, + sym_private_property_identifier, + STATE(4367), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136105] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6841), 2, + sym_number, + sym_private_property_identifier, + STATE(4474), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136153] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7049), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6175), 2, + sym_number, + sym_private_property_identifier, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136203] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7051), 2, + sym_number, + sym_private_property_identifier, + STATE(4357), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136251] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7053), 2, + sym_number, + sym_private_property_identifier, + STATE(4347), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136299] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6175), 2, + sym_number, + sym_private_property_identifier, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136347] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7055), 2, + sym_number, + sym_private_property_identifier, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136395] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5492), 2, + sym_number, + sym_private_property_identifier, + STATE(4214), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136443] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7057), 2, + sym_number, + sym_private_property_identifier, + STATE(4520), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136491] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6002), 2, + sym_number, + sym_private_property_identifier, + STATE(4239), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136539] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7059), 2, + sym_number, + sym_private_property_identifier, + STATE(4511), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136587] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7061), 2, + sym_number, + sym_private_property_identifier, + STATE(4321), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136635] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7063), 2, + sym_number, + sym_private_property_identifier, + STATE(4315), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136683] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7065), 2, + sym_number, + sym_private_property_identifier, + STATE(4304), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136731] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7067), 2, + sym_number, + sym_private_property_identifier, + STATE(4296), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136779] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7069), 2, + sym_number, + sym_private_property_identifier, + STATE(4508), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136827] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7071), 2, + sym_number, + sym_private_property_identifier, + STATE(4311), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136875] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5982), 2, + sym_number, + sym_private_property_identifier, + STATE(3767), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136923] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7073), 2, + sym_number, + sym_private_property_identifier, + STATE(3789), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [136971] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7075), 2, + sym_number, + sym_private_property_identifier, + STATE(4419), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137019] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7077), 2, + sym_number, + sym_private_property_identifier, + STATE(4423), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137067] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7079), 2, + sym_number, + sym_private_property_identifier, + STATE(4270), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137115] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6107), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5982), 2, + sym_number, + sym_private_property_identifier, + STATE(3767), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137165] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7081), 2, + sym_number, + sym_private_property_identifier, + STATE(4273), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137213] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7085), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7083), 2, + sym_number, + sym_private_property_identifier, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137263] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7087), 2, + sym_number, + sym_private_property_identifier, + STATE(4219), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137311] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7089), 2, + sym_number, + sym_private_property_identifier, + STATE(4269), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137359] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6663), 2, + sym_number, + sym_private_property_identifier, + STATE(4538), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137407] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7091), 2, + sym_number, + sym_private_property_identifier, + STATE(4250), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137455] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7093), 2, + sym_number, + sym_private_property_identifier, + STATE(4243), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137503] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5572), 2, + sym_number, + sym_private_property_identifier, + STATE(4192), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137551] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7095), 2, + sym_number, + sym_private_property_identifier, + STATE(4501), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137599] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7097), 2, + sym_number, + sym_private_property_identifier, + STATE(4235), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137647] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7099), 2, + sym_number, + sym_private_property_identifier, + STATE(4387), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137695] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7103), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7101), 2, + sym_number, + sym_private_property_identifier, + STATE(3904), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137745] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5872), 2, + sym_number, + sym_private_property_identifier, + STATE(4545), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137793] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5623), 2, + sym_number, + sym_private_property_identifier, + STATE(4300), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137841] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7105), 2, + sym_number, + sym_private_property_identifier, + STATE(3872), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137889] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7107), 2, + sym_number, + sym_private_property_identifier, + STATE(3761), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137937] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7109), 2, + sym_number, + sym_private_property_identifier, + STATE(4231), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [137985] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7113), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7111), 2, + sym_number, + sym_private_property_identifier, + STATE(3850), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138035] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7117), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7115), 2, + sym_number, + sym_private_property_identifier, + STATE(3754), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138085] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7119), 2, + sym_number, + sym_private_property_identifier, + STATE(4238), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138133] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7121), 2, + sym_number, + sym_private_property_identifier, + STATE(4493), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138181] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + sym_number, + sym_private_property_identifier, + STATE(4364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138229] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7123), 2, + sym_number, + sym_private_property_identifier, + STATE(3829), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138277] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7125), 2, + sym_number, + sym_private_property_identifier, + STATE(4225), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138325] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7127), 2, + sym_number, + sym_private_property_identifier, + STATE(4215), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138373] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7129), 2, + sym_number, + sym_private_property_identifier, + STATE(3861), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138421] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5438), 2, + sym_number, + sym_private_property_identifier, + STATE(4182), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138469] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6717), 2, + sym_number, + sym_private_property_identifier, + STATE(4280), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138517] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7131), 2, + sym_number, + sym_private_property_identifier, + STATE(4305), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138565] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7135), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7133), 2, + sym_number, + sym_private_property_identifier, + STATE(3858), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138615] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7137), 2, + sym_number, + sym_private_property_identifier, + STATE(4211), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138663] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7139), 2, + sym_number, + sym_private_property_identifier, + STATE(4399), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138711] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7141), 2, + sym_number, + sym_private_property_identifier, + STATE(4206), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138759] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7143), 2, + sym_number, + sym_private_property_identifier, + STATE(4202), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138807] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5568), 2, + sym_number, + sym_private_property_identifier, + STATE(4487), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138855] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5503), 2, + sym_number, + sym_private_property_identifier, + STATE(4361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138903] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6606), 2, + sym_number, + sym_private_property_identifier, + STATE(4196), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138951] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5797), 2, + sym_number, + sym_private_property_identifier, + STATE(4435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [138999] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7145), 2, + sym_number, + sym_private_property_identifier, + STATE(4187), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139047] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7149), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7147), 2, + sym_number, + sym_private_property_identifier, + STATE(3833), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139097] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7151), 2, + sym_number, + sym_private_property_identifier, + STATE(4335), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139145] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7153), 2, + sym_number, + sym_private_property_identifier, + STATE(4293), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139193] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7155), 2, + sym_number, + sym_private_property_identifier, + STATE(4306), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139241] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7157), 2, + sym_number, + sym_private_property_identifier, + STATE(4355), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139289] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4937), 2, + sym_number, + sym_private_property_identifier, + STATE(3745), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139337] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5646), 2, + sym_number, + sym_private_property_identifier, + STATE(4468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139385] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7159), 2, + sym_number, + sym_private_property_identifier, + STATE(3859), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139433] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7163), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7161), 2, + sym_number, + sym_private_property_identifier, + STATE(3781), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139483] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6799), 2, + sym_number, + sym_private_property_identifier, + STATE(4274), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139531] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7165), 2, + sym_number, + sym_private_property_identifier, + STATE(4383), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139579] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7167), 2, + sym_number, + sym_private_property_identifier, + STATE(4180), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139627] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7169), 2, + sym_number, + sym_private_property_identifier, + STATE(4472), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139675] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5617), 2, + sym_number, + sym_private_property_identifier, + STATE(4534), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139723] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5066), 2, + sym_number, + sym_private_property_identifier, + STATE(3809), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139771] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6739), 2, + sym_number, + sym_private_property_identifier, + STATE(4184), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139819] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(6115), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5066), 2, + sym_number, + sym_private_property_identifier, + STATE(3809), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139869] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7171), 2, + sym_number, + sym_private_property_identifier, + STATE(4289), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139917] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7173), 2, + sym_number, + sym_private_property_identifier, + STATE(4477), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [139965] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7177), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7175), 2, + sym_number, + sym_private_property_identifier, + STATE(3881), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140015] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7179), 2, + sym_number, + sym_private_property_identifier, + STATE(4408), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140063] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5997), 2, + sym_number, + sym_private_property_identifier, + STATE(4524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140111] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7181), 2, + sym_number, + sym_private_property_identifier, + STATE(3883), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140159] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7185), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7183), 2, + sym_number, + sym_private_property_identifier, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140209] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7187), 2, + sym_number, + sym_private_property_identifier, + STATE(3778), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140257] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6426), 2, + sym_number, + sym_private_property_identifier, + STATE(4390), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140305] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5658), 2, + sym_number, + sym_private_property_identifier, + STATE(4440), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140353] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(7191), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7189), 2, + sym_number, + sym_private_property_identifier, + STATE(3886), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140403] = 7, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(4227), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7193), 2, + sym_number, + sym_private_property_identifier, + STATE(3832), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3671), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140451] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7195), 2, + sym_number, + sym_private_property_identifier, + STATE(4266), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140499] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7197), 2, + sym_number, + sym_private_property_identifier, + STATE(4540), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140547] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7199), 2, + sym_number, + sym_private_property_identifier, + STATE(4447), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140595] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7201), 2, + sym_number, + sym_private_property_identifier, + STATE(4473), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140643] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7203), 2, + sym_number, + sym_private_property_identifier, + STATE(4544), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140691] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7205), 2, + sym_number, + sym_private_property_identifier, + STATE(4555), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140739] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7207), 2, + sym_number, + sym_private_property_identifier, + STATE(4176), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140787] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7209), 2, + sym_number, + sym_private_property_identifier, + STATE(4547), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140835] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6376), 2, + sym_number, + sym_private_property_identifier, + STATE(4445), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140883] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7211), 2, + sym_number, + sym_private_property_identifier, + STATE(4519), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140931] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 2, + sym_number, + sym_private_property_identifier, + STATE(4279), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [140979] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7213), 2, + sym_number, + sym_private_property_identifier, + STATE(4486), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [141027] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7215), 2, + sym_number, + sym_private_property_identifier, + STATE(4443), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [141075] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7217), 2, + sym_number, + sym_private_property_identifier, + STATE(4432), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [141123] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7219), 2, + sym_number, + sym_private_property_identifier, + STATE(4261), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [141171] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7221), 2, + sym_number, + sym_private_property_identifier, + STATE(4417), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [141219] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7223), 2, + sym_number, + sym_private_property_identifier, + STATE(4409), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2352), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [141267] = 4, + ACTIONS(7225), 1, + sym_identifier, + STATE(7134), 1, + sym_mapped_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7227), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [141302] = 9, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, + anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3477), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3467), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141343] = 9, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7229), 1, + anon_sym_DOT, + ACTIONS(7231), 1, + anon_sym_QMARK_DOT, + STATE(3356), 1, + sym_arguments, + STATE(3398), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4057), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4059), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141384] = 9, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_DOT, + ACTIONS(7235), 1, + anon_sym_QMARK_DOT, + STATE(3340), 1, + sym_arguments, + STATE(3394), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4049), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4051), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141425] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4169), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4171), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141453] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4311), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4313), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141481] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4237), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4239), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141509] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4311), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4313), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141537] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4241), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4243), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141565] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4303), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4305), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141593] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4241), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4243), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141621] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4241), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4243), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141649] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4169), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4171), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141677] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4141), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4143), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141705] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4237), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4239), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141733] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4245), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4247), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141761] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4237), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4239), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141789] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4129), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4131), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141817] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4299), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4301), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141845] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4307), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4309), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141873] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4141), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4143), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141901] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4169), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4171), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141929] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4299), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4301), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141957] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4129), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4131), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [141985] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4141), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4143), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142013] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4145), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4147), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142041] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4291), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4293), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142069] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4295), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4297), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142097] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4303), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4305), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142125] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4319), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4321), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142153] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4307), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4309), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142181] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4145), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4147), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142209] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4145), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4147), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142237] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4291), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4293), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142265] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4295), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4297), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142293] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4129), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4131), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142321] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4153), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4155), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142349] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4315), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4317), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142377] = 3, + ACTIONS(1897), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1895), 17, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142404] = 14, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(7237), 1, + sym_identifier, + ACTIONS(7239), 1, + anon_sym_STAR, + ACTIONS(7241), 1, + anon_sym_type, + ACTIONS(7243), 1, + anon_sym_LBRACE, + ACTIONS(7245), 1, + anon_sym_typeof, + STATE(5266), 1, + sym_import_require_clause, + STATE(5268), 1, + sym_string, + STATE(6169), 1, + sym_import_clause, + STATE(6171), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7366), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7247), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [142453] = 3, + ACTIONS(1821), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1819), 17, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142480] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4411), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4413), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142506] = 3, + ACTIONS(4371), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4373), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142532] = 9, + ACTIONS(3469), 1, + anon_sym_LPAREN, + ACTIONS(3471), 1, + anon_sym_DOT, + ACTIONS(3475), 1, + anon_sym_QMARK_DOT, + ACTIONS(3477), 1, + anon_sym_PIPE, + ACTIONS(7249), 1, + anon_sym_LT, + STATE(3575), 1, + sym_arguments, + STATE(3686), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3467), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142570] = 3, + ACTIONS(4359), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4361), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142596] = 9, + ACTIONS(3469), 1, + anon_sym_LPAREN, + ACTIONS(4049), 1, + anon_sym_PIPE, + ACTIONS(7249), 1, + anon_sym_LT, + ACTIONS(7251), 1, + anon_sym_DOT, + ACTIONS(7253), 1, + anon_sym_QMARK_DOT, + STATE(3573), 1, + sym_arguments, + STATE(3693), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4051), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142634] = 7, + ACTIONS(4041), 1, + anon_sym_EQ, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7255), 1, + anon_sym_DOT, + ACTIONS(7257), 1, + anon_sym_is, + STATE(3381), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142668] = 3, + ACTIONS(3653), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3457), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142694] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4289), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4287), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142720] = 5, + ACTIONS(7259), 1, + anon_sym_DOT, + ACTIONS(7261), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4485), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4487), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142750] = 5, + ACTIONS(3499), 1, + anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3477), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3467), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142780] = 4, + ACTIONS(1857), 1, + anon_sym_DOT, + ACTIONS(4383), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4385), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [142808] = 6, + ACTIONS(4041), 1, + anon_sym_EQ, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7255), 1, + anon_sym_DOT, + STATE(3381), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 13, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142840] = 4, + ACTIONS(1861), 1, + anon_sym_DOT, + ACTIONS(4383), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4385), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [142868] = 3, + ACTIONS(4375), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4377), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142894] = 3, + ACTIONS(3655), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3463), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142920] = 9, + ACTIONS(3469), 1, + anon_sym_LPAREN, + ACTIONS(4057), 1, + anon_sym_PIPE, + ACTIONS(7249), 1, + anon_sym_LT, + ACTIONS(7263), 1, + anon_sym_DOT, + ACTIONS(7265), 1, + anon_sym_QMARK_DOT, + STATE(3574), 1, + sym_arguments, + STATE(3692), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4059), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142958] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4419), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4421), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142984] = 3, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4369), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143010] = 3, + ACTIONS(1825), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1823), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_is, + [143035] = 5, + ACTIONS(4093), 1, + anon_sym_EQ, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(3374), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 13, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143064] = 6, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(7267), 1, + anon_sym_DOT, + STATE(3364), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4087), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [143095] = 3, + ACTIONS(4081), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4083), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_is, + [143120] = 4, + ACTIONS(4495), 1, + anon_sym_EQ, + ACTIONS(7269), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4497), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143147] = 3, + ACTIONS(4357), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4355), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143172] = 3, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4431), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143197] = 3, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4243), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [143221] = 7, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7273), 1, + sym_number, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7356), 2, + sym_string, + sym_predefined_type, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [143253] = 3, + ACTIONS(4351), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4353), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143277] = 3, + ACTIONS(4379), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4381), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143301] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7277), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [143323] = 3, + ACTIONS(4347), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4349), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143347] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7279), 1, + sym_number, + STATE(7472), 1, + sym_predefined_type, + STATE(7473), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [143381] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7281), 1, + sym_number, + STATE(7402), 1, + sym_predefined_type, + STATE(7404), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [143415] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7283), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [143437] = 3, + ACTIONS(4433), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4435), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143461] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7285), 1, + sym_number, + STATE(7411), 1, + sym_predefined_type, + STATE(7413), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [143495] = 7, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7287), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7415), 2, + sym_string, + sym_predefined_type, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [143527] = 4, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(7289), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4441), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143553] = 3, + ACTIONS(4137), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4139), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143577] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7291), 1, + sym_number, + STATE(7381), 1, + sym_predefined_type, + STATE(7382), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [143611] = 5, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(7289), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4453), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [143639] = 3, + ACTIONS(4463), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4465), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143663] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7293), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [143685] = 3, + ACTIONS(4467), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4469), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143709] = 3, + ACTIONS(4345), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4343), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143733] = 3, + ACTIONS(4395), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4397), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143757] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7295), 1, + sym_number, + STATE(7399), 1, + sym_predefined_type, + STATE(7400), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [143791] = 8, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7299), 1, + anon_sym_DOT, + ACTIONS(7301), 1, + anon_sym_QMARK_DOT, + ACTIONS(7303), 1, + anon_sym_LT, + STATE(3687), 1, + sym_arguments, + STATE(3871), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3467), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [143825] = 3, + ACTIONS(4399), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4401), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143849] = 8, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7303), 1, + anon_sym_LT, + ACTIONS(7305), 1, + anon_sym_DOT, + ACTIONS(7307), 1, + anon_sym_QMARK_DOT, + STATE(3680), 1, + sym_arguments, + STATE(3867), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4059), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [143883] = 3, + ACTIONS(4475), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4477), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143907] = 3, + ACTIONS(4403), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4405), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143931] = 8, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7303), 1, + anon_sym_LT, + ACTIONS(7309), 1, + anon_sym_DOT, + ACTIONS(7311), 1, + anon_sym_QMARK_DOT, + STATE(3677), 1, + sym_arguments, + STATE(3845), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4051), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [143965] = 3, + ACTIONS(4479), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4341), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [143989] = 3, + ACTIONS(4407), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4409), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [144013] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7313), 1, + sym_number, + STATE(7317), 1, + sym_string, + STATE(7323), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [144047] = 3, + ACTIONS(4141), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4143), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144071] = 7, + ACTIONS(4041), 1, + anon_sym_PIPE, + ACTIONS(7249), 1, + anon_sym_LT, + ACTIONS(7315), 1, + anon_sym_DOT, + ACTIONS(7317), 1, + anon_sym_is, + STATE(3707), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144103] = 3, + ACTIONS(4415), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [144127] = 3, + ACTIONS(4141), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4143), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144151] = 3, + ACTIONS(4141), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4143), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144175] = 3, + ACTIONS(4145), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4147), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144199] = 3, + ACTIONS(4491), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4493), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [144223] = 3, + ACTIONS(4423), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4425), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [144247] = 3, + ACTIONS(4093), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [144271] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7319), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [144293] = 4, + ACTIONS(4455), 1, + anon_sym_EQ, + ACTIONS(7289), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [144319] = 7, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7321), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7306), 2, + sym_string, + sym_predefined_type, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [144351] = 3, + ACTIONS(4455), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [144375] = 3, + ACTIONS(4145), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4147), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144399] = 3, + ACTIONS(4097), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [144423] = 3, + ACTIONS(4145), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4147), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144447] = 3, + ACTIONS(4503), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4505), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [144471] = 3, + ACTIONS(4129), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144495] = 7, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7323), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7251), 2, + sym_string, + sym_predefined_type, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [144527] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7325), 1, + sym_number, + STATE(7253), 1, + sym_string, + STATE(7254), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [144561] = 3, + ACTIONS(4129), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144585] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7327), 1, + sym_number, + STATE(7257), 1, + sym_string, + STATE(7259), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [144619] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7329), 1, + sym_number, + STATE(7261), 1, + sym_string, + STATE(7262), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [144653] = 3, + ACTIONS(4481), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4483), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [144677] = 3, + ACTIONS(4319), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4321), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144701] = 3, + ACTIONS(4129), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144725] = 3, + ACTIONS(4149), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4151), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [144749] = 3, + ACTIONS(4315), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4317), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144773] = 3, + ACTIONS(4153), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4155), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144797] = 3, + ACTIONS(4169), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4171), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144821] = 3, + ACTIONS(4169), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4171), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144845] = 3, + ACTIONS(4169), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4171), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144869] = 3, + ACTIONS(4237), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4239), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144893] = 3, + ACTIONS(4237), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4239), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144917] = 3, + ACTIONS(4237), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4239), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [144941] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7331), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [144963] = 3, + ACTIONS(4259), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [144987] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4313), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145011] = 3, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4243), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145035] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7333), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [145057] = 3, + ACTIONS(4103), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4105), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [145081] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7335), 1, + sym_number, + STATE(7359), 1, + sym_string, + STATE(7360), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [145115] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7337), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [145137] = 3, + ACTIONS(4165), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [145161] = 3, + ACTIONS(4263), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4265), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [145185] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7339), 1, + sym_number, + STATE(7362), 1, + sym_string, + STATE(7363), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [145219] = 3, + ACTIONS(4161), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4163), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [145243] = 3, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4159), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [145267] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7341), 1, + sym_number, + STATE(7368), 1, + sym_string, + STATE(7369), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [145301] = 3, + ACTIONS(4271), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4273), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [145325] = 3, + ACTIONS(4307), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145349] = 3, + ACTIONS(4241), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4243), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145373] = 3, + ACTIONS(4275), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4277), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [145397] = 3, + ACTIONS(4245), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4247), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145421] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4313), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145445] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7343), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [145467] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7345), 1, + sym_number, + STATE(7387), 1, + sym_predefined_type, + STATE(7388), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [145501] = 3, + ACTIONS(4291), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4293), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145525] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7347), 1, + sym_number, + STATE(7467), 1, + sym_predefined_type, + STATE(7468), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [145559] = 3, + ACTIONS(4295), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4297), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145583] = 3, + ACTIONS(4291), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4293), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145607] = 3, + ACTIONS(4307), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145631] = 3, + ACTIONS(4295), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4297), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145655] = 3, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4301), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145679] = 3, + ACTIONS(4303), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4305), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145703] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7349), 1, + sym_number, + STATE(7390), 1, + sym_predefined_type, + STATE(7391), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [145737] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7351), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [145759] = 3, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4301), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145783] = 7, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(7275), 1, + anon_sym_unique, + ACTIONS(7353), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7394), 2, + sym_string, + sym_predefined_type, + ACTIONS(7271), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [145815] = 3, + ACTIONS(4303), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4305), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145839] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7355), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [145861] = 6, + ACTIONS(216), 1, + anon_sym_unique, + STATE(3646), 1, + sym_type_predicate, + STATE(7235), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7357), 2, + sym_identifier, + sym_this, + ACTIONS(218), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [145890] = 14, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(7239), 1, + anon_sym_STAR, + ACTIONS(7243), 1, + anon_sym_LBRACE, + ACTIONS(7359), 1, + sym_identifier, + ACTIONS(7361), 1, + anon_sym_type, + ACTIONS(7363), 1, + anon_sym_COMMA, + ACTIONS(7365), 1, + anon_sym_from, + STATE(5103), 1, + sym_import_require_clause, + STATE(5108), 1, + sym_string, + STATE(6171), 1, + sym__import_identifier, + STATE(6914), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7366), 2, + sym_namespace_import, + sym_named_imports, + [145935] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7371), 1, + anon_sym_BANG, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7377), 1, + anon_sym_QMARK, + STATE(3803), 1, + sym_formal_parameters, + STATE(4482), 1, + sym__call_signature, + STATE(4845), 1, + sym_type_annotation, + STATE(5736), 1, + sym__initializer, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7369), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145978] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7381), 1, + anon_sym_BANG, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7385), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(4712), 1, + sym_type_annotation, + STATE(5807), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6572), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146021] = 5, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1802), 2, + sym_template_string, + sym_arguments, + ACTIONS(4425), 10, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [146048] = 6, + ACTIONS(216), 1, + anon_sym_unique, + STATE(3897), 1, + sym_type_predicate, + STATE(7183), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7387), 2, + sym_identifier, + sym_this, + ACTIONS(218), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [146077] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7391), 1, + anon_sym_BANG, + ACTIONS(7393), 1, + anon_sym_QMARK, + STATE(3803), 1, + sym_formal_parameters, + STATE(4527), 1, + sym__call_signature, + STATE(4714), 1, + sym_type_annotation, + STATE(5971), 1, + sym__initializer, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7389), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146120] = 6, + ACTIONS(216), 1, + anon_sym_unique, + STATE(1512), 1, + sym_type_predicate, + STATE(7436), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7395), 2, + sym_identifier, + sym_this, + ACTIONS(218), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [146149] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7399), 1, + anon_sym_BANG, + ACTIONS(7401), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(5155), 1, + sym_type_annotation, + STATE(5919), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6824), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146192] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7391), 1, + anon_sym_BANG, + ACTIONS(7403), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4714), 1, + sym_type_annotation, + STATE(5976), 1, + sym__call_signature, + STATE(5977), 1, + sym__initializer, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7389), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146235] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7407), 1, + anon_sym_BANG, + ACTIONS(7409), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(4560), 1, + sym_type_annotation, + STATE(5985), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6595), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7405), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146278] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7413), 1, + anon_sym_BANG, + ACTIONS(7415), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(4969), 1, + sym_type_annotation, + STATE(5643), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6975), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146321] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7417), 1, + anon_sym_BANG, + ACTIONS(7419), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(5177), 1, + sym_type_annotation, + STATE(5898), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6822), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146364] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7421), 1, + anon_sym_BANG, + ACTIONS(7423), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(4585), 1, + sym_type_annotation, + STATE(5776), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6616), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146407] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(4079), 1, + sym_formal_parameters, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + STATE(6778), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146446] = 6, + ACTIONS(216), 1, + anon_sym_unique, + STATE(2150), 1, + sym_type_predicate, + STATE(7330), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7425), 2, + sym_identifier, + sym_this, + ACTIONS(218), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [146475] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7427), 1, + anon_sym_BANG, + ACTIONS(7429), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(4788), 1, + sym_type_annotation, + STATE(5815), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6567), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146518] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4019), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(4079), 1, + sym_formal_parameters, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + STATE(6778), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146557] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7433), 1, + anon_sym_BANG, + ACTIONS(7435), 1, + anon_sym_QMARK, + STATE(3803), 1, + sym_formal_parameters, + STATE(4535), 1, + sym__call_signature, + STATE(4684), 1, + sym_type_annotation, + STATE(5965), 1, + sym__initializer, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7431), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146600] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3930), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(4079), 1, + sym_formal_parameters, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + STATE(6778), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146639] = 6, + ACTIONS(4041), 1, + anon_sym_PIPE, + ACTIONS(7249), 1, + anon_sym_LT, + ACTIONS(7315), 1, + anon_sym_DOT, + STATE(3707), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [146668] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7439), 1, + anon_sym_BANG, + ACTIONS(7441), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(4668), 1, + sym_type_annotation, + STATE(5955), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6724), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146711] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(4079), 1, + sym_formal_parameters, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + STATE(6778), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146750] = 4, + ACTIONS(4097), 1, + anon_sym_EQ, + ACTIONS(7257), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [146775] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4016), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(4079), 1, + sym_formal_parameters, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(6778), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146814] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7443), 1, + anon_sym_BANG, + ACTIONS(7445), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(4574), 1, + sym_type_annotation, + STATE(5911), 1, + sym__initializer, + STATE(6068), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146857] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7447), 1, + anon_sym_BANG, + ACTIONS(7449), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(4863), 1, + sym_type_annotation, + STATE(5897), 1, + sym__initializer, + STATE(6092), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146900] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7451), 1, + anon_sym_BANG, + ACTIONS(7453), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(4907), 1, + sym_type_annotation, + STATE(5896), 1, + sym__initializer, + STATE(6098), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146943] = 6, + ACTIONS(3469), 1, + anon_sym_LPAREN, + ACTIONS(4085), 1, + anon_sym_PIPE, + ACTIONS(7455), 1, + anon_sym_DOT, + STATE(3616), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4087), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [146972] = 6, + ACTIONS(216), 1, + anon_sym_unique, + STATE(3436), 1, + sym_type_predicate, + STATE(7215), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7457), 2, + sym_identifier, + sym_this, + ACTIONS(218), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [147001] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7459), 1, + anon_sym_BANG, + ACTIONS(7461), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(4657), 1, + sym_type_annotation, + STATE(5932), 1, + sym__initializer, + STATE(6026), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147044] = 6, + ACTIONS(216), 1, + anon_sym_unique, + STATE(3436), 1, + sym_type_predicate, + STATE(7234), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7463), 2, + sym_identifier, + sym_this, + ACTIONS(218), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [147073] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7465), 1, + anon_sym_BANG, + ACTIONS(7467), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(5240), 1, + sym_type_annotation, + STATE(5778), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6815), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147116] = 4, + ACTIONS(4093), 1, + anon_sym_EQ, + ACTIONS(7469), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147141] = 6, + ACTIONS(216), 1, + anon_sym_unique, + STATE(3436), 1, + sym_type_predicate, + STATE(7270), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7471), 2, + sym_identifier, + sym_this, + ACTIONS(218), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [147170] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7473), 1, + anon_sym_BANG, + ACTIONS(7475), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(5180), 1, + sym_type_annotation, + STATE(5772), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6814), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147213] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7479), 1, + anon_sym_BANG, + ACTIONS(7481), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4683), 1, + sym_type_annotation, + STATE(5759), 1, + sym__call_signature, + STATE(5760), 1, + sym__initializer, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7477), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147256] = 4, + ACTIONS(4103), 1, + anon_sym_EQ, + ACTIONS(7257), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4105), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147281] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7479), 1, + anon_sym_BANG, + ACTIONS(7483), 1, + anon_sym_QMARK, + STATE(3803), 1, + sym_formal_parameters, + STATE(4189), 1, + sym__call_signature, + STATE(4683), 1, + sym_type_annotation, + STATE(5673), 1, + sym__initializer, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7477), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147324] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7487), 1, + anon_sym_BANG, + ACTIONS(7489), 1, + anon_sym_QMARK, + STATE(3803), 1, + sym_formal_parameters, + STATE(4343), 1, + sym__call_signature, + STATE(5206), 1, + sym_type_annotation, + STATE(5866), 1, + sym__initializer, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7485), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147367] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7491), 1, + anon_sym_BANG, + ACTIONS(7493), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(5101), 1, + sym_type_annotation, + STATE(5874), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6237), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147410] = 13, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(7495), 1, + anon_sym_BANG, + ACTIONS(7497), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(4633), 1, + sym_type_annotation, + STATE(5909), 1, + sym__initializer, + STATE(6070), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147453] = 6, + ACTIONS(4259), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [147481] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4313), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [147501] = 6, + ACTIONS(4379), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4381), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [147529] = 6, + ACTIONS(7303), 1, + anon_sym_LT, + ACTIONS(7505), 1, + anon_sym_DOT, + ACTIONS(7507), 1, + anon_sym_is, + STATE(3797), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147557] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7511), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(3968), 1, + sym__call_signature, + STATE(4959), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7509), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147593] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7515), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4989), 1, + sym__call_signature, + STATE(4990), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7513), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147629] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7519), 1, + anon_sym_COLON, + ACTIONS(7521), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4106), 1, + sym__call_signature, + STATE(4824), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7517), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147665] = 4, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4113), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_extends, + [147689] = 3, + ACTIONS(3419), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3421), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [147711] = 4, + ACTIONS(4471), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4473), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_extends, + [147735] = 3, + ACTIONS(3266), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3268), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [147757] = 6, + ACTIONS(4459), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4461), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [147785] = 3, + ACTIONS(3390), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3392), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [147807] = 4, + ACTIONS(4445), 1, + anon_sym_EQ, + ACTIONS(7523), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4447), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + [147831] = 3, + ACTIONS(3270), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3272), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [147853] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7525), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4957), 1, + sym__call_signature, + STATE(4959), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7509), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147889] = 3, + ACTIONS(3394), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3396), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [147911] = 3, + ACTIONS(3358), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3360), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [147933] = 6, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4135), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [147961] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7527), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4109), 1, + sym__call_signature, + STATE(4990), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7513), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147997] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7531), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4170), 1, + sym__call_signature, + STATE(4630), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7529), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148033] = 6, + ACTIONS(4125), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4127), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [148061] = 5, + ACTIONS(4093), 1, + anon_sym_PIPE, + ACTIONS(7249), 1, + anon_sym_LT, + STATE(3665), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148087] = 6, + ACTIONS(4117), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [148115] = 11, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7255), 1, + anon_sym_DOT, + ACTIONS(7533), 1, + anon_sym_EQ, + ACTIONS(7538), 1, + anon_sym_COLON, + ACTIONS(7540), 1, + anon_sym_extends, + STATE(3381), 1, + sym_type_arguments, + STATE(5375), 1, + sym_constraint, + STATE(7007), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7535), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(3524), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [148153] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7545), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4032), 1, + sym__call_signature, + STATE(5141), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7543), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148189] = 6, + ACTIONS(4267), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4269), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [148217] = 6, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1802), 2, + sym_template_string, + sym_arguments, + ACTIONS(4425), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148245] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7547), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4824), 1, + sym_type_annotation, + STATE(4825), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7517), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148281] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4321), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148301] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4317), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148321] = 3, + ACTIONS(4359), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4361), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148343] = 3, + ACTIONS(4367), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4369), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148365] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4313), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148385] = 3, + ACTIONS(4371), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4373), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148407] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148427] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7549), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(5141), 1, + sym_type_annotation, + STATE(5144), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7543), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148463] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148483] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7551), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4629), 1, + sym__call_signature, + STATE(4630), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7529), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148519] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4305), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148539] = 3, + ACTIONS(4375), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4377), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148561] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4301), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148581] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4305), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148601] = 5, + ACTIONS(3471), 1, + anon_sym_DOT, + ACTIONS(3475), 1, + anon_sym_QMARK_DOT, + ACTIONS(3477), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3467), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148627] = 5, + ACTIONS(4485), 1, + anon_sym_PIPE, + ACTIONS(7553), 1, + anon_sym_DOT, + ACTIONS(7555), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4487), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148653] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4143), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148673] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4143), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148693] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4301), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148713] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4297), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148733] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4143), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148753] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4147), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148773] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4147), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148793] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4147), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148813] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148833] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4293), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148853] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4297), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148873] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4293), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148893] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148913] = 4, + ACTIONS(1861), 1, + anon_sym_DOT, + ACTIONS(4383), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4385), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148937] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148957] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4155), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [148977] = 3, + ACTIONS(3653), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3457), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148999] = 3, + ACTIONS(3655), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3463), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149021] = 4, + ACTIONS(1857), 1, + anon_sym_DOT, + ACTIONS(4383), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4385), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149045] = 3, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4413), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149067] = 3, + ACTIONS(4419), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4421), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149089] = 3, + ACTIONS(4289), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4287), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149111] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4247), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [149131] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4243), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [149151] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4171), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [149171] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4171), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [149191] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4243), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [149211] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4243), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [149231] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4239), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [149251] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4171), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [149271] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4239), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [149291] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4239), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [149311] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(4690), 1, + sym_type_annotation, + STATE(5802), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6598), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149348] = 7, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [149377] = 3, + ACTIONS(4357), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4355), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149398] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(4613), 1, + sym_type_annotation, + STATE(5750), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6712), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149435] = 3, + ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4083), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [149456] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(4915), 1, + sym_type_annotation, + STATE(5891), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6103), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149493] = 4, + ACTIONS(4097), 1, + anon_sym_PIPE, + ACTIONS(7317), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149516] = 4, + ACTIONS(4093), 1, + anon_sym_PIPE, + ACTIONS(7561), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [149539] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3803), 1, + sym_formal_parameters, + STATE(4533), 1, + sym__call_signature, + STATE(4694), 1, + sym_type_annotation, + STATE(5969), 1, + sym__initializer, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149576] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(4598), 1, + sym_type_annotation, + STATE(5774), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6664), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149613] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3803), 1, + sym_formal_parameters, + STATE(4469), 1, + sym__call_signature, + STATE(4854), 1, + sym_type_annotation, + STATE(5729), 1, + sym__initializer, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7565), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149650] = 7, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4019), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [149679] = 9, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3722), 1, + sym_formal_parameters, + STATE(4903), 1, + sym_type_annotation, + STATE(4964), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7567), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149712] = 5, + ACTIONS(7303), 1, + anon_sym_LT, + ACTIONS(7505), 1, + anon_sym_DOT, + STATE(3797), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [149737] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(5225), 1, + sym_type_annotation, + STATE(5835), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6819), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7569), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149774] = 9, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3722), 1, + sym_formal_parameters, + STATE(3972), 1, + sym__call_signature, + STATE(4966), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7571), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149807] = 8, + ACTIONS(3540), 1, + anon_sym_COLON, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7255), 1, + anon_sym_DOT, + ACTIONS(7573), 1, + anon_sym_QMARK, + STATE(3381), 1, + sym_type_arguments, + STATE(6729), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [149838] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(4853), 1, + sym_type_annotation, + STATE(5900), 1, + sym__initializer, + STATE(6091), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149875] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(4870), 1, + sym_type_annotation, + STATE(5724), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6865), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149912] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3722), 1, + sym_formal_parameters, + STATE(4649), 1, + sym_type_annotation, + STATE(5715), 1, + sym__call_signature, + STATE(5744), 1, + sym__initializer, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7578), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149949] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(4079), 1, + sym_formal_parameters, + STATE(6778), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4035), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3933), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [149980] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3803), 1, + sym_formal_parameters, + STATE(4178), 1, + sym__call_signature, + STATE(4649), 1, + sym_type_annotation, + STATE(5448), 1, + sym__initializer, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7578), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150017] = 8, + ACTIONS(3499), 1, + anon_sym_DOT, + ACTIONS(3501), 1, + anon_sym_QMARK_DOT, + ACTIONS(7580), 1, + anon_sym_LPAREN, + ACTIONS(7582), 1, + anon_sym_LT, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3467), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150048] = 8, + ACTIONS(7229), 1, + anon_sym_DOT, + ACTIONS(7231), 1, + anon_sym_QMARK_DOT, + ACTIONS(7580), 1, + anon_sym_LPAREN, + ACTIONS(7582), 1, + anon_sym_LT, + STATE(3356), 1, + sym_arguments, + STATE(3398), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4059), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150079] = 8, + ACTIONS(7233), 1, + anon_sym_DOT, + ACTIONS(7235), 1, + anon_sym_QMARK_DOT, + ACTIONS(7580), 1, + anon_sym_LPAREN, + ACTIONS(7582), 1, + anon_sym_LT, + STATE(3340), 1, + sym_arguments, + STATE(3394), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4051), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150110] = 9, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3722), 1, + sym_formal_parameters, + STATE(4965), 1, + sym__call_signature, + STATE(4966), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7571), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150143] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3803), 1, + sym_formal_parameters, + STATE(4303), 1, + sym__call_signature, + STATE(5231), 1, + sym_type_annotation, + STATE(5886), 1, + sym__initializer, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7584), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150180] = 3, + ACTIONS(1825), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1823), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [150201] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(5146), 1, + sym_type_annotation, + STATE(5879), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6150), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150238] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(4958), 1, + sym_type_annotation, + STATE(5648), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6926), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150275] = 3, + ACTIONS(4429), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4431), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150296] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(5056), 1, + sym_type_annotation, + STATE(5872), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6245), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150333] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1895), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [150352] = 7, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4016), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [150381] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(4664), 1, + sym_type_annotation, + STATE(5953), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6229), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150418] = 9, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3722), 1, + sym_formal_parameters, + STATE(4171), 1, + sym__call_signature, + STATE(4634), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7586), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150451] = 7, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3930), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [150480] = 9, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3722), 1, + sym_formal_parameters, + STATE(4622), 1, + sym__call_signature, + STATE(4634), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7586), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150513] = 9, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3722), 1, + sym_formal_parameters, + STATE(5271), 1, + sym_type_annotation, + STATE(5273), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150546] = 9, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3722), 1, + sym_formal_parameters, + STATE(4105), 1, + sym__call_signature, + STATE(4903), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7567), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150579] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3803), 1, + sym_formal_parameters, + STATE(4517), 1, + sym__call_signature, + STATE(4735), 1, + sym_type_annotation, + STATE(5980), 1, + sym__initializer, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150616] = 5, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7592), 1, + anon_sym_DOT, + STATE(3717), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4087), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150641] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3722), 1, + sym_formal_parameters, + STATE(4694), 1, + sym_type_annotation, + STATE(5956), 1, + sym__initializer, + STATE(5958), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150678] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1819), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [150697] = 9, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3722), 1, + sym_formal_parameters, + STATE(5128), 1, + sym_type_annotation, + STATE(5139), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7594), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150730] = 4, + ACTIONS(4495), 1, + anon_sym_PIPE, + ACTIONS(7596), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4497), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [150753] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(5245), 1, + sym_type_annotation, + STATE(5453), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(7083), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150790] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(4738), 1, + sym_type_annotation, + STATE(5811), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6570), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150827] = 7, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [150856] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(5119), 1, + sym_type_annotation, + STATE(5533), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6970), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150893] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(4648), 1, + sym_type_annotation, + STATE(5947), 1, + sym__initializer, + STATE(6045), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150930] = 9, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3722), 1, + sym_formal_parameters, + STATE(4033), 1, + sym__call_signature, + STATE(5128), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7594), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150963] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(4980), 1, + sym_type_annotation, + STATE(5640), 1, + sym__initializer, + STATE(6102), 1, + sym_type_parameters, + STATE(6987), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151000] = 4, + ACTIONS(4103), 1, + anon_sym_PIPE, + ACTIONS(7317), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4105), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151023] = 9, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(3722), 1, + sym_formal_parameters, + STATE(4166), 1, + sym__call_signature, + STATE(5271), 1, + sym_type_annotation, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151056] = 12, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(7239), 1, + anon_sym_STAR, + ACTIONS(7243), 1, + anon_sym_LBRACE, + ACTIONS(7359), 1, + sym_identifier, + ACTIONS(7361), 1, + anon_sym_type, + STATE(5103), 1, + sym_import_require_clause, + STATE(5108), 1, + sym_string, + STATE(6171), 1, + sym__import_identifier, + STATE(6914), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7366), 2, + sym_namespace_import, + sym_named_imports, + [151095] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3396), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151113] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7602), 1, + anon_sym_PIPE, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4461), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [151137] = 4, + ACTIONS(4439), 1, + anon_sym_PIPE, + ACTIONS(7606), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4441), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151159] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3421), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151177] = 3, + ACTIONS(4103), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4105), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151197] = 3, + ACTIONS(2376), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2374), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151217] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3392), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151235] = 4, + ACTIONS(7299), 1, + anon_sym_DOT, + ACTIONS(7301), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3467), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151257] = 4, + ACTIONS(4455), 1, + anon_sym_PIPE, + ACTIONS(7606), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151279] = 11, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(7608), 1, + sym_identifier, + ACTIONS(7610), 1, + anon_sym_type, + ACTIONS(7612), 1, + anon_sym_COMMA, + ACTIONS(7614), 1, + anon_sym_RBRACE, + ACTIONS(7616), 1, + anon_sym_typeof, + STATE(5555), 1, + sym_import_specifier, + STATE(6931), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7125), 2, + sym__module_export_name, + sym_string, + [151315] = 3, + ACTIONS(4275), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4277), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151335] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4361), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151353] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4369), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151371] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4373), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151389] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4377), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151407] = 3, + ACTIONS(4271), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4273), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151427] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7602), 1, + anon_sym_PIPE, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4269), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [151451] = 3, + ACTIONS(1861), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4385), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [151471] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3457), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151489] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3463), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151507] = 3, + ACTIONS(4263), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4265), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151527] = 3, + ACTIONS(1857), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4385), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [151547] = 3, + ACTIONS(4259), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151567] = 3, + ACTIONS(4433), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4435), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151587] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7602), 1, + anon_sym_PIPE, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [151611] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7602), 1, + anon_sym_PIPE, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [151635] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7602), 1, + anon_sym_PIPE, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4127), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [151659] = 3, + ACTIONS(4455), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151679] = 3, + ACTIONS(2380), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2378), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151699] = 3, + ACTIONS(2364), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2362), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151719] = 4, + ACTIONS(4111), 1, + anon_sym_PIPE, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4113), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151741] = 3, + ACTIONS(4165), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151761] = 3, + ACTIONS(4161), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4163), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151781] = 3, + ACTIONS(4351), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4353), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151801] = 3, + ACTIONS(4157), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4159), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151821] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4413), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151839] = 3, + ACTIONS(4093), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151859] = 3, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2370), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151879] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4421), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151897] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(4079), 1, + sym_formal_parameters, + STATE(6778), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [151923] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5758), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [151941] = 3, + ACTIONS(4491), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4493), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [151961] = 4, + ACTIONS(4445), 1, + anon_sym_PIPE, + ACTIONS(7618), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4447), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [151983] = 3, + ACTIONS(4137), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4139), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152003] = 3, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4425), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152023] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4287), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152041] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7602), 1, + anon_sym_PIPE, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4135), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [152065] = 4, + ACTIONS(7303), 1, + anon_sym_LT, + STATE(3836), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152087] = 4, + ACTIONS(7620), 1, + anon_sym_DOT, + ACTIONS(7622), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4487), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152109] = 5, + ACTIONS(4455), 1, + anon_sym_PIPE, + ACTIONS(7606), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(4453), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [152133] = 3, + ACTIONS(4415), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152153] = 3, + ACTIONS(4407), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4409), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152173] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [152191] = 6, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7255), 1, + anon_sym_DOT, + ACTIONS(7624), 1, + anon_sym_is, + STATE(3381), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [152217] = 3, + ACTIONS(4097), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152237] = 3, + ACTIONS(4403), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4405), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152257] = 3, + ACTIONS(4399), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4401), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152277] = 3, + ACTIONS(4395), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4397), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152297] = 3, + ACTIONS(4503), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4505), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152317] = 3, + ACTIONS(2368), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2366), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152337] = 3, + ACTIONS(4481), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4483), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152357] = 3, + ACTIONS(4347), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4349), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152377] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7602), 1, + anon_sym_PIPE, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4381), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [152401] = 3, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4341), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152421] = 3, + ACTIONS(4475), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4477), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152441] = 3, + ACTIONS(4463), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4465), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152461] = 3, + ACTIONS(4149), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4151), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152481] = 3, + ACTIONS(4467), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4469), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152501] = 4, + ACTIONS(4471), 1, + anon_sym_PIPE, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4473), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152523] = 3, + ACTIONS(4345), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4343), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152543] = 3, + ACTIONS(4379), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4381), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [152563] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7602), 1, + anon_sym_PIPE, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7626), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [152586] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7628), 1, + sym_identifier, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7632), 1, + anon_sym_extends, + ACTIONS(7634), 1, + anon_sym_implements, + STATE(2316), 1, + sym_class_body, + STATE(4123), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6953), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152621] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4355), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152638] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7632), 1, + anon_sym_extends, + ACTIONS(7634), 1, + anon_sym_implements, + ACTIONS(7636), 1, + sym_identifier, + STATE(2316), 1, + sym_class_body, + STATE(4123), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6953), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152673] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4431), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152690] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7632), 1, + anon_sym_extends, + ACTIONS(7634), 1, + anon_sym_implements, + ACTIONS(7638), 1, + sym_identifier, + STATE(2316), 1, + sym_class_body, + STATE(4123), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6953), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152725] = 5, + ACTIONS(3509), 1, + anon_sym_LPAREN, + ACTIONS(7267), 1, + anon_sym_DOT, + STATE(3364), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4087), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [152748] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7632), 1, + anon_sym_extends, + ACTIONS(7634), 1, + anon_sym_implements, + ACTIONS(7640), 1, + sym_identifier, + STATE(2442), 1, + sym_class_body, + STATE(3955), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6251), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152783] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7632), 1, + anon_sym_extends, + ACTIONS(7634), 1, + anon_sym_implements, + ACTIONS(7642), 1, + sym_identifier, + STATE(2442), 1, + sym_class_body, + STATE(3955), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6251), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152818] = 4, + ACTIONS(7646), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4403), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7644), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [152839] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7632), 1, + anon_sym_extends, + ACTIONS(7634), 1, + anon_sym_implements, + ACTIONS(7648), 1, + sym_identifier, + STATE(2316), 1, + sym_class_body, + STATE(4123), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6953), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152874] = 9, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(7608), 1, + sym_identifier, + ACTIONS(7650), 1, + anon_sym_type, + ACTIONS(7652), 1, + anon_sym_as, + STATE(6864), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7363), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7154), 2, + sym__module_export_name, + sym_string, + [152905] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7632), 1, + anon_sym_extends, + ACTIONS(7634), 1, + anon_sym_implements, + ACTIONS(7654), 1, + sym_identifier, + ACTIONS(7656), 1, + anon_sym_LBRACE, + STATE(1821), 1, + sym_class_body, + STATE(4062), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6588), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152940] = 5, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2173), 2, + sym_template_string, + sym_arguments, + ACTIONS(4425), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152963] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4083), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [152980] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7632), 1, + anon_sym_extends, + ACTIONS(7634), 1, + anon_sym_implements, + ACTIONS(7656), 1, + anon_sym_LBRACE, + ACTIONS(7658), 1, + sym_identifier, + STATE(1675), 1, + sym_class_body, + STATE(4067), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6094), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153015] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7632), 1, + anon_sym_extends, + ACTIONS(7634), 1, + anon_sym_implements, + ACTIONS(7656), 1, + anon_sym_LBRACE, + ACTIONS(7660), 1, + sym_identifier, + STATE(2604), 1, + sym_class_body, + STATE(3964), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6821), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153050] = 3, + ACTIONS(7662), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153069] = 3, + ACTIONS(7507), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153088] = 4, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4035), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3933), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [153109] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(7608), 1, + sym_identifier, + ACTIONS(7610), 1, + anon_sym_type, + ACTIONS(7616), 1, + anon_sym_typeof, + ACTIONS(7664), 1, + anon_sym_RBRACE, + STATE(6299), 1, + sym_import_specifier, + STATE(6931), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7125), 2, + sym__module_export_name, + sym_string, + [153142] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1823), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [153159] = 3, + ACTIONS(7507), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4105), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153178] = 9, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(7666), 1, + sym_identifier, + ACTIONS(7670), 1, + anon_sym_COMMA, + ACTIONS(7672), 1, + anon_sym_RBRACE, + STATE(5494), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7668), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5499), 2, + sym__module_export_name, + sym_string, + [153209] = 10, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(7608), 1, + sym_identifier, + ACTIONS(7610), 1, + anon_sym_type, + ACTIONS(7616), 1, + anon_sym_typeof, + ACTIONS(7674), 1, + anon_sym_RBRACE, + STATE(6299), 1, + sym_import_specifier, + STATE(6931), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7125), 2, + sym__module_export_name, + sym_string, + [153242] = 4, + ACTIONS(7646), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4467), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7676), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [153263] = 6, + ACTIONS(7255), 1, + anon_sym_DOT, + ACTIONS(7582), 1, + anon_sym_LT, + ACTIONS(7678), 1, + anon_sym_is, + STATE(3381), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153288] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7632), 1, + anon_sym_extends, + ACTIONS(7634), 1, + anon_sym_implements, + ACTIONS(7680), 1, + sym_identifier, + STATE(2442), 1, + sym_class_body, + STATE(3955), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6251), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153323] = 11, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7632), 1, + anon_sym_extends, + ACTIONS(7634), 1, + anon_sym_implements, + ACTIONS(7682), 1, + sym_identifier, + STATE(2442), 1, + sym_class_body, + STATE(3955), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6251), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153358] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7686), 1, + anon_sym_BANG, + STATE(5085), 1, + sym_type_annotation, + STATE(5562), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7688), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7684), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153387] = 8, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7686), 1, + anon_sym_BANG, + ACTIONS(7690), 1, + anon_sym_EQ, + STATE(4643), 1, + sym__initializer, + STATE(5085), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7688), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7684), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153416] = 3, + ACTIONS(7692), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4497), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153435] = 7, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4714), 1, + sym_type_annotation, + STATE(5975), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7391), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7389), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153461] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7694), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [153477] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4341), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153493] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4483), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153509] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4349), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153525] = 10, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7696), 1, + anon_sym_DOT, + STATE(1691), 1, + sym_template_string, + STATE(2421), 1, + sym_arguments, + STATE(5310), 1, + sym_type_arguments, + STATE(6313), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153557] = 10, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7698), 1, + anon_sym_DOT, + STATE(1691), 1, + sym_template_string, + STATE(2568), 1, + sym_arguments, + STATE(5310), 1, + sym_type_arguments, + STATE(6313), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153589] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2366), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153605] = 3, + ACTIONS(7700), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4113), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [153623] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7702), 1, + anon_sym_BANG, + ACTIONS(7704), 1, + anon_sym_QMARK, + STATE(4631), 1, + sym_type_annotation, + STATE(5940), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153651] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7708), 1, + anon_sym_BANG, + ACTIONS(7710), 1, + anon_sym_QMARK, + STATE(5107), 1, + sym_type_annotation, + STATE(5547), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7706), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153679] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5341), 1, + anon_sym_RBRACE, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [153705] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4493), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153721] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153737] = 3, + ACTIONS(7712), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153755] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153771] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7714), 1, + anon_sym_BANG, + ACTIONS(7716), 1, + anon_sym_QMARK, + STATE(4627), 1, + sym_type_annotation, + STATE(5938), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153799] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153815] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4505), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153831] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7656), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(1713), 1, + sym_class_body, + STATE(4141), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6832), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153863] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(3958), 1, + sym_type_parameters, + STATE(4764), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6593), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153895] = 7, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4858), 1, + sym_type_annotation, + STATE(5731), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7726), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7724), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153921] = 7, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4684), 1, + sym_type_annotation, + STATE(5964), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7433), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7431), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153947] = 10, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(2183), 1, + sym_template_string, + STATE(2488), 1, + sym_arguments, + STATE(3726), 1, + sym_type_arguments, + STATE(6362), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153979] = 3, + ACTIONS(7700), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4473), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [153997] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4343), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154013] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4151), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154029] = 5, + ACTIONS(7267), 1, + anon_sym_DOT, + ACTIONS(7580), 1, + anon_sym_LPAREN, + STATE(3364), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4087), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154051] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4353), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154067] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5227), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [154093] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + anon_sym_BANG, + ACTIONS(7730), 1, + anon_sym_QMARK, + STATE(4818), 1, + sym_type_annotation, + STATE(5464), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154121] = 3, + ACTIONS(3270), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3272), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [154139] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7656), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2610), 1, + sym_class_body, + STATE(4075), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6276), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154171] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7732), 1, + anon_sym_BANG, + ACTIONS(7734), 1, + anon_sym_QMARK, + STATE(5236), 1, + sym_type_annotation, + STATE(5818), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154199] = 9, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(7608), 1, + sym_identifier, + ACTIONS(7610), 1, + anon_sym_type, + ACTIONS(7616), 1, + anon_sym_typeof, + STATE(6299), 1, + sym_import_specifier, + STATE(6931), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7125), 2, + sym__module_export_name, + sym_string, + [154229] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7736), 1, + anon_sym_BANG, + ACTIONS(7738), 1, + anon_sym_QMARK, + STATE(5254), 1, + sym_type_annotation, + STATE(5806), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154257] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7740), 1, + anon_sym_BANG, + ACTIONS(7742), 1, + anon_sym_QMARK, + STATE(4880), 1, + sym_type_annotation, + STATE(5416), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154285] = 10, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7744), 1, + anon_sym_DOT, + STATE(1691), 1, + sym_template_string, + STATE(2099), 1, + sym_arguments, + STATE(5310), 1, + sym_type_arguments, + STATE(6313), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154317] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5238), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [154343] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(786), 1, + sym_class_body, + STATE(4092), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6929), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154375] = 10, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(7249), 1, + anon_sym_LT, + STATE(1691), 1, + sym_template_string, + STATE(2093), 1, + sym_arguments, + STATE(3536), 1, + sym_type_arguments, + STATE(6313), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154407] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7656), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(1798), 1, + sym_class_body, + STATE(3973), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6577), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154439] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4469), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154455] = 10, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(1554), 1, + sym_arguments, + STATE(1691), 1, + sym_template_string, + STATE(3471), 1, + sym_type_arguments, + STATE(6313), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154487] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7746), 1, + anon_sym_BANG, + ACTIONS(7748), 1, + anon_sym_QMARK, + STATE(4930), 1, + sym_type_annotation, + STATE(5418), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154515] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(4137), 1, + sym_type_parameters, + STATE(4579), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6808), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154547] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7750), 1, + anon_sym_LBRACE, + STATE(862), 1, + sym_class_body, + STATE(4125), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6683), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154579] = 10, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(1691), 1, + sym_template_string, + STATE(2567), 1, + sym_arguments, + STATE(3471), 1, + sym_type_arguments, + STATE(6313), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154611] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7752), 1, + anon_sym_BANG, + ACTIONS(7754), 1, + anon_sym_QMARK, + STATE(5063), 1, + sym_type_annotation, + STATE(5424), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154639] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2363), 1, + sym_class_body, + STATE(4070), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6573), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154671] = 10, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7698), 1, + anon_sym_DOT, + STATE(1581), 1, + sym_arguments, + STATE(1691), 1, + sym_template_string, + STATE(5310), 1, + sym_type_arguments, + STATE(6313), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154703] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7756), 1, + anon_sym_BANG, + ACTIONS(7758), 1, + anon_sym_QMARK, + STATE(4674), 1, + sym_type_annotation, + STATE(5800), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154731] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4465), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154747] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7760), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [154763] = 6, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(7762), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7626), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [154787] = 5, + ACTIONS(7700), 1, + anon_sym_AMP, + ACTIONS(7764), 1, + anon_sym_PIPE, + ACTIONS(7766), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4381), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [154809] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4381), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154825] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(4053), 1, + sym_type_parameters, + STATE(4748), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6895), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154857] = 4, + ACTIONS(7768), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4894), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7644), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [154877] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3268), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154893] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(695), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5516), 1, + aux_sym_object_repeat1, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [154919] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2175), 1, + sym_class_body, + STATE(4013), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6886), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154951] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3272), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154967] = 5, + ACTIONS(7255), 1, + anon_sym_DOT, + ACTIONS(7582), 1, + anon_sym_LT, + STATE(3381), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154989] = 7, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4683), 1, + sym_type_annotation, + STATE(5593), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7479), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7477), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155015] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3360), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155031] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(7666), 1, + sym_identifier, + ACTIONS(7770), 1, + anon_sym_RBRACE, + STATE(6663), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7668), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5499), 2, + sym__module_export_name, + sym_string, + [155059] = 5, + ACTIONS(7700), 1, + anon_sym_AMP, + ACTIONS(7764), 1, + anon_sym_PIPE, + ACTIONS(7766), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4461), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [155081] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1895), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155097] = 9, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(5311), 1, + sym_type_arguments, + STATE(6362), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2183), 2, + sym_template_string, + sym_arguments, + [155127] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2406), 1, + sym_class_body, + STATE(4088), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6615), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155159] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7772), 1, + anon_sym_BANG, + ACTIONS(7774), 1, + anon_sym_QMARK, + STATE(5243), 1, + sym_type_annotation, + STATE(5816), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155187] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [155213] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7750), 1, + anon_sym_LBRACE, + STATE(808), 1, + sym_class_body, + STATE(4008), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6062), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155245] = 4, + ACTIONS(7712), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4453), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [155265] = 8, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(7666), 1, + sym_identifier, + ACTIONS(7776), 1, + anon_sym_RBRACE, + STATE(6663), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7668), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5499), 2, + sym__module_export_name, + sym_string, + [155293] = 10, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7778), 1, + anon_sym_DOT, + STATE(1691), 1, + sym_template_string, + STATE(2599), 1, + sym_arguments, + STATE(5310), 1, + sym_type_arguments, + STATE(6313), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155325] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7780), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [155341] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7782), 1, + anon_sym_BANG, + ACTIONS(7784), 1, + anon_sym_QMARK, + STATE(4883), 1, + sym_type_annotation, + STATE(5708), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155369] = 3, + ACTIONS(7786), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4447), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [155387] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1819), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155403] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4397), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155419] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4401), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155435] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4405), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155451] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7788), 1, + anon_sym_BANG, + ACTIONS(7790), 1, + anon_sym_QMARK, + STATE(4700), 1, + sym_type_annotation, + STATE(5804), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155479] = 3, + ACTIONS(7712), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4441), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155497] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7792), 1, + anon_sym_BANG, + ACTIONS(7794), 1, + anon_sym_QMARK, + STATE(5145), 1, + sym_type_annotation, + STATE(5433), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155525] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7796), 1, + anon_sym_BANG, + ACTIONS(7798), 1, + anon_sym_QMARK, + STATE(4838), 1, + sym_type_annotation, + STATE(5906), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155553] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7800), 1, + anon_sym_BANG, + ACTIONS(7802), 1, + anon_sym_QMARK, + STATE(4834), 1, + sym_type_annotation, + STATE(5907), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155581] = 5, + ACTIONS(7700), 1, + anon_sym_AMP, + ACTIONS(7764), 1, + anon_sym_PIPE, + ACTIONS(7766), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4135), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [155603] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(779), 1, + sym_class_body, + STATE(4101), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6655), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155635] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4435), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155651] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2376), 1, + sym_class_body, + STATE(4120), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6760), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155683] = 7, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5206), 1, + sym_type_annotation, + STATE(5884), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7487), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7485), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155709] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7804), 1, + anon_sym_BANG, + ACTIONS(7806), 1, + anon_sym_QMARK, + STATE(4752), 1, + sym_type_annotation, + STATE(5908), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155737] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7808), 1, + anon_sym_LBRACE, + STATE(219), 1, + sym_class_body, + STATE(4060), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(7062), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155769] = 10, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(1999), 1, + sym_arguments, + STATE(2183), 1, + sym_template_string, + STATE(3726), 1, + sym_type_arguments, + STATE(6362), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155801] = 3, + ACTIONS(3358), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3360), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [155819] = 7, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5085), 1, + sym_type_annotation, + STATE(5566), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7688), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7684), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155845] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4139), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155861] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4409), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155877] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7810), 1, + anon_sym_BANG, + ACTIONS(7812), 1, + anon_sym_QMARK, + STATE(4652), 1, + sym_type_annotation, + STATE(5950), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155905] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7814), 1, + anon_sym_BANG, + ACTIONS(7816), 1, + anon_sym_QMARK, + STATE(4671), 1, + sym_type_annotation, + STATE(5799), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155933] = 10, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7818), 1, + anon_sym_DOT, + STATE(2183), 1, + sym_template_string, + STATE(2521), 1, + sym_arguments, + STATE(5311), 1, + sym_type_arguments, + STATE(6362), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155965] = 10, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7820), 1, + anon_sym_DOT, + STATE(1955), 1, + sym_arguments, + STATE(2183), 1, + sym_template_string, + STATE(5311), 1, + sym_type_arguments, + STATE(6362), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155997] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7822), 1, + anon_sym_BANG, + ACTIONS(7824), 1, + anon_sym_QMARK, + STATE(4637), 1, + sym_type_annotation, + STATE(5826), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156025] = 10, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(1691), 1, + sym_template_string, + STATE(2423), 1, + sym_arguments, + STATE(3471), 1, + sym_type_arguments, + STATE(6313), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156057] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4477), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156073] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7826), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [156089] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7828), 1, + anon_sym_BANG, + ACTIONS(7830), 1, + anon_sym_QMARK, + STATE(5031), 1, + sym_type_annotation, + STATE(5863), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156117] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7832), 1, + anon_sym_BANG, + ACTIONS(7834), 1, + anon_sym_QMARK, + STATE(4905), 1, + sym_type_annotation, + STATE(5682), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156145] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2370), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156161] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4159), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156177] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7836), 1, + anon_sym_BANG, + ACTIONS(7838), 1, + anon_sym_QMARK, + STATE(4912), 1, + sym_type_annotation, + STATE(5677), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156205] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7840), 1, + anon_sym_BANG, + ACTIONS(7842), 1, + anon_sym_QMARK, + STATE(4916), 1, + sym_type_annotation, + STATE(5676), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156233] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7844), 1, + anon_sym_BANG, + ACTIONS(7846), 1, + anon_sym_QMARK, + STATE(5012), 1, + sym_type_annotation, + STATE(5859), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156261] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7848), 1, + anon_sym_BANG, + ACTIONS(7850), 1, + anon_sym_QMARK, + STATE(5009), 1, + sym_type_annotation, + STATE(5858), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156289] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4163), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156305] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156321] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7854), 1, + anon_sym_QMARK, + STATE(4982), 1, + sym_type_annotation, + STATE(5854), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156349] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2378), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156365] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7856), 1, + anon_sym_BANG, + ACTIONS(7858), 1, + anon_sym_QMARK, + STATE(4922), 1, + sym_type_annotation, + STATE(5671), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156393] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4417), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156409] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7860), 1, + anon_sym_BANG, + ACTIONS(7862), 1, + anon_sym_QMARK, + STATE(4642), 1, + sym_type_annotation, + STATE(5945), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156437] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2216), 1, + sym_class_body, + STATE(4121), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6346), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156469] = 10, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(1691), 1, + sym_template_string, + STATE(2592), 1, + sym_arguments, + STATE(3471), 1, + sym_type_arguments, + STATE(6313), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156501] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4425), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156517] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7864), 1, + anon_sym_BANG, + ACTIONS(7866), 1, + anon_sym_QMARK, + STATE(4612), 1, + sym_type_annotation, + STATE(5798), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156545] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7868), 1, + anon_sym_BANG, + ACTIONS(7870), 1, + anon_sym_QMARK, + STATE(5181), 1, + sym_type_annotation, + STATE(5501), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7706), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156573] = 7, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7690), 1, + anon_sym_EQ, + STATE(4647), 1, + sym__initializer, + STATE(5085), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7688), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7684), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156599] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(4097), 1, + sym_type_parameters, + STATE(4610), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6674), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156631] = 9, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4071), 1, + anon_sym_DOT, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(5310), 1, + sym_type_arguments, + STATE(6313), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1691), 2, + sym_template_string, + sym_arguments, + [156661] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_BANG, + ACTIONS(7874), 1, + anon_sym_QMARK, + STATE(4938), 1, + sym_type_annotation, + STATE(5844), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156689] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7876), 1, + anon_sym_BANG, + ACTIONS(7878), 1, + anon_sym_QMARK, + STATE(4931), 1, + sym_type_annotation, + STATE(5661), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156717] = 5, + ACTIONS(7700), 1, + anon_sym_AMP, + ACTIONS(7764), 1, + anon_sym_PIPE, + ACTIONS(7766), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [156739] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_BANG, + ACTIONS(7882), 1, + anon_sym_QMARK, + STATE(4876), 1, + sym_type_annotation, + STATE(5843), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156767] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7884), 1, + anon_sym_BANG, + ACTIONS(7886), 1, + anon_sym_QMARK, + STATE(4864), 1, + sym_type_annotation, + STATE(5842), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156795] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5291), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [156821] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7888), 1, + anon_sym_BANG, + ACTIONS(7890), 1, + anon_sym_QMARK, + STATE(4861), 1, + sym_type_annotation, + STATE(5841), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156849] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156865] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4265), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156881] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7892), 1, + anon_sym_BANG, + ACTIONS(7894), 1, + anon_sym_QMARK, + STATE(4842), 1, + sym_type_annotation, + STATE(5837), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156909] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7896), 1, + anon_sym_BANG, + ACTIONS(7898), 1, + anon_sym_QMARK, + STATE(4840), 1, + sym_type_annotation, + STATE(5836), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156937] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4225), 1, + anon_sym_EQ, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, + STATE(5905), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [156963] = 3, + ACTIONS(3266), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3268), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [156981] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7900), 1, + anon_sym_BANG, + ACTIONS(7902), 1, + anon_sym_QMARK, + STATE(4636), 1, + sym_type_annotation, + STATE(5942), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157009] = 5, + ACTIONS(7700), 1, + anon_sym_AMP, + ACTIONS(7764), 1, + anon_sym_PIPE, + ACTIONS(7766), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4269), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [157031] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4273), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157047] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7904), 1, + anon_sym_BANG, + ACTIONS(7906), 1, + anon_sym_QMARK, + STATE(4611), 1, + sym_type_annotation, + STATE(5930), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157075] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4277), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157091] = 10, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(4185), 1, + anon_sym_QMARK_DOT, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(7908), 1, + anon_sym_DOT, + STATE(1581), 1, + sym_arguments, + STATE(1691), 1, + sym_template_string, + STATE(5310), 1, + sym_type_arguments, + STATE(6313), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157123] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2389), 1, + sym_class_body, + STATE(4011), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6314), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157155] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4105), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157171] = 4, + ACTIONS(7768), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4774), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7676), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [157191] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7910), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [157207] = 10, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7808), 1, + anon_sym_LBRACE, + STATE(210), 1, + sym_class_body, + STATE(4107), 1, + sym_type_parameters, + STATE(5471), 1, + sym_extends_clause, + STATE(6669), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157239] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2362), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157255] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2374), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157271] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7912), 1, + anon_sym_BANG, + ACTIONS(7914), 1, + anon_sym_QMARK, + STATE(4563), 1, + sym_type_annotation, + STATE(5788), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157299] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7916), 1, + anon_sym_BANG, + ACTIONS(7918), 1, + anon_sym_QMARK, + STATE(4985), 1, + sym_type_annotation, + STATE(5789), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157327] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7920), 1, + anon_sym_BANG, + ACTIONS(7922), 1, + anon_sym_QMARK, + STATE(4605), 1, + sym_type_annotation, + STATE(5923), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157355] = 5, + ACTIONS(7700), 1, + anon_sym_AMP, + ACTIONS(7764), 1, + anon_sym_PIPE, + ACTIONS(7766), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4127), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [157377] = 8, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7924), 1, + anon_sym_BANG, + ACTIONS(7926), 1, + anon_sym_QMARK, + STATE(4601), 1, + sym_type_annotation, + STATE(5922), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157405] = 5, + ACTIONS(7700), 1, + anon_sym_AMP, + ACTIONS(7764), 1, + anon_sym_PIPE, + ACTIONS(7766), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [157427] = 7, + ACTIONS(7928), 1, + sym_escape_sequence, + ACTIONS(7930), 1, + anon_sym_BQUOTE, + ACTIONS(7932), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7934), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4368), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(5015), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [157452] = 6, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7936), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7938), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7940), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5219), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157475] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(7942), 1, + sym_identifier, + ACTIONS(7944), 1, + sym_this, + STATE(3389), 1, + sym__type_query_member_expression, + STATE(3392), 1, + sym__type_query_subscript_expression, + STATE(3690), 1, + sym__type_query_call_expression, + STATE(3748), 1, + sym__type_query_instantiation_expression, + STATE(5348), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157504] = 6, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7936), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7938), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7940), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5218), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157527] = 7, + ACTIONS(7928), 1, + sym_escape_sequence, + ACTIONS(7932), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7934), 1, + sym__template_chars, + ACTIONS(7946), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4368), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(5015), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [157552] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(7948), 1, + sym_identifier, + ACTIONS(7950), 1, + sym_this, + STATE(3301), 1, + sym__type_query_member_expression, + STATE(3302), 1, + sym__type_query_subscript_expression, + STATE(3348), 1, + sym__type_query_call_expression, + STATE(3419), 1, + sym__type_query_instantiation_expression, + STATE(5357), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157581] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(7666), 1, + sym_identifier, + STATE(6663), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7668), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5499), 2, + sym__module_export_name, + sym_string, + [157606] = 5, + ACTIONS(7700), 1, + anon_sym_AMP, + ACTIONS(7764), 1, + anon_sym_PIPE, + ACTIONS(7766), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7626), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [157627] = 7, + ACTIONS(7928), 1, + sym_escape_sequence, + ACTIONS(7932), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7934), 1, + sym__template_chars, + ACTIONS(7952), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4368), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(5015), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [157652] = 7, + ACTIONS(7932), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7934), 1, + sym__template_chars, + ACTIONS(7954), 1, + sym_escape_sequence, + ACTIONS(7956), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4295), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(5015), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [157677] = 4, + ACTIONS(7582), 1, + anon_sym_LT, + STATE(3374), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157696] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(7950), 1, + sym_this, + ACTIONS(7958), 1, + sym_identifier, + STATE(3348), 1, + sym__type_query_call_expression, + STATE(3419), 1, + sym__type_query_instantiation_expression, + STATE(3609), 1, + sym__type_query_member_expression, + STATE(3610), 1, + sym__type_query_subscript_expression, + STATE(5376), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157725] = 6, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7936), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7938), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7940), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4889), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157748] = 6, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7936), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7938), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7940), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5270), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157771] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7602), 1, + anon_sym_PIPE, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7960), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [157792] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7602), 1, + anon_sym_PIPE, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7962), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [157813] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7602), 1, + anon_sym_PIPE, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7964), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [157834] = 6, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7936), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7938), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7940), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4791), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157857] = 3, + ACTIONS(7624), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [157874] = 6, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7936), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7938), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7940), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4673), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157897] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(7966), 1, + sym_identifier, + ACTIONS(7968), 1, + sym_this, + STATE(3344), 1, + sym__type_query_subscript_expression, + STATE(3355), 1, + sym__type_query_member_expression, + STATE(3553), 1, + sym__type_query_call_expression, + STATE(3702), 1, + sym__type_query_instantiation_expression, + STATE(5293), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157926] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(7970), 1, + sym_identifier, + ACTIONS(7972), 1, + sym_this, + STATE(1747), 1, + sym__type_query_member_expression, + STATE(1748), 1, + sym__type_query_subscript_expression, + STATE(2116), 1, + sym__type_query_instantiation_expression, + STATE(2118), 1, + sym__type_query_call_expression, + STATE(5295), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157955] = 7, + ACTIONS(3382), 1, + sym_identifier, + ACTIONS(3384), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_LBRACK, + ACTIONS(7974), 1, + anon_sym_enum, + STATE(5328), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3959), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [157980] = 3, + ACTIONS(7976), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [157997] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3396), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [158012] = 7, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7686), 1, + anon_sym_BANG, + STATE(5085), 1, + sym_type_annotation, + STATE(5562), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7684), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158037] = 7, + ACTIONS(7928), 1, + sym_escape_sequence, + ACTIONS(7932), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7934), 1, + sym__template_chars, + ACTIONS(7978), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4368), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(5264), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [158062] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3392), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [158077] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3421), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [158092] = 7, + ACTIONS(7932), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7934), 1, + sym__template_chars, + ACTIONS(7954), 1, + sym_escape_sequence, + ACTIONS(7980), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4295), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(5015), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [158117] = 5, + ACTIONS(7982), 1, + anon_sym_LBRACE, + ACTIONS(7984), 1, + anon_sym_DOT, + STATE(4790), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1687), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158138] = 9, + ACTIONS(133), 1, + anon_sym_import, + ACTIONS(7986), 1, + sym_identifier, + ACTIONS(7988), 1, + sym_this, + STATE(1486), 1, + sym__type_query_subscript_expression, + STATE(1487), 1, + sym__type_query_member_expression, + STATE(1622), 1, + sym__type_query_instantiation_expression, + STATE(1623), 1, + sym__type_query_call_expression, + STATE(5308), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158167] = 5, + ACTIONS(7982), 1, + anon_sym_LBRACE, + ACTIONS(7990), 1, + anon_sym_DOT, + STATE(4790), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1687), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158188] = 3, + ACTIONS(7624), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4105), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [158205] = 6, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7936), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7938), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7940), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4852), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [158228] = 6, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7936), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7938), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7940), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4850), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [158251] = 6, + ACTIONS(7375), 1, + anon_sym_COLON, + ACTIONS(7936), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7938), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7940), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4681), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [158274] = 7, + ACTIONS(3382), 1, + sym_identifier, + ACTIONS(3384), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_LBRACK, + ACTIONS(7992), 1, + anon_sym_enum, + STATE(5287), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3959), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [158299] = 7, + ACTIONS(7928), 1, + sym_escape_sequence, + ACTIONS(7932), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7934), 1, + sym__template_chars, + ACTIONS(7994), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4368), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(5015), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [158324] = 7, + ACTIONS(7928), 1, + sym_escape_sequence, + ACTIONS(7932), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7934), 1, + sym__template_chars, + ACTIONS(7996), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4368), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(5015), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [158349] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5039), 1, + sym_type_annotation, + STATE(5867), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158371] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4988), 1, + sym_type_annotation, + STATE(5856), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158393] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5087), 1, + sym_type_annotation, + STATE(5429), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158415] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5086), 1, + sym_type_annotation, + STATE(5428), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158437] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5167), 1, + sym_type_annotation, + STATE(5438), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158459] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5147), 1, + sym_type_annotation, + STATE(5436), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158481] = 8, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2263), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(7056), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158507] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5071), 1, + sym_type_annotation, + STATE(5425), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158529] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7910), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [158543] = 8, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(4580), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6807), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158569] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5085), 1, + sym_type_annotation, + STATE(5566), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7684), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158591] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5029), 1, + sym_type_annotation, + STATE(5421), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158613] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4961), 1, + sym_type_annotation, + STATE(5419), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158635] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6351), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7998), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158653] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6576), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8000), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158671] = 8, + ACTIONS(7656), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2614), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6272), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158697] = 6, + ACTIONS(3384), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_LBRACK, + ACTIONS(8002), 1, + sym_identifier, + STATE(5707), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3959), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [158719] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4831), 1, + sym_type_annotation, + STATE(5413), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158741] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4820), 1, + sym_type_annotation, + STATE(5412), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158763] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6566), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8000), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158781] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5203), 1, + sym_type_annotation, + STATE(5479), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8004), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158803] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4623), 1, + sym_type_annotation, + STATE(5935), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158825] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8006), 1, + sym_identifier, + ACTIONS(8008), 1, + anon_sym_STAR, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6262), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158851] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6347), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8010), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158869] = 8, + ACTIONS(7656), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(1655), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6826), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158895] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4696), 1, + sym_type_annotation, + STATE(5803), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158917] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4625), 1, + sym_type_annotation, + STATE(5937), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158939] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8012), 1, + sym_identifier, + ACTIONS(8014), 1, + anon_sym_STAR, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6262), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158965] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4986), 1, + sym_type_annotation, + STATE(5637), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158987] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4984), 1, + sym_type_annotation, + STATE(5638), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159009] = 7, + ACTIONS(3540), 1, + anon_sym_COLON, + ACTIONS(8016), 1, + anon_sym_EQ, + ACTIONS(8020), 1, + anon_sym_QMARK, + STATE(5335), 1, + sym_type_annotation, + STATE(7055), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8018), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [159033] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3568), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [159047] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5182), 1, + sym_type_annotation, + STATE(5442), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159069] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5175), 1, + sym_type_annotation, + STATE(5441), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159091] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8022), 1, + sym_identifier, + ACTIONS(8024), 1, + anon_sym_STAR, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7052), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159117] = 6, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(2237), 1, + sym_arguments, + STATE(6963), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8026), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [159139] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5023), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [159153] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8028), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [159167] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5241), 1, + sym_type_annotation, + STATE(5450), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159189] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4972), 1, + sym_type_annotation, + STATE(5642), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159211] = 4, + ACTIONS(4093), 1, + anon_sym_extends, + ACTIONS(8030), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + [159229] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4735), 1, + sym_type_annotation, + STATE(5979), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159251] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4576), 1, + sym_type_annotation, + STATE(5795), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159273] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4575), 1, + sym_type_annotation, + STATE(5794), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159295] = 3, + ACTIONS(8032), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3568), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [159311] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4599), 1, + sym_type_annotation, + STATE(5920), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159333] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5171), 1, + sym_type_annotation, + STATE(5503), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159355] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4597), 1, + sym_type_annotation, + STATE(5918), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159377] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5198), 1, + sym_type_annotation, + STATE(5485), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159399] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5196), 1, + sym_type_annotation, + STATE(5486), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159421] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7760), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [159435] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4594), 1, + sym_type_annotation, + STATE(5974), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159457] = 8, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(8035), 1, + sym_identifier, + ACTIONS(8037), 1, + anon_sym_DOT, + STATE(745), 1, + sym_nested_identifier, + STATE(769), 1, + sym_string, + STATE(839), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159483] = 6, + ACTIONS(3384), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_LBRACK, + ACTIONS(8039), 1, + sym_identifier, + STATE(5341), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3874), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [159505] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5055), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [159519] = 8, + ACTIONS(220), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1581), 1, + anon_sym_LBRACE, + ACTIONS(8041), 1, + anon_sym_LT, + ACTIONS(8043), 1, + anon_sym_extends, + STATE(901), 1, + sym_object_type, + STATE(4995), 1, + sym_type_parameters, + STATE(5628), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159545] = 6, + ACTIONS(3384), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_LBRACK, + ACTIONS(8045), 1, + sym_identifier, + STATE(5287), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3843), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [159567] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4761), 1, + sym_type_annotation, + STATE(5813), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159589] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4953), 1, + sym_type_annotation, + STATE(5650), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159611] = 8, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7750), 1, + anon_sym_LBRACE, + STATE(898), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6036), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159637] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4592), 1, + sym_type_annotation, + STATE(5915), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159659] = 7, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(7608), 1, + sym_identifier, + ACTIONS(7650), 1, + anon_sym_type, + STATE(6864), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7154), 2, + sym__module_export_name, + sym_string, + [159683] = 8, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2257), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6857), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159709] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4565), 1, + sym_type_annotation, + STATE(5787), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159731] = 8, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2394), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6319), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159757] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8047), 1, + sym_identifier, + ACTIONS(8049), 1, + anon_sym_STAR, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7052), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159783] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5187), 1, + sym_type_annotation, + STATE(5496), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159805] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4567), 1, + sym_type_annotation, + STATE(5785), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159827] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5186), 1, + sym_type_annotation, + STATE(5497), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159849] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4801), 1, + sym_type_annotation, + STATE(5828), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159871] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4570), 1, + sym_type_annotation, + STATE(5783), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159893] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4573), 1, + sym_type_annotation, + STATE(5781), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159915] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5078), 1, + sym_type_annotation, + STATE(5426), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159937] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4802), 1, + sym_type_annotation, + STATE(5830), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159959] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4566), 1, + sym_type_annotation, + STATE(5833), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159981] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4939), 1, + sym_type_annotation, + STATE(5656), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160003] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4936), 1, + sym_type_annotation, + STATE(5657), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160025] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4836), 1, + sym_type_annotation, + STATE(5834), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160047] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4856), 1, + sym_type_annotation, + STATE(5839), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160069] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4935), 1, + sym_type_annotation, + STATE(5659), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160091] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6079), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160109] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6083), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8053), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160127] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4933), 1, + sym_type_annotation, + STATE(5660), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160149] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6543), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8053), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160167] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6542), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160185] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4859), 1, + sym_type_annotation, + STATE(5840), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160207] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8055), 1, + sym_identifier, + ACTIONS(8057), 1, + anon_sym_STAR, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6520), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160233] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4948), 1, + sym_type_annotation, + STATE(5850), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160255] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1861), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [160269] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1857), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [160283] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8059), 1, + anon_sym_COLON, + ACTIONS(8061), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6859), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160309] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8063), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [160323] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4587), 1, + sym_type_annotation, + STATE(5775), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160345] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5173), 1, + sym_type_annotation, + STATE(5502), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160367] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4942), 1, + sym_type_annotation, + STATE(5848), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160389] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4604), 1, + sym_type_annotation, + STATE(5771), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160411] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4928), 1, + sym_type_annotation, + STATE(5665), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160433] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4927), 1, + sym_type_annotation, + STATE(5666), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160455] = 6, + ACTIONS(7533), 1, + anon_sym_EQ, + STATE(5389), 1, + sym_constraint, + STATE(6751), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7538), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(8065), 2, + anon_sym_COMMA, + anon_sym_GT, + [160477] = 4, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4999), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8067), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160495] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4925), 1, + sym_type_annotation, + STATE(5669), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160517] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4923), 1, + sym_type_annotation, + STATE(5670), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160539] = 5, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(6031), 1, + anon_sym_RBRACE, + STATE(5763), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [160559] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4977), 1, + sym_type_annotation, + STATE(5852), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160581] = 8, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(4929), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6108), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160607] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5170), 1, + sym_type_annotation, + STATE(5505), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160629] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5168), 1, + sym_type_annotation, + STATE(5506), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160651] = 6, + ACTIONS(7533), 1, + anon_sym_EQ, + STATE(5375), 1, + sym_constraint, + STATE(7007), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7538), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(8069), 2, + anon_sym_COMMA, + anon_sym_GT, + [160673] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5159), 1, + sym_type_annotation, + STATE(5511), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160695] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5157), 1, + sym_type_annotation, + STATE(5512), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160717] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4920), 1, + sym_type_annotation, + STATE(5674), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160739] = 8, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7808), 1, + anon_sym_LBRACE, + STATE(222), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6795), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160765] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4979), 1, + sym_type_annotation, + STATE(5853), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160787] = 8, + ACTIONS(7656), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(1657), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6767), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160813] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4918), 1, + sym_type_annotation, + STATE(5675), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160835] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4997), 1, + sym_type_annotation, + STATE(5857), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160857] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5013), 1, + sym_type_annotation, + STATE(5861), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160879] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4971), 1, + sym_type_annotation, + STATE(5862), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160901] = 8, + ACTIONS(7656), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(1732), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6519), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160927] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4908), 1, + sym_type_annotation, + STATE(5680), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160949] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4906), 1, + sym_type_annotation, + STATE(5681), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160971] = 8, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2348), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6556), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160997] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8061), 1, + anon_sym_QMARK, + ACTIONS(8071), 1, + anon_sym_COLON, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6859), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161023] = 5, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, + anon_sym_PIPE, + ACTIONS(8077), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4135), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [161043] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5137), 1, + sym_type_annotation, + STATE(5521), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161065] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5133), 1, + sym_type_annotation, + STATE(5522), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161087] = 8, + ACTIONS(7656), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2577), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6874), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161113] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5041), 1, + sym_type_annotation, + STATE(5868), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161135] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5002), 1, + sym_type_annotation, + STATE(5615), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8079), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161157] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4650), 1, + sym_type_annotation, + STATE(5948), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161179] = 4, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4943), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8081), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161197] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5066), 1, + sym_type_annotation, + STATE(5873), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161219] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5005), 1, + sym_type_annotation, + STATE(5614), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8079), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161241] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5024), 1, + sym_type_annotation, + STATE(5880), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161263] = 6, + ACTIONS(3384), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_LBRACK, + ACTIONS(8002), 1, + sym_identifier, + STATE(5287), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3959), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [161285] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5231), 1, + sym_type_annotation, + STATE(5887), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7584), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161307] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4893), 1, + sym_type_annotation, + STATE(5690), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161329] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4891), 1, + sym_type_annotation, + STATE(5692), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161351] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5114), 1, + sym_type_annotation, + STATE(5542), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161373] = 8, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2381), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6592), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161399] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8083), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [161413] = 4, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5150), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8085), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161431] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4666), 1, + sym_type_annotation, + STATE(5954), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161453] = 8, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(754), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6659), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161479] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5074), 1, + sym_type_annotation, + STATE(5572), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161501] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4888), 1, + sym_type_annotation, + STATE(5696), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161523] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4886), 1, + sym_type_annotation, + STATE(5698), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161545] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5007), 1, + sym_type_annotation, + STATE(5575), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161567] = 8, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(4717), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6888), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161593] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4885), 1, + sym_type_annotation, + STATE(5702), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161615] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4992), 1, + sym_type_annotation, + STATE(5704), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161637] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5758), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [161651] = 8, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(776), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6073), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161677] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8087), 1, + sym_identifier, + ACTIONS(8089), 1, + anon_sym_STAR, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6256), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161703] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6038), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8091), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161721] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6044), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8093), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161739] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6495), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8091), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161757] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6902), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8095), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161775] = 8, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7808), 1, + anon_sym_LBRACE, + STATE(218), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6058), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161801] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7780), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [161815] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6494), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8093), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [161833] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5110), 1, + sym_type_annotation, + STATE(5543), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161855] = 3, + ACTIONS(7678), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4105), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [161871] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8097), 1, + sym_identifier, + ACTIONS(8099), 1, + anon_sym_STAR, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6262), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161897] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4649), 1, + sym_type_annotation, + STATE(5517), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7578), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161919] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8101), 1, + sym_identifier, + ACTIONS(8103), 1, + anon_sym_STAR, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7052), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161945] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4881), 1, + sym_type_annotation, + STATE(5714), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161967] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4878), 1, + sym_type_annotation, + STATE(5716), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161989] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5120), 1, + sym_type_annotation, + STATE(5531), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162011] = 4, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5125), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8105), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162029] = 6, + ACTIONS(3384), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_LBRACK, + ACTIONS(8002), 1, + sym_identifier, + STATE(5328), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3959), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [162051] = 8, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2414), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6894), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162077] = 8, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2311), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6604), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162103] = 8, + ACTIONS(7582), 1, + anon_sym_LT, + ACTIONS(8107), 1, + anon_sym_LBRACE, + ACTIONS(8109), 1, + anon_sym_COMMA, + ACTIONS(8111), 1, + anon_sym_DOT, + ACTIONS(8113), 1, + anon_sym_LBRACE_PIPE, + STATE(5326), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5991), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162129] = 8, + ACTIONS(7630), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(2178), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6667), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162155] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4841), 1, + sym_type_annotation, + STATE(5902), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162177] = 8, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7750), 1, + anon_sym_LBRACE, + STATE(793), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6028), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162203] = 6, + ACTIONS(3384), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_LBRACK, + ACTIONS(8002), 1, + sym_identifier, + STATE(5330), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3959), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [162225] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5025), 1, + sym_type_annotation, + STATE(5596), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8079), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162247] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8115), 1, + sym_identifier, + ACTIONS(8117), 1, + anon_sym_STAR, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6262), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162273] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5020), 1, + sym_type_annotation, + STATE(5597), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8079), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162295] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5041), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [162309] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5080), 1, + sym_type_annotation, + STATE(5563), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162331] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5084), 1, + sym_type_annotation, + STATE(5561), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162353] = 3, + ACTIONS(7678), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [162369] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8119), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [162383] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7826), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [162397] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4866), 1, + sym_type_annotation, + STATE(5725), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162419] = 8, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(4756), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6896), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162445] = 3, + ACTIONS(8121), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4095), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [162461] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7694), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [162475] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7071), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8123), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162493] = 8, + ACTIONS(7656), 1, + anon_sym_LBRACE, + ACTIONS(7718), 1, + anon_sym_extends, + ACTIONS(7720), 1, + anon_sym_implements, + STATE(1667), 1, + sym_class_body, + STATE(5471), 1, + sym_extends_clause, + STATE(6105), 1, + sym_class_heritage, + STATE(7331), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162519] = 3, + ACTIONS(8125), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4447), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + [162535] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4910), 1, + sym_type_annotation, + STATE(5894), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162557] = 5, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, + anon_sym_PIPE, + ACTIONS(8077), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4381), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [162577] = 3, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4113), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [162593] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5091), 1, + sym_type_annotation, + STATE(5557), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162615] = 4, + ACTIONS(7982), 1, + anon_sym_LBRACE, + STATE(4790), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1687), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162633] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5227), 1, + sym_type_annotation, + STATE(5823), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7569), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162655] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5094), 1, + sym_type_annotation, + STATE(5553), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162677] = 8, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8127), 1, + sym_identifier, + ACTIONS(8129), 1, + anon_sym_STAR, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7052), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162703] = 5, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, + anon_sym_PIPE, + ACTIONS(8077), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4461), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [162723] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6134), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8131), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162741] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6127), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8133), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162759] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4854), 1, + sym_type_annotation, + STATE(5733), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7565), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162781] = 3, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4473), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [162797] = 3, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3583), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [162813] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5100), 1, + sym_type_annotation, + STATE(5551), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162835] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5102), 1, + sym_type_annotation, + STATE(5550), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7598), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162857] = 6, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(1827), 1, + sym_arguments, + STATE(6726), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8026), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [162879] = 4, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5971), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3933), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [162897] = 8, + ACTIONS(1049), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1623), 1, + anon_sym_LBRACE, + ACTIONS(8041), 1, + anon_sym_LT, + ACTIONS(8043), 1, + anon_sym_extends, + STATE(4815), 1, + sym_object_type, + STATE(5234), 1, + sym_type_parameters, + STATE(5827), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162923] = 5, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, + anon_sym_PIPE, + ACTIONS(8077), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4269), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [162943] = 5, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, + anon_sym_PIPE, + ACTIONS(8077), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [162963] = 5, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, + anon_sym_PIPE, + ACTIONS(8077), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [162983] = 5, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, + anon_sym_PIPE, + ACTIONS(8077), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4127), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [163003] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6399), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8137), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163021] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6620), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8139), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163039] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6618), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8137), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163057] = 6, + ACTIONS(7367), 1, + anon_sym_EQ, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(4694), 1, + sym_type_annotation, + STATE(5970), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163079] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6443), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7998), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163097] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6444), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8141), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163115] = 4, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6349), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8141), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163133] = 6, + ACTIONS(3384), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_LBRACK, + ACTIONS(8002), 1, + sym_identifier, + STATE(5341), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3959), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [163155] = 8, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + ACTIONS(8143), 1, + sym_identifier, + ACTIONS(8145), 1, + anon_sym_DOT, + STATE(3941), 1, + sym_nested_identifier, + STATE(4147), 1, + sym_string, + STATE(4913), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163181] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8147), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6267), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163204] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8149), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6995), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163227] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(8151), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4104), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163250] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2904), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163267] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8155), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6846), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163290] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8157), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6845), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163313] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(8159), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(3962), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163336] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(8161), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4167), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163359] = 5, + ACTIONS(8163), 1, + anon_sym_AMP, + ACTIONS(8165), 1, + anon_sym_PIPE, + ACTIONS(8167), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4135), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [163378] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(8169), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4152), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163401] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8171), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6837), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163424] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6835), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163447] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8175), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6834), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163470] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2791), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8053), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163487] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2901), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8053), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163504] = 5, + ACTIONS(8163), 1, + anon_sym_AMP, + ACTIONS(8165), 1, + anon_sym_PIPE, + ACTIONS(8167), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4127), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [163523] = 5, + ACTIONS(8163), 1, + anon_sym_AMP, + ACTIONS(8165), 1, + anon_sym_PIPE, + ACTIONS(8167), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [163542] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(8177), 1, + anon_sym_QMARK, + STATE(3803), 1, + sym_formal_parameters, + STATE(4531), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163565] = 5, + ACTIONS(8163), 1, + anon_sym_AMP, + ACTIONS(8165), 1, + anon_sym_PIPE, + ACTIONS(8167), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4261), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [163584] = 5, + ACTIONS(8163), 1, + anon_sym_AMP, + ACTIONS(8165), 1, + anon_sym_PIPE, + ACTIONS(8167), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4269), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [163603] = 3, + ACTIONS(8179), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7247), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [163618] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8181), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6089), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163641] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2792), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163658] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8183), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6139), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163681] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8185), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6709), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163704] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8187), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6708), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163727] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8189), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6694), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163750] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8191), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6686), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163773] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8193), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6230), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163796] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8195), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6677), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163819] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8197), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6675), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163842] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8199), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6673), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163865] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3733), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8201), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163882] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8203), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6870), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163905] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8205), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6617), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163928] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8207), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6606), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163951] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8209), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6605), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163974] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8211), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6228), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163997] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8213), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6226), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164020] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(8215), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4030), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164043] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8217), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6275), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164066] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8219), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6216), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164089] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8221), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6775), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164112] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8223), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6774), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164135] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8225), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6773), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164158] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8227), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6583), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164181] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8229), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6214), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164204] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8231), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6582), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164227] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8233), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6578), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164250] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8235), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6575), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164273] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8237), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6213), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164296] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8239), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6569), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164319] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8241), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6206), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164342] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8243), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6568), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164365] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8245), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6205), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164388] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8247), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6565), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4061), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4063), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [118276] = 9, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(6028), 1, + [164411] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6290), 1, - anon_sym_DOT, - ACTIONS(6292), 1, - anon_sym_QMARK_DOT, - STATE(2897), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8249), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6564), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4055), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4057), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [118317] = 9, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, - ACTIONS(6028), 1, + [164434] = 7, + ACTIONS(2640), 1, anon_sym_LT, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8251), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6202), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_EQ, + [164457] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8253), 1, anon_sym_QMARK, - ACTIONS(3479), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [118358] = 3, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6562), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4179), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [164480] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118386] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8255), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6561), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4247), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [164503] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118414] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6560), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4117), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [164526] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118442] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8259), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6199), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4121), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [118470] = 3, + [164549] = 5, + ACTIONS(8261), 1, + anon_sym_BQUOTE, + ACTIONS(8263), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4121), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7954), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4295), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [164568] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118498] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8265), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6198), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4447), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [164591] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118526] = 3, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(8267), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(5960), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4121), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [164614] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118554] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8269), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6305), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4175), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [164637] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118582] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8271), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6287), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4175), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + [164660] = 4, + ACTIONS(8273), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [118610] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4247), 17, - anon_sym_as, + ACTIONS(7644), 2, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + STATE(6546), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [164677] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118638] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8275), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6253), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4175), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [118666] = 3, + [164700] = 7, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8277), 1, + anon_sym_export, + ACTIONS(8279), 1, + anon_sym_class, + ACTIONS(8281), 1, + anon_sym_abstract, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4179), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, + [164723] = 7, + ACTIONS(7499), 1, anon_sym_AMP, + ACTIONS(7501), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(7503), 1, anon_sym_extends, - [118694] = 3, + ACTIONS(8283), 1, + anon_sym_COMMA, + ACTIONS(8285), 1, + anon_sym_GT, + STATE(5792), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4447), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [164746] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118722] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8287), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6189), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4431), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [164769] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8289), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6243), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164792] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118750] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8291), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6240), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 2, - anon_sym_EQ, + [164815] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8293), 1, anon_sym_QMARK, - ACTIONS(4237), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6235), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164838] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, + ACTIONS(8295), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6658), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164861] = 3, + ACTIONS(8163), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [118778] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4447), 17, + ACTIONS(4113), 5, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, + anon_sym_PIPE, + anon_sym_extends, + [164876] = 5, + ACTIONS(8163), 1, anon_sym_AMP, + ACTIONS(8165), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(8167), 1, anon_sym_extends, - [118806] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4237), 17, + ACTIONS(4381), 3, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [118834] = 3, + [164895] = 7, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(8035), 1, + sym_identifier, + STATE(745), 1, + sym_nested_identifier, + STATE(769), 1, + sym_string, + STATE(849), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 2, - anon_sym_EQ, + [164918] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8297), 1, anon_sym_QMARK, - ACTIONS(4203), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6188), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164941] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8299), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6126), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164964] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118862] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8301), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6223), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 2, - anon_sym_EQ, + [164987] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8303), 1, anon_sym_QMARK, - ACTIONS(4431), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6723), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165010] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8305), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6722), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165033] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118890] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8307), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6721), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 2, - anon_sym_EQ, + [165056] = 7, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(8035), 1, + sym_identifier, + STATE(745), 1, + sym_nested_identifier, + STATE(769), 1, + sym_string, + STATE(839), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165079] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8309), 1, anon_sym_QMARK, - ACTIONS(4431), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6720), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165102] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8311), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6120), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165125] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118918] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8313), 1, + sym_identifier, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6791), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 2, - anon_sym_EQ, + [165148] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8315), 1, anon_sym_QMARK, - ACTIONS(4203), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6717), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165171] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8317), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6711), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165194] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118946] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8319), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6706), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4227), 2, - anon_sym_EQ, + [165217] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8321), 1, anon_sym_QMARK, - ACTIONS(4229), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6119), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165240] = 4, + STATE(4286), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8325), 2, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + ACTIONS(8323), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165257] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [118974] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8327), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6118), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4439), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [165280] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8329), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6185), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165303] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [119002] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8331), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6116), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_EQ, + [165326] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8333), 1, anon_sym_QMARK, - ACTIONS(4241), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6115), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165349] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8335), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6114), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165372] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [119030] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6621), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 2, - anon_sym_EQ, + [165395] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8339), 1, anon_sym_QMARK, - ACTIONS(4345), 17, - anon_sym_as, - anon_sym_LBRACE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6184), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165418] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3745), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8341), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [165435] = 4, + STATE(4207), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3745), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8341), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165452] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8343), 1, + sym_identifier, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7050), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165475] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [119058] = 3, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(8345), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(3963), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4227), 2, - anon_sym_EQ, + [165498] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(8347), 1, anon_sym_QMARK, - ACTIONS(4229), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(3722), 1, + sym_formal_parameters, + STATE(5048), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165521] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8349), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6179), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165544] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [119086] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8351), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6178), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4472), 2, - anon_sym_EQ, + [165567] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8353), 1, anon_sym_QMARK, - ACTIONS(4474), 17, - anon_sym_as, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6177), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165590] = 4, + ACTIONS(8153), 1, anon_sym_LBRACE, + STATE(2702), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8141), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [119114] = 3, + anon_sym_SEMI, + [165607] = 4, + STATE(4307), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4439), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3751), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8355), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [165624] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3751), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8355), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165641] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8357), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6693), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165664] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [119142] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8359), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6692), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 2, - anon_sym_EQ, + [165687] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8361), 1, anon_sym_QMARK, - ACTIONS(4233), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6691), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165710] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, + ACTIONS(8363), 1, + sym_identifier, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7050), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165733] = 7, + ACTIONS(7499), 1, anon_sym_AMP, + ACTIONS(7501), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(7503), 1, anon_sym_extends, - [119170] = 3, + ACTIONS(8365), 1, + anon_sym_COMMA, + ACTIONS(8367), 1, + anon_sym_GT, + STATE(5623), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4233), 17, - anon_sym_as, + [165756] = 4, + ACTIONS(8153), 1, anon_sym_LBRACE, + STATE(2701), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7998), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SEMI, + [165773] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [119198] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8369), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6263), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 2, - anon_sym_EQ, + [165796] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8371), 1, anon_sym_QMARK, - ACTIONS(4241), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6847), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165819] = 5, + ACTIONS(8263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8375), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8373), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4416), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [165838] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8377), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6173), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165861] = 4, + ACTIONS(8273), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [119226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4439), 17, - anon_sym_as, + ACTIONS(7676), 2, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + STATE(6955), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [165878] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [119254] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8379), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6271), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4425), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4427), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [165901] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8381), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6166), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165924] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [119282] = 3, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(8383), 1, + anon_sym_QMARK, + STATE(3803), 1, + sym_formal_parameters, + STATE(4480), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 2, - anon_sym_EQ, + [165947] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8385), 1, anon_sym_QMARK, - ACTIONS(4179), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6164), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165970] = 7, + ACTIONS(3497), 1, anon_sym_LPAREN, + ACTIONS(6181), 1, + anon_sym_LT, + ACTIONS(8387), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(8389), 1, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [119310] = 3, - ACTIONS(1811), 1, - anon_sym_PIPE, + STATE(3093), 1, + sym_arguments, + STATE(6973), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 17, - sym__automatic_semicolon, - anon_sym_EQ, + [165993] = 4, + ACTIONS(8153), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119337] = 3, - ACTIONS(1805), 1, - anon_sym_PIPE, + STATE(2880), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 17, + ACTIONS(8141), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_AMP, + [166010] = 7, + ACTIONS(2640), 1, anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8391), 1, anon_sym_QMARK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119364] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(6294), 1, - sym_identifier, - ACTIONS(6296), 1, - anon_sym_STAR, - ACTIONS(6298), 1, - anon_sym_type, - ACTIONS(6300), 1, - anon_sym_LBRACE, - ACTIONS(6302), 1, - anon_sym_typeof, - STATE(4215), 1, - sym_string, - STATE(4216), 1, - sym_import_require_clause, - STATE(5233), 1, - sym_import_clause, - STATE(5234), 1, - sym__import_identifier, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6163), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5622), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6304), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [166033] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_BQUOTE, - [119413] = 3, - ACTIONS(4491), 1, - anon_sym_EQ, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8393), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6853), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4493), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [166056] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8395), 1, anon_sym_QMARK, - anon_sym_extends, - [119439] = 3, - ACTIONS(4495), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6526), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [119465] = 4, - ACTIONS(1839), 1, - anon_sym_DOT, - ACTIONS(4453), 1, - anon_sym_EQ, + [166079] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3713), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + ACTIONS(8397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166096] = 7, + ACTIONS(2640), 1, anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8399), 1, anon_sym_QMARK, - anon_sym_extends, - [119493] = 3, - ACTIONS(3665), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6101), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [166119] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8401), 1, anon_sym_QMARK, - anon_sym_extends, - [119519] = 3, - ACTIONS(3661), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6100), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [166142] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8403), 1, anon_sym_QMARK, - anon_sym_extends, - [119545] = 3, - ACTIONS(4483), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6096), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [166165] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8405), 1, anon_sym_QMARK, - anon_sym_extends, - [119571] = 7, - ACTIONS(4069), 1, - anon_sym_EQ, - ACTIONS(6028), 1, - anon_sym_LT, - ACTIONS(6306), 1, - anon_sym_DOT, - ACTIONS(6308), 1, - anon_sym_is, - STATE(2915), 1, - sym_type_arguments, + STATE(4242), 1, + sym_formal_parameters, + STATE(6095), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119605] = 5, - ACTIONS(6310), 1, - anon_sym_DOT, - ACTIONS(6312), 1, - anon_sym_QMARK_DOT, + [166188] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8407), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6090), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 2, - anon_sym_EQ, + [166211] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8409), 1, anon_sym_QMARK, - ACTIONS(4335), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119635] = 3, - ACTIONS(4111), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6085), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [166234] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8411), 1, anon_sym_QMARK, - anon_sym_extends, - [119661] = 3, + STATE(4242), 1, + sym_formal_parameters, + STATE(6061), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4279), 2, - anon_sym_EQ, + [166257] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8413), 1, anon_sym_QMARK, - ACTIONS(4277), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119687] = 5, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, + STATE(4242), 1, + sym_formal_parameters, + STATE(6057), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3479), 13, - anon_sym_as, + [166280] = 4, + ACTIONS(8153), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119717] = 9, - ACTIONS(3481), 1, - anon_sym_LPAREN, - ACTIONS(4061), 1, - anon_sym_PIPE, - ACTIONS(6314), 1, - anon_sym_DOT, - ACTIONS(6316), 1, - anon_sym_QMARK_DOT, - ACTIONS(6318), 1, - anon_sym_LT, - STATE(3058), 1, - sym_arguments, - STATE(3187), 1, - sym_type_arguments, + STATE(2859), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4063), 10, + ACTIONS(8133), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119755] = 3, + [166297] = 3, + ACTIONS(8415), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4411), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(7247), 5, + anon_sym_LPAREN, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119781] = 6, - ACTIONS(4069), 1, - anon_sym_EQ, - ACTIONS(6028), 1, anon_sym_LT, - ACTIONS(6306), 1, - anon_sym_DOT, - STATE(2915), 1, - sym_type_arguments, + anon_sym_BQUOTE, + [166312] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8417), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6039), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [166335] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8419), 1, anon_sym_QMARK, - anon_sym_extends, - [119813] = 4, - ACTIONS(1813), 1, - anon_sym_DOT, - ACTIONS(4453), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6032), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [166358] = 7, + ACTIONS(2640), 1, anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8421), 1, anon_sym_QMARK, - anon_sym_extends, - [119841] = 3, + STATE(4242), 1, + sym_formal_parameters, + STATE(6029), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 2, - anon_sym_EQ, + [166381] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8423), 1, anon_sym_QMARK, - ACTIONS(4419), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119867] = 9, - ACTIONS(3481), 1, + STATE(4242), 1, + sym_formal_parameters, + STATE(6027), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166404] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(3483), 1, - anon_sym_DOT, - ACTIONS(3487), 1, - anon_sym_QMARK_DOT, - ACTIONS(3489), 1, - anon_sym_PIPE, - ACTIONS(6318), 1, + ACTIONS(8425), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6441), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166427] = 7, + ACTIONS(2640), 1, anon_sym_LT, - STATE(3056), 1, - sym_arguments, - STATE(3237), 1, - sym_type_arguments, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8427), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6725), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119905] = 9, - ACTIONS(3481), 1, + [166450] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(4055), 1, - anon_sym_PIPE, - ACTIONS(6318), 1, + ACTIONS(8429), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7031), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166473] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6320), 1, - anon_sym_DOT, - ACTIONS(6322), 1, - anon_sym_QMARK_DOT, - STATE(3057), 1, - sym_arguments, - STATE(3220), 1, - sym_type_arguments, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8431), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7030), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4057), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119943] = 3, - ACTIONS(4331), 1, - anon_sym_EQ, + [166496] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8433), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6152), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [166519] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8435), 1, anon_sym_QMARK, - anon_sym_extends, - [119968] = 4, - ACTIONS(4299), 1, - anon_sym_EQ, - ACTIONS(6324), 1, - anon_sym_DOT, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6938), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4301), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [166542] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8437), 1, anon_sym_QMARK, - anon_sym_extends, - [119995] = 6, - ACTIONS(3520), 1, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6151), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166565] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(4093), 1, - anon_sym_EQ, - ACTIONS(6326), 1, - anon_sym_DOT, - STATE(2907), 1, - sym_arguments, + ACTIONS(8439), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6833), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [120026] = 5, - ACTIONS(4075), 1, - anon_sym_EQ, - ACTIONS(6028), 1, + [166588] = 7, + ACTIONS(2640), 1, anon_sym_LT, - STATE(2947), 1, - sym_type_arguments, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8441), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6148), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [166611] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8443), 1, anon_sym_QMARK, - anon_sym_extends, - [120055] = 3, - ACTIONS(4393), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6898), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [166634] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8445), 1, anon_sym_QMARK, - anon_sym_extends, - [120080] = 3, - ACTIONS(1819), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6142), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1817), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [166657] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8447), 1, anon_sym_QMARK, - anon_sym_extends, - anon_sym_is, - [120105] = 3, - ACTIONS(4089), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6647), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [166680] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8449), 1, anon_sym_QMARK, - anon_sym_extends, - anon_sym_is, - [120130] = 8, - ACTIONS(6328), 1, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6646), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166703] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6330), 1, - anon_sym_DOT, - ACTIONS(6332), 1, - anon_sym_QMARK_DOT, - ACTIONS(6334), 1, + ACTIONS(8451), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6645), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166726] = 7, + ACTIONS(2640), 1, anon_sym_LT, - STATE(3198), 1, - sym_arguments, - STATE(3382), 1, - sym_type_arguments, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8453), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6141), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4063), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [120164] = 3, - ACTIONS(4397), 1, - anon_sym_EQ, + [166749] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8455), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6067), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [166772] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8457), 1, anon_sym_QMARK, - anon_sym_extends, - [120188] = 2, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6854), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6336), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120210] = 3, - ACTIONS(4503), 1, - anon_sym_EQ, + [166795] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8459), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6860), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4505), 14, - anon_sym_as, + [166818] = 4, + ACTIONS(8153), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [120234] = 3, - ACTIONS(4437), 1, - anon_sym_PIPE, + STATE(2834), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 14, + ACTIONS(8131), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166835] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120258] = 3, - ACTIONS(4361), 1, - anon_sym_EQ, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8461), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6862), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [166858] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8463), 1, anon_sym_QMARK, - anon_sym_extends, - [120282] = 3, - ACTIONS(4499), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6318), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 14, - anon_sym_as, + [166881] = 4, + ACTIONS(8153), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [120306] = 3, - ACTIONS(4319), 1, - anon_sym_EQ, + STATE(2875), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4321), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(7998), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [120330] = 3, - ACTIONS(4119), 1, - anon_sym_PIPE, + anon_sym_SEMI, + [166898] = 4, + STATE(4276), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4121), 14, + ACTIONS(8467), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8465), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [166915] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120354] = 5, - ACTIONS(4369), 1, - anon_sym_EQ, - ACTIONS(6338), 1, - anon_sym_LBRACK, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8469), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6344), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4371), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + [166938] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8471), 1, anon_sym_QMARK, - [120382] = 3, - ACTIONS(4487), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6137), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4489), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [166961] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8473), 1, anon_sym_QMARK, - anon_sym_extends, - [120406] = 3, - ACTIONS(4325), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6133), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [166984] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8475), 1, anon_sym_QMARK, - anon_sym_extends, - [120430] = 7, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6342), 1, - sym_number, - ACTIONS(6344), 1, - anon_sym_unique, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6122), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5620), 2, - sym_string, - sym_predefined_type, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120462] = 3, - ACTIONS(4479), 1, - anon_sym_EQ, + [167007] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8477), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6121), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [167030] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8479), 1, anon_sym_QMARK, - anon_sym_extends, - [120486] = 3, - ACTIONS(4445), 1, - anon_sym_PIPE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6345), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4447), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [167053] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120510] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6346), 1, - sym_number, - STATE(5624), 1, - sym_string, - STATE(5625), 1, - sym_predefined_type, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8481), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6321), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120544] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6348), 1, - sym_number, - STATE(5645), 1, - sym_string, - STATE(5654), 1, - sym_predefined_type, + [167076] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8483), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6110), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120578] = 3, - ACTIONS(4429), 1, - anon_sym_PIPE, + [167099] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8485), 1, + sym_identifier, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6791), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4431), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [167122] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120602] = 3, - ACTIONS(4437), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8487), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6527), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [167145] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120626] = 3, - ACTIONS(4305), 1, - anon_sym_EQ, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8489), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6528), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + [167168] = 7, + ACTIONS(7499), 1, anon_sym_AMP, + ACTIONS(7501), 1, anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(7503), 1, anon_sym_extends, - [120650] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6350), 1, - sym_number, - STATE(5510), 1, - sym_predefined_type, - STATE(5828), 1, - sym_string, + ACTIONS(8491), 1, + anon_sym_COMMA, + ACTIONS(8493), 1, + anon_sym_GT, + STATE(5939), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120684] = 3, - ACTIONS(4181), 1, - anon_sym_EQ, + [167191] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8495), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6097), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [167214] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8497), 1, anon_sym_QMARK, - anon_sym_extends, - [120708] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6352), 1, - sym_number, - STATE(5663), 1, - sym_string, - STATE(5667), 1, - sym_predefined_type, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6533), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120742] = 2, + [167237] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8499), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6534), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6354), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120764] = 8, - ACTIONS(6328), 1, - anon_sym_LPAREN, - ACTIONS(6334), 1, - anon_sym_LT, - ACTIONS(6356), 1, - anon_sym_DOT, - ACTIONS(6358), 1, - anon_sym_QMARK_DOT, - STATE(3196), 1, - sym_arguments, - STATE(3454), 1, - sym_type_arguments, + [167260] = 4, + STATE(4378), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 9, + ACTIONS(8503), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8501), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [120798] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6360), 1, - sym_number, - STATE(5545), 1, - sym_string, - STATE(5587), 1, - sym_predefined_type, + [167277] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(8505), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4962), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120832] = 3, - ACTIONS(4445), 1, - anon_sym_PIPE, + [167300] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4447), 14, - sym__automatic_semicolon, + ACTIONS(3933), 6, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120856] = 2, + anon_sym_QMARK, + [167313] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8507), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6535), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6362), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120878] = 3, - ACTIONS(4460), 1, - anon_sym_EQ, + [167336] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8509), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6912), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4462), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [167359] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8511), 1, anon_sym_QMARK, - anon_sym_extends, - [120902] = 3, - ACTIONS(4119), 1, - anon_sym_PIPE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6086), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4121), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [167382] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120926] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8513), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6077), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120948] = 2, + [167405] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8515), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6076), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6366), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120970] = 3, - ACTIONS(4311), 1, - anon_sym_EQ, + [167428] = 5, + ACTIONS(8263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8517), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [120994] = 3, - ACTIONS(4464), 1, - anon_sym_EQ, + ACTIONS(8373), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4416), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [167447] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8519), 1, + sym_identifier, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6607), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4466), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [167470] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8521), 1, anon_sym_QMARK, - anon_sym_extends, - [121018] = 3, - ACTIONS(4468), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6817), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4470), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [167493] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8523), 1, anon_sym_QMARK, - anon_sym_extends, - [121042] = 3, - ACTIONS(4445), 1, - anon_sym_PIPE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6816), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4447), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [167516] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121066] = 3, - ACTIONS(4119), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8525), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6812), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4121), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [167539] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121090] = 3, - ACTIONS(4387), 1, - anon_sym_EQ, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8527), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6809), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + [167562] = 7, + ACTIONS(7499), 1, anon_sym_AMP, + ACTIONS(7501), 1, anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(7503), 1, anon_sym_extends, - [121114] = 4, - ACTIONS(4379), 1, - anon_sym_EQ, - ACTIONS(6338), 1, - anon_sym_LBRACK, + ACTIONS(8529), 1, + anon_sym_COMMA, + ACTIONS(8531), 1, + anon_sym_GT, + STATE(5871), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [167585] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8533), 1, + sym_identifier, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7050), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167608] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8535), 1, anon_sym_QMARK, - anon_sym_extends, - [121140] = 2, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6891), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6368), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121162] = 3, - ACTIONS(4173), 1, - anon_sym_PIPE, + [167631] = 4, + STATE(4380), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 14, + ACTIONS(3765), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8537), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121186] = 8, - ACTIONS(6328), 1, - anon_sym_LPAREN, - ACTIONS(6334), 1, - anon_sym_LT, - ACTIONS(6370), 1, - anon_sym_DOT, - ACTIONS(6372), 1, - anon_sym_QMARK_DOT, - STATE(3197), 1, - sym_arguments, - STATE(3380), 1, - sym_type_arguments, + [167648] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4057), 9, + ACTIONS(3765), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8537), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [121220] = 3, - ACTIONS(4271), 1, - anon_sym_EQ, + [167665] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8539), 1, + sym_identifier, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7050), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4269), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [121244] = 3, - ACTIONS(4357), 1, - anon_sym_EQ, + [167688] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3753), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + ACTIONS(8541), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167705] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8543), 1, anon_sym_QMARK, - anon_sym_extends, - [121268] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6374), 1, - sym_number, - STATE(5583), 1, - sym_string, - STATE(5652), 1, - sym_predefined_type, + STATE(4242), 1, + sym_formal_parameters, + STATE(6047), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121302] = 3, - ACTIONS(4287), 1, - anon_sym_EQ, + [167728] = 5, + ACTIONS(8545), 1, + anon_sym_default, + ACTIONS(8547), 1, + anon_sym_RBRACE, + ACTIONS(8549), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + STATE(4460), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [167747] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8551), 1, anon_sym_QMARK, - anon_sym_extends, - [121326] = 2, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6558), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121348] = 3, - ACTIONS(4449), 1, + [167770] = 6, + ACTIONS(3540), 1, + anon_sym_COLON, + ACTIONS(8016), 1, anon_sym_EQ, + STATE(5383), 1, + sym_type_annotation, + STATE(6825), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(8553), 2, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [121372] = 7, - ACTIONS(4069), 1, - anon_sym_PIPE, - ACTIONS(6318), 1, + [167791] = 6, + ACTIONS(7582), 1, anon_sym_LT, - ACTIONS(6378), 1, + ACTIONS(8111), 1, anon_sym_DOT, - ACTIONS(6380), 1, - anon_sym_is, - STATE(3221), 1, + ACTIONS(8555), 1, + anon_sym_LBRACE, + STATE(5991), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(8557), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LBRACE_PIPE, + [167812] = 7, + ACTIONS(7499), 1, anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121404] = 3, - ACTIONS(4099), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4101), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(8559), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(8561), 1, anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [121428] = 3, - ACTIONS(4173), 1, - anon_sym_PIPE, + STATE(6001), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [167835] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121452] = 3, - ACTIONS(4339), 1, - anon_sym_EQ, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8563), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6885), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [167858] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8565), 1, anon_sym_QMARK, - anon_sym_extends, - [121476] = 2, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6581), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6382), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121498] = 7, - ACTIONS(1573), 1, + [167881] = 7, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1575), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6384), 1, - sym_number, + ACTIONS(8143), 1, + sym_identifier, + STATE(3941), 1, + sym_nested_identifier, + STATE(4147), 1, + sym_string, + STATE(4913), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5752), 2, - sym_string, - sym_predefined_type, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121530] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6386), 1, - sym_number, - STATE(5756), 1, - sym_string, - STATE(5761), 1, - sym_predefined_type, + [167904] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8567), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6355), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121564] = 8, - ACTIONS(1573), 1, + [167927] = 7, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1575), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6388), 1, - sym_number, - STATE(5770), 1, + ACTIONS(8143), 1, + sym_identifier, + STATE(3941), 1, + sym_nested_identifier, + STATE(4147), 1, sym_string, - STATE(5773), 1, - sym_predefined_type, + STATE(4771), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167950] = 4, + STATE(4406), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8571), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8569), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167967] = 7, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(8573), 1, + anon_sym_LBRACE, + ACTIONS(8575), 1, + anon_sym_COMMA, + STATE(5738), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167990] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8577), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6887), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168013] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8579), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6890), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168036] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8581), 1, + sym_identifier, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6791), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121598] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6390), 1, - sym_number, - STATE(5779), 1, - sym_string, - STATE(5781), 1, - sym_predefined_type, + [168059] = 5, + ACTIONS(8263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8583), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121632] = 3, - ACTIONS(4291), 1, - anon_sym_EQ, + ACTIONS(7928), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4368), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [168078] = 4, + STATE(4495), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(8587), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + ACTIONS(8585), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168095] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8589), 1, anon_sym_QMARK, - anon_sym_extends, - [121656] = 3, - ACTIONS(4177), 1, - anon_sym_PIPE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6915), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [168118] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(8591), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6917), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168141] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121680] = 3, - ACTIONS(4343), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8593), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6918), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168164] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8595), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6919), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168187] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4345), 14, + ACTIONS(8597), 6, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [121704] = 3, - ACTIONS(4177), 1, - anon_sym_PIPE, + [168200] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2780), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 14, + ACTIONS(8123), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121728] = 3, - ACTIONS(4472), 1, - anon_sym_PIPE, + [168217] = 4, + STATE(4415), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4474), 14, + ACTIONS(3725), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8599), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121752] = 3, - ACTIONS(4177), 1, - anon_sym_PIPE, + [168234] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 14, + ACTIONS(3725), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8599), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [168251] = 6, + ACTIONS(8073), 1, anon_sym_AMP, - anon_sym_LT, + ACTIONS(8075), 1, + anon_sym_PIPE, + ACTIONS(8077), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121776] = 3, - ACTIONS(4085), 1, - anon_sym_EQ, + ACTIONS(8603), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(8601), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [168272] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8605), 1, anon_sym_QMARK, - anon_sym_extends, - [121800] = 7, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6392), 1, - sym_number, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6373), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5808), 2, - sym_string, - sym_predefined_type, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121832] = 3, - ACTIONS(4201), 1, - anon_sym_PIPE, + [168295] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8607), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6950), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [168318] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121856] = 3, - ACTIONS(4425), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8609), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6972), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [168341] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(8611), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6374), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168364] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121880] = 3, - ACTIONS(4227), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8613), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6978), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4229), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [168387] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(8615), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6982), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168410] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121904] = 3, - ACTIONS(4429), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8617), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6375), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168433] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4431), 14, + ACTIONS(3729), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8619), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [168450] = 5, + ACTIONS(8624), 1, + anon_sym_BQUOTE, + ACTIONS(8626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8621), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4416), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [168469] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121928] = 3, - ACTIONS(4201), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8629), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6990), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [168492] = 7, + ACTIONS(3497), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(6181), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121952] = 3, - ACTIONS(4405), 1, - anon_sym_EQ, + ACTIONS(8389), 1, + anon_sym_DOT, + ACTIONS(8631), 1, + anon_sym_RPAREN, + STATE(3093), 1, + sym_arguments, + STATE(6973), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [168515] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8633), 1, anon_sym_QMARK, - anon_sym_extends, - [121976] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6394), 1, - sym_number, - STATE(5821), 1, - sym_string, - STATE(5822), 1, - sym_predefined_type, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6392), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122010] = 3, - ACTIONS(4429), 1, - anon_sym_PIPE, + [168538] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8635), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6393), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4431), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [168561] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(8637), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6991), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168584] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122034] = 3, - ACTIONS(4227), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8639), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6394), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4229), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [168607] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(8641), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6342), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168630] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122058] = 3, - ACTIONS(4231), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8643), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6994), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [168653] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(8645), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6401), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168676] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122082] = 3, - ACTIONS(4437), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8647), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6402), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [168699] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(8649), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6403), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168722] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2370), 6, + anon_sym_as, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122106] = 3, - ACTIONS(4401), 1, - anon_sym_EQ, + [168735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 14, + ACTIONS(2378), 6, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [122130] = 3, - ACTIONS(4413), 1, - anon_sym_EQ, + [168748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 14, + ACTIONS(2374), 6, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [122154] = 2, + [168761] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8651), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7072), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6396), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122176] = 3, - ACTIONS(4235), 1, - anon_sym_PIPE, + [168784] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8653), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7040), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168807] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 14, + ACTIONS(8658), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8655), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + [168824] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2362), 6, + anon_sym_as, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122200] = 7, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6398), 1, - sym_number, + [168837] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(8660), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(4620), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5734), 2, - sym_string, - sym_predefined_type, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122232] = 3, - ACTIONS(4347), 1, - anon_sym_EQ, + [168860] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4267), 14, + ACTIONS(2366), 6, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [122256] = 3, - ACTIONS(4231), 1, - anon_sym_PIPE, + [168873] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 14, + ACTIONS(8119), 6, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + [168886] = 7, + ACTIONS(7499), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122280] = 3, - ACTIONS(4235), 1, + ACTIONS(7501), 1, anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(8662), 1, + anon_sym_COMMA, + ACTIONS(8664), 1, + anon_sym_GT, + STATE(5989), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [168909] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(8666), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7042), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168932] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122304] = 7, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6400), 1, - sym_number, + ACTIONS(3238), 1, + anon_sym_LPAREN, + ACTIONS(8668), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(5152), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5758), 2, - sym_string, - sym_predefined_type, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122336] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6402), 1, - sym_number, - STATE(5788), 1, - sym_string, - STATE(5790), 1, - sym_predefined_type, + [168955] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8670), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7043), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122370] = 3, - ACTIONS(4239), 1, - anon_sym_PIPE, + [168978] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 14, + ACTIONS(3747), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8672), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [168995] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122394] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6404), 1, - sym_number, - STATE(5793), 1, - sym_string, - STATE(5796), 1, - sym_predefined_type, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8674), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6961), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122428] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6406), 1, - sym_number, - STATE(5798), 1, - sym_string, - STATE(5799), 1, - sym_predefined_type, + [169018] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8676), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7057), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122462] = 3, - ACTIONS(4115), 1, - anon_sym_PIPE, + [169041] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8678), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6574), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + [169064] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6149), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3933), 4, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_COLON, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122486] = 2, + anon_sym_QMARK, + [169079] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8680), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6438), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6408), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122508] = 3, - ACTIONS(4245), 1, - anon_sym_PIPE, + [169102] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8682), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6426), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4247), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [169125] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(8684), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6382), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169148] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122532] = 3, - ACTIONS(4421), 1, - anon_sym_EQ, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8686), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6358), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [169171] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8688), 1, anon_sym_QMARK, - anon_sym_extends, - [122556] = 3, - ACTIONS(4433), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6356), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [169194] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8690), 1, anon_sym_QMARK, - anon_sym_extends, - [122580] = 3, - ACTIONS(4441), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6354), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [169217] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8692), 1, anon_sym_QMARK, - anon_sym_extends, - [122604] = 3, - ACTIONS(4239), 1, - anon_sym_PIPE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6596), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 14, + [169240] = 4, + STATE(4492), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8696), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8694), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [169257] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122628] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6410), 1, - sym_number, - STATE(5478), 1, - sym_predefined_type, - STATE(5817), 1, - sym_string, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8698), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6756), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122662] = 4, - ACTIONS(4305), 1, - anon_sym_EQ, - ACTIONS(6338), 1, - anon_sym_LBRACK, + [169280] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8700), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6341), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + [169303] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8702), 1, anon_sym_QMARK, - anon_sym_extends, - [122688] = 3, - ACTIONS(4075), 1, - anon_sym_EQ, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6793), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169326] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8704), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6320), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169349] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8706), 1, + sym_identifier, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6791), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169372] = 5, + ACTIONS(8545), 1, + anon_sym_default, + ACTIONS(8549), 1, + anon_sym_case, + ACTIONS(8708), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4542), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [169391] = 5, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(8710), 1, + sym_identifier, + ACTIONS(8712), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + STATE(6280), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [169410] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8714), 1, anon_sym_QMARK, - anon_sym_extends, - [122712] = 3, - ACTIONS(4245), 1, - anon_sym_PIPE, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7064), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4247), 14, + [169433] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8716), 6, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [122736] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - anon_sym_unique, - ACTIONS(6412), 1, - sym_number, - STATE(5497), 1, - sym_string, - STATE(5521), 1, - sym_predefined_type, + [169446] = 5, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(8712), 1, + anon_sym_LBRACK, + ACTIONS(8718), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6340), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122770] = 3, - ACTIONS(4173), 1, - anon_sym_PIPE, + STATE(5959), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [169465] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 14, + ACTIONS(8720), 6, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [122794] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(3298), 1, - sym_type_predicate, - STATE(5567), 1, - sym_predefined_type, + [169478] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8722), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7069), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6414), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122823] = 4, - ACTIONS(4085), 1, - anon_sym_EQ, - ACTIONS(6308), 1, - anon_sym_is, + [169501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 12, + ACTIONS(8724), 6, + sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [122848] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(2959), 1, - sym_type_predicate, - STATE(5474), 1, - sym_predefined_type, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [169514] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(8726), 1, + anon_sym_QMARK, + STATE(3803), 1, + sym_formal_parameters, + STATE(4536), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6416), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122877] = 4, - ACTIONS(4075), 1, - anon_sym_EQ, - ACTIONS(6418), 1, - anon_sym_is, + [169537] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2849), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 12, - anon_sym_LBRACE, + ACTIONS(8137), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [122902] = 6, - ACTIONS(4069), 1, - anon_sym_PIPE, - ACTIONS(6318), 1, - anon_sym_LT, - ACTIONS(6378), 1, - anon_sym_DOT, - STATE(3221), 1, - sym_type_arguments, + anon_sym_SEMI, + [169554] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 10, + ACTIONS(8083), 6, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122931] = 13, - ACTIONS(2708), 1, + anon_sym_COLON, + [169567] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6424), 1, - anon_sym_BANG, - ACTIONS(6426), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6430), 1, + ACTIONS(8728), 1, anon_sym_QMARK, - STATE(3429), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3734), 1, - sym__call_signature, - STATE(4077), 1, - sym_type_annotation, - STATE(4663), 1, - sym__initializer, - STATE(5368), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6818), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6422), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [122974] = 13, - ACTIONS(2708), 1, + [169590] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6424), 1, - anon_sym_BANG, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6432), 1, + ACTIONS(8730), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4077), 1, - sym_type_annotation, - STATE(4687), 1, + STATE(6102), 1, + sym_type_parameters, + STATE(6820), 1, sym__call_signature, - STATE(4688), 1, - sym__initializer, - STATE(5245), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169613] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8732), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, + STATE(6433), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6422), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123017] = 13, - ACTIONS(2708), 1, + [169636] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6436), 1, - anon_sym_BANG, - ACTIONS(6438), 1, + ACTIONS(7373), 1, anon_sym_LPAREN, - ACTIONS(6440), 1, + ACTIONS(8734), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(3803), 1, sym_formal_parameters, - STATE(4093), 1, - sym_type_annotation, - STATE(4693), 1, - sym__initializer, - STATE(5275), 1, + STATE(4340), 1, sym__call_signature, - STATE(5437), 1, + STATE(6048), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6434), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123060] = 13, - ACTIONS(2708), 1, + [169659] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6442), 1, - anon_sym_BANG, - ACTIONS(6444), 1, + ACTIONS(8736), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4097), 1, - sym_type_annotation, - STATE(4700), 1, - sym__initializer, - STATE(5288), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6435), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6434), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123103] = 13, - ACTIONS(2708), 1, + [169682] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6446), 1, - anon_sym_BANG, - ACTIONS(6448), 1, + ACTIONS(8738), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4129), 1, - sym_type_annotation, - STATE(4742), 1, - sym__initializer, - STATE(5383), 1, + STATE(6102), 1, + sym_type_parameters, + STATE(6436), 1, sym__call_signature, - STATE(5437), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169705] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8740), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, + STATE(6440), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6434), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123146] = 13, - ACTIONS(2708), 1, + [169728] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6450), 1, - anon_sym_BANG, - ACTIONS(6452), 1, + ACTIONS(8742), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4140), 1, - sym_type_annotation, - STATE(4752), 1, - sym__initializer, - STATE(5413), 1, + STATE(6023), 1, sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6434), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123189] = 11, - ACTIONS(2708), 1, + [169751] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3885), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(3532), 1, + ACTIONS(8744), 1, + anon_sym_QMARK, + STATE(4242), 1, sym_formal_parameters, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - STATE(5417), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6829), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [169774] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2830), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 5, + ACTIONS(8139), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123228] = 5, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, + [169791] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2829), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1647), 2, - sym_template_string, - sym_arguments, - ACTIONS(4407), 10, + ACTIONS(8137), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [123255] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(3213), 1, - sym_type_predicate, - STATE(5678), 1, - sym_predefined_type, + anon_sym_SEMI, + [169808] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2946), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6454), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [123284] = 11, - ACTIONS(2708), 1, + ACTIONS(8095), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169825] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3888), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(3532), 1, + ACTIONS(8746), 1, + anon_sym_QMARK, + STATE(4242), 1, sym_formal_parameters, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - STATE(5417), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6445), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123323] = 13, - ACTIONS(2708), 1, + [169848] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, - anon_sym_BANG, - ACTIONS(6460), 1, + ACTIONS(8748), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4334), 1, - sym_type_annotation, - STATE(4490), 1, - sym__initializer, - STATE(5402), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6446), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123366] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(1975), 1, - sym_type_predicate, - STATE(5472), 1, - sym_predefined_type, + [169871] = 5, + ACTIONS(3232), 1, + anon_sym_LBRACE, + ACTIONS(8712), 1, + anon_sym_LBRACK, + ACTIONS(8750), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6462), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [123395] = 11, - ACTIONS(2708), 1, + STATE(5408), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [169890] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3891), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(3532), 1, + ACTIONS(8752), 1, + anon_sym_QMARK, + STATE(4242), 1, sym_formal_parameters, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - STATE(5417), 1, + STATE(6102), 1, sym_type_parameters, + STATE(7074), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123434] = 11, - ACTIONS(2708), 1, + [169913] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3876), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(3532), 1, + ACTIONS(8754), 1, + anon_sym_QMARK, + STATE(3722), 1, sym_formal_parameters, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - STATE(5417), 1, + STATE(4898), 1, + sym__call_signature, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123473] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(3532), 1, - sym_formal_parameters, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - STATE(5417), 1, - sym_type_parameters, + [169936] = 4, + STATE(4500), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 5, + ACTIONS(3715), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8756), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123512] = 6, - ACTIONS(3481), 1, - anon_sym_LPAREN, - ACTIONS(4093), 1, - anon_sym_PIPE, - ACTIONS(6464), 1, - anon_sym_DOT, - STATE(3182), 1, - sym_arguments, + [169953] = 4, + STATE(4442), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 10, + ACTIONS(3763), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8758), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123541] = 13, - ACTIONS(2708), 1, + [169970] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6426), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6468), 1, - anon_sym_BANG, - ACTIONS(6470), 1, + ACTIONS(8760), 1, anon_sym_QMARK, - STATE(3429), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3812), 1, - sym__call_signature, - STATE(4186), 1, - sym_type_annotation, - STATE(4811), 1, - sym__initializer, - STATE(5368), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6838), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123584] = 13, - ACTIONS(2708), 1, + [169993] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6474), 1, - anon_sym_BANG, - ACTIONS(6476), 1, + ACTIONS(8762), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4193), 1, - sym_type_annotation, - STATE(4819), 1, - sym__initializer, - STATE(5179), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(7073), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [170016] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(3715), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123627] = 13, - ACTIONS(2708), 1, + [170033] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, - anon_sym_BANG, - ACTIONS(6480), 1, + ACTIONS(8764), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4198), 1, - sym_type_annotation, - STATE(4828), 1, - sym__initializer, - STATE(5189), 1, + STATE(6102), 1, + sym_type_parameters, + STATE(6453), 1, sym__call_signature, - STATE(5437), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [170056] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8766), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, + STATE(6843), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + [170079] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3763), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8758), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123670] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(2959), 1, - sym_type_predicate, - STATE(5653), 1, - sym_predefined_type, + [170096] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8768), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6454), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6482), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [123699] = 13, - ACTIONS(2708), 1, + [170119] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6484), 1, - anon_sym_BANG, - ACTIONS(6486), 1, + ACTIONS(8770), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4225), 1, - sym_type_annotation, - STATE(4887), 1, - sym__initializer, - STATE(5246), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6455), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123742] = 13, - ACTIONS(2708), 1, + [170142] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_BANG, - ACTIONS(6490), 1, + ACTIONS(8772), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4228), 1, - sym_type_annotation, - STATE(4891), 1, - sym__initializer, - STATE(5255), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6456), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123785] = 13, - ACTIONS(2708), 1, + [170165] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6426), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6494), 1, - anon_sym_BANG, - ACTIONS(6496), 1, + ACTIONS(8774), 1, anon_sym_QMARK, - STATE(3429), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3836), 1, - sym__call_signature, - STATE(3908), 1, - sym_type_annotation, - STATE(4679), 1, - sym__initializer, - STATE(5368), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6457), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6492), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123828] = 4, - ACTIONS(4099), 1, - anon_sym_EQ, - ACTIONS(6308), 1, - anon_sym_is, + [170188] = 4, + STATE(4433), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 12, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3731), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123853] = 13, - ACTIONS(2708), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(8776), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [170205] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6498), 1, - anon_sym_BANG, - ACTIONS(6500), 1, + ACTIONS(8778), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4238), 1, - sym_type_annotation, - STATE(4912), 1, - sym__initializer, - STATE(5279), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6523), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123896] = 13, - ACTIONS(2708), 1, + [170228] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_BANG, - ACTIONS(6504), 1, + ACTIONS(8780), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4239), 1, - sym_type_annotation, - STATE(4916), 1, - sym__initializer, - STATE(5280), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6463), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123939] = 13, - ACTIONS(2708), 1, + [170251] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6426), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6508), 1, - anon_sym_BANG, - ACTIONS(6510), 1, + ACTIONS(8782), 1, anon_sym_QMARK, - STATE(3429), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3813), 1, - sym__call_signature, - STATE(4011), 1, - sym_type_annotation, - STATE(4929), 1, - sym__initializer, - STATE(5368), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6464), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123982] = 13, - ACTIONS(2708), 1, + [170274] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6494), 1, - anon_sym_BANG, - ACTIONS(6512), 1, + ACTIONS(8784), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3908), 1, - sym_type_annotation, - STATE(4836), 1, - sym__call_signature, - STATE(4877), 1, - sym__initializer, - STATE(5245), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6306), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6492), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124025] = 13, - ACTIONS(2708), 1, + [170297] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6426), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6516), 1, - anon_sym_BANG, - ACTIONS(6518), 1, + ACTIONS(8786), 1, anon_sym_QMARK, - STATE(3429), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3767), 1, - sym__call_signature, - STATE(4276), 1, - sym_type_annotation, - STATE(4972), 1, - sym__initializer, - STATE(5368), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6304), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6514), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124068] = 13, - ACTIONS(2708), 1, + [170320] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6522), 1, - anon_sym_BANG, - ACTIONS(6524), 1, + ACTIONS(8788), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4289), 1, - sym_type_annotation, - STATE(4984), 1, - sym__initializer, - STATE(5343), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6300), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, + [170343] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8790), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [124111] = 13, - ACTIONS(2708), 1, + anon_sym_GT, + [170362] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6526), 1, - anon_sym_BANG, - ACTIONS(6528), 1, + ACTIONS(8792), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4229), 1, - sym_type_annotation, - STATE(5052), 1, - sym__initializer, - STATE(5291), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6476), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124154] = 13, - ACTIONS(2708), 1, + [170385] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6530), 1, - anon_sym_BANG, - ACTIONS(6532), 1, + ACTIONS(8794), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4079), 1, - sym_type_annotation, - STATE(4664), 1, - sym__initializer, - STATE(5212), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6477), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124197] = 13, - ACTIONS(2708), 1, + [170408] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6534), 1, - anon_sym_BANG, - ACTIONS(6536), 1, + ACTIONS(8796), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3944), 1, - sym_type_annotation, - STATE(4575), 1, - sym__initializer, - STATE(5166), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6478), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124240] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(2959), 1, - sym_type_predicate, - STATE(5639), 1, - sym_predefined_type, + [170431] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8798), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6481), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6538), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [124269] = 13, - ACTIONS(2708), 1, + [170454] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6542), 1, - anon_sym_BANG, - ACTIONS(6544), 1, + ACTIONS(8800), 1, anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3945), 1, - sym_type_annotation, - STATE(4577), 1, - sym__initializer, - STATE(5198), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6482), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6540), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124312] = 14, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(6296), 1, - anon_sym_STAR, - ACTIONS(6300), 1, - anon_sym_LBRACE, - ACTIONS(6546), 1, - sym_identifier, - ACTIONS(6548), 1, - anon_sym_type, - ACTIONS(6550), 1, - anon_sym_COMMA, - ACTIONS(6552), 1, - anon_sym_from, - STATE(4183), 1, - sym_string, - STATE(4188), 1, - sym_import_require_clause, - STATE(5162), 1, - sym_import_clause, - STATE(5234), 1, - sym__import_identifier, + [170477] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8802), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6483), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5622), 2, - sym_namespace_import, - sym_named_imports, - [124357] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(1550), 1, - sym_type_predicate, - STATE(5549), 1, - sym_predefined_type, + [170500] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8804), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6484), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6554), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [124386] = 4, - ACTIONS(4353), 1, - anon_sym_EQ, - ACTIONS(6556), 1, + [170523] = 5, + ACTIONS(7499), 1, anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 11, + ACTIONS(8806), 3, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, + [170542] = 3, + ACTIONS(8808), 1, anon_sym_extends, - [124410] = 6, - ACTIONS(6334), 1, - anon_sym_LT, - ACTIONS(6558), 1, - anon_sym_DOT, - ACTIONS(6560), 1, - anon_sym_is, - STATE(3364), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(4447), 5, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [124438] = 3, - ACTIONS(4279), 1, - anon_sym_PIPE, + [170557] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2857), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 12, + ACTIONS(8010), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124460] = 3, - ACTIONS(4409), 1, - anon_sym_PIPE, + [170574] = 7, + ACTIONS(7582), 1, + anon_sym_LT, + ACTIONS(8109), 1, + anon_sym_COMMA, + ACTIONS(8810), 1, + anon_sym_LBRACE, + ACTIONS(8812), 1, + anon_sym_LBRACE_PIPE, + STATE(5324), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5992), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4411), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124482] = 3, - ACTIONS(4417), 1, - anon_sym_PIPE, + [170597] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8814), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7020), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124504] = 10, - ACTIONS(2708), 1, + [170620] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6564), 1, + ACTIONS(8816), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4147), 1, + STATE(6102), 1, + sym_type_parameters, + STATE(6505), 1, sym__call_signature, - STATE(4148), 1, - sym_type_annotation, - STATE(5245), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [170643] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8818), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, + STATE(6506), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6562), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124540] = 4, - ACTIONS(1813), 1, - anon_sym_DOT, - ACTIONS(4453), 1, - anon_sym_PIPE, + [170666] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8820), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7018), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + [170689] = 7, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124564] = 3, - ACTIONS(3665), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8822), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6507), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [170712] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124586] = 3, - ACTIONS(3661), 1, - anon_sym_PIPE, + ACTIONS(8824), 1, + anon_sym_QMARK, + STATE(3722), 1, + sym_formal_parameters, + STATE(5713), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [170735] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124608] = 4, - ACTIONS(1839), 1, - anon_sym_DOT, - ACTIONS(4453), 1, - anon_sym_PIPE, + ACTIONS(8826), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6848), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [170758] = 7, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8281), 1, + anon_sym_abstract, + ACTIONS(8828), 1, + anon_sym_export, + ACTIONS(8830), 1, + anon_sym_class, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 11, - sym__automatic_semicolon, - anon_sym_EQ, + [170781] = 4, + ACTIONS(8153), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124632] = 3, - ACTIONS(4483), 1, - anon_sym_PIPE, + STATE(2957), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 12, + ACTIONS(8000), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124654] = 3, - ACTIONS(4111), 1, - anon_sym_PIPE, + [170798] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8832), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7017), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [170821] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 12, + ACTIONS(8063), 6, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124676] = 3, - ACTIONS(4491), 1, - anon_sym_PIPE, + anon_sym_COLON, + [170834] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2745), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4493), 12, + ACTIONS(8091), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124698] = 3, - ACTIONS(4495), 1, - anon_sym_PIPE, + [170851] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2744), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 12, + ACTIONS(8093), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124720] = 10, - ACTIONS(2708), 1, + [170868] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7373), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6568), 1, + ACTIONS(8834), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3803), 1, sym_formal_parameters, - STATE(3993), 1, + STATE(4292), 1, sym__call_signature, - STATE(3994), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6048), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6566), 5, + [170891] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2667), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8091), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124756] = 10, - ACTIONS(2708), 1, + [170908] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7373), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6570), 1, + ACTIONS(8836), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3803), 1, sym_formal_parameters, - STATE(3639), 1, + STATE(4188), 1, sym__call_signature, - STATE(3994), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6048), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6566), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124792] = 6, - ACTIONS(4383), 1, - anon_sym_EQ, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, + [170931] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2673), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 9, - anon_sym_LBRACE, + ACTIONS(8093), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [124820] = 5, - ACTIONS(3483), 1, - anon_sym_DOT, - ACTIONS(3487), 1, - anon_sym_QMARK_DOT, - ACTIONS(3489), 1, - anon_sym_PIPE, + anon_sym_SEMI, + [170948] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2858), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 10, + ACTIONS(8000), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124846] = 6, - ACTIONS(4401), 1, - anon_sym_EQ, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, + [170965] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8838), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6913), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [124874] = 10, - ACTIONS(2708), 1, + [170988] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6578), 1, + ACTIONS(8840), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4076), 1, + STATE(5881), 1, sym__call_signature, - STATE(4080), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6576), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124910] = 6, - ACTIONS(4295), 1, - anon_sym_EQ, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, + [171011] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8842), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6916), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [124938] = 6, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, + [171034] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8844), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6920), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [124966] = 5, - ACTIONS(4333), 1, - anon_sym_PIPE, - ACTIONS(6580), 1, - anon_sym_DOT, - ACTIONS(6582), 1, - anon_sym_QMARK_DOT, + [171057] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8846), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6952), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, + [171080] = 5, + ACTIONS(8848), 1, + anon_sym_default, + ACTIONS(8851), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124992] = 11, - ACTIONS(6028), 1, - anon_sym_LT, - ACTIONS(6306), 1, - anon_sym_DOT, - ACTIONS(6584), 1, - anon_sym_EQ, - ACTIONS(6589), 1, - anon_sym_COLON, - ACTIONS(6591), 1, - anon_sym_extends, - STATE(2915), 1, - sym_type_arguments, - STATE(4436), 1, - sym_constraint, - STATE(5349), 1, - sym_default_type, + ACTIONS(8853), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6586), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3502), 3, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [125030] = 10, - ACTIONS(2708), 1, + STATE(4542), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [171099] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6596), 1, + ACTIONS(8856), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3577), 1, - sym__call_signature, - STATE(4084), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6954), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6594), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125066] = 6, - ACTIONS(4185), 1, - anon_sym_EQ, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, + [171122] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8858), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6956), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [125094] = 10, - ACTIONS(2708), 1, + [171145] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(6598), 1, - anon_sym_COLON, - ACTIONS(6600), 1, + ACTIONS(8860), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(3635), 1, + STATE(5263), 1, sym__call_signature, - STATE(4080), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6576), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125130] = 6, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + [171168] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_PIPE, + ACTIONS(8862), 1, + sym_identifier, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6521), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1647), 2, - sym_template_string, - sym_arguments, - ACTIONS(4407), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125158] = 6, - ACTIONS(4365), 1, - anon_sym_EQ, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, + [171191] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8864), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7005), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [125186] = 4, - ACTIONS(4373), 1, - anon_sym_EQ, - ACTIONS(6602), 1, - anon_sym_extends, + [171214] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8866), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6609), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + [171237] = 3, + ACTIONS(8163), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4473), 5, + anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - [125210] = 3, - ACTIONS(3354), 1, anon_sym_PIPE, + anon_sym_extends, + [171252] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8868), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6979), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3356), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [171275] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125232] = 3, - ACTIONS(3170), 1, - anon_sym_PIPE, + ACTIONS(8870), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6980), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3172), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125254] = 6, - ACTIONS(4479), 1, - anon_sym_EQ, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, + [171298] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8872), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7004), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [125282] = 4, - ACTIONS(4349), 1, - anon_sym_EQ, - ACTIONS(6556), 1, - anon_sym_AMP, + [171321] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8874), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6981), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_extends, - [125306] = 3, - ACTIONS(3342), 1, - anon_sym_PIPE, + [171344] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + ACTIONS(8876), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7002), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3344), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [171367] = 7, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125328] = 3, - ACTIONS(3174), 1, - anon_sym_PIPE, + ACTIONS(8878), 1, + anon_sym_QMARK, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6983), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3176), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125350] = 3, - ACTIONS(3278), 1, - anon_sym_PIPE, + [171390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3280), 12, + ACTIONS(8028), 6, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + [171403] = 5, + ACTIONS(8163), 1, anon_sym_AMP, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125372] = 3, - ACTIONS(3178), 1, + ACTIONS(8165), 1, anon_sym_PIPE, + ACTIONS(8167), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3180), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(4461), 3, + anon_sym_as, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125394] = 10, - ACTIONS(2708), 1, + anon_sym_RBRACK, + [171422] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6606), 1, + ACTIONS(8880), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4253), 1, - sym__call_signature, - STATE(4254), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6988), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6604), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125430] = 10, - ACTIONS(2708), 1, + [171445] = 7, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6608), 1, + ACTIONS(8882), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3594), 1, - sym__call_signature, - STATE(4148), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6993), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6562), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125466] = 5, - ACTIONS(4075), 1, - anon_sym_PIPE, - ACTIONS(6318), 1, - anon_sym_LT, - STATE(3247), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4077), 10, - sym__automatic_semicolon, + [171468] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125492] = 2, + STATE(5869), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4474), 13, + ACTIONS(8884), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [171484] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [125512] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6999), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [171504] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [125532] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6998), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4229), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125552] = 2, + [171524] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5443), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(8886), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [171540] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [125572] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6997), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4229), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125592] = 2, + [171560] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5444), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 13, + ACTIONS(8888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125612] = 2, + [171576] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5653), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 13, + ACTIONS(8888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125632] = 2, + [171592] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5445), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 13, + ACTIONS(8888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [171608] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [125652] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7000), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [171628] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [125672] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7001), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125692] = 2, + [171648] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5447), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4247), 13, + ACTIONS(8888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125712] = 10, - ACTIONS(2708), 1, + [171664] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6610), 1, - anon_sym_QMARK, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4083), 1, - sym__call_signature, - STATE(4084), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6985), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6594), 5, + [171684] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2722), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125748] = 2, + [171696] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5449), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 13, + ACTIONS(8888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125768] = 2, + [171712] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5809), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4247), 13, + ACTIONS(8890), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125788] = 10, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6612), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3522), 1, - sym__call_signature, - STATE(4254), 1, - sym_type_annotation, - STATE(5245), 1, - sym_type_parameters, + [171728] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5432), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6604), 5, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125824] = 2, + [171744] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5431), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 13, + ACTIONS(8888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125844] = 2, + [171760] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4431), 13, + ACTIONS(2802), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125864] = 2, + anon_sym_PIPE_RBRACE, + [171772] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4431), 13, + ACTIONS(2622), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125884] = 2, + anon_sym_PIPE_RBRACE, + [171784] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4431), 13, + ACTIONS(1763), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125904] = 2, + anon_sym_PIPE_RBRACE, + [171796] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 13, + ACTIONS(1865), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125924] = 2, + anon_sym_PIPE_RBRACE, + [171808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 13, + ACTIONS(1875), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125944] = 2, + anon_sym_PIPE_RBRACE, + [171820] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 13, + ACTIONS(2734), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125964] = 2, + anon_sym_PIPE_RBRACE, + [171832] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4447), 13, + ACTIONS(2926), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125984] = 2, + anon_sym_PIPE_RBRACE, + [171844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4447), 13, + ACTIONS(2926), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [126004] = 2, + anon_sym_PIPE_RBRACE, + [171856] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5456), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4447), 13, + ACTIONS(8886), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [171872] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [126024] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6969), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [126044] = 2, + [171892] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5457), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4121), 13, + ACTIONS(8888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [126064] = 2, + [171908] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4121), 13, + ACTIONS(2838), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [126084] = 2, + anon_sym_PIPE_RBRACE, + [171920] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4121), 13, + ACTIONS(2802), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + [171932] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [126104] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6968), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [171952] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 13, + ACTIONS(2802), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [126124] = 2, + anon_sym_PIPE_RBRACE, + [171964] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5817), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 13, + ACTIONS(8892), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [171980] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [126144] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6852), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [172000] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5819), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 13, + ACTIONS(8892), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [172016] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [126164] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6856), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [172036] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [126184] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6608), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [172056] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5822), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(8892), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [126204] = 2, + [172072] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5458), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(8888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [126224] = 2, + [172088] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5825), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4345), 13, + ACTIONS(8892), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [126244] = 11, - ACTIONS(2708), 1, + [172104] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7373), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(3803), 1, sym_formal_parameters, - STATE(4242), 1, - sym_type_annotation, - STATE(4921), 1, - sym__initializer, - STATE(5281), 1, + STATE(5255), 1, sym__call_signature, - STATE(5437), 1, + STATE(6048), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [126281] = 4, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(6616), 1, - anon_sym_DOT, + [172124] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5851), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4301), 10, + ACTIONS(8890), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126304] = 9, - ACTIONS(2708), 1, + [172140] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3558), 1, + STATE(6102), 1, + sym_type_parameters, + STATE(6967), 1, sym__call_signature, - STATE(4075), 1, - sym_type_annotation, - STATE(5245), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [172160] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, + STATE(6966), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [172180] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5459), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 5, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126337] = 8, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(6028), 1, - anon_sym_LT, - ACTIONS(6306), 1, - anon_sym_DOT, - ACTIONS(6620), 1, - anon_sym_QMARK, - STATE(2915), 1, - sym_type_arguments, - STATE(5393), 1, - sym_type_annotation, + [172196] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5831), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126368] = 7, - ACTIONS(3873), 1, + ACTIONS(8890), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3885), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [172212] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6597), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [172232] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 7, + ACTIONS(2790), 5, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [126397] = 7, - ACTIONS(3873), 1, + [172244] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2786), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3891), 1, anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 7, + ACTIONS(2782), 5, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [126426] = 4, - ACTIONS(4085), 1, - anon_sym_PIPE, - ACTIONS(6380), 1, - anon_sym_is, + [172268] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 10, + ACTIONS(2778), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [126449] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6420), 1, + [172280] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6426), 1, - anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3429), 1, - sym_formal_parameters, - STATE(3872), 1, - sym__call_signature, - STATE(4182), 1, - sym_type_annotation, - STATE(4805), 1, + STATE(5838), 1, sym__initializer, - STATE(5368), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6623), 3, + ACTIONS(8890), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126486] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6420), 1, + [172296] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6426), 1, - anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3429), 1, - sym_formal_parameters, - STATE(3739), 1, - sym__call_signature, - STATE(4078), 1, - sym_type_annotation, - STATE(4668), 1, + STATE(5430), 1, sym__initializer, - STATE(5368), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6625), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126523] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6420), 1, + [172312] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(4182), 1, - sym_type_annotation, - STATE(4817), 1, - sym__call_signature, - STATE(4818), 1, + STATE(5460), 1, sym__initializer, - STATE(5245), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6623), 3, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126560] = 11, - ACTIONS(2708), 1, + [172328] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4195), 1, - sym_type_annotation, - STATE(4822), 1, - sym__initializer, - STATE(5181), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6964), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [126597] = 11, - ACTIONS(2708), 1, + [172348] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4204), 1, - sym_type_annotation, - STATE(4837), 1, - sym__initializer, - STATE(5201), 1, + STATE(6102), 1, + sym_type_parameters, + STATE(6962), 1, sym__call_signature, - STATE(5437), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [172368] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, + STATE(6904), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [126634] = 12, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(6296), 1, - anon_sym_STAR, - ACTIONS(6300), 1, - anon_sym_LBRACE, - ACTIONS(6546), 1, - sym_identifier, - ACTIONS(6548), 1, - anon_sym_type, - STATE(4183), 1, - sym_string, - STATE(4188), 1, - sym_import_require_clause, - STATE(5162), 1, - sym_import_clause, - STATE(5234), 1, - sym__import_identifier, + [172388] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6960), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5622), 2, - sym_namespace_import, - sym_named_imports, - [126673] = 4, - ACTIONS(4075), 1, - anon_sym_PIPE, - ACTIONS(6627), 1, - anon_sym_is, + [172408] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 10, + ACTIONS(8141), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [126696] = 11, - ACTIONS(2708), 1, + [172420] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(3722), 1, sym_formal_parameters, - STATE(4237), 1, - sym_type_annotation, - STATE(4908), 1, - sym__initializer, - STATE(5272), 1, + STATE(5256), 1, sym__call_signature, - STATE(5437), 1, + STATE(6830), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + [172440] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7998), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126733] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(4078), 1, - sym_type_annotation, - STATE(4683), 1, - sym__call_signature, - STATE(4684), 1, - sym__initializer, - STATE(5245), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [172452] = 3, + ACTIONS(5765), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6625), 3, - sym__automatic_semicolon, + ACTIONS(1909), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126770] = 9, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(4249), 1, - sym__call_signature, - STATE(4250), 1, - sym_type_annotation, - STATE(5245), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [172466] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6629), 5, + ACTIONS(8141), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126803] = 5, - ACTIONS(6328), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_DOT, - STATE(3280), 1, - sym_arguments, + [172478] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5845), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 9, + ACTIONS(8892), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126828] = 9, - ACTIONS(2708), 1, + [172494] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7373), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3276), 1, + STATE(3803), 1, sym_formal_parameters, - STATE(3604), 1, + STATE(5265), 1, sym__call_signature, - STATE(4150), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6048), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6633), 5, + [172514] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5846), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8892), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126861] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6420), 1, + [172530] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8281), 1, + anon_sym_abstract, + ACTIONS(8830), 1, + anon_sym_class, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [172550] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(4035), 1, - sym_type_annotation, - STATE(4514), 1, + STATE(5847), 1, sym__initializer, - STATE(5261), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, + ACTIONS(8890), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126898] = 5, - ACTIONS(6334), 1, - anon_sym_LT, - ACTIONS(6558), 1, - anon_sym_DOT, - STATE(3364), 1, - sym_type_arguments, + [172566] = 6, + ACTIONS(7982), 1, + anon_sym_LBRACE, + ACTIONS(8894), 1, + anon_sym_SEMI, + ACTIONS(8896), 1, + sym__automatic_semicolon, + ACTIONS(8898), 1, + sym__function_signature_automatic_semicolon, + STATE(757), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [172586] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 9, + ACTIONS(7998), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126923] = 3, - ACTIONS(4089), 1, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + [172598] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 11, + ACTIONS(8900), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [126944] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6420), 1, + [172610] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6426), 1, + STATE(5889), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8890), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172626] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3429), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3754), 1, + STATE(6102), 1, + sym_type_parameters, + STATE(6958), 1, sym__call_signature, - STATE(4273), 1, - sym_type_annotation, - STATE(4957), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [172646] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5801), 1, sym__initializer, - STATE(5368), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6637), 3, + ACTIONS(8890), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126981] = 3, - ACTIONS(4331), 1, - anon_sym_PIPE, + [172662] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 11, + ACTIONS(8902), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [127002] = 11, - ACTIONS(2708), 1, + [172674] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4285), 1, - sym_type_annotation, - STATE(4978), 1, - sym__initializer, - STATE(5337), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6128), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127039] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6420), 1, + [172694] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(4292), 1, - sym_type_annotation, - STATE(4987), 1, + STATE(5855), 1, sym__initializer, - STATE(5347), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(8890), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127076] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6420), 1, + [172710] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6426), 1, - anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3429), 1, - sym_formal_parameters, - STATE(3811), 1, - sym__call_signature, - STATE(3918), 1, - sym_type_annotation, - STATE(5007), 1, + STATE(5427), 1, sym__initializer, - STATE(5368), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6641), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127113] = 8, - ACTIONS(6290), 1, - anon_sym_DOT, - ACTIONS(6292), 1, - anon_sym_QMARK_DOT, - ACTIONS(6643), 1, - anon_sym_LPAREN, - ACTIONS(6645), 1, + [172726] = 6, + ACTIONS(2640), 1, anon_sym_LT, - STATE(2897), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7006), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4057), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127144] = 11, - ACTIONS(2708), 1, + [172746] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4087), 1, - sym_type_annotation, - STATE(4672), 1, - sym__initializer, - STATE(5398), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6949), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127181] = 8, - ACTIONS(6286), 1, - anon_sym_DOT, - ACTIONS(6288), 1, - anon_sym_QMARK_DOT, - ACTIONS(6643), 1, - anon_sym_LPAREN, - ACTIONS(6645), 1, + [172766] = 6, + ACTIONS(2640), 1, anon_sym_LT, - STATE(2900), 1, - sym_arguments, - STATE(3002), 1, - sym_type_arguments, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6946), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4063), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127212] = 11, - ACTIONS(2708), 1, + [172786] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4224), 1, - sym_type_annotation, - STATE(4886), 1, - sym__initializer, - STATE(5213), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6945), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127249] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6420), 1, + [172806] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(4110), 1, - sym_type_annotation, - STATE(4723), 1, + STATE(5860), 1, sym__initializer, - STATE(5139), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6647), 3, + ACTIONS(8890), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127286] = 4, - ACTIONS(4099), 1, - anon_sym_PIPE, - ACTIONS(6380), 1, - anon_sym_is, + [172822] = 4, + ACTIONS(8906), 1, + anon_sym_in, + ACTIONS(8908), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 10, + ACTIONS(8904), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127309] = 8, - ACTIONS(2708), 1, + [172838] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(3532), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5417), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6944), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3879), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127340] = 11, - ACTIONS(2708), 1, + [172858] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3992), 1, - sym_type_annotation, - STATE(4801), 1, - sym__initializer, - STATE(5114), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6943), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127377] = 11, - ACTIONS(2708), 1, + [172878] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4036), 1, - sym_type_annotation, - STATE(4504), 1, - sym__initializer, - STATE(5350), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6942), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [172898] = 4, + ACTIONS(8910), 1, + anon_sym_in, + ACTIONS(8912), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(8904), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127414] = 9, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(3681), 1, - sym__call_signature, - STATE(3998), 1, - sym_type_annotation, - STATE(5245), 1, - sym_type_parameters, + [172914] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5864), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6649), 5, + ACTIONS(8892), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127447] = 9, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(3665), 1, - sym__call_signature, - STATE(3990), 1, - sym_type_annotation, - STATE(5245), 1, - sym_type_parameters, + [172930] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5966), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 5, + ACTIONS(8914), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127480] = 9, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(4074), 1, - sym__call_signature, - STATE(4075), 1, - sym_type_annotation, - STATE(5245), 1, - sym_type_parameters, + [172946] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5865), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 5, + ACTIONS(8892), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127513] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6420), 1, + [172962] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5664), 5, anon_sym_EQ, - ACTIONS(6428), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(4342), 1, - sym_type_annotation, - STATE(5060), 1, + anon_sym_QMARK, + [172974] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5832), 1, sym__initializer, - STATE(5406), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(8890), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127550] = 9, - ACTIONS(2708), 1, + [172990] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3520), 1, - sym__call_signature, - STATE(4250), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6937), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6629), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127583] = 11, - ACTIONS(2708), 1, + [173010] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3976), 1, - sym_type_annotation, - STATE(4750), 1, - sym__initializer, - STATE(5340), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6936), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127620] = 9, - ACTIONS(2708), 1, + [173030] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3997), 1, - sym__call_signature, - STATE(3998), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6933), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6649), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127653] = 9, - ACTIONS(2708), 1, + [173050] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3988), 1, - sym__call_signature, - STATE(3990), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6932), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [173070] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5870), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 5, + ACTIONS(8890), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127686] = 11, - ACTIONS(2708), 1, + [173086] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4322), 1, - sym_type_annotation, - STATE(5035), 1, - sym__initializer, - STATE(5381), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6928), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, + [173106] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5644), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [127723] = 9, - ACTIONS(2708), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [173118] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4149), 1, - sym__call_signature, - STATE(4150), 1, - sym_type_annotation, - STATE(5245), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6925), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6633), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127756] = 11, - ACTIONS(2708), 1, + [173138] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6426), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3429), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(3864), 1, - sym__call_signature, - STATE(4104), 1, - sym_type_annotation, - STATE(4730), 1, - sym__initializer, - STATE(5368), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6924), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6655), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127793] = 11, - ACTIONS(2708), 1, + [173158] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4128), 1, - sym_type_annotation, - STATE(4740), 1, - sym__initializer, - STATE(5374), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6923), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127830] = 7, - ACTIONS(3873), 1, + [173178] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5644), 5, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [173190] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + STATE(5875), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 7, + ACTIONS(8892), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127859] = 2, + [173206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 12, - anon_sym_as, + ACTIONS(5644), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_QMARK, - anon_sym_extends, - [127878] = 7, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3876), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, + [173218] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + STATE(5876), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 7, + ACTIONS(8892), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + [173234] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127907] = 3, - ACTIONS(4393), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6922), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 11, - sym__automatic_semicolon, + [173254] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127928] = 3, - ACTIONS(1819), 1, - anon_sym_PIPE, + STATE(5877), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1817), 11, + ACTIONS(8890), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_is, - anon_sym_PIPE_RBRACE, - [127949] = 2, + [173270] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6921), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, + [173290] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - [127968] = 7, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3888), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7024), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [173310] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + STATE(5423), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 7, + ACTIONS(8886), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + [173326] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127997] = 8, - ACTIONS(3526), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_QMARK_DOT, - ACTIONS(6643), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6645), 1, - anon_sym_LT, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7008), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128028] = 3, - ACTIONS(4421), 1, - anon_sym_PIPE, + [173346] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 10, + ACTIONS(8916), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128048] = 3, - ACTIONS(4487), 1, - anon_sym_PIPE, + [173358] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5414), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4489), 10, + ACTIONS(8886), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128068] = 3, - ACTIONS(4433), 1, - anon_sym_PIPE, + [173374] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6911), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128088] = 4, - ACTIONS(6356), 1, - anon_sym_DOT, - ACTIONS(6358), 1, - anon_sym_QMARK_DOT, + [173394] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(5191), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128110] = 4, - ACTIONS(6657), 1, - anon_sym_DOT, - ACTIONS(6659), 1, - anon_sym_QMARK_DOT, + [173414] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(5882), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128132] = 3, - ACTIONS(4479), 1, - anon_sym_PIPE, + [173434] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(4197), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128152] = 2, + [173454] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6175), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3172), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128170] = 3, - ACTIONS(4441), 1, - anon_sym_PIPE, + [173474] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7010), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128190] = 3, - ACTIONS(4311), 1, - anon_sym_PIPE, + [173494] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 10, + ACTIONS(8918), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128210] = 2, + [173506] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(4103), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128228] = 2, + [173526] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5968), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4411), 11, + ACTIONS(8920), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128246] = 2, + [173542] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5885), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 11, + ACTIONS(8922), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128264] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6663), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_extends, + [173558] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6910), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [128288] = 3, - ACTIONS(1813), 1, - anon_sym_DOT, + [173578] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7011), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + [173598] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [128308] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6186), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [173618] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128326] = 2, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6909), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [173638] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128344] = 3, - ACTIONS(1839), 1, - anon_sym_DOT, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6220), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [173658] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5662), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 10, + ACTIONS(8888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + [173674] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_extends, - [128364] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6844), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [173694] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128382] = 2, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6908), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [173714] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128400] = 2, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7012), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4493), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128418] = 2, + [173734] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5888), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 11, + ACTIONS(8924), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128436] = 3, - ACTIONS(4181), 1, - anon_sym_PIPE, + [173750] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6907), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 10, - sym__automatic_semicolon, + [173770] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128456] = 4, - ACTIONS(4353), 1, - anon_sym_PIPE, - ACTIONS(6661), 1, - anon_sym_AMP, + STATE(5635), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 9, + ACTIONS(8888), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128478] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6663), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_extends, + [173786] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7013), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [173806] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(4284), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [173826] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 8, + ACTIONS(2534), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [128502] = 2, + [173838] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5636), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3176), 11, + ACTIONS(8886), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128520] = 3, - ACTIONS(4271), 1, - anon_sym_PIPE, + [173854] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4269), 10, + ACTIONS(2534), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128540] = 3, - ACTIONS(4099), 1, - anon_sym_PIPE, + [173866] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 10, + ACTIONS(2534), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128560] = 2, + [173878] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6906), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5412), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, + [173898] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6901), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [173918] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [128578] = 3, - ACTIONS(2372), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6900), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2370), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128598] = 3, - ACTIONS(2368), 1, - anon_sym_PIPE, + [173938] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6899), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2366), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + [173958] = 5, + ACTIONS(7600), 1, anon_sym_AMP, + ACTIONS(7604), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128618] = 3, - ACTIONS(2364), 1, + ACTIONS(8928), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2362), 10, + ACTIONS(8926), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128638] = 3, - ACTIONS(2376), 1, - anon_sym_PIPE, + [173976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 10, + ACTIONS(2566), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128658] = 3, - ACTIONS(4357), 1, - anon_sym_PIPE, + [173988] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6072), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 10, - sym__automatic_semicolon, + [174008] = 5, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(8930), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(6054), 2, + sym__module_export_name, + sym_string, + [174026] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7014), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [174046] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128678] = 3, - ACTIONS(4413), 1, - anon_sym_PIPE, + STATE(5639), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 10, + ACTIONS(8886), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, + [174062] = 5, + ACTIONS(7600), 1, anon_sym_AMP, + ACTIONS(7604), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128698] = 3, - ACTIONS(4361), 1, + ACTIONS(8928), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 10, + ACTIONS(8932), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128718] = 4, - ACTIONS(6334), 1, - anon_sym_LT, - STATE(3370), 1, - sym_type_arguments, + [174080] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5437), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 9, + ACTIONS(8934), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128740] = 3, - ACTIONS(4305), 1, - anon_sym_PIPE, + [174096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 10, + ACTIONS(2670), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128760] = 5, - ACTIONS(4305), 1, - anon_sym_PIPE, - ACTIONS(6667), 1, - anon_sym_LBRACK, + [174108] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(4371), 7, + ACTIONS(2554), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128784] = 4, - ACTIONS(4373), 1, - anon_sym_PIPE, - ACTIONS(6669), 1, - anon_sym_extends, + [174120] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 9, + ACTIONS(2550), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE_RBRACE, - [128806] = 2, + [174132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3180), 11, + ACTIONS(2694), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128824] = 3, - ACTIONS(4319), 1, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + [174144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4321), 10, + ACTIONS(2698), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128844] = 3, - ACTIONS(4325), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4327), 10, - sym__automatic_semicolon, + [174156] = 6, + ACTIONS(8936), 1, anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(8938), 1, anon_sym_COMMA, + ACTIONS(8940), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128864] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6663), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_extends, + STATE(6011), 1, + aux_sym_enum_body_repeat1, + STATE(6989), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [174176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 8, + ACTIONS(2538), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [128888] = 3, - ACTIONS(4397), 1, - anon_sym_PIPE, + [174188] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6512), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 10, - sym__automatic_semicolon, + [174208] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5055), 5, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128908] = 3, - ACTIONS(4401), 1, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [174220] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6510), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [174240] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(4172), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [174260] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6508), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [174280] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 10, + ACTIONS(2798), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128928] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6663), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_extends, + [174292] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 8, + ACTIONS(2806), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [128952] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6663), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_extends, + [174304] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 8, + ACTIONS(2814), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [128976] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6663), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_extends, + [174316] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 8, + ACTIONS(2814), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [129000] = 6, - ACTIONS(2708), 1, + [174328] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(3532), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5417), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6503), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 7, - sym__automatic_semicolon, + [174348] = 4, + ACTIONS(5031), 1, anon_sym_COMMA, + STATE(4773), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8942), 3, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [129026] = 3, - ACTIONS(2380), 1, - anon_sym_PIPE, + anon_sym_RBRACK, + [174364] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6841), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2378), 10, - sym__automatic_semicolon, + [174384] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(4168), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [174404] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129046] = 3, - ACTIONS(4405), 1, - anon_sym_PIPE, + STATE(5410), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 10, + ACTIONS(8944), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129066] = 3, - ACTIONS(4499), 1, - anon_sym_PIPE, + [174420] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 10, - sym__automatic_semicolon, + ACTIONS(8946), 5, anon_sym_EQ, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_LPAREN, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129086] = 3, - ACTIONS(4339), 1, - anon_sym_PIPE, + anon_sym_implements, + [174432] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6500), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 10, - sym__automatic_semicolon, + [174452] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129106] = 3, - ACTIONS(4347), 1, - anon_sym_PIPE, + STATE(5644), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4267), 10, + ACTIONS(8888), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129126] = 2, + [174468] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6497), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, + [174488] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6258), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [174508] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [129144] = 3, - ACTIONS(4460), 1, - anon_sym_PIPE, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6493), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4462), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129164] = 6, - ACTIONS(6028), 1, + [174528] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6306), 1, - anon_sym_DOT, - ACTIONS(6671), 1, - anon_sym_is, - STATE(2915), 1, - sym_type_arguments, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6840), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [129190] = 3, - ACTIONS(4075), 1, - anon_sym_PIPE, + [174548] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6260), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129210] = 3, - ACTIONS(4468), 1, - anon_sym_PIPE, + [174568] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6265), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4470), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129230] = 4, - ACTIONS(4379), 1, - anon_sym_PIPE, - ACTIONS(6667), 1, - anon_sym_LBRACK, + [174588] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6839), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129252] = 3, - ACTIONS(4387), 1, - anon_sym_PIPE, + [174608] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(4153), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [174628] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6449), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 10, + [174648] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2598), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129272] = 3, - ACTIONS(4449), 1, - anon_sym_PIPE, + [174660] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6487), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 10, + [174680] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2566), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129292] = 3, - ACTIONS(4287), 1, - anon_sym_PIPE, + [174692] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6485), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 10, - sym__automatic_semicolon, + [174712] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129312] = 4, - ACTIONS(4305), 1, - anon_sym_PIPE, - ACTIONS(6667), 1, - anon_sym_LBRACK, + STATE(5790), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 9, + ACTIONS(8890), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129334] = 3, - ACTIONS(4291), 1, - anon_sym_PIPE, + [174728] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 10, + ACTIONS(1939), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129354] = 3, - ACTIONS(4085), 1, - anon_sym_PIPE, + [174740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 10, + ACTIONS(1735), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129374] = 11, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6673), 1, - sym_identifier, - ACTIONS(6675), 1, - anon_sym_type, - ACTIONS(6677), 1, - anon_sym_COMMA, - ACTIONS(6679), 1, - anon_sym_RBRACE, - ACTIONS(6681), 1, - anon_sym_typeof, - STATE(4847), 1, - sym_import_specifier, - STATE(5285), 1, - sym__import_identifier, + [174752] = 6, + ACTIONS(1691), 1, + anon_sym_LBRACE, + ACTIONS(8894), 1, + anon_sym_SEMI, + ACTIONS(8896), 1, + sym__automatic_semicolon, + ACTIONS(8898), 1, + sym__function_signature_automatic_semicolon, + STATE(230), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5458), 2, - sym__module_export_name, - sym_string, - [129410] = 3, - ACTIONS(4464), 1, - anon_sym_PIPE, + [174772] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4466), 10, + ACTIONS(1837), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129430] = 3, - ACTIONS(4503), 1, - anon_sym_PIPE, + [174784] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4505), 10, + ACTIONS(2566), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129450] = 4, - ACTIONS(4349), 1, - anon_sym_PIPE, - ACTIONS(6661), 1, - anon_sym_AMP, + [174796] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6479), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129472] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6663), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_extends, + [174816] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 8, + ACTIONS(2666), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [129496] = 9, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6673), 1, - sym_identifier, - ACTIONS(6683), 1, - anon_sym_type, - ACTIONS(6685), 1, - anon_sym_as, - STATE(5415), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6550), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5745), 2, - sym__module_export_name, - sym_string, - [129527] = 11, - ACTIONS(2708), 1, + [174828] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6687), 1, - sym_identifier, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6691), 1, - anon_sym_extends, - ACTIONS(6693), 1, - anon_sym_implements, - STATE(2308), 1, - sym_class_body, - STATE(3631), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5286), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(7021), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129562] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6691), 1, - anon_sym_extends, - ACTIONS(6693), 1, - anon_sym_implements, - ACTIONS(6695), 1, - sym_identifier, - STATE(2176), 1, - sym_class_body, - STATE(3592), 1, - sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5260), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [174848] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5645), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129597] = 11, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6691), 1, - anon_sym_extends, - ACTIONS(6693), 1, - anon_sym_implements, - ACTIONS(6697), 1, - sym_identifier, - ACTIONS(6699), 1, - anon_sym_LBRACE, - STATE(2570), 1, - sym_class_body, - STATE(3513), 1, - sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5301), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + ACTIONS(8888), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129632] = 11, - ACTIONS(2708), 1, + ACTIONS(2566), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [174876] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6691), 1, - anon_sym_extends, - ACTIONS(6693), 1, - anon_sym_implements, - ACTIONS(6701), 1, - sym_identifier, - STATE(2308), 1, - sym_class_body, - STATE(3631), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5286), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6474), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129667] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6663), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_extends, + [174896] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 7, + ACTIONS(1847), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [129690] = 8, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6705), 1, - anon_sym_EQ, - ACTIONS(6709), 1, - anon_sym_BANG, - STATE(3882), 1, - sym__initializer, - STATE(3901), 1, - sym_type_annotation, + [174908] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6711), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6707), 3, + ACTIONS(2574), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [129719] = 5, - ACTIONS(6024), 1, - anon_sym_LPAREN, - ACTIONS(6326), 1, - anon_sym_DOT, - STATE(2907), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4095), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [129742] = 4, - ACTIONS(6715), 1, - anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [174920] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3781), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6713), 6, + ACTIONS(2570), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [129763] = 6, - ACTIONS(6306), 1, - anon_sym_DOT, - ACTIONS(6645), 1, - anon_sym_LT, - ACTIONS(6717), 1, - anon_sym_is, - STATE(2915), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3502), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129788] = 11, - ACTIONS(2708), 1, + [174932] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6691), 1, - anon_sym_extends, - ACTIONS(6693), 1, - anon_sym_implements, - ACTIONS(6719), 1, - sym_identifier, - STATE(2308), 1, - sym_class_body, - STATE(3631), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5286), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6813), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129823] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6673), 1, - sym_identifier, - ACTIONS(6675), 1, - anon_sym_type, - ACTIONS(6681), 1, - anon_sym_typeof, - ACTIONS(6721), 1, - anon_sym_RBRACE, - STATE(5285), 1, - sym__import_identifier, - STATE(5328), 1, - sym_import_specifier, + [174952] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5458), 2, - sym__module_export_name, - sym_string, - [129856] = 3, - ACTIONS(6723), 1, - anon_sym_is, + ACTIONS(2566), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [174964] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 9, + ACTIONS(2566), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129875] = 4, - ACTIONS(4215), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [174976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 2, + ACTIONS(2546), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3879), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [129896] = 3, - ACTIONS(6560), 1, - anon_sym_is, + [174988] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 9, + ACTIONS(1793), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129915] = 11, - ACTIONS(2708), 1, + anon_sym_PIPE_RBRACE, + [175000] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6691), 1, - anon_sym_extends, - ACTIONS(6693), 1, - anon_sym_implements, - ACTIONS(6725), 1, - sym_identifier, - STATE(2176), 1, - sym_class_body, - STATE(3592), 1, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(4140), 1, + sym__call_signature, + STATE(6830), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5260), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129950] = 10, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6673), 1, - sym_identifier, - ACTIONS(6675), 1, - anon_sym_type, - ACTIONS(6681), 1, - anon_sym_typeof, - ACTIONS(6727), 1, - anon_sym_RBRACE, - STATE(5285), 1, - sym__import_identifier, - STATE(5328), 1, - sym_import_specifier, + [175020] = 4, + ACTIONS(8948), 1, + anon_sym_COMMA, + STATE(4773), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5458), 2, - sym__module_export_name, - sym_string, - [129983] = 2, + ACTIONS(4931), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [175036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 10, + ACTIONS(8724), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_is, - [130000] = 4, - ACTIONS(6715), 1, - anon_sym_COLON, + [175048] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3797), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6729), 6, + ACTIONS(8720), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130021] = 11, - ACTIONS(2708), 1, + [175060] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6691), 1, - anon_sym_extends, - ACTIONS(6693), 1, - anon_sym_implements, - ACTIONS(6731), 1, - sym_identifier, - STATE(2176), 1, - sym_class_body, - STATE(3592), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5260), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6801), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130056] = 2, + [175080] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 10, + ACTIONS(8716), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130073] = 11, - ACTIONS(2708), 1, + [175092] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6691), 1, - anon_sym_extends, - ACTIONS(6693), 1, - anon_sym_implements, - ACTIONS(6699), 1, - anon_sym_LBRACE, - ACTIONS(6733), 1, - sym_identifier, - STATE(1773), 1, - sym_class_body, - STATE(3536), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5215), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6283), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130108] = 2, + [175112] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6288), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130125] = 3, - ACTIONS(6735), 1, - anon_sym_DOT, + [175132] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6469), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4301), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130144] = 2, + [175152] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6811), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1817), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_is, - [130161] = 11, - ACTIONS(2708), 1, + [175172] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6691), 1, - anon_sym_extends, - ACTIONS(6693), 1, - anon_sym_implements, - ACTIONS(6737), 1, - sym_identifier, - STATE(2176), 1, - sym_class_body, - STATE(3592), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5260), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6467), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130196] = 9, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6739), 1, - sym_identifier, - ACTIONS(6743), 1, - anon_sym_COMMA, - ACTIONS(6745), 1, - anon_sym_RBRACE, - STATE(4569), 1, - sym_export_specifier, + [175192] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6165), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6741), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4670), 2, - sym__module_export_name, - sym_string, - [130227] = 11, - ACTIONS(2708), 1, + [175212] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6691), 1, - anon_sym_extends, - ACTIONS(6693), 1, - anon_sym_implements, - ACTIONS(6699), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, - sym_identifier, - STATE(1657), 1, - sym_class_body, - STATE(3581), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5387), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6292), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130262] = 3, - ACTIONS(6560), 1, - anon_sym_is, + [175232] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 9, + ACTIONS(2846), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130281] = 11, - ACTIONS(2708), 1, + anon_sym_PIPE_RBRACE, + [175244] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6691), 1, - anon_sym_extends, - ACTIONS(6693), 1, - anon_sym_implements, - ACTIONS(6749), 1, - sym_identifier, - STATE(2308), 1, - sym_class_body, - STATE(3631), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5286), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6295), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130316] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4515), 1, - anon_sym_LPAREN, + [175264] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2170), 2, - sym_template_string, - sym_arguments, - ACTIONS(4407), 6, + ACTIONS(8951), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130339] = 8, - ACTIONS(6420), 1, + [175282] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6709), 1, - anon_sym_BANG, - STATE(3901), 1, - sym_type_annotation, - STATE(4961), 1, + STATE(5646), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6711), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6707), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130368] = 8, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6751), 1, - anon_sym_BANG, - ACTIONS(6753), 1, - anon_sym_QMARK, - STATE(4234), 1, - sym_type_annotation, - STATE(4900), 1, - sym__initializer, + [175298] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7025), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175318] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(1891), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [130396] = 10, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(6028), 1, - anon_sym_LT, - STATE(1799), 1, - sym_template_string, - STATE(2273), 1, - sym_arguments, - STATE(3024), 1, - sym_type_arguments, - STATE(5421), 1, - sym_optional_chain, + anon_sym_PIPE_RBRACE, + [175330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130428] = 10, - ACTIONS(2708), 1, + ACTIONS(8953), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175342] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2266), 1, - sym_class_body, - STATE(3559), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5266), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6465), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130460] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6739), 1, - sym_identifier, - ACTIONS(6759), 1, - anon_sym_RBRACE, - STATE(5165), 1, - sym_export_specifier, + [175362] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7026), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6741), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4670), 2, - sym__module_export_name, - sym_string, - [130488] = 10, - ACTIONS(2708), 1, + [175382] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2172), 1, - sym_class_body, - STATE(3564), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5292), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(7027), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130520] = 10, - ACTIONS(2708), 1, + [175402] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2190), 1, - sym_class_body, - STATE(3607), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5338), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(7028), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130552] = 10, - ACTIONS(2708), 1, + [175422] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(3609), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(3895), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5351), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(7029), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130584] = 10, - ACTIONS(2708), 1, + [175442] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6699), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(1687), 1, - sym_class_body, - STATE(3610), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6081), 1, + sym__call_signature, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5372), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130616] = 2, + [175462] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6460), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130632] = 10, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(6028), 1, + [175482] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6763), 1, - anon_sym_DOT, - STATE(1571), 1, - sym_arguments, - STATE(1799), 1, - sym_template_string, - STATE(4408), 1, - sym_type_arguments, - STATE(5421), 1, - sym_optional_chain, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6308), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130664] = 8, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6765), 1, - anon_sym_BANG, - ACTIONS(6767), 1, - anon_sym_QMARK, - STATE(3946), 1, - sym_type_annotation, - STATE(4597), 1, - sym__initializer, + [175502] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6458), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130692] = 7, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6705), 1, + [175522] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - STATE(3883), 1, + STATE(5651), 1, sym__initializer, - STATE(3901), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6711), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6707), 3, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130718] = 7, - ACTIONS(6420), 1, + [175538] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3901), 1, - sym_type_annotation, - STATE(4726), 1, + STATE(5652), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6711), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6707), 3, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130744] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(6028), 1, + [175554] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6769), 1, - anon_sym_DOT, - STATE(2173), 1, - sym_template_string, - STATE(2494), 1, - sym_arguments, - STATE(4450), 1, - sym_type_arguments, - STATE(5221), 1, - sym_optional_chain, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7032), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130776] = 10, - ACTIONS(89), 1, + [175574] = 5, + ACTIONS(8955), 1, anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(8957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8960), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4804), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [175592] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(6028), 1, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6323), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175612] = 6, + ACTIONS(2640), 1, anon_sym_LT, - STATE(2173), 1, - sym_template_string, - STATE(2503), 1, - sym_arguments, - STATE(3288), 1, - sym_type_arguments, - STATE(5221), 1, - sym_optional_chain, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6331), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130808] = 2, + [175632] = 3, + ACTIONS(5791), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6771), 9, - anon_sym_EQ, + ACTIONS(1899), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [130824] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(5197), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175646] = 4, + ACTIONS(7289), 1, + anon_sym_LBRACK, + ACTIONS(8963), 1, anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, + ACTIONS(4457), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [175662] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8965), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [175680] = 4, + ACTIONS(8273), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [130850] = 10, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(6028), 1, - anon_sym_LT, - STATE(1547), 1, - sym_arguments, - STATE(1799), 1, - sym_template_string, - STATE(3024), 1, - sym_type_arguments, - STATE(5421), 1, - sym_optional_chain, + ACTIONS(8967), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(6955), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [175696] = 3, + ACTIONS(5793), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130882] = 10, - ACTIONS(2708), 1, + ACTIONS(1919), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175710] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(758), 1, - sym_class_body, - STATE(3608), 1, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(5176), 1, + sym__call_signature, + STATE(6048), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5295), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130914] = 10, - ACTIONS(2708), 1, + [175730] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6699), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2567), 1, - sym_class_body, - STATE(3589), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5326), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(7033), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130946] = 2, + [175750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6773), 9, - anon_sym_EQ, + ACTIONS(2862), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175762] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2914), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175774] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2822), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175786] = 4, + ACTIONS(8273), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [130962] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(6028), 1, - anon_sym_LT, - STATE(2127), 1, - sym_arguments, - STATE(2173), 1, - sym_template_string, - STATE(3288), 1, - sym_type_arguments, - STATE(5221), 1, - sym_optional_chain, + ACTIONS(8970), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130994] = 8, - ACTIONS(6420), 1, + STATE(6546), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [175802] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, + STATE(5544), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8973), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175818] = 4, + ACTIONS(3540), 1, anon_sym_COLON, - ACTIONS(6775), 1, - anon_sym_BANG, - ACTIONS(6777), 1, - anon_sym_QMARK, - STATE(3905), 1, + STATE(6729), 1, sym_type_annotation, - STATE(4627), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3568), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + [175834] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5545), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131022] = 9, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6673), 1, - sym_identifier, - ACTIONS(6675), 1, - anon_sym_type, - ACTIONS(6681), 1, - anon_sym_typeof, - STATE(5285), 1, - sym__import_identifier, - STATE(5328), 1, - sym_import_specifier, + [175850] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8977), 1, + anon_sym_class, + ACTIONS(8979), 1, + anon_sym_abstract, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5458), 2, - sym__module_export_name, - sym_string, - [131052] = 10, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + [175870] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, anon_sym_LPAREN, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(6028), 1, + STATE(3803), 1, + sym_formal_parameters, + STATE(5261), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175890] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6779), 1, - anon_sym_DOT, - STATE(1799), 1, - sym_template_string, - STATE(2548), 1, - sym_arguments, - STATE(4408), 1, - sym_type_arguments, - STATE(5421), 1, - sym_optional_chain, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6590), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131084] = 5, - ACTIONS(6781), 1, - anon_sym_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE, - ACTIONS(6785), 1, - anon_sym_extends, + [175910] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 6, + ACTIONS(8981), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - [131106] = 10, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + anon_sym_PIPE_RBRACE, + [175922] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8095), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175934] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(6028), 1, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6525), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175954] = 6, + ACTIONS(2640), 1, anon_sym_LT, - STATE(1799), 1, - sym_template_string, - STATE(2549), 1, - sym_arguments, - STATE(3024), 1, - sym_type_arguments, - STATE(5421), 1, - sym_optional_chain, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6545), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131138] = 5, - ACTIONS(6781), 1, - anon_sym_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE, - ACTIONS(6785), 1, - anon_sym_extends, + [175974] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7066), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [175994] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6548), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176014] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 6, + ACTIONS(2766), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - [131160] = 10, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(6028), 1, - anon_sym_LT, - ACTIONS(6787), 1, - anon_sym_DOT, - STATE(1799), 1, - sym_template_string, - STATE(2142), 1, - sym_arguments, - STATE(4408), 1, - sym_type_arguments, - STATE(5421), 1, - sym_optional_chain, + anon_sym_PIPE_RBRACE, + [176026] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5546), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131192] = 10, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, + ACTIONS(8975), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176042] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6318), 1, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6798), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176062] = 6, + ACTIONS(2640), 1, anon_sym_LT, - STATE(1799), 1, - sym_template_string, - STATE(1954), 1, - sym_arguments, - STATE(3081), 1, - sym_type_arguments, - STATE(5421), 1, - sym_optional_chain, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6571), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131224] = 8, - ACTIONS(6420), 1, + [176082] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6791), 1, - anon_sym_BANG, - ACTIONS(6793), 1, - anon_sym_QMARK, - STATE(4021), 1, - sym_type_annotation, - STATE(4990), 1, + STATE(5784), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6789), 3, + ACTIONS(8890), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131252] = 2, + [176098] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6450), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6795), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [131268] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, + [176118] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(5214), 1, - anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + STATE(5654), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(8888), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176134] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_QMARK, - [131294] = 7, - ACTIONS(6420), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6448), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176154] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4186), 1, - sym_type_annotation, - STATE(4813), 1, + STATE(5780), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6468), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6466), 3, + ACTIONS(8890), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131320] = 10, - ACTIONS(2708), 1, + [176170] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(3497), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(3939), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5436), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6447), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131352] = 8, - ACTIONS(6420), 1, + [176190] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6797), 1, - anon_sym_BANG, - ACTIONS(6799), 1, - anon_sym_QMARK, - STATE(4200), 1, - sym_type_annotation, - STATE(4832), 1, + STATE(5655), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131380] = 8, - ACTIONS(6420), 1, + [176206] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6801), 1, - anon_sym_BANG, - ACTIONS(6803), 1, - anon_sym_QMARK, - STATE(4205), 1, - sym_type_annotation, - STATE(4842), 1, + STATE(5779), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(8892), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131408] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(695), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, + [176222] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + STATE(5658), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, + ACTIONS(8886), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176238] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, anon_sym_LPAREN, - anon_sym_COLON, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7075), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176258] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_QMARK, - [131434] = 8, - ACTIONS(6420), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6792), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176278] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6805), 1, - anon_sym_BANG, - ACTIONS(6807), 1, - anon_sym_QMARK, - STATE(4206), 1, - sym_type_annotation, - STATE(4846), 1, + STATE(5981), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(8983), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131462] = 6, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(6809), 1, - anon_sym_EQ, + [176294] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7076), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 5, - anon_sym_LBRACE, + [176314] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2762), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [131486] = 8, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6811), 1, - anon_sym_BANG, - ACTIONS(6813), 1, - anon_sym_QMARK, - STATE(4207), 1, - sym_type_annotation, - STATE(4850), 1, - sym__initializer, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176326] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(4316), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + [176346] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2770), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131514] = 8, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6815), 1, - anon_sym_BANG, - ACTIONS(6817), 1, - anon_sym_QMARK, - STATE(4208), 1, - sym_type_annotation, - STATE(4852), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [176358] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(8985), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131542] = 10, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(6028), 1, + anon_sym_PIPE_RBRACE, + [176370] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6819), 1, - anon_sym_DOT, - STATE(1571), 1, - sym_arguments, - STATE(1799), 1, - sym_template_string, - STATE(4408), 1, - sym_type_arguments, - STATE(5421), 1, - sym_optional_chain, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7077), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131574] = 8, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6821), 1, - anon_sym_BANG, - ACTIONS(6823), 1, - anon_sym_QMARK, - STATE(4214), 1, - sym_type_annotation, - STATE(4865), 1, - sym__initializer, + [176390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(8987), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [131602] = 8, - ACTIONS(6420), 1, + anon_sym_PIPE_RBRACE, + [176402] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6825), 1, - anon_sym_BANG, - ACTIONS(6827), 1, - anon_sym_QMARK, - STATE(4217), 1, - sym_type_annotation, - STATE(4871), 1, + STATE(5777), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(8892), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131630] = 8, - ACTIONS(6420), 1, + [176418] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6829), 1, - anon_sym_BANG, - ACTIONS(6831), 1, - anon_sym_QMARK, - STATE(4219), 1, - sym_type_annotation, - STATE(4873), 1, + STATE(5478), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(8989), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131658] = 4, - ACTIONS(6833), 1, - anon_sym_COLON, + [176434] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6437), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4279), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6713), 5, + [176454] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5712), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131678] = 10, - ACTIONS(2708), 1, + [176470] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2186), 1, - sym_class_body, - STATE(3509), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5403), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(7078), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131710] = 8, - ACTIONS(6420), 1, + [176490] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6835), 1, - anon_sym_BANG, - ACTIONS(6837), 1, - anon_sym_QMARK, - STATE(4233), 1, - sym_type_annotation, - STATE(4898), 1, + STATE(5480), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(8991), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131738] = 8, - ACTIONS(6420), 1, + [176506] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6839), 1, - anon_sym_BANG, - ACTIONS(6841), 1, - anon_sym_QMARK, - STATE(4235), 1, - sym_type_annotation, - STATE(4904), 1, + STATE(5663), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131766] = 10, - ACTIONS(2708), 1, + [176522] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6843), 1, - anon_sym_LBRACE, - STATE(864), 1, - sym_class_body, - STATE(3549), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5244), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(7079), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131798] = 8, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6739), 1, - sym_identifier, - ACTIONS(6845), 1, - anon_sym_RBRACE, - STATE(5165), 1, - sym_export_specifier, + [176542] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5664), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6741), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4670), 2, - sym__module_export_name, - sym_string, - [131826] = 2, + ACTIONS(8886), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176558] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7080), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [176578] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5773), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 9, + ACTIONS(8890), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131842] = 8, - ACTIONS(6420), 1, + [176594] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6847), 1, - anon_sym_BANG, - ACTIONS(6849), 1, - anon_sym_QMARK, - STATE(3911), 1, - sym_type_annotation, - STATE(4660), 1, + STATE(5668), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131870] = 2, + [176610] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(5558), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131886] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176622] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5481), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 9, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131902] = 2, + [176638] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5558), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176650] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 9, + ACTIONS(2650), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131918] = 3, - ACTIONS(6851), 1, - anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [176662] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 8, + ACTIONS(2654), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131936] = 2, + anon_sym_PIPE_RBRACE, + [176674] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5482), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 9, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131952] = 2, + [176690] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131968] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, + ACTIONS(5558), 5, anon_sym_EQ, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(4937), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176702] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, + ACTIONS(5041), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [131994] = 7, - ACTIONS(6420), 1, + [176714] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5023), 5, anon_sym_EQ, - ACTIONS(6428), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(3908), 1, - sym_type_annotation, - STATE(4800), 1, - sym__initializer, + [176726] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6796), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6494), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6492), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132020] = 7, - ACTIONS(6420), 1, + [176746] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5554), 5, anon_sym_EQ, - ACTIONS(6428), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4077), 1, - sym_type_annotation, - STATE(4677), 1, + anon_sym_QMARK, + [176758] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5672), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6424), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6422), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132046] = 10, - ACTIONS(2708), 1, + [176774] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6843), 1, - anon_sym_LBRACE, - STATE(889), 1, - sym_class_body, - STATE(3637), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5119), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6431), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132078] = 2, + [176794] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5483), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2362), 9, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132094] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + [176810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, + ACTIONS(5640), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - [132120] = 5, - ACTIONS(6326), 1, - anon_sym_DOT, - ACTIONS(6643), 1, - anon_sym_LPAREN, - STATE(2907), 1, - sym_arguments, + [176822] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5552), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132142] = 8, - ACTIONS(6420), 1, + ACTIONS(8973), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176838] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6853), 1, - anon_sym_BANG, - ACTIONS(6855), 1, - anon_sym_QMARK, - STATE(3919), 1, - sym_type_annotation, - STATE(4901), 1, + STATE(5484), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132170] = 2, + [176854] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 9, + ACTIONS(2834), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132186] = 2, + anon_sym_PIPE_RBRACE, + [176866] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5487), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4267), 9, + ACTIONS(8973), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132202] = 2, + [176882] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(4530), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4505), 9, + [176902] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5489), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132218] = 3, - ACTIONS(6781), 1, - anon_sym_AMP, + [176918] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5490), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 8, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [132236] = 2, + [176934] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6752), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4269), 9, + [176954] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5492), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132252] = 2, + [176970] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 9, + ACTIONS(8993), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132268] = 2, + anon_sym_PIPE_RBRACE, + [176982] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 9, + ACTIONS(2818), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132284] = 5, - ACTIONS(6781), 1, - anon_sym_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE, - ACTIONS(6785), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [176994] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5493), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 6, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [132306] = 4, - ACTIONS(6851), 1, - anon_sym_LBRACK, + [177010] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4371), 5, + ACTIONS(2674), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [132326] = 3, - ACTIONS(6857), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [177022] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5495), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 8, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [132344] = 3, - ACTIONS(6851), 1, - anon_sym_LBRACK, + [177038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 8, + ACTIONS(8597), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132362] = 9, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, + [177050] = 5, + ACTIONS(8997), 1, + anon_sym_SEMI, + ACTIONS(8999), 1, + sym__automatic_semicolon, + STATE(6311), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8995), 2, + anon_sym_with, + anon_sym_assert, + [177068] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(6028), 1, + STATE(3722), 1, + sym_formal_parameters, + STATE(5044), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [177088] = 6, + ACTIONS(2640), 1, anon_sym_LT, - STATE(4408), 1, - sym_type_arguments, - STATE(5421), 1, - sym_optional_chain, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6428), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1799), 2, - sym_template_string, - sym_arguments, - [132392] = 2, + [177108] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 9, + ACTIONS(8000), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132408] = 3, - ACTIONS(3354), 1, - anon_sym_LBRACE, + anon_sym_PIPE_RBRACE, + [177120] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6316), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3356), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [132426] = 10, - ACTIONS(2708), 1, + [177140] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(3582), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(4288), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5290), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6317), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132458] = 7, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4276), 1, - sym_type_annotation, - STATE(4962), 1, - sym__initializer, + [177160] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6425), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6516), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6514), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132484] = 8, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6859), 1, - anon_sym_BANG, - ACTIONS(6861), 1, - anon_sym_QMARK, - STATE(4044), 1, - sym_type_annotation, - STATE(4543), 1, - sym__initializer, + [177180] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6716), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [177200] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6789), 3, + ACTIONS(9001), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [132512] = 10, - ACTIONS(2708), 1, + anon_sym_PIPE_RBRACE, + [177212] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6863), 1, - anon_sym_LBRACE, - STATE(232), 1, - sym_class_body, - STATE(3498), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5148), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6800), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132544] = 10, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6699), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(1662), 1, - sym_class_body, - STATE(3716), 1, - sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5144), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [177232] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5498), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132576] = 2, + ACTIONS(8973), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177248] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5500), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2366), 9, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132592] = 8, - ACTIONS(6420), 1, + [177264] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6865), 1, - anon_sym_BANG, - ACTIONS(6867), 1, - anon_sym_QMARK, - STATE(4108), 1, - sym_type_annotation, - STATE(4720), 1, + STATE(5769), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6434), 3, + ACTIONS(8890), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132620] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, + [177280] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(5245), 1, - anon_sym_RBRACE, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, + STATE(5570), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(8975), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177296] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_QMARK, - [132646] = 2, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6422), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [177316] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5768), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 9, + ACTIONS(8892), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132662] = 8, - ACTIONS(6420), 1, + [177332] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6353), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [177352] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6869), 1, - anon_sym_BANG, - ACTIONS(6871), 1, - anon_sym_QMARK, - STATE(4314), 1, - sym_type_annotation, - STATE(5020), 1, + STATE(5504), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8973), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132690] = 2, + [177368] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 9, + ACTIONS(2710), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132706] = 8, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6873), 1, - anon_sym_BANG, - ACTIONS(6875), 1, - anon_sym_QMARK, - STATE(4318), 1, - sym_type_annotation, - STATE(5027), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [177380] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(2870), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [132734] = 8, - ACTIONS(6420), 1, + anon_sym_PIPE_RBRACE, + [177392] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6877), 1, - anon_sym_BANG, - ACTIONS(6879), 1, - anon_sym_QMARK, - STATE(4319), 1, - sym_type_annotation, - STATE(5029), 1, + STATE(5765), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8892), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132762] = 8, - ACTIONS(6420), 1, + [177408] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6881), 1, - anon_sym_BANG, - ACTIONS(6883), 1, - anon_sym_QMARK, - STATE(4323), 1, - sym_type_annotation, - STATE(5036), 1, + STATE(5507), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8973), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132790] = 8, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6885), 1, - anon_sym_BANG, - ACTIONS(6887), 1, - anon_sym_QMARK, - STATE(4340), 1, - sym_type_annotation, - STATE(5059), 1, - sym__initializer, + [177424] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(2854), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [132818] = 2, + anon_sym_PIPE_RBRACE, + [177436] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5509), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 9, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132834] = 2, + [177452] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 9, + ACTIONS(2866), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132850] = 8, - ACTIONS(6420), 1, + anon_sym_PIPE_RBRACE, + [177464] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6889), 1, - anon_sym_BANG, - ACTIONS(6891), 1, - anon_sym_QMARK, - STATE(4341), 1, - sym_type_annotation, - STATE(5064), 1, + STATE(5510), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132878] = 2, + [177480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 9, + ACTIONS(8091), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132894] = 5, - ACTIONS(6306), 1, - anon_sym_DOT, - ACTIONS(6645), 1, - anon_sym_LT, - STATE(2915), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3502), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132916] = 8, - ACTIONS(6420), 1, + anon_sym_PIPE_RBRACE, + [177492] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6893), 1, - anon_sym_BANG, - ACTIONS(6895), 1, - anon_sym_QMARK, - STATE(4343), 1, - sym_type_annotation, - STATE(5068), 1, + STATE(5513), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8973), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132944] = 8, - ACTIONS(6420), 1, + [177508] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6897), 1, - anon_sym_BANG, - ACTIONS(6899), 1, - anon_sym_QMARK, - STATE(4344), 1, - sym_type_annotation, - STATE(5071), 1, + STATE(5514), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132972] = 2, + [177524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 9, + ACTIONS(2874), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132988] = 5, - ACTIONS(6781), 1, - anon_sym_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE, - ACTIONS(6785), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [177536] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5515), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 6, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [133010] = 8, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6901), 1, - anon_sym_BANG, - ACTIONS(6903), 1, - anon_sym_QMARK, - STATE(4348), 1, - sym_type_annotation, - STATE(5077), 1, - sym__initializer, + [177552] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(2902), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [133038] = 8, - ACTIONS(6420), 1, + anon_sym_PIPE_RBRACE, + [177564] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6905), 1, - anon_sym_BANG, - ACTIONS(6907), 1, - anon_sym_QMARK, - STATE(4349), 1, - sym_type_annotation, - STATE(5081), 1, + STATE(5519), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133066] = 10, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6863), 1, - anon_sym_LBRACE, - STATE(211), 1, - sym_class_body, - STATE(3534), 1, - sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5120), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133098] = 3, - ACTIONS(3342), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3344), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [133116] = 8, - ACTIONS(6420), 1, + [177580] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6909), 1, - anon_sym_BANG, - ACTIONS(6911), 1, - anon_sym_QMARK, - STATE(4090), 1, - sym_type_annotation, - STATE(4689), 1, + STATE(5520), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133144] = 2, + [177596] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 9, + ACTIONS(2906), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133160] = 3, - ACTIONS(6781), 1, - anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [177608] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5558), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 8, + ACTIONS(8973), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [133178] = 8, - ACTIONS(6420), 1, + [177624] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6913), 1, - anon_sym_BANG, - ACTIONS(6915), 1, - anon_sym_QMARK, - STATE(4043), 1, - sym_type_annotation, - STATE(4826), 1, + STATE(5523), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8973), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133206] = 2, + [177640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4489), 9, + ACTIONS(1753), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133222] = 2, + anon_sym_PIPE_RBRACE, + [177652] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5524), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 9, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133238] = 10, - ACTIONS(2708), 1, + [177668] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2217), 1, - sym_class_body, - STATE(3622), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5320), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(6499), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133270] = 8, - ACTIONS(6420), 1, + [177688] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6917), 1, - anon_sym_BANG, - ACTIONS(6919), 1, - anon_sym_QMARK, - STATE(4086), 1, - sym_type_annotation, - STATE(4676), 1, + STATE(5525), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133298] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(4821), 1, - aux_sym_object_repeat1, - STATE(4940), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133324] = 8, - ACTIONS(6420), 1, + [177704] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6921), 1, - anon_sym_BANG, - ACTIONS(6923), 1, - anon_sym_QMARK, - STATE(4099), 1, - sym_type_annotation, - STATE(4694), 1, + STATE(5526), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133352] = 8, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6925), 1, - anon_sym_BANG, - ACTIONS(6927), 1, - anon_sym_QMARK, - STATE(4118), 1, - sym_type_annotation, - STATE(4727), 1, - sym__initializer, + [177720] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(8928), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(9003), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [133380] = 8, - ACTIONS(6420), 1, + [177738] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6929), 1, - anon_sym_BANG, - ACTIONS(6931), 1, - anon_sym_QMARK, - STATE(4227), 1, - sym_type_annotation, - STATE(4889), 1, + STATE(5679), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133408] = 8, - ACTIONS(6420), 1, + [177754] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6933), 1, - anon_sym_BANG, - ACTIONS(6935), 1, - anon_sym_QMARK, - STATE(4278), 1, - sym_type_annotation, - STATE(4938), 1, + STATE(5527), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133436] = 10, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(6028), 1, + [177770] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6763), 1, - anon_sym_DOT, - STATE(1799), 1, - sym_template_string, - STATE(2458), 1, - sym_arguments, - STATE(4408), 1, - sym_type_arguments, - STATE(5421), 1, - sym_optional_chain, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7046), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133468] = 2, + [177790] = 6, + ACTIONS(7982), 1, + anon_sym_LBRACE, + ACTIONS(9005), 1, + anon_sym_SEMI, + ACTIONS(9007), 1, + sym__automatic_semicolon, + ACTIONS(9009), 1, + sym__function_signature_automatic_semicolon, + STATE(778), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6937), 9, + [177810] = 4, + ACTIONS(7367), 1, anon_sym_EQ, + STATE(5684), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8888), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177826] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9011), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [133484] = 10, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(6028), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177838] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6939), 1, - anon_sym_DOT, - STATE(2096), 1, - sym_arguments, - STATE(2173), 1, - sym_template_string, - STATE(4450), 1, - sym_type_arguments, - STATE(5221), 1, - sym_optional_chain, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6656), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133516] = 10, - ACTIONS(2708), 1, + [177858] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2231), 1, - sym_class_body, - STATE(3629), 1, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(5961), 1, + sym__call_signature, + STATE(6830), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5386), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133548] = 2, + [177878] = 4, + ACTIONS(8273), 1, + anon_sym_COLON, + ACTIONS(9013), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4321), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133564] = 2, + STATE(6955), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [177894] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(4628), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133580] = 5, - ACTIONS(6781), 1, - anon_sym_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE, - ACTIONS(6785), 1, - anon_sym_extends, + [177914] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5685), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 6, + ACTIONS(8888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [133602] = 3, - ACTIONS(3278), 1, - anon_sym_LBRACE, + [177930] = 5, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(9016), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3280), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(6660), 2, + sym__module_export_name, + sym_string, + [177948] = 6, + ACTIONS(8163), 1, anon_sym_AMP, + ACTIONS(8165), 1, anon_sym_PIPE, + ACTIONS(8167), 1, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [133620] = 2, + ACTIONS(9018), 1, + anon_sym_as, + ACTIONS(9020), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133636] = 2, + [177968] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6416), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133652] = 5, - ACTIONS(6781), 1, - anon_sym_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE, - ACTIONS(6785), 1, - anon_sym_extends, + [177988] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6715), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [133674] = 2, + [178008] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5528), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2378), 9, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133690] = 10, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(6028), 1, + [178024] = 6, + ACTIONS(2640), 1, anon_sym_LT, - STATE(1799), 1, - sym_template_string, - STATE(2470), 1, - sym_arguments, - STATE(3024), 1, - sym_type_arguments, - STATE(5421), 1, - sym_optional_chain, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(4618), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133722] = 10, - ACTIONS(2708), 1, + [178044] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(761), 1, - sym_class_body, - STATE(3504), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(5008), 1, - sym_extends_clause, - STATE(5182), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133754] = 2, + STATE(6414), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4462), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133770] = 2, + [178064] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6684), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4466), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133786] = 4, - ACTIONS(6833), 1, - anon_sym_COLON, + [178084] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4146), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6729), 5, + ACTIONS(8000), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [133806] = 2, + anon_sym_PIPE_RBRACE, + [178096] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5529), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4470), 9, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133822] = 2, + [178112] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2370), 9, + ACTIONS(9022), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133838] = 9, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4521), 1, - anon_sym_DOT, - ACTIONS(6028), 1, + anon_sym_PIPE_RBRACE, + [178124] = 6, + ACTIONS(2640), 1, anon_sym_LT, - STATE(4450), 1, - sym_type_arguments, - STATE(5221), 1, - sym_optional_chain, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6412), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2173), 2, - sym_template_string, - sym_arguments, - [133868] = 7, - ACTIONS(6420), 1, + [178144] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4113), 1, - sym_type_annotation, - STATE(4725), 1, + STATE(5559), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6943), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6941), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133894] = 10, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(3572), 1, - sym_type_parameters, - STATE(3877), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5296), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [178160] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133926] = 2, + ACTIONS(8093), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178172] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6945), 9, - anon_sym_EQ, + ACTIONS(8658), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [133942] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178184] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 9, + ACTIONS(8091), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133958] = 5, - ACTIONS(6781), 1, - anon_sym_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE, - ACTIONS(6785), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [178196] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 6, + ACTIONS(8010), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - [133980] = 8, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6947), 1, - anon_sym_BANG, - ACTIONS(6949), 1, - anon_sym_QMARK, - STATE(4102), 1, - sym_type_annotation, - STATE(4711), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [178208] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6434), 3, + ACTIONS(9024), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134008] = 2, + anon_sym_PIPE_RBRACE, + [178220] = 4, + ACTIONS(1857), 1, + anon_sym_DOT, + ACTIONS(4383), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(4385), 3, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134024] = 7, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(6028), 1, anon_sym_LT, - ACTIONS(6951), 1, + anon_sym_LBRACE_PIPE, + [178236] = 4, + ACTIONS(1861), 1, anon_sym_DOT, - STATE(1225), 1, - sym_arguments, - STATE(5122), 1, - sym_type_arguments, + ACTIONS(4383), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3518), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [134050] = 8, - ACTIONS(6420), 1, + ACTIONS(4385), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [178252] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6953), 1, - anon_sym_BANG, - ACTIONS(6955), 1, - anon_sym_QMARK, - STATE(4164), 1, - sym_type_annotation, - STATE(4778), 1, + STATE(5534), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 3, + ACTIONS(8973), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134078] = 2, + [178268] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6408), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134094] = 2, + [178288] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5710), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3356), 9, + ACTIONS(8888), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134110] = 2, + [178304] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5535), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3344), 9, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134126] = 2, + [178320] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6406), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178340] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3280), 9, + ACTIONS(1745), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134142] = 8, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6957), 1, - anon_sym_BANG, - ACTIONS(6959), 1, - anon_sym_QMARK, - STATE(3900), 1, - sym_type_annotation, - STATE(4932), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [178352] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 3, + ACTIONS(2706), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134170] = 10, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4135), 1, - anon_sym_QMARK_DOT, - ACTIONS(6028), 1, + anon_sym_PIPE_RBRACE, + [178364] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6961), 1, - anon_sym_DOT, - STATE(1799), 1, - sym_template_string, - STATE(2272), 1, - sym_arguments, - STATE(4408), 1, - sym_type_arguments, - STATE(5421), 1, - sym_optional_chain, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6404), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134202] = 8, - ACTIONS(6420), 1, + [178384] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6963), 1, - anon_sym_BANG, - ACTIONS(6965), 1, - anon_sym_QMARK, - STATE(4212), 1, - sym_type_annotation, - STATE(4859), 1, + STATE(5687), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 3, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134230] = 8, - ACTIONS(6420), 1, + [178400] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7016), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178420] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6967), 1, - anon_sym_BANG, - ACTIONS(6969), 1, - anon_sym_QMARK, - STATE(4226), 1, - sym_type_annotation, - STATE(4890), 1, + STATE(5688), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 3, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134258] = 8, - ACTIONS(6420), 1, + [178436] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6971), 1, - anon_sym_BANG, - ACTIONS(6973), 1, - anon_sym_QMARK, - STATE(4230), 1, - sym_type_annotation, - STATE(4894), 1, + STATE(5538), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134286] = 8, - ACTIONS(6420), 1, + [178452] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7009), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178472] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6975), 1, - anon_sym_BANG, - ACTIONS(6977), 1, - anon_sym_QMARK, - STATE(4260), 1, - sym_type_annotation, - STATE(4939), 1, + STATE(5689), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134314] = 8, - ACTIONS(6420), 1, + [178488] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6239), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [178508] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6979), 1, - anon_sym_BANG, - ACTIONS(6981), 1, - anon_sym_QMARK, - STATE(4296), 1, - sym_type_annotation, - STATE(4971), 1, + STATE(5539), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134342] = 8, - ACTIONS(6420), 1, + [178524] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6983), 1, - anon_sym_BANG, - ACTIONS(6985), 1, - anon_sym_QMARK, - STATE(4106), 1, - sym_type_annotation, - STATE(4718), 1, + STATE(5439), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6434), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134370] = 2, + [178540] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5541), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 9, + ACTIONS(8975), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134386] = 9, - ACTIONS(132), 1, - anon_sym_import, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6989), 1, - sym_this, - STATE(1483), 1, - sym__type_query_member_expression, - STATE(1484), 1, - sym__type_query_subscript_expression, - STATE(1572), 1, - sym__type_query_call_expression, - STATE(1573), 1, - sym__type_query_instantiation_expression, - STATE(4377), 1, - sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134415] = 4, - ACTIONS(6645), 1, + [178556] = 6, + ACTIONS(2640), 1, anon_sym_LT, - STATE(2947), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4077), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134434] = 7, - ACTIONS(6991), 1, - sym_escape_sequence, - ACTIONS(6993), 1, - anon_sym_BQUOTE, - ACTIONS(6995), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6997), 1, - sym__template_chars, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6395), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3798), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4112), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134459] = 9, - ACTIONS(132), 1, - anon_sym_import, - ACTIONS(6999), 1, - sym_identifier, - ACTIONS(7001), 1, - sym_this, - STATE(1783), 1, - sym__type_query_member_expression, - STATE(1784), 1, - sym__type_query_subscript_expression, - STATE(2024), 1, - sym__type_query_call_expression, - STATE(2026), 1, - sym__type_query_instantiation_expression, - STATE(4400), 1, - sym_import, + [178576] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5693), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134488] = 6, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(7003), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7005), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7007), 1, - anon_sym_QMARK_COLON, + ACTIONS(8888), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3999), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134511] = 2, + ACTIONS(8093), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178604] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3176), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134526] = 7, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACE, - ACTIONS(3390), 1, - anon_sym_LBRACK, - ACTIONS(7009), 1, - anon_sym_enum, - STATE(4481), 1, - sym_variable_declarator, + ACTIONS(9026), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178616] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3543), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134551] = 3, - ACTIONS(6671), 1, - anon_sym_is, + ACTIONS(1745), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178628] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5488), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 7, + ACTIONS(8975), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [134568] = 2, + anon_sym_SEMI, + [178644] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6390), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3180), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134583] = 7, - ACTIONS(6995), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6997), 1, - sym__template_chars, - ACTIONS(7011), 1, - sym_escape_sequence, - ACTIONS(7013), 1, - anon_sym_BQUOTE, + [178664] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6193), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3846), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4112), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134608] = 6, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(7003), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7005), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7007), 1, - anon_sym_QMARK_COLON, + [178684] = 6, + ACTIONS(220), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1581), 1, + anon_sym_LBRACE, + ACTIONS(8043), 1, + anon_sym_extends, + STATE(864), 1, + sym_object_type, + STATE(5753), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4101), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134631] = 6, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(7003), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7005), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7007), 1, - anon_sym_QMARK_COLON, + [178704] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6231), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4103), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134654] = 7, - ACTIONS(6991), 1, - sym_escape_sequence, - ACTIONS(6995), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6997), 1, - sym__template_chars, - ACTIONS(7015), 1, - anon_sym_BQUOTE, + [178724] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5694), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3798), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4112), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134679] = 5, - ACTIONS(7017), 1, - anon_sym_LBRACE, - ACTIONS(7019), 1, - anon_sym_DOT, - STATE(4211), 1, - sym_statement_block, + ACTIONS(8888), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1715), 5, + ACTIONS(8123), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134700] = 5, - ACTIONS(7017), 1, - anon_sym_LBRACE, - ACTIONS(7021), 1, - anon_sym_DOT, - STATE(4211), 1, - sym_statement_block, + [178752] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1715), 5, + ACTIONS(9028), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134721] = 9, - ACTIONS(132), 1, - anon_sym_import, - ACTIONS(7023), 1, - sym_identifier, - ACTIONS(7025), 1, - sym_this, - STATE(2845), 1, - sym__type_query_subscript_expression, - STATE(2846), 1, - sym__type_query_member_expression, - STATE(2892), 1, - sym__type_query_call_expression, - STATE(2961), 1, - sym__type_query_instantiation_expression, - STATE(4374), 1, - sym_import, + [178764] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134750] = 6, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(7003), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7005), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7007), 1, - anon_sym_QMARK_COLON, + ACTIONS(9030), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [178776] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6670), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4067), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134773] = 3, - ACTIONS(6671), 1, - anon_sym_is, + [178796] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5633), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 7, + ACTIONS(9032), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [134790] = 9, - ACTIONS(132), 1, - anon_sym_import, - ACTIONS(7027), 1, - sym_identifier, - ACTIONS(7029), 1, - sym_this, - STATE(2896), 1, - sym__type_query_subscript_expression, - STATE(2902), 1, - sym__type_query_member_expression, - STATE(3076), 1, - sym__type_query_call_expression, - STATE(3239), 1, - sym__type_query_instantiation_expression, - STATE(4418), 1, - sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134819] = 3, - ACTIONS(7031), 1, - anon_sym_is, + anon_sym_SEMI, + [178812] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6783), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [134836] = 7, - ACTIONS(6991), 1, - sym_escape_sequence, - ACTIONS(6995), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6997), 1, - sym__template_chars, - ACTIONS(7033), 1, - anon_sym_BQUOTE, + [178832] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6380), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3798), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4018), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134861] = 7, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACE, - ACTIONS(3390), 1, - anon_sym_LBRACK, - ACTIONS(7035), 1, - anon_sym_enum, - STATE(4440), 1, - sym_variable_declarator, + [178852] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5632), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3543), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134886] = 7, - ACTIONS(6995), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6997), 1, - sym__template_chars, - ACTIONS(7011), 1, - sym_escape_sequence, - ACTIONS(7037), 1, - anon_sym_BQUOTE, + ACTIONS(9032), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178868] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6603), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3846), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4112), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134911] = 7, - ACTIONS(6991), 1, - sym_escape_sequence, - ACTIONS(6995), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6997), 1, - sym__template_chars, - ACTIONS(7039), 1, - anon_sym_BQUOTE, + [178888] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5624), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3798), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4112), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134936] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6739), 1, - sym_identifier, - STATE(5165), 1, - sym_export_specifier, + ACTIONS(9034), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178904] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6378), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6741), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4670), 2, - sym__module_export_name, - sym_string, - [134961] = 7, - ACTIONS(6991), 1, - sym_escape_sequence, - ACTIONS(6995), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6997), 1, - sym__template_chars, - ACTIONS(7041), 1, - anon_sym_BQUOTE, + [178924] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5695), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3798), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4112), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134986] = 6, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(7003), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7005), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7007), 1, - anon_sym_QMARK_COLON, + ACTIONS(8886), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178940] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6376), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4268), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [135009] = 6, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(7003), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7005), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7007), 1, - anon_sym_QMARK_COLON, + [178960] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6024), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4269), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [135032] = 5, - ACTIONS(6781), 1, - anon_sym_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE, - ACTIONS(6785), 1, - anon_sym_extends, + [178980] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5700), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 5, + ACTIONS(8886), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [135053] = 7, - ACTIONS(6420), 1, + [178996] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6709), 1, - anon_sym_BANG, - STATE(3901), 1, - sym_type_annotation, - STATE(4961), 1, + STATE(5709), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6707), 3, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135078] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6663), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_extends, + [179012] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6780), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7043), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135099] = 7, - ACTIONS(6991), 1, - sym_escape_sequence, - ACTIONS(6995), 1, + [179032] = 5, + ACTIONS(9036), 1, + anon_sym_BQUOTE, + ACTIONS(9038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6997), 1, + ACTIONS(9040), 1, sym__template_chars, - ACTIONS(7045), 1, - anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3798), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4112), 2, + STATE(4804), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [135124] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6663), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_extends, + [179050] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6371), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7047), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135145] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6663), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_extends, + [179070] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6934), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7049), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135166] = 6, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(7003), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7005), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7007), 1, - anon_sym_QMARK_COLON, + [179090] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6601), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3996), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [135189] = 2, + [179110] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3172), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [135204] = 6, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(7003), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7005), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7007), 1, - anon_sym_QMARK_COLON, + ACTIONS(2774), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179122] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5629), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4187), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [135227] = 9, - ACTIONS(132), 1, - anon_sym_import, - ACTIONS(7025), 1, - sym_this, - ACTIONS(7051), 1, - sym_identifier, - STATE(2892), 1, - sym__type_query_call_expression, - STATE(2961), 1, - sym__type_query_instantiation_expression, - STATE(3158), 1, - sym__type_query_member_expression, - STATE(3160), 1, - sym__type_query_subscript_expression, - STATE(4454), 1, - sym_import, + ACTIONS(9032), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179138] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6368), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135256] = 6, - ACTIONS(6428), 1, + [179158] = 4, + ACTIONS(8273), 1, anon_sym_COLON, - ACTIONS(7003), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7005), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7007), 1, - anon_sym_QMARK_COLON, + ACTIONS(9042), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4270), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, + STATE(6546), 3, sym_type_annotation, - [135279] = 9, - ACTIONS(132), 1, - anon_sym_import, - ACTIONS(7053), 1, - sym_identifier, - ACTIONS(7055), 1, - sym_this, - STATE(2910), 1, - sym__type_query_subscript_expression, - STATE(2951), 1, - sym__type_query_member_expression, - STATE(3191), 1, - sym__type_query_call_expression, - STATE(3358), 1, - sym__type_query_instantiation_expression, - STATE(4421), 1, - sym_import, + sym_asserts_annotation, + sym_type_predicate_annotation, + [179174] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6366), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135308] = 6, - ACTIONS(6420), 1, + [179194] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4056), 1, - sym_type_annotation, - STATE(4580), 1, + STATE(5727), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135330] = 6, - ACTIONS(6420), 1, + [179210] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4317), 1, - sym_type_annotation, - STATE(5026), 1, + STATE(5627), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9032), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135352] = 8, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(3973), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5129), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [179226] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6364), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135378] = 8, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6863), 1, - anon_sym_LBRACE, - STATE(208), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5200), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [179246] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6927), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135404] = 6, - ACTIONS(6420), 1, + [179266] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(4029), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [179286] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4004), 1, - sym_type_annotation, - STATE(4838), 1, + STATE(5560), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7057), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135426] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4385), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [135446] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4403), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [135466] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, + [179302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 4, + ACTIONS(9045), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [135486] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179314] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5739), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 4, + ACTIONS(8886), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [135506] = 8, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(754), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5177), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135532] = 7, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(6673), 1, - sym_identifier, - ACTIONS(6683), 1, - anon_sym_type, - STATE(5415), 1, - sym__import_identifier, + anon_sym_SEMI, + [179330] = 5, + ACTIONS(9038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9040), 1, + sym__template_chars, + ACTIONS(9047), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5745), 2, - sym__module_export_name, - sym_string, - [135556] = 2, + STATE(4804), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [179348] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6777), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5412), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [135570] = 4, - ACTIONS(7017), 1, + [179368] = 6, + ACTIONS(1691), 1, anon_sym_LBRACE, - STATE(4211), 1, + ACTIONS(9005), 1, + anon_sym_SEMI, + ACTIONS(9007), 1, + sym__automatic_semicolon, + ACTIONS(9009), 1, + sym__function_signature_automatic_semicolon, + STATE(217), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1715), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135588] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4240), 1, - sym_type_annotation, - STATE(4918), 1, - sym__initializer, + [179388] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6789), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135610] = 8, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2264), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5258), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [179408] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(4755), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135636] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, + [179428] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6218), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [135656] = 6, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(6028), 1, + [179448] = 6, + ACTIONS(2640), 1, anon_sym_LT, - STATE(2174), 1, - sym_arguments, - STATE(5238), 1, - sym_type_arguments, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6771), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7065), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [135678] = 2, + [179468] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5717), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7067), 7, + ACTIONS(8888), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [135692] = 8, - ACTIONS(6699), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2571), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5375), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [179484] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6893), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135718] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5124), 1, - sym_statement_block, + [179504] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5720), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7069), 5, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135736] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5126), 1, - sym_statement_block, + [179520] = 5, + ACTIONS(9049), 1, + sym_identifier, + ACTIONS(9051), 1, + anon_sym_LPAREN, + STATE(1205), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7071), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135754] = 4, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4255), 1, - sym_type_annotation, + STATE(1313), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [179538] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6766), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7073), 5, + [179558] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [135772] = 8, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(7075), 1, - sym_identifier, - ACTIONS(7077), 1, - anon_sym_DOT, - STATE(3469), 1, - sym_nested_identifier, - STATE(3507), 1, - sym_string, - STATE(4121), 1, - sym__module, + [179570] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6764), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135798] = 8, - ACTIONS(1033), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1613), 1, - anon_sym_LBRACE, - ACTIONS(7079), 1, + [179590] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(7081), 1, - anon_sym_extends, - STATE(3935), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, - STATE(4245), 1, - sym_object_type, - STATE(4541), 1, - sym_extends_type_clause, + STATE(6209), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135824] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4338), 1, - sym_type_annotation, - STATE(5053), 1, - sym__initializer, + [179610] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(2890), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135846] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5219), 1, - sym_statement_block, + anon_sym_PIPE_RBRACE, + [179622] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7069), 5, + ACTIONS(8131), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [135864] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3913), 1, - sym_type_annotation, - STATE(4738), 1, - sym__initializer, + [179634] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(4998), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [179654] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(2910), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135886] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5223), 1, - sym_statement_block, + anon_sym_PIPE_RBRACE, + [179666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7071), 5, + ACTIONS(2922), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [135904] = 4, - ACTIONS(6428), 1, + [179678] = 4, + ACTIONS(8273), 1, anon_sym_COLON, - STATE(4151), 1, + ACTIONS(9053), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(6955), 3, sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [179694] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7083), 5, + ACTIONS(2626), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [135922] = 8, - ACTIONS(2708), 1, + [179706] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7085), 1, - sym_identifier, - ACTIONS(7087), 1, - anon_sym_STAR, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5167), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6207), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135948] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4033), 1, - sym_type_annotation, - STATE(4509), 1, - sym__initializer, + [179726] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6350), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135970] = 6, - ACTIONS(6420), 1, + [179746] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3914), 1, - sym_type_annotation, - STATE(4751), 1, + STATE(5721), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135992] = 2, + [179762] = 5, + ACTIONS(9038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9056), 1, + anon_sym_BQUOTE, + ACTIONS(9058), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6773), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [136006] = 2, + STATE(5032), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [179780] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7089), 7, + ACTIONS(8133), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [136020] = 6, - ACTIONS(3388), 1, - anon_sym_LBRACE, - ACTIONS(3390), 1, - anon_sym_LBRACK, - ACTIONS(7091), 1, - sym_identifier, - STATE(4481), 1, - sym_variable_declarator, + [179792] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6762), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3302), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136042] = 6, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(6028), 1, + [179812] = 6, + ACTIONS(2640), 1, anon_sym_LT, - STATE(1655), 1, - sym_arguments, - STATE(5273), 1, - sym_type_arguments, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6563), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7065), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [136064] = 6, - ACTIONS(6584), 1, - anon_sym_EQ, - STATE(4436), 1, - sym_constraint, - STATE(5349), 1, - sym_default_type, + [179832] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6554), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6589), 2, - anon_sym_COLON, + [179852] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7604), 1, anon_sym_extends, - ACTIONS(7093), 2, - anon_sym_COMMA, - anon_sym_GT, - [136086] = 4, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3974), 1, - sym_type_annotation, + ACTIONS(8928), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7095), 5, + ACTIONS(9060), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136104] = 6, - ACTIONS(6420), 1, + [179870] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3921), 1, - sym_type_annotation, - STATE(4967), 1, + STATE(5564), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(8973), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136126] = 8, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6863), 1, - anon_sym_LBRACE, - STATE(227), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5118), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136152] = 2, + [179886] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6396), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5017), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [136166] = 8, - ACTIONS(6699), 1, + [179906] = 5, + ACTIONS(7582), 1, + anon_sym_LT, + ACTIONS(9062), 1, anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(1769), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5321), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + STATE(5992), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136192] = 6, - ACTIONS(6420), 1, + ACTIONS(9064), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [179924] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4041), 1, - sym_type_annotation, - STATE(4531), 1, + STATE(5722), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136214] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4109), 1, - sym_type_annotation, - STATE(4721), 1, - sym__initializer, + [179940] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(8928), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6647), 3, + ACTIONS(9066), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [136236] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4006), 1, - sym_type_annotation, - STATE(4872), 1, - sym__initializer, + [179958] = 3, + ACTIONS(5815), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, + ACTIONS(1827), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136258] = 4, - ACTIONS(4075), 1, - anon_sym_extends, - ACTIONS(7097), 1, - sym_identifier, + anon_sym_PIPE_RBRACE, + [179972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 5, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - [136276] = 6, - ACTIONS(6420), 1, + ACTIONS(5668), 5, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4008), 1, - sym_type_annotation, - STATE(4888), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [136298] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4015), 1, - sym_type_annotation, - STATE(4950), 1, - sym__initializer, + anon_sym_QMARK, + [179984] = 6, + ACTIONS(7982), 1, + anon_sym_LBRACE, + ACTIONS(9068), 1, + anon_sym_SEMI, + ACTIONS(9070), 1, + sym__automatic_semicolon, + ACTIONS(9072), 1, + sym__function_signature_automatic_semicolon, + STATE(4811), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136320] = 6, - ACTIONS(6420), 1, + [180004] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3901), 1, - sym_type_annotation, - STATE(4726), 1, + STATE(5565), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6707), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136342] = 6, - ACTIONS(3388), 1, - anon_sym_LBRACE, - ACTIONS(3390), 1, - anon_sym_LBRACK, - ACTIONS(7099), 1, - sym_identifier, - STATE(4428), 1, - sym_variable_declarator, + [180020] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6343), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3543), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136364] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3918), 1, - sym_type_annotation, - STATE(4926), 1, - sym__initializer, + [180040] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6884), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6641), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136386] = 6, - ACTIONS(6420), 1, + [180060] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4273), 1, - sym_type_annotation, - STATE(4955), 1, + STATE(5625), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6637), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136408] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4042), 1, - sym_type_annotation, - STATE(4532), 1, - sym__initializer, + [180076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136430] = 6, - ACTIONS(6420), 1, + ACTIONS(5345), 5, anon_sym_EQ, - ACTIONS(6428), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4017), 1, - sym_type_annotation, - STATE(4951), 1, - sym__initializer, + anon_sym_QMARK, + [180088] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6322), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136452] = 8, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6843), 1, - anon_sym_LBRACE, - STATE(901), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5123), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [180108] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6619), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136478] = 6, - ACTIONS(6420), 1, + [180128] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4284), 1, - sym_type_annotation, - STATE(4976), 1, + STATE(5567), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136500] = 6, - ACTIONS(6420), 1, + [180144] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6195), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [180164] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4182), 1, - sym_type_annotation, - STATE(4802), 1, + STATE(5622), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6623), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136522] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5307), 1, - sym_statement_block, + [180180] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6748), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7101), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136540] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5310), 1, - sym_statement_block, + [180200] = 5, + ACTIONS(9074), 1, + sym_identifier, + ACTIONS(9076), 1, + anon_sym_LPAREN, + STATE(2626), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7103), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136558] = 2, + STATE(3131), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [180218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1813), 7, - sym__automatic_semicolon, + ACTIONS(9078), 5, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [136572] = 6, - ACTIONS(6420), 1, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [180230] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4290), 1, - sym_type_annotation, - STATE(4986), 1, + STATE(5621), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136594] = 6, - ACTIONS(6420), 1, + [180246] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3948), 1, - sym_type_annotation, - STATE(4617), 1, + STATE(5706), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136616] = 2, + [180262] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5568), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 7, + ACTIONS(8975), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [136630] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5237), 1, - sym_statement_block, + [180278] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5569), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7101), 5, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136648] = 8, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2342), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5319), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [180294] = 6, + ACTIONS(3933), 1, + anon_sym_COLON, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_COMMA, + ACTIONS(9082), 1, + anon_sym_RBRACE, + STATE(5904), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136674] = 2, + [180314] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6192), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5028), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [136688] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4302), 1, - sym_type_annotation, - STATE(4992), 1, - sym__initializer, + [180334] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6746), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136710] = 6, - ACTIONS(6420), 1, + [180354] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4309), 1, - sym_type_annotation, - STATE(5004), 1, + STATE(5620), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136732] = 6, - ACTIONS(3388), 1, - anon_sym_LBRACE, - ACTIONS(3390), 1, - anon_sym_LBRACK, - ACTIONS(7099), 1, - sym_identifier, - STATE(4440), 1, - sym_variable_declarator, + [180370] = 6, + ACTIONS(8936), 1, + anon_sym_EQ, + ACTIONS(9084), 1, + anon_sym_COMMA, + ACTIONS(9086), 1, + anon_sym_RBRACE, + STATE(5683), 1, + aux_sym_enum_body_repeat1, + STATE(6989), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3543), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136754] = 8, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2183), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5190), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [180390] = 5, + ACTIONS(9038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9088), 1, + anon_sym_BQUOTE, + ACTIONS(9090), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136780] = 6, - ACTIONS(6420), 1, + STATE(5264), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [180408] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4315), 1, - sym_type_annotation, - STATE(5021), 1, + STATE(5619), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136802] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4316), 1, - sym_type_annotation, - STATE(5023), 1, - sym__initializer, + [180424] = 5, + ACTIONS(9092), 1, + anon_sym_SEMI, + ACTIONS(9094), 1, + sym__automatic_semicolon, + STATE(6851), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136824] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4022), 1, - sym_type_annotation, - STATE(4999), 1, - sym__initializer, + ACTIONS(8995), 2, + anon_sym_with, + anon_sym_assert, + [180442] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6042), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136846] = 8, - ACTIONS(2708), 1, + [180462] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7105), 1, - sym_identifier, - ACTIONS(7107), 1, - anon_sym_STAR, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5329), 1, + STATE(6102), 1, + sym_type_parameters, + STATE(6248), 1, sym__call_signature, - STATE(5437), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [180482] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, + STATE(6741), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136872] = 6, - ACTIONS(6420), 1, + [180502] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6190), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [180522] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4024), 1, - sym_type_annotation, - STATE(5009), 1, + STATE(5618), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136894] = 6, - ACTIONS(6420), 1, + [180538] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4320), 1, - sym_type_annotation, - STATE(5031), 1, + STATE(5723), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136916] = 6, - ACTIONS(6420), 1, + [180554] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4321), 1, - sym_type_annotation, - STATE(5033), 1, + STATE(5617), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136938] = 8, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(3930), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5426), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [180570] = 4, + STATE(6875), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136964] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4324), 1, - sym_type_annotation, - STATE(5038), 1, - sym__initializer, + ACTIONS(8995), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(9096), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [180586] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6540), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136986] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4325), 1, - sym_type_annotation, - STATE(5039), 1, - sym__initializer, + [180606] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6212), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137008] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4326), 1, - sym_type_annotation, - STATE(5041), 1, - sym__initializer, + [180626] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6051), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137030] = 6, - ACTIONS(6420), 1, + [180646] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4336), 1, - sym_type_annotation, - STATE(5054), 1, + STATE(5616), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(9098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137052] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5240), 1, - sym_statement_block, + [180662] = 4, + STATE(6876), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7103), 5, + ACTIONS(8995), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(9100), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137070] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4062), 1, - sym_type_annotation, - STATE(4625), 1, - sym__initializer, + [180678] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6881), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7109), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137092] = 6, - ACTIONS(6420), 1, + [180698] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3928), 1, - sym_type_annotation, - STATE(5037), 1, + STATE(5612), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137114] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4045), 1, - sym_type_annotation, - STATE(4545), 1, - sym__initializer, + [180714] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6056), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137136] = 8, - ACTIONS(6699), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(1683), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5342), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [180734] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6538), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137162] = 8, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(3893), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5348), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [180754] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6204), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137188] = 6, - ACTIONS(6420), 1, + [180774] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4078), 1, - sym_type_annotation, - STATE(4667), 1, + STATE(5611), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6625), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137210] = 2, + [180790] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8979), 1, + anon_sym_abstract, + ACTIONS(9102), 1, + anon_sym_class, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5026), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [137224] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5186), 1, - sym_statement_block, + [180810] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6883), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7111), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137242] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4345), 1, - sym_type_annotation, - STATE(5073), 1, - sym__initializer, + [180830] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6882), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137264] = 6, - ACTIONS(6420), 1, + [180850] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6879), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [180870] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4346), 1, - sym_type_annotation, - STATE(5074), 1, + STATE(5610), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137286] = 6, - ACTIONS(6420), 1, + [180886] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4063), 1, - sym_type_annotation, - STATE(4628), 1, + STATE(5609), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7109), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137308] = 8, - ACTIONS(6699), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2556), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5163), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [180902] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6903), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137334] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5196), 1, - sym_statement_block, + [180922] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6735), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7113), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137352] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4027), 1, - sym_type_annotation, - STATE(5012), 1, - sym__initializer, + [180942] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6074), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137374] = 8, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2257), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5155), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [180962] = 5, + ACTIONS(9038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9104), 1, + anon_sym_BQUOTE, + ACTIONS(9106), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137400] = 2, + STATE(5209), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [180980] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6945), 7, + ACTIONS(9108), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [137414] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5112), 1, - sym_statement_block, + anon_sym_PIPE_RBRACE, + [180992] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7022), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7113), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137432] = 2, + [181012] = 3, + ACTIONS(9110), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7115), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3583), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [137446] = 3, - ACTIONS(6717), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4101), 6, - anon_sym_as, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [137462] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4350), 1, - sym_type_annotation, - STATE(5082), 1, - sym__initializer, + [181026] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(9112), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137484] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4351), 1, - sym_type_annotation, - STATE(5084), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [181038] = 5, + ACTIONS(9038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9040), 1, + sym__template_chars, + ACTIONS(9114), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137506] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4352), 1, - sym_type_annotation, - STATE(5087), 1, - sym__initializer, + STATE(4804), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [181056] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6211), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137528] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3874), 1, - sym_type_annotation, - STATE(5091), 1, - sym__initializer, + [181076] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6733), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137550] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3950), 1, - sym_type_annotation, - STATE(4636), 1, - sym__initializer, + [181096] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(5070), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137572] = 6, - ACTIONS(6420), 1, + [181116] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3915), 1, - sym_type_annotation, - STATE(4656), 1, + STATE(5608), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137594] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3923), 1, - sym_type_annotation, - STATE(4994), 1, - sym__initializer, + [181132] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6536), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137616] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5113), 1, - sym_statement_block, + [181152] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6728), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7111), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137634] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4028), 1, - sym_type_annotation, - STATE(5042), 1, - sym__initializer, + [181172] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6827), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137656] = 6, - ACTIONS(6420), 1, + [181192] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4111), 1, - sym_type_annotation, - STATE(4704), 1, + STATE(5607), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137678] = 8, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2202), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5433), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137704] = 8, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(787), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5175), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137730] = 8, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(3942), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5105), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137756] = 8, - ACTIONS(6699), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(1702), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5111), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [181208] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6626), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137782] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4203), 1, - sym_type_annotation, - STATE(4835), 1, - sym__initializer, + [181228] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(8051), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137804] = 8, - ACTIONS(2708), 1, + anon_sym_PIPE_RBRACE, + [181240] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7117), 1, - sym_identifier, - ACTIONS(7119), 1, - anon_sym_STAR, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5322), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6831), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137830] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4134), 1, - sym_type_annotation, - STATE(4732), 1, - sym__initializer, + [181260] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(9116), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137852] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4160), 1, - sym_type_annotation, - STATE(4775), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [181272] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6088), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137874] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4327), 1, - sym_type_annotation, - STATE(4969), 1, - sym__initializer, + [181292] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6877), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + [181312] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8053), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137896] = 6, - ACTIONS(6420), 1, + anon_sym_PIPE_RBRACE, + [181324] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4331), 1, - sym_type_annotation, - STATE(5045), 1, + STATE(5573), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(8973), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137918] = 6, - ACTIONS(6420), 1, + [181340] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3885), 1, - sym_type_annotation, - STATE(5066), 1, + STATE(5726), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(8888), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137940] = 6, - ACTIONS(6420), 1, + [181356] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3887), 1, - sym_type_annotation, - STATE(4522), 1, + STATE(5634), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137962] = 2, + [181372] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6628), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6937), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [137976] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3977), 1, - sym_type_annotation, - STATE(4759), 1, - sym__initializer, + [181392] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6630), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + [181412] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9118), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137998] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4019), 1, - sym_type_annotation, - STATE(4861), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [181424] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6872), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [181444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 3, + ACTIONS(8053), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138020] = 8, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2226), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5352), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + anon_sym_PIPE_RBRACE, + [181456] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(4921), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138046] = 6, - ACTIONS(3388), 1, - anon_sym_LBRACE, - ACTIONS(3390), 1, - anon_sym_LBRACK, - ACTIONS(7099), 1, - sym_identifier, - STATE(4472), 1, - sym_variable_declarator, + [181476] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(4941), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3543), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [138068] = 6, - ACTIONS(6420), 1, + [181496] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3951), 1, - sym_type_annotation, - STATE(4652), 1, + STATE(5890), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9120), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138090] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, + [181512] = 4, + ACTIONS(8273), 1, anon_sym_COLON, - STATE(4061), 1, + ACTIONS(9122), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(6955), 3, sym_type_annotation, - STATE(4605), 1, + sym_asserts_annotation, + sym_type_predicate_annotation, + [181528] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5606), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7109), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138112] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5195), 1, - sym_statement_block, + [181544] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6104), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7121), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138130] = 6, - ACTIONS(6420), 1, + [181564] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4209), 1, - sym_type_annotation, - STATE(4853), 1, + STATE(5605), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138152] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4210), 1, - sym_type_annotation, - STATE(4855), 1, - sym__initializer, + [181580] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7047), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138174] = 8, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2236), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5407), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [181600] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6889), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [181620] = 5, + ACTIONS(9038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9125), 1, + anon_sym_BQUOTE, + ACTIONS(9127), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138200] = 8, - ACTIONS(2708), 1, + STATE(5129), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [181638] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7123), 1, - anon_sym_COLON, - ACTIONS(7125), 1, - anon_sym_QMARK, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5397), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6868), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138226] = 8, - ACTIONS(6689), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(2388), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5130), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [181658] = 4, + ACTIONS(8273), 1, + anon_sym_COLON, + ACTIONS(9129), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138252] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4029), 1, + STATE(6546), 3, sym_type_annotation, - STATE(5089), 1, - sym__initializer, + sym_asserts_annotation, + sym_type_predicate_annotation, + [181674] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6517), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138274] = 2, + [181694] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(5728), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6795), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [138288] = 6, - ACTIONS(6420), 1, + [181714] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3955), 1, - sym_type_annotation, - STATE(4658), 1, + STATE(5576), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138310] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5400), 1, - sym_statement_block, + [181730] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5603), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7127), 5, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138328] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, + [181746] = 4, + ACTIONS(8273), 1, anon_sym_COLON, - STATE(3959), 1, + ACTIONS(9132), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(6546), 3, sym_type_annotation, - STATE(4719), 1, + sym_asserts_annotation, + sym_type_predicate_annotation, + [181762] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5602), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138350] = 8, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(6843), 1, - anon_sym_LBRACE, - STATE(852), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5410), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + [181778] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5601), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138376] = 8, - ACTIONS(6645), 1, - anon_sym_LT, - ACTIONS(7129), 1, - anon_sym_LBRACE, - ACTIONS(7131), 1, + ACTIONS(9034), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7133), 1, - anon_sym_DOT, - ACTIONS(7135), 1, - anon_sym_LBRACE_PIPE, - STATE(4426), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5049), 1, - sym_type_arguments, + anon_sym_SEMI, + [181794] = 6, + ACTIONS(3933), 1, + anon_sym_COLON, + ACTIONS(4225), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_COMMA, + ACTIONS(9135), 1, + anon_sym_RBRACE, + STATE(5518), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138402] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5202), 1, - sym_statement_block, + [181814] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5600), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7121), 5, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138420] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4131), 1, - sym_type_annotation, - STATE(5079), 1, - sym__initializer, + [181830] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6718), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138442] = 6, - ACTIONS(6420), 1, + [181850] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4220), 1, - sym_type_annotation, - STATE(4875), 1, + STATE(5577), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138464] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4221), 1, - sym_type_annotation, - STATE(4876), 1, - sym__initializer, + [181866] = 6, + ACTIONS(4075), 1, + anon_sym_LBRACE, + ACTIONS(9137), 1, + anon_sym_SEMI, + ACTIONS(9139), 1, + sym__automatic_semicolon, + ACTIONS(9141), 1, + sym__function_signature_automatic_semicolon, + STATE(2380), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138486] = 6, - ACTIONS(6420), 1, + [181886] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4104), 1, - sym_type_annotation, - STATE(4715), 1, + STATE(5899), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6655), 3, + ACTIONS(9120), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138508] = 8, - ACTIONS(2708), 1, + [181902] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7137), 1, - sym_identifier, - ACTIONS(7139), 1, - anon_sym_STAR, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5167), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6123), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138534] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3876), 1, - sym_type_annotation, - STATE(4731), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138556] = 6, - ACTIONS(3388), 1, - anon_sym_LBRACE, - ACTIONS(3390), 1, - anon_sym_LBRACK, - ACTIONS(7099), 1, - sym_identifier, - STATE(4481), 1, - sym_variable_declarator, + [181922] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6125), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3543), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [138578] = 7, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(7141), 1, + [181942] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(7145), 1, - anon_sym_QMARK, - STATE(4406), 1, - sym_type_annotation, - STATE(5300), 1, + STATE(5952), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7143), 2, + ACTIONS(9120), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [138602] = 6, - ACTIONS(6420), 1, + anon_sym_SEMI, + [181958] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4222), 1, - sym_type_annotation, - STATE(4879), 1, + STATE(5599), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(9098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138624] = 6, - ACTIONS(6420), 1, + [181974] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4223), 1, - sym_type_annotation, - STATE(4881), 1, + STATE(5578), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138646] = 8, - ACTIONS(2708), 1, + [181990] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7147), 1, - sym_identifier, - ACTIONS(7149), 1, - anon_sym_STAR, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5140), 1, + STATE(6102), 1, + sym_type_parameters, + STATE(6130), 1, sym__call_signature, - STATE(5437), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [182010] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, + STATE(6398), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138672] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3936), 1, - sym_type_annotation, - STATE(4538), 1, - sym__initializer, + [182030] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6636), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138694] = 6, - ACTIONS(6420), 1, + [182050] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4124), 1, - sym_type_annotation, - STATE(4736), 1, + STATE(5595), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138716] = 6, - ACTIONS(6420), 1, + [182066] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4060), 1, - sym_type_annotation, - STATE(4604), 1, + STATE(5594), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7109), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138738] = 3, - ACTIONS(6717), 1, - anon_sym_is, + [182082] = 4, + ACTIONS(8273), 1, + anon_sym_COLON, + ACTIONS(9143), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [138754] = 3, - ACTIONS(7151), 1, - anon_sym_EQ, + STATE(6546), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [182098] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6866), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3572), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + [182118] = 4, + ACTIONS(8273), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [138770] = 5, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(5749), 1, - anon_sym_RBRACE, - STATE(4944), 1, - aux_sym_object_repeat1, + ACTIONS(9146), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [138790] = 3, - ACTIONS(7059), 1, - anon_sym_AMP, + STATE(6955), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [182134] = 6, + ACTIONS(4075), 1, + anon_sym_LBRACE, + ACTIONS(9005), 1, + anon_sym_SEMI, + ACTIONS(9007), 1, + sym__automatic_semicolon, + ACTIONS(9009), 1, + sym__function_signature_automatic_semicolon, + STATE(2321), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [138806] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, + [182154] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6638), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138826] = 3, - ACTIONS(7153), 1, - anon_sym_extends, + [182174] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8281), 1, + anon_sym_abstract, + ACTIONS(9149), 1, + anon_sym_class, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - [138842] = 6, - ACTIONS(3388), 1, - anon_sym_LBRACE, - ACTIONS(3390), 1, - anon_sym_LBRACK, - ACTIONS(7099), 1, - sym_identifier, - STATE(5101), 1, - sym_variable_declarator, + [182194] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6703), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3543), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [138864] = 3, - ACTIONS(7155), 1, - anon_sym_is, + [182214] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6442), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [138880] = 6, - ACTIONS(6420), 1, + [182234] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4046), 1, - sym_type_annotation, - STATE(4547), 1, + STATE(5592), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138902] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5249), 1, - sym_statement_block, + [182250] = 5, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2330), 1, + anon_sym_SQUOTE, + ACTIONS(9151), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7157), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138920] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5256), 1, - sym_statement_block, + STATE(5641), 2, + sym__module_export_name, + sym_string, + [182268] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5591), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7159), 5, + ACTIONS(9034), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138938] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5264), 1, - sym_statement_block, + [182284] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6117), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7157), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138956] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4030), 1, - sym_type_annotation, - STATE(5092), 1, - sym__initializer, + [182304] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6640), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138978] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5168), 1, - sym_statement_block, + [182324] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(4404), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7161), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138996] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4154), 1, - sym_type_annotation, - STATE(4767), 1, - sym__initializer, + [182344] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8279), 1, + anon_sym_class, + ACTIONS(8281), 1, + anon_sym_abstract, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139018] = 6, - ACTIONS(6420), 1, + [182364] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4156), 1, - sym_type_annotation, - STATE(4769), 1, + STATE(5590), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9153), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139040] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5173), 1, - sym_statement_block, + [182380] = 4, + ACTIONS(8273), 1, + anon_sym_COLON, + ACTIONS(9155), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7163), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139058] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4031), 1, + STATE(6546), 3, sym_type_annotation, - STATE(4494), 1, - sym__initializer, + sym_asserts_annotation, + sym_type_predicate_annotation, + [182396] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6113), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139080] = 6, - ACTIONS(6420), 1, + [182416] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4166), 1, - sym_type_annotation, - STATE(4783), 1, + STATE(5732), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9158), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139102] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4171), 1, - sym_type_annotation, - STATE(4787), 1, - sym__initializer, + [182432] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6643), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139124] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4174), 1, - sym_type_annotation, - STATE(4792), 1, - sym__initializer, + [182452] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6897), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139146] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4176), 1, - sym_type_annotation, - STATE(4795), 1, - sym__initializer, + [182472] = 5, + ACTIONS(9038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9040), 1, + sym__template_chars, + ACTIONS(9160), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139168] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4196), 1, - sym_type_annotation, - STATE(4825), 1, - sym__initializer, + STATE(4804), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [182490] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6146), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139190] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4199), 1, - sym_type_annotation, - STATE(4831), 1, - sym__initializer, + [182510] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6648), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139212] = 8, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(7165), 1, - sym_identifier, - ACTIONS(7167), 1, - anon_sym_DOT, - STATE(745), 1, - sym_nested_identifier, - STATE(778), 1, - sym_string, - STATE(890), 1, - sym__module, + [182530] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6650), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139238] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5395), 1, - sym_statement_block, + [182550] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6652), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7169), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139256] = 8, - ACTIONS(2708), 1, + [182570] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7125), 1, - anon_sym_QMARK, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5397), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6940), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139282] = 4, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5222), 1, - sym_statement_block, + [182590] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6153), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7173), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139300] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4047), 1, - sym_type_annotation, - STATE(4550), 1, - sym__initializer, + [182610] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6155), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139322] = 8, - ACTIONS(2708), 1, + [182630] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7175), 1, - sym_identifier, - ACTIONS(7177), 1, - anon_sym_STAR, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5167), 1, + STATE(6046), 1, sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139348] = 2, + [182650] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6771), 7, + ACTIONS(9162), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [139362] = 2, + anon_sym_PIPE_RBRACE, + [182662] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7179), 7, + ACTIONS(9164), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [139376] = 8, - ACTIONS(2708), 1, + [182674] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7181), 1, - sym_identifier, - ACTIONS(7183), 1, - anon_sym_STAR, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5140), 1, + STATE(6102), 1, + sym_type_parameters, + STATE(6157), 1, sym__call_signature, - STATE(5437), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [182694] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, + STATE(6112), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139402] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4048), 1, - sym_type_annotation, - STATE(4552), 1, - sym__initializer, + [182714] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6187), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139424] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4049), 1, - sym_type_annotation, - STATE(4557), 1, - sym__initializer, + [182734] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6698), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139446] = 8, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1565), 1, - anon_sym_LBRACE, - ACTIONS(7079), 1, + [182754] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(7081), 1, - anon_sym_extends, - STATE(863), 1, - sym_object_type, - STATE(4181), 1, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6052), 1, + sym__call_signature, + STATE(6102), 1, sym_type_parameters, - STATE(4793), 1, - sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139472] = 6, - ACTIONS(6420), 1, + [182774] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4050), 1, - sym_type_annotation, - STATE(4559), 1, + STATE(5913), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, + ACTIONS(9166), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139494] = 6, - ACTIONS(3388), 1, - anon_sym_LBRACE, - ACTIONS(3390), 1, - anon_sym_LBRACK, - ACTIONS(7185), 1, - sym_identifier, - STATE(4472), 1, - sym_variable_declarator, + [182790] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6696), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3301), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [139516] = 6, - ACTIONS(6420), 1, + [182810] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4054), 1, - sym_type_annotation, - STATE(4574), 1, + STATE(5916), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, + ACTIONS(9166), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139538] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4032), 1, - sym_type_annotation, - STATE(4495), 1, - sym__initializer, + [182826] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6285), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6635), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139560] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, + [182846] = 4, + ACTIONS(8273), 1, anon_sym_COLON, - STATE(3902), 1, - sym_type_annotation, - STATE(5058), 1, - sym__initializer, + ACTIONS(9168), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139582] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4213), 1, + STATE(6955), 3, sym_type_annotation, - STATE(4862), 1, - sym__initializer, + sym_asserts_annotation, + sym_type_predicate_annotation, + [182862] = 3, + ACTIONS(4603), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139604] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, + ACTIONS(5467), 4, + anon_sym_LPAREN, anon_sym_COLON, - STATE(4218), 1, - sym_type_annotation, - STATE(4863), 1, + anon_sym_LT, + anon_sym_QMARK, + [182876] = 4, + ACTIONS(7367), 1, + anon_sym_EQ, + STATE(5734), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9171), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139626] = 8, - ACTIONS(2708), 1, + [182892] = 5, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + ACTIONS(9173), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(7121), 2, + sym__module_export_name, + sym_string, + [182910] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7187), 1, - sym_identifier, - ACTIONS(7189), 1, - anon_sym_STAR, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5167), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6849), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139652] = 6, - ACTIONS(6584), 1, - anon_sym_EQ, - STATE(4413), 1, - sym_constraint, - STATE(5330), 1, - sym_default_type, + [182930] = 6, + ACTIONS(1049), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1623), 1, + anon_sym_LBRACE, + ACTIONS(8043), 1, + anon_sym_extends, + STATE(4608), 1, + sym_object_type, + STATE(5757), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6589), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7191), 2, - anon_sym_COMMA, - anon_sym_GT, - [139674] = 3, - ACTIONS(7193), 1, + [182950] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6678), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [182970] = 4, + ACTIONS(7367), 1, anon_sym_EQ, + STATE(5914), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 6, + ACTIONS(9120), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [139690] = 8, - ACTIONS(2708), 1, + anon_sym_SEMI, + [182986] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7196), 1, - sym_identifier, - ACTIONS(7198), 1, - anon_sym_STAR, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5140), 1, + STATE(6102), 1, + sym_type_parameters, + STATE(6167), 1, sym__call_signature, - STATE(5437), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183006] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, + STATE(6680), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139716] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, + [183026] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6111), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139736] = 6, - ACTIONS(6420), 1, + [183046] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4232), 1, - sym_type_annotation, - STATE(4896), 1, + STATE(5946), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9120), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139758] = 6, - ACTIONS(6420), 1, + [183062] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4241), 1, - sym_type_annotation, - STATE(4899), 1, + STATE(5583), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139780] = 4, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5791), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, + [183078] = 6, + ACTIONS(2640), 1, anon_sym_LT, - anon_sym_QMARK, - [139798] = 3, - ACTIONS(7059), 1, - anon_sym_AMP, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(7044), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [139814] = 6, - ACTIONS(6420), 1, + [183098] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4263), 1, - sym_type_annotation, - STATE(4942), 1, + STATE(5917), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9120), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139836] = 6, - ACTIONS(6420), 1, + [183114] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6143), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183134] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4264), 1, - sym_type_annotation, - STATE(4943), 1, + STATE(5588), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(8975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139858] = 8, - ACTIONS(2708), 1, + [183150] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7200), 1, - sym_identifier, - ACTIONS(7202), 1, - anon_sym_STAR, - STATE(3796), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(5140), 1, + STATE(6102), 1, + sym_type_parameters, + STATE(7049), 1, sym__call_signature, - STATE(5437), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183170] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, sym_type_parameters, + STATE(7053), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139884] = 6, - ACTIONS(6420), 1, + [183190] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6682), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183210] = 5, + ACTIONS(9038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9175), 1, + anon_sym_BQUOTE, + ACTIONS(9177), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5015), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [183228] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7247), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [183240] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(5034), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183260] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6689), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183280] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6252), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183300] = 4, + ACTIONS(7367), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4267), 1, - sym_type_annotation, - STATE(4946), 1, + STATE(5934), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9120), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139906] = 4, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4145), 1, - sym_type_annotation, + [183316] = 6, + ACTIONS(4075), 1, + anon_sym_LBRACE, + ACTIONS(8894), 1, + anon_sym_SEMI, + ACTIONS(8896), 1, + sym__automatic_semicolon, + ACTIONS(8898), 1, + sym__function_signature_automatic_semicolon, + STATE(2398), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183336] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 5, + ACTIONS(8137), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139924] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4272), 1, - sym_type_annotation, - STATE(4952), 1, - sym__initializer, + [183348] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3722), 1, + sym_formal_parameters, + STATE(5058), 1, + sym__call_signature, + STATE(6830), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139946] = 2, + [183368] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 7, + ACTIONS(5299), 5, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_QMARK, - [139960] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(3903), 1, - sym_type_annotation, - STATE(4507), 1, - sym__initializer, + [183380] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6704), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139982] = 6, - ACTIONS(6420), 1, + [183400] = 3, + ACTIONS(9179), 1, anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4298), 1, - sym_type_annotation, - STATE(4993), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, + ACTIONS(3568), 4, anon_sym_COMMA, - anon_sym_SEMI, - [140004] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4299), 1, - sym_type_annotation, - STATE(4996), 1, - sym__initializer, + anon_sym_QMARK, + [183414] = 6, + ACTIONS(4075), 1, + anon_sym_LBRACE, + ACTIONS(9068), 1, + anon_sym_SEMI, + ACTIONS(9070), 1, + sym__automatic_semicolon, + ACTIONS(9072), 1, + sym__function_signature_automatic_semicolon, + STATE(2360), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183434] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_formal_parameters, + STATE(4481), 1, + sym__call_signature, + STATE(6048), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + [183454] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8139), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [140026] = 8, - ACTIONS(6699), 1, + anon_sym_PIPE_RBRACE, + [183466] = 5, + ACTIONS(9038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9040), 1, + sym__template_chars, + ACTIONS(9182), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4804), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [183484] = 6, + ACTIONS(7982), 1, anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_extends, - ACTIONS(6757), 1, - anon_sym_implements, - STATE(1685), 1, - sym_class_body, - STATE(5008), 1, - sym_extends_clause, - STATE(5362), 1, - sym_class_heritage, - STATE(5687), 1, - sym_implements_clause, + ACTIONS(9137), 1, + anon_sym_SEMI, + ACTIONS(9139), 1, + sym__automatic_semicolon, + ACTIONS(9141), 1, + sym__function_signature_automatic_semicolon, + STATE(5068), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140052] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4236), 1, - sym_type_annotation, - STATE(4906), 1, - sym__initializer, + [183504] = 4, + STATE(6974), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, + ACTIONS(8995), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(9184), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140074] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4300), 1, - sym_type_annotation, - STATE(5000), 1, - sym__initializer, + [183520] = 5, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(8928), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(9186), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140096] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4306), 1, - sym_type_annotation, - STATE(5001), 1, - sym__initializer, + [183538] = 4, + STATE(6965), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(8995), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(9188), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140118] = 6, - ACTIONS(6420), 1, - anon_sym_EQ, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4194), 1, - sym_type_annotation, - STATE(4820), 1, - sym__initializer, + [183554] = 6, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4242), 1, + sym_formal_parameters, + STATE(6102), 1, + sym_type_parameters, + STATE(6181), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140140] = 4, - STATE(3866), 1, - aux_sym_object_type_repeat1, + [183574] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7206), 3, + ACTIONS(9190), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [140157] = 2, + anon_sym_PIPE_RBRACE, + [183586] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7179), 6, + ACTIONS(9192), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [140170] = 7, - ACTIONS(2708), 1, + anon_sym_PIPE_RBRACE, + [183598] = 6, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7210), 1, - anon_sym_QMARK, - STATE(3276), 1, + STATE(4242), 1, sym_formal_parameters, - STATE(4248), 1, - sym__call_signature, - STATE(5245), 1, + STATE(6102), 1, sym_type_parameters, + STATE(6109), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140193] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, + [183618] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3759), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7212), 3, + ACTIONS(8137), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [140210] = 3, - ACTIONS(7214), 1, + anon_sym_PIPE_RBRACE, + [183630] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9194), 1, + anon_sym_SQUOTE, + STATE(5282), 1, + aux_sym_string_repeat2, + ACTIONS(9196), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183647] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9198), 1, + anon_sym_DQUOTE, + STATE(5339), 1, + aux_sym_string_repeat1, + ACTIONS(9200), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183664] = 5, + ACTIONS(7499), 1, anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(9202), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [183681] = 5, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, anon_sym_PIPE, + ACTIONS(8077), 1, anon_sym_extends, - [140225] = 5, - ACTIONS(7214), 1, + ACTIONS(9204), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183698] = 5, + ACTIONS(7499), 1, anon_sym_AMP, - ACTIONS(7216), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(7218), 1, + ACTIONS(7503), 1, anon_sym_extends, + ACTIONS(9206), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140244] = 3, - ACTIONS(7220), 1, + [183715] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, anon_sym_extends, + ACTIONS(9208), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 5, - anon_sym_as, - anon_sym_LBRACK, + [183732] = 5, + ACTIONS(1781), 1, + anon_sym_COMMA, + ACTIONS(9210), 1, + anon_sym_EQ, + ACTIONS(9212), 1, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [140259] = 7, - ACTIONS(2708), 1, + STATE(5584), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183749] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9214), 1, + anon_sym_DQUOTE, + STATE(5339), 1, + aux_sym_string_repeat1, + ACTIONS(9200), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9214), 1, + anon_sym_SQUOTE, + STATE(5340), 1, + aux_sym_string_repeat2, + ACTIONS(9216), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183783] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7222), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(4059), 1, - sym__call_signature, - STATE(5245), 1, + STATE(7015), 1, sym_type_parameters, + STATE(7102), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140282] = 3, + [183800] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(9218), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3879), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [140297] = 2, + [183817] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(9220), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7089), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + [183834] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(9222), 1, anon_sym_COLON, - [140310] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2678), 1, - sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7121), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [183851] = 4, + ACTIONS(9224), 1, anon_sym_COMMA, - anon_sym_SEMI, - [140327] = 5, - ACTIONS(7226), 1, - anon_sym_BQUOTE, - ACTIONS(7228), 1, - anon_sym_DOLLAR_LBRACE, + STATE(5333), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7011), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3846), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140346] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, + ACTIONS(9226), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183866] = 4, + ACTIONS(4723), 1, + anon_sym_COMMA, + STATE(5364), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3713), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7230), 3, + ACTIONS(8942), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140363] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2659), 1, - sym_statement_block, + [183881] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(9228), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7113), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140380] = 7, + [183898] = 5, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(7232), 1, - anon_sym_export, - ACTIONS(7234), 1, + ACTIONS(9230), 1, anon_sym_class, - ACTIONS(7236), 1, - anon_sym_abstract, - STATE(1267), 1, - sym_decorator, - STATE(3847), 1, + STATE(3006), 1, aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140403] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3723), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7238), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140420] = 7, - ACTIONS(6556), 1, + [183915] = 5, + ACTIONS(7499), 1, anon_sym_AMP, - ACTIONS(6572), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(6574), 1, + ACTIONS(7503), 1, anon_sym_extends, - ACTIONS(7240), 1, - anon_sym_COMMA, - ACTIONS(7242), 1, - anon_sym_GT, - STATE(4629), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(9232), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140443] = 5, - ACTIONS(7214), 1, + [183932] = 5, + ACTIONS(7499), 1, anon_sym_AMP, - ACTIONS(7216), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(7218), 1, + ACTIONS(7503), 1, anon_sym_extends, + ACTIONS(9234), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140462] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2660), 1, - sym_statement_block, + [183949] = 5, + ACTIONS(3469), 1, + anon_sym_LPAREN, + ACTIONS(7249), 1, + anon_sym_LT, + STATE(3575), 1, + sym_arguments, + STATE(3686), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183966] = 4, + ACTIONS(9236), 1, + anon_sym_from, + STATE(6948), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7111), 4, + ACTIONS(4813), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140479] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, + [183981] = 5, + ACTIONS(4579), 1, anon_sym_LPAREN, - ACTIONS(7244), 1, + ACTIONS(9238), 1, + anon_sym_LT, + STATE(2052), 1, + sym_type_arguments, + STATE(2060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [183998] = 5, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, + anon_sym_PIPE, + ACTIONS(8077), 1, + anon_sym_extends, + ACTIONS(9240), 1, anon_sym_QMARK, - STATE(3796), 1, - sym_formal_parameters, - STATE(5270), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140502] = 5, - ACTIONS(7214), 1, + [184015] = 5, + ACTIONS(8073), 1, anon_sym_AMP, - ACTIONS(7216), 1, + ACTIONS(8075), 1, anon_sym_PIPE, - ACTIONS(7218), 1, + ACTIONS(8077), 1, anon_sym_extends, + ACTIONS(9242), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140521] = 4, - STATE(3763), 1, - aux_sym_object_type_repeat1, + [184032] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9244), 1, + anon_sym_DQUOTE, + STATE(5301), 1, + aux_sym_string_repeat1, + ACTIONS(9246), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184049] = 4, + ACTIONS(9236), 1, + anon_sym_from, + STATE(6742), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7248), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7246), 3, + ACTIONS(9248), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [184064] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9244), 1, + anon_sym_SQUOTE, + STATE(5305), 1, + aux_sym_string_repeat2, + ACTIONS(9250), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184081] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9252), 1, + anon_sym_DQUOTE, + STATE(5339), 1, + aux_sym_string_repeat1, + ACTIONS(9200), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184098] = 4, + ACTIONS(9224), 1, anon_sym_COMMA, + STATE(5380), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9254), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [140538] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, + [184113] = 4, + ACTIONS(9224), 1, + anon_sym_COMMA, + STATE(5380), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6713), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5257), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [140555] = 7, - ACTIONS(2708), 1, + ACTIONS(9256), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184128] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7252), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3664), 1, - sym__call_signature, - STATE(5245), 1, + STATE(6579), 1, sym_type_parameters, + STATE(7271), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140578] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3961), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [184145] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9252), 1, + anon_sym_SQUOTE, + STATE(5340), 1, + aux_sym_string_repeat2, + ACTIONS(9216), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184162] = 4, + ACTIONS(9236), 1, + anon_sym_from, + STATE(6589), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140601] = 6, - ACTIONS(7059), 1, + ACTIONS(4740), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184177] = 5, + ACTIONS(8073), 1, anon_sym_AMP, - ACTIONS(7061), 1, + ACTIONS(8075), 1, anon_sym_PIPE, - ACTIONS(7063), 1, + ACTIONS(8077), 1, anon_sym_extends, - ACTIONS(7258), 1, + ACTIONS(9258), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7256), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [140622] = 5, - ACTIONS(7214), 1, - anon_sym_AMP, - ACTIONS(7216), 1, - anon_sym_PIPE, - ACTIONS(7218), 1, - anon_sym_extends, + [184194] = 5, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(9260), 1, + anon_sym_LT, + STATE(1601), 1, + sym_type_arguments, + STATE(1602), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140641] = 7, - ACTIONS(6645), 1, + [184211] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(7131), 1, - anon_sym_COMMA, - ACTIONS(7260), 1, - anon_sym_LBRACE, - ACTIONS(7262), 1, - anon_sym_LBRACE_PIPE, - STATE(4355), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5050), 1, - sym_type_arguments, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(6710), 1, + sym_type_parameters, + STATE(7285), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140664] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, + [184228] = 4, + ACTIONS(829), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3709), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7264), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140681] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2646), 1, - sym_statement_block, + STATE(1802), 2, + sym_template_string, + sym_arguments, + [184243] = 4, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4579), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7101), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140698] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2648), 1, - sym_statement_block, + STATE(2173), 2, + sym_template_string, + sym_arguments, + [184258] = 3, + ACTIONS(9262), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7103), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140715] = 7, - ACTIONS(6556), 1, + ACTIONS(3933), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [184271] = 5, + ACTIONS(7499), 1, anon_sym_AMP, - ACTIONS(6572), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(6574), 1, + ACTIONS(7503), 1, anon_sym_extends, - ACTIONS(7266), 1, - anon_sym_LBRACE, - ACTIONS(7268), 1, - anon_sym_COMMA, - STATE(4500), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(9264), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140738] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - ACTIONS(7270), 1, - anon_sym_QMARK, - STATE(3429), 1, - sym_formal_parameters, - STATE(3845), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + [184288] = 3, + ACTIONS(9266), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140761] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2623), 1, - sym_statement_block, + ACTIONS(3568), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [184301] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(9269), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7101), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140778] = 5, - ACTIONS(7214), 1, + [184318] = 5, + ACTIONS(7499), 1, anon_sym_AMP, - ACTIONS(7216), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(7218), 1, + ACTIONS(7503), 1, anon_sym_extends, + ACTIONS(9271), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 3, - anon_sym_as, - anon_sym_LBRACK, + [184335] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(9273), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [184352] = 5, + ACTIONS(9275), 1, + sym_identifier, + ACTIONS(9277), 1, + anon_sym_const, + ACTIONS(9279), 1, + anon_sym_GT, + STATE(6688), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [184369] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9281), 1, + anon_sym_SQUOTE, + STATE(5340), 1, + aux_sym_string_repeat2, + ACTIONS(9216), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184386] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9281), 1, + anon_sym_DQUOTE, + STATE(5339), 1, + aux_sym_string_repeat1, + ACTIONS(9200), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184403] = 5, + ACTIONS(1781), 1, + anon_sym_COMMA, + ACTIONS(9210), 1, + anon_sym_EQ, + ACTIONS(9283), 1, anon_sym_RBRACK, - [140797] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7272), 1, - anon_sym_QMARK, - STATE(3796), 1, - sym_formal_parameters, - STATE(5311), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + STATE(5892), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140820] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7274), 1, - anon_sym_QMARK, - STATE(3796), 1, - sym_formal_parameters, - STATE(5146), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [184420] = 4, + ACTIONS(7239), 1, + anon_sym_STAR, + ACTIONS(7243), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140843] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7276), 1, + STATE(7160), 2, + sym_namespace_import, + sym_named_imports, + [184435] = 5, + ACTIONS(8109), 1, + anon_sym_COMMA, + ACTIONS(9285), 1, + anon_sym_LBRACE, + ACTIONS(9287), 1, + anon_sym_LBRACE_PIPE, + STATE(5345), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [184452] = 5, + ACTIONS(8109), 1, + anon_sym_COMMA, + ACTIONS(9285), 1, + anon_sym_LBRACE, + ACTIONS(9287), 1, + anon_sym_LBRACE_PIPE, + STATE(5345), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [184469] = 5, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, + anon_sym_PIPE, + ACTIONS(8077), 1, + anon_sym_extends, + ACTIONS(9289), 1, anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3670), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140866] = 5, - ACTIONS(7278), 1, - anon_sym_default, - ACTIONS(7281), 1, - anon_sym_RBRACE, - ACTIONS(7283), 1, - anon_sym_case, + [184486] = 5, + ACTIONS(8109), 1, + anon_sym_COMMA, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(9293), 1, + anon_sym_LBRACE_PIPE, + STATE(5345), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3759), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [140885] = 5, - ACTIONS(7228), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7286), 1, - anon_sym_BQUOTE, + [184503] = 5, + ACTIONS(9295), 1, + sym_identifier, + STATE(5065), 1, + sym_nested_type_identifier, + STATE(6020), 1, + sym_generic_type, + STATE(7122), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6991), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3798), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140904] = 4, - STATE(3772), 1, - aux_sym_object_type_repeat1, + [184520] = 4, + ACTIONS(9224), 1, + anon_sym_COMMA, + STATE(5302), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3729), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7288), 3, + ACTIONS(9297), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140921] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, + [184535] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9299), 1, + anon_sym_SQUOTE, + STATE(5340), 1, + aux_sym_string_repeat2, + ACTIONS(9216), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184552] = 4, + ACTIONS(9224), 1, + anon_sym_COMMA, + STATE(5303), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3721), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7290), 3, + ACTIONS(9301), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140938] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, + [184567] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9299), 1, + anon_sym_DQUOTE, + STATE(5339), 1, + aux_sym_string_repeat1, + ACTIONS(9200), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184584] = 4, + ACTIONS(9224), 1, + anon_sym_COMMA, + STATE(5380), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3729), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7288), 3, + ACTIONS(9303), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140955] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2652), 1, - sym_statement_block, + [184599] = 4, + ACTIONS(9224), 1, + anon_sym_COMMA, + STATE(5380), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7163), 4, + ACTIONS(9305), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140972] = 7, - ACTIONS(3520), 1, + [184614] = 3, + ACTIONS(6504), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3933), 3, anon_sym_LPAREN, - ACTIONS(6028), 1, anon_sym_LT, - ACTIONS(6951), 1, - anon_sym_DOT, - ACTIONS(7292), 1, - anon_sym_RPAREN, - STATE(1225), 1, - sym_arguments, - STATE(5122), 1, - sym_type_arguments, + anon_sym_QMARK, + [184627] = 4, + ACTIONS(8016), 1, + anon_sym_EQ, + STATE(6823), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140995] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, + ACTIONS(9307), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [184642] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9309), 1, + anon_sym_DQUOTE, + STATE(5275), 1, + aux_sym_string_repeat1, + ACTIONS(9311), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184659] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9309), 1, + anon_sym_SQUOTE, + STATE(5344), 1, + aux_sym_string_repeat2, + ACTIONS(9313), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184676] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(9315), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3737), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7294), 3, - sym__automatic_semicolon, + [184693] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9317), 1, + anon_sym_DQUOTE, + STATE(5339), 1, + aux_sym_string_repeat1, + ACTIONS(9319), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184710] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9322), 1, + anon_sym_SQUOTE, + STATE(5340), 1, + aux_sym_string_repeat2, + ACTIONS(9324), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184727] = 4, + ACTIONS(9224), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141012] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2624), 1, - sym_statement_block, + STATE(5332), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7103), 4, + ACTIONS(9327), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [141029] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7296), 1, + [184742] = 5, + ACTIONS(9275), 1, sym_identifier, - STATE(3796), 1, - sym_formal_parameters, - STATE(5211), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9277), 1, + anon_sym_const, + ACTIONS(9329), 1, + anon_sym_GT, + STATE(6688), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141052] = 3, - ACTIONS(7298), 1, - sym_identifier, + [184759] = 4, + ACTIONS(8936), 1, + anon_sym_EQ, + STATE(6989), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6304), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [141067] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7300), 1, - sym_identifier, - STATE(3796), 1, - sym_formal_parameters, - STATE(5152), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9331), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [184774] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9198), 1, + anon_sym_SQUOTE, + STATE(5340), 1, + aux_sym_string_repeat2, + ACTIONS(9216), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184791] = 5, + ACTIONS(9333), 1, + anon_sym_LBRACE, + ACTIONS(9335), 1, + anon_sym_COMMA, + ACTIONS(9338), 1, + anon_sym_LBRACE_PIPE, + STATE(5345), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141090] = 4, - STATE(3857), 1, - aux_sym_object_type_repeat1, + [184808] = 4, + ACTIONS(9236), 1, + anon_sym_from, + STATE(6329), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3719), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7302), 3, + ACTIONS(9340), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [141107] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, + [184823] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3733), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7304), 3, + ACTIONS(6326), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141124] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2649), 1, - sym_statement_block, + [184834] = 5, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7303), 1, + anon_sym_LT, + STATE(3687), 1, + sym_arguments, + STATE(3871), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7157), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [184851] = 4, + ACTIONS(9344), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141141] = 4, - STATE(3762), 1, - aux_sym_object_type_repeat1, + STATE(5386), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3709), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7264), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141158] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, + ACTIONS(9342), 2, + anon_sym_LBRACE, + anon_sym_implements, + [184866] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9346), 1, + anon_sym_SQUOTE, + STATE(5319), 1, + aux_sym_string_repeat2, + ACTIONS(9348), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184883] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9346), 1, + anon_sym_DQUOTE, + STATE(5320), 1, + aux_sym_string_repeat1, + ACTIONS(9350), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9352), 1, + anon_sym_SQUOTE, + STATE(5329), 1, + aux_sym_string_repeat2, + ACTIONS(9354), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184917] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9352), 1, + anon_sym_DQUOTE, + STATE(5331), 1, + aux_sym_string_repeat1, + ACTIONS(9356), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184934] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [184951] = 5, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(9360), 1, + anon_sym_export, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [184968] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9194), 1, + anon_sym_DQUOTE, + STATE(5281), 1, + aux_sym_string_repeat1, + ACTIONS(9362), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184985] = 5, + ACTIONS(3497), 1, anon_sym_LPAREN, - ACTIONS(7306), 1, - anon_sym_QMARK, - STATE(3429), 1, - sym_formal_parameters, - STATE(3802), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + ACTIONS(6181), 1, + anon_sym_LT, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141181] = 7, - ACTIONS(6556), 1, + [185002] = 5, + ACTIONS(7499), 1, anon_sym_AMP, - ACTIONS(6572), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(6574), 1, + ACTIONS(7503), 1, anon_sym_extends, - ACTIONS(7308), 1, - anon_sym_COMMA, - ACTIONS(7310), 1, - anon_sym_GT, - STATE(4749), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(9364), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141204] = 5, - ACTIONS(6556), 1, + [185019] = 5, + ACTIONS(7499), 1, anon_sym_AMP, - ACTIONS(6572), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(6574), 1, + ACTIONS(7503), 1, anon_sym_extends, + ACTIONS(9366), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7312), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [141223] = 7, - ACTIONS(2708), 1, + [185036] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7314), 1, - sym_identifier, - STATE(3796), 1, - sym_formal_parameters, - STATE(5211), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6707), 1, sym_type_parameters, + STATE(7207), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141246] = 5, - ACTIONS(7316), 1, - anon_sym_default, - ACTIONS(7318), 1, - anon_sym_RBRACE, - ACTIONS(7320), 1, - anon_sym_case, + [185053] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(9368), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3759), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [141265] = 5, - ACTIONS(7316), 1, - anon_sym_default, - ACTIONS(7320), 1, - anon_sym_case, - ACTIONS(7322), 1, - anon_sym_RBRACE, + [185070] = 5, + ACTIONS(9275), 1, + sym_identifier, + ACTIONS(9277), 1, + anon_sym_const, + ACTIONS(9370), 1, + anon_sym_GT, + STATE(6688), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3779), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [141284] = 2, + [185087] = 5, + ACTIONS(9372), 1, + sym_identifier, + STATE(4518), 1, + sym_nested_type_identifier, + STATE(5402), 1, + sym_generic_type, + STATE(7122), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7324), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + [185104] = 4, + ACTIONS(9374), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [141297] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7326), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(4144), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + STATE(5364), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141320] = 4, - STATE(3826), 1, - aux_sym_object_type_repeat1, + ACTIONS(4931), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185119] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7330), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7328), 3, + ACTIONS(9377), 4, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, + anon_sym_assert, anon_sym_SEMI, - [141337] = 7, - ACTIONS(2708), 1, + [185130] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7332), 1, - sym_identifier, - STATE(3796), 1, + STATE(6941), 1, + sym_type_parameters, + STATE(7440), 1, sym_formal_parameters, - STATE(5211), 1, - sym__call_signature, - STATE(5437), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [185147] = 5, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(6939), 1, sym_type_parameters, + STATE(7451), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141360] = 5, - ACTIONS(7214), 1, + [185164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9379), 1, + anon_sym_DQUOTE, + STATE(5373), 1, + aux_sym_string_repeat1, + ACTIONS(9381), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185181] = 5, + ACTIONS(7499), 1, anon_sym_AMP, - ACTIONS(7216), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(7218), 1, + ACTIONS(7503), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4385), 3, - anon_sym_as, - anon_sym_LBRACK, + ACTIONS(9383), 1, anon_sym_RBRACK, - [141379] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7334), 1, - anon_sym_QMARK, - STATE(3796), 1, - sym_formal_parameters, - STATE(5360), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141402] = 7, - ACTIONS(6556), 1, + [185198] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9379), 1, + anon_sym_SQUOTE, + STATE(5374), 1, + aux_sym_string_repeat2, + ACTIONS(9385), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185215] = 5, + ACTIONS(7499), 1, anon_sym_AMP, - ACTIONS(6572), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(6574), 1, + ACTIONS(7503), 1, anon_sym_extends, - ACTIONS(7336), 1, - anon_sym_COMMA, - ACTIONS(7338), 1, - anon_sym_GT, - STATE(4579), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(9387), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141425] = 7, - ACTIONS(2708), 1, + [185232] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7340), 1, - sym_identifier, - STATE(3796), 1, - sym_formal_parameters, - STATE(5197), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6049), 1, sym_type_parameters, + STATE(7204), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141448] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2629), 1, - sym_statement_block, - ACTIONS(5), 2, + [185249] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(9389), 1, + anon_sym_DQUOTE, + STATE(5339), 1, + aux_sym_string_repeat1, + ACTIONS(9200), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185266] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141465] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9389), 1, + anon_sym_SQUOTE, + STATE(5340), 1, + aux_sym_string_repeat2, + ACTIONS(9216), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185283] = 4, + ACTIONS(7533), 1, + anon_sym_EQ, + STATE(6713), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7342), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(9391), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [141478] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, + anon_sym_GT, + [185298] = 5, + ACTIONS(7580), 1, anon_sym_LPAREN, - ACTIONS(7344), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(4816), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + ACTIONS(7582), 1, + anon_sym_LT, + STATE(3347), 1, + sym_arguments, + STATE(3403), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141501] = 7, - ACTIONS(2708), 1, + [185315] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7346), 1, - anon_sym_QMARK, - STATE(3796), 1, - sym_formal_parameters, - STATE(5127), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6869), 1, sym_type_parameters, + STATE(7328), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141524] = 7, - ACTIONS(6556), 1, + [185332] = 5, + ACTIONS(7499), 1, anon_sym_AMP, - ACTIONS(6572), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(6574), 1, + ACTIONS(7503), 1, anon_sym_extends, - ACTIONS(7348), 1, - anon_sym_COMMA, - ACTIONS(7350), 1, - anon_sym_GT, - STATE(4511), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(9393), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141547] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7236), 1, - anon_sym_abstract, - ACTIONS(7352), 1, - anon_sym_export, - ACTIONS(7354), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3847), 1, - aux_sym_export_statement_repeat1, + [185349] = 5, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(6867), 1, + sym_type_parameters, + STATE(7292), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141570] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2640), 1, - sym_statement_block, + [185366] = 4, + ACTIONS(9395), 1, + anon_sym_COMMA, + STATE(5380), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7069), 4, + ACTIONS(9398), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [141587] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, + [185381] = 4, + ACTIONS(9402), 1, + anon_sym_COMMA, + STATE(5381), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6729), 2, + ACTIONS(9400), 2, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [141604] = 2, + anon_sym_implements, + [185396] = 4, + ACTIONS(3933), 1, + anon_sym_COLON, + ACTIONS(4225), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7356), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(9405), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [141617] = 5, - ACTIONS(7228), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7360), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7358), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3808), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [141636] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2641), 1, - sym_statement_block, + [185411] = 4, + ACTIONS(8016), 1, + anon_sym_EQ, + STATE(6277), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7071), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(9407), 2, anon_sym_COMMA, - anon_sym_SEMI, - [141653] = 7, - ACTIONS(2708), 1, + anon_sym_RPAREN, + [185426] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6426), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7362), 1, - anon_sym_QMARK, - STATE(3429), 1, - sym_formal_parameters, - STATE(3751), 1, - sym__call_signature, - STATE(5368), 1, + STATE(6040), 1, sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141676] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - ACTIONS(7364), 1, - anon_sym_QMARK, - STATE(3429), 1, + STATE(7230), 1, sym_formal_parameters, - STATE(3764), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141699] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2630), 1, - sym_statement_block, + [185443] = 5, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, + anon_sym_PIPE, + ACTIONS(8077), 1, + anon_sym_extends, + ACTIONS(9409), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7113), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [185460] = 4, + ACTIONS(9344), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141716] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(7075), 1, - sym_identifier, - STATE(3469), 1, - sym_nested_identifier, - STATE(3507), 1, - sym_string, - STATE(4201), 1, - sym__module, + STATE(5381), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141739] = 7, - ACTIONS(2708), 1, + ACTIONS(9411), 2, + anon_sym_LBRACE, + anon_sym_implements, + [185475] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7366), 1, - anon_sym_QMARK, - STATE(3796), 1, - sym_formal_parameters, - STATE(5108), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6781), 1, sym_type_parameters, + STATE(7232), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141762] = 7, - ACTIONS(2708), 1, + [185492] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(7368), 1, - anon_sym_QMARK, - STATE(3796), 1, + STATE(4118), 1, sym_formal_parameters, - STATE(5156), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6145), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141785] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2653), 1, - sym_statement_block, + [185509] = 4, + ACTIONS(7533), 1, + anon_sym_EQ, + STATE(6053), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7169), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(9413), 2, anon_sym_COMMA, - anon_sym_SEMI, - [141802] = 7, - ACTIONS(2708), 1, + anon_sym_GT, + [185524] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7370), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3626), 1, - sym__call_signature, - STATE(5245), 1, + STATE(6776), 1, sym_type_parameters, + STATE(7223), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141825] = 5, - ACTIONS(7375), 1, - anon_sym_BQUOTE, - ACTIONS(7377), 1, - anon_sym_DOLLAR_LBRACE, + [185541] = 3, + ACTIONS(9415), 1, + sym_escape_sequence, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7372), 2, + ACTIONS(9417), 3, sym__template_chars, - sym_escape_sequence, - STATE(3808), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [141844] = 2, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [185554] = 3, + ACTIONS(8963), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2362), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4457), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [141857] = 3, - ACTIONS(7214), 1, - anon_sym_AMP, - ACTIONS(5), 2, + [185567] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9420), 1, + anon_sym_DQUOTE, + STATE(5395), 1, + aux_sym_string_repeat1, + ACTIONS(9422), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185584] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(9420), 1, + anon_sym_SQUOTE, + STATE(5396), 1, + aux_sym_string_repeat2, + ACTIONS(9424), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185601] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4351), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9426), 1, + anon_sym_DQUOTE, + STATE(5339), 1, + aux_sym_string_repeat1, + ACTIONS(9200), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185618] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9426), 1, + anon_sym_SQUOTE, + STATE(5340), 1, + aux_sym_string_repeat2, + ACTIONS(9216), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185635] = 5, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, anon_sym_PIPE, + ACTIONS(8077), 1, anon_sym_extends, - [141872] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2620), 1, - sym_statement_block, + ACTIONS(9428), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7173), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [185652] = 4, + ACTIONS(9430), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141889] = 4, - ACTIONS(7224), 1, + STATE(5398), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8806), 2, anon_sym_LBRACE, - STATE(2675), 1, - sym_statement_block, + anon_sym_GT, + [185667] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(9433), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7071), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [185684] = 5, + ACTIONS(9275), 1, + sym_identifier, + ACTIONS(9277), 1, + anon_sym_const, + ACTIONS(9435), 1, + anon_sym_GT, + STATE(6688), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [185701] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9437), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [185712] = 5, + ACTIONS(8109), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141906] = 4, - ACTIONS(7224), 1, + ACTIONS(8810), 1, anon_sym_LBRACE, - STATE(2657), 1, - sym_statement_block, + ACTIONS(8812), 1, + anon_sym_LBRACE_PIPE, + STATE(5323), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7127), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141923] = 2, + [185729] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7067), 6, + ACTIONS(9439), 4, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_with, + anon_sym_assert, anon_sym_SEMI, - anon_sym_COLON, - [141936] = 2, + [185740] = 5, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(9441), 1, + anon_sym_class, + STATE(3006), 1, + aux_sym_export_statement_repeat1, + STATE(3132), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2366), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [185757] = 5, + ACTIONS(7499), 1, anon_sym_AMP, + ACTIONS(7501), 1, anon_sym_PIPE, + ACTIONS(7503), 1, anon_sym_extends, - [141949] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7380), 1, - sym_identifier, - STATE(3796), 1, - sym_formal_parameters, - STATE(5152), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9443), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141972] = 2, + [185774] = 5, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, + ACTIONS(9445), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [141985] = 7, - ACTIONS(2708), 1, + [185791] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6426), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_QMARK, - STATE(3429), 1, - sym_formal_parameters, - STATE(3799), 1, - sym__call_signature, - STATE(5368), 1, + STATE(6326), 1, sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142008] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7384), 1, - anon_sym_QMARK, - STATE(3276), 1, + STATE(7266), 1, sym_formal_parameters, - STATE(4682), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142031] = 6, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(7141), 1, + [185808] = 4, + ACTIONS(9447), 1, anon_sym_EQ, - STATE(4442), 1, - sym_type_annotation, - STATE(5207), 1, + STATE(6873), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7386), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [142052] = 7, - ACTIONS(2708), 1, + ACTIONS(7688), 2, + anon_sym_in, + anon_sym_of, + [185823] = 5, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(7388), 1, - anon_sym_QMARK, - STATE(3796), 1, - sym_formal_parameters, - STATE(5316), 1, - sym__call_signature, - STATE(5437), 1, + STATE(6388), 1, sym_type_parameters, + STATE(7086), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142075] = 2, + [185840] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [142088] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, + ACTIONS(9449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185850] = 4, + ACTIONS(5219), 1, + anon_sym_COMMA, + ACTIONS(9451), 1, + anon_sym_RBRACE, + STATE(5537), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7390), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - [142107] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7392), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3515), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [185864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142130] = 5, - ACTIONS(7214), 1, - anon_sym_AMP, - ACTIONS(7216), 1, - anon_sym_PIPE, - ACTIONS(7218), 1, - anon_sym_extends, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185874] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [142149] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185884] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3719), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7302), 3, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142166] = 2, + [185894] = 4, + ACTIONS(9457), 1, + anon_sym_LPAREN, + ACTIONS(9459), 1, + anon_sym_await, + STATE(38), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2378), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [142179] = 2, + [185908] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2370), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [142192] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7394), 1, - anon_sym_QMARK, - STATE(3796), 1, - sym_formal_parameters, - STATE(5135), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9461), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185918] = 3, + ACTIONS(9463), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142215] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7396), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3986), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + ACTIONS(9465), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142238] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7398), 1, - anon_sym_QMARK, - STATE(3796), 1, - sym_formal_parameters, - STATE(5203), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9461), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185940] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142261] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7400), 1, - anon_sym_QMARK, - STATE(3796), 1, - sym_formal_parameters, - STATE(5217), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185950] = 3, + ACTIONS(9467), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142284] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7402), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(4975), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + ACTIONS(9469), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142307] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7404), 1, - sym_identifier, - STATE(3796), 1, - sym_formal_parameters, - STATE(5152), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185972] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9471), 1, + sym__glimmer_template_content, + ACTIONS(9473), 1, + sym_glimmer_closing_tag, + STATE(5469), 1, + aux_sym_glimmer_template_repeat1, + [185988] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142330] = 5, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(7406), 1, - sym_identifier, - ACTIONS(7408), 1, - anon_sym_LBRACK, + ACTIONS(9455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185998] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5158), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [142349] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2645), 1, - sym_statement_block, + ACTIONS(9461), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186008] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7121), 4, + ACTIONS(9453), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142366] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7410), 1, - sym_identifier, - STATE(3796), 1, - sym_formal_parameters, - STATE(5323), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [186018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142389] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7412), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3590), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142412] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - ACTIONS(7414), 1, - anon_sym_QMARK, - STATE(3429), 1, - sym_formal_parameters, - STATE(3731), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + ACTIONS(9455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142435] = 7, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(6028), 1, - anon_sym_LT, - ACTIONS(6951), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_RPAREN, - STATE(1225), 1, - sym_arguments, - STATE(5122), 1, - sym_type_arguments, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186048] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142458] = 2, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186058] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7418), 6, + ACTIONS(9455), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142471] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, + [186068] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7423), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7420), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142488] = 4, - STATE(3733), 1, - aux_sym_object_type_repeat1, + [186078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3737), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7294), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142505] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7425), 1, - sym_identifier, - STATE(3796), 1, - sym_formal_parameters, - STATE(5152), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [186088] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9461), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186098] = 4, + ACTIONS(9236), 1, + anon_sym_from, + ACTIONS(9477), 1, + anon_sym_as, + STATE(6555), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142528] = 4, - ACTIONS(7224), 1, + [186112] = 4, + ACTIONS(2282), 1, anon_sym_LBRACE, - STATE(2650), 1, - sym_statement_block, + ACTIONS(9479), 1, + sym_identifier, + STATE(5294), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7159), 4, + [186126] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9453), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142545] = 5, - ACTIONS(7228), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7427), 1, - anon_sym_BQUOTE, + [186136] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7358), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3808), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142564] = 5, - ACTIONS(7429), 1, - anon_sym_AT, - STATE(1267), 1, - sym_decorator, - STATE(3847), 1, - aux_sym_export_statement_repeat1, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3560), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [142583] = 7, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7432), 1, + ACTIONS(9453), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7434), 1, - anon_sym_GT, - STATE(4983), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [186156] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142606] = 7, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(7075), 1, - sym_identifier, - STATE(3469), 1, - sym_nested_identifier, - STATE(3507), 1, - sym_string, - STATE(4121), 1, - sym__module, + ACTIONS(9455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186166] = 3, + ACTIONS(9483), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142629] = 7, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7436), 1, + ACTIONS(3568), 2, anon_sym_COMMA, - ACTIONS(7438), 1, - anon_sym_GT, - STATE(4525), 1, - aux_sym_implements_clause_repeat1, + anon_sym_RBRACK, + [186178] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142652] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7440), 1, - sym_identifier, - STATE(3796), 1, - sym_formal_parameters, - STATE(5211), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186188] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142675] = 7, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(7165), 1, - sym_identifier, - STATE(745), 1, - sym_nested_identifier, - STATE(778), 1, - sym_string, - STATE(890), 1, - sym__module, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186198] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142698] = 7, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(7165), 1, - sym_identifier, - STATE(745), 1, - sym_nested_identifier, - STATE(778), 1, - sym_string, - STATE(801), 1, - sym__module, + ACTIONS(9455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186208] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142721] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - ACTIONS(7442), 1, - anon_sym_QMARK, - STATE(3796), 1, - sym_formal_parameters, - STATE(5134), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9475), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142744] = 7, - ACTIONS(2708), 1, + ACTIONS(9475), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186228] = 4, + ACTIONS(2640), 1, anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7444), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3553), 1, - sym__call_signature, - STATE(5245), 1, + ACTIONS(9486), 1, + anon_sym_EQ, + STATE(7190), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142767] = 4, - STATE(3871), 1, - aux_sym_object_type_repeat1, + [186242] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7448), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7446), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142784] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, + [186252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3757), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7450), 3, + ACTIONS(9488), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142801] = 4, - STATE(3766), 1, - aux_sym_object_type_repeat1, + [186262] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7454), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7452), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142818] = 4, - STATE(3724), 1, - aux_sym_object_type_repeat1, + [186272] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3731), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7456), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142835] = 5, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(7408), 1, - anon_sym_LBRACK, - ACTIONS(7458), 1, - sym_identifier, + [186282] = 4, + ACTIONS(5219), 1, + anon_sym_COMMA, + ACTIONS(9490), 1, + anon_sym_RBRACE, + STATE(5530), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4974), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [142854] = 4, - STATE(3749), 1, - aux_sym_object_type_repeat1, + [186296] = 4, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_RBRACE, + STATE(5532), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7462), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7460), 3, + [186310] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142871] = 7, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - ACTIONS(7464), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(4073), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [186320] = 4, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142894] = 5, - ACTIONS(3244), 1, - anon_sym_LBRACE, - ACTIONS(7408), 1, - anon_sym_LBRACK, - ACTIONS(7466), 1, - sym_identifier, + [186334] = 4, + ACTIONS(5219), 1, + anon_sym_COMMA, + ACTIONS(9490), 1, + anon_sym_RBRACE, + STATE(5537), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4425), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [142913] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2635), 1, - sym_statement_block, + [186348] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7157), 4, + ACTIONS(9455), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142930] = 2, + [186358] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7115), 6, + ACTIONS(9475), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [142943] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, + [186368] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3731), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7456), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142960] = 6, - ACTIONS(6645), 1, - anon_sym_LT, - ACTIONS(7133), 1, - anon_sym_DOT, - ACTIONS(7468), 1, - anon_sym_LBRACE, - STATE(5049), 1, - sym_type_arguments, + [186378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7470), 2, + ACTIONS(9475), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [142981] = 4, - STATE(3736), 1, - aux_sym_object_type_repeat1, + anon_sym_SEMI, + [186388] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3751), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7472), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142998] = 4, - ACTIONS(7224), 1, + [186398] = 3, + ACTIONS(9494), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9496), 2, + anon_sym_COMMA, + anon_sym_from, + [186410] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8119), 3, anon_sym_LBRACE, - STATE(2651), 1, - sym_statement_block, + anon_sym_COLON, + anon_sym_EQ_GT, + [186420] = 4, + ACTIONS(9498), 1, + anon_sym_COMMA, + ACTIONS(9500), 1, + anon_sym_RPAREN, + STATE(5598), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [186434] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7161), 4, + ACTIONS(9461), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143015] = 3, - ACTIONS(7474), 1, + [186444] = 4, + ACTIONS(1781), 1, + anon_sym_COMMA, + ACTIONS(9212), 1, + anon_sym_RBRACK, + STATE(5584), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [186458] = 4, + ACTIONS(5076), 1, + anon_sym_COMMA, + ACTIONS(5078), 1, + anon_sym_RBRACK, + STATE(5582), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [186472] = 4, + ACTIONS(5076), 1, + anon_sym_COMMA, + ACTIONS(5078), 1, + anon_sym_RBRACK, + STATE(5585), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [186486] = 4, + ACTIONS(1781), 1, + anon_sym_COMMA, + ACTIONS(9212), 1, + anon_sym_RBRACK, + STATE(5586), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [186500] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9502), 1, + sym__glimmer_template_content, + ACTIONS(9504), 1, + sym_glimmer_closing_tag, + STATE(5587), 1, + aux_sym_glimmer_template_repeat1, + [186516] = 4, + ACTIONS(9275), 1, sym_identifier, + ACTIONS(9277), 1, + anon_sym_const, + STATE(5473), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [186530] = 4, + ACTIONS(7720), 1, + anon_sym_implements, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(7087), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6304), 5, + [186544] = 4, + ACTIONS(3497), 1, anon_sym_LPAREN, + ACTIONS(9508), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [143030] = 4, - STATE(3842), 1, - aux_sym_object_type_repeat1, + STATE(3363), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3751), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7472), 3, + [186558] = 4, + ACTIONS(9510), 1, + anon_sym_COMMA, + ACTIONS(9512), 1, + anon_sym_GT, + STATE(5626), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [186572] = 4, + ACTIONS(9514), 1, + sym_identifier, + STATE(4418), 1, + sym_decorator_member_expression, + STATE(7116), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [186586] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8026), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [186596] = 4, + ACTIONS(9516), 1, + sym_identifier, + ACTIONS(9518), 1, + anon_sym_LBRACK, + ACTIONS(9520), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [186610] = 4, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + STATE(5365), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [186624] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143047] = 4, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2674), 1, - sym_statement_block, + [186634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7069), 4, + ACTIONS(9524), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186644] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186654] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9528), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143064] = 3, - ACTIONS(5485), 1, + [186664] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9528), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1929), 4, + ACTIONS(9528), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143078] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5025), 1, - sym__initializer, + [186684] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143094] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7236), 1, - anon_sym_abstract, - ACTIONS(7354), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3847), 1, - aux_sym_export_statement_repeat1, + [186694] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143114] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4529), 1, - sym__initializer, + ACTIONS(9530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143130] = 2, + [186714] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2862), 5, + ACTIONS(9532), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143142] = 2, + [186724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2898), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143154] = 2, + [186734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2914), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143166] = 2, + [186744] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2534), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143178] = 5, - ACTIONS(2328), 1, - anon_sym_DQUOTE, - ACTIONS(2330), 1, - anon_sym_SQUOTE, - ACTIONS(7480), 1, - sym_identifier, + [186754] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4914), 2, - sym__module_export_name, - sym_string, - [143196] = 4, - ACTIONS(7484), 1, - anon_sym_in, - ACTIONS(7486), 1, - anon_sym_of, + ACTIONS(9534), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [186764] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7482), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143212] = 4, - ACTIONS(7488), 1, - anon_sym_in, - ACTIONS(7490), 1, - anon_sym_of, + [186774] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7482), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143228] = 5, - ACTIONS(7492), 1, - sym_identifier, - ACTIONS(7494), 1, - anon_sym_LPAREN, - STATE(1206), 1, - sym_decorator_member_expression, + [186784] = 4, + ACTIONS(9536), 1, + anon_sym_COMMA, + ACTIONS(9538), 1, + anon_sym_RBRACE, + STATE(5649), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1257), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [143246] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4698), 1, - sym__initializer, + [186798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143262] = 2, + [186808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2546), 5, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143274] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4716), 1, - sym__initializer, + [186818] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143290] = 2, + [186828] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5544), 5, - anon_sym_EQ, + ACTIONS(9532), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143302] = 2, + anon_sym_SEMI, + [186838] = 3, + ACTIONS(9540), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2558), 5, - sym__automatic_semicolon, + ACTIONS(9542), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143314] = 2, + [186850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2558), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143326] = 2, + [186860] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2562), 5, + ACTIONS(9544), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143338] = 2, + [186870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1851), 5, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143350] = 2, + [186880] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1861), 5, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143362] = 2, + [186890] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5548), 5, - anon_sym_EQ, + ACTIONS(9532), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143374] = 2, + anon_sym_SEMI, + [186900] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1909), 5, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143386] = 2, + [186910] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5548), 5, - anon_sym_EQ, + ACTIONS(9530), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143398] = 2, + anon_sym_SEMI, + [186920] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2582), 5, + ACTIONS(9532), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143410] = 2, + [186930] = 4, + ACTIONS(8073), 1, + anon_sym_AMP, + ACTIONS(8075), 1, + anon_sym_PIPE, + ACTIONS(8077), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5548), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143422] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(3789), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + [186944] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143442] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4536), 1, - sym__initializer, + ACTIONS(9528), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186954] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7496), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143458] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__initializer, + [186964] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7498), 3, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143474] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4537), 1, - sym__initializer, + [186974] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143490] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4540), 1, - sym__initializer, + [186984] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9532), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143506] = 2, + [186994] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2614), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143518] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4549), 1, - sym__initializer, + [187004] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7496), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143534] = 2, + [187014] = 4, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(9546), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [187028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2678), 5, + ACTIONS(9488), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [187038] = 4, + ACTIONS(5219), 1, + anon_sym_COMMA, + ACTIONS(9548), 1, anon_sym_RBRACE, + STATE(5537), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [187052] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9528), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143546] = 2, + [187062] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2678), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143558] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4671), 1, - sym__initializer, + [187072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7500), 3, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143574] = 5, - ACTIONS(7502), 1, - anon_sym_BQUOTE, - ACTIONS(7504), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7506), 1, - sym__template_chars, + [187082] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3927), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143592] = 2, + ACTIONS(9530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187092] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2678), 5, + ACTIONS(9532), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143604] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4554), 1, - sym__initializer, + [187102] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7496), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143620] = 2, + [187112] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2690), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143632] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4555), 1, - sym__initializer, + [187122] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143648] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4556), 1, - sym__initializer, + [187132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143664] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5044), 1, - sym__initializer, + [187142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143680] = 2, + [187152] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5457), 5, - anon_sym_EQ, + ACTIONS(9528), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143692] = 6, - ACTIONS(3879), 1, - anon_sym_COLON, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(5186), 1, + anon_sym_SEMI, + [187162] = 4, + ACTIONS(5219), 1, anon_sym_COMMA, - ACTIONS(7508), 1, + ACTIONS(9550), 1, anon_sym_RBRACE, - STATE(4940), 1, + STATE(5537), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143712] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4686), 1, - sym__initializer, + [187176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7510), 3, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143728] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4561), 1, - sym__initializer, + [187186] = 4, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(9552), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [187200] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7496), 3, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143744] = 6, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(7512), 1, - anon_sym_SEMI, - ACTIONS(7514), 1, - sym__automatic_semicolon, - ACTIONS(7516), 1, - sym__function_signature_automatic_semicolon, - STATE(2185), 1, - sym_statement_block, + [187210] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143764] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4562), 1, - sym__initializer, + ACTIONS(9532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187220] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143780] = 2, + [187230] = 4, + ACTIONS(9554), 1, + anon_sym_COMMA, + ACTIONS(9557), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5461), 5, - anon_sym_EQ, + [187244] = 4, + ACTIONS(9559), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143792] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4571), 1, - sym__initializer, + ACTIONS(9562), 1, + anon_sym_RBRACE, + STATE(5537), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143808] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(4259), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + [187258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143828] = 2, + ACTIONS(9528), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187268] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5461), 5, - anon_sym_EQ, + ACTIONS(9528), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143840] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, - ACTIONS(7518), 1, - anon_sym_EQ_GT, + anon_sym_SEMI, + [187278] = 4, + ACTIONS(2640), 1, + anon_sym_LT, + ACTIONS(9564), 1, + anon_sym_EQ, + STATE(7193), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [143856] = 5, - ACTIONS(7504), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7521), 1, - anon_sym_BQUOTE, - ACTIONS(7523), 1, - sym__template_chars, + [187292] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4137), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143874] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4572), 1, - sym__initializer, + ACTIONS(9528), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143890] = 2, + [187312] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2742), 5, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143902] = 2, + [187322] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2746), 5, + ACTIONS(9532), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143914] = 2, + [187332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143926] = 2, + [187342] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2758), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143938] = 2, + [187352] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2934), 5, + ACTIONS(9544), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143950] = 2, + [187362] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5461), 5, - anon_sym_EQ, + ACTIONS(7363), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143962] = 6, - ACTIONS(1033), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1613), 1, - anon_sym_LBRACE, - ACTIONS(7081), 1, - anon_sym_extends, - STATE(3879), 1, - sym_object_type, - STATE(4709), 1, - sym_extends_type_clause, + anon_sym_RBRACE, + anon_sym_from, + [187372] = 3, + ACTIONS(9566), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143982] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4573), 1, - sym__initializer, + ACTIONS(9496), 2, + anon_sym_COMMA, + anon_sym_from, + [187384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143998] = 2, + [187394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2762), 5, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144010] = 2, + [187404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2762), 5, + ACTIONS(9532), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144022] = 2, + [187414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2790), 5, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144034] = 2, + [187424] = 3, + ACTIONS(9568), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1919), 5, - sym__automatic_semicolon, + ACTIONS(9496), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144046] = 2, + [187436] = 4, + ACTIONS(9570), 1, + anon_sym_COMMA, + ACTIONS(9572), 1, + anon_sym_RBRACE, + STATE(5701), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 5, + [187450] = 4, + ACTIONS(9574), 1, + sym_identifier, + ACTIONS(9576), 1, + anon_sym_require, + STATE(5703), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [187464] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144058] = 2, + [187474] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1763), 5, + ACTIONS(9532), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144070] = 2, + [187484] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2810), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144082] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4761), 1, - sym__initializer, + [187494] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144098] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4724), 1, - sym__initializer, + [187504] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7527), 3, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144114] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4583), 1, - sym__initializer, + [187514] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7496), 3, + ACTIONS(8904), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144130] = 6, - ACTIONS(7017), 1, - anon_sym_LBRACE, - ACTIONS(7529), 1, - anon_sym_SEMI, - ACTIONS(7531), 1, - sym__automatic_semicolon, - ACTIONS(7533), 1, - sym__function_signature_automatic_semicolon, - STATE(3964), 1, - sym_statement_block, + [187524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144150] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4584), 1, - sym__initializer, + ACTIONS(9530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187534] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9532), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144166] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6665), 1, - anon_sym_extends, - ACTIONS(7537), 1, - anon_sym_PIPE, + [187544] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7535), 2, + ACTIONS(9528), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [144184] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4585), 1, - sym__initializer, + [187554] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(8904), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144200] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4586), 1, - sym__initializer, + [187564] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144216] = 6, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(7539), 1, - anon_sym_SEMI, - ACTIONS(7541), 1, - sym__automatic_semicolon, - ACTIONS(7543), 1, - sym__function_signature_automatic_semicolon, - STATE(2193), 1, - sym_statement_block, + [187574] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144236] = 2, + ACTIONS(9528), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187584] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2854), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144248] = 2, + [187594] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2858), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144260] = 4, - ACTIONS(6420), 1, + [187604] = 3, + ACTIONS(9578), 1, anon_sym_EQ, - STATE(4591), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144276] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, - ACTIONS(7545), 1, - anon_sym_EQ_GT, + ACTIONS(3633), 2, + anon_sym_in, + anon_sym_of, + [187616] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144292] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, - ACTIONS(7548), 1, - anon_sym_EQ_GT, + ACTIONS(9530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187626] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5257), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144308] = 6, - ACTIONS(7551), 1, - anon_sym_EQ, - ACTIONS(7553), 1, + ACTIONS(9532), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7555), 1, - anon_sym_RBRACE, - STATE(4760), 1, - aux_sym_enum_body_repeat1, - STATE(5115), 1, - sym__initializer, + anon_sym_SEMI, + [187636] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144328] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4593), 1, - sym__initializer, + ACTIONS(8083), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [187646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144344] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4142), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [187656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144364] = 2, + ACTIONS(9528), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7121), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144376] = 2, + [187676] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2870), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144388] = 6, - ACTIONS(7017), 1, + [187686] = 4, + ACTIONS(2476), 1, anon_sym_LBRACE, - ACTIONS(7557), 1, - anon_sym_SEMI, - ACTIONS(7559), 1, - sym__automatic_semicolon, - ACTIONS(7561), 1, - sym__function_signature_automatic_semicolon, - STATE(3873), 1, + ACTIONS(9580), 1, + anon_sym_LPAREN, + STATE(787), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144408] = 3, - ACTIONS(5479), 1, - sym__automatic_semicolon, + [187700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 4, + ACTIONS(5254), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144422] = 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [187710] = 3, + ACTIONS(9210), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2874), 5, - sym__automatic_semicolon, + ACTIONS(9582), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144434] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6665), 1, - anon_sym_extends, - ACTIONS(7537), 1, - anon_sym_PIPE, + anon_sym_RBRACK, + [187722] = 4, + ACTIONS(5076), 1, + anon_sym_COMMA, + ACTIONS(9584), 1, + anon_sym_RBRACK, + STATE(5585), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7563), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144452] = 2, + [187736] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2878), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144464] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3585), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [187746] = 4, + ACTIONS(1781), 1, + anon_sym_COMMA, + ACTIONS(9586), 1, + anon_sym_RBRACK, + STATE(5586), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [187760] = 4, + ACTIONS(5254), 1, + anon_sym_RBRACK, + ACTIONS(9588), 1, + anon_sym_COMMA, + STATE(5585), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144484] = 2, + [187774] = 4, + ACTIONS(9582), 1, + anon_sym_RBRACK, + ACTIONS(9591), 1, + anon_sym_COMMA, + STATE(5586), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [187788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9594), 1, + sym__glimmer_template_content, + ACTIONS(9597), 1, + sym_glimmer_closing_tag, + STATE(5587), 1, + aux_sym_glimmer_template_repeat1, + [187804] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2882), 5, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144496] = 2, + [187814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2886), 5, + ACTIONS(6326), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144508] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, - ACTIONS(7565), 1, - anon_sym_EQ_GT, + [187824] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5257), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144524] = 2, + ACTIONS(9599), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2902), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144536] = 2, + [187844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2910), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144548] = 2, + [187854] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7568), 5, + ACTIONS(9603), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144560] = 2, + [187864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1783), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144572] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4598), 1, - sym__initializer, + [187874] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144588] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4764), 1, - sym__initializer, + [187884] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9605), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144604] = 3, - ACTIONS(5487), 1, - sym__automatic_semicolon, + [187894] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1939), 4, + ACTIONS(9605), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144618] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3514), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [187904] = 4, + ACTIONS(1679), 1, + anon_sym_RPAREN, + ACTIONS(9607), 1, + anon_sym_COMMA, + STATE(5719), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144638] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6665), 1, - anon_sym_extends, - ACTIONS(7537), 1, - anon_sym_PIPE, + [187918] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7570), 2, + ACTIONS(9609), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [144656] = 2, + [187928] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2726), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144668] = 2, + [187938] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7157), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144680] = 3, - ACTIONS(5489), 1, - sym__automatic_semicolon, + [187948] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1773), 4, + ACTIONS(9601), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144694] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3552), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [187958] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144714] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4057), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + ACTIONS(9601), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187968] = 4, + ACTIONS(9611), 1, + anon_sym_COMMA, + ACTIONS(9613), 1, + anon_sym_RBRACK, + STATE(5748), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144734] = 2, + [187982] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7159), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144746] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3663), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [187992] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144766] = 2, + ACTIONS(9601), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188002] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7157), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144778] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3667), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [188012] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144798] = 2, + ACTIONS(9601), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7572), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144810] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3679), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [188032] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144830] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4768), 1, - sym__initializer, + ACTIONS(9601), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188042] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144846] = 2, + [188052] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7121), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144858] = 2, + [188062] = 4, + ACTIONS(7499), 1, + anon_sym_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7503), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7574), 5, + [188076] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9605), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144870] = 2, + [188086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7423), 5, + ACTIONS(9605), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144882] = 2, + [188096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7576), 5, + ACTIONS(9609), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144894] = 2, + [188106] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7173), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144906] = 2, + [188116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7578), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144918] = 2, + [188126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7580), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144930] = 2, + [188136] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2566), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144942] = 2, + [188146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2602), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144954] = 2, + [188156] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2646), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144966] = 2, + [188166] = 4, + ACTIONS(3186), 1, + anon_sym_GT, + ACTIONS(9615), 1, + anon_sym_COMMA, + STATE(5398), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [188180] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2662), 5, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144978] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4599), 1, - sym__initializer, + [188190] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7582), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144994] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(3806), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + [188200] = 4, + ACTIONS(9370), 1, + anon_sym_GT, + ACTIONS(9617), 1, + anon_sym_COMMA, + STATE(5751), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145014] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4600), 1, - sym__initializer, + [188214] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9619), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145030] = 5, - ACTIONS(7586), 1, - sym_identifier, - ACTIONS(7588), 1, - anon_sym_LPAREN, - STATE(2681), 1, - sym_decorator_member_expression, + [188224] = 4, + ACTIONS(220), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1581), 1, + anon_sym_LBRACE, + STATE(863), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2772), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [145048] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4601), 1, - sym__initializer, + [188238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9619), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145064] = 2, + [188248] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(5136), 1, + anon_sym_RPAREN, + STATE(5756), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5218), 5, - anon_sym_EQ, + [188262] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, + ACTIONS(5136), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [145076] = 3, - ACTIONS(4598), 1, - anon_sym_in, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5573), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [145090] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5010), 1, - sym__initializer, + [188276] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7590), 3, + ACTIONS(9619), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145106] = 3, - ACTIONS(7592), 1, - anon_sym_EQ, + [188286] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 4, + ACTIONS(9619), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [145120] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, - ACTIONS(7595), 1, - anon_sym_EQ_GT, + anon_sym_SEMI, + [188296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5257), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [145136] = 5, - ACTIONS(7504), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7598), 1, - anon_sym_BQUOTE, - ACTIONS(7600), 1, - sym__template_chars, + ACTIONS(9528), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188306] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4018), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145154] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4602), 1, - sym__initializer, + ACTIONS(9475), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188316] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145170] = 6, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(7529), 1, - anon_sym_SEMI, - ACTIONS(7531), 1, - sym__automatic_semicolon, - ACTIONS(7533), 1, - sym__function_signature_automatic_semicolon, - STATE(2227), 1, - sym_statement_block, + [188326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145190] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4603), 1, - sym__initializer, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188336] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145206] = 5, - ACTIONS(7504), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7523), 1, - sym__template_chars, - ACTIONS(7602), 1, - anon_sym_BQUOTE, + [188346] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4137), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145224] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4770), 1, - sym__initializer, + ACTIONS(9455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145240] = 6, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(7557), 1, - anon_sym_SEMI, - ACTIONS(7559), 1, - sym__automatic_semicolon, - ACTIONS(7561), 1, - sym__function_signature_automatic_semicolon, - STATE(2233), 1, - sym_statement_block, + [188366] = 3, + ACTIONS(9621), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145260] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4606), 1, - sym__initializer, + ACTIONS(9623), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [188378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7604), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145276] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4607), 1, - sym__initializer, + [188388] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9461), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145292] = 2, + [188398] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5594), 5, - anon_sym_EQ, + ACTIONS(9475), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [145304] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4608), 1, - sym__initializer, + anon_sym_SEMI, + [188408] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145320] = 2, + [188418] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5288), 5, - anon_sym_EQ, + ACTIONS(9455), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [145332] = 2, + anon_sym_SEMI, + [188428] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7606), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [145344] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4609), 1, - sym__initializer, + ACTIONS(9625), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [188438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145360] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4610), 1, - sym__initializer, + [188448] = 4, + ACTIONS(7770), 1, + anon_sym_RBRACE, + ACTIONS(9627), 1, + anon_sym_COMMA, + STATE(5761), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + [188462] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145376] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4611), 1, - sym__initializer, + [188472] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145392] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4612), 1, - sym__initializer, + [188482] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145408] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4613), 1, - sym__initializer, + [188492] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145424] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4614), 1, - sym__initializer, + [188502] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145440] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4615), 1, - sym__initializer, + [188512] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145456] = 5, - ACTIONS(7504), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7608), 1, - anon_sym_BQUOTE, - ACTIONS(7610), 1, - sym__template_chars, + [188522] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4037), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145474] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4616), 1, - sym__initializer, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188532] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145490] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4784), 1, - sym__initializer, + [188542] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145506] = 5, - ACTIONS(7504), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7523), 1, - sym__template_chars, - ACTIONS(7612), 1, - anon_sym_BQUOTE, + [188552] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4137), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145524] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(4244), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145544] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5242), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145564] = 6, - ACTIONS(1719), 1, - anon_sym_LBRACE, - ACTIONS(7539), 1, - anon_sym_SEMI, - ACTIONS(7541), 1, + ACTIONS(9461), 3, sym__automatic_semicolon, - ACTIONS(7543), 1, - sym__function_signature_automatic_semicolon, - STATE(234), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_SEMI, + [188582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145584] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4619), 1, - sym__initializer, + ACTIONS(9475), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145600] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4620), 1, - sym__initializer, + [188602] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145616] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4560), 1, - sym__initializer, + [188612] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145632] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4632), 1, - sym__initializer, + [188622] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7604), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145648] = 4, - ACTIONS(6420), 1, + [188632] = 3, + ACTIONS(9210), 1, anon_sym_EQ, - STATE(4633), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9629), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [188644] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145664] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4634), 1, - sym__initializer, + [188654] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145680] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4637), 1, - sym__initializer, + [188664] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145696] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4638), 1, - sym__initializer, + [188674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9461), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145712] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4639), 1, - sym__initializer, + [188684] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145728] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4642), 1, - sym__initializer, + [188694] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145744] = 5, - ACTIONS(7504), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7614), 1, - anon_sym_BQUOTE, - ACTIONS(7616), 1, - sym__template_chars, + [188704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4055), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145762] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5125), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188714] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145782] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7236), 1, - anon_sym_abstract, - ACTIONS(7618), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3847), 1, - aux_sym_export_statement_repeat1, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145802] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4643), 1, - sym__initializer, + ACTIONS(9461), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9461), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145818] = 5, - ACTIONS(7504), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7523), 1, - sym__template_chars, - ACTIONS(7620), 1, - anon_sym_BQUOTE, + [188744] = 4, + ACTIONS(9631), 1, + anon_sym_COMMA, + ACTIONS(9633), 1, + anon_sym_RBRACE, + STATE(6015), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4137), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145836] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4645), 1, - sym__initializer, + [188758] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7584), 3, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145852] = 2, + [188768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7161), 5, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145864] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4065), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [188778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145884] = 2, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188788] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7163), 5, + ACTIONS(9461), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145896] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4649), 1, - sym__initializer, + [188798] = 4, + ACTIONS(9635), 1, + anon_sym_COMMA, + ACTIONS(9637), 1, + anon_sym_RBRACE, + STATE(6015), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [188812] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7622), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145912] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4651), 1, - sym__initializer, + [188822] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7622), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145928] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4653), 1, - sym__initializer, + [188832] = 4, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(8942), 1, + anon_sym_RPAREN, + STATE(5762), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7622), 3, + [188846] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145944] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4655), 1, - sym__initializer, + [188856] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7622), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145960] = 2, + [188866] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5604), 5, - anon_sym_EQ, + ACTIONS(9455), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [145972] = 2, + anon_sym_SEMI, + [188876] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7169), 5, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145984] = 6, - ACTIONS(7214), 1, - anon_sym_AMP, - ACTIONS(7216), 1, - anon_sym_PIPE, - ACTIONS(7218), 1, - anon_sym_extends, - ACTIONS(7624), 1, + [188886] = 3, + ACTIONS(9639), 1, anon_sym_as, - ACTIONS(7626), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146004] = 2, + ACTIONS(7363), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [188898] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7628), 5, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146016] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(3795), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + [188908] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146036] = 2, + ACTIONS(9475), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188918] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7630), 5, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146048] = 2, + [188928] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7101), 5, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146060] = 2, + [188938] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 5, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146072] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3982), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [188948] = 4, + ACTIONS(7361), 1, + anon_sym_type, + ACTIONS(9641), 1, + sym_identifier, + STATE(6307), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146092] = 2, + [188962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7103), 5, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146104] = 2, + [188972] = 4, + ACTIONS(7361), 1, + anon_sym_type, + ACTIONS(9643), 1, + sym_identifier, + STATE(6301), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7101), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146116] = 2, + [188986] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7632), 5, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146128] = 2, + [188996] = 4, + ACTIONS(7674), 1, + anon_sym_RBRACE, + ACTIONS(9645), 1, + anon_sym_COMMA, + STATE(5936), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [189010] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7127), 5, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146140] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4807), 1, - sym__initializer, + [189020] = 3, + ACTIONS(7990), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7634), 3, + ACTIONS(9647), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [146156] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4808), 1, - sym__initializer, + [189032] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7636), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146172] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5076), 1, - sym__initializer, + [189042] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9649), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146188] = 2, + [189052] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7638), 5, + ACTIONS(9651), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146200] = 2, + [189062] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2830), 5, + ACTIONS(9398), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146212] = 2, + [189072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 5, + ACTIONS(9461), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146224] = 2, + [189082] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7103), 5, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146236] = 2, + [189092] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7640), 5, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146248] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(3920), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + [189102] = 3, + ACTIONS(7984), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146268] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4788), 1, - sym__initializer, + ACTIONS(9647), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [189114] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146284] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5046), 1, - sym__initializer, + [189124] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146300] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5172), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146320] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4815), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146340] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4741), 1, - sym__initializer, + [189134] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146356] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7234), 1, - anon_sym_class, - ACTIONS(7236), 1, - anon_sym_abstract, - STATE(1267), 1, - sym_decorator, - STATE(3847), 1, - aux_sym_export_statement_repeat1, + [189144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146376] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(3947), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + ACTIONS(9655), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189154] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146396] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4824), 1, - sym__initializer, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189164] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146412] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(3869), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + [189174] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146432] = 4, - ACTIONS(7250), 1, + ACTIONS(8063), 3, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(7644), 1, anon_sym_EQ_GT, + [189184] = 4, + ACTIONS(9657), 1, + anon_sym_COMMA, + ACTIONS(9660), 1, + anon_sym_RPAREN, + STATE(5719), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [146448] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5160), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [189198] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146468] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4839), 1, - sym__initializer, + ACTIONS(9475), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189208] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146484] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(3952), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + [189218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146504] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5030), 1, - sym__initializer, + ACTIONS(9475), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189228] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146520] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5208), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [189238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146540] = 2, + ACTIONS(9453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189248] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7647), 5, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146552] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4856), 1, - sym__initializer, + [189258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146568] = 2, + [189268] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7649), 5, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146580] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4827), 1, - sym__initializer, + [189278] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7651), 3, + ACTIONS(9662), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146596] = 5, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7653), 1, - sym_identifier, - STATE(3440), 1, - sym_decorator_member_expression, + [189288] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1257), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [146614] = 4, - ACTIONS(6420), 1, + ACTIONS(9664), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189298] = 3, + ACTIONS(8135), 1, anon_sym_EQ, - STATE(4878), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(3633), 2, + anon_sym_in, + anon_sym_of, + [189310] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146630] = 3, - ACTIONS(7655), 1, - anon_sym_EQ, + [189320] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3572), 4, + ACTIONS(9668), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [146644] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4882), 1, - sym__initializer, + anon_sym_SEMI, + [189330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(9664), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146660] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4883), 1, - sym__initializer, + [189340] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7657), 3, + ACTIONS(9670), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146676] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4884), 1, - sym__initializer, + [189350] = 4, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(9672), 1, + anon_sym_RBRACE, + STATE(5764), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [189364] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7657), 3, + ACTIONS(9674), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146692] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4757), 1, - sym__initializer, + [189374] = 4, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(9672), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, - sym__automatic_semicolon, + [189388] = 4, + ACTIONS(8575), 1, anon_sym_COMMA, - anon_sym_SEMI, - [146708] = 5, - ACTIONS(7504), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7523), 1, - sym__template_chars, - ACTIONS(7659), 1, - anon_sym_BQUOTE, + ACTIONS(9676), 1, + anon_sym_LBRACE, + STATE(5398), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4137), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146726] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4854), 1, - sym__initializer, + [189402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7661), 3, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146742] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(3963), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + [189412] = 4, + ACTIONS(9678), 1, + anon_sym_COMMA, + ACTIONS(9680), 1, + anon_sym_RPAREN, + STATE(5767), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146762] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5356), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [189426] = 4, + ACTIONS(9682), 1, + sym_identifier, + ACTIONS(9684), 1, + anon_sym_LBRACK, + ACTIONS(9686), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146782] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5367), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [189440] = 4, + ACTIONS(9688), 1, + sym_identifier, + ACTIONS(9690), 1, + anon_sym_LBRACK, + ACTIONS(9692), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146802] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5369), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [189454] = 4, + ACTIONS(9694), 1, + sym_identifier, + ACTIONS(9696), 1, + anon_sym_LBRACK, + ACTIONS(9698), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146822] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4548), 1, - sym__initializer, + [189468] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9488), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146838] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5382), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [189478] = 4, + ACTIONS(9700), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_LBRACK, + ACTIONS(9704), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146858] = 2, + [189492] = 3, + ACTIONS(9706), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2806), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146870] = 2, + ACTIONS(9030), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [189504] = 4, + ACTIONS(7580), 1, + anon_sym_LPAREN, + ACTIONS(9508), 1, + anon_sym_DOT, + STATE(3363), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2866), 5, - sym__automatic_semicolon, + [189518] = 4, + ACTIONS(2952), 1, + anon_sym_RBRACK, + ACTIONS(9708), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146882] = 4, - ACTIONS(3534), 1, - anon_sym_COLON, - STATE(5393), 1, - sym_type_annotation, + STATE(6022), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 3, - anon_sym_EQ, + [189532] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [146898] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, - ACTIONS(7663), 1, - anon_sym_EQ_GT, + ACTIONS(9710), 1, + anon_sym_RPAREN, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [146914] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4866), 1, - sym__initializer, + [189546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146930] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5107), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146950] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5109), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [189556] = 4, + ACTIONS(9714), 1, + anon_sym_COMMA, + ACTIONS(9717), 1, + anon_sym_GT, + STATE(5751), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146970] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, - ACTIONS(7666), 1, - anon_sym_EQ_GT, + [189570] = 4, + ACTIONS(9719), 1, + anon_sym_COMMA, + ACTIONS(9721), 1, + anon_sym_RBRACE, + STATE(5678), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5257), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [146986] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4867), 1, - sym__initializer, + [189584] = 4, + ACTIONS(220), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1581), 1, + anon_sym_LBRACE, + STATE(790), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, - sym__automatic_semicolon, + [189598] = 4, + ACTIONS(9723), 1, anon_sym_COMMA, - anon_sym_SEMI, - [147002] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4911), 1, - sym__initializer, + ACTIONS(9725), 1, + anon_sym_RBRACE, + STATE(6010), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147018] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, + [189612] = 4, + ACTIONS(3469), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DOT, + STATE(3588), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7669), 2, + [189626] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [147036] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4524), 1, - sym__initializer, + ACTIONS(9729), 1, + anon_sym_RPAREN, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147052] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5399), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [189640] = 4, + ACTIONS(1049), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1623), 1, + anon_sym_LBRACE, + STATE(4721), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147072] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5145), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [189654] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147092] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4564), 1, - sym__initializer, + ACTIONS(9731), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [189664] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147108] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5154), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [189674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147128] = 4, - ACTIONS(6338), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, + ACTIONS(9603), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189684] = 4, + ACTIONS(9733), 1, + anon_sym_COMMA, + ACTIONS(9736), 1, anon_sym_RBRACE, + STATE(5761), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [147144] = 5, - ACTIONS(7673), 1, - anon_sym_BQUOTE, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7678), 1, - sym__template_chars, + [189698] = 4, + ACTIONS(4931), 1, + anon_sym_RPAREN, + ACTIONS(9738), 1, + anon_sym_COMMA, + STATE(5762), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4137), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [147162] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5164), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [189712] = 4, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(9741), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147182] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, + [189726] = 4, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(9743), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7681), 2, - anon_sym_COMMA, - anon_sym_GT, - [147200] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4924), 1, - sym__initializer, + [189740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 3, + ACTIONS(9745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147216] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7683), 5, - anon_sym_EQ, + [189750] = 3, + ACTIONS(9747), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [147228] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7111), 5, - sym__automatic_semicolon, + ACTIONS(8946), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [189762] = 4, + ACTIONS(1665), 1, + anon_sym_RPAREN, + ACTIONS(9749), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147240] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4246), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + STATE(5719), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147260] = 2, + [189776] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7113), 5, + ACTIONS(9745), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147272] = 2, + [189786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7685), 5, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147284] = 2, + [189796] = 4, + ACTIONS(2956), 1, + anon_sym_RBRACK, + ACTIONS(9753), 1, + anon_sym_COMMA, + STATE(6022), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [189810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7356), 5, + ACTIONS(9712), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [147296] = 2, + [189820] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7113), 5, + ACTIONS(9755), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147308] = 2, + [189830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 5, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147320] = 2, + [189840] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7111), 5, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147332] = 2, + [189850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7689), 5, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147344] = 2, + [189860] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7691), 5, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147356] = 2, + [189870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2682), 5, + ACTIONS(9745), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147368] = 4, - ACTIONS(4969), 1, - anon_sym_COMMA, - STATE(4157), 1, - aux_sym_sequence_expression_repeat1, + [189880] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7693), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [147384] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4868), 1, - sym__initializer, + ACTIONS(9755), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189890] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147400] = 2, + [189900] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2710), 5, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147412] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4870), 1, - sym__initializer, + [189910] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147428] = 4, - ACTIONS(7695), 1, + [189920] = 4, + ACTIONS(9759), 1, anon_sym_COMMA, - STATE(4157), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4821), 3, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(9761), 1, anon_sym_RBRACK, - [147444] = 2, + STATE(5824), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7698), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [147456] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6665), 1, - anon_sym_extends, - ACTIONS(7537), 1, - anon_sym_PIPE, + [189934] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7700), 2, + ACTIONS(9712), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [147474] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4566), 1, - sym__initializer, + [189944] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147490] = 5, - ACTIONS(6645), 1, - anon_sym_LT, - ACTIONS(7702), 1, - anon_sym_LBRACE, - STATE(5050), 1, - sym_type_arguments, + [189954] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7704), 2, + ACTIONS(9712), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [147508] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(4016), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147528] = 2, + anon_sym_SEMI, + [189964] = 4, + ACTIONS(7600), 1, + anon_sym_AMP, + ACTIONS(7604), 1, + anon_sym_extends, + ACTIONS(8928), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6304), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [147540] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4895), 1, - sym__initializer, + [189978] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7496), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147556] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5309), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147576] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4897), 1, - sym__initializer, + [189988] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147592] = 6, - ACTIONS(7551), 1, - anon_sym_EQ, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(7708), 1, - anon_sym_RBRACE, - STATE(4508), 1, - aux_sym_enum_body_repeat1, - STATE(5115), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147612] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7710), 1, - anon_sym_class, - ACTIONS(7712), 1, - anon_sym_abstract, - STATE(1267), 1, - sym_decorator, - STATE(3847), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147632] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(4020), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147652] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5355), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [189998] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147672] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4907), 1, - sym__initializer, + ACTIONS(9757), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190008] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147688] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(4040), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + [190018] = 3, + ACTIONS(7990), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147708] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5390), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9763), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [190030] = 4, + ACTIONS(3194), 1, + anon_sym_GT, + ACTIONS(9765), 1, + anon_sym_COMMA, + STATE(5398), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147728] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4909), 1, - sym__initializer, + [190044] = 3, + ACTIONS(7984), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9763), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [147744] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5405), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147764] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4917), 1, - sym__initializer, + [190056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147780] = 2, + [190066] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5028), 5, - anon_sym_EQ, + ACTIONS(9712), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190076] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(5084), 1, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [147792] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5142), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147812] = 2, + STATE(5829), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5017), 5, - anon_sym_EQ, + [190090] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(5084), 1, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [147824] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(3750), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147844] = 6, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1565), 1, - anon_sym_LBRACE, - ACTIONS(7081), 1, - anon_sym_extends, - STATE(902), 1, - sym_object_type, - STATE(4782), 1, - sym_extends_type_clause, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147864] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4953), 1, - sym__initializer, + [190104] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7714), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147880] = 4, - STATE(5409), 1, - sym_import_attribute, + [190114] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7716), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7718), 2, + ACTIONS(9757), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [147896] = 5, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(7720), 1, - sym_identifier, + [190124] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5274), 2, - sym__module_export_name, - sym_string, - [147914] = 2, + ACTIONS(9757), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190134] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2774), 5, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147926] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4958), 1, - sym__initializer, + [190144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7722), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147942] = 2, + [190154] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7724), 5, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147954] = 4, - STATE(5412), 1, - sym_import_attribute, + [190164] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7716), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7726), 2, + ACTIONS(9757), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [147970] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4968), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [190174] = 3, + ACTIONS(9767), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147990] = 2, + ACTIONS(9078), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [190186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2798), 5, + ACTIONS(9755), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148002] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5418), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [190196] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148022] = 6, - ACTIONS(7017), 1, - anon_sym_LBRACE, - ACTIONS(7539), 1, - anon_sym_SEMI, - ACTIONS(7541), 1, + ACTIONS(9757), 3, sym__automatic_semicolon, - ACTIONS(7543), 1, - sym__function_signature_automatic_semicolon, - STATE(774), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_SEMI, + [190206] = 4, + ACTIONS(9769), 1, + sym_identifier, + ACTIONS(9771), 1, + anon_sym_LBRACK, + ACTIONS(9773), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148042] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4979), 1, - sym__initializer, + [190220] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148058] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4980), 1, - sym__initializer, + [190230] = 4, + ACTIONS(9775), 1, + sym_identifier, + ACTIONS(9777), 1, + anon_sym_LBRACK, + ACTIONS(9779), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [190244] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148074] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4981), 1, - sym__initializer, + [190254] = 4, + ACTIONS(9781), 1, + sym_identifier, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(9785), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + [190268] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148090] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4922), 1, - sym__initializer, + [190278] = 4, + ACTIONS(9787), 1, + sym_identifier, + ACTIONS(9789), 1, + anon_sym_LBRACK, + ACTIONS(9791), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [190292] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148106] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6665), 1, - anon_sym_extends, - ACTIONS(7537), 1, - anon_sym_PIPE, + [190302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7732), 2, + ACTIONS(9755), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [148124] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4991), 1, - sym__initializer, + [190312] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148140] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4928), 1, - sym__initializer, + [190322] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9755), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148156] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5013), 1, - sym__initializer, + [190332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148172] = 2, + [190342] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(5035), 1, + anon_sym_RPAREN, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 5, - sym__automatic_semicolon, + [190356] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148184] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5188), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(5035), 1, + anon_sym_RPAREN, + STATE(5749), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148204] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5014), 1, - sym__initializer, + [190370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + ACTIONS(9745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148220] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5016), 1, - sym__initializer, + [190380] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + ACTIONS(9793), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148236] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5024), 1, - sym__initializer, + [190390] = 4, + ACTIONS(2938), 1, + anon_sym_RBRACK, + ACTIONS(9795), 1, + anon_sym_COMMA, + STATE(6022), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148252] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5034), 1, - sym__initializer, + [190404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148268] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5040), 1, - sym__initializer, + [190414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148284] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5055), 1, - sym__initializer, + [190424] = 4, + ACTIONS(1049), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1623), 1, + anon_sym_LBRACE, + STATE(4609), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148300] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5056), 1, - sym__initializer, + [190438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148316] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5057), 1, - sym__initializer, + [190448] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(9797), 1, + anon_sym_RPAREN, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148332] = 2, + [190462] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1901), 5, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148344] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4964), 1, - sym__initializer, + [190472] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7496), 3, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148360] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4965), 1, - sym__initializer, + [190482] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148376] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5075), 1, - sym__initializer, + [190492] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148392] = 4, - STATE(5335), 1, - sym_import_attribute, + [190502] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7716), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7734), 2, + ACTIONS(9712), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [148408] = 4, - STATE(5414), 1, - sym_import_attribute, + [190512] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7716), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7736), 2, + ACTIONS(9793), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [148424] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5086), 1, - sym__initializer, + [190522] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148440] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4982), 1, - sym__initializer, + [190532] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148456] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5094), 1, - sym__initializer, + [190542] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148472] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5095), 1, - sym__initializer, + [190552] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148488] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5096), 1, - sym__initializer, + [190562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148504] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5097), 1, - sym__initializer, + [190572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148520] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5098), 1, - sym__initializer, + [190582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148536] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4997), 1, - sym__initializer, + [190592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148552] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4624), 1, - sym__initializer, + [190602] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148568] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5011), 1, - sym__initializer, + [190612] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7496), 3, + ACTIONS(9745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148584] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4644), 1, - sym__initializer, + [190622] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148600] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4935), 1, - sym__initializer, + [190632] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148616] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5043), 1, - sym__initializer, + [190642] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148632] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5083), 1, - sym__initializer, + [190652] = 4, + ACTIONS(9329), 1, + anon_sym_GT, + ACTIONS(9799), 1, + anon_sym_COMMA, + STATE(5751), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7496), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148648] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5269), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [190666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148668] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5085), 1, - sym__initializer, + ACTIONS(9712), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190676] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148684] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4851), 1, - sym__initializer, + [190686] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148700] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5051), 1, - sym__initializer, + [190696] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148716] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4567), 1, - sym__initializer, + [190706] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148732] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4623), 1, - sym__initializer, + [190716] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148748] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4654), 1, - sym__initializer, + [190726] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148764] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4860), 1, - sym__initializer, + [190736] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148780] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4542), 1, - sym__initializer, + [190746] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7728), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148796] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4595), 1, - sym__initializer, + [190756] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148812] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5088), 1, - sym__initializer, + [190766] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148828] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4657), 1, - sym__initializer, + [190776] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148844] = 2, + [190786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2782), 5, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148856] = 6, - ACTIONS(1719), 1, - anon_sym_LBRACE, - ACTIONS(7512), 1, anon_sym_SEMI, - ACTIONS(7514), 1, - sym__automatic_semicolon, - ACTIONS(7516), 1, - sym__function_signature_automatic_semicolon, - STATE(228), 1, - sym_statement_block, + [190796] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148876] = 2, + ACTIONS(9757), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190806] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2786), 5, + ACTIONS(9745), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148888] = 2, + [190816] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7069), 5, + ACTIONS(9745), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148900] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4070), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [190826] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148920] = 2, + ACTIONS(9801), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190836] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7071), 5, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148932] = 2, + [190846] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7069), 5, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148944] = 2, + [190856] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7738), 5, + ACTIONS(9803), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148956] = 2, + [190866] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2794), 5, + ACTIONS(9751), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148968] = 5, - ACTIONS(7740), 1, anon_sym_SEMI, - ACTIONS(7742), 1, - sym__automatic_semicolon, - STATE(5422), 1, - sym_import_attribute, + [190876] = 4, + ACTIONS(3180), 1, + anon_sym_GT, + ACTIONS(9805), 1, + anon_sym_COMMA, + STATE(5398), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7716), 2, - anon_sym_with, - anon_sym_assert, - [148986] = 2, + [190890] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7071), 5, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148998] = 2, + [190900] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7744), 5, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149010] = 2, + [190910] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7746), 5, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149022] = 5, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(7748), 1, - sym_identifier, + [190920] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5171), 2, - sym__module_export_name, - sym_string, - [149040] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(4192), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + ACTIONS(9745), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149060] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5178), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9745), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190940] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149080] = 6, - ACTIONS(7017), 1, - anon_sym_LBRACE, - ACTIONS(7512), 1, - anon_sym_SEMI, - ACTIONS(7514), 1, + ACTIONS(9751), 3, sym__automatic_semicolon, - ACTIONS(7516), 1, - sym__function_signature_automatic_semicolon, - STATE(760), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_SEMI, + [190950] = 4, + ACTIONS(5213), 1, + anon_sym_extends, + ACTIONS(9807), 1, + anon_sym_AMP, + ACTIONS(9809), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149100] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5100), 1, - sym__initializer, + [190964] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7496), 3, + ACTIONS(9712), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149116] = 5, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6665), 1, - anon_sym_extends, - ACTIONS(7537), 1, - anon_sym_PIPE, + [190974] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7750), 2, + ACTIONS(9712), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [149134] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5250), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149154] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5102), 1, - sym__initializer, + [190984] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149170] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4491), 1, - sym__initializer, + [190994] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149186] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5194), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [191004] = 4, + ACTIONS(9815), 1, + anon_sym_COMMA, + ACTIONS(9817), 1, + anon_sym_RBRACK, + STATE(5770), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149206] = 5, - ACTIONS(7504), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7752), 1, - anon_sym_BQUOTE, - ACTIONS(7754), 1, - sym__template_chars, + [191018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4112), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [149224] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4492), 1, - sym__initializer, + ACTIONS(9801), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9819), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149240] = 2, + [191038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7756), 5, + ACTIONS(9821), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149252] = 2, + [191048] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7758), 5, + ACTIONS(9821), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149264] = 2, + [191058] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7760), 5, + ACTIONS(9823), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149276] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3429), 1, - sym_formal_parameters, - STATE(3773), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_parameters, + [191068] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149296] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4493), 1, - sym__initializer, + ACTIONS(9751), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9825), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149312] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4703), 1, - sym__initializer, + [191088] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7762), 3, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149328] = 2, + [191098] = 4, + ACTIONS(1781), 1, + anon_sym_COMMA, + ACTIONS(9829), 1, + anon_sym_RBRACK, + STATE(5586), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7342), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + [191112] = 4, + ACTIONS(5076), 1, anon_sym_COMMA, - anon_sym_SEMI, - [149340] = 2, + ACTIONS(9831), 1, + anon_sym_RBRACK, + STATE(5585), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7418), 5, + [191126] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9827), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [149352] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4717), 1, - sym__initializer, + [191136] = 4, + ACTIONS(1677), 1, + anon_sym_RPAREN, + ACTIONS(9833), 1, + anon_sym_COMMA, + STATE(5719), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191150] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7764), 3, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149368] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7712), 1, - anon_sym_abstract, - ACTIONS(7766), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3847), 1, - aux_sym_export_statement_repeat1, + [191160] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149388] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4661), 1, - sym__initializer, + ACTIONS(9835), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191170] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9755), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149404] = 2, + [191180] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7324), 5, + ACTIONS(9825), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [149416] = 2, + [191190] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2822), 5, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149428] = 2, + [191200] = 4, + ACTIONS(4553), 1, + anon_sym_COMMA, + ACTIONS(9837), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191214] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2826), 5, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149440] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4733), 1, - sym__call_signature, - STATE(5245), 1, - sym_type_parameters, + [191224] = 4, + ACTIONS(5219), 1, + anon_sym_COMMA, + ACTIONS(9839), 1, + anon_sym_RBRACE, + STATE(5537), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149460] = 2, + [191238] = 4, + ACTIONS(5219), 1, + anon_sym_COMMA, + ACTIONS(9841), 1, + anon_sym_RBRACE, + STATE(5537), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2826), 5, - sym__automatic_semicolon, + [191252] = 4, + ACTIONS(4553), 1, anon_sym_COMMA, + ACTIONS(9843), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149472] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4734), 1, - sym__initializer, + STATE(5536), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + [191266] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149488] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4735), 1, - sym__initializer, + [191276] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149504] = 2, + [191286] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2834), 5, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149516] = 2, + [191296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2838), 5, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149528] = 2, + [191306] = 4, + ACTIONS(4053), 1, + anon_sym_LPAREN, + ACTIONS(9845), 1, + anon_sym_DOT, + STATE(1609), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1793), 5, + [191320] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149540] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4743), 1, - sym__initializer, + [191330] = 4, + ACTIONS(8163), 1, + anon_sym_AMP, + ACTIONS(8165), 1, + anon_sym_PIPE, + ACTIONS(8167), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191344] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9847), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149556] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4745), 1, - sym__initializer, + [191354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9825), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149572] = 2, + [191364] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2826), 5, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149584] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4758), 1, - sym__initializer, + [191374] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9847), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149600] = 2, + [191384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2826), 5, + ACTIONS(9825), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149612] = 2, + [191394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2826), 5, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149624] = 2, + [191404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2826), 5, + ACTIONS(9755), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149636] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4496), 1, - sym__initializer, + [191414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7496), 3, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149652] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, - ACTIONS(7768), 1, - anon_sym_EQ_GT, + [191424] = 4, + ACTIONS(9849), 1, + sym_identifier, + ACTIONS(9851), 1, + anon_sym_LBRACK, + ACTIONS(9853), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149668] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4497), 1, - sym__initializer, + [191438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149684] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4498), 1, - sym__initializer, + [191448] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149700] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4499), 1, - sym__initializer, + [191458] = 4, + ACTIONS(5254), 1, + anon_sym_RPAREN, + ACTIONS(9855), 1, + anon_sym_COMMA, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, - sym__automatic_semicolon, + [191472] = 4, + ACTIONS(7361), 1, + anon_sym_type, + ACTIONS(9858), 1, + sym_identifier, + STATE(6858), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191486] = 4, + ACTIONS(9860), 1, anon_sym_COMMA, - anon_sym_SEMI, - [149716] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5373), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9862), 1, + anon_sym_GT, + STATE(5849), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149736] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4763), 1, - sym__initializer, + [191500] = 4, + ACTIONS(7361), 1, + anon_sym_type, + ACTIONS(9864), 1, + sym_identifier, + STATE(6861), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, - sym__automatic_semicolon, + [191514] = 4, + ACTIONS(2490), 1, + anon_sym_while, + ACTIONS(9866), 1, + anon_sym_else, + STATE(817), 1, + sym_else_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191528] = 4, + ACTIONS(9868), 1, anon_sym_COMMA, - anon_sym_SEMI, - [149752] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, - ACTIONS(7771), 1, - anon_sym_EQ_GT, + ACTIONS(9870), 1, + anon_sym_RBRACK, + STATE(5962), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149768] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, - ACTIONS(7774), 1, - anon_sym_EQ_GT, + [191542] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5257), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149784] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, + ACTIONS(9835), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191552] = 4, + ACTIONS(4579), 1, anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5392), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + ACTIONS(9872), 1, + anon_sym_DOT, + STATE(2095), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149804] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4501), 1, - sym__initializer, + [191566] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149820] = 2, + [191576] = 4, + ACTIONS(4123), 1, + anon_sym_extends, + ACTIONS(9874), 1, + anon_sym_AMP, + ACTIONS(9876), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5026), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [149832] = 4, - ACTIONS(7250), 1, - anon_sym_COLON, - ACTIONS(7777), 1, - anon_sym_EQ_GT, + [191590] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5257), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149848] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4765), 1, - sym__initializer, + ACTIONS(9825), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149864] = 5, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - ACTIONS(7780), 1, - sym_identifier, + [191610] = 4, + ACTIONS(9878), 1, + anon_sym_COMMA, + ACTIONS(9881), 1, + anon_sym_RBRACE, + STATE(5936), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5760), 2, - sym__module_export_name, - sym_string, - [149882] = 2, + [191624] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2630), 5, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149894] = 2, + [191634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2634), 5, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149906] = 2, + [191644] = 4, + ACTIONS(3182), 1, + anon_sym_GT, + ACTIONS(9883), 1, + anon_sym_COMMA, + STATE(5398), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2638), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149918] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4771), 1, - sym__initializer, + [191658] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149934] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4772), 1, - sym__initializer, + [191668] = 4, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_SQUOTE, + STATE(7151), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191682] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149950] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4773), 1, - sym__initializer, + [191692] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(5159), 1, + anon_sym_RPAREN, + STATE(5967), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, - sym__automatic_semicolon, + [191706] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - anon_sym_SEMI, - [149966] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4503), 1, - sym__initializer, + ACTIONS(5159), 1, + anon_sym_RPAREN, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + [191720] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149982] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4790), 1, - sym__initializer, + [191730] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9825), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149998] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4797), 1, - sym__initializer, + [191740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150014] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4799), 1, - sym__initializer, + [191750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150030] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4804), 1, - sym__initializer, + [191760] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(8028), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [191770] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150046] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4505), 1, - sym__initializer, + [191780] = 4, + ACTIONS(9885), 1, + sym_identifier, + STATE(4302), 1, + sym_decorator_member_expression, + STATE(7238), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191794] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9825), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150062] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4843), 1, - sym__initializer, + [191804] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150078] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4844), 1, - sym__initializer, + [191814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150094] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4845), 1, - sym__initializer, + [191824] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9835), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150110] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4848), 1, - sym__initializer, + [191834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150126] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4662), 1, - sym__initializer, + [191844] = 4, + ACTIONS(3509), 1, + anon_sym_LPAREN, + ACTIONS(9508), 1, + anon_sym_DOT, + STATE(3363), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191858] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9889), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150142] = 2, + [191868] = 4, + ACTIONS(3540), 1, + anon_sym_COLON, + ACTIONS(9891), 1, + anon_sym_RPAREN, + STATE(7143), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2694), 5, + [191882] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9893), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150154] = 2, + [191892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2694), 5, + ACTIONS(9889), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150166] = 2, + [191902] = 4, + ACTIONS(2946), 1, + anon_sym_RBRACK, + ACTIONS(9895), 1, + anon_sym_COMMA, + STATE(6022), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2694), 5, + [191916] = 4, + ACTIONS(9275), 1, + sym_identifier, + ACTIONS(9277), 1, + anon_sym_const, + STATE(5926), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [191930] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9897), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150178] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4697), 1, - sym__initializer, + [191940] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9897), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150194] = 4, - ACTIONS(1813), 1, - anon_sym_DOT, - ACTIONS(4453), 1, - anon_sym_LBRACE, + [191950] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 3, + ACTIONS(9899), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [150210] = 4, - ACTIONS(1839), 1, - anon_sym_DOT, - ACTIONS(4453), 1, - anon_sym_LBRACE, + anon_sym_SEMI, + [191960] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(9901), 1, + anon_sym_RPAREN, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 3, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [150226] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4516), 1, - sym__initializer, + [191974] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7496), 3, + ACTIONS(9903), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150242] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5262), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [191984] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150262] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4849), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7476), 3, + ACTIONS(9887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150278] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5265), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + [191994] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150298] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4517), 1, - sym__initializer, + ACTIONS(9887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192004] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9905), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150314] = 5, - ACTIONS(7782), 1, - anon_sym_SEMI, - ACTIONS(7784), 1, - sym__automatic_semicolon, - STATE(5289), 1, - sym_import_attribute, + [192014] = 4, + ACTIONS(2282), 1, + anon_sym_LBRACE, + ACTIONS(9907), 1, + sym_identifier, + STATE(5306), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7716), 2, - anon_sym_with, - anon_sym_assert, - [150332] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4885), 1, - sym__initializer, + [192028] = 4, + ACTIONS(9236), 1, + anon_sym_from, + ACTIONS(9477), 1, + anon_sym_as, + STATE(6315), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + [192042] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9827), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150348] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4931), 1, - sym__initializer, + [192052] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9905), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150364] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4519), 1, - sym__initializer, + [192062] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 3, + ACTIONS(9909), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150380] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4945), 1, - sym__initializer, + [192072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9905), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150396] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4954), 1, - sym__initializer, + [192082] = 4, + ACTIONS(9911), 1, + anon_sym_LPAREN, + ACTIONS(9913), 1, + anon_sym_await, + STATE(32), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [192096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9915), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150412] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4956), 1, - sym__initializer, + [192106] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9915), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150428] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4960), 1, - sym__initializer, + [192116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, + ACTIONS(9917), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150444] = 6, - ACTIONS(3879), 1, - anon_sym_COLON, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(5186), 1, + [192126] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - ACTIONS(7786), 1, - anon_sym_RBRACE, - STATE(4823), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(9919), 1, + anon_sym_RPAREN, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150464] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(4998), 1, - sym__initializer, + [192140] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(5155), 1, + anon_sym_RPAREN, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, - sym__automatic_semicolon, + [192154] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - anon_sym_SEMI, - [150480] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5015), 1, - sym__initializer, + ACTIONS(5155), 1, + anon_sym_RPAREN, + STATE(5982), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [192168] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7525), 3, + ACTIONS(9921), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150496] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5017), 1, - sym__initializer, + [192178] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(9923), 1, + anon_sym_RPAREN, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, - sym__automatic_semicolon, + [192192] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - anon_sym_SEMI, - [150512] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5018), 1, - sym__initializer, + ACTIONS(5143), 1, + anon_sym_RPAREN, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, - sym__automatic_semicolon, + [192206] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - anon_sym_SEMI, - [150528] = 4, - ACTIONS(6420), 1, - anon_sym_EQ, - STATE(5019), 1, - sym__initializer, + ACTIONS(5143), 1, + anon_sym_RPAREN, + STATE(5986), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7476), 3, - sym__automatic_semicolon, + [192220] = 4, + ACTIONS(3200), 1, + anon_sym_GT, + ACTIONS(9925), 1, anon_sym_COMMA, - anon_sym_SEMI, - [150544] = 6, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3796), 1, - sym_formal_parameters, - STATE(5133), 1, - sym__call_signature, - STATE(5437), 1, - sym_type_parameters, + STATE(5398), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150564] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5191), 1, - sym_type_parameters, - STATE(5618), 1, - sym_formal_parameters, + [192234] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150581] = 5, - ACTIONS(7131), 1, + ACTIONS(9927), 3, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(7788), 1, + anon_sym_implements, + [192244] = 3, + ACTIONS(4463), 1, anon_sym_LBRACE, - ACTIONS(7790), 1, - anon_sym_LBRACE_PIPE, - STATE(4375), 1, - aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150598] = 5, - ACTIONS(7131), 1, + ACTIONS(4465), 2, anon_sym_COMMA, - ACTIONS(7788), 1, - anon_sym_LBRACE, - ACTIONS(7790), 1, anon_sym_LBRACE_PIPE, - STATE(4375), 1, - aux_sym_extends_type_clause_repeat1, + [192256] = 3, + ACTIONS(4433), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150615] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7792), 1, - anon_sym_DQUOTE, - STATE(4360), 1, - aux_sym_string_repeat1, - ACTIONS(7794), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150632] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7796), 1, - anon_sym_export, - STATE(1267), 1, - sym_decorator, - STATE(3847), 1, - aux_sym_export_statement_repeat1, + ACTIONS(4435), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [192268] = 4, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(9929), 1, + anon_sym_RPAREN, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150649] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [192282] = 4, + ACTIONS(2944), 1, + anon_sym_RBRACK, + ACTIONS(9931), 1, + anon_sym_COMMA, + STATE(6022), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7792), 1, - anon_sym_SQUOTE, - STATE(4361), 1, - aux_sym_string_repeat2, - ACTIONS(7798), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150666] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [192296] = 4, + ACTIONS(9933), 1, + sym_identifier, + ACTIONS(9935), 1, + anon_sym_LBRACK, + ACTIONS(9937), 1, + sym_private_property_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7800), 1, - anon_sym_DQUOTE, - STATE(4456), 1, - aux_sym_string_repeat1, - ACTIONS(7802), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150683] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [192310] = 4, + ACTIONS(9939), 1, + sym_identifier, + ACTIONS(9941), 1, + anon_sym_LBRACK, + ACTIONS(9943), 1, + sym_private_property_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7800), 1, - anon_sym_SQUOTE, - STATE(4458), 1, - aux_sym_string_repeat2, - ACTIONS(7804), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150700] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7806), 1, - anon_sym_COLON, + sym_comment, + [192324] = 4, + ACTIONS(9945), 1, + sym_identifier, + ACTIONS(9947), 1, + anon_sym_LBRACK, + ACTIONS(9949), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150717] = 2, + [192338] = 4, + ACTIONS(9951), 1, + sym_identifier, + ACTIONS(9953), 1, + anon_sym_LBRACK, + ACTIONS(9955), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6037), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [192352] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - anon_sym_SEMI, - [150728] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, - ACTIONS(7808), 1, - anon_sym_QMARK, + ACTIONS(5125), 1, + anon_sym_RPAREN, + STATE(5924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150745] = 4, - ACTIONS(7810), 1, + [192366] = 4, + ACTIONS(1978), 1, anon_sym_COMMA, - STATE(4365), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(5125), 1, + anon_sym_RPAREN, + STATE(5993), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7390), 2, - anon_sym_LBRACE, + [192380] = 4, + ACTIONS(3204), 1, anon_sym_GT, - [150760] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7813), 1, - anon_sym_RBRACK, + ACTIONS(9957), 1, + anon_sym_COMMA, + STATE(5398), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150777] = 5, + [192394] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7815), 1, - anon_sym_DQUOTE, - STATE(4394), 1, - aux_sym_string_repeat1, - ACTIONS(7817), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150794] = 5, - ACTIONS(7819), 1, - sym_identifier, - ACTIONS(7821), 1, - anon_sym_const, - ACTIONS(7823), 1, - anon_sym_GT, - STATE(5110), 1, - sym_type_parameter, + ACTIONS(9502), 1, + sym__glimmer_template_content, + ACTIONS(9959), 1, + sym_glimmer_closing_tag, + STATE(5587), 1, + aux_sym_glimmer_template_repeat1, + [192410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150811] = 5, - ACTIONS(6556), 1, + ACTIONS(9961), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [192420] = 4, + ACTIONS(7700), 1, anon_sym_AMP, - ACTIONS(6572), 1, + ACTIONS(7764), 1, anon_sym_PIPE, - ACTIONS(6574), 1, + ACTIONS(7766), 1, anon_sym_extends, - ACTIONS(7825), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150828] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7815), 1, - anon_sym_SQUOTE, - STATE(4399), 1, - aux_sym_string_repeat2, - ACTIONS(7827), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7829), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [150856] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7831), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3847), 1, - aux_sym_export_statement_repeat1, + [192434] = 4, + ACTIONS(1781), 1, + anon_sym_COMMA, + ACTIONS(9283), 1, + anon_sym_RBRACK, + STATE(5586), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150873] = 4, - ACTIONS(4783), 1, + [192448] = 4, + ACTIONS(9963), 1, anon_sym_COMMA, - STATE(4457), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(9965), 1, + anon_sym_RBRACK, + STATE(5994), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7693), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [150888] = 5, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(6028), 1, - anon_sym_LT, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, + [192462] = 5, + ACTIONS(3), 1, sym_comment, - [150905] = 5, - ACTIONS(7833), 1, - anon_sym_LBRACE, - ACTIONS(7835), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9967), 1, + sym__glimmer_template_content, + ACTIONS(9969), 1, + sym_glimmer_closing_tag, + STATE(6002), 1, + aux_sym_glimmer_template_repeat1, + [192478] = 4, + ACTIONS(5076), 1, anon_sym_COMMA, - ACTIONS(7838), 1, - anon_sym_LBRACE_PIPE, - STATE(4375), 1, - aux_sym_extends_type_clause_repeat1, + ACTIONS(5093), 1, + anon_sym_RBRACK, + STATE(5585), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150922] = 4, - ACTIONS(7551), 1, - anon_sym_EQ, - STATE(5115), 1, - sym__initializer, + [192492] = 4, + ACTIONS(5076), 1, + anon_sym_COMMA, + ACTIONS(5093), 1, + anon_sym_RBRACK, + STATE(5893), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7840), 2, + [192506] = 4, + ACTIONS(9971), 1, anon_sym_COMMA, + ACTIONS(9973), 1, anon_sym_RBRACE, - [150937] = 5, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(7842), 1, - anon_sym_LT, - STATE(1598), 1, - sym_arguments, - STATE(1599), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150954] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5132), 1, - sym_type_parameters, - STATE(5565), 1, - sym_formal_parameters, + STATE(6015), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150971] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5324), 1, - sym_type_parameters, - STATE(5523), 1, - sym_formal_parameters, + [192520] = 4, + ACTIONS(9975), 1, + anon_sym_COMMA, + ACTIONS(9977), 1, + anon_sym_RBRACE, + STATE(6015), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150988] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7844), 1, - anon_sym_DQUOTE, - STATE(4403), 1, - aux_sym_string_repeat1, - ACTIONS(7846), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151005] = 4, - ACTIONS(7850), 1, + [192534] = 4, + ACTIONS(4553), 1, anon_sym_COMMA, - STATE(4482), 1, - aux_sym_extends_clause_repeat1, + ACTIONS(9979), 1, + anon_sym_RBRACE, + STATE(5536), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7848), 2, - anon_sym_LBRACE, - anon_sym_implements, - [151020] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7852), 1, - anon_sym_RPAREN, + [192548] = 4, + ACTIONS(1781), 1, + anon_sym_COMMA, + ACTIONS(9283), 1, + anon_sym_RBRACK, + STATE(5892), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151037] = 5, - ACTIONS(7131), 1, + [192562] = 4, + ACTIONS(4553), 1, anon_sym_COMMA, - ACTIONS(7260), 1, - anon_sym_LBRACE, - ACTIONS(7262), 1, - anon_sym_LBRACE_PIPE, - STATE(4356), 1, - aux_sym_extends_type_clause_repeat1, + ACTIONS(9979), 1, + anon_sym_RBRACE, + STATE(5901), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151054] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5315), 1, - sym_type_parameters, - STATE(5495), 1, - sym_formal_parameters, + [192576] = 4, + ACTIONS(9981), 1, + anon_sym_COMMA, + ACTIONS(9984), 1, + anon_sym_RBRACE, + STATE(6015), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151071] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7854), 1, - anon_sym_SQUOTE, - STATE(4458), 1, - aux_sym_string_repeat2, - ACTIONS(7804), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151088] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7856), 1, - anon_sym_RBRACK, + [192590] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151105] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7858), 1, - anon_sym_RBRACK, + ACTIONS(9986), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [192600] = 4, + ACTIONS(5219), 1, + anon_sym_COMMA, + ACTIONS(9451), 1, + anon_sym_RBRACE, + STATE(5903), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151122] = 5, - ACTIONS(7819), 1, + [192614] = 4, + ACTIONS(9275), 1, sym_identifier, - ACTIONS(7821), 1, + ACTIONS(9277), 1, anon_sym_const, - ACTIONS(7860), 1, - anon_sym_GT, - STATE(5110), 1, + STATE(6688), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151139] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7862), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151156] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7864), 1, - anon_sym_RBRACK, + [192628] = 4, + ACTIONS(9988), 1, + anon_sym_COMMA, + ACTIONS(9990), 1, + anon_sym_RPAREN, + STATE(5895), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151173] = 4, - ACTIONS(7866), 1, - anon_sym_COMMA, - STATE(4429), 1, - aux_sym_variable_declaration_repeat1, + [192642] = 3, + ACTIONS(9062), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7868), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151188] = 2, + ACTIONS(9064), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [192654] = 4, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(9992), 1, + anon_sym_DOT, + STATE(3715), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7870), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [151199] = 5, - ACTIONS(3), 1, + [192668] = 4, + ACTIONS(9994), 1, + anon_sym_COMMA, + ACTIONS(9997), 1, + anon_sym_RBRACK, + STATE(6022), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [192682] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6695), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7872), 1, - anon_sym_DQUOTE, - STATE(4430), 1, - aux_sym_string_repeat1, - ACTIONS(7874), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151216] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [192693] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2929), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7876), 1, - anon_sym_DQUOTE, - STATE(4456), 1, - aux_sym_string_repeat1, - ACTIONS(7802), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151233] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, + sym_comment, + [192704] = 3, + ACTIONS(9999), 1, anon_sym_LPAREN, - STATE(5136), 1, - sym_type_parameters, - STATE(5668), 1, - sym_formal_parameters, + STATE(33), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151250] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7878), 1, - anon_sym_RBRACK, + [192715] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2731), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151267] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7880), 1, - anon_sym_COLON, + [192726] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2730), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151284] = 5, - ACTIONS(7882), 1, - sym_identifier, - STATE(3748), 1, - sym_nested_type_identifier, - STATE(4383), 1, - sym_generic_type, - STATE(5585), 1, - sym_nested_identifier, + [192737] = 3, + ACTIONS(7750), 1, + anon_sym_LBRACE, + STATE(880), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151301] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [192748] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2729), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7876), 1, - anon_sym_SQUOTE, - STATE(4458), 1, - aux_sym_string_repeat2, - ACTIONS(7804), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151318] = 5, - ACTIONS(4515), 1, + sym_comment, + [192759] = 3, + ACTIONS(9999), 1, anon_sym_LPAREN, - ACTIONS(7884), 1, - anon_sym_LT, - STATE(2059), 1, - sym_arguments, - STATE(2064), 1, - sym_type_arguments, + STATE(34), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151335] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7886), 1, - anon_sym_RPAREN, + [192770] = 3, + ACTIONS(9999), 1, + anon_sym_LPAREN, + STATE(6194), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151352] = 5, - ACTIONS(1889), 1, - anon_sym_COMMA, - ACTIONS(7888), 1, - anon_sym_EQ, - ACTIONS(7890), 1, - anon_sym_RBRACK, - STATE(4930), 1, - aux_sym_array_pattern_repeat1, + [192781] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2728), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151369] = 5, - ACTIONS(3), 1, + [192792] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(10001), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [192801] = 3, + ACTIONS(9999), 1, + anon_sym_LPAREN, + STATE(40), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7892), 1, - anon_sym_DQUOTE, - STATE(4456), 1, - aux_sym_string_repeat1, - ACTIONS(7802), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151386] = 3, - ACTIONS(7894), 1, - anon_sym_EQ, + sym_comment, + [192812] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 3, + ACTIONS(9997), 2, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RBRACK, - [151399] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [192821] = 3, + ACTIONS(7750), 1, + anon_sym_LBRACE, + STATE(820), 1, + sym_class_body, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7892), 1, - anon_sym_SQUOTE, - STATE(4458), 1, - aux_sym_string_repeat2, - ACTIONS(7804), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151416] = 4, - ACTIONS(7141), 1, - anon_sym_EQ, - STATE(5259), 1, - sym__initializer, + sym_comment, + [192832] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(719), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7897), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [151431] = 4, - ACTIONS(7866), 1, - anon_sym_COMMA, - STATE(4429), 1, - aux_sym_variable_declaration_repeat1, + [192843] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7899), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151446] = 4, - ACTIONS(821), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, + ACTIONS(6223), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [192852] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2727), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1647), 2, - sym_template_string, - sym_arguments, - [151461] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, + [192863] = 3, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(5353), 1, - sym_type_parameters, - STATE(5519), 1, + STATE(7255), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151478] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, + [192874] = 3, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(5365), 1, - sym_type_parameters, - STATE(5446), 1, + STATE(5229), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151495] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [192885] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6349), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7901), 1, - anon_sym_DQUOTE, - STATE(4416), 1, - aux_sym_string_repeat1, - ACTIONS(7903), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151512] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7901), 1, - anon_sym_SQUOTE, - STATE(4417), 1, - aux_sym_string_repeat2, - ACTIONS(7905), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151529] = 4, - ACTIONS(6584), 1, - anon_sym_EQ, - STATE(5251), 1, - sym_default_type, + [192896] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7907), 2, + ACTIONS(10003), 2, anon_sym_COMMA, - anon_sym_GT, - [151544] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7909), 1, anon_sym_RBRACK, + [192905] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151561] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7911), 1, - anon_sym_RBRACK, + ACTIONS(6227), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [192914] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2726), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151578] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7913), 1, - anon_sym_DQUOTE, - STATE(4456), 1, - aux_sym_string_repeat1, - ACTIONS(7802), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151595] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7913), 1, - anon_sym_SQUOTE, - STATE(4458), 1, - aux_sym_string_repeat2, - ACTIONS(7804), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151612] = 5, - ACTIONS(3481), 1, - anon_sym_LPAREN, - ACTIONS(6318), 1, - anon_sym_LT, - STATE(3056), 1, - sym_arguments, - STATE(3237), 1, - sym_type_arguments, + [192925] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2725), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151629] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7915), 1, - anon_sym_RPAREN, + [192936] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6351), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151646] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7917), 1, - anon_sym_RPAREN, + [192947] = 3, + ACTIONS(7373), 1, + anon_sym_LPAREN, + STATE(3898), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151663] = 5, - ACTIONS(6328), 1, + [192958] = 3, + ACTIONS(7383), 1, anon_sym_LPAREN, - ACTIONS(6334), 1, - anon_sym_LT, - STATE(3196), 1, - sym_arguments, - STATE(3454), 1, - sym_type_arguments, + STATE(7229), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151680] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, + [192969] = 3, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(5363), 1, - sym_type_parameters, - STATE(5641), 1, + STATE(5190), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151697] = 3, - ACTIONS(6065), 1, - anon_sym_EQ_GT, + [192980] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6357), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [151710] = 4, - ACTIONS(6296), 1, - anon_sym_STAR, - ACTIONS(6300), 1, + [192991] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, + STATE(2724), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5786), 2, - sym_namespace_import, - sym_named_imports, - [151725] = 4, - ACTIONS(7919), 1, - anon_sym_EQ, - STATE(5159), 1, - sym__initializer, + [193002] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6711), 2, - anon_sym_in, - anon_sym_of, - [151740] = 5, - ACTIONS(7131), 1, + ACTIONS(10005), 2, anon_sym_COMMA, - ACTIONS(7921), 1, - anon_sym_LBRACE, - ACTIONS(7923), 1, - anon_sym_LBRACE_PIPE, - STATE(4375), 1, - aux_sym_extends_type_clause_repeat1, + anon_sym_GT, + [193011] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151757] = 4, - ACTIONS(3879), 1, - anon_sym_COLON, - ACTIONS(4215), 1, - anon_sym_EQ, + ACTIONS(10007), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193020] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7925), 2, + ACTIONS(6249), 2, anon_sym_COMMA, anon_sym_RBRACE, - [151772] = 4, - ACTIONS(7866), 1, - anon_sym_COMMA, - STATE(4468), 1, - aux_sym_variable_declaration_repeat1, + [193029] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6359), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7927), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151787] = 4, - ACTIONS(7929), 1, - anon_sym_COMMA, - STATE(4429), 1, - aux_sym_variable_declaration_repeat1, + [193040] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2723), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7932), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151802] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7854), 1, - anon_sym_DQUOTE, - STATE(4456), 1, - aux_sym_string_repeat1, - ACTIONS(7802), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151819] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, - ACTIONS(7934), 1, - anon_sym_QMARK, + [193051] = 3, + ACTIONS(7808), 1, + anon_sym_LBRACE, + STATE(209), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151836] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, + [193062] = 3, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(5193), 1, - sym_type_parameters, - STATE(5449), 1, + STATE(7211), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151853] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7936), 1, - anon_sym_RBRACK, + [193073] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151870] = 3, - ACTIONS(7938), 1, - anon_sym_EQ_GT, + ACTIONS(6249), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193082] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2722), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3879), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [151883] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7940), 1, - anon_sym_COLON, + [193093] = 3, + ACTIONS(7750), 1, + anon_sym_LBRACE, + STATE(897), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151900] = 4, - ACTIONS(6584), 1, - anon_sym_EQ, - STATE(5420), 1, - sym_default_type, + [193104] = 3, + ACTIONS(10009), 1, + sym_identifier, + ACTIONS(10011), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7942), 2, - anon_sym_COMMA, - anon_sym_GT, - [151915] = 4, - ACTIONS(7944), 1, - anon_sym_from, - STATE(5424), 1, - sym__from_clause, + [193115] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4955), 2, + ACTIONS(10013), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151930] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5423), 1, - sym_type_parameters, - STATE(5774), 1, - sym_formal_parameters, + [193124] = 3, + ACTIONS(10015), 1, + sym_identifier, + ACTIONS(10017), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151947] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7946), 1, - anon_sym_COLON, + [193135] = 3, + ACTIONS(10019), 1, + sym_identifier, + ACTIONS(10021), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151964] = 4, - ACTIONS(7866), 1, - anon_sym_COMMA, - STATE(4469), 1, - aux_sym_variable_declaration_repeat1, + [193146] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6405), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7948), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151979] = 4, - ACTIONS(7944), 1, - anon_sym_from, - STATE(5385), 1, - sym__from_clause, + [193157] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2721), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7950), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151994] = 4, - ACTIONS(7141), 1, - anon_sym_EQ, - STATE(5440), 1, - sym__initializer, + [193168] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7952), 2, + ACTIONS(6249), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [152009] = 5, - ACTIONS(7819), 1, - sym_identifier, - ACTIONS(7821), 1, - anon_sym_const, - ACTIONS(7954), 1, - anon_sym_GT, - STATE(5110), 1, - sym_type_parameter, + anon_sym_RBRACE, + [193177] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2718), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152026] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7956), 1, - anon_sym_DQUOTE, - STATE(4447), 1, - aux_sym_string_repeat1, - ACTIONS(7958), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152043] = 3, - ACTIONS(7960), 1, - sym_escape_sequence, + [193188] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7962), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152056] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(6245), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193197] = 3, + ACTIONS(7982), 1, + anon_sym_LBRACE, + STATE(762), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7956), 1, - anon_sym_SQUOTE, - STATE(4448), 1, - aux_sym_string_repeat2, - ACTIONS(7965), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152073] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [193208] = 3, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(759), 1, + sym_class_body, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7967), 1, - anon_sym_DQUOTE, - STATE(4456), 1, - aux_sym_string_repeat1, - ACTIONS(7802), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152090] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [193219] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6361), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7967), 1, - anon_sym_SQUOTE, - STATE(4458), 1, - aux_sym_string_repeat2, - ACTIONS(7804), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152107] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5226), 1, - sym_type_parameters, - STATE(5708), 1, - sym_formal_parameters, + sym_comment, + [193230] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152124] = 4, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4515), 1, - anon_sym_LPAREN, + ACTIONS(6249), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193239] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6365), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2170), 2, - sym_template_string, - sym_arguments, - [152139] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7969), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3847), 1, - aux_sym_export_statement_repeat1, + [193250] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6367), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152156] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5227), 1, - sym_type_parameters, - STATE(5536), 1, - sym_formal_parameters, + [193261] = 3, + ACTIONS(9951), 1, + sym_identifier, + ACTIONS(9955), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152173] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3523), 1, - sym_formal_parameters, - STATE(5176), 1, - sym_type_parameters, + [193272] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152190] = 5, - ACTIONS(6643), 1, - anon_sym_LPAREN, - ACTIONS(6645), 1, - anon_sym_LT, - STATE(2894), 1, - sym_arguments, - STATE(2980), 1, - sym_type_arguments, + ACTIONS(6273), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193281] = 3, + ACTIONS(10023), 1, + sym_identifier, + ACTIONS(10025), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152207] = 5, - ACTIONS(3), 1, + [193292] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6038), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [193303] = 3, + ACTIONS(10027), 1, + sym_identifier, + ACTIONS(10029), 1, + sym_private_property_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7844), 1, - anon_sym_SQUOTE, - STATE(4405), 1, - aux_sym_string_repeat2, - ACTIONS(7971), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152224] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [193314] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7973), 1, - anon_sym_DQUOTE, - STATE(4456), 1, - aux_sym_string_repeat1, - ACTIONS(7975), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152241] = 4, - ACTIONS(7978), 1, + sym_comment, + ACTIONS(6269), 2, anon_sym_COMMA, - STATE(4457), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_RBRACE, + [193323] = 3, + ACTIONS(10031), 1, + sym_identifier, + ACTIONS(10033), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4821), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152256] = 5, - ACTIONS(3), 1, + [193334] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2717), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [193345] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6369), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7981), 1, - anon_sym_SQUOTE, - STATE(4458), 1, - aux_sym_string_repeat2, - ACTIONS(7983), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152273] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7986), 1, - anon_sym_RBRACK, + sym_comment, + [193356] = 3, + ACTIONS(10035), 1, + sym_identifier, + ACTIONS(10037), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152290] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(7988), 1, - anon_sym_COLON, + [193367] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6370), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152307] = 5, - ACTIONS(3), 1, + [193378] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6044), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [193389] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2716), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7872), 1, - anon_sym_SQUOTE, - STATE(4385), 1, - aux_sym_string_repeat2, - ACTIONS(7990), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152324] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [193400] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2715), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7992), 1, - anon_sym_DQUOTE, - STATE(4464), 1, - aux_sym_string_repeat1, - ACTIONS(7994), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152341] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [193411] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2714), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7992), 1, - anon_sym_SQUOTE, - STATE(4467), 1, - aux_sym_string_repeat2, - ACTIONS(7996), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152358] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [193422] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7998), 1, - anon_sym_DQUOTE, - STATE(4456), 1, - aux_sym_string_repeat1, - ACTIONS(7802), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152375] = 3, - ACTIONS(7671), 1, + sym_comment, + ACTIONS(6249), 2, + anon_sym_COMMA, anon_sym_RBRACE, + [193431] = 3, + ACTIONS(7656), 1, + anon_sym_LBRACE, + STATE(1731), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [152388] = 5, - ACTIONS(7819), 1, - sym_identifier, - ACTIONS(7821), 1, - anon_sym_const, - ACTIONS(8000), 1, - anon_sym_GT, - STATE(5110), 1, - sym_type_parameter, + [193442] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2713), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152405] = 5, - ACTIONS(3), 1, + [193453] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2712), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [193464] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6372), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7998), 1, - anon_sym_SQUOTE, - STATE(4458), 1, - aux_sym_string_repeat2, - ACTIONS(7804), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152422] = 4, - ACTIONS(7866), 1, - anon_sym_COMMA, - STATE(4429), 1, - aux_sym_variable_declaration_repeat1, + sym_comment, + [193475] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2711), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8002), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152437] = 4, - ACTIONS(7866), 1, - anon_sym_COMMA, - STATE(4429), 1, - aux_sym_variable_declaration_repeat1, + [193486] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8004), 2, + ACTIONS(4725), 2, sym__automatic_semicolon, anon_sym_SEMI, - [152452] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(8006), 1, - anon_sym_RBRACK, + [193495] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2710), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152469] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, - ACTIONS(8008), 1, - anon_sym_QMARK, + [193506] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2709), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152486] = 4, - ACTIONS(7866), 1, - anon_sym_COMMA, - STATE(4391), 1, - aux_sym_variable_declaration_repeat1, + [193517] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4297), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8010), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152501] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, - ACTIONS(8012), 1, - anon_sym_QMARK, + [193528] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2708), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152518] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(8014), 1, - anon_sym_COLON, + [193539] = 3, + ACTIONS(4363), 1, + anon_sym_LBRACE, + STATE(1686), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152535] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(8016), 1, - anon_sym_RBRACK, + [193550] = 3, + ACTIONS(7656), 1, + anon_sym_LBRACE, + STATE(1652), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152552] = 4, - ACTIONS(7944), 1, + [193561] = 3, + ACTIONS(10039), 1, + sym_identifier, + ACTIONS(10041), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [193572] = 3, + ACTIONS(9236), 1, anon_sym_from, - STATE(5170), 1, + STATE(6730), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8018), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152567] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, - ACTIONS(8020), 1, - anon_sym_QMARK, + [193583] = 3, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(5053), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152584] = 5, - ACTIONS(1889), 1, - anon_sym_COMMA, - ACTIONS(7888), 1, - anon_sym_EQ, - ACTIONS(8022), 1, - anon_sym_RBRACK, - STATE(4596), 1, - aux_sym_array_pattern_repeat1, + [193594] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2700), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [193605] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6377), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152601] = 2, + [193616] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2699), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8024), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [152612] = 4, - ACTIONS(8028), 1, - anon_sym_COMMA, - STATE(4480), 1, - aux_sym_extends_clause_repeat1, + [193627] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2698), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8026), 2, + [193638] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - anon_sym_implements, - [152627] = 4, - ACTIONS(7866), 1, - anon_sym_COMMA, - STATE(4407), 1, - aux_sym_variable_declaration_repeat1, + STATE(2697), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8031), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152642] = 4, - ACTIONS(7850), 1, - anon_sym_COMMA, - STATE(4480), 1, - aux_sym_extends_clause_repeat1, + [193649] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2696), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8033), 2, + [193660] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - anon_sym_implements, - [152657] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5432), 1, - sym_type_parameters, - STATE(5614), 1, - sym_formal_parameters, + STATE(2695), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152674] = 4, - ACTIONS(7944), 1, - anon_sym_from, - STATE(5277), 1, - sym__from_clause, + [193671] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2694), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4886), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152689] = 5, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5435), 1, - sym_type_parameters, - STATE(5635), 1, - sym_formal_parameters, + [193682] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2693), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152706] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, - ACTIONS(8035), 1, - anon_sym_QMARK, + [193693] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2692), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152723] = 5, - ACTIONS(8037), 1, - sym_identifier, - STATE(4161), 1, - sym_nested_type_identifier, - STATE(4779), 1, - sym_generic_type, - STATE(5585), 1, - sym_nested_identifier, + [193704] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2691), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152740] = 5, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, - ACTIONS(8039), 1, - anon_sym_QMARK, + [193715] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2690), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152757] = 5, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, - ACTIONS(8041), 1, - anon_sym_RPAREN, + [193726] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6379), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152774] = 2, + [193737] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6381), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152784] = 2, + [193748] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6384), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152794] = 2, + [193759] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(6249), 2, anon_sym_COMMA, - anon_sym_SEMI, - [152804] = 2, + anon_sym_RBRACE, + [193768] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6385), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152814] = 2, + [193779] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2689), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152824] = 2, + [193790] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, + ACTIONS(6313), 2, anon_sym_COMMA, - anon_sym_SEMI, - [152834] = 2, + anon_sym_RBRACE, + [193799] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7071), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8049), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152844] = 2, + [193810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(6249), 2, anon_sym_COMMA, - anon_sym_SEMI, - [152854] = 2, + anon_sym_RBRACE, + [193819] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6389), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152864] = 2, + [193830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(6249), 2, anon_sym_COMMA, - anon_sym_SEMI, - [152874] = 4, - ACTIONS(7268), 1, + anon_sym_RBRACE, + [193839] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6245), 2, anon_sym_COMMA, - ACTIONS(8051), 1, + anon_sym_RBRACE, + [193848] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(4365), 1, - aux_sym_implements_clause_repeat1, + STATE(6391), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152888] = 2, + [193859] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(6297), 2, anon_sym_COMMA, - anon_sym_SEMI, - [152898] = 4, - ACTIONS(5129), 1, - anon_sym_extends, - ACTIONS(8053), 1, - anon_sym_AMP, - ACTIONS(8055), 1, - anon_sym_PIPE, + anon_sym_RBRACE, + [193868] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152912] = 2, + ACTIONS(6211), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193877] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [152922] = 2, + anon_sym_RBRACE, + [193886] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6397), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152932] = 2, + [193897] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(6245), 2, anon_sym_COMMA, - anon_sym_SEMI, - [152942] = 3, - ACTIONS(8059), 1, + anon_sym_RBRACE, + [193906] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, + STATE(6439), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7606), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [152954] = 2, + [193917] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152964] = 4, - ACTIONS(8063), 1, + ACTIONS(6211), 2, anon_sym_COMMA, - ACTIONS(8065), 1, anon_sym_RBRACE, - STATE(4780), 1, - aux_sym_enum_body_repeat1, + [193926] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6407), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152978] = 2, + [193937] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6409), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152988] = 4, + [193948] = 3, ACTIONS(2476), 1, anon_sym_LBRACE, - ACTIONS(8067), 1, - anon_sym_LPAREN, - STATE(772), 1, + STATE(6410), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153002] = 4, - ACTIONS(3200), 1, - anon_sym_GT, - ACTIONS(8069), 1, - anon_sym_COMMA, - STATE(4365), 1, - aux_sym_implements_clause_repeat1, + [193959] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153016] = 4, - ACTIONS(4031), 1, + ACTIONS(6249), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193968] = 3, + ACTIONS(3238), 1, anon_sym_LPAREN, - ACTIONS(8071), 1, - anon_sym_DOT, - STATE(1587), 1, - sym_arguments, + STATE(4048), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153030] = 4, - ACTIONS(8073), 1, - anon_sym_COMMA, - ACTIONS(8075), 1, - anon_sym_RBRACE, - STATE(4780), 1, - aux_sym_enum_body_repeat1, + [193979] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6411), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153044] = 2, + [193990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153054] = 4, - ACTIONS(1889), 1, + ACTIONS(6249), 2, anon_sym_COMMA, - ACTIONS(7890), 1, - anon_sym_RBRACK, - STATE(4930), 1, - aux_sym_array_pattern_repeat1, + anon_sym_RBRACE, + [193999] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6413), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153068] = 2, + [194010] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8049), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153078] = 2, + anon_sym_RBRACE, + [194019] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2688), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153088] = 4, - ACTIONS(5022), 1, - anon_sym_COMMA, - ACTIONS(5055), 1, - anon_sym_RBRACK, - STATE(4927), 1, - aux_sym_array_repeat1, + [194030] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6415), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153102] = 2, + [194041] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6417), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153112] = 4, - ACTIONS(7954), 1, - anon_sym_GT, - ACTIONS(8077), 1, - anon_sym_COMMA, - STATE(4777), 1, - aux_sym_type_parameters_repeat1, + [194052] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6418), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [194063] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153126] = 4, - ACTIONS(8079), 1, + ACTIONS(6249), 2, anon_sym_COMMA, - ACTIONS(8081), 1, - anon_sym_RBRACK, - STATE(4533), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [194072] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6419), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153140] = 2, + [194083] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, + ACTIONS(6249), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153150] = 4, - ACTIONS(4193), 1, - anon_sym_extends, - ACTIONS(8083), 1, - anon_sym_AMP, - ACTIONS(8085), 1, - anon_sym_PIPE, + anon_sym_RBRACE, + [194092] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6420), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153164] = 2, + [194103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153174] = 4, - ACTIONS(3198), 1, - anon_sym_GT, - ACTIONS(8087), 1, + ACTIONS(6249), 2, anon_sym_COMMA, - STATE(4365), 1, - aux_sym_implements_clause_repeat1, + anon_sym_RBRACE, + [194112] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153188] = 4, - ACTIONS(5022), 1, + ACTIONS(6245), 2, anon_sym_COMMA, - ACTIONS(5055), 1, - anon_sym_RBRACK, - STATE(4621), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [194121] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153202] = 4, - ACTIONS(1978), 1, + ACTIONS(6245), 2, anon_sym_COMMA, - ACTIONS(5059), 1, - anon_sym_RPAREN, - STATE(4535), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [194130] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153216] = 4, - ACTIONS(1978), 1, + ACTIONS(6245), 2, anon_sym_COMMA, - ACTIONS(5059), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [194139] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153230] = 2, + ACTIONS(6249), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [194148] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6423), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153240] = 4, - ACTIONS(1889), 1, - anon_sym_COMMA, - ACTIONS(7890), 1, - anon_sym_RBRACK, - STATE(4622), 1, - aux_sym_array_pattern_repeat1, + [194159] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6427), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153254] = 2, + [194170] = 3, + ACTIONS(1691), 1, + anon_sym_LBRACE, + STATE(229), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153264] = 2, + [194181] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6429), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153274] = 4, - ACTIONS(2956), 1, - anon_sym_RBRACK, - ACTIONS(8089), 1, - anon_sym_COMMA, - STATE(4959), 1, - aux_sym_tuple_type_repeat1, + [194192] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6430), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153288] = 2, + [194203] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8091), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [153298] = 4, - ACTIONS(1978), 1, + ACTIONS(6249), 2, anon_sym_COMMA, - ACTIONS(8093), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [194212] = 3, + ACTIONS(9236), 1, + anon_sym_from, + STATE(5095), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153312] = 2, + [194223] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8049), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153322] = 2, + anon_sym_RBRACE, + [194232] = 3, + ACTIONS(10043), 1, + anon_sym_COMMA, + ACTIONS(10045), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153332] = 2, + [194243] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153342] = 2, + anon_sym_RBRACE, + [194252] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6432), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5265), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [153352] = 2, + [194263] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153362] = 4, - ACTIONS(1033), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1613), 1, + anon_sym_RBRACE, + [194272] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(3878), 1, - sym_object_type, + STATE(7070), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153376] = 2, + [194283] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, + ACTIONS(6249), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153386] = 2, + anon_sym_RBRACE, + [194292] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6462), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8097), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153396] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8099), 1, - sym__glimmer_template_content, - ACTIONS(8101), 1, - sym_glimmer_closing_tag, - STATE(4626), 1, - aux_sym_glimmer_template_repeat1, - [153412] = 2, + [194303] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6400), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153422] = 2, + [194314] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6451), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8103), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [153432] = 2, + [194325] = 3, + ACTIONS(10047), 1, + sym_identifier, + ACTIONS(10049), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153442] = 2, + [194336] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6452), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153452] = 2, + [194347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8049), 3, - sym__automatic_semicolon, + ACTIONS(6281), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153462] = 2, + anon_sym_RBRACE, + [194356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, + ACTIONS(6249), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153472] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(5051), 1, - anon_sym_RPAREN, - STATE(4714), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [194365] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6459), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153486] = 2, + [194376] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6461), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153496] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(5051), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + [194387] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7068), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153510] = 2, + [194398] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6421), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8049), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153520] = 2, + [194409] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6468), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153530] = 2, + [194420] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6470), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153540] = 2, + [194431] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6471), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153550] = 3, - ACTIONS(8107), 1, - anon_sym_LBRACE, + [194442] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7698), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [153562] = 2, + ACTIONS(6249), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [194451] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6472), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153572] = 2, + [194462] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6515), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153582] = 2, + [194473] = 3, + ACTIONS(10051), 1, + anon_sym_LBRACE, + STATE(822), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8049), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153592] = 2, + [194484] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6473), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153602] = 3, - ACTIONS(7888), 1, - anon_sym_EQ, + [194495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8109), 2, + ACTIONS(6249), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [153614] = 2, + anon_sym_RBRACE, + [194504] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153624] = 4, - ACTIONS(5022), 1, + ACTIONS(6245), 2, anon_sym_COMMA, - ACTIONS(8113), 1, - anon_sym_RBRACK, - STATE(4621), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [194513] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6475), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153638] = 2, + [194524] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6480), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153648] = 2, + [194535] = 3, + ACTIONS(10053), 1, + anon_sym_LBRACE, + STATE(4814), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153658] = 4, - ACTIONS(6328), 1, + [194546] = 3, + ACTIONS(10055), 1, anon_sym_LPAREN, - ACTIONS(8115), 1, - anon_sym_DOT, - STATE(3278), 1, - sym_arguments, + STATE(54), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153672] = 4, - ACTIONS(8117), 1, - anon_sym_COMMA, - ACTIONS(8119), 1, - anon_sym_RBRACE, - STATE(4933), 1, - aux_sym_export_clause_repeat1, + [194557] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6486), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153686] = 3, - ACTIONS(8121), 1, + [194568] = 3, + ACTIONS(10057), 1, sym_identifier, + ACTIONS(10059), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8123), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [153698] = 2, + [194579] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6360), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153708] = 2, + [194590] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6488), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153718] = 2, + [194601] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6490), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153728] = 2, + [194612] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6491), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153738] = 2, + [194623] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153748] = 4, - ACTIONS(8127), 1, + ACTIONS(6249), 2, anon_sym_COMMA, - ACTIONS(8129), 1, - anon_sym_RBRACK, - STATE(4592), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [194632] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6492), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153762] = 2, + [194643] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8131), 3, - sym__automatic_semicolon, + ACTIONS(6249), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153772] = 4, - ACTIONS(6781), 1, - anon_sym_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE, - ACTIONS(6785), 1, - anon_sym_extends, + anon_sym_RBRACE, + [194652] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2687), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153786] = 4, - ACTIONS(3210), 1, - anon_sym_GT, - ACTIONS(8133), 1, - anon_sym_COMMA, - STATE(4365), 1, - aux_sym_implements_clause_repeat1, + [194663] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2686), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153800] = 2, + [194674] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6496), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153810] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(5119), 1, - anon_sym_RPAREN, - STATE(4594), 1, - aux_sym_array_repeat1, + [194685] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6498), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153824] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(5119), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + [194696] = 3, + ACTIONS(9999), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153838] = 2, + [194707] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6501), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8049), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153848] = 2, + [194718] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(6281), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153858] = 2, + anon_sym_RBRACE, + [194727] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6502), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153868] = 2, + [194738] = 3, + ACTIONS(9999), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153878] = 4, - ACTIONS(8135), 1, - sym_identifier, - ACTIONS(8137), 1, - anon_sym_LBRACK, - ACTIONS(8139), 1, - sym_private_property_identifier, + [194749] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7067), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153892] = 4, - ACTIONS(8141), 1, - sym_identifier, - ACTIONS(8143), 1, - anon_sym_LBRACK, - ACTIONS(8145), 1, - sym_private_property_identifier, + [194760] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153906] = 4, - ACTIONS(8147), 1, - sym_identifier, - ACTIONS(8149), 1, - anon_sym_LBRACK, - ACTIONS(8151), 1, - sym_private_property_identifier, + ACTIONS(6249), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [194769] = 3, + ACTIONS(9999), 1, + anon_sym_LPAREN, + STATE(53), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153920] = 4, - ACTIONS(8153), 1, - sym_identifier, - ACTIONS(8155), 1, - anon_sym_LBRACK, - ACTIONS(8157), 1, - sym_private_property_identifier, + [194780] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6466), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153934] = 2, + [194791] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153944] = 4, - ACTIONS(2944), 1, - anon_sym_RBRACK, - ACTIONS(8159), 1, + ACTIONS(6281), 2, anon_sym_COMMA, - STATE(4959), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153958] = 2, + anon_sym_RBRACE, + [194800] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153968] = 4, - ACTIONS(1978), 1, + ACTIONS(6211), 2, anon_sym_COMMA, - ACTIONS(8161), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [194809] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6509), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153982] = 2, + [194820] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, + ACTIONS(10061), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [153992] = 4, - ACTIONS(1889), 1, - anon_sym_COMMA, - ACTIONS(8165), 1, - anon_sym_RBRACK, - STATE(4622), 1, - aux_sym_array_pattern_repeat1, + [194829] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6511), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154006] = 2, + [194840] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2732), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154016] = 2, + [194851] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6513), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154026] = 2, + [194862] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6514), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8167), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154036] = 2, + [194873] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, + ACTIONS(6249), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154046] = 2, + anon_sym_RBRACE, + [194882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(4779), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [154056] = 2, + [194891] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(4819), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [154066] = 2, + [194900] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2684), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154076] = 2, + [194911] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8171), 3, - sym__automatic_semicolon, + ACTIONS(6249), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154086] = 2, + anon_sym_RBRACE, + [194920] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2682), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8171), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154096] = 2, + [194931] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8173), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154106] = 2, + anon_sym_RBRACE, + [194940] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6516), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154116] = 2, + [194951] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2681), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154126] = 2, + [194962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, + ACTIONS(6249), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154136] = 2, + anon_sym_RBRACE, + [194971] = 3, + ACTIONS(9236), 1, + anon_sym_from, + STATE(6328), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154146] = 2, + [194982] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2680), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154156] = 2, + [194993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, + ACTIONS(6245), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154166] = 2, + anon_sym_RBRACE, + [195002] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2679), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154176] = 2, + [195013] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154186] = 2, + anon_sym_RBRACE, + [195022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154196] = 2, + anon_sym_RBRACE, + [195031] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2678), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154206] = 2, + [195042] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(774), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154216] = 2, + [195053] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7115), 3, + ACTIONS(6211), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [195062] = 3, + ACTIONS(7630), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [154226] = 2, + STATE(2273), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154236] = 2, + [195073] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6138), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154246] = 4, - ACTIONS(5265), 1, - anon_sym_RBRACK, - ACTIONS(8175), 1, - anon_sym_COMMA, - STATE(4621), 1, - aux_sym_array_repeat1, + [195084] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2677), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154260] = 4, - ACTIONS(8109), 1, - anon_sym_RBRACK, - ACTIONS(8178), 1, - anon_sym_COMMA, - STATE(4622), 1, - aux_sym_array_pattern_repeat1, + [195095] = 3, + ACTIONS(10055), 1, + anon_sym_LPAREN, + STATE(55), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154274] = 2, + [195106] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154284] = 2, + anon_sym_RBRACE, + [195115] = 3, + ACTIONS(4363), 1, + anon_sym_LBRACE, + STATE(1736), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154294] = 2, + [195126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8171), 3, - sym__automatic_semicolon, + ACTIONS(6257), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154304] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8181), 1, - sym__glimmer_template_content, - ACTIONS(8184), 1, - sym_glimmer_closing_tag, - STATE(4626), 1, - aux_sym_glimmer_template_repeat1, - [154320] = 2, + anon_sym_RBRACE, + [195135] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7065), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154330] = 2, + [195146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8171), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154340] = 4, - ACTIONS(3192), 1, - anon_sym_GT, - ACTIONS(8186), 1, + ACTIONS(6281), 2, anon_sym_COMMA, - STATE(4365), 1, - aux_sym_implements_clause_repeat1, + anon_sym_RBRACE, + [195155] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7063), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154354] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(5053), 1, - anon_sym_RPAREN, - STATE(4635), 1, - aux_sym_array_repeat1, + [195166] = 3, + ACTIONS(10063), 1, + sym_identifier, + ACTIONS(10065), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154368] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(5053), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + [195177] = 3, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(2226), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154382] = 2, + [195188] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6055), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8173), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154392] = 2, + [195199] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, + ACTIONS(6281), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154402] = 2, + anon_sym_RBRACE, + [195208] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7061), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154412] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(8188), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + [195219] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154426] = 2, + ACTIONS(6281), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [195228] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6060), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154436] = 2, + [195239] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7263), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154446] = 2, + [195250] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154456] = 2, + anon_sym_RBRACE, + [195259] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154466] = 3, - ACTIONS(7019), 1, - anon_sym_DOT, + anon_sym_RBRACE, + [195268] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6069), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8190), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [154478] = 3, - ACTIONS(7021), 1, - anon_sym_DOT, + [195279] = 3, + ACTIONS(7656), 1, + anon_sym_LBRACE, + STATE(2612), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8190), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [154490] = 2, + [195290] = 3, + ACTIONS(10067), 1, + sym_identifier, + ACTIONS(10069), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154500] = 2, + [195301] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154510] = 2, + anon_sym_RBRACE, + [195310] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6504), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154520] = 2, + [195321] = 3, + ACTIONS(7656), 1, + anon_sym_LBRACE, + STATE(2609), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154530] = 4, - ACTIONS(1889), 1, - anon_sym_COMMA, - ACTIONS(8022), 1, - anon_sym_RBRACK, - STATE(4596), 1, - aux_sym_array_pattern_repeat1, + [195332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154544] = 4, - ACTIONS(1978), 1, + ACTIONS(10071), 2, anon_sym_COMMA, - ACTIONS(4973), 1, anon_sym_RPAREN, - STATE(4650), 1, - aux_sym_array_repeat1, + [195341] = 3, + ACTIONS(10073), 1, + sym_identifier, + ACTIONS(10075), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154558] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(4973), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + [195352] = 3, + ACTIONS(10077), 1, + sym_identifier, + ACTIONS(10079), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154572] = 2, + [195363] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154582] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(8194), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + ACTIONS(7688), 2, + anon_sym_in, + anon_sym_of, + [195372] = 3, + ACTIONS(10081), 1, + sym_identifier, + ACTIONS(10083), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154596] = 2, + [195383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154606] = 2, + anon_sym_RBRACE, + [195392] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7060), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154616] = 2, + [195403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, - sym__automatic_semicolon, + ACTIONS(6281), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154626] = 2, + anon_sym_RBRACE, + [195412] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6071), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154636] = 2, + [195423] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, + ACTIONS(10085), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [154646] = 2, + [195432] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2676), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154656] = 2, + [195443] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7059), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154666] = 2, + [195454] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, + ACTIONS(1717), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [154676] = 4, - ACTIONS(8196), 1, - anon_sym_LPAREN, - ACTIONS(8198), 1, - anon_sym_await, - STATE(43), 1, - sym__for_header, + [195463] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154690] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8043), 3, - sym__automatic_semicolon, + ACTIONS(6281), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154700] = 2, + anon_sym_RBRACE, + [195472] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, + ACTIONS(6257), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154710] = 2, + anon_sym_RBRACE, + [195481] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7058), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154720] = 2, + [195492] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8200), 3, - sym__automatic_semicolon, + ACTIONS(6281), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154730] = 2, + anon_sym_RBRACE, + [195501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154740] = 4, - ACTIONS(7944), 1, - anon_sym_from, - ACTIONS(8202), 1, - anon_sym_as, - STATE(5137), 1, - sym__from_clause, + anon_sym_RBRACE, + [195510] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7054), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154754] = 4, - ACTIONS(2282), 1, - anon_sym_LBRACE, - ACTIONS(8204), 1, + [195521] = 3, + ACTIONS(10087), 1, sym_identifier, - STATE(4437), 1, - sym_export_clause, + ACTIONS(10089), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154768] = 2, + [195532] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8206), 3, - sym__automatic_semicolon, + ACTIONS(6281), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154778] = 2, + anon_sym_RBRACE, + [195541] = 3, + ACTIONS(10091), 1, + sym_identifier, + ACTIONS(10093), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8206), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154788] = 4, - ACTIONS(5022), 1, + [195552] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9881), 2, anon_sym_COMMA, - ACTIONS(5024), 1, - anon_sym_RBRACK, - STATE(4565), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [195561] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7051), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154802] = 3, - ACTIONS(8208), 1, - anon_sym_as, + [195572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8210), 2, + ACTIONS(10095), 2, anon_sym_COMMA, anon_sym_RBRACE, - [154814] = 2, + [195581] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7113), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8212), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154824] = 2, + [195592] = 3, + ACTIONS(10097), 1, + sym_identifier, + ACTIONS(10099), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154834] = 2, + [195603] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7048), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8214), 3, + [195614] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [154844] = 4, - ACTIONS(7819), 1, - sym_identifier, - ACTIONS(7821), 1, - anon_sym_const, - STATE(4737), 1, - sym_type_parameter, + STATE(2675), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154858] = 4, - ACTIONS(8216), 1, - anon_sym_COMMA, - ACTIONS(8218), 1, - anon_sym_RPAREN, - STATE(4905), 1, - aux_sym_formal_parameters_repeat1, + [195625] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7041), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154872] = 2, + [195636] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, + ACTIONS(10101), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154882] = 2, + anon_sym_RBRACE, + [195645] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7039), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8200), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154892] = 4, - ACTIONS(6024), 1, - anon_sym_LPAREN, - ACTIONS(8220), 1, - anon_sym_DOT, - STATE(2903), 1, - sym_arguments, + [195656] = 3, + ACTIONS(7982), 1, + anon_sym_LBRACE, + STATE(4816), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154906] = 2, + [195667] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8222), 3, - sym__automatic_semicolon, + ACTIONS(6281), 2, anon_sym_COMMA, + anon_sym_RBRACE, + [195676] = 3, + ACTIONS(10103), 1, anon_sym_SEMI, - [154916] = 4, - ACTIONS(8224), 1, + ACTIONS(10105), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [195687] = 3, + ACTIONS(10107), 1, sym_identifier, - STATE(3765), 1, - sym_decorator_member_expression, - STATE(5709), 1, - sym_decorator_call_expression, + ACTIONS(10109), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154930] = 4, - ACTIONS(5022), 1, - anon_sym_COMMA, - ACTIONS(5024), 1, - anon_sym_RBRACK, - STATE(4621), 1, - aux_sym_array_repeat1, + [195698] = 3, + ACTIONS(9849), 1, + sym_identifier, + ACTIONS(9853), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154944] = 2, + [195709] = 3, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(2256), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8226), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [195720] = 3, + ACTIONS(10111), 1, anon_sym_SEMI, - [154954] = 2, + ACTIONS(10113), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8228), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154964] = 2, + [195731] = 3, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(2254), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8206), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154974] = 4, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(8230), 1, - anon_sym_RBRACE, - STATE(4774), 1, - aux_sym_object_repeat1, + [195742] = 3, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(2251), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154988] = 2, + [195753] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6093), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8232), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154998] = 2, + [195764] = 3, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(2318), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8226), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155008] = 2, + [195775] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6855), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8200), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155018] = 2, + [195786] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6131), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155028] = 4, - ACTIONS(2946), 1, - anon_sym_RBRACK, - ACTIONS(8234), 1, - anon_sym_COMMA, - STATE(4959), 1, - aux_sym_tuple_type_repeat1, + [195797] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2674), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155042] = 4, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(8236), 1, - anon_sym_EQ, - STATE(5636), 1, - sym_type_parameters, + [195808] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7038), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [195819] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(5156), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [195830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155056] = 4, - ACTIONS(5186), 1, + ACTIONS(6281), 2, anon_sym_COMMA, - ACTIONS(8238), 1, anon_sym_RBRACE, - STATE(4776), 1, - aux_sym_object_pattern_repeat1, + [195839] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7279), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155070] = 2, + [195850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, + ACTIONS(4949), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [155080] = 2, + [195859] = 3, + ACTIONS(10115), 1, + anon_sym_SEMI, + ACTIONS(10117), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [195870] = 3, + ACTIONS(10119), 1, anon_sym_SEMI, - [155090] = 4, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(8220), 1, - anon_sym_DOT, - STATE(2903), 1, - sym_arguments, + ACTIONS(10121), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155104] = 4, - ACTIONS(1889), 1, - anon_sym_COMMA, - ACTIONS(8022), 1, - anon_sym_RBRACK, - STATE(4622), 1, - aux_sym_array_pattern_repeat1, + [195881] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155118] = 2, + [195892] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7037), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155128] = 2, + [195903] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, + ACTIONS(6281), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155138] = 4, - ACTIONS(2490), 1, - anon_sym_while, - ACTIONS(8242), 1, - anon_sym_else, - STATE(829), 1, - sym_else_clause, + anon_sym_RBRACE, + [195912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155152] = 2, + ACTIONS(6211), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [195921] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155162] = 4, - ACTIONS(5265), 1, - anon_sym_RPAREN, - ACTIONS(8244), 1, + ACTIONS(6211), 2, anon_sym_COMMA, - STATE(4701), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [195930] = 3, + ACTIONS(10123), 1, + anon_sym_LBRACE, + STATE(887), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155176] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8099), 1, - sym__glimmer_template_content, - ACTIONS(8247), 1, - sym_glimmer_closing_tag, - STATE(4626), 1, - aux_sym_glimmer_template_repeat1, - [155192] = 2, + [195941] = 3, + ACTIONS(10125), 1, + sym_identifier, + ACTIONS(10127), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8249), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155202] = 2, + [195952] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155212] = 4, - ACTIONS(8251), 1, - sym_identifier, - ACTIONS(8253), 1, - anon_sym_LBRACK, - ACTIONS(8255), 1, - sym_private_property_identifier, + anon_sym_RBRACE, + [195961] = 3, + ACTIONS(10053), 1, + anon_sym_LBRACE, + STATE(4715), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155226] = 4, - ACTIONS(8257), 1, - sym_identifier, - ACTIONS(8259), 1, - anon_sym_LBRACK, - ACTIONS(8261), 1, - sym_private_property_identifier, + [195972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155240] = 4, - ACTIONS(8263), 1, + ACTIONS(6211), 2, anon_sym_COMMA, - ACTIONS(8265), 1, - anon_sym_RBRACK, - STATE(4748), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [195981] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155254] = 4, - ACTIONS(7214), 1, - anon_sym_AMP, - ACTIONS(7216), 1, - anon_sym_PIPE, - ACTIONS(7218), 1, - anon_sym_extends, + ACTIONS(4935), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [195990] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6806), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155268] = 4, - ACTIONS(1033), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1613), 1, + [196001] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(3931), 1, - sym_object_type, + STATE(6644), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155282] = 4, - ACTIONS(8267), 1, - sym_identifier, - ACTIONS(8269), 1, - anon_sym_LBRACK, - ACTIONS(8271), 1, - sym_private_property_identifier, + [196012] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2672), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155296] = 2, + [196023] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6124), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155306] = 4, - ACTIONS(8273), 1, - anon_sym_COMMA, - ACTIONS(8275), 1, - anon_sym_RBRACE, - STATE(4762), 1, - aux_sym_enum_body_repeat1, + [196034] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6129), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155320] = 4, - ACTIONS(8277), 1, - sym_identifier, - ACTIONS(8279), 1, - anon_sym_LBRACK, - ACTIONS(8281), 1, - sym_private_property_identifier, + [196045] = 3, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(2309), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155334] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(8283), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + [196056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155348] = 2, + ACTIONS(6305), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [196065] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8285), 3, + ACTIONS(4803), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [155358] = 2, + [196074] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, + ACTIONS(6239), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155368] = 2, + anon_sym_RBRACE, + [196083] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6618), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8287), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155378] = 2, + [196094] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, - sym__automatic_semicolon, + ACTIONS(6235), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155388] = 2, + anon_sym_RBRACE, + [196103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6301), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155398] = 2, + anon_sym_RBRACE, + [196112] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6544), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155408] = 2, + [196123] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6541), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8289), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155418] = 5, - ACTIONS(3), 1, + [196134] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6620), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [196145] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6539), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8291), 1, - sym__glimmer_template_content, - ACTIONS(8293), 1, - sym_glimmer_closing_tag, - STATE(4544), 1, - aux_sym_glimmer_template_repeat1, - [155434] = 2, + sym_comment, + [196156] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8289), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155444] = 2, + anon_sym_RBRACE, + [196165] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6537), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8295), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155454] = 2, + [196176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8297), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155464] = 2, + anon_sym_RBRACE, + [196185] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7482), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155474] = 2, + anon_sym_RBRACE, + [196194] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155484] = 4, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(8299), 1, - anon_sym_DOT, - STATE(2153), 1, - sym_arguments, + anon_sym_RBRACE, + [196203] = 3, + ACTIONS(9516), 1, + sym_identifier, + ACTIONS(9520), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155498] = 4, - ACTIONS(6556), 1, - anon_sym_AMP, - ACTIONS(6572), 1, - anon_sym_PIPE, - ACTIONS(6574), 1, - anon_sym_extends, + [196214] = 3, + ACTIONS(10129), 1, + sym_identifier, + STATE(5791), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155512] = 2, + [196225] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6622), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8285), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155522] = 2, + [196236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155532] = 2, + anon_sym_RBRACE, + [196245] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6623), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155542] = 2, + [196256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8301), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155552] = 2, + anon_sym_RBRACE, + [196265] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6624), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155562] = 2, + [196276] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155572] = 2, + anon_sym_RBRACE, + [196285] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155582] = 4, - ACTIONS(8303), 1, + ACTIONS(6219), 2, anon_sym_COMMA, - ACTIONS(8305), 1, - anon_sym_GT, - STATE(4520), 1, - aux_sym_type_parameters_repeat1, + anon_sym_RBRACE, + [196294] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6625), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155596] = 2, + [196305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155606] = 4, - ACTIONS(5186), 1, + ACTIONS(6215), 2, anon_sym_COMMA, - ACTIONS(8307), 1, anon_sym_RBRACE, - STATE(4776), 1, - aux_sym_object_pattern_repeat1, + [196314] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6627), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155620] = 2, + [196325] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6629), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155630] = 2, + [196336] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6631), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155640] = 2, + [196347] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6632), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155650] = 2, + [196358] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155660] = 3, - ACTIONS(8309), 1, - anon_sym_EQ, + anon_sym_RBRACE, + [196367] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6633), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 2, - anon_sym_in, - anon_sym_of, - [155672] = 2, + [196378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155682] = 4, - ACTIONS(5431), 1, + ACTIONS(6215), 2, anon_sym_COMMA, - ACTIONS(8311), 1, anon_sym_RBRACE, - STATE(4774), 1, - aux_sym_object_repeat1, + [196387] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6634), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155696] = 4, - ACTIONS(8313), 1, - anon_sym_COMMA, - ACTIONS(8315), 1, - anon_sym_GT, - STATE(4756), 1, - aux_sym_type_parameters_repeat1, + [196398] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155710] = 4, - ACTIONS(2950), 1, - anon_sym_RBRACK, - ACTIONS(8317), 1, + ACTIONS(6215), 2, anon_sym_COMMA, - STATE(4959), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [196407] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6518), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155724] = 4, - ACTIONS(3202), 1, - anon_sym_GT, - ACTIONS(8319), 1, - anon_sym_COMMA, - STATE(4365), 1, - aux_sym_implements_clause_repeat1, + [196418] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4946), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155738] = 2, + [196429] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155748] = 2, + anon_sym_RBRACE, + [196438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155758] = 2, + anon_sym_RBRACE, + [196447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8240), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155768] = 4, - ACTIONS(5186), 1, + ACTIONS(6211), 2, anon_sym_COMMA, - ACTIONS(8238), 1, anon_sym_RBRACE, - STATE(4739), 1, - aux_sym_object_pattern_repeat1, + [196456] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155782] = 4, - ACTIONS(4127), 1, + ACTIONS(6211), 2, anon_sym_COMMA, - ACTIONS(7693), 1, - anon_sym_RPAREN, - STATE(4948), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_RBRACE, + [196465] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7137), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155796] = 4, - ACTIONS(8321), 1, - anon_sym_LPAREN, - ACTIONS(8323), 1, - anon_sym_await, - STATE(37), 1, - sym__for_header, + [196476] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155810] = 4, - ACTIONS(8000), 1, - anon_sym_GT, - ACTIONS(8325), 1, + ACTIONS(6219), 2, anon_sym_COMMA, - STATE(4777), 1, - aux_sym_type_parameters_repeat1, + anon_sym_RBRACE, + [196485] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6635), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155824] = 2, + [196496] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155834] = 2, + anon_sym_RBRACE, + [196505] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6637), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155844] = 2, + [196516] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6639), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155854] = 4, - ACTIONS(8327), 1, - anon_sym_COMMA, - ACTIONS(8329), 1, - anon_sym_RBRACE, - STATE(4780), 1, - aux_sym_enum_body_repeat1, + [196527] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6641), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155868] = 2, + [196538] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6642), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155878] = 4, - ACTIONS(8331), 1, - anon_sym_COMMA, - ACTIONS(8333), 1, - anon_sym_RBRACE, - STATE(4780), 1, - aux_sym_enum_body_repeat1, + [196549] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2671), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155892] = 2, + [196560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155902] = 2, + anon_sym_RBRACE, + [196569] = 3, + ACTIONS(7982), 1, + anon_sym_LBRACE, + STATE(4807), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155912] = 2, + [196580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, + ACTIONS(6285), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155922] = 2, + anon_sym_RBRACE, + [196589] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6037), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155932] = 2, + anon_sym_RBRACE, + [196598] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6649), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155942] = 2, + [196609] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6651), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155952] = 2, + [196620] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6653), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155962] = 2, + [196631] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6654), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155972] = 2, + [196642] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155982] = 2, + anon_sym_RBRACE, + [196651] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6657), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155992] = 2, + [196662] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156002] = 4, - ACTIONS(8335), 1, + ACTIONS(6215), 2, anon_sym_COMMA, - ACTIONS(8338), 1, anon_sym_RBRACE, - STATE(4774), 1, - aux_sym_object_repeat1, + [196671] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6594), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156016] = 2, + [196682] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156026] = 4, - ACTIONS(8340), 1, + ACTIONS(6215), 2, anon_sym_COMMA, - ACTIONS(8343), 1, anon_sym_RBRACE, - STATE(4776), 1, - aux_sym_object_pattern_repeat1, + [196691] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156040] = 4, - ACTIONS(8345), 1, + ACTIONS(6219), 2, anon_sym_COMMA, - ACTIONS(8348), 1, - anon_sym_GT, - STATE(4777), 1, - aux_sym_type_parameters_repeat1, + anon_sym_RBRACE, + [196700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156054] = 2, + ACTIONS(6219), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [196709] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6662), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156064] = 3, - ACTIONS(7702), 1, - anon_sym_LBRACE, + [196720] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7704), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [156076] = 4, - ACTIONS(8350), 1, + ACTIONS(6215), 2, anon_sym_COMMA, - ACTIONS(8353), 1, anon_sym_RBRACE, - STATE(4780), 1, - aux_sym_enum_body_repeat1, + [196729] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6665), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156090] = 4, - ACTIONS(6643), 1, - anon_sym_LPAREN, - ACTIONS(8220), 1, - anon_sym_DOT, - STATE(2903), 1, - sym_arguments, + [196740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156104] = 4, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1565), 1, + ACTIONS(6215), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [196749] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(854), 1, - sym_object_type, + STATE(6666), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156118] = 2, + [196760] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156128] = 2, + anon_sym_RBRACE, + [196769] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156138] = 4, - ACTIONS(8355), 1, + ACTIONS(6219), 2, anon_sym_COMMA, - ACTIONS(8357), 1, anon_sym_RBRACE, - STATE(4513), 1, - aux_sym_enum_body_repeat1, + [196778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156152] = 4, - ACTIONS(8359), 1, - sym_identifier, - ACTIONS(8361), 1, - anon_sym_LBRACK, - ACTIONS(8363), 1, - sym_private_property_identifier, + ACTIONS(6219), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [196787] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156166] = 2, + ACTIONS(6219), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [196796] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156176] = 2, + anon_sym_RBRACE, + [196805] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6668), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156186] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(8365), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + [196816] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156200] = 2, + ACTIONS(6215), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [196825] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156210] = 2, + anon_sym_RBRACE, + [196834] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6671), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7089), 3, + [196845] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [156220] = 2, + STATE(6291), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + [196856] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156230] = 4, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1565), 1, + anon_sym_RBRACE, + [196865] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(898), 1, - sym_object_type, + STATE(6672), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156244] = 4, - ACTIONS(8367), 1, - sym_identifier, - STATE(3840), 1, - sym_decorator_member_expression, - STATE(5757), 1, - sym_decorator_call_expression, + [196876] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156258] = 2, + ACTIONS(6215), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [196885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156268] = 4, - ACTIONS(5431), 1, + ACTIONS(6219), 2, anon_sym_COMMA, - ACTIONS(8230), 1, anon_sym_RBRACE, - STATE(4746), 1, - aux_sym_object_repeat1, + [196894] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6676), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156282] = 2, + [196905] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156292] = 2, + anon_sym_RBRACE, + [196914] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6679), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6550), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [156302] = 2, + [196925] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156312] = 2, + anon_sym_RBRACE, + [196934] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6681), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8222), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156322] = 2, + [196945] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6685), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156332] = 2, + [196956] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6687), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156342] = 4, - ACTIONS(8371), 1, - anon_sym_COMMA, - ACTIONS(8374), 1, - anon_sym_RPAREN, - STATE(4803), 1, - aux_sym_formal_parameters_repeat1, + [196967] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6257), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156356] = 2, + [196978] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156366] = 2, + anon_sym_RBRACE, + [196987] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6690), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156376] = 3, - ACTIONS(8376), 1, - anon_sym_EQ, + [196998] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2733), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8378), 2, - anon_sym_COMMA, - anon_sym_from, - [156388] = 2, + [197009] = 3, + ACTIONS(7982), 1, + anon_sym_LBRACE, + STATE(4621), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8380), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156398] = 2, + [197020] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 3, - sym__automatic_semicolon, + ACTIONS(6235), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156408] = 4, - ACTIONS(5186), 1, + anon_sym_RBRACE, + [197029] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6239), 2, anon_sym_COMMA, - ACTIONS(8384), 1, anon_sym_RBRACE, - STATE(4829), 1, - aux_sym_object_pattern_repeat1, + [197038] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6697), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [197049] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6699), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156422] = 2, + [197060] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6700), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [156432] = 2, + [197071] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6701), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156442] = 4, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(8390), 1, - anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_repeat1, + [197082] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6787), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [197093] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6702), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156456] = 2, + [197104] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156466] = 4, - ACTIONS(8392), 1, + anon_sym_RBRACE, + [197113] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6219), 2, anon_sym_COMMA, - ACTIONS(8395), 1, anon_sym_RBRACE, - STATE(4814), 1, - aux_sym_export_clause_repeat1, + [197122] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6842), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156480] = 2, + [197133] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6719), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8397), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156490] = 2, + [197144] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6732), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8399), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156500] = 2, + [197155] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6734), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8397), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156510] = 2, + [197166] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6737), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156520] = 2, + [197177] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6739), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156530] = 2, + [197188] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156540] = 4, - ACTIONS(5431), 1, + ACTIONS(6215), 2, anon_sym_COMMA, - ACTIONS(8405), 1, anon_sym_RBRACE, - STATE(4774), 1, - aux_sym_object_repeat1, + [197197] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6740), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156554] = 2, + [197208] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156564] = 4, - ACTIONS(5186), 1, + anon_sym_RBRACE, + [197217] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6215), 2, anon_sym_COMMA, - ACTIONS(8407), 1, anon_sym_RBRACE, - STATE(4776), 1, - aux_sym_object_pattern_repeat1, + [197226] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6747), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156578] = 2, + [197237] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6749), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8409), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156588] = 2, + [197248] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6754), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156598] = 2, + [197259] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156608] = 2, + anon_sym_RBRACE, + [197268] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6755), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156618] = 2, + [197279] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156628] = 4, - ACTIONS(5186), 1, + ACTIONS(6215), 2, anon_sym_COMMA, - ACTIONS(8413), 1, anon_sym_RBRACE, - STATE(4776), 1, - aux_sym_object_pattern_repeat1, + [197288] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6758), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156642] = 3, - ACTIONS(8415), 1, - anon_sym_as, + [197299] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8378), 2, + ACTIONS(6215), 2, anon_sym_COMMA, anon_sym_RBRACE, - [156654] = 2, + [197308] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156664] = 2, + anon_sym_RBRACE, + [197317] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156674] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(5123), 1, - anon_sym_RPAREN, - STATE(4789), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [197326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156688] = 4, - ACTIONS(5431), 1, + ACTIONS(6219), 2, anon_sym_COMMA, - ACTIONS(8417), 1, anon_sym_RBRACE, - STATE(4774), 1, - aux_sym_object_repeat1, + [197335] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6759), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156702] = 2, + [197346] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156712] = 2, + anon_sym_RBRACE, + [197355] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6763), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8419), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156722] = 2, + [197366] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6765), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156732] = 2, + [197377] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6769), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156742] = 2, + [197388] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6770), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8409), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156752] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(5123), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + [197399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156766] = 3, - ACTIONS(7151), 1, - anon_sym_EQ, + ACTIONS(6215), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [197408] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6772), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 2, - anon_sym_in, - anon_sym_of, - [156778] = 2, + [197419] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6779), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156788] = 2, + [197430] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6782), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156798] = 2, + [197441] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6784), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156808] = 2, + [197452] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6785), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156818] = 2, + [197463] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156828] = 4, - ACTIONS(8423), 1, + ACTIONS(6215), 2, anon_sym_COMMA, - ACTIONS(8425), 1, anon_sym_RBRACE, - STATE(5065), 1, - aux_sym_named_imports_repeat1, + [197472] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6786), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156842] = 2, + [197483] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156852] = 2, + anon_sym_RBRACE, + [197492] = 3, + ACTIONS(3509), 1, + anon_sym_LPAREN, + STATE(1301), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156862] = 2, + [197503] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156872] = 2, + anon_sym_RBRACE, + [197512] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156882] = 2, + anon_sym_RBRACE, + [197521] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156892] = 2, + anon_sym_RBRACE, + [197530] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6788), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156902] = 2, + [197541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8427), 3, - sym__automatic_semicolon, + ACTIONS(6227), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156912] = 2, + anon_sym_RBRACE, + [197550] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, + ACTIONS(6223), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156922] = 2, + anon_sym_RBRACE, + [197559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8409), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156932] = 4, - ACTIONS(7944), 1, - anon_sym_from, - ACTIONS(8202), 1, - anon_sym_as, - STATE(5401), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156946] = 2, + anon_sym_RBRACE, + [197568] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6790), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7065), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [156956] = 2, + [197579] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8043), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156966] = 2, + anon_sym_RBRACE, + [197588] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6079), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156976] = 2, + [197599] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6705), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156986] = 2, + [197610] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156996] = 2, + anon_sym_RBRACE, + [197619] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157006] = 3, - ACTIONS(8429), 1, - anon_sym_EQ, + anon_sym_RBRACE, + [197628] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6794), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8378), 2, - anon_sym_COMMA, - anon_sym_from, - [157018] = 2, + [197639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157028] = 2, + anon_sym_RBRACE, + [197648] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6797), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157038] = 2, + [197659] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6799), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157048] = 2, + [197670] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6802), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157058] = 4, - ACTIONS(2282), 1, + [197681] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - ACTIONS(8431), 1, - sym_identifier, - STATE(4484), 1, - sym_export_clause, + STATE(6803), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157072] = 2, + [197692] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157082] = 2, + anon_sym_RBRACE, + [197701] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6804), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157092] = 2, + [197712] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157102] = 2, + anon_sym_RBRACE, + [197721] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6805), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157112] = 4, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(8390), 1, - anon_sym_RBRACE, - STATE(4774), 1, - aux_sym_object_repeat1, + [197732] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157126] = 2, + ACTIONS(6215), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [197741] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157136] = 2, + anon_sym_RBRACE, + [197750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157146] = 2, + anon_sym_RBRACE, + [197759] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8222), 3, - sym__automatic_semicolon, + ACTIONS(6219), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157156] = 2, + anon_sym_RBRACE, + [197768] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6132), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8409), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157166] = 2, + [197779] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157176] = 4, - ACTIONS(5186), 1, + ACTIONS(6257), 2, anon_sym_COMMA, - ACTIONS(8384), 1, anon_sym_RBRACE, - STATE(4776), 1, - aux_sym_object_pattern_repeat1, + [197788] = 3, + ACTIONS(7656), 1, + anon_sym_LBRACE, + STATE(1793), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157190] = 2, + [197799] = 3, + ACTIONS(4363), 1, + anon_sym_LBRACE, + STATE(1786), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157200] = 2, + [197810] = 3, + ACTIONS(4363), 1, + anon_sym_LBRACE, + STATE(1764), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8409), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157210] = 2, + [197821] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8433), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157220] = 2, + anon_sym_RBRACE, + [197830] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6744), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157230] = 2, + [197841] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157240] = 2, + anon_sym_RBRACE, + [197850] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7036), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157250] = 2, + [197861] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6075), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157260] = 2, + [197872] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6144), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157270] = 2, + [197883] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6147), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157280] = 2, + [197894] = 3, + ACTIONS(10131), 1, + sym_identifier, + ACTIONS(10133), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157290] = 2, + [197905] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, + ACTIONS(6281), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157300] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8435), 1, - sym__glimmer_template_content, - ACTIONS(8437), 1, - sym_glimmer_closing_tag, - STATE(4702), 1, - aux_sym_glimmer_template_repeat1, - [157316] = 4, - ACTIONS(7819), 1, + anon_sym_RBRACE, + [197914] = 3, + ACTIONS(10135), 1, sym_identifier, - ACTIONS(7821), 1, - anon_sym_const, - STATE(4747), 1, - sym_type_parameter, + ACTIONS(10137), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157330] = 2, + [197925] = 3, + ACTIONS(10139), 1, + sym_identifier, + ACTIONS(10141), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157340] = 2, + [197936] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6154), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8049), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157350] = 2, + [197947] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6156), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157360] = 2, + [197958] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6158), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157370] = 2, + [197969] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6159), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157380] = 2, + [197980] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6257), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157390] = 2, + anon_sym_RBRACE, + [197989] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6160), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157400] = 2, + [198000] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8043), 3, - sym__automatic_semicolon, + ACTIONS(6257), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157410] = 2, + anon_sym_RBRACE, + [198009] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6161), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7067), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157420] = 4, - ACTIONS(8439), 1, - sym_identifier, - ACTIONS(8441), 1, - anon_sym_LBRACK, - ACTIONS(8443), 1, - sym_private_property_identifier, + [198020] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157434] = 2, + ACTIONS(6257), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [198029] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157444] = 4, - ACTIONS(1673), 1, - anon_sym_RPAREN, - ACTIONS(8445), 1, + ACTIONS(6273), 2, anon_sym_COMMA, - STATE(4803), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_RBRACE, + [198038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157458] = 2, + ACTIONS(6269), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [198047] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, + ACTIONS(6265), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157468] = 2, + anon_sym_RBRACE, + [198056] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(7035), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157478] = 2, + [198067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157488] = 2, + ACTIONS(8597), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [198076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(6281), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157498] = 3, - ACTIONS(8447), 1, + anon_sym_RBRACE, + [198085] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, + STATE(7034), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [157510] = 2, + [198096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8409), 3, - sym__automatic_semicolon, + ACTIONS(6281), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157520] = 2, + anon_sym_RBRACE, + [198105] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157530] = 4, - ACTIONS(5431), 1, + anon_sym_RBRACE, + [198114] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 2, anon_sym_COMMA, - ACTIONS(8449), 1, anon_sym_RBRACE, - STATE(4947), 1, - aux_sym_object_repeat1, + [198123] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157544] = 3, - ACTIONS(8451), 1, - anon_sym_as, + ACTIONS(6211), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [198132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 2, + ACTIONS(6211), 2, anon_sym_COMMA, anon_sym_RBRACE, - [157556] = 2, + [198141] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2670), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, - sym__automatic_semicolon, - anon_sym_from, + [198152] = 3, + ACTIONS(10143), 1, anon_sym_SEMI, - [157566] = 2, + ACTIONS(10145), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8401), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157576] = 2, + [198163] = 3, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(2345), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157586] = 2, + [198174] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157596] = 4, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, anon_sym_RBRACE, - STATE(4774), 1, - aux_sym_object_repeat1, + [198183] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6162), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157610] = 4, - ACTIONS(1677), 1, - anon_sym_RPAREN, - ACTIONS(8457), 1, + [198194] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6211), 2, anon_sym_COMMA, - STATE(4803), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_RBRACE, + [198203] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2669), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157624] = 2, + [198214] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2668), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8403), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157634] = 2, + [198225] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2666), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157644] = 4, - ACTIONS(8459), 1, - anon_sym_COMMA, - ACTIONS(8461), 1, - anon_sym_RPAREN, - STATE(4949), 1, - aux_sym_formal_parameters_repeat1, + [198236] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2665), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157658] = 2, + [198247] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2664), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8409), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157668] = 4, - ACTIONS(8463), 1, - sym_identifier, - ACTIONS(8465), 1, - anon_sym_require, - STATE(5069), 1, - sym_nested_identifier, + [198258] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2663), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157682] = 2, + [198269] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8467), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157692] = 4, - ACTIONS(5022), 1, + ACTIONS(6309), 2, anon_sym_COMMA, - ACTIONS(8469), 1, - anon_sym_RBRACK, - STATE(4621), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [198278] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2662), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157706] = 2, + [198289] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2661), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157716] = 2, + [198300] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2921), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8471), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157726] = 4, - ACTIONS(1889), 1, - anon_sym_COMMA, - ACTIONS(8473), 1, - anon_sym_RBRACK, - STATE(4622), 1, - aux_sym_array_pattern_repeat1, + [198311] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2743), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157740] = 2, + [198322] = 3, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(2347), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157750] = 2, + [198333] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2747), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157760] = 4, - ACTIONS(6759), 1, - anon_sym_RBRACE, - ACTIONS(8475), 1, - anon_sym_COMMA, - STATE(4814), 1, - aux_sym_export_clause_repeat1, + [198344] = 3, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(2350), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157774] = 4, - ACTIONS(6548), 1, - anon_sym_type, - ACTIONS(8477), 1, - sym_identifier, - STATE(5354), 1, - sym__import_identifier, + [198355] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6083), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157788] = 2, + [198366] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2749), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157798] = 4, - ACTIONS(3481), 1, - anon_sym_LPAREN, - ACTIONS(8479), 1, - anon_sym_DOT, - STATE(3154), 1, - sym_arguments, + [198377] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157812] = 4, - ACTIONS(5431), 1, + ACTIONS(6309), 2, anon_sym_COMMA, - ACTIONS(8481), 1, anon_sym_RBRACE, - STATE(4774), 1, - aux_sym_object_repeat1, + [198386] = 3, + ACTIONS(7656), 1, + anon_sym_LBRACE, + STATE(1656), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157826] = 2, + [198397] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2765), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157836] = 2, + [198408] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7268), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157846] = 4, - ACTIONS(5186), 1, - anon_sym_COMMA, - ACTIONS(8483), 1, - anon_sym_RBRACE, - STATE(4776), 1, - aux_sym_object_pattern_repeat1, + [198419] = 3, + ACTIONS(10147), 1, + sym_identifier, + ACTIONS(10149), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157860] = 4, - ACTIONS(6548), 1, - anon_sym_type, - ACTIONS(8485), 1, - sym_identifier, - STATE(5384), 1, - sym__import_identifier, + [198430] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6168), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157874] = 2, + [198441] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2766), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157884] = 2, + [198452] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2771), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157894] = 4, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(8487), 1, - anon_sym_RBRACE, - STATE(4774), 1, - aux_sym_object_repeat1, + [198463] = 3, + ACTIONS(10151), 1, + sym_identifier, + ACTIONS(10153), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157908] = 2, + [198474] = 3, + ACTIONS(10155), 1, + sym_identifier, + ACTIONS(10157), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157918] = 2, + [198485] = 3, + ACTIONS(10159), 1, + sym_identifier, + ACTIONS(10161), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157928] = 4, - ACTIONS(5431), 1, - anon_sym_COMMA, - ACTIONS(8489), 1, - anon_sym_RBRACE, - STATE(4774), 1, - aux_sym_object_repeat1, + [198496] = 3, + ACTIONS(9769), 1, + sym_identifier, + ACTIONS(9773), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157942] = 4, - ACTIONS(4821), 1, - anon_sym_RPAREN, - ACTIONS(8491), 1, - anon_sym_COMMA, - STATE(4948), 1, - aux_sym_sequence_expression_repeat1, + [198507] = 3, + ACTIONS(7656), 1, + anon_sym_LBRACE, + STATE(1660), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157956] = 4, - ACTIONS(1685), 1, - anon_sym_RPAREN, - ACTIONS(8494), 1, - anon_sym_COMMA, - STATE(4803), 1, - aux_sym_formal_parameters_repeat1, + [198518] = 3, + ACTIONS(10163), 1, + anon_sym_SEMI, + ACTIONS(10165), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157970] = 2, + [198529] = 3, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(2359), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157980] = 2, + [198540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, + ACTIONS(10167), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [157990] = 2, + [198549] = 3, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(2362), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158000] = 2, + [198560] = 3, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(4581), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8496), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158010] = 2, + [198571] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158020] = 2, + anon_sym_RBRACE, + [198580] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2850), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8498), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158030] = 2, + [198591] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6191), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158040] = 2, + [198602] = 3, + ACTIONS(4363), 1, + anon_sym_LBRACE, + STATE(1649), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8498), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158050] = 2, + [198613] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2772), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8500), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158060] = 4, - ACTIONS(8502), 1, - anon_sym_COMMA, - ACTIONS(8505), 1, - anon_sym_RBRACK, - STATE(4959), 1, - aux_sym_tuple_type_repeat1, + [198624] = 3, + ACTIONS(10169), 1, + sym_identifier, + ACTIONS(10171), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158074] = 2, + [198635] = 3, + ACTIONS(10173), 1, + sym_identifier, + ACTIONS(10175), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158084] = 2, + [198646] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2775), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7482), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158094] = 2, + [198657] = 3, + ACTIONS(10177), 1, + sym_identifier, + ACTIONS(10179), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8507), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158104] = 4, - ACTIONS(8509), 1, - anon_sym_COMMA, - ACTIONS(8512), 1, - anon_sym_RBRACE, - STATE(4963), 1, - aux_sym_named_imports_repeat1, + [198668] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2776), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158118] = 2, + [198679] = 3, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(2393), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8049), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158128] = 2, + [198690] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2777), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158138] = 4, - ACTIONS(2708), 1, - anon_sym_LT, - ACTIONS(8514), 1, - anon_sym_EQ, - STATE(5602), 1, - sym_type_parameters, + [198701] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2778), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158152] = 2, + [198712] = 3, + ACTIONS(4363), 1, + anon_sym_LBRACE, + STATE(1710), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158162] = 2, + [198723] = 3, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(2402), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8516), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158172] = 2, + [198734] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6183), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158182] = 4, - ACTIONS(8518), 1, - anon_sym_COMMA, - ACTIONS(8520), 1, - anon_sym_RBRACK, - STATE(5022), 1, - aux_sym_tuple_type_repeat1, + [198745] = 3, + ACTIONS(10181), 1, + sym_identifier, + ACTIONS(10183), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158196] = 2, + [198756] = 3, + ACTIONS(10185), 1, + sym_identifier, + ACTIONS(10187), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158206] = 2, + [198767] = 3, + ACTIONS(10189), 1, + sym_identifier, + ACTIONS(10191), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8507), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158216] = 4, - ACTIONS(1573), 1, - anon_sym_DQUOTE, - ACTIONS(1575), 1, - anon_sym_SQUOTE, - STATE(5461), 1, - sym_string, + [198778] = 3, + ACTIONS(10193), 1, + sym_identifier, + ACTIONS(10195), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158230] = 4, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(8522), 1, - anon_sym_RPAREN, - STATE(5694), 1, - sym_type_annotation, + [198789] = 3, + ACTIONS(10197), 1, + sym_identifier, + ACTIONS(10199), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158244] = 2, + [198800] = 3, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(2382), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8524), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158254] = 2, + [198811] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2779), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158264] = 4, - ACTIONS(6661), 1, - anon_sym_AMP, - ACTIONS(6665), 1, - anon_sym_extends, - ACTIONS(7537), 1, - anon_sym_PIPE, + [198822] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2785), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158278] = 2, + [198833] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, + ACTIONS(6285), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158288] = 2, + anon_sym_RBRACE, + [198842] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6127), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158298] = 2, + [198853] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, + ACTIONS(6289), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158308] = 2, + anon_sym_RBRACE, + [198862] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6134), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158318] = 2, + [198873] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158328] = 4, - ACTIONS(3190), 1, - anon_sym_GT, - ACTIONS(8526), 1, + anon_sym_RBRACE, + [198882] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6293), 2, anon_sym_COMMA, - STATE(4365), 1, - aux_sym_implements_clause_repeat1, + anon_sym_RBRACE, + [198891] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158342] = 2, + ACTIONS(6293), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [198900] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158352] = 2, + anon_sym_RBRACE, + [198909] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6135), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8528), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [158362] = 2, + [198920] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158372] = 2, + anon_sym_RBRACE, + [198929] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6136), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158382] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(5032), 1, - anon_sym_RPAREN, - STATE(5032), 1, - aux_sym_array_repeat1, + [198940] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158396] = 4, - ACTIONS(1978), 1, + ACTIONS(6277), 2, anon_sym_COMMA, - ACTIONS(5032), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [198949] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6140), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158410] = 2, + [198960] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8097), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158420] = 2, + anon_sym_RBRACE, + [198969] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158430] = 2, + anon_sym_RBRACE, + [198978] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158440] = 2, + anon_sym_RBRACE, + [198987] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158450] = 2, + anon_sym_RBRACE, + [198996] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158460] = 4, - ACTIONS(7059), 1, - anon_sym_AMP, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_extends, + anon_sym_RBRACE, + [199005] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6149), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158474] = 2, + [199016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158484] = 2, + anon_sym_RBRACE, + [199025] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6170), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158494] = 2, + [199036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158504] = 2, + anon_sym_RBRACE, + [199045] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6172), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158514] = 2, + [199056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158524] = 2, + anon_sym_RBRACE, + [199065] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158534] = 4, - ACTIONS(8530), 1, - sym_identifier, - ACTIONS(8532), 1, - anon_sym_LBRACK, - ACTIONS(8534), 1, - sym_private_property_identifier, + anon_sym_RBRACE, + [199074] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6174), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158548] = 4, - ACTIONS(8536), 1, - sym_identifier, - ACTIONS(8538), 1, - anon_sym_LBRACK, - ACTIONS(8540), 1, - sym_private_property_identifier, + [199085] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158562] = 2, + ACTIONS(6277), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199094] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6182), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158572] = 4, - ACTIONS(8542), 1, - sym_identifier, - ACTIONS(8544), 1, - anon_sym_LBRACK, - ACTIONS(8546), 1, - sym_private_property_identifier, + [199105] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6217), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158586] = 4, - ACTIONS(8548), 1, - sym_identifier, - ACTIONS(8550), 1, - anon_sym_LBRACK, - ACTIONS(8552), 1, - sym_private_property_identifier, + [199116] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6224), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [199127] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6225), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158600] = 2, + [199138] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8467), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158610] = 4, - ACTIONS(6757), 1, - anon_sym_implements, - ACTIONS(8554), 1, + anon_sym_RBRACE, + [199147] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(5650), 1, - sym_implements_clause, + STATE(6339), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158624] = 2, + [199158] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158634] = 2, + anon_sym_RBRACE, + [199167] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6238), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8556), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158644] = 2, + [199178] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8049), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158654] = 2, + anon_sym_RBRACE, + [199187] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158664] = 2, + anon_sym_RBRACE, + [199196] = 3, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(765), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158674] = 2, + [199207] = 3, + ACTIONS(7982), 1, + anon_sym_LBRACE, + STATE(756), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158684] = 2, + [199218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158694] = 2, + anon_sym_RBRACE, + [199227] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2685), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158704] = 2, + [199238] = 3, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(758), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158714] = 2, + [199249] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, + ACTIONS(10201), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158724] = 2, + anon_sym_RBRACE, + [199258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, + ACTIONS(6211), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158734] = 2, + anon_sym_RBRACE, + [199267] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158744] = 2, + anon_sym_RBRACE, + [199276] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158754] = 4, - ACTIONS(2954), 1, - anon_sym_RBRACK, - ACTIONS(8558), 1, + ACTIONS(9736), 2, anon_sym_COMMA, - STATE(4959), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [199285] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2719), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158768] = 2, + [199296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158778] = 2, + anon_sym_RBRACE, + [199305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158788] = 2, + anon_sym_RBRACE, + [199314] = 3, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(2227), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158798] = 2, + [199325] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158808] = 2, + anon_sym_RBRACE, + [199334] = 3, + ACTIONS(7808), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158818] = 4, - ACTIONS(7819), 1, - sym_identifier, - ACTIONS(7821), 1, - anon_sym_const, - STATE(5110), 1, - sym_type_parameter, + [199345] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2794), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158832] = 2, + [199356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158842] = 2, + anon_sym_RBRACE, + [199365] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158852] = 2, + anon_sym_RBRACE, + [199374] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2795), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158862] = 4, - ACTIONS(1978), 1, - anon_sym_COMMA, - ACTIONS(8560), 1, - anon_sym_RPAREN, - STATE(4701), 1, - aux_sym_array_repeat1, + [199385] = 3, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(4716), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158876] = 2, + [199396] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2796), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158886] = 2, + [199407] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158896] = 2, + anon_sym_RBRACE, + [199416] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2801), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158906] = 2, + [199427] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6246), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158916] = 2, + [199438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158926] = 2, + anon_sym_RBRACE, + [199447] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6247), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158936] = 2, + [199458] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158946] = 2, + anon_sym_RBRACE, + [199467] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6250), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158956] = 2, + [199478] = 3, + ACTIONS(7750), 1, + anon_sym_LBRACE, + STATE(795), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158966] = 2, + [199489] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2805), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158976] = 2, + [199500] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158986] = 2, + anon_sym_RBRACE, + [199509] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2814), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158996] = 2, + [199520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159006] = 2, + anon_sym_RBRACE, + [199529] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8111), 3, - sym__automatic_semicolon, + ACTIONS(9717), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159016] = 4, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - STATE(4479), 1, - sym_string, + anon_sym_GT, + [199538] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6255), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159030] = 3, - ACTIONS(7888), 1, - anon_sym_EQ, + [199549] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8562), 2, + ACTIONS(6277), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159042] = 3, - ACTIONS(4361), 1, + [199558] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, + STATE(6259), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159054] = 3, - ACTIONS(4387), 1, + [199569] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, + STATE(6264), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159066] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159076] = 2, + [199580] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6266), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159086] = 2, + [199591] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2815), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159096] = 2, + [199602] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159106] = 2, + anon_sym_RBRACE, + [199611] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6270), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159116] = 2, + [199622] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159126] = 2, + anon_sym_RBRACE, + [199631] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6274), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159136] = 2, + [199642] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159146] = 2, + anon_sym_RBRACE, + [199651] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159156] = 2, + anon_sym_RBRACE, + [199660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159166] = 3, - ACTIONS(8564), 1, - anon_sym_as, + anon_sym_RBRACE, + [199669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6550), 2, + ACTIONS(6293), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159178] = 4, - ACTIONS(6548), 1, - anon_sym_type, - ACTIONS(8566), 1, - sym_identifier, - STATE(5303), 1, - sym__import_identifier, + [199678] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6282), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159192] = 4, - ACTIONS(6548), 1, - anon_sym_type, - ACTIONS(8568), 1, - sym_identifier, - STATE(5308), 1, - sym__import_identifier, + [199689] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6269), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159206] = 2, + [199700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159216] = 4, - ACTIONS(6721), 1, anon_sym_RBRACE, - ACTIONS(8570), 1, - anon_sym_COMMA, - STATE(4963), 1, - aux_sym_named_imports_repeat1, + [199709] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6284), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159230] = 2, + [199720] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7466), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159240] = 3, - ACTIONS(7019), 1, - anon_sym_DOT, + [199731] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2820), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8572), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159252] = 2, + [199742] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2821), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159262] = 3, - ACTIONS(7021), 1, - anon_sym_DOT, + [199753] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7272), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8572), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159274] = 3, - ACTIONS(8574), 1, - anon_sym_EQ, + [199764] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6290), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [159286] = 2, + [199775] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2823), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, + [199786] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(10203), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159296] = 2, + anon_sym_GT, + [199795] = 3, + ACTIONS(10205), 1, + sym_identifier, + ACTIONS(10207), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7179), 3, + [199806] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [159306] = 2, + STATE(2825), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159316] = 2, + [199817] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2826), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159326] = 2, + [199828] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6293), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159336] = 2, + [199839] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6294), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8105), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159346] = 2, + [199850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159356] = 4, - ACTIONS(8577), 1, + ACTIONS(6277), 2, anon_sym_COMMA, - ACTIONS(8579), 1, - anon_sym_RPAREN, - STATE(4920), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_RBRACE, + [199859] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6297), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159370] = 2, + [199870] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6310), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159380] = 3, - ACTIONS(8581), 1, - sym_identifier, + [199881] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6325), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159392] = 2, + [199892] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6332), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8125), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159402] = 2, + [199903] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2735), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159412] = 2, + [199914] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2734), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8049), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159422] = 2, + [199925] = 3, + ACTIONS(4053), 1, + anon_sym_LPAREN, + STATE(1661), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159432] = 2, + [199936] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(10209), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159442] = 2, + anon_sym_RBRACK, + [199945] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6333), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159452] = 2, + [199956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, + ACTIONS(10211), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [199965] = 3, + ACTIONS(10213), 1, anon_sym_SEMI, - [159462] = 2, + ACTIONS(10215), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159472] = 2, + [199976] = 3, + ACTIONS(3540), 1, + anon_sym_COLON, + STATE(6043), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159482] = 2, + [199987] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8585), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159492] = 2, + anon_sym_RBRACE, + [199996] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6334), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159502] = 2, + [200007] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8047), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159512] = 4, - ACTIONS(8587), 1, - anon_sym_COMMA, - ACTIONS(8589), 1, - anon_sym_RBRACK, - STATE(4690), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [200016] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6337), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159526] = 2, + [200027] = 3, + ACTIONS(10217), 1, + sym_identifier, + ACTIONS(10219), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159536] = 2, + [200038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159546] = 2, + anon_sym_RBRACE, + [200047] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(5052), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159556] = 2, + [200058] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159566] = 2, + anon_sym_RBRACE, + [200067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 3, - sym__automatic_semicolon, + ACTIONS(6293), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159576] = 2, + anon_sym_RBRACE, + [200076] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6661), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8591), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [200087] = 3, + ACTIONS(10221), 1, anon_sym_SEMI, - [159586] = 2, + ACTIONS(10223), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8049), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159596] = 2, + [200098] = 3, + ACTIONS(10225), 1, + sym_identifier, + ACTIONS(10227), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7932), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159606] = 2, + [200109] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, - sym__automatic_semicolon, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159616] = 3, - ACTIONS(8593), 1, - sym_identifier, - ACTIONS(8595), 1, - sym_private_property_identifier, + anon_sym_RBRACE, + [200118] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7226), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159627] = 3, - ACTIONS(8597), 1, + [200129] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(819), 1, - sym_enum_body, + STATE(6386), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159638] = 3, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(3975), 1, - sym_class_body, + [200140] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159649] = 2, + ACTIONS(6277), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200149] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6387), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159658] = 3, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2640), 1, - sym_statement_block, + [200160] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159669] = 3, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2641), 1, - sym_statement_block, + ACTIONS(6277), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200169] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7278), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159680] = 3, - ACTIONS(4281), 1, - anon_sym_LBRACE, - STATE(1704), 1, - sym_statement_block, + [200180] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159691] = 2, + ACTIONS(10229), 2, + anon_sym_COMMA, + anon_sym_GT, + [200189] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2831), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8348), 2, - anon_sym_COMMA, - anon_sym_GT, - [159700] = 3, - ACTIONS(6699), 1, - anon_sym_LBRACE, - STATE(1706), 1, - sym_class_body, + [200200] = 3, + ACTIONS(10231), 1, + sym_identifier, + ACTIONS(10233), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159711] = 2, + [200211] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5981), 2, + ACTIONS(6293), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159720] = 2, + [200220] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 2, + ACTIONS(6293), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159729] = 3, - ACTIONS(7224), 1, + [200229] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2633), 1, + STATE(6176), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159740] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8599), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [159749] = 3, - ACTIONS(8601), 1, - anon_sym_LPAREN, - STATE(35), 1, - sym_parenthesized_expression, + [200240] = 3, + ACTIONS(10235), 1, + sym_identifier, + ACTIONS(10237), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159760] = 2, + [200251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 2, + ACTIONS(6293), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159769] = 3, - ACTIONS(6863), 1, - anon_sym_LBRACE, - STATE(233), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159780] = 3, - ACTIONS(6843), 1, - anon_sym_LBRACE, - STATE(850), 1, - sym_class_body, + [200260] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159791] = 3, - ACTIONS(6863), 1, + ACTIONS(6293), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200269] = 3, + ACTIONS(7630), 1, anon_sym_LBRACE, - STATE(226), 1, + STATE(2413), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159802] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5599), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159813] = 3, - ACTIONS(3520), 1, - anon_sym_LPAREN, - STATE(1242), 1, - sym_arguments, + [200280] = 3, + ACTIONS(10239), 1, + sym_identifier, + ACTIONS(10241), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159824] = 3, - ACTIONS(6843), 1, + [200291] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(825), 1, - sym_class_body, + STATE(6424), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159835] = 2, + [200302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 2, + ACTIONS(6277), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159844] = 3, + [200311] = 3, ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(5307), 1, + STATE(6434), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159855] = 2, + [200322] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5973), 2, + ACTIONS(6277), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159864] = 3, + [200331] = 3, ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(5310), 1, + STATE(6522), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159875] = 3, - ACTIONS(8605), 1, + [200342] = 3, + ACTIONS(7656), 1, + anon_sym_LBRACE, + STATE(1679), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [200353] = 3, + ACTIONS(9682), 1, sym_identifier, - ACTIONS(8607), 1, + ACTIONS(9686), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159886] = 3, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(4003), 1, - sym_class_body, + [200364] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159897] = 3, - ACTIONS(6689), 1, - anon_sym_LBRACE, - STATE(2215), 1, - sym_class_body, + ACTIONS(6277), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159908] = 3, - ACTIONS(8601), 1, - anon_sym_LPAREN, - STATE(5299), 1, - sym_parenthesized_expression, + ACTIONS(6293), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200382] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6524), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159919] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5664), 1, - sym_formal_parameters, + [200393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159930] = 3, - ACTIONS(7224), 1, + ACTIONS(6277), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200402] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2646), 1, + STATE(6530), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159941] = 3, - ACTIONS(7224), 1, + [200413] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2648), 1, + STATE(6547), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159952] = 3, - ACTIONS(7224), 1, + [200424] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2678), 1, + STATE(6549), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159963] = 3, - ACTIONS(6438), 1, + [200435] = 3, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(5725), 1, + STATE(7231), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159974] = 3, - ACTIONS(8609), 1, - anon_sym_SEMI, - ACTIONS(8611), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159985] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8343), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [159994] = 3, - ACTIONS(7224), 1, + [200446] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2620), 1, + STATE(6550), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160005] = 3, - ACTIONS(4105), 1, - anon_sym_LBRACE, - STATE(2219), 1, - sym_statement_block, + [200457] = 3, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(4090), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160016] = 2, + [200468] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8374), 2, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [160025] = 3, - ACTIONS(1719), 1, - anon_sym_LBRACE, - STATE(235), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160036] = 3, + anon_sym_RBRACE, + [200477] = 3, ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(767), 1, + STATE(6551), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160047] = 3, - ACTIONS(6699), 1, - anon_sym_LBRACE, - STATE(1684), 1, - sym_class_body, + [200488] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7250), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160058] = 3, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2649), 1, - sym_statement_block, + [200499] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160069] = 3, - ACTIONS(7224), 1, + ACTIONS(6277), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200508] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2650), 1, + STATE(6552), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160080] = 3, - ACTIONS(8613), 1, - sym_identifier, - ACTIONS(8615), 1, - sym_private_property_identifier, + [200519] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160091] = 3, - ACTIONS(6863), 1, - anon_sym_LBRACE, - STATE(207), 1, - sym_class_body, + ACTIONS(6277), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200528] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160102] = 3, - ACTIONS(8617), 1, - sym_identifier, - ACTIONS(8619), 1, - sym_private_property_identifier, + ACTIONS(6293), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200537] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160113] = 3, - ACTIONS(8621), 1, - sym_identifier, - ACTIONS(8623), 1, - sym_private_property_identifier, + ACTIONS(6293), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160124] = 2, + ACTIONS(6293), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200555] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4846), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160133] = 3, - ACTIONS(4105), 1, + ACTIONS(6293), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200564] = 3, + ACTIONS(1691), 1, anon_sym_LBRACE, - STATE(2223), 1, + STATE(228), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160144] = 3, - ACTIONS(8625), 1, - sym_identifier, - ACTIONS(8627), 1, - anon_sym_STAR, + [200575] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160155] = 3, - ACTIONS(7224), 1, + ACTIONS(6293), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200584] = 3, + ACTIONS(4075), 1, anon_sym_LBRACE, - STATE(2651), 1, + STATE(2168), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160166] = 3, - ACTIONS(6689), 1, + [200595] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2310), 1, - sym_class_body, + STATE(2832), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160177] = 3, - ACTIONS(7224), 1, + [200606] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2652), 1, + STATE(6196), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160188] = 3, - ACTIONS(8629), 1, - sym_identifier, - ACTIONS(8631), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160199] = 2, + [200617] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6711), 2, - anon_sym_in, - anon_sym_of, - [160208] = 3, - ACTIONS(7484), 1, - anon_sym_in, - ACTIONS(7486), 1, - anon_sym_of, + ACTIONS(6293), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200626] = 3, + ACTIONS(7808), 1, + anon_sym_LBRACE, + STATE(235), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160219] = 3, - ACTIONS(4281), 1, + [200637] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(1686), 1, + STATE(6553), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160230] = 3, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(5090), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160241] = 3, - ACTIONS(7944), 1, - anon_sym_from, - STATE(4339), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160252] = 3, - ACTIONS(6699), 1, - anon_sym_LBRACE, - STATE(2552), 1, - sym_class_body, + [200648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160263] = 3, - ACTIONS(7224), 1, + ACTIONS(6277), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200657] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2653), 1, + STATE(6557), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160274] = 2, + [200668] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8395), 2, + ACTIONS(6277), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160283] = 3, - ACTIONS(7224), 1, + [200677] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2632), 1, + STATE(6197), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160294] = 3, - ACTIONS(4105), 1, + [200688] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2404), 1, + STATE(6559), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160305] = 2, + [200699] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 2, + ACTIONS(6277), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160314] = 3, - ACTIONS(8633), 1, - anon_sym_SEMI, - ACTIONS(8635), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160325] = 3, - ACTIONS(8637), 1, - anon_sym_SEMI, - ACTIONS(8639), 1, - sym__automatic_semicolon, + [200708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160336] = 2, + ACTIONS(6293), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200717] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8641), 2, + ACTIONS(6293), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160345] = 3, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5395), 1, - sym_statement_block, + [200726] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160356] = 2, + ACTIONS(6293), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 2, + ACTIONS(6257), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160365] = 3, - ACTIONS(2476), 1, + [200744] = 3, + ACTIONS(7722), 1, anon_sym_LBRACE, - STATE(769), 1, - sym_statement_block, + STATE(4753), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160376] = 3, - ACTIONS(6761), 1, + [200755] = 3, + ACTIONS(7722), 1, anon_sym_LBRACE, - STATE(773), 1, + STATE(4754), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160387] = 3, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3516), 1, - sym_formal_parameters, + [200766] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2790), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160398] = 3, - ACTIONS(6761), 1, + [200777] = 3, + ACTIONS(4957), 1, anon_sym_LBRACE, - STATE(786), 1, - sym_class_body, + STATE(2960), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160409] = 3, - ACTIONS(7017), 1, + [200788] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(776), 1, + STATE(2833), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160420] = 3, - ACTIONS(7224), 1, + [200799] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2659), 1, + STATE(2789), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160431] = 2, + [200810] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2837), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160440] = 3, - ACTIONS(7224), 1, + [200821] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2660), 1, + STATE(2788), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160451] = 3, - ACTIONS(6761), 1, + [200832] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(781), 1, - sym_class_body, + STATE(2784), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160462] = 3, - ACTIONS(8643), 1, - sym_identifier, - ACTIONS(8645), 1, - sym_private_property_identifier, + [200843] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2783), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160473] = 3, - ACTIONS(8647), 1, - sym_identifier, - ACTIONS(8649), 1, - sym_private_property_identifier, + [200854] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2782), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160484] = 3, - ACTIONS(7944), 1, - anon_sym_from, - STATE(5243), 1, - sym__from_clause, + [200865] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6208), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160495] = 2, + [200876] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2781), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160504] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5589), 1, - sym_formal_parameters, + [200887] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6210), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160515] = 3, - ACTIONS(2476), 1, + [200898] = 3, + ACTIONS(7656), 1, anon_sym_LBRACE, - STATE(5124), 1, - sym_statement_block, + STATE(2613), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160526] = 3, - ACTIONS(7224), 1, + [200909] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2677), 1, + STATE(2774), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160537] = 3, - ACTIONS(6689), 1, - anon_sym_LBRACE, - STATE(2192), 1, - sym_class_body, + [200920] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160548] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5657), 1, - sym_formal_parameters, + ACTIONS(10243), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [200929] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2770), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160559] = 2, + [200940] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4716), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160568] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5744), 1, - sym_formal_parameters, + ACTIONS(10245), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [200949] = 3, + ACTIONS(7656), 1, + anon_sym_LBRACE, + STATE(1678), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160579] = 3, - ACTIONS(2476), 1, + [200960] = 3, + ACTIONS(4363), 1, anon_sym_LBRACE, - STATE(5186), 1, + STATE(1676), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160590] = 2, + [200971] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 2, + ACTIONS(9660), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [160599] = 2, + anon_sym_RPAREN, + [200980] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6221), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5981), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160608] = 3, - ACTIONS(4281), 1, + [200991] = 3, + ACTIONS(3238), 1, + anon_sym_LPAREN, + STATE(3738), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [201002] = 3, + ACTIONS(4363), 1, anon_sym_LBRACE, - STATE(1688), 1, + STATE(1671), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160619] = 3, - ACTIONS(7224), 1, + [201013] = 3, + ACTIONS(7656), 1, anon_sym_LBRACE, - STATE(2657), 1, - sym_statement_block, + STATE(1669), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160630] = 3, - ACTIONS(8601), 1, - anon_sym_LPAREN, - STATE(41), 1, - sym_parenthesized_expression, + [201024] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2740), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160641] = 3, - ACTIONS(6863), 1, + [201035] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(210), 1, - sym_class_body, + STATE(2838), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160652] = 3, - ACTIONS(7224), 1, + [201046] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2679), 1, + STATE(2839), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160663] = 2, + [201057] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 2, + ACTIONS(9557), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160672] = 3, + [201066] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2841), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [201077] = 3, ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(5196), 1, + STATE(6232), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160683] = 3, - ACTIONS(8601), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym_parenthesized_expression, + [201088] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2842), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160694] = 3, - ACTIONS(2476), 1, + [201099] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(862), 1, + STATE(2843), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160705] = 3, - ACTIONS(8601), 1, - anon_sym_LPAREN, - STATE(44), 1, - sym_parenthesized_expression, + [201110] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2844), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160716] = 2, + [201121] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8651), 2, + ACTIONS(6277), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [160725] = 3, - ACTIONS(4105), 1, + anon_sym_RBRACE, + [201130] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2194), 1, + STATE(6236), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160736] = 3, - ACTIONS(8653), 1, - anon_sym_in, - ACTIONS(8655), 1, - anon_sym_COLON, + [201141] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2845), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160747] = 3, - ACTIONS(8601), 1, - anon_sym_LPAREN, - STATE(38), 1, - sym_parenthesized_expression, + [201152] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2846), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [201163] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2847), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160758] = 3, - ACTIONS(4105), 1, + [201174] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2298), 1, + STATE(2848), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160769] = 3, - ACTIONS(7224), 1, + [201185] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2628), 1, + STATE(6241), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160780] = 3, - ACTIONS(7224), 1, + [201196] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2631), 1, + STATE(2851), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160791] = 2, + [201207] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4720), 2, + ACTIONS(10247), 2, sym__automatic_semicolon, anon_sym_SEMI, - [160800] = 3, - ACTIONS(6699), 1, - anon_sym_LBRACE, - STATE(1768), 1, - sym_class_body, + [201216] = 3, + ACTIONS(10249), 1, + anon_sym_SEMI, + ACTIONS(10251), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160811] = 3, - ACTIONS(8597), 1, + [201227] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(865), 1, - sym_enum_body, + STATE(6244), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160822] = 3, - ACTIONS(2476), 1, + [201238] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(5126), 1, + STATE(2852), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160833] = 3, - ACTIONS(8657), 1, - sym_identifier, - ACTIONS(8659), 1, - sym_private_property_identifier, + [201249] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2793), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160844] = 2, + [201260] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 2, + ACTIONS(6257), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160853] = 3, - ACTIONS(8661), 1, - sym_identifier, - ACTIONS(8663), 1, - sym_private_property_identifier, + [201269] = 3, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(2201), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160864] = 3, - ACTIONS(8439), 1, - sym_identifier, - ACTIONS(8443), 1, - sym_private_property_identifier, + [201280] = 3, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(2202), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160875] = 2, + [201291] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 2, + ACTIONS(10253), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160884] = 2, + [201300] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6902), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5973), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160893] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5807), 1, - sym_formal_parameters, + [201311] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2855), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160904] = 3, - ACTIONS(8665), 1, - sym_identifier, - ACTIONS(8667), 1, - sym_private_property_identifier, + [201322] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160915] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5531), 1, - sym_formal_parameters, + ACTIONS(10255), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201331] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2863), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160926] = 3, - ACTIONS(6438), 1, + [201342] = 3, + ACTIONS(7383), 1, anon_sym_LPAREN, - STATE(5617), 1, + STATE(7300), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160937] = 3, - ACTIONS(7944), 1, - anon_sym_from, - STATE(5169), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160948] = 3, - ACTIONS(8669), 1, - sym_identifier, - ACTIONS(8671), 1, - sym_private_property_identifier, + [201353] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160959] = 3, - ACTIONS(8673), 1, - sym_identifier, - ACTIONS(8675), 1, - sym_private_property_identifier, + ACTIONS(10257), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201362] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2865), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160970] = 3, - ACTIONS(8677), 1, - sym_identifier, - ACTIONS(8679), 1, - sym_private_property_identifier, + [201373] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2878), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160981] = 3, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8683), 1, - sym_private_property_identifier, + [201384] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7325), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160992] = 3, - ACTIONS(7944), 1, - anon_sym_from, - STATE(4252), 1, - sym__from_clause, + [201395] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2881), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161003] = 3, - ACTIONS(8685), 1, - anon_sym_COMMA, - ACTIONS(8687), 1, - anon_sym_from, + [201406] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7355), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161014] = 3, - ACTIONS(8689), 1, - sym_identifier, - ACTIONS(8691), 1, - sym_private_property_identifier, + [201417] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2786), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161025] = 3, - ACTIONS(8693), 1, - sym_identifier, - ACTIONS(8695), 1, - sym_private_property_identifier, + [201428] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161036] = 2, + ACTIONS(4788), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201437] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2883), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161045] = 3, - ACTIONS(4515), 1, - anon_sym_LPAREN, - STATE(2255), 1, - sym_arguments, + [201448] = 3, + ACTIONS(8906), 1, + anon_sym_in, + ACTIONS(8908), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161056] = 3, - ACTIONS(8697), 1, - anon_sym_LPAREN, - STATE(31), 1, - sym__for_header, + [201459] = 3, + ACTIONS(7656), 1, + anon_sym_LBRACE, + STATE(2601), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161067] = 2, + [201470] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5965), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161076] = 2, + ACTIONS(10259), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201479] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 2, + ACTIONS(10261), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161085] = 3, - ACTIONS(1719), 1, + [201488] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(209), 1, + STATE(2884), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161096] = 3, - ACTIONS(8699), 1, - anon_sym_SEMI, - ACTIONS(8701), 1, - sym__automatic_semicolon, + [201499] = 3, + ACTIONS(10263), 1, + sym_identifier, + ACTIONS(10265), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161107] = 3, - ACTIONS(6843), 1, + [201510] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(899), 1, - sym_class_body, + STATE(2886), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161118] = 3, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3266), 1, - sym_formal_parameters, + [201521] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(785), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161129] = 3, - ACTIONS(7224), 1, + [201532] = 3, + ACTIONS(4075), 1, anon_sym_LBRACE, - STATE(2680), 1, + STATE(2392), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161140] = 3, - ACTIONS(8703), 1, - sym_identifier, - ACTIONS(8705), 1, - sym_private_property_identifier, + [201543] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2887), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161151] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5577), 1, - sym_formal_parameters, + [201554] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2889), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161162] = 2, + [201565] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2891), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5985), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161171] = 3, - ACTIONS(2476), 1, + [201576] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(5168), 1, + STATE(2895), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161182] = 2, + [201587] = 3, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(2396), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8707), 2, - anon_sym_COMMA, - anon_sym_GT, - [161191] = 2, + [201598] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2898), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7342), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [161200] = 3, - ACTIONS(8709), 1, + [201609] = 3, + ACTIONS(7722), 1, anon_sym_LBRACE, - STATE(4313), 1, - sym_enum_body, + STATE(4882), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161211] = 2, + [201620] = 3, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(2429), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7418), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [161220] = 3, - ACTIONS(7224), 1, + [201631] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2655), 1, + STATE(2899), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161231] = 2, + [201642] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(6352), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161240] = 2, + [201653] = 3, + ACTIONS(10267), 1, + anon_sym_in, + ACTIONS(10269), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7324), 2, + [201664] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [161249] = 3, - ACTIONS(6689), 1, + STATE(2900), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [201675] = 3, + ACTIONS(7630), 1, anon_sym_LBRACE, - STATE(2338), 1, + STATE(2444), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161260] = 2, + [201686] = 3, + ACTIONS(7722), 1, + anon_sym_LBRACE, + STATE(4926), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8711), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161269] = 3, - ACTIONS(6689), 1, + [201697] = 3, + ACTIONS(7722), 1, anon_sym_LBRACE, - STATE(2256), 1, + STATE(4932), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161280] = 3, - ACTIONS(7224), 1, + [201708] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2635), 1, + STATE(2742), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161291] = 3, - ACTIONS(4105), 1, + [201719] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2339), 1, + STATE(2741), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161302] = 3, - ACTIONS(8713), 1, - sym_identifier, - ACTIONS(8715), 1, - sym_private_property_identifier, + [201730] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2751), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161313] = 2, + [201741] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2758), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5985), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161322] = 3, - ACTIONS(4105), 1, + [201752] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2340), 1, + STATE(2659), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161333] = 3, - ACTIONS(6689), 1, + [201763] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6332), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201772] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2341), 1, - sym_class_body, + STATE(6347), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161344] = 3, - ACTIONS(8717), 1, - sym_identifier, - ACTIONS(8719), 1, - sym_private_property_identifier, + [201783] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2812), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161355] = 3, - ACTIONS(8721), 1, - sym_identifier, - ACTIONS(8723), 1, - sym_private_property_identifier, + [201794] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161366] = 3, - ACTIONS(4105), 1, + ACTIONS(9629), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201803] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2386), 1, + STATE(2761), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161377] = 3, - ACTIONS(2476), 1, + [201814] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(5173), 1, + STATE(2762), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161388] = 3, - ACTIONS(8725), 1, - sym_identifier, - ACTIONS(8727), 1, - sym_private_property_identifier, + [201825] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2763), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161399] = 3, - ACTIONS(7224), 1, + [201836] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2642), 1, + STATE(2764), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161410] = 3, - ACTIONS(4031), 1, - anon_sym_LPAREN, - STATE(1679), 1, - sym_arguments, + [201847] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2760), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161421] = 2, + [201858] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2877), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8729), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161430] = 3, - ACTIONS(7224), 1, + [201869] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2645), 1, + STATE(6576), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161441] = 3, - ACTIONS(8731), 1, - sym_identifier, - ACTIONS(8733), 1, - sym_private_property_identifier, + [201880] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2683), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161452] = 3, - ACTIONS(8735), 1, - anon_sym_SEMI, - ACTIONS(8737), 1, - sym__automatic_semicolon, + [201891] = 3, + ACTIONS(9236), 1, + anon_sym_from, + STATE(4895), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161463] = 2, + [201902] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2902), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8739), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161472] = 3, - ACTIONS(7224), 1, + [201913] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2644), 1, + STATE(2705), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161483] = 3, - ACTIONS(7224), 1, + [201924] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2661), 1, + STATE(2903), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161494] = 3, - ACTIONS(7224), 1, + [201935] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2662), 1, + STATE(2905), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161505] = 3, - ACTIONS(2476), 1, + [201946] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(799), 1, + STATE(2908), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161516] = 3, - ACTIONS(6024), 1, - anon_sym_LPAREN, - STATE(2759), 1, - sym_arguments, + [201957] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2707), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161527] = 3, - ACTIONS(8135), 1, - sym_identifier, - ACTIONS(8139), 1, - sym_private_property_identifier, + [201968] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2720), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161538] = 2, + [201979] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2746), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8741), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161547] = 3, - ACTIONS(6689), 1, + [201990] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2385), 1, - sym_class_body, + STATE(2750), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161558] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(4127), 1, - sym_formal_parameters, + [202001] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2753), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161569] = 3, - ACTIONS(7224), 1, + [202012] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2666), 1, + STATE(2754), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161580] = 3, - ACTIONS(8743), 1, - anon_sym_SEMI, - ACTIONS(8745), 1, - sym__automatic_semicolon, + [202023] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2913), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161591] = 3, - ACTIONS(6761), 1, + [202034] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(3892), 1, - sym_class_body, + STATE(2914), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161602] = 3, - ACTIONS(7224), 1, + [202045] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(2755), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161613] = 3, - ACTIONS(6689), 1, + [202056] = 3, + ACTIONS(7722), 1, anon_sym_LBRACE, - STATE(2182), 1, + STATE(755), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161624] = 3, - ACTIONS(8747), 1, + [202067] = 3, + ACTIONS(10271), 1, sym_identifier, - ACTIONS(8749), 1, - sym_private_property_identifier, + STATE(5703), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161635] = 3, - ACTIONS(8751), 1, - sym_identifier, - STATE(5069), 1, - sym_nested_identifier, + [202078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161646] = 3, - ACTIONS(6761), 1, + ACTIONS(10273), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202087] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(766), 1, - sym_class_body, + STATE(2756), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161657] = 3, - ACTIONS(6761), 1, + [202098] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(3929), 1, - sym_class_body, + STATE(2757), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161668] = 3, - ACTIONS(8251), 1, - sym_identifier, - ACTIONS(8255), 1, - sym_private_property_identifier, + [202109] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2915), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161679] = 3, - ACTIONS(8753), 1, - sym_identifier, - ACTIONS(8755), 1, - sym_private_property_identifier, + [202120] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7443), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161690] = 3, - ACTIONS(8757), 1, + [202131] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(849), 1, - sym_switch_body, + STATE(2759), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161701] = 2, + [202142] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2773), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8759), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161710] = 3, - ACTIONS(6699), 1, + [202153] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2568), 1, - sym_class_body, + STATE(2739), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161721] = 2, + [202164] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7441), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7356), 2, + [202175] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [161730] = 2, + STATE(2738), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8761), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161739] = 3, - ACTIONS(3534), 1, - anon_sym_COLON, - STATE(5393), 1, - sym_type_annotation, + [202186] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7397), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161750] = 3, - ACTIONS(8697), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym__for_header, + [202197] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2787), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161761] = 3, - ACTIONS(4925), 1, + [202208] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2693), 1, + STATE(2800), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161772] = 2, + [202219] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2802), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161781] = 2, + [202230] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2803), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8763), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161790] = 3, - ACTIONS(2476), 1, + [202241] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(5249), 1, + STATE(2804), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161801] = 2, + [202252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5965), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161810] = 3, - ACTIONS(2476), 1, + ACTIONS(10275), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202261] = 3, + ACTIONS(10277), 1, + anon_sym_SEMI, + ACTIONS(10279), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [202272] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(5256), 1, + STATE(2806), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161821] = 3, - ACTIONS(8765), 1, - sym_identifier, - ACTIONS(8767), 1, - sym_private_property_identifier, + [202283] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2916), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161832] = 3, - ACTIONS(8769), 1, - sym_identifier, - ACTIONS(8771), 1, - sym_private_property_identifier, + [202294] = 3, + ACTIONS(10281), 1, + anon_sym_LBRACE, + STATE(6850), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161843] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3957), 1, - sym_formal_parameters, + [202305] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2807), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161854] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5444), 1, - sym_formal_parameters, + [202316] = 3, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(2174), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161865] = 3, - ACTIONS(2476), 1, + [202327] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(5195), 1, + STATE(2808), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161876] = 2, + [202338] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8773), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [161885] = 3, - ACTIONS(8775), 1, - sym_identifier, - ACTIONS(8777), 1, - sym_private_property_identifier, + ACTIONS(8724), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [202347] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2809), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161896] = 3, - ACTIONS(6689), 1, - anon_sym_LBRACE, - STATE(2387), 1, - sym_class_body, + [202358] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161907] = 3, - ACTIONS(6689), 1, + ACTIONS(8720), 2, anon_sym_LBRACE, - STATE(2225), 1, - sym_class_body, + anon_sym_EQ_GT, + [202367] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2810), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [202378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161918] = 3, - ACTIONS(6699), 1, + ACTIONS(8716), 2, anon_sym_LBRACE, - STATE(1666), 1, - sym_class_body, + anon_sym_EQ_GT, + [202387] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2811), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161929] = 3, - ACTIONS(4281), 1, + [202398] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(1668), 1, + STATE(2944), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161940] = 3, - ACTIONS(4281), 1, + [202409] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(1671), 1, + STATE(2813), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161951] = 3, - ACTIONS(6438), 1, + [202420] = 3, + ACTIONS(4579), 1, anon_sym_LPAREN, - STATE(5707), 1, - sym_formal_parameters, + STATE(2172), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [202431] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161962] = 2, + [202442] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8505), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [161971] = 3, - ACTIONS(6699), 1, + ACTIONS(10283), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202451] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2555), 1, - sym_class_body, + STATE(2818), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161982] = 3, - ACTIONS(8779), 1, - sym_identifier, - ACTIONS(8781), 1, - sym_private_property_identifier, + [202462] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2819), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161993] = 2, + [202473] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2827), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8512), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162002] = 3, - ACTIONS(4281), 1, + [202484] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(1775), 1, + STATE(2828), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162013] = 2, + [202495] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2835), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8783), 2, - anon_sym_COMMA, - anon_sym_GT, - [162022] = 3, - ACTIONS(8785), 1, - anon_sym_LBRACE, - STATE(5425), 1, - sym_object, + [202506] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162033] = 3, - ACTIONS(8787), 1, - sym_identifier, - ACTIONS(8789), 1, - anon_sym_STAR, + ACTIONS(6207), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202515] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2917), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162044] = 3, - ACTIONS(8601), 1, + [202526] = 3, + ACTIONS(3497), 1, anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, + STATE(3035), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162055] = 2, + [202537] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8791), 2, + ACTIONS(9096), 2, sym__automatic_semicolon, anon_sym_SEMI, - [162064] = 2, + [202546] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2918), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8793), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162073] = 3, - ACTIONS(8795), 1, - sym_identifier, - ACTIONS(8797), 1, - sym_private_property_identifier, + [202557] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162084] = 3, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2674), 1, - sym_statement_block, + ACTIONS(6207), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202566] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162095] = 3, - ACTIONS(6689), 1, + ACTIONS(6207), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202575] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2201), 1, - sym_class_body, + STATE(2920), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162106] = 3, - ACTIONS(8799), 1, - sym_identifier, - ACTIONS(8801), 1, - sym_private_property_identifier, + [202586] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2840), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162117] = 3, - ACTIONS(7224), 1, + [202597] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2639), 1, + STATE(2856), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162128] = 3, - ACTIONS(8803), 1, - sym_identifier, - ACTIONS(8805), 1, - sym_private_property_identifier, + [202608] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2860), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162139] = 3, - ACTIONS(6699), 1, + [202619] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(1698), 1, - sym_class_body, + STATE(2854), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162150] = 3, - ACTIONS(7224), 1, + [202630] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2675), 1, + STATE(2861), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162161] = 3, - ACTIONS(8807), 1, + [202641] = 3, + ACTIONS(10285), 1, sym_identifier, - STATE(4641), 1, - sym_nested_identifier, + ACTIONS(10287), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162172] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5539), 1, - sym_formal_parameters, + [202652] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2864), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162183] = 3, - ACTIONS(8809), 1, - sym_identifier, - ACTIONS(8811), 1, - anon_sym_STAR, + [202663] = 3, + ACTIONS(7375), 1, + anon_sym_COLON, + STATE(5705), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162194] = 3, - ACTIONS(7224), 1, + [202674] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2625), 1, + STATE(2924), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162205] = 3, - ACTIONS(6761), 1, + [202685] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(3940), 1, - sym_class_body, + STATE(2866), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162216] = 2, + [202696] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8813), 2, + ACTIONS(10289), 2, anon_sym_COMMA, - anon_sym_GT, - [162225] = 3, - ACTIONS(7224), 1, + anon_sym_RBRACE, + [202705] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2634), 1, + STATE(2931), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162236] = 3, - ACTIONS(6761), 1, - anon_sym_LBRACE, - STATE(3941), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162247] = 3, - ACTIONS(6689), 1, + [202716] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2232), 1, - sym_class_body, + STATE(2932), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162258] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5637), 1, - sym_formal_parameters, + [202727] = 3, + ACTIONS(10291), 1, + sym_identifier, + ACTIONS(10293), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162269] = 2, + [202738] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2868), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8815), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162278] = 3, - ACTIONS(4105), 1, + [202749] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2234), 1, + STATE(2933), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162289] = 3, - ACTIONS(7224), 1, + [202760] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2629), 1, + STATE(2869), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162300] = 3, - ACTIONS(8530), 1, + [202771] = 3, + ACTIONS(10295), 1, sym_identifier, - ACTIONS(8534), 1, + ACTIONS(10297), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162311] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3971), 1, - sym_formal_parameters, + [202782] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2870), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162322] = 3, - ACTIONS(8817), 1, - sym_identifier, - ACTIONS(8819), 1, - sym_private_property_identifier, + [202793] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2871), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162333] = 3, - ACTIONS(7224), 1, + [202804] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2630), 1, + STATE(2934), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162344] = 3, - ACTIONS(8821), 1, - sym_identifier, - ACTIONS(8823), 1, - sym_private_property_identifier, + [202815] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2872), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162355] = 3, - ACTIONS(6699), 1, + [202826] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(1635), 1, - sym_class_body, + STATE(2873), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162366] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5676), 1, - sym_formal_parameters, + [202837] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2874), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162377] = 3, - ACTIONS(8825), 1, - sym_identifier, - ACTIONS(8827), 1, - sym_private_property_identifier, + [202848] = 3, + ACTIONS(10123), 1, + anon_sym_LBRACE, + STATE(829), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162388] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5769), 1, - sym_formal_parameters, + [202859] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2876), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162399] = 3, - ACTIONS(8829), 1, - sym_identifier, - ACTIONS(8831), 1, - sym_private_property_identifier, + [202870] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2922), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162410] = 3, - ACTIONS(4281), 1, + [202881] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(1699), 1, + STATE(2879), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162421] = 3, - ACTIONS(6426), 1, - anon_sym_LPAREN, - STATE(3336), 1, - sym_formal_parameters, + [202892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162432] = 3, - ACTIONS(4281), 1, + ACTIONS(10299), 2, + anon_sym_COMMA, + anon_sym_GT, + [202901] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(1700), 1, + STATE(2885), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162443] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(4013), 1, - sym_formal_parameters, + [202912] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2936), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162454] = 3, - ACTIONS(8833), 1, - sym_identifier, - ACTIONS(8835), 1, - sym_private_property_identifier, + [202923] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2888), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162465] = 3, - ACTIONS(6699), 1, + [202934] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(1701), 1, - sym_class_body, + STATE(2892), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [202945] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2893), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162476] = 3, - ACTIONS(7017), 1, + [202956] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(3978), 1, + STATE(2894), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162487] = 3, - ACTIONS(7224), 1, + [202967] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2623), 1, + STATE(2907), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162498] = 3, - ACTIONS(6699), 1, - anon_sym_LBRACE, - STATE(2557), 1, - sym_class_body, + [202978] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(7197), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162509] = 3, - ACTIONS(8837), 1, - sym_identifier, - ACTIONS(8839), 1, - sym_private_property_identifier, + [202989] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162520] = 3, - ACTIONS(8841), 1, - sym_identifier, - ACTIONS(8843), 1, - sym_private_property_identifier, + [203000] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2911), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162531] = 2, + [203011] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2912), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8845), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162540] = 3, - ACTIONS(8847), 1, - sym_identifier, - ACTIONS(8849), 1, - sym_private_property_identifier, + [203022] = 3, + ACTIONS(3540), 1, + anon_sym_COLON, + STATE(6729), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162551] = 2, + [203033] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2919), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1705), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162560] = 3, - ACTIONS(7224), 1, + [203044] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2637), 1, + STATE(2926), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162571] = 3, - ACTIONS(4105), 1, + [203055] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2205), 1, + STATE(2939), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162582] = 3, - ACTIONS(7224), 1, + [203066] = 3, + ACTIONS(7383), 1, + anon_sym_LPAREN, + STATE(4810), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [203077] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2670), 1, + STATE(2930), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162593] = 2, + [203088] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2935), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8851), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162602] = 3, - ACTIONS(8853), 1, - anon_sym_SEMI, - ACTIONS(8855), 1, - sym__automatic_semicolon, + [203099] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2816), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162613] = 3, - ACTIONS(6689), 1, + [203110] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2235), 1, - sym_class_body, + STATE(2767), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162624] = 3, - ACTIONS(6699), 1, + [203121] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(1682), 1, - sym_class_body, + STATE(2768), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162635] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5715), 1, - sym_formal_parameters, + [203132] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2824), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162646] = 3, - ACTIONS(7017), 1, + [203143] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(4243), 1, + STATE(2737), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162657] = 3, - ACTIONS(4105), 1, + [203154] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2237), 1, + STATE(2736), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162668] = 3, - ACTIONS(3534), 1, - anon_sym_COLON, - STATE(5317), 1, - sym_type_annotation, + [203165] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2890), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162679] = 3, - ACTIONS(7017), 1, + [203176] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(3983), 1, + STATE(2896), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162690] = 2, + [203187] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8857), 2, + ACTIONS(6253), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [162699] = 2, + anon_sym_RBRACE, + [203196] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8859), 2, + ACTIONS(6253), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [162708] = 2, + anon_sym_RBRACE, + [203205] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6007), 2, + ACTIONS(6253), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162717] = 2, + [203214] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8562), 2, + ACTIONS(6253), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162726] = 3, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(5400), 1, - sym_statement_block, + [203223] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162737] = 3, - ACTIONS(7224), 1, - anon_sym_LBRACE, - STATE(2627), 1, - sym_statement_block, + ACTIONS(6253), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203232] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162748] = 3, - ACTIONS(2476), 1, + ACTIONS(6253), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203241] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(5222), 1, + STATE(2940), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162759] = 2, + [203252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6020), 2, + ACTIONS(6231), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162768] = 3, - ACTIONS(8861), 1, - anon_sym_SEMI, - ACTIONS(8863), 1, - sym__automatic_semicolon, + [203261] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2941), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162779] = 3, - ACTIONS(7224), 1, + [203272] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2624), 1, + STATE(2942), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162790] = 3, - ACTIONS(6689), 1, + [203283] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2262), 1, - sym_class_body, + STATE(6971), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162801] = 2, + [203294] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4953), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162810] = 3, - ACTIONS(4105), 1, + ACTIONS(9562), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203303] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2265), 1, + STATE(2943), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162821] = 3, - ACTIONS(7224), 1, + [203314] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2638), 1, + STATE(2882), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162832] = 3, - ACTIONS(6689), 1, - anon_sym_LBRACE, - STATE(2238), 1, - sym_class_body, + [203325] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162843] = 3, + ACTIONS(6231), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203334] = 3, ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(718), 1, + STATE(6976), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162854] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8865), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162863] = 3, - ACTIONS(6843), 1, + [203345] = 3, + ACTIONS(4075), 1, anon_sym_LBRACE, - STATE(891), 1, - sym_class_body, + STATE(2344), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162874] = 2, + [203356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8109), 2, + ACTIONS(6231), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [162883] = 2, + anon_sym_RBRACE, + [203365] = 3, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(2338), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8867), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162892] = 3, - ACTIONS(7224), 1, + [203376] = 3, + ACTIONS(2476), 1, anon_sym_LBRACE, - STATE(2671), 1, + STATE(6977), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162903] = 2, + [203387] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7726), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162912] = 2, + ACTIONS(6253), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203396] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8869), 2, + ACTIONS(10301), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [162921] = 3, - ACTIONS(8709), 1, + anon_sym_RPAREN, + [203405] = 3, + ACTIONS(7630), 1, anon_sym_LBRACE, - STATE(4251), 1, - sym_enum_body, + STATE(2208), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162932] = 3, - ACTIONS(3250), 1, - anon_sym_LPAREN, - STATE(3710), 1, - sym_formal_parameters, + [203416] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2945), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162943] = 3, - ACTIONS(7017), 1, - anon_sym_LBRACE, - STATE(784), 1, - sym_statement_block, + [203427] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162954] = 3, - ACTIONS(8871), 1, - sym_identifier, - ACTIONS(8873), 1, - sym_private_property_identifier, + ACTIONS(6253), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203436] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162965] = 2, + ACTIONS(6253), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203445] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8875), 2, + ACTIONS(6253), 2, anon_sym_COMMA, - anon_sym_GT, - [162974] = 3, - ACTIONS(8359), 1, - sym_identifier, - ACTIONS(8363), 1, - sym_private_property_identifier, + anon_sym_RBRACE, + [203454] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162985] = 3, - ACTIONS(8877), 1, - anon_sym_SEMI, - ACTIONS(8879), 1, - sym__automatic_semicolon, + ACTIONS(6253), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203463] = 3, + ACTIONS(7808), 1, + anon_sym_LBRACE, + STATE(223), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162996] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5611), 1, - sym_formal_parameters, + [203474] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163007] = 3, - ACTIONS(8881), 1, - anon_sym_SEMI, - ACTIONS(8883), 1, - sym__automatic_semicolon, + ACTIONS(6253), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203483] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2948), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163018] = 2, + [203494] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8885), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163027] = 3, - ACTIONS(6761), 1, + ACTIONS(6253), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203503] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(3962), 1, - sym_class_body, + STATE(2910), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163038] = 3, - ACTIONS(8887), 1, - sym_identifier, - ACTIONS(8889), 1, - anon_sym_STAR, + [203514] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163049] = 3, - ACTIONS(8891), 1, - anon_sym_LPAREN, - STATE(785), 1, - sym_parenthesized_expression, + ACTIONS(6253), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203523] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163060] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5621), 1, - sym_formal_parameters, + ACTIONS(6253), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203532] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2949), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163071] = 2, + [203543] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4789), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163080] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(4304), 1, - sym_formal_parameters, + ACTIONS(6253), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203552] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163091] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5634), 1, - sym_formal_parameters, + ACTIONS(6261), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203561] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2923), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163102] = 3, - ACTIONS(6689), 1, + [203572] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(2208), 1, - sym_class_body, + STATE(2925), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163113] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(4308), 1, - sym_formal_parameters, + [203583] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2937), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163124] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(5644), 1, - sym_formal_parameters, + [203594] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2956), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163135] = 3, - ACTIONS(6761), 1, + [203605] = 3, + ACTIONS(8153), 1, anon_sym_LBRACE, - STATE(3972), 1, - sym_class_body, + STATE(2955), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163146] = 3, - ACTIONS(6438), 1, - anon_sym_LPAREN, - STATE(3743), 1, - sym_formal_parameters, + [203616] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2954), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163157] = 2, + [203627] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2953), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8893), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163166] = 2, + [203638] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2952), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8895), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163175] = 2, + [203649] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2951), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8897), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [163184] = 2, - ACTIONS(8899), 1, - sym_identifier, + [203660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163192] = 2, - ACTIONS(8901), 1, + ACTIONS(9582), 2, + anon_sym_COMMA, anon_sym_RBRACK, + [203669] = 3, + ACTIONS(2476), 1, + anon_sym_LBRACE, + STATE(827), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163200] = 2, - ACTIONS(8903), 1, - sym_identifier, + [203680] = 3, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(2950), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163208] = 2, - ACTIONS(8905), 1, - anon_sym_EQ_GT, + [203691] = 3, + ACTIONS(10303), 1, + anon_sym_LPAREN, + STATE(780), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163216] = 2, - ACTIONS(8907), 1, + [203702] = 2, + ACTIONS(10305), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163224] = 2, - ACTIONS(8909), 1, + [203710] = 2, + ACTIONS(10307), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163232] = 2, - ACTIONS(8911), 1, - sym_identifier, + [203718] = 2, + ACTIONS(10309), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163240] = 2, - ACTIONS(8913), 1, - anon_sym_symbol, + [203726] = 2, + ACTIONS(10311), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163248] = 2, - ACTIONS(8915), 1, + [203734] = 2, + ACTIONS(10313), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163256] = 2, - ACTIONS(5399), 1, - anon_sym_in, + [203742] = 2, + ACTIONS(10315), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163264] = 2, - ACTIONS(8917), 1, + [203750] = 2, + ACTIONS(10317), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163272] = 2, - ACTIONS(8919), 1, - anon_sym_DOT, + [203758] = 2, + ACTIONS(10319), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163280] = 2, - ACTIONS(8921), 1, + [203766] = 2, + ACTIONS(10321), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163288] = 2, - ACTIONS(8923), 1, - anon_sym_EQ_GT, + [203774] = 2, + ACTIONS(5536), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163296] = 2, - ACTIONS(8925), 1, + [203782] = 2, + ACTIONS(10323), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163304] = 2, - ACTIONS(8927), 1, - anon_sym_RBRACK, + [203790] = 2, + ACTIONS(5604), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163312] = 2, - ACTIONS(8929), 1, + [203798] = 2, + ACTIONS(10325), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163320] = 2, - ACTIONS(8931), 1, - anon_sym_as, + [203806] = 2, + ACTIONS(10327), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163328] = 2, - ACTIONS(8933), 1, - anon_sym_readonly, + [203814] = 2, + ACTIONS(10329), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163336] = 2, - ACTIONS(8935), 1, + [203822] = 2, + ACTIONS(10331), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163344] = 2, - ACTIONS(8937), 1, - anon_sym_RPAREN, + [203830] = 2, + ACTIONS(9613), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163352] = 2, - ACTIONS(4323), 1, - anon_sym_RPAREN, + [203838] = 2, + ACTIONS(10333), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163360] = 2, - ACTIONS(8939), 1, - anon_sym_EQ, + [203846] = 2, + ACTIONS(10335), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163368] = 2, - ACTIONS(8941), 1, - anon_sym_LBRACK, + [203854] = 2, + ACTIONS(10337), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163376] = 2, - ACTIONS(8943), 1, - anon_sym_RBRACK, + [203862] = 2, + ACTIONS(10339), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163384] = 2, - ACTIONS(8945), 1, + [203870] = 2, + ACTIONS(10341), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163392] = 2, - ACTIONS(8947), 1, - anon_sym_RBRACK, + [203878] = 2, + ACTIONS(10343), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163400] = 2, - ACTIONS(8949), 1, - sym_number, + [203886] = 2, + ACTIONS(10345), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163408] = 2, - ACTIONS(4131), 1, - anon_sym_RPAREN, + [203894] = 2, + ACTIONS(10347), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163416] = 2, - ACTIONS(8951), 1, - anon_sym_EQ, + [203902] = 2, + ACTIONS(10349), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8953), 1, - anon_sym_SLASH2, - [163434] = 2, - ACTIONS(5057), 1, - anon_sym_is, + [203910] = 2, + ACTIONS(10351), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163442] = 2, - ACTIONS(8265), 1, - anon_sym_RBRACK, + [203918] = 2, + ACTIONS(5411), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163450] = 2, - ACTIONS(6418), 1, - anon_sym_is, + [203926] = 2, + ACTIONS(10353), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163458] = 2, - ACTIONS(8955), 1, - sym_identifier, + [203934] = 2, + ACTIONS(10355), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163466] = 2, - ACTIONS(8957), 1, - sym_number, + [203942] = 2, + ACTIONS(5082), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163474] = 2, - ACTIONS(4997), 1, + [203950] = 2, + ACTIONS(8631), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163482] = 2, - ACTIONS(8959), 1, - anon_sym_RBRACK, + [203958] = 2, + ACTIONS(10357), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163490] = 2, - ACTIONS(8961), 1, + [203966] = 2, + ACTIONS(10359), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163498] = 2, - ACTIONS(8963), 1, - sym_identifier, + [203974] = 2, + ACTIONS(5157), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163506] = 2, - ACTIONS(8965), 1, + [203982] = 2, + ACTIONS(10361), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163514] = 2, - ACTIONS(8967), 1, - anon_sym_RBRACK, + [203990] = 2, + ACTIONS(10363), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163522] = 2, - ACTIONS(8969), 1, - sym_number, + [203998] = 2, + ACTIONS(10365), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163530] = 2, - ACTIONS(8971), 1, - anon_sym_symbol, - ACTIONS(5), 2, - sym_html_comment, + [204006] = 3, + ACTIONS(3), 1, sym_comment, - [163538] = 2, - ACTIONS(8973), 1, - sym_identifier, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10367), 1, + sym_regex_pattern, + [204016] = 2, + ACTIONS(10369), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163546] = 2, - ACTIONS(8975), 1, - sym_identifier, + [204024] = 2, + ACTIONS(10371), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163554] = 2, - ACTIONS(8977), 1, + [204032] = 2, + ACTIONS(10373), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163562] = 2, - ACTIONS(8979), 1, + [204040] = 2, + ACTIONS(10375), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163570] = 2, - ACTIONS(8981), 1, - anon_sym_symbol, + [204048] = 2, + ACTIONS(10377), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163578] = 2, - ACTIONS(8983), 1, - anon_sym_COLON, + [204056] = 2, + ACTIONS(9572), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163586] = 2, - ACTIONS(8985), 1, - anon_sym_RPAREN, + [204064] = 2, + ACTIONS(10379), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163594] = 2, - ACTIONS(8987), 1, - anon_sym_RBRACK, + [204072] = 2, + ACTIONS(10381), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163602] = 2, - ACTIONS(7298), 1, - sym_identifier, + [204080] = 2, + ACTIONS(10383), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163610] = 2, - ACTIONS(8989), 1, - sym_identifier, + [204088] = 2, + ACTIONS(5013), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163618] = 2, - ACTIONS(8991), 1, - anon_sym_EQ_GT, + [204096] = 2, + ACTIONS(10385), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163626] = 2, - ACTIONS(8993), 1, - anon_sym_DOT, + [204104] = 2, + ACTIONS(10387), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163634] = 2, - ACTIONS(8995), 1, - anon_sym_RBRACK, + [204112] = 2, + ACTIONS(10389), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163642] = 2, - ACTIONS(8997), 1, + [204120] = 2, + ACTIONS(10391), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163650] = 2, - ACTIONS(8999), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163658] = 2, - ACTIONS(9001), 1, + [204128] = 2, + ACTIONS(10393), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163666] = 2, - ACTIONS(9003), 1, - anon_sym_EQ_GT, + [204136] = 2, + ACTIONS(10395), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163674] = 2, - ACTIONS(5526), 1, + [204144] = 2, + ACTIONS(5187), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163682] = 2, - ACTIONS(9005), 1, - anon_sym_EQ_GT, + [204152] = 2, + ACTIONS(10397), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163690] = 2, - ACTIONS(9007), 1, - anon_sym_RBRACK, + [204160] = 2, + ACTIONS(10399), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163698] = 2, - ACTIONS(9009), 1, - anon_sym_EQ_GT, + [204168] = 2, + ACTIONS(10401), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163706] = 2, - ACTIONS(9011), 1, + [204176] = 2, + ACTIONS(10403), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163714] = 2, - ACTIONS(9013), 1, - anon_sym_EQ_GT, + [204184] = 2, + ACTIONS(10405), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163722] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9015), 1, - sym_regex_pattern, - [163732] = 2, - ACTIONS(9017), 1, + [204192] = 2, + ACTIONS(10407), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163740] = 2, - ACTIONS(9019), 1, - anon_sym_RBRACK, + [204200] = 2, + ACTIONS(10409), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163748] = 2, - ACTIONS(9021), 1, - sym_identifier, + [204208] = 2, + ACTIONS(10411), 1, + anon_sym_require, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163756] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9023), 1, - anon_sym_SLASH2, - [163766] = 2, - ACTIONS(9025), 1, - sym_identifier, + [204216] = 2, + ACTIONS(10413), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163774] = 2, - ACTIONS(9027), 1, - anon_sym_RBRACK, + [204224] = 2, + ACTIONS(5039), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163782] = 2, - ACTIONS(9029), 1, - anon_sym_EQ, + [204232] = 2, + ACTIONS(10415), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163790] = 2, - ACTIONS(9031), 1, + [204240] = 2, + ACTIONS(10417), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163798] = 2, - ACTIONS(9033), 1, - anon_sym_EQ_GT, + [204248] = 2, + ACTIONS(10419), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163806] = 2, - ACTIONS(9035), 1, - sym_number, + [204256] = 2, + ACTIONS(10421), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163814] = 2, - ACTIONS(9037), 1, - anon_sym_EQ_GT, + [204264] = 2, + ACTIONS(10423), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163822] = 2, - ACTIONS(9039), 1, - anon_sym_EQ, + [204272] = 2, + ACTIONS(10425), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163830] = 2, - ACTIONS(9041), 1, - anon_sym_RBRACK, + [204280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10427), 1, + sym_regex_pattern, + [204290] = 2, + ACTIONS(10429), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163838] = 2, - ACTIONS(9043), 1, - anon_sym_RPAREN, + [204298] = 2, + ACTIONS(10431), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163846] = 2, - ACTIONS(9045), 1, - anon_sym_EQ_GT, + [204306] = 2, + ACTIONS(10433), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163854] = 2, - ACTIONS(9047), 1, + [204314] = 2, + ACTIONS(10435), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163862] = 2, - ACTIONS(9049), 1, - sym_identifier, + [204322] = 2, + ACTIONS(10437), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163870] = 2, - ACTIONS(9051), 1, - sym_identifier, + [204330] = 2, + ACTIONS(10439), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163878] = 2, - ACTIONS(9053), 1, + [204338] = 2, + ACTIONS(10441), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163886] = 2, - ACTIONS(5087), 1, - anon_sym_in, + [204346] = 2, + ACTIONS(10443), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163894] = 2, - ACTIONS(9055), 1, + [204354] = 2, + ACTIONS(10445), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163902] = 2, - ACTIONS(9057), 1, - anon_sym_RBRACK, + [204362] = 2, + ACTIONS(10447), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163910] = 2, - ACTIONS(9059), 1, + [204370] = 2, + ACTIONS(10449), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163918] = 2, - ACTIONS(9061), 1, - anon_sym_RBRACK, + [204378] = 2, + ACTIONS(5950), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163926] = 2, - ACTIONS(9063), 1, - anon_sym_class, + [204386] = 2, + ACTIONS(10451), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163934] = 2, - ACTIONS(9065), 1, - anon_sym_EQ_GT, + [204394] = 2, + ACTIONS(10453), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163942] = 2, - ACTIONS(9067), 1, - anon_sym_EQ_GT, + [204402] = 2, + ACTIONS(10455), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163950] = 2, - ACTIONS(9069), 1, - anon_sym_EQ_GT, + [204410] = 2, + ACTIONS(10457), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163958] = 2, - ACTIONS(9071), 1, - anon_sym_EQ_GT, + [204418] = 2, + ACTIONS(10459), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163966] = 2, - ACTIONS(4199), 1, - anon_sym_RPAREN, + [204426] = 2, + ACTIONS(10461), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163974] = 2, - ACTIONS(9073), 1, - anon_sym_EQ_GT, + [204434] = 2, + ACTIONS(10463), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163982] = 2, - ACTIONS(9075), 1, + [204442] = 2, + ACTIONS(10465), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163990] = 2, - ACTIONS(9077), 1, - anon_sym_from, + [204450] = 2, + ACTIONS(10467), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163998] = 2, - ACTIONS(9079), 1, - sym_identifier, + [204458] = 2, + ACTIONS(10469), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164006] = 2, - ACTIONS(9081), 1, - sym_identifier, + [204466] = 2, + ACTIONS(4437), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164014] = 2, - ACTIONS(9083), 1, - sym_identifier, + [204474] = 2, + ACTIONS(10471), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164022] = 2, - ACTIONS(9085), 1, - anon_sym_RBRACK, + [204482] = 2, + ACTIONS(10473), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164030] = 2, - ACTIONS(9087), 1, - anon_sym_RBRACK, + [204490] = 2, + ACTIONS(7662), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164038] = 2, - ACTIONS(4598), 1, - anon_sym_in, + [204498] = 2, + ACTIONS(10475), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164046] = 2, - ACTIONS(5172), 1, - anon_sym_in, + [204506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10477), 1, + anon_sym_SLASH2, + [204516] = 2, + ACTIONS(10479), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164054] = 2, - ACTIONS(4079), 1, - anon_sym_is, + [204524] = 2, + ACTIONS(9907), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164062] = 2, - ACTIONS(9089), 1, + [204532] = 2, + ACTIONS(10481), 1, anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164070] = 2, - ACTIONS(9091), 1, - anon_sym_while, + [204540] = 2, + ACTIONS(10483), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164078] = 2, - ACTIONS(9093), 1, - anon_sym_EQ_GT, + [204548] = 2, + ACTIONS(10485), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164086] = 2, - ACTIONS(9095), 1, - sym_number, + [204556] = 2, + ACTIONS(10487), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164094] = 2, - ACTIONS(9097), 1, - anon_sym_EQ, + [204564] = 2, + ACTIONS(10489), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164102] = 2, - ACTIONS(9099), 1, - anon_sym_namespace, + [204572] = 2, + ACTIONS(10491), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164110] = 2, - ACTIONS(9101), 1, + [204580] = 2, + ACTIONS(10493), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164118] = 2, - ACTIONS(9103), 1, + [204588] = 2, + ACTIONS(5033), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164126] = 2, - ACTIONS(5111), 1, - anon_sym_RBRACK, + [204596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10495), 1, + sym_regex_pattern, + [204606] = 2, + ACTIONS(10497), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164134] = 2, - ACTIONS(5030), 1, - anon_sym_RBRACK, + [204614] = 2, + ACTIONS(10499), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164142] = 2, - ACTIONS(8520), 1, - anon_sym_RBRACK, + [204622] = 2, + ACTIONS(10501), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164150] = 2, - ACTIONS(9105), 1, - anon_sym_RBRACK, + [204630] = 2, + ACTIONS(10503), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164158] = 2, - ACTIONS(9107), 1, - anon_sym_RBRACK, + [204638] = 2, + ACTIONS(10505), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164166] = 2, - ACTIONS(9109), 1, - anon_sym_EQ, + [204646] = 2, + ACTIONS(10507), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164174] = 2, - ACTIONS(8119), 1, - anon_sym_RBRACE, + [204654] = 2, + ACTIONS(10509), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164182] = 2, - ACTIONS(9111), 1, + [204662] = 2, + ACTIONS(10511), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164190] = 2, - ACTIONS(9113), 1, - anon_sym_RBRACK, + [204670] = 2, + ACTIONS(10513), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164198] = 2, - ACTIONS(6723), 1, - anon_sym_is, + [204678] = 2, + ACTIONS(4541), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164206] = 2, - ACTIONS(9115), 1, - anon_sym_RBRACK, + [204686] = 2, + ACTIONS(10515), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164214] = 2, - ACTIONS(9117), 1, - sym_identifier, + [204694] = 2, + ACTIONS(10517), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164222] = 2, - ACTIONS(9119), 1, - anon_sym_RBRACK, + [204702] = 2, + ACTIONS(10519), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164230] = 2, - ACTIONS(9121), 1, - anon_sym_RBRACK, + [204710] = 2, + ACTIONS(10521), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164238] = 2, - ACTIONS(9123), 1, + [204718] = 2, + ACTIONS(10523), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164246] = 2, - ACTIONS(9125), 1, - anon_sym_class, + [204726] = 2, + ACTIONS(10525), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164254] = 2, - ACTIONS(9127), 1, + [204734] = 2, + ACTIONS(10527), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164262] = 2, - ACTIONS(9129), 1, - anon_sym_EQ_GT, + [204742] = 2, + ACTIONS(5080), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164270] = 2, - ACTIONS(9131), 1, - sym_identifier, + [204750] = 2, + ACTIONS(7469), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164278] = 2, - ACTIONS(9133), 1, - anon_sym_EQ_GT, + [204758] = 2, + ACTIONS(10529), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164286] = 2, - ACTIONS(9135), 1, + [204766] = 2, + ACTIONS(10531), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164294] = 2, - ACTIONS(9137), 1, - anon_sym_RBRACK, + [204774] = 2, + ACTIONS(10533), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164302] = 2, - ACTIONS(9139), 1, - sym_identifier, + [204782] = 2, + ACTIONS(10535), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [204790] = 2, + ACTIONS(10537), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9141), 1, - sym_regex_pattern, - [164320] = 2, - ACTIONS(4391), 1, - anon_sym_RPAREN, + sym_comment, + [204798] = 2, + ACTIONS(10539), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164328] = 2, - ACTIONS(9143), 1, + [204806] = 2, + ACTIONS(9761), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164336] = 2, - ACTIONS(9145), 1, - anon_sym_EQ, + [204814] = 2, + ACTIONS(10541), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164344] = 2, - ACTIONS(9147), 1, - anon_sym_DOT, + [204822] = 2, + ACTIONS(10543), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164352] = 2, - ACTIONS(9149), 1, - anon_sym_RBRACK, + [204830] = 2, + ACTIONS(10545), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164360] = 2, - ACTIONS(9151), 1, - anon_sym_RBRACK, + [204838] = 2, + ACTIONS(10547), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164368] = 2, - ACTIONS(9153), 1, + [204846] = 2, + ACTIONS(10549), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164376] = 2, - ACTIONS(9155), 1, - anon_sym_EQ_GT, + [204854] = 2, + ACTIONS(5057), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164384] = 2, - ACTIONS(9157), 1, - anon_sym_new, + [204862] = 2, + ACTIONS(10551), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164392] = 2, - ACTIONS(9159), 1, - sym_identifier, + [204870] = 2, + ACTIONS(10553), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164400] = 2, - ACTIONS(9161), 1, - anon_sym_RBRACK, + [204878] = 2, + ACTIONS(10555), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164408] = 2, - ACTIONS(9163), 1, + [204886] = 2, + ACTIONS(10557), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164416] = 2, - ACTIONS(9165), 1, - anon_sym_as, + [204894] = 2, + ACTIONS(10559), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164424] = 2, - ACTIONS(9167), 1, - anon_sym_RBRACK, + [204902] = 2, + ACTIONS(7976), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164432] = 2, - ACTIONS(8204), 1, - sym_identifier, + [204910] = 2, + ACTIONS(7561), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164440] = 2, - ACTIONS(9169), 1, - anon_sym_class, + [204918] = 2, + ACTIONS(10561), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164448] = 2, - ACTIONS(9171), 1, - sym_identifier, + [204926] = 2, + ACTIONS(9538), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164456] = 2, - ACTIONS(9173), 1, - anon_sym_EQ_GT, + [204934] = 2, + ACTIONS(8387), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164464] = 2, - ACTIONS(9175), 1, - anon_sym_EQ, + [204942] = 2, + ACTIONS(10563), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164472] = 2, - ACTIONS(9177), 1, + [204950] = 2, + ACTIONS(10565), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164480] = 2, - ACTIONS(9179), 1, - anon_sym_EQ, + [204958] = 2, + ACTIONS(10567), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164488] = 2, - ACTIONS(9181), 1, - anon_sym_EQ_GT, + [204966] = 2, + ACTIONS(10569), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164496] = 2, - ACTIONS(9183), 1, + [204974] = 2, + ACTIONS(10571), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164504] = 2, - ACTIONS(8081), 1, + [204982] = 2, + ACTIONS(10573), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164512] = 2, - ACTIONS(9185), 1, + [204990] = 2, + ACTIONS(10575), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164520] = 2, - ACTIONS(7938), 1, - anon_sym_EQ_GT, + [204998] = 2, + ACTIONS(10577), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164528] = 2, - ACTIONS(9187), 1, + [205006] = 2, + ACTIONS(10579), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164536] = 2, - ACTIONS(9189), 1, - anon_sym_symbol, + [205014] = 2, + ACTIONS(10581), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164544] = 2, - ACTIONS(9191), 1, + [205022] = 2, + ACTIONS(10583), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164552] = 2, - ACTIONS(9193), 1, + [205030] = 2, + ACTIONS(10585), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164560] = 2, - ACTIONS(9195), 1, - anon_sym_EQ, + [205038] = 2, + ACTIONS(10587), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164568] = 2, - ACTIONS(5109), 1, - anon_sym_RPAREN, + [205046] = 2, + ACTIONS(10589), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164576] = 2, - ACTIONS(9197), 1, - anon_sym_EQ_GT, + [205054] = 2, + ACTIONS(10591), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164584] = 2, - ACTIONS(9199), 1, - anon_sym_EQ, + [205062] = 2, + ACTIONS(10593), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164592] = 2, - ACTIONS(9201), 1, + [205070] = 2, + ACTIONS(10595), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164600] = 2, - ACTIONS(9203), 1, - anon_sym_EQ_GT, + [205078] = 2, + ACTIONS(10597), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164608] = 2, - ACTIONS(9205), 1, - anon_sym_EQ_GT, + [205086] = 2, + ACTIONS(10599), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164616] = 2, - ACTIONS(9207), 1, - anon_sym_COLON, + [205094] = 2, + ACTIONS(10601), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164624] = 2, - ACTIONS(9209), 1, + [205102] = 2, + ACTIONS(10603), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164632] = 2, - ACTIONS(9211), 1, - anon_sym_EQ_GT, + [205110] = 2, + ACTIONS(10605), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164640] = 2, - ACTIONS(8687), 1, - anon_sym_from, + [205118] = 2, + ACTIONS(10607), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164648] = 2, - ACTIONS(9213), 1, + [205126] = 2, + ACTIONS(10609), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164656] = 2, - ACTIONS(9215), 1, - anon_sym_RBRACK, + [205134] = 2, + ACTIONS(10611), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164664] = 2, - ACTIONS(9217), 1, - anon_sym_RBRACK, + [205142] = 2, + ACTIONS(10613), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164672] = 2, - ACTIONS(7151), 1, - anon_sym_EQ, + [205150] = 2, + ACTIONS(10615), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164680] = 2, - ACTIONS(9219), 1, + [205158] = 2, + ACTIONS(10617), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164688] = 2, - ACTIONS(9221), 1, + [205166] = 2, + ACTIONS(9817), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164696] = 2, - ACTIONS(9223), 1, + [205174] = 2, + ACTIONS(10619), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164704] = 2, - ACTIONS(8309), 1, - anon_sym_EQ, + [205182] = 2, + ACTIONS(5088), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164712] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9225), 1, - anon_sym_SLASH2, - [164722] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9227), 1, - sym_regex_pattern, - [164732] = 2, - ACTIONS(9229), 1, - anon_sym_namespace, + [205190] = 2, + ACTIONS(8121), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164740] = 2, - ACTIONS(9231), 1, + [205198] = 2, + ACTIONS(10621), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164748] = 2, - ACTIONS(9233), 1, + [205206] = 2, + ACTIONS(10623), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164756] = 2, - ACTIONS(9235), 1, - anon_sym_EQ, + [205214] = 2, + ACTIONS(10625), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164764] = 2, - ACTIONS(9237), 1, - anon_sym_EQ_GT, + [205222] = 2, + ACTIONS(4501), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164772] = 2, - ACTIONS(9239), 1, - anon_sym_COLON, + [205230] = 2, + ACTIONS(10627), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164780] = 2, - ACTIONS(7031), 1, - anon_sym_is, + [205238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10629), 1, + anon_sym_SLASH2, + [205248] = 2, + ACTIONS(10631), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164788] = 2, - ACTIONS(9241), 1, - sym_identifier, + [205256] = 2, + ACTIONS(10633), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164796] = 2, - ACTIONS(9243), 1, + [205264] = 2, + ACTIONS(10635), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164804] = 2, - ACTIONS(9245), 1, - anon_sym_EQ_GT, + [205272] = 2, + ACTIONS(10637), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [205280] = 2, + ACTIONS(10639), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164812] = 2, - ACTIONS(9247), 1, + [205288] = 2, + ACTIONS(10641), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164820] = 2, - ACTIONS(9249), 1, + [205296] = 2, + ACTIONS(10643), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164828] = 2, - ACTIONS(9251), 1, - anon_sym_RBRACK, + [205304] = 2, + ACTIONS(10645), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164836] = 2, - ACTIONS(9253), 1, - ts_builtin_sym_end, + [205312] = 2, + ACTIONS(10647), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164844] = 2, - ACTIONS(9255), 1, + [205320] = 2, + ACTIONS(10649), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164852] = 2, - ACTIONS(9257), 1, + [205328] = 2, + ACTIONS(9479), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164860] = 2, - ACTIONS(9259), 1, - anon_sym_target, + [205336] = 2, + ACTIONS(10651), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164868] = 2, - ACTIONS(9261), 1, - anon_sym_LBRACE, + [205344] = 2, + ACTIONS(10653), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164876] = 2, - ACTIONS(9263), 1, - sym_identifier, + [205352] = 2, + ACTIONS(10655), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164884] = 2, - ACTIONS(9265), 1, + [205360] = 2, + ACTIONS(9870), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164892] = 2, - ACTIONS(7155), 1, - anon_sym_is, + [205368] = 2, + ACTIONS(10657), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164900] = 2, - ACTIONS(9267), 1, - anon_sym_RBRACK, + [205376] = 2, + ACTIONS(10659), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164908] = 2, - ACTIONS(4971), 1, - anon_sym_RBRACK, + [205384] = 2, + ACTIONS(10661), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164916] = 2, - ACTIONS(9269), 1, - anon_sym_RBRACK, + [205392] = 2, + ACTIONS(10663), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164924] = 2, - ACTIONS(9271), 1, - anon_sym_EQ_GT, + [205400] = 2, + ACTIONS(10665), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164932] = 2, - ACTIONS(9273), 1, + [205408] = 2, + ACTIONS(10667), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164940] = 2, - ACTIONS(5036), 1, - anon_sym_RPAREN, + [205416] = 2, + ACTIONS(10669), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164948] = 2, - ACTIONS(7655), 1, - anon_sym_EQ, + [205424] = 2, + ACTIONS(10671), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164956] = 2, - ACTIONS(9275), 1, + [205432] = 2, + ACTIONS(10673), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164964] = 2, - ACTIONS(5034), 1, - anon_sym_RPAREN, + [205440] = 2, + ACTIONS(10675), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164972] = 2, - ACTIONS(9277), 1, - anon_sym_RBRACK, + [205448] = 2, + ACTIONS(5043), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164980] = 2, - ACTIONS(9279), 1, + [205456] = 2, + ACTIONS(10677), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164988] = 2, - ACTIONS(8129), 1, - anon_sym_RBRACK, + [205464] = 2, + ACTIONS(10679), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164996] = 2, - ACTIONS(9281), 1, - anon_sym_COLON, + [205472] = 2, + ACTIONS(9110), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165004] = 2, - ACTIONS(9283), 1, + [205480] = 2, + ACTIONS(10681), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165012] = 2, - ACTIONS(9285), 1, - anon_sym_EQ_GT, + [205488] = 2, + ACTIONS(10683), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165020] = 2, - ACTIONS(9287), 1, - anon_sym_RBRACK, + [205496] = 2, + ACTIONS(10685), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165028] = 2, - ACTIONS(9289), 1, - sym_identifier, + [205504] = 2, + ACTIONS(5045), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165036] = 2, - ACTIONS(9291), 1, - sym_identifier, + [205512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10687), 1, + anon_sym_SLASH2, + [205522] = 2, + ACTIONS(5053), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165044] = 2, - ACTIONS(9293), 1, - anon_sym_DOT, + [205530] = 2, + ACTIONS(5064), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165052] = 2, - ACTIONS(9295), 1, - anon_sym_EQ_GT, + [205538] = 2, + ACTIONS(10689), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165060] = 2, - ACTIONS(4967), 1, - anon_sym_RPAREN, + [205546] = 2, + ACTIONS(10691), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165068] = 2, - ACTIONS(9297), 1, - sym_identifier, + [205554] = 2, + ACTIONS(10693), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165076] = 2, - ACTIONS(9299), 1, - anon_sym_EQ_GT, + [205562] = 2, + ACTIONS(10695), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165084] = 2, - ACTIONS(9301), 1, + [205570] = 2, + ACTIONS(10697), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165092] = 2, - ACTIONS(6627), 1, - anon_sym_is, + [205578] = 2, + ACTIONS(10699), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165100] = 2, - ACTIONS(9303), 1, - anon_sym_target, + [205586] = 2, + ACTIONS(10701), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165108] = 2, - ACTIONS(9305), 1, - sym_identifier, + [205594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10703), 1, + anon_sym_SLASH2, + [205604] = 2, + ACTIONS(10705), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165116] = 2, - ACTIONS(5781), 1, - anon_sym_in, + [205612] = 2, + ACTIONS(10707), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165124] = 2, - ACTIONS(9307), 1, - anon_sym_EQ_GT, + [205620] = 2, + ACTIONS(10709), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165132] = 2, - ACTIONS(8425), 1, - anon_sym_RBRACE, + [205628] = 2, + ACTIONS(10711), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165140] = 2, - ACTIONS(9309), 1, - anon_sym_RPAREN, + [205636] = 2, + ACTIONS(10713), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165148] = 2, - ACTIONS(9311), 1, + [205644] = 2, + ACTIONS(10715), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165156] = 2, - ACTIONS(9313), 1, + [205652] = 2, + ACTIONS(9262), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165164] = 2, - ACTIONS(8554), 1, - anon_sym_LBRACE, + [205660] = 2, + ACTIONS(10717), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165172] = 2, - ACTIONS(9315), 1, + [205668] = 2, + ACTIONS(6504), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165180] = 2, - ACTIONS(9317), 1, - anon_sym_RBRACK, + [205676] = 2, + ACTIONS(5103), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165188] = 2, - ACTIONS(5361), 1, - anon_sym_in, + [205684] = 2, + ACTIONS(9506), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165196] = 2, - ACTIONS(9319), 1, - anon_sym_RBRACK, + [205692] = 2, + ACTIONS(10719), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165204] = 2, - ACTIONS(9321), 1, + [205700] = 2, + ACTIONS(10721), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165212] = 2, - ACTIONS(9323), 1, + [205708] = 2, + ACTIONS(10723), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165220] = 2, - ACTIONS(9325), 1, + [205716] = 2, + ACTIONS(10725), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165228] = 2, - ACTIONS(9327), 1, - anon_sym_RBRACK, + [205724] = 2, + ACTIONS(10727), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165236] = 2, - ACTIONS(9329), 1, - anon_sym_RBRACK, + [205732] = 2, + ACTIONS(10729), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165244] = 2, - ACTIONS(9331), 1, - anon_sym_EQ_GT, + [205740] = 2, + ACTIONS(10731), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165252] = 2, - ACTIONS(9333), 1, + [205748] = 2, + ACTIONS(10733), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165260] = 2, - ACTIONS(9335), 1, - anon_sym_RBRACK, + [205756] = 2, + ACTIONS(10735), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165268] = 2, - ACTIONS(9337), 1, - anon_sym_EQ_GT, + [205764] = 2, + ACTIONS(10737), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165276] = 2, - ACTIONS(9339), 1, - anon_sym_EQ_GT, + [205772] = 2, + ACTIONS(10739), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165284] = 2, - ACTIONS(9341), 1, + [205780] = 2, + ACTIONS(10741), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165292] = 2, - ACTIONS(9343), 1, - anon_sym_RBRACK, + [205788] = 2, + ACTIONS(10743), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [205796] = 2, + ACTIONS(10745), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165300] = 2, - ACTIONS(9345), 1, + [205804] = 2, + ACTIONS(10747), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165308] = 2, - ACTIONS(9347), 1, - sym_identifier, + [205812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10749), 1, + sym_regex_pattern, + [205822] = 2, + ACTIONS(10751), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165316] = 2, - ACTIONS(9349), 1, - anon_sym_EQ, + [205830] = 2, + ACTIONS(10753), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165324] = 2, - ACTIONS(9351), 1, - anon_sym_EQ_GT, + [205838] = 2, + ACTIONS(10755), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165332] = 2, - ACTIONS(9353), 1, - anon_sym_EQ_GT, + [205846] = 2, + ACTIONS(10757), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165340] = 2, - ACTIONS(7292), 1, + [205854] = 2, + ACTIONS(4249), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165348] = 2, - ACTIONS(9355), 1, - anon_sym_symbol, + [205862] = 2, + ACTIONS(10759), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165356] = 2, - ACTIONS(9357), 1, - anon_sym_RBRACK, + [205870] = 2, + ACTIONS(10761), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165364] = 2, - ACTIONS(9359), 1, - anon_sym_RBRACK, + [205878] = 2, + ACTIONS(10763), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165372] = 2, - ACTIONS(9361), 1, + [205886] = 2, + ACTIONS(10765), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165380] = 2, - ACTIONS(9363), 1, + [205894] = 2, + ACTIONS(10767), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165388] = 2, - ACTIONS(9365), 1, - anon_sym_EQ_GT, + [205902] = 2, + ACTIONS(10769), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165396] = 2, - ACTIONS(9367), 1, + [205910] = 2, + ACTIONS(10771), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165404] = 2, - ACTIONS(9369), 1, + [205918] = 2, + ACTIONS(10773), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165412] = 2, - ACTIONS(9371), 1, + [205926] = 2, + ACTIONS(10775), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165420] = 2, - ACTIONS(9373), 1, + [205934] = 2, + ACTIONS(10777), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165428] = 2, - ACTIONS(9375), 1, + [205942] = 2, + ACTIONS(10779), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165436] = 2, - ACTIONS(9377), 1, + [205950] = 2, + ACTIONS(10781), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165444] = 2, - ACTIONS(9379), 1, - anon_sym_RBRACK, + [205958] = 2, + ACTIONS(10783), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165452] = 2, - ACTIONS(9381), 1, - anon_sym_RPAREN, + [205966] = 2, + ACTIONS(10045), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165460] = 2, - ACTIONS(9383), 1, + [205974] = 2, + ACTIONS(10785), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165468] = 2, - ACTIONS(9385), 1, - anon_sym_EQ_GT, + [205982] = 2, + ACTIONS(10787), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165476] = 2, - ACTIONS(9387), 1, - anon_sym_from, + [205990] = 2, + ACTIONS(10789), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165484] = 2, - ACTIONS(9389), 1, - anon_sym_require, + [205998] = 2, + ACTIONS(10791), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165492] = 2, - ACTIONS(9391), 1, - anon_sym_EQ, + [206006] = 2, + ACTIONS(10793), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165500] = 2, - ACTIONS(9393), 1, - sym_identifier, + [206014] = 2, + ACTIONS(10795), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [206022] = 2, + ACTIONS(10797), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [206030] = 2, + ACTIONS(10799), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165508] = 2, - ACTIONS(4545), 1, + [206038] = 2, + ACTIONS(4695), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165516] = 2, - ACTIONS(9395), 1, - sym_identifier, + [206046] = 2, + ACTIONS(10801), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165524] = 2, - ACTIONS(9397), 1, + [206054] = 2, + ACTIONS(10803), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165532] = 2, - ACTIONS(9399), 1, + [206062] = 2, + ACTIONS(10805), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165540] = 2, - ACTIONS(9401), 1, + [206070] = 2, + ACTIONS(10807), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165548] = 2, - ACTIONS(9403), 1, + [206078] = 2, + ACTIONS(10809), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165556] = 2, - ACTIONS(9405), 1, - anon_sym_DOT, + [206086] = 2, + ACTIONS(10811), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165564] = 2, - ACTIONS(9407), 1, - anon_sym_RPAREN, + [206094] = 2, + ACTIONS(10813), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165572] = 2, - ACTIONS(9409), 1, + [206102] = 2, + ACTIONS(10815), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165580] = 2, - ACTIONS(9411), 1, - anon_sym_EQ, + [206110] = 2, + ACTIONS(10817), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165588] = 2, - ACTIONS(9413), 1, + [206118] = 2, + ACTIONS(10819), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165596] = 2, - ACTIONS(9415), 1, + [206126] = 2, + ACTIONS(10821), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165604] = 2, - ACTIONS(9417), 1, - sym_identifier, + [206134] = 2, + ACTIONS(10823), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165612] = 2, - ACTIONS(9419), 1, - anon_sym_RPAREN, + [206142] = 2, + ACTIONS(10825), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165620] = 2, - ACTIONS(9421), 1, - anon_sym_EQ_GT, + [206150] = 2, + ACTIONS(10827), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165628] = 2, - ACTIONS(9423), 1, - anon_sym_as, + [206158] = 2, + ACTIONS(10829), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165636] = 2, - ACTIONS(9425), 1, - sym_identifier, + [206166] = 2, + ACTIONS(10831), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165644] = 2, - ACTIONS(9427), 1, - anon_sym_from, + [206174] = 2, + ACTIONS(10833), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165652] = 2, - ACTIONS(9429), 1, - sym_identifier, + [206182] = 2, + ACTIONS(10835), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165660] = 2, - ACTIONS(9431), 1, - anon_sym_from, + [206190] = 2, + ACTIONS(10837), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165668] = 2, - ACTIONS(9433), 1, + [206198] = 2, + ACTIONS(10839), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165676] = 2, - ACTIONS(9435), 1, + [206206] = 2, + ACTIONS(10841), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165684] = 2, - ACTIONS(9437), 1, - anon_sym_RBRACK, + [206214] = 2, + ACTIONS(10843), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165692] = 2, - ACTIONS(9439), 1, + [206222] = 2, + ACTIONS(10845), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165700] = 2, - ACTIONS(9441), 1, - sym_identifier, + [206230] = 2, + ACTIONS(10847), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165708] = 2, - ACTIONS(9443), 1, - anon_sym_EQ, + [206238] = 2, + ACTIONS(10849), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165716] = 2, - ACTIONS(9445), 1, + [206246] = 2, + ACTIONS(10851), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165724] = 2, - ACTIONS(7416), 1, - anon_sym_RPAREN, + [206254] = 2, + ACTIONS(10853), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165732] = 2, - ACTIONS(9447), 1, + [206262] = 2, + ACTIONS(10855), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165740] = 2, - ACTIONS(9449), 1, - anon_sym_LPAREN, + [206270] = 2, + ACTIONS(10857), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165748] = 2, - ACTIONS(9451), 1, - anon_sym_from, + [206278] = 2, + ACTIONS(10859), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165756] = 2, - ACTIONS(9453), 1, - anon_sym_RBRACK, + [206286] = 2, + ACTIONS(10861), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165764] = 2, - ACTIONS(9455), 1, + [206294] = 2, + ACTIONS(10863), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165772] = 2, - ACTIONS(4993), 1, - anon_sym_COLON, + [206302] = 2, + ACTIONS(10865), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165780] = 2, - ACTIONS(9457), 1, + [206310] = 2, + ACTIONS(8415), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165788] = 2, - ACTIONS(9459), 1, + [206318] = 2, + ACTIONS(10867), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165796] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [206326] = 2, + ACTIONS(10869), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9461), 1, - sym_regex_pattern, - [165806] = 2, - ACTIONS(9463), 1, + sym_comment, + [206334] = 2, + ACTIONS(10871), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165814] = 2, - ACTIONS(9465), 1, + [206342] = 2, + ACTIONS(10873), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165822] = 2, - ACTIONS(9467), 1, - anon_sym_EQ_GT, + [206350] = 2, + ACTIONS(10875), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165830] = 2, - ACTIONS(9469), 1, + [206358] = 2, + ACTIONS(10877), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165838] = 2, - ACTIONS(9471), 1, - anon_sym_RBRACK, + [206366] = 2, + ACTIONS(10879), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165846] = 2, - ACTIONS(9473), 1, - anon_sym_RPAREN, + [206374] = 2, + ACTIONS(10881), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165854] = 2, - ACTIONS(9475), 1, + [206382] = 2, + ACTIONS(10883), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165862] = 2, - ACTIONS(9477), 1, - anon_sym_EQ_GT, + [206390] = 2, + ACTIONS(10885), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165870] = 2, - ACTIONS(9479), 1, + [206398] = 2, + ACTIONS(10887), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165878] = 2, - ACTIONS(9481), 1, + [206406] = 2, + ACTIONS(10889), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165886] = 2, - ACTIONS(9483), 1, + [206414] = 2, + ACTIONS(10891), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165894] = 2, - ACTIONS(9485), 1, + [206422] = 2, + ACTIONS(10893), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165902] = 2, - ACTIONS(9487), 1, + [206430] = 2, + ACTIONS(10895), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9489), 1, - anon_sym_SLASH2, - [165920] = 2, - ACTIONS(9491), 1, + [206438] = 2, + ACTIONS(10897), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165928] = 2, - ACTIONS(9493), 1, - anon_sym_new, + [206446] = 2, + ACTIONS(9578), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165936] = 2, - ACTIONS(9495), 1, - sym_identifier, + [206454] = 2, + ACTIONS(10899), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165944] = 2, - ACTIONS(9497), 1, - anon_sym_function, + [206462] = 2, + ACTIONS(10901), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165952] = 2, - ACTIONS(9499), 1, + [206470] = 2, + ACTIONS(10903), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [206478] = 2, + ACTIONS(10905), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165960] = 2, - ACTIONS(9501), 1, - anon_sym_from, + [206486] = 2, + ACTIONS(10907), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165968] = 2, - ACTIONS(9503), 1, - anon_sym_DOT, + [206494] = 2, + ACTIONS(10909), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165976] = 2, - ACTIONS(9505), 1, - anon_sym_RBRACK, + [206502] = 2, + ACTIONS(10911), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165984] = 2, - ACTIONS(9507), 1, + [206510] = 2, + ACTIONS(10913), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165992] = 2, - ACTIONS(9509), 1, - anon_sym_RBRACK, + [206518] = 2, + ACTIONS(10915), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166000] = 2, - ACTIONS(9511), 1, - sym_identifier, + [206526] = 2, + ACTIONS(4101), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166008] = 2, - ACTIONS(9513), 1, - anon_sym_RBRACK, + [206534] = 2, + ACTIONS(4603), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166016] = 2, - ACTIONS(9515), 1, + [206542] = 2, + ACTIONS(10917), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166024] = 2, - ACTIONS(6065), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, + [206550] = 3, + ACTIONS(3), 1, sym_comment, - [166032] = 2, - ACTIONS(5015), 1, - anon_sym_RBRACE, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10919), 1, + sym_regex_pattern, + [206560] = 2, + ACTIONS(10921), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166040] = 2, - ACTIONS(9517), 1, - anon_sym_RBRACK, + [206568] = 2, + ACTIONS(10923), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166048] = 2, - ACTIONS(9519), 1, + [206576] = 2, + ACTIONS(10925), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166056] = 2, - ACTIONS(9521), 1, - anon_sym_RBRACK, + [206584] = 2, + ACTIONS(10927), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166064] = 2, - ACTIONS(9523), 1, + [206592] = 2, + ACTIONS(10929), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166072] = 2, - ACTIONS(7474), 1, + [206600] = 2, + ACTIONS(8179), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166080] = 2, - ACTIONS(9525), 1, + [206608] = 2, + ACTIONS(10931), 1, anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166088] = 2, - ACTIONS(4159), 1, - anon_sym_in, + [206616] = 2, + ACTIONS(10933), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166096] = 2, - ACTIONS(4666), 1, - anon_sym_in, + [206624] = 2, + ACTIONS(10935), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166104] = 2, - ACTIONS(9527), 1, + [206632] = 2, + ACTIONS(10937), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166112] = 2, - ACTIONS(9529), 1, + [206640] = 2, + ACTIONS(10939), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166120] = 2, - ACTIONS(9531), 1, - anon_sym_RBRACK, + [206648] = 2, + ACTIONS(10941), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166128] = 2, - ACTIONS(9533), 1, - anon_sym_EQ_GT, + [206656] = 2, + ACTIONS(9965), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166136] = 2, - ACTIONS(9535), 1, - anon_sym_RBRACK, + [206664] = 2, + ACTIONS(4209), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166144] = 2, - ACTIONS(9537), 1, + [206672] = 2, + ACTIONS(10943), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166152] = 2, - ACTIONS(9539), 1, - anon_sym_RPAREN, + [206680] = 2, + ACTIONS(10945), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9541), 1, - sym_regex_pattern, - [166170] = 2, - ACTIONS(8589), 1, - anon_sym_RBRACK, + [206688] = 2, + ACTIONS(8135), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166178] = 2, - ACTIONS(5115), 1, - anon_sym_RBRACK, + [206696] = 2, + ACTIONS(10947), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166186] = 2, - ACTIONS(9543), 1, + [206704] = 2, + ACTIONS(10949), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166194] = 2, - ACTIONS(9545), 1, + [206712] = 2, + ACTIONS(10951), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [206720] = 2, + ACTIONS(10953), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9547), 1, - anon_sym_SLASH2, - [166212] = 2, - ACTIONS(9549), 1, - anon_sym_RBRACK, + sym_comment, + [206728] = 2, + ACTIONS(10955), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166220] = 2, - ACTIONS(9551), 1, - sym_identifier, + [206736] = 2, + ACTIONS(10957), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166228] = 2, - ACTIONS(8431), 1, + [206744] = 2, + ACTIONS(10959), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166236] = 2, - ACTIONS(9553), 1, - anon_sym_RBRACK, + [206752] = 2, + ACTIONS(10961), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166244] = 2, - ACTIONS(9555), 1, - anon_sym_RBRACK, + [206760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10963), 1, + anon_sym_SLASH2, + [206770] = 2, + ACTIONS(10965), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166252] = 2, - ACTIONS(9557), 1, + [206778] = 2, + ACTIONS(10967), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166260] = 2, - ACTIONS(9559), 1, - anon_sym_EQ_GT, + [206786] = 2, + ACTIONS(10969), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166268] = 2, - ACTIONS(9561), 1, - anon_sym_from, + [206794] = 2, + ACTIONS(10971), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166276] = 2, - ACTIONS(9563), 1, + [206802] = 2, + ACTIONS(10973), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166284] = 2, - ACTIONS(9565), 1, - anon_sym_COLON, + [206810] = 2, + ACTIONS(4181), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166292] = 2, - ACTIONS(9567), 1, + [206818] = 2, + ACTIONS(10975), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166300] = 2, - ACTIONS(9569), 1, + [206826] = 2, + ACTIONS(10977), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166308] = 2, - ACTIONS(9571), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1168)] = 0, - [SMALL_STATE(1169)] = 93, - [SMALL_STATE(1170)] = 186, - [SMALL_STATE(1171)] = 279, + [SMALL_STATE(1169)] = 91, + [SMALL_STATE(1170)] = 184, + [SMALL_STATE(1171)] = 273, [SMALL_STATE(1172)] = 368, [SMALL_STATE(1173)] = 457, [SMALL_STATE(1174)] = 546, - [SMALL_STATE(1175)] = 641, - [SMALL_STATE(1176)] = 730, + [SMALL_STATE(1175)] = 639, + [SMALL_STATE(1176)] = 728, [SMALL_STATE(1177)] = 821, - [SMALL_STATE(1178)] = 911, - [SMALL_STATE(1179)] = 999, - [SMALL_STATE(1180)] = 1089, - [SMALL_STATE(1181)] = 1177, - [SMALL_STATE(1182)] = 1263, - [SMALL_STATE(1183)] = 1333, - [SMALL_STATE(1184)] = 1403, - [SMALL_STATE(1185)] = 1473, - [SMALL_STATE(1186)] = 1543, - [SMALL_STATE(1187)] = 1631, - [SMALL_STATE(1188)] = 1721, - [SMALL_STATE(1189)] = 1811, - [SMALL_STATE(1190)] = 1881, - [SMALL_STATE(1191)] = 1971, - [SMALL_STATE(1192)] = 2041, - [SMALL_STATE(1193)] = 2131, - [SMALL_STATE(1194)] = 2219, - [SMALL_STATE(1195)] = 2311, - [SMALL_STATE(1196)] = 2401, - [SMALL_STATE(1197)] = 2473, - [SMALL_STATE(1198)] = 2545, - [SMALL_STATE(1199)] = 2635, - [SMALL_STATE(1200)] = 2705, - [SMALL_STATE(1201)] = 2791, + [SMALL_STATE(1178)] = 891, + [SMALL_STATE(1179)] = 981, + [SMALL_STATE(1180)] = 1071, + [SMALL_STATE(1181)] = 1141, + [SMALL_STATE(1182)] = 1213, + [SMALL_STATE(1183)] = 1285, + [SMALL_STATE(1184)] = 1377, + [SMALL_STATE(1185)] = 1467, + [SMALL_STATE(1186)] = 1553, + [SMALL_STATE(1187)] = 1643, + [SMALL_STATE(1188)] = 1713, + [SMALL_STATE(1189)] = 1801, + [SMALL_STATE(1190)] = 1893, + [SMALL_STATE(1191)] = 1983, + [SMALL_STATE(1192)] = 2073, + [SMALL_STATE(1193)] = 2143, + [SMALL_STATE(1194)] = 2213, + [SMALL_STATE(1195)] = 2283, + [SMALL_STATE(1196)] = 2353, + [SMALL_STATE(1197)] = 2439, + [SMALL_STATE(1198)] = 2527, + [SMALL_STATE(1199)] = 2617, + [SMALL_STATE(1200)] = 2707, + [SMALL_STATE(1201)] = 2795, [SMALL_STATE(1202)] = 2883, [SMALL_STATE(1203)] = 2971, [SMALL_STATE(1204)] = 3040, - [SMALL_STATE(1205)] = 3129, - [SMALL_STATE(1206)] = 3198, - [SMALL_STATE(1207)] = 3277, - [SMALL_STATE(1208)] = 3368, - [SMALL_STATE(1209)] = 3441, - [SMALL_STATE(1210)] = 3532, - [SMALL_STATE(1211)] = 3623, - [SMALL_STATE(1212)] = 3710, - [SMALL_STATE(1213)] = 3797, - [SMALL_STATE(1214)] = 3884, - [SMALL_STATE(1215)] = 3971, + [SMALL_STATE(1205)] = 3131, + [SMALL_STATE(1206)] = 3210, + [SMALL_STATE(1207)] = 3297, + [SMALL_STATE(1208)] = 3384, + [SMALL_STATE(1209)] = 3475, + [SMALL_STATE(1210)] = 3566, + [SMALL_STATE(1211)] = 3653, + [SMALL_STATE(1212)] = 3740, + [SMALL_STATE(1213)] = 3827, + [SMALL_STATE(1214)] = 3916, + [SMALL_STATE(1215)] = 3989, [SMALL_STATE(1216)] = 4058, - [SMALL_STATE(1217)] = 4145, - [SMALL_STATE(1218)] = 4240, + [SMALL_STATE(1217)] = 4153, + [SMALL_STATE(1218)] = 4242, [SMALL_STATE(1219)] = 4329, [SMALL_STATE(1220)] = 4420, - [SMALL_STATE(1221)] = 4510, - [SMALL_STATE(1222)] = 4596, - [SMALL_STATE(1223)] = 4682, - [SMALL_STATE(1224)] = 4768, - [SMALL_STATE(1225)] = 4844, - [SMALL_STATE(1226)] = 4912, - [SMALL_STATE(1227)] = 4990, - [SMALL_STATE(1228)] = 5076, - [SMALL_STATE(1229)] = 5168, - [SMALL_STATE(1230)] = 5254, - [SMALL_STATE(1231)] = 5340, - [SMALL_STATE(1232)] = 5426, - [SMALL_STATE(1233)] = 5516, - [SMALL_STATE(1234)] = 5594, - [SMALL_STATE(1235)] = 5680, - [SMALL_STATE(1236)] = 5766, - [SMALL_STATE(1237)] = 5852, - [SMALL_STATE(1238)] = 5930, - [SMALL_STATE(1239)] = 6004, - [SMALL_STATE(1240)] = 6096, - [SMALL_STATE(1241)] = 6182, - [SMALL_STATE(1242)] = 6268, - [SMALL_STATE(1243)] = 6336, - [SMALL_STATE(1244)] = 6416, - [SMALL_STATE(1245)] = 6506, - [SMALL_STATE(1246)] = 6584, - [SMALL_STATE(1247)] = 6670, - [SMALL_STATE(1248)] = 6756, - [SMALL_STATE(1249)] = 6846, - [SMALL_STATE(1250)] = 6936, - [SMALL_STATE(1251)] = 7022, - [SMALL_STATE(1252)] = 7111, - [SMALL_STATE(1253)] = 7188, - [SMALL_STATE(1254)] = 7257, - [SMALL_STATE(1255)] = 7346, - [SMALL_STATE(1256)] = 7423, - [SMALL_STATE(1257)] = 7492, - [SMALL_STATE(1258)] = 7559, - [SMALL_STATE(1259)] = 7648, - [SMALL_STATE(1260)] = 7733, - [SMALL_STATE(1261)] = 7800, - [SMALL_STATE(1262)] = 7883, - [SMALL_STATE(1263)] = 7968, - [SMALL_STATE(1264)] = 8043, - [SMALL_STATE(1265)] = 8122, - [SMALL_STATE(1266)] = 8201, - [SMALL_STATE(1267)] = 8280, - [SMALL_STATE(1268)] = 8347, - [SMALL_STATE(1269)] = 8430, - [SMALL_STATE(1270)] = 8517, - [SMALL_STATE(1271)] = 8584, - [SMALL_STATE(1272)] = 8669, - [SMALL_STATE(1273)] = 8758, - [SMALL_STATE(1274)] = 8833, - [SMALL_STATE(1275)] = 8922, - [SMALL_STATE(1276)] = 8991, - [SMALL_STATE(1277)] = 9060, - [SMALL_STATE(1278)] = 9149, - [SMALL_STATE(1279)] = 9221, - [SMALL_STATE(1280)] = 9295, - [SMALL_STATE(1281)] = 9369, - [SMALL_STATE(1282)] = 9441, - [SMALL_STATE(1283)] = 9511, - [SMALL_STATE(1284)] = 9577, - [SMALL_STATE(1285)] = 9665, - [SMALL_STATE(1286)] = 9731, - [SMALL_STATE(1287)] = 9797, - [SMALL_STATE(1288)] = 9863, - [SMALL_STATE(1289)] = 9929, - [SMALL_STATE(1290)] = 10007, - [SMALL_STATE(1291)] = 10073, - [SMALL_STATE(1292)] = 10145, - [SMALL_STATE(1293)] = 10219, - [SMALL_STATE(1294)] = 10291, - [SMALL_STATE(1295)] = 10373, - [SMALL_STATE(1296)] = 10445, - [SMALL_STATE(1297)] = 10521, - [SMALL_STATE(1298)] = 10599, - [SMALL_STATE(1299)] = 10665, - [SMALL_STATE(1300)] = 10753, - [SMALL_STATE(1301)] = 10825, - [SMALL_STATE(1302)] = 10897, - [SMALL_STATE(1303)] = 10977, - [SMALL_STATE(1304)] = 11051, - [SMALL_STATE(1305)] = 11123, - [SMALL_STATE(1306)] = 11199, - [SMALL_STATE(1307)] = 11279, - [SMALL_STATE(1308)] = 11347, - [SMALL_STATE(1309)] = 11415, - [SMALL_STATE(1310)] = 11491, - [SMALL_STATE(1311)] = 11557, - [SMALL_STATE(1312)] = 11629, - [SMALL_STATE(1313)] = 11705, - [SMALL_STATE(1314)] = 11783, - [SMALL_STATE(1315)] = 11867, - [SMALL_STATE(1316)] = 11951, - [SMALL_STATE(1317)] = 12023, - [SMALL_STATE(1318)] = 12095, - [SMALL_STATE(1319)] = 12179, - [SMALL_STATE(1320)] = 12245, - [SMALL_STATE(1321)] = 12321, - [SMALL_STATE(1322)] = 12405, - [SMALL_STATE(1323)] = 12477, - [SMALL_STATE(1324)] = 12550, - [SMALL_STATE(1325)] = 12617, - [SMALL_STATE(1326)] = 12684, - [SMALL_STATE(1327)] = 12761, - [SMALL_STATE(1328)] = 12834, - [SMALL_STATE(1329)] = 12905, - [SMALL_STATE(1330)] = 12976, - [SMALL_STATE(1331)] = 13049, - [SMALL_STATE(1332)] = 13120, - [SMALL_STATE(1333)] = 13203, - [SMALL_STATE(1334)] = 13280, - [SMALL_STATE(1335)] = 13359, - [SMALL_STATE(1336)] = 13432, - [SMALL_STATE(1337)] = 13503, - [SMALL_STATE(1338)] = 13572, - [SMALL_STATE(1339)] = 13645, - [SMALL_STATE(1340)] = 13718, - [SMALL_STATE(1341)] = 13787, - [SMALL_STATE(1342)] = 13860, - [SMALL_STATE(1343)] = 13929, - [SMALL_STATE(1344)] = 14000, - [SMALL_STATE(1345)] = 14077, - [SMALL_STATE(1346)] = 14146, - [SMALL_STATE(1347)] = 14215, - [SMALL_STATE(1348)] = 14292, - [SMALL_STATE(1349)] = 14365, - [SMALL_STATE(1350)] = 14436, - [SMALL_STATE(1351)] = 14513, - [SMALL_STATE(1352)] = 14584, - [SMALL_STATE(1353)] = 14655, - [SMALL_STATE(1354)] = 14725, - [SMALL_STATE(1355)] = 14799, - [SMALL_STATE(1356)] = 14871, - [SMALL_STATE(1357)] = 14947, - [SMALL_STATE(1358)] = 15021, - [SMALL_STATE(1359)] = 15141, - [SMALL_STATE(1360)] = 15261, - [SMALL_STATE(1361)] = 15381, - [SMALL_STATE(1362)] = 15451, - [SMALL_STATE(1363)] = 15571, - [SMALL_STATE(1364)] = 15637, - [SMALL_STATE(1365)] = 15703, - [SMALL_STATE(1366)] = 15773, - [SMALL_STATE(1367)] = 15843, - [SMALL_STATE(1368)] = 15915, - [SMALL_STATE(1369)] = 16035, - [SMALL_STATE(1370)] = 16103, - [SMALL_STATE(1371)] = 16171, - [SMALL_STATE(1372)] = 16291, - [SMALL_STATE(1373)] = 16365, - [SMALL_STATE(1374)] = 16439, - [SMALL_STATE(1375)] = 16509, - [SMALL_STATE(1376)] = 16580, - [SMALL_STATE(1377)] = 16649, - [SMALL_STATE(1378)] = 16718, - [SMALL_STATE(1379)] = 16787, - [SMALL_STATE(1380)] = 16856, - [SMALL_STATE(1381)] = 16925, - [SMALL_STATE(1382)] = 16994, - [SMALL_STATE(1383)] = 17063, - [SMALL_STATE(1384)] = 17130, - [SMALL_STATE(1385)] = 17203, - [SMALL_STATE(1386)] = 17274, - [SMALL_STATE(1387)] = 17347, - [SMALL_STATE(1388)] = 17416, - [SMALL_STATE(1389)] = 17485, - [SMALL_STATE(1390)] = 17554, - [SMALL_STATE(1391)] = 17623, - [SMALL_STATE(1392)] = 17692, - [SMALL_STATE(1393)] = 17808, - [SMALL_STATE(1394)] = 17876, - [SMALL_STATE(1395)] = 17992, - [SMALL_STATE(1396)] = 18060, - [SMALL_STATE(1397)] = 18128, - [SMALL_STATE(1398)] = 18196, - [SMALL_STATE(1399)] = 18312, - [SMALL_STATE(1400)] = 18380, - [SMALL_STATE(1401)] = 18496, - [SMALL_STATE(1402)] = 18564, - [SMALL_STATE(1403)] = 18680, - [SMALL_STATE(1404)] = 18748, - [SMALL_STATE(1405)] = 18816, - [SMALL_STATE(1406)] = 18884, - [SMALL_STATE(1407)] = 18952, - [SMALL_STATE(1408)] = 19068, - [SMALL_STATE(1409)] = 19136, - [SMALL_STATE(1410)] = 19252, - [SMALL_STATE(1411)] = 19320, - [SMALL_STATE(1412)] = 19436, - [SMALL_STATE(1413)] = 19552, - [SMALL_STATE(1414)] = 19620, - [SMALL_STATE(1415)] = 19690, - [SMALL_STATE(1416)] = 19806, - [SMALL_STATE(1417)] = 19922, - [SMALL_STATE(1418)] = 20038, - [SMALL_STATE(1419)] = 20106, - [SMALL_STATE(1420)] = 20174, - [SMALL_STATE(1421)] = 20242, - [SMALL_STATE(1422)] = 20310, - [SMALL_STATE(1423)] = 20378, - [SMALL_STATE(1424)] = 20446, - [SMALL_STATE(1425)] = 20562, - [SMALL_STATE(1426)] = 20630, - [SMALL_STATE(1427)] = 20698, - [SMALL_STATE(1428)] = 20764, - [SMALL_STATE(1429)] = 20880, - [SMALL_STATE(1430)] = 20946, - [SMALL_STATE(1431)] = 21014, - [SMALL_STATE(1432)] = 21080, - [SMALL_STATE(1433)] = 21196, - [SMALL_STATE(1434)] = 21312, - [SMALL_STATE(1435)] = 21428, - [SMALL_STATE(1436)] = 21496, - [SMALL_STATE(1437)] = 21612, - [SMALL_STATE(1438)] = 21677, - [SMALL_STATE(1439)] = 21742, - [SMALL_STATE(1440)] = 21807, - [SMALL_STATE(1441)] = 21872, - [SMALL_STATE(1442)] = 21937, - [SMALL_STATE(1443)] = 22002, - [SMALL_STATE(1444)] = 22067, - [SMALL_STATE(1445)] = 22132, - [SMALL_STATE(1446)] = 22197, - [SMALL_STATE(1447)] = 22262, - [SMALL_STATE(1448)] = 22374, - [SMALL_STATE(1449)] = 22486, - [SMALL_STATE(1450)] = 22598, - [SMALL_STATE(1451)] = 22710, - [SMALL_STATE(1452)] = 22822, - [SMALL_STATE(1453)] = 22934, - [SMALL_STATE(1454)] = 23046, - [SMALL_STATE(1455)] = 23157, - [SMALL_STATE(1456)] = 23268, - [SMALL_STATE(1457)] = 23379, - [SMALL_STATE(1458)] = 23490, - [SMALL_STATE(1459)] = 23601, - [SMALL_STATE(1460)] = 23712, - [SMALL_STATE(1461)] = 23823, - [SMALL_STATE(1462)] = 23934, - [SMALL_STATE(1463)] = 24053, - [SMALL_STATE(1464)] = 24164, - [SMALL_STATE(1465)] = 24283, - [SMALL_STATE(1466)] = 24402, - [SMALL_STATE(1467)] = 24521, - [SMALL_STATE(1468)] = 24632, - [SMALL_STATE(1469)] = 24751, - [SMALL_STATE(1470)] = 24862, - [SMALL_STATE(1471)] = 24964, - [SMALL_STATE(1472)] = 25066, - [SMALL_STATE(1473)] = 25168, - [SMALL_STATE(1474)] = 25270, - [SMALL_STATE(1475)] = 25372, - [SMALL_STATE(1476)] = 25474, - [SMALL_STATE(1477)] = 25576, - [SMALL_STATE(1478)] = 25685, - [SMALL_STATE(1479)] = 25742, - [SMALL_STATE(1480)] = 25853, - [SMALL_STATE(1481)] = 25910, - [SMALL_STATE(1482)] = 25982, - [SMALL_STATE(1483)] = 26076, - [SMALL_STATE(1484)] = 26142, - [SMALL_STATE(1485)] = 26208, - [SMALL_STATE(1486)] = 26274, - [SMALL_STATE(1487)] = 26338, - [SMALL_STATE(1488)] = 26395, - [SMALL_STATE(1489)] = 26450, - [SMALL_STATE(1490)] = 26505, - [SMALL_STATE(1491)] = 26560, - [SMALL_STATE(1492)] = 26615, - [SMALL_STATE(1493)] = 26670, - [SMALL_STATE(1494)] = 26731, - [SMALL_STATE(1495)] = 26786, - [SMALL_STATE(1496)] = 26843, - [SMALL_STATE(1497)] = 26898, - [SMALL_STATE(1498)] = 26957, - [SMALL_STATE(1499)] = 27018, - [SMALL_STATE(1500)] = 27079, - [SMALL_STATE(1501)] = 27136, - [SMALL_STATE(1502)] = 27195, - [SMALL_STATE(1503)] = 27256, - [SMALL_STATE(1504)] = 27317, - [SMALL_STATE(1505)] = 27376, - [SMALL_STATE(1506)] = 27430, - [SMALL_STATE(1507)] = 27484, - [SMALL_STATE(1508)] = 27538, - [SMALL_STATE(1509)] = 27592, - [SMALL_STATE(1510)] = 27712, - [SMALL_STATE(1511)] = 27766, - [SMALL_STATE(1512)] = 27820, - [SMALL_STATE(1513)] = 27874, - [SMALL_STATE(1514)] = 27928, - [SMALL_STATE(1515)] = 27982, - [SMALL_STATE(1516)] = 28036, - [SMALL_STATE(1517)] = 28090, - [SMALL_STATE(1518)] = 28144, - [SMALL_STATE(1519)] = 28204, - [SMALL_STATE(1520)] = 28262, - [SMALL_STATE(1521)] = 28382, - [SMALL_STATE(1522)] = 28436, - [SMALL_STATE(1523)] = 28492, - [SMALL_STATE(1524)] = 28552, - [SMALL_STATE(1525)] = 28612, - [SMALL_STATE(1526)] = 28698, - [SMALL_STATE(1527)] = 28752, - [SMALL_STATE(1528)] = 28838, - [SMALL_STATE(1529)] = 28892, - [SMALL_STATE(1530)] = 28954, - [SMALL_STATE(1531)] = 29008, - [SMALL_STATE(1532)] = 29062, - [SMALL_STATE(1533)] = 29116, - [SMALL_STATE(1534)] = 29170, - [SMALL_STATE(1535)] = 29224, - [SMALL_STATE(1536)] = 29278, - [SMALL_STATE(1537)] = 29364, - [SMALL_STATE(1538)] = 29420, - [SMALL_STATE(1539)] = 29474, - [SMALL_STATE(1540)] = 29528, - [SMALL_STATE(1541)] = 29582, - [SMALL_STATE(1542)] = 29636, - [SMALL_STATE(1543)] = 29698, - [SMALL_STATE(1544)] = 29760, - [SMALL_STATE(1545)] = 29822, - [SMALL_STATE(1546)] = 29880, - [SMALL_STATE(1547)] = 29934, - [SMALL_STATE(1548)] = 29992, - [SMALL_STATE(1549)] = 30046, - [SMALL_STATE(1550)] = 30100, - [SMALL_STATE(1551)] = 30154, - [SMALL_STATE(1552)] = 30214, - [SMALL_STATE(1553)] = 30274, - [SMALL_STATE(1554)] = 30332, - [SMALL_STATE(1555)] = 30386, - [SMALL_STATE(1556)] = 30440, - [SMALL_STATE(1557)] = 30494, - [SMALL_STATE(1558)] = 30548, - [SMALL_STATE(1559)] = 30608, - [SMALL_STATE(1560)] = 30664, - [SMALL_STATE(1561)] = 30718, - [SMALL_STATE(1562)] = 30774, - [SMALL_STATE(1563)] = 30828, - [SMALL_STATE(1564)] = 30882, - [SMALL_STATE(1565)] = 30942, - [SMALL_STATE(1566)] = 30996, - [SMALL_STATE(1567)] = 31052, - [SMALL_STATE(1568)] = 31172, - [SMALL_STATE(1569)] = 31226, - [SMALL_STATE(1570)] = 31280, - [SMALL_STATE(1571)] = 31336, - [SMALL_STATE(1572)] = 31394, - [SMALL_STATE(1573)] = 31450, - [SMALL_STATE(1574)] = 31504, - [SMALL_STATE(1575)] = 31558, - [SMALL_STATE(1576)] = 31612, - [SMALL_STATE(1577)] = 31666, - [SMALL_STATE(1578)] = 31722, - [SMALL_STATE(1579)] = 31808, - [SMALL_STATE(1580)] = 31864, - [SMALL_STATE(1581)] = 31918, - [SMALL_STATE(1582)] = 31972, - [SMALL_STATE(1583)] = 32026, - [SMALL_STATE(1584)] = 32086, - [SMALL_STATE(1585)] = 32146, - [SMALL_STATE(1586)] = 32202, - [SMALL_STATE(1587)] = 32258, - [SMALL_STATE(1588)] = 32312, - [SMALL_STATE(1589)] = 32372, - [SMALL_STATE(1590)] = 32426, - [SMALL_STATE(1591)] = 32546, - [SMALL_STATE(1592)] = 32600, - [SMALL_STATE(1593)] = 32654, - [SMALL_STATE(1594)] = 32708, - [SMALL_STATE(1595)] = 32768, - [SMALL_STATE(1596)] = 32824, - [SMALL_STATE(1597)] = 32878, - [SMALL_STATE(1598)] = 32932, - [SMALL_STATE(1599)] = 32986, - [SMALL_STATE(1600)] = 33040, - [SMALL_STATE(1601)] = 33094, - [SMALL_STATE(1602)] = 33148, - [SMALL_STATE(1603)] = 33202, - [SMALL_STATE(1604)] = 33256, - [SMALL_STATE(1605)] = 33342, - [SMALL_STATE(1606)] = 33396, - [SMALL_STATE(1607)] = 33450, - [SMALL_STATE(1608)] = 33504, - [SMALL_STATE(1609)] = 33558, - [SMALL_STATE(1610)] = 33612, - [SMALL_STATE(1611)] = 33666, - [SMALL_STATE(1612)] = 33720, - [SMALL_STATE(1613)] = 33774, - [SMALL_STATE(1614)] = 33828, - [SMALL_STATE(1615)] = 33882, - [SMALL_STATE(1616)] = 33936, - [SMALL_STATE(1617)] = 33990, - [SMALL_STATE(1618)] = 34046, - [SMALL_STATE(1619)] = 34100, - [SMALL_STATE(1620)] = 34154, - [SMALL_STATE(1621)] = 34208, - [SMALL_STATE(1622)] = 34262, - [SMALL_STATE(1623)] = 34316, - [SMALL_STATE(1624)] = 34370, - [SMALL_STATE(1625)] = 34424, - [SMALL_STATE(1626)] = 34478, - [SMALL_STATE(1627)] = 34534, - [SMALL_STATE(1628)] = 34588, - [SMALL_STATE(1629)] = 34648, - [SMALL_STATE(1630)] = 34702, - [SMALL_STATE(1631)] = 34756, - [SMALL_STATE(1632)] = 34810, - [SMALL_STATE(1633)] = 34864, - [SMALL_STATE(1634)] = 34918, - [SMALL_STATE(1635)] = 34972, - [SMALL_STATE(1636)] = 35025, - [SMALL_STATE(1637)] = 35136, - [SMALL_STATE(1638)] = 35247, - [SMALL_STATE(1639)] = 35358, - [SMALL_STATE(1640)] = 35469, - [SMALL_STATE(1641)] = 35584, - [SMALL_STATE(1642)] = 35695, - [SMALL_STATE(1643)] = 35748, - [SMALL_STATE(1644)] = 35801, - [SMALL_STATE(1645)] = 35912, - [SMALL_STATE(1646)] = 36023, - [SMALL_STATE(1647)] = 36134, - [SMALL_STATE(1648)] = 36187, - [SMALL_STATE(1649)] = 36298, - [SMALL_STATE(1650)] = 36371, - [SMALL_STATE(1651)] = 36450, - [SMALL_STATE(1652)] = 36561, - [SMALL_STATE(1653)] = 36632, - [SMALL_STATE(1654)] = 36691, - [SMALL_STATE(1655)] = 36748, - [SMALL_STATE(1656)] = 36801, - [SMALL_STATE(1657)] = 36854, - [SMALL_STATE(1658)] = 36907, - [SMALL_STATE(1659)] = 36960, - [SMALL_STATE(1660)] = 37013, - [SMALL_STATE(1661)] = 37066, - [SMALL_STATE(1662)] = 37119, - [SMALL_STATE(1663)] = 37172, - [SMALL_STATE(1664)] = 37247, - [SMALL_STATE(1665)] = 37300, - [SMALL_STATE(1666)] = 37353, - [SMALL_STATE(1667)] = 37406, - [SMALL_STATE(1668)] = 37459, - [SMALL_STATE(1669)] = 37512, - [SMALL_STATE(1670)] = 37565, - [SMALL_STATE(1671)] = 37618, - [SMALL_STATE(1672)] = 37671, - [SMALL_STATE(1673)] = 37724, - [SMALL_STATE(1674)] = 37777, - [SMALL_STATE(1675)] = 37854, - [SMALL_STATE(1676)] = 37933, - [SMALL_STATE(1677)] = 38044, - [SMALL_STATE(1678)] = 38155, - [SMALL_STATE(1679)] = 38208, - [SMALL_STATE(1680)] = 38261, - [SMALL_STATE(1681)] = 38360, - [SMALL_STATE(1682)] = 38461, - [SMALL_STATE(1683)] = 38514, - [SMALL_STATE(1684)] = 38567, - [SMALL_STATE(1685)] = 38620, - [SMALL_STATE(1686)] = 38673, - [SMALL_STATE(1687)] = 38726, - [SMALL_STATE(1688)] = 38779, - [SMALL_STATE(1689)] = 38832, - [SMALL_STATE(1690)] = 38947, - [SMALL_STATE(1691)] = 39024, - [SMALL_STATE(1692)] = 39077, - [SMALL_STATE(1693)] = 39156, - [SMALL_STATE(1694)] = 39209, - [SMALL_STATE(1695)] = 39320, - [SMALL_STATE(1696)] = 39375, - [SMALL_STATE(1697)] = 39428, - [SMALL_STATE(1698)] = 39485, - [SMALL_STATE(1699)] = 39538, - [SMALL_STATE(1700)] = 39591, - [SMALL_STATE(1701)] = 39644, - [SMALL_STATE(1702)] = 39697, - [SMALL_STATE(1703)] = 39750, - [SMALL_STATE(1704)] = 39831, - [SMALL_STATE(1705)] = 39884, - [SMALL_STATE(1706)] = 39937, - [SMALL_STATE(1707)] = 39990, - [SMALL_STATE(1708)] = 40067, - [SMALL_STATE(1709)] = 40160, - [SMALL_STATE(1710)] = 40239, - [SMALL_STATE(1711)] = 40304, - [SMALL_STATE(1712)] = 40415, - [SMALL_STATE(1713)] = 40468, - [SMALL_STATE(1714)] = 40579, - [SMALL_STATE(1715)] = 40658, - [SMALL_STATE(1716)] = 40769, - [SMALL_STATE(1717)] = 40880, - [SMALL_STATE(1718)] = 40991, - [SMALL_STATE(1719)] = 41046, - [SMALL_STATE(1720)] = 41141, - [SMALL_STATE(1721)] = 41238, - [SMALL_STATE(1722)] = 41317, - [SMALL_STATE(1723)] = 41398, - [SMALL_STATE(1724)] = 41483, - [SMALL_STATE(1725)] = 41536, - [SMALL_STATE(1726)] = 41591, - [SMALL_STATE(1727)] = 41666, - [SMALL_STATE(1728)] = 41721, - [SMALL_STATE(1729)] = 41832, - [SMALL_STATE(1730)] = 41931, - [SMALL_STATE(1731)] = 42032, - [SMALL_STATE(1732)] = 42113, - [SMALL_STATE(1733)] = 42206, - [SMALL_STATE(1734)] = 42261, - [SMALL_STATE(1735)] = 42356, - [SMALL_STATE(1736)] = 42453, - [SMALL_STATE(1737)] = 42512, - [SMALL_STATE(1738)] = 42591, - [SMALL_STATE(1739)] = 42672, - [SMALL_STATE(1740)] = 42761, - [SMALL_STATE(1741)] = 42864, - [SMALL_STATE(1742)] = 42975, - [SMALL_STATE(1743)] = 43064, - [SMALL_STATE(1744)] = 43175, - [SMALL_STATE(1745)] = 43288, - [SMALL_STATE(1746)] = 43399, - [SMALL_STATE(1747)] = 43510, - [SMALL_STATE(1748)] = 43569, - [SMALL_STATE(1749)] = 43680, - [SMALL_STATE(1750)] = 43791, - [SMALL_STATE(1751)] = 43894, - [SMALL_STATE(1752)] = 44005, - [SMALL_STATE(1753)] = 44116, - [SMALL_STATE(1754)] = 44231, - [SMALL_STATE(1755)] = 44310, - [SMALL_STATE(1756)] = 44421, - [SMALL_STATE(1757)] = 44494, - [SMALL_STATE(1758)] = 44547, - [SMALL_STATE(1759)] = 44600, - [SMALL_STATE(1760)] = 44653, - [SMALL_STATE(1761)] = 44764, - [SMALL_STATE(1762)] = 44875, - [SMALL_STATE(1763)] = 44928, - [SMALL_STATE(1764)] = 44985, - [SMALL_STATE(1765)] = 45038, - [SMALL_STATE(1766)] = 45117, - [SMALL_STATE(1767)] = 45170, - [SMALL_STATE(1768)] = 45285, - [SMALL_STATE(1769)] = 45338, - [SMALL_STATE(1770)] = 45391, - [SMALL_STATE(1771)] = 45444, - [SMALL_STATE(1772)] = 45497, - [SMALL_STATE(1773)] = 45608, - [SMALL_STATE(1774)] = 45661, - [SMALL_STATE(1775)] = 45772, - [SMALL_STATE(1776)] = 45825, - [SMALL_STATE(1777)] = 45878, - [SMALL_STATE(1778)] = 45931, - [SMALL_STATE(1779)] = 46002, - [SMALL_STATE(1780)] = 46087, - [SMALL_STATE(1781)] = 46164, - [SMALL_STATE(1782)] = 46227, - [SMALL_STATE(1783)] = 46306, - [SMALL_STATE(1784)] = 46369, - [SMALL_STATE(1785)] = 46432, - [SMALL_STATE(1786)] = 46513, - [SMALL_STATE(1787)] = 46586, - [SMALL_STATE(1788)] = 46701, - [SMALL_STATE(1789)] = 46780, - [SMALL_STATE(1790)] = 46891, - [SMALL_STATE(1791)] = 46956, - [SMALL_STATE(1792)] = 47067, - [SMALL_STATE(1793)] = 47178, - [SMALL_STATE(1794)] = 47231, - [SMALL_STATE(1795)] = 47302, - [SMALL_STATE(1796)] = 47363, - [SMALL_STATE(1797)] = 47474, - [SMALL_STATE(1798)] = 47543, - [SMALL_STATE(1799)] = 47596, - [SMALL_STATE(1800)] = 47649, - [SMALL_STATE(1801)] = 47702, - [SMALL_STATE(1802)] = 47755, - [SMALL_STATE(1803)] = 47866, - [SMALL_STATE(1804)] = 47981, - [SMALL_STATE(1805)] = 48046, - [SMALL_STATE(1806)] = 48123, - [SMALL_STATE(1807)] = 48202, - [SMALL_STATE(1808)] = 48313, - [SMALL_STATE(1809)] = 48424, - [SMALL_STATE(1810)] = 48509, - [SMALL_STATE(1811)] = 48622, - [SMALL_STATE(1812)] = 48697, - [SMALL_STATE(1813)] = 48796, - [SMALL_STATE(1814)] = 48897, - [SMALL_STATE(1815)] = 48978, - [SMALL_STATE(1816)] = 49089, - [SMALL_STATE(1817)] = 49182, - [SMALL_STATE(1818)] = 49277, - [SMALL_STATE(1819)] = 49374, - [SMALL_STATE(1820)] = 49427, - [SMALL_STATE(1821)] = 49506, - [SMALL_STATE(1822)] = 49587, - [SMALL_STATE(1823)] = 49702, - [SMALL_STATE(1824)] = 49791, - [SMALL_STATE(1825)] = 49894, - [SMALL_STATE(1826)] = 50005, - [SMALL_STATE(1827)] = 50116, - [SMALL_STATE(1828)] = 50227, - [SMALL_STATE(1829)] = 50341, - [SMALL_STATE(1830)] = 50425, - [SMALL_STATE(1831)] = 50539, - [SMALL_STATE(1832)] = 50639, - [SMALL_STATE(1833)] = 50749, - [SMALL_STATE(1834)] = 50863, - [SMALL_STATE(1835)] = 50973, - [SMALL_STATE(1836)] = 51083, - [SMALL_STATE(1837)] = 51163, - [SMALL_STATE(1838)] = 51273, - [SMALL_STATE(1839)] = 51387, - [SMALL_STATE(1840)] = 51459, - [SMALL_STATE(1841)] = 51533, - [SMALL_STATE(1842)] = 51625, - [SMALL_STATE(1843)] = 51735, - [SMALL_STATE(1844)] = 51829, - [SMALL_STATE(1845)] = 51925, - [SMALL_STATE(1846)] = 52035, - [SMALL_STATE(1847)] = 52145, - [SMALL_STATE(1848)] = 52223, - [SMALL_STATE(1849)] = 52283, - [SMALL_STATE(1850)] = 52363, - [SMALL_STATE(1851)] = 52473, - [SMALL_STATE(1852)] = 52587, - [SMALL_STATE(1853)] = 52659, - [SMALL_STATE(1854)] = 52773, - [SMALL_STATE(1855)] = 52833, - [SMALL_STATE(1856)] = 52947, - [SMALL_STATE(1857)] = 53061, - [SMALL_STATE(1858)] = 53175, - [SMALL_STATE(1859)] = 53253, - [SMALL_STATE(1860)] = 53327, - [SMALL_STATE(1861)] = 53437, - [SMALL_STATE(1862)] = 53509, - [SMALL_STATE(1863)] = 53567, - [SMALL_STATE(1864)] = 53677, - [SMALL_STATE(1865)] = 53791, - [SMALL_STATE(1866)] = 53901, - [SMALL_STATE(1867)] = 53955, - [SMALL_STATE(1868)] = 54011, - [SMALL_STATE(1869)] = 54089, - [SMALL_STATE(1870)] = 54203, - [SMALL_STATE(1871)] = 54313, - [SMALL_STATE(1872)] = 54371, - [SMALL_STATE(1873)] = 54481, - [SMALL_STATE(1874)] = 54537, - [SMALL_STATE(1875)] = 54593, - [SMALL_STATE(1876)] = 54707, - [SMALL_STATE(1877)] = 54765, - [SMALL_STATE(1878)] = 54853, - [SMALL_STATE(1879)] = 54905, - [SMALL_STATE(1880)] = 55007, - [SMALL_STATE(1881)] = 55119, - [SMALL_STATE(1882)] = 55233, - [SMALL_STATE(1883)] = 55293, - [SMALL_STATE(1884)] = 55407, - [SMALL_STATE(1885)] = 55517, - [SMALL_STATE(1886)] = 55627, - [SMALL_STATE(1887)] = 55741, - [SMALL_STATE(1888)] = 55813, - [SMALL_STATE(1889)] = 55887, - [SMALL_STATE(1890)] = 55943, - [SMALL_STATE(1891)] = 56001, - [SMALL_STATE(1892)] = 56071, - [SMALL_STATE(1893)] = 56135, - [SMALL_STATE(1894)] = 56197, - [SMALL_STATE(1895)] = 56259, - [SMALL_STATE(1896)] = 56373, - [SMALL_STATE(1897)] = 56487, - [SMALL_STATE(1898)] = 56541, - [SMALL_STATE(1899)] = 56655, - [SMALL_STATE(1900)] = 56709, - [SMALL_STATE(1901)] = 56761, - [SMALL_STATE(1902)] = 56833, - [SMALL_STATE(1903)] = 56947, - [SMALL_STATE(1904)] = 57011, - [SMALL_STATE(1905)] = 57121, - [SMALL_STATE(1906)] = 57231, - [SMALL_STATE(1907)] = 57341, - [SMALL_STATE(1908)] = 57451, - [SMALL_STATE(1909)] = 57561, - [SMALL_STATE(1910)] = 57645, - [SMALL_STATE(1911)] = 57719, - [SMALL_STATE(1912)] = 57817, - [SMALL_STATE(1913)] = 57917, - [SMALL_STATE(1914)] = 57997, - [SMALL_STATE(1915)] = 58089, - [SMALL_STATE(1916)] = 58183, - [SMALL_STATE(1917)] = 58279, - [SMALL_STATE(1918)] = 58357, - [SMALL_STATE(1919)] = 58437, - [SMALL_STATE(1920)] = 58525, - [SMALL_STATE(1921)] = 58627, - [SMALL_STATE(1922)] = 58737, - [SMALL_STATE(1923)] = 58847, - [SMALL_STATE(1924)] = 58957, - [SMALL_STATE(1925)] = 59067, - [SMALL_STATE(1926)] = 59177, - [SMALL_STATE(1927)] = 59287, - [SMALL_STATE(1928)] = 59397, - [SMALL_STATE(1929)] = 59507, - [SMALL_STATE(1930)] = 59565, - [SMALL_STATE(1931)] = 59637, - [SMALL_STATE(1932)] = 59715, - [SMALL_STATE(1933)] = 59825, - [SMALL_STATE(1934)] = 59895, - [SMALL_STATE(1935)] = 60005, - [SMALL_STATE(1936)] = 60077, - [SMALL_STATE(1937)] = 60175, - [SMALL_STATE(1938)] = 60289, - [SMALL_STATE(1939)] = 60403, - [SMALL_STATE(1940)] = 60455, - [SMALL_STATE(1941)] = 60565, - [SMALL_STATE(1942)] = 60679, - [SMALL_STATE(1943)] = 60793, - [SMALL_STATE(1944)] = 60907, - [SMALL_STATE(1945)] = 60959, - [SMALL_STATE(1946)] = 61069, - [SMALL_STATE(1947)] = 61179, - [SMALL_STATE(1948)] = 61293, - [SMALL_STATE(1949)] = 61345, - [SMALL_STATE(1950)] = 61400, - [SMALL_STATE(1951)] = 61457, - [SMALL_STATE(1952)] = 61508, - [SMALL_STATE(1953)] = 61559, - [SMALL_STATE(1954)] = 61622, - [SMALL_STATE(1955)] = 61675, - [SMALL_STATE(1956)] = 61738, - [SMALL_STATE(1957)] = 61811, - [SMALL_STATE(1958)] = 61862, - [SMALL_STATE(1959)] = 61913, - [SMALL_STATE(1960)] = 61964, - [SMALL_STATE(1961)] = 62075, - [SMALL_STATE(1962)] = 62128, - [SMALL_STATE(1963)] = 62179, - [SMALL_STATE(1964)] = 62252, - [SMALL_STATE(1965)] = 62303, - [SMALL_STATE(1966)] = 62354, - [SMALL_STATE(1967)] = 62411, - [SMALL_STATE(1968)] = 62462, - [SMALL_STATE(1969)] = 62513, - [SMALL_STATE(1970)] = 62564, - [SMALL_STATE(1971)] = 62615, - [SMALL_STATE(1972)] = 62666, - [SMALL_STATE(1973)] = 62717, - [SMALL_STATE(1974)] = 62826, - [SMALL_STATE(1975)] = 62935, - [SMALL_STATE(1976)] = 62986, - [SMALL_STATE(1977)] = 63037, - [SMALL_STATE(1978)] = 63088, - [SMALL_STATE(1979)] = 63145, - [SMALL_STATE(1980)] = 63198, - [SMALL_STATE(1981)] = 63269, - [SMALL_STATE(1982)] = 63320, - [SMALL_STATE(1983)] = 63371, - [SMALL_STATE(1984)] = 63464, - [SMALL_STATE(1985)] = 63573, - [SMALL_STATE(1986)] = 63668, - [SMALL_STATE(1987)] = 63751, - [SMALL_STATE(1988)] = 63828, - [SMALL_STATE(1989)] = 63911, - [SMALL_STATE(1990)] = 64020, - [SMALL_STATE(1991)] = 64129, - [SMALL_STATE(1992)] = 64206, - [SMALL_STATE(1993)] = 64279, - [SMALL_STATE(1994)] = 64348, - [SMALL_STATE(1995)] = 64457, - [SMALL_STATE(1996)] = 64540, - [SMALL_STATE(1997)] = 64591, - [SMALL_STATE(1998)] = 64700, - [SMALL_STATE(1999)] = 64763, - [SMALL_STATE(2000)] = 64822, - [SMALL_STATE(2001)] = 64877, - [SMALL_STATE(2002)] = 64960, - [SMALL_STATE(2003)] = 65011, - [SMALL_STATE(2004)] = 65062, - [SMALL_STATE(2005)] = 65113, - [SMALL_STATE(2006)] = 65164, - [SMALL_STATE(2007)] = 65229, - [SMALL_STATE(2008)] = 65280, - [SMALL_STATE(2009)] = 65353, - [SMALL_STATE(2010)] = 65432, - [SMALL_STATE(2011)] = 65497, - [SMALL_STATE(2012)] = 65548, - [SMALL_STATE(2013)] = 65607, - [SMALL_STATE(2014)] = 65716, - [SMALL_STATE(2015)] = 65785, - [SMALL_STATE(2016)] = 65838, - [SMALL_STATE(2017)] = 65889, - [SMALL_STATE(2018)] = 65940, - [SMALL_STATE(2019)] = 66027, - [SMALL_STATE(2020)] = 66080, - [SMALL_STATE(2021)] = 66131, - [SMALL_STATE(2022)] = 66182, - [SMALL_STATE(2023)] = 66265, - [SMALL_STATE(2024)] = 66316, - [SMALL_STATE(2025)] = 66369, - [SMALL_STATE(2026)] = 66420, - [SMALL_STATE(2027)] = 66471, - [SMALL_STATE(2028)] = 66580, - [SMALL_STATE(2029)] = 66689, - [SMALL_STATE(2030)] = 66740, - [SMALL_STATE(2031)] = 66797, - [SMALL_STATE(2032)] = 66848, - [SMALL_STATE(2033)] = 66899, - [SMALL_STATE(2034)] = 66956, - [SMALL_STATE(2035)] = 67009, - [SMALL_STATE(2036)] = 67060, - [SMALL_STATE(2037)] = 67111, - [SMALL_STATE(2038)] = 67164, - [SMALL_STATE(2039)] = 67215, - [SMALL_STATE(2040)] = 67266, - [SMALL_STATE(2041)] = 67317, - [SMALL_STATE(2042)] = 67368, - [SMALL_STATE(2043)] = 67419, - [SMALL_STATE(2044)] = 67470, - [SMALL_STATE(2045)] = 67521, - [SMALL_STATE(2046)] = 67572, - [SMALL_STATE(2047)] = 67623, - [SMALL_STATE(2048)] = 67676, - [SMALL_STATE(2049)] = 67733, - [SMALL_STATE(2050)] = 67790, - [SMALL_STATE(2051)] = 67891, - [SMALL_STATE(2052)] = 68000, - [SMALL_STATE(2053)] = 68099, - [SMALL_STATE(2054)] = 68152, - [SMALL_STATE(2055)] = 68203, - [SMALL_STATE(2056)] = 68312, - [SMALL_STATE(2057)] = 68369, - [SMALL_STATE(2058)] = 68420, - [SMALL_STATE(2059)] = 68479, - [SMALL_STATE(2060)] = 68530, - [SMALL_STATE(2061)] = 68581, - [SMALL_STATE(2062)] = 68690, - [SMALL_STATE(2063)] = 68741, - [SMALL_STATE(2064)] = 68792, - [SMALL_STATE(2065)] = 68843, - [SMALL_STATE(2066)] = 68912, - [SMALL_STATE(2067)] = 69021, - [SMALL_STATE(2068)] = 69078, - [SMALL_STATE(2069)] = 69135, - [SMALL_STATE(2070)] = 69188, - [SMALL_STATE(2071)] = 69271, - [SMALL_STATE(2072)] = 69324, - [SMALL_STATE(2073)] = 69387, - [SMALL_STATE(2074)] = 69438, - [SMALL_STATE(2075)] = 69489, - [SMALL_STATE(2076)] = 69540, - [SMALL_STATE(2077)] = 69649, - [SMALL_STATE(2078)] = 69732, - [SMALL_STATE(2079)] = 69829, - [SMALL_STATE(2080)] = 69880, - [SMALL_STATE(2081)] = 69989, - [SMALL_STATE(2082)] = 70068, - [SMALL_STATE(2083)] = 70119, - [SMALL_STATE(2084)] = 70210, - [SMALL_STATE(2085)] = 70319, - [SMALL_STATE(2086)] = 70378, - [SMALL_STATE(2087)] = 70487, - [SMALL_STATE(2088)] = 70538, - [SMALL_STATE(2089)] = 70589, - [SMALL_STATE(2090)] = 70644, - [SMALL_STATE(2091)] = 70707, - [SMALL_STATE(2092)] = 70816, - [SMALL_STATE(2093)] = 70873, - [SMALL_STATE(2094)] = 70924, - [SMALL_STATE(2095)] = 70993, - [SMALL_STATE(2096)] = 71050, - [SMALL_STATE(2097)] = 71103, - [SMALL_STATE(2098)] = 71154, - [SMALL_STATE(2099)] = 71227, - [SMALL_STATE(2100)] = 71290, - [SMALL_STATE(2101)] = 71341, - [SMALL_STATE(2102)] = 71410, - [SMALL_STATE(2103)] = 71461, - [SMALL_STATE(2104)] = 71530, - [SMALL_STATE(2105)] = 71581, - [SMALL_STATE(2106)] = 71652, - [SMALL_STATE(2107)] = 71703, - [SMALL_STATE(2108)] = 71812, - [SMALL_STATE(2109)] = 71863, - [SMALL_STATE(2110)] = 71922, - [SMALL_STATE(2111)] = 71973, - [SMALL_STATE(2112)] = 72024, - [SMALL_STATE(2113)] = 72077, - [SMALL_STATE(2114)] = 72128, - [SMALL_STATE(2115)] = 72237, - [SMALL_STATE(2116)] = 72296, - [SMALL_STATE(2117)] = 72347, - [SMALL_STATE(2118)] = 72410, - [SMALL_STATE(2119)] = 72469, - [SMALL_STATE(2120)] = 72520, - [SMALL_STATE(2121)] = 72575, - [SMALL_STATE(2122)] = 72626, - [SMALL_STATE(2123)] = 72683, - [SMALL_STATE(2124)] = 72740, - [SMALL_STATE(2125)] = 72849, - [SMALL_STATE(2126)] = 72912, - [SMALL_STATE(2127)] = 73021, - [SMALL_STATE(2128)] = 73074, - [SMALL_STATE(2129)] = 73183, - [SMALL_STATE(2130)] = 73236, - [SMALL_STATE(2131)] = 73309, - [SMALL_STATE(2132)] = 73362, - [SMALL_STATE(2133)] = 73435, - [SMALL_STATE(2134)] = 73486, - [SMALL_STATE(2135)] = 73537, - [SMALL_STATE(2136)] = 73594, - [SMALL_STATE(2137)] = 73703, - [SMALL_STATE(2138)] = 73776, + [SMALL_STATE(1221)] = 4498, + [SMALL_STATE(1222)] = 4588, + [SMALL_STATE(1223)] = 4674, + [SMALL_STATE(1224)] = 4764, + [SMALL_STATE(1225)] = 4850, + [SMALL_STATE(1226)] = 4930, + [SMALL_STATE(1227)] = 5022, + [SMALL_STATE(1228)] = 5114, + [SMALL_STATE(1229)] = 5192, + [SMALL_STATE(1230)] = 5278, + [SMALL_STATE(1231)] = 5364, + [SMALL_STATE(1232)] = 5442, + [SMALL_STATE(1233)] = 5528, + [SMALL_STATE(1234)] = 5618, + [SMALL_STATE(1235)] = 5694, + [SMALL_STATE(1236)] = 5780, + [SMALL_STATE(1237)] = 5866, + [SMALL_STATE(1238)] = 5952, + [SMALL_STATE(1239)] = 6038, + [SMALL_STATE(1240)] = 6124, + [SMALL_STATE(1241)] = 6214, + [SMALL_STATE(1242)] = 6300, + [SMALL_STATE(1243)] = 6390, + [SMALL_STATE(1244)] = 6476, + [SMALL_STATE(1245)] = 6562, + [SMALL_STATE(1246)] = 6648, + [SMALL_STATE(1247)] = 6722, + [SMALL_STATE(1248)] = 6800, + [SMALL_STATE(1249)] = 6886, + [SMALL_STATE(1250)] = 6969, + [SMALL_STATE(1251)] = 7044, + [SMALL_STATE(1252)] = 7129, + [SMALL_STATE(1253)] = 7218, + [SMALL_STATE(1254)] = 7293, + [SMALL_STATE(1255)] = 7378, + [SMALL_STATE(1256)] = 7467, + [SMALL_STATE(1257)] = 7556, + [SMALL_STATE(1258)] = 7633, + [SMALL_STATE(1259)] = 7712, + [SMALL_STATE(1260)] = 7795, + [SMALL_STATE(1261)] = 7864, + [SMALL_STATE(1262)] = 7933, + [SMALL_STATE(1263)] = 8002, + [SMALL_STATE(1264)] = 8071, + [SMALL_STATE(1265)] = 8138, + [SMALL_STATE(1266)] = 8217, + [SMALL_STATE(1267)] = 8304, + [SMALL_STATE(1268)] = 8381, + [SMALL_STATE(1269)] = 8470, + [SMALL_STATE(1270)] = 8555, + [SMALL_STATE(1271)] = 8644, + [SMALL_STATE(1272)] = 8733, + [SMALL_STATE(1273)] = 8812, + [SMALL_STATE(1274)] = 8878, + [SMALL_STATE(1275)] = 8944, + [SMALL_STATE(1276)] = 9016, + [SMALL_STATE(1277)] = 9092, + [SMALL_STATE(1278)] = 9168, + [SMALL_STATE(1279)] = 9240, + [SMALL_STATE(1280)] = 9312, + [SMALL_STATE(1281)] = 9384, + [SMALL_STATE(1282)] = 9450, + [SMALL_STATE(1283)] = 9516, + [SMALL_STATE(1284)] = 9600, + [SMALL_STATE(1285)] = 9666, + [SMALL_STATE(1286)] = 9744, + [SMALL_STATE(1287)] = 9832, + [SMALL_STATE(1288)] = 9908, + [SMALL_STATE(1289)] = 9984, + [SMALL_STATE(1290)] = 10056, + [SMALL_STATE(1291)] = 10122, + [SMALL_STATE(1292)] = 10200, + [SMALL_STATE(1293)] = 10268, + [SMALL_STATE(1294)] = 10336, + [SMALL_STATE(1295)] = 10410, + [SMALL_STATE(1296)] = 10482, + [SMALL_STATE(1297)] = 10566, + [SMALL_STATE(1298)] = 10638, + [SMALL_STATE(1299)] = 10720, + [SMALL_STATE(1300)] = 10794, + [SMALL_STATE(1301)] = 10860, + [SMALL_STATE(1302)] = 10926, + [SMALL_STATE(1303)] = 11000, + [SMALL_STATE(1304)] = 11084, + [SMALL_STATE(1305)] = 11150, + [SMALL_STATE(1306)] = 11228, + [SMALL_STATE(1307)] = 11304, + [SMALL_STATE(1308)] = 11370, + [SMALL_STATE(1309)] = 11436, + [SMALL_STATE(1310)] = 11508, + [SMALL_STATE(1311)] = 11578, + [SMALL_STATE(1312)] = 11650, + [SMALL_STATE(1313)] = 11730, + [SMALL_STATE(1314)] = 11796, + [SMALL_STATE(1315)] = 11868, + [SMALL_STATE(1316)] = 11956, + [SMALL_STATE(1317)] = 12030, + [SMALL_STATE(1318)] = 12102, + [SMALL_STATE(1319)] = 12174, + [SMALL_STATE(1320)] = 12254, + [SMALL_STATE(1321)] = 12320, + [SMALL_STATE(1322)] = 12386, + [SMALL_STATE(1323)] = 12470, + [SMALL_STATE(1324)] = 12547, + [SMALL_STATE(1325)] = 12624, + [SMALL_STATE(1326)] = 12693, + [SMALL_STATE(1327)] = 12762, + [SMALL_STATE(1328)] = 12845, + [SMALL_STATE(1329)] = 12918, + [SMALL_STATE(1330)] = 12985, + [SMALL_STATE(1331)] = 13052, + [SMALL_STATE(1332)] = 13125, + [SMALL_STATE(1333)] = 13196, + [SMALL_STATE(1334)] = 13269, + [SMALL_STATE(1335)] = 13340, + [SMALL_STATE(1336)] = 13413, + [SMALL_STATE(1337)] = 13484, + [SMALL_STATE(1338)] = 13555, + [SMALL_STATE(1339)] = 13632, + [SMALL_STATE(1340)] = 13701, + [SMALL_STATE(1341)] = 13774, + [SMALL_STATE(1342)] = 13845, + [SMALL_STATE(1343)] = 13922, + [SMALL_STATE(1344)] = 13995, + [SMALL_STATE(1345)] = 14068, + [SMALL_STATE(1346)] = 14141, + [SMALL_STATE(1347)] = 14220, + [SMALL_STATE(1348)] = 14291, + [SMALL_STATE(1349)] = 14360, + [SMALL_STATE(1350)] = 14431, + [SMALL_STATE(1351)] = 14508, + [SMALL_STATE(1352)] = 14577, + [SMALL_STATE(1353)] = 14648, + [SMALL_STATE(1354)] = 14722, + [SMALL_STATE(1355)] = 14842, + [SMALL_STATE(1356)] = 14962, + [SMALL_STATE(1357)] = 15032, + [SMALL_STATE(1358)] = 15102, + [SMALL_STATE(1359)] = 15222, + [SMALL_STATE(1360)] = 15342, + [SMALL_STATE(1361)] = 15412, + [SMALL_STATE(1362)] = 15486, + [SMALL_STATE(1363)] = 15552, + [SMALL_STATE(1364)] = 15618, + [SMALL_STATE(1365)] = 15738, + [SMALL_STATE(1366)] = 15814, + [SMALL_STATE(1367)] = 15888, + [SMALL_STATE(1368)] = 15956, + [SMALL_STATE(1369)] = 16030, + [SMALL_STATE(1370)] = 16100, + [SMALL_STATE(1371)] = 16220, + [SMALL_STATE(1372)] = 16292, + [SMALL_STATE(1373)] = 16362, + [SMALL_STATE(1374)] = 16434, + [SMALL_STATE(1375)] = 16502, + [SMALL_STATE(1376)] = 16571, + [SMALL_STATE(1377)] = 16640, + [SMALL_STATE(1378)] = 16709, + [SMALL_STATE(1379)] = 16778, + [SMALL_STATE(1380)] = 16847, + [SMALL_STATE(1381)] = 16916, + [SMALL_STATE(1382)] = 16987, + [SMALL_STATE(1383)] = 17060, + [SMALL_STATE(1384)] = 17129, + [SMALL_STATE(1385)] = 17198, + [SMALL_STATE(1386)] = 17267, + [SMALL_STATE(1387)] = 17334, + [SMALL_STATE(1388)] = 17403, + [SMALL_STATE(1389)] = 17472, + [SMALL_STATE(1390)] = 17543, + [SMALL_STATE(1391)] = 17616, + [SMALL_STATE(1392)] = 17685, + [SMALL_STATE(1393)] = 17801, + [SMALL_STATE(1394)] = 17917, + [SMALL_STATE(1395)] = 17983, + [SMALL_STATE(1396)] = 18051, + [SMALL_STATE(1397)] = 18119, + [SMALL_STATE(1398)] = 18185, + [SMALL_STATE(1399)] = 18253, + [SMALL_STATE(1400)] = 18369, + [SMALL_STATE(1401)] = 18437, + [SMALL_STATE(1402)] = 18505, + [SMALL_STATE(1403)] = 18573, + [SMALL_STATE(1404)] = 18639, + [SMALL_STATE(1405)] = 18707, + [SMALL_STATE(1406)] = 18823, + [SMALL_STATE(1407)] = 18939, + [SMALL_STATE(1408)] = 19007, + [SMALL_STATE(1409)] = 19123, + [SMALL_STATE(1410)] = 19191, + [SMALL_STATE(1411)] = 19307, + [SMALL_STATE(1412)] = 19423, + [SMALL_STATE(1413)] = 19539, + [SMALL_STATE(1414)] = 19607, + [SMALL_STATE(1415)] = 19675, + [SMALL_STATE(1416)] = 19743, + [SMALL_STATE(1417)] = 19859, + [SMALL_STATE(1418)] = 19975, + [SMALL_STATE(1419)] = 20043, + [SMALL_STATE(1420)] = 20111, + [SMALL_STATE(1421)] = 20179, + [SMALL_STATE(1422)] = 20249, + [SMALL_STATE(1423)] = 20317, + [SMALL_STATE(1424)] = 20433, + [SMALL_STATE(1425)] = 20549, + [SMALL_STATE(1426)] = 20617, + [SMALL_STATE(1427)] = 20733, + [SMALL_STATE(1428)] = 20849, + [SMALL_STATE(1429)] = 20917, + [SMALL_STATE(1430)] = 21033, + [SMALL_STATE(1431)] = 21101, + [SMALL_STATE(1432)] = 21169, + [SMALL_STATE(1433)] = 21237, + [SMALL_STATE(1434)] = 21305, + [SMALL_STATE(1435)] = 21421, + [SMALL_STATE(1436)] = 21537, + [SMALL_STATE(1437)] = 21605, + [SMALL_STATE(1438)] = 21716, + [SMALL_STATE(1439)] = 21781, + [SMALL_STATE(1440)] = 21846, + [SMALL_STATE(1441)] = 21957, + [SMALL_STATE(1442)] = 22068, + [SMALL_STATE(1443)] = 22133, + [SMALL_STATE(1444)] = 22198, + [SMALL_STATE(1445)] = 22263, + [SMALL_STATE(1446)] = 22374, + [SMALL_STATE(1447)] = 22439, + [SMALL_STATE(1448)] = 22550, + [SMALL_STATE(1449)] = 22615, + [SMALL_STATE(1450)] = 22680, + [SMALL_STATE(1451)] = 22745, + [SMALL_STATE(1452)] = 22856, + [SMALL_STATE(1453)] = 22967, + [SMALL_STATE(1454)] = 23032, + [SMALL_STATE(1455)] = 23144, + [SMALL_STATE(1456)] = 23256, + [SMALL_STATE(1457)] = 23368, + [SMALL_STATE(1458)] = 23480, + [SMALL_STATE(1459)] = 23592, + [SMALL_STATE(1460)] = 23704, + [SMALL_STATE(1461)] = 23816, + [SMALL_STATE(1462)] = 23927, + [SMALL_STATE(1463)] = 24038, + [SMALL_STATE(1464)] = 24149, + [SMALL_STATE(1465)] = 24260, + [SMALL_STATE(1466)] = 24371, + [SMALL_STATE(1467)] = 24490, + [SMALL_STATE(1468)] = 24609, + [SMALL_STATE(1469)] = 24712, + [SMALL_STATE(1470)] = 24823, + [SMALL_STATE(1471)] = 24934, + [SMALL_STATE(1472)] = 25045, + [SMALL_STATE(1473)] = 25164, + [SMALL_STATE(1474)] = 25283, + [SMALL_STATE(1475)] = 25402, + [SMALL_STATE(1476)] = 25513, + [SMALL_STATE(1477)] = 25624, + [SMALL_STATE(1478)] = 25735, + [SMALL_STATE(1479)] = 25846, + [SMALL_STATE(1480)] = 25903, + [SMALL_STATE(1481)] = 25960, + [SMALL_STATE(1482)] = 26017, + [SMALL_STATE(1483)] = 26074, + [SMALL_STATE(1484)] = 26183, + [SMALL_STATE(1485)] = 26240, + [SMALL_STATE(1486)] = 26304, + [SMALL_STATE(1487)] = 26370, + [SMALL_STATE(1488)] = 26436, + [SMALL_STATE(1489)] = 26502, + [SMALL_STATE(1490)] = 26574, + [SMALL_STATE(1491)] = 26635, + [SMALL_STATE(1492)] = 26694, + [SMALL_STATE(1493)] = 26749, + [SMALL_STATE(1494)] = 26804, + [SMALL_STATE(1495)] = 26859, + [SMALL_STATE(1496)] = 26918, + [SMALL_STATE(1497)] = 26979, + [SMALL_STATE(1498)] = 27040, + [SMALL_STATE(1499)] = 27101, + [SMALL_STATE(1500)] = 27160, + [SMALL_STATE(1501)] = 27215, + [SMALL_STATE(1502)] = 27272, + [SMALL_STATE(1503)] = 27329, + [SMALL_STATE(1504)] = 27384, + [SMALL_STATE(1505)] = 27439, + [SMALL_STATE(1506)] = 27496, + [SMALL_STATE(1507)] = 27551, + [SMALL_STATE(1508)] = 27612, + [SMALL_STATE(1509)] = 27668, + [SMALL_STATE(1510)] = 27728, + [SMALL_STATE(1511)] = 27788, + [SMALL_STATE(1512)] = 27842, + [SMALL_STATE(1513)] = 27896, + [SMALL_STATE(1514)] = 27950, + [SMALL_STATE(1515)] = 28010, + [SMALL_STATE(1516)] = 28064, + [SMALL_STATE(1517)] = 28118, + [SMALL_STATE(1518)] = 28172, + [SMALL_STATE(1519)] = 28226, + [SMALL_STATE(1520)] = 28280, + [SMALL_STATE(1521)] = 28334, + [SMALL_STATE(1522)] = 28388, + [SMALL_STATE(1523)] = 28442, + [SMALL_STATE(1524)] = 28496, + [SMALL_STATE(1525)] = 28550, + [SMALL_STATE(1526)] = 28604, + [SMALL_STATE(1527)] = 28658, + [SMALL_STATE(1528)] = 28712, + [SMALL_STATE(1529)] = 28766, + [SMALL_STATE(1530)] = 28820, + [SMALL_STATE(1531)] = 28874, + [SMALL_STATE(1532)] = 28928, + [SMALL_STATE(1533)] = 28982, + [SMALL_STATE(1534)] = 29102, + [SMALL_STATE(1535)] = 29188, + [SMALL_STATE(1536)] = 29242, + [SMALL_STATE(1537)] = 29296, + [SMALL_STATE(1538)] = 29350, + [SMALL_STATE(1539)] = 29404, + [SMALL_STATE(1540)] = 29458, + [SMALL_STATE(1541)] = 29512, + [SMALL_STATE(1542)] = 29566, + [SMALL_STATE(1543)] = 29620, + [SMALL_STATE(1544)] = 29740, + [SMALL_STATE(1545)] = 29800, + [SMALL_STATE(1546)] = 29860, + [SMALL_STATE(1547)] = 29920, + [SMALL_STATE(1548)] = 29976, + [SMALL_STATE(1549)] = 30030, + [SMALL_STATE(1550)] = 30084, + [SMALL_STATE(1551)] = 30144, + [SMALL_STATE(1552)] = 30198, + [SMALL_STATE(1553)] = 30252, + [SMALL_STATE(1554)] = 30310, + [SMALL_STATE(1555)] = 30368, + [SMALL_STATE(1556)] = 30422, + [SMALL_STATE(1557)] = 30476, + [SMALL_STATE(1558)] = 30530, + [SMALL_STATE(1559)] = 30584, + [SMALL_STATE(1560)] = 30638, + [SMALL_STATE(1561)] = 30692, + [SMALL_STATE(1562)] = 30746, + [SMALL_STATE(1563)] = 30800, + [SMALL_STATE(1564)] = 30854, + [SMALL_STATE(1565)] = 30908, + [SMALL_STATE(1566)] = 30962, + [SMALL_STATE(1567)] = 31016, + [SMALL_STATE(1568)] = 31070, + [SMALL_STATE(1569)] = 31124, + [SMALL_STATE(1570)] = 31178, + [SMALL_STATE(1571)] = 31232, + [SMALL_STATE(1572)] = 31294, + [SMALL_STATE(1573)] = 31380, + [SMALL_STATE(1574)] = 31442, + [SMALL_STATE(1575)] = 31500, + [SMALL_STATE(1576)] = 31554, + [SMALL_STATE(1577)] = 31608, + [SMALL_STATE(1578)] = 31662, + [SMALL_STATE(1579)] = 31716, + [SMALL_STATE(1580)] = 31770, + [SMALL_STATE(1581)] = 31856, + [SMALL_STATE(1582)] = 31914, + [SMALL_STATE(1583)] = 31968, + [SMALL_STATE(1584)] = 32028, + [SMALL_STATE(1585)] = 32082, + [SMALL_STATE(1586)] = 32136, + [SMALL_STATE(1587)] = 32190, + [SMALL_STATE(1588)] = 32250, + [SMALL_STATE(1589)] = 32304, + [SMALL_STATE(1590)] = 32360, + [SMALL_STATE(1591)] = 32414, + [SMALL_STATE(1592)] = 32468, + [SMALL_STATE(1593)] = 32524, + [SMALL_STATE(1594)] = 32580, + [SMALL_STATE(1595)] = 32634, + [SMALL_STATE(1596)] = 32688, + [SMALL_STATE(1597)] = 32742, + [SMALL_STATE(1598)] = 32796, + [SMALL_STATE(1599)] = 32850, + [SMALL_STATE(1600)] = 32904, + [SMALL_STATE(1601)] = 32958, + [SMALL_STATE(1602)] = 33012, + [SMALL_STATE(1603)] = 33066, + [SMALL_STATE(1604)] = 33120, + [SMALL_STATE(1605)] = 33180, + [SMALL_STATE(1606)] = 33238, + [SMALL_STATE(1607)] = 33292, + [SMALL_STATE(1608)] = 33346, + [SMALL_STATE(1609)] = 33466, + [SMALL_STATE(1610)] = 33520, + [SMALL_STATE(1611)] = 33576, + [SMALL_STATE(1612)] = 33632, + [SMALL_STATE(1613)] = 33692, + [SMALL_STATE(1614)] = 33752, + [SMALL_STATE(1615)] = 33806, + [SMALL_STATE(1616)] = 33860, + [SMALL_STATE(1617)] = 33914, + [SMALL_STATE(1618)] = 33970, + [SMALL_STATE(1619)] = 34024, + [SMALL_STATE(1620)] = 34078, + [SMALL_STATE(1621)] = 34164, + [SMALL_STATE(1622)] = 34226, + [SMALL_STATE(1623)] = 34280, + [SMALL_STATE(1624)] = 34336, + [SMALL_STATE(1625)] = 34392, + [SMALL_STATE(1626)] = 34446, + [SMALL_STATE(1627)] = 34502, + [SMALL_STATE(1628)] = 34564, + [SMALL_STATE(1629)] = 34618, + [SMALL_STATE(1630)] = 34672, + [SMALL_STATE(1631)] = 34728, + [SMALL_STATE(1632)] = 34782, + [SMALL_STATE(1633)] = 34868, + [SMALL_STATE(1634)] = 34924, + [SMALL_STATE(1635)] = 34980, + [SMALL_STATE(1636)] = 35034, + [SMALL_STATE(1637)] = 35154, + [SMALL_STATE(1638)] = 35208, + [SMALL_STATE(1639)] = 35287, + [SMALL_STATE(1640)] = 35340, + [SMALL_STATE(1641)] = 35451, + [SMALL_STATE(1642)] = 35504, + [SMALL_STATE(1643)] = 35599, + [SMALL_STATE(1644)] = 35696, + [SMALL_STATE(1645)] = 35791, + [SMALL_STATE(1646)] = 35870, + [SMALL_STATE(1647)] = 35923, + [SMALL_STATE(1648)] = 36016, + [SMALL_STATE(1649)] = 36097, + [SMALL_STATE(1650)] = 36150, + [SMALL_STATE(1651)] = 36229, + [SMALL_STATE(1652)] = 36306, + [SMALL_STATE(1653)] = 36359, + [SMALL_STATE(1654)] = 36460, + [SMALL_STATE(1655)] = 36559, + [SMALL_STATE(1656)] = 36612, + [SMALL_STATE(1657)] = 36665, + [SMALL_STATE(1658)] = 36718, + [SMALL_STATE(1659)] = 36833, + [SMALL_STATE(1660)] = 36906, + [SMALL_STATE(1661)] = 36959, + [SMALL_STATE(1662)] = 37012, + [SMALL_STATE(1663)] = 37091, + [SMALL_STATE(1664)] = 37166, + [SMALL_STATE(1665)] = 37265, + [SMALL_STATE(1666)] = 37366, + [SMALL_STATE(1667)] = 37477, + [SMALL_STATE(1668)] = 37530, + [SMALL_STATE(1669)] = 37603, + [SMALL_STATE(1670)] = 37656, + [SMALL_STATE(1671)] = 37767, + [SMALL_STATE(1672)] = 37820, + [SMALL_STATE(1673)] = 37877, + [SMALL_STATE(1674)] = 37930, + [SMALL_STATE(1675)] = 38045, + [SMALL_STATE(1676)] = 38098, + [SMALL_STATE(1677)] = 38151, + [SMALL_STATE(1678)] = 38230, + [SMALL_STATE(1679)] = 38283, + [SMALL_STATE(1680)] = 38336, + [SMALL_STATE(1681)] = 38449, + [SMALL_STATE(1682)] = 38544, + [SMALL_STATE(1683)] = 38655, + [SMALL_STATE(1684)] = 38708, + [SMALL_STATE(1685)] = 38761, + [SMALL_STATE(1686)] = 38814, + [SMALL_STATE(1687)] = 38867, + [SMALL_STATE(1688)] = 38938, + [SMALL_STATE(1689)] = 39017, + [SMALL_STATE(1690)] = 39070, + [SMALL_STATE(1691)] = 39151, + [SMALL_STATE(1692)] = 39204, + [SMALL_STATE(1693)] = 39265, + [SMALL_STATE(1694)] = 39318, + [SMALL_STATE(1695)] = 39429, + [SMALL_STATE(1696)] = 39540, + [SMALL_STATE(1697)] = 39651, + [SMALL_STATE(1698)] = 39766, + [SMALL_STATE(1699)] = 39819, + [SMALL_STATE(1700)] = 39904, + [SMALL_STATE(1701)] = 40015, + [SMALL_STATE(1702)] = 40108, + [SMALL_STATE(1703)] = 40179, + [SMALL_STATE(1704)] = 40256, + [SMALL_STATE(1705)] = 40371, + [SMALL_STATE(1706)] = 40486, + [SMALL_STATE(1707)] = 40543, + [SMALL_STATE(1708)] = 40596, + [SMALL_STATE(1709)] = 40707, + [SMALL_STATE(1710)] = 40818, + [SMALL_STATE(1711)] = 40871, + [SMALL_STATE(1712)] = 40982, + [SMALL_STATE(1713)] = 41093, + [SMALL_STATE(1714)] = 41146, + [SMALL_STATE(1715)] = 41199, + [SMALL_STATE(1716)] = 41254, + [SMALL_STATE(1717)] = 41325, + [SMALL_STATE(1718)] = 41382, + [SMALL_STATE(1719)] = 41497, + [SMALL_STATE(1720)] = 41578, + [SMALL_STATE(1721)] = 41689, + [SMALL_STATE(1722)] = 41800, + [SMALL_STATE(1723)] = 41915, + [SMALL_STATE(1724)] = 41988, + [SMALL_STATE(1725)] = 42053, + [SMALL_STATE(1726)] = 42164, + [SMALL_STATE(1727)] = 42243, + [SMALL_STATE(1728)] = 42296, + [SMALL_STATE(1729)] = 42349, + [SMALL_STATE(1730)] = 42402, + [SMALL_STATE(1731)] = 42479, + [SMALL_STATE(1732)] = 42532, + [SMALL_STATE(1733)] = 42585, + [SMALL_STATE(1734)] = 42674, + [SMALL_STATE(1735)] = 42759, + [SMALL_STATE(1736)] = 42870, + [SMALL_STATE(1737)] = 42923, + [SMALL_STATE(1738)] = 42976, + [SMALL_STATE(1739)] = 43029, + [SMALL_STATE(1740)] = 43132, + [SMALL_STATE(1741)] = 43185, + [SMALL_STATE(1742)] = 43296, + [SMALL_STATE(1743)] = 43375, + [SMALL_STATE(1744)] = 43430, + [SMALL_STATE(1745)] = 43493, + [SMALL_STATE(1746)] = 43546, + [SMALL_STATE(1747)] = 43649, + [SMALL_STATE(1748)] = 43712, + [SMALL_STATE(1749)] = 43775, + [SMALL_STATE(1750)] = 43844, + [SMALL_STATE(1751)] = 43897, + [SMALL_STATE(1752)] = 43950, + [SMALL_STATE(1753)] = 44003, + [SMALL_STATE(1754)] = 44056, + [SMALL_STATE(1755)] = 44111, + [SMALL_STATE(1756)] = 44166, + [SMALL_STATE(1757)] = 44221, + [SMALL_STATE(1758)] = 44332, + [SMALL_STATE(1759)] = 44421, + [SMALL_STATE(1760)] = 44474, + [SMALL_STATE(1761)] = 44527, + [SMALL_STATE(1762)] = 44638, + [SMALL_STATE(1763)] = 44749, + [SMALL_STATE(1764)] = 44860, + [SMALL_STATE(1765)] = 44913, + [SMALL_STATE(1766)] = 45024, + [SMALL_STATE(1767)] = 45135, + [SMALL_STATE(1768)] = 45246, + [SMALL_STATE(1769)] = 45357, + [SMALL_STATE(1770)] = 45468, + [SMALL_STATE(1771)] = 45533, + [SMALL_STATE(1772)] = 45644, + [SMALL_STATE(1773)] = 45703, + [SMALL_STATE(1774)] = 45782, + [SMALL_STATE(1775)] = 45893, + [SMALL_STATE(1776)] = 45946, + [SMALL_STATE(1777)] = 46023, + [SMALL_STATE(1778)] = 46134, + [SMALL_STATE(1779)] = 46187, + [SMALL_STATE(1780)] = 46298, + [SMALL_STATE(1781)] = 46409, + [SMALL_STATE(1782)] = 46520, + [SMALL_STATE(1783)] = 46623, + [SMALL_STATE(1784)] = 46712, + [SMALL_STATE(1785)] = 46793, + [SMALL_STATE(1786)] = 46904, + [SMALL_STATE(1787)] = 46957, + [SMALL_STATE(1788)] = 47034, + [SMALL_STATE(1789)] = 47087, + [SMALL_STATE(1790)] = 47166, + [SMALL_STATE(1791)] = 47225, + [SMALL_STATE(1792)] = 47278, + [SMALL_STATE(1793)] = 47357, + [SMALL_STATE(1794)] = 47410, + [SMALL_STATE(1795)] = 47521, + [SMALL_STATE(1796)] = 47574, + [SMALL_STATE(1797)] = 47627, + [SMALL_STATE(1798)] = 47724, + [SMALL_STATE(1799)] = 47777, + [SMALL_STATE(1800)] = 47872, + [SMALL_STATE(1801)] = 47925, + [SMALL_STATE(1802)] = 48006, + [SMALL_STATE(1803)] = 48059, + [SMALL_STATE(1804)] = 48152, + [SMALL_STATE(1805)] = 48233, + [SMALL_STATE(1806)] = 48334, + [SMALL_STATE(1807)] = 48433, + [SMALL_STATE(1808)] = 48544, + [SMALL_STATE(1809)] = 48619, + [SMALL_STATE(1810)] = 48704, + [SMALL_STATE(1811)] = 48757, + [SMALL_STATE(1812)] = 48836, + [SMALL_STATE(1813)] = 48947, + [SMALL_STATE(1814)] = 49058, + [SMALL_STATE(1815)] = 49169, + [SMALL_STATE(1816)] = 49248, + [SMALL_STATE(1817)] = 49359, + [SMALL_STATE(1818)] = 49434, + [SMALL_STATE(1819)] = 49487, + [SMALL_STATE(1820)] = 49598, + [SMALL_STATE(1821)] = 49709, + [SMALL_STATE(1822)] = 49762, + [SMALL_STATE(1823)] = 49827, + [SMALL_STATE(1824)] = 49924, + [SMALL_STATE(1825)] = 50035, + [SMALL_STATE(1826)] = 50116, + [SMALL_STATE(1827)] = 50169, + [SMALL_STATE(1828)] = 50222, + [SMALL_STATE(1829)] = 50335, + [SMALL_STATE(1830)] = 50388, + [SMALL_STATE(1831)] = 50447, + [SMALL_STATE(1832)] = 50558, + [SMALL_STATE(1833)] = 50668, + [SMALL_STATE(1834)] = 50760, + [SMALL_STATE(1835)] = 50856, + [SMALL_STATE(1836)] = 50944, + [SMALL_STATE(1837)] = 51046, + [SMALL_STATE(1838)] = 51140, + [SMALL_STATE(1839)] = 51196, + [SMALL_STATE(1840)] = 51308, + [SMALL_STATE(1841)] = 51418, + [SMALL_STATE(1842)] = 51498, + [SMALL_STATE(1843)] = 51608, + [SMALL_STATE(1844)] = 51708, + [SMALL_STATE(1845)] = 51808, + [SMALL_STATE(1846)] = 51888, + [SMALL_STATE(1847)] = 51940, + [SMALL_STATE(1848)] = 52038, + [SMALL_STATE(1849)] = 52152, + [SMALL_STATE(1850)] = 52226, + [SMALL_STATE(1851)] = 52340, + [SMALL_STATE(1852)] = 52424, + [SMALL_STATE(1853)] = 52516, + [SMALL_STATE(1854)] = 52610, + [SMALL_STATE(1855)] = 52720, + [SMALL_STATE(1856)] = 52798, + [SMALL_STATE(1857)] = 52908, + [SMALL_STATE(1858)] = 52980, + [SMALL_STATE(1859)] = 53090, + [SMALL_STATE(1860)] = 53204, + [SMALL_STATE(1861)] = 53314, + [SMALL_STATE(1862)] = 53388, + [SMALL_STATE(1863)] = 53472, + [SMALL_STATE(1864)] = 53524, + [SMALL_STATE(1865)] = 53634, + [SMALL_STATE(1866)] = 53730, + [SMALL_STATE(1867)] = 53840, + [SMALL_STATE(1868)] = 53950, + [SMALL_STATE(1869)] = 54060, + [SMALL_STATE(1870)] = 54170, + [SMALL_STATE(1871)] = 54280, + [SMALL_STATE(1872)] = 54352, + [SMALL_STATE(1873)] = 54416, + [SMALL_STATE(1874)] = 54472, + [SMALL_STATE(1875)] = 54582, + [SMALL_STATE(1876)] = 54692, + [SMALL_STATE(1877)] = 54806, + [SMALL_STATE(1878)] = 54920, + [SMALL_STATE(1879)] = 54992, + [SMALL_STATE(1880)] = 55070, + [SMALL_STATE(1881)] = 55184, + [SMALL_STATE(1882)] = 55240, + [SMALL_STATE(1883)] = 55318, + [SMALL_STATE(1884)] = 55398, + [SMALL_STATE(1885)] = 55486, + [SMALL_STATE(1886)] = 55588, + [SMALL_STATE(1887)] = 55698, + [SMALL_STATE(1888)] = 55808, + [SMALL_STATE(1889)] = 55918, + [SMALL_STATE(1890)] = 56028, + [SMALL_STATE(1891)] = 56108, + [SMALL_STATE(1892)] = 56222, + [SMALL_STATE(1893)] = 56332, + [SMALL_STATE(1894)] = 56410, + [SMALL_STATE(1895)] = 56508, + [SMALL_STATE(1896)] = 56618, + [SMALL_STATE(1897)] = 56728, + [SMALL_STATE(1898)] = 56838, + [SMALL_STATE(1899)] = 56908, + [SMALL_STATE(1900)] = 57018, + [SMALL_STATE(1901)] = 57132, + [SMALL_STATE(1902)] = 57246, + [SMALL_STATE(1903)] = 57306, + [SMALL_STATE(1904)] = 57364, + [SMALL_STATE(1905)] = 57438, + [SMALL_STATE(1906)] = 57510, + [SMALL_STATE(1907)] = 57620, + [SMALL_STATE(1908)] = 57680, + [SMALL_STATE(1909)] = 57794, + [SMALL_STATE(1910)] = 57908, + [SMALL_STATE(1911)] = 57968, + [SMALL_STATE(1912)] = 58082, + [SMALL_STATE(1913)] = 58196, + [SMALL_STATE(1914)] = 58254, + [SMALL_STATE(1915)] = 58364, + [SMALL_STATE(1916)] = 58474, + [SMALL_STATE(1917)] = 58546, + [SMALL_STATE(1918)] = 58610, + [SMALL_STATE(1919)] = 58720, + [SMALL_STATE(1920)] = 58834, + [SMALL_STATE(1921)] = 58904, + [SMALL_STATE(1922)] = 59018, + [SMALL_STATE(1923)] = 59080, + [SMALL_STATE(1924)] = 59142, + [SMALL_STATE(1925)] = 59196, + [SMALL_STATE(1926)] = 59250, + [SMALL_STATE(1927)] = 59308, + [SMALL_STATE(1928)] = 59398, + [SMALL_STATE(1929)] = 59454, + [SMALL_STATE(1930)] = 59568, + [SMALL_STATE(1931)] = 59626, + [SMALL_STATE(1932)] = 59736, + [SMALL_STATE(1933)] = 59850, + [SMALL_STATE(1934)] = 59960, + [SMALL_STATE(1935)] = 60012, + [SMALL_STATE(1936)] = 60066, + [SMALL_STATE(1937)] = 60180, + [SMALL_STATE(1938)] = 60290, + [SMALL_STATE(1939)] = 60368, + [SMALL_STATE(1940)] = 60426, + [SMALL_STATE(1941)] = 60540, + [SMALL_STATE(1942)] = 60592, + [SMALL_STATE(1943)] = 60706, + [SMALL_STATE(1944)] = 60816, + [SMALL_STATE(1945)] = 60888, + [SMALL_STATE(1946)] = 61002, + [SMALL_STATE(1947)] = 61116, + [SMALL_STATE(1948)] = 61168, + [SMALL_STATE(1949)] = 61242, + [SMALL_STATE(1950)] = 61356, + [SMALL_STATE(1951)] = 61466, + [SMALL_STATE(1952)] = 61580, + [SMALL_STATE(1953)] = 61694, + [SMALL_STATE(1954)] = 61766, + [SMALL_STATE(1955)] = 61817, + [SMALL_STATE(1956)] = 61870, + [SMALL_STATE(1957)] = 61921, + [SMALL_STATE(1958)] = 61972, + [SMALL_STATE(1959)] = 62081, + [SMALL_STATE(1960)] = 62154, + [SMALL_STATE(1961)] = 62205, + [SMALL_STATE(1962)] = 62258, + [SMALL_STATE(1963)] = 62367, + [SMALL_STATE(1964)] = 62476, + [SMALL_STATE(1965)] = 62585, + [SMALL_STATE(1966)] = 62636, + [SMALL_STATE(1967)] = 62687, + [SMALL_STATE(1968)] = 62740, + [SMALL_STATE(1969)] = 62791, + [SMALL_STATE(1970)] = 62848, + [SMALL_STATE(1971)] = 62899, + [SMALL_STATE(1972)] = 62982, + [SMALL_STATE(1973)] = 63033, + [SMALL_STATE(1974)] = 63084, + [SMALL_STATE(1975)] = 63135, + [SMALL_STATE(1976)] = 63198, + [SMALL_STATE(1977)] = 63251, + [SMALL_STATE(1978)] = 63302, + [SMALL_STATE(1979)] = 63353, + [SMALL_STATE(1980)] = 63406, + [SMALL_STATE(1981)] = 63457, + [SMALL_STATE(1982)] = 63528, + [SMALL_STATE(1983)] = 63579, + [SMALL_STATE(1984)] = 63648, + [SMALL_STATE(1985)] = 63699, + [SMALL_STATE(1986)] = 63750, + [SMALL_STATE(1987)] = 63801, + [SMALL_STATE(1988)] = 63852, + [SMALL_STATE(1989)] = 63903, + [SMALL_STATE(1990)] = 63954, + [SMALL_STATE(1991)] = 64005, + [SMALL_STATE(1992)] = 64078, + [SMALL_STATE(1993)] = 64129, + [SMALL_STATE(1994)] = 64180, + [SMALL_STATE(1995)] = 64231, + [SMALL_STATE(1996)] = 64282, + [SMALL_STATE(1997)] = 64333, + [SMALL_STATE(1998)] = 64384, + [SMALL_STATE(1999)] = 64435, + [SMALL_STATE(2000)] = 64488, + [SMALL_STATE(2001)] = 64539, + [SMALL_STATE(2002)] = 64590, + [SMALL_STATE(2003)] = 64647, + [SMALL_STATE(2004)] = 64756, + [SMALL_STATE(2005)] = 64807, + [SMALL_STATE(2006)] = 64858, + [SMALL_STATE(2007)] = 64909, + [SMALL_STATE(2008)] = 64966, + [SMALL_STATE(2009)] = 65017, + [SMALL_STATE(2010)] = 65068, + [SMALL_STATE(2011)] = 65119, + [SMALL_STATE(2012)] = 65170, + [SMALL_STATE(2013)] = 65223, + [SMALL_STATE(2014)] = 65274, + [SMALL_STATE(2015)] = 65325, + [SMALL_STATE(2016)] = 65376, + [SMALL_STATE(2017)] = 65427, + [SMALL_STATE(2018)] = 65478, + [SMALL_STATE(2019)] = 65531, + [SMALL_STATE(2020)] = 65582, + [SMALL_STATE(2021)] = 65633, + [SMALL_STATE(2022)] = 65684, + [SMALL_STATE(2023)] = 65735, + [SMALL_STATE(2024)] = 65786, + [SMALL_STATE(2025)] = 65837, + [SMALL_STATE(2026)] = 65888, + [SMALL_STATE(2027)] = 65939, + [SMALL_STATE(2028)] = 65990, + [SMALL_STATE(2029)] = 66041, + [SMALL_STATE(2030)] = 66092, + [SMALL_STATE(2031)] = 66143, + [SMALL_STATE(2032)] = 66194, + [SMALL_STATE(2033)] = 66245, + [SMALL_STATE(2034)] = 66302, + [SMALL_STATE(2035)] = 66353, + [SMALL_STATE(2036)] = 66404, + [SMALL_STATE(2037)] = 66455, + [SMALL_STATE(2038)] = 66564, + [SMALL_STATE(2039)] = 66617, + [SMALL_STATE(2040)] = 66674, + [SMALL_STATE(2041)] = 66729, + [SMALL_STATE(2042)] = 66786, + [SMALL_STATE(2043)] = 66843, + [SMALL_STATE(2044)] = 66902, + [SMALL_STATE(2045)] = 66953, + [SMALL_STATE(2046)] = 67004, + [SMALL_STATE(2047)] = 67059, + [SMALL_STATE(2048)] = 67116, + [SMALL_STATE(2049)] = 67167, + [SMALL_STATE(2050)] = 67276, + [SMALL_STATE(2051)] = 67359, + [SMALL_STATE(2052)] = 67410, + [SMALL_STATE(2053)] = 67461, + [SMALL_STATE(2054)] = 67544, + [SMALL_STATE(2055)] = 67617, + [SMALL_STATE(2056)] = 67714, + [SMALL_STATE(2057)] = 67813, + [SMALL_STATE(2058)] = 67892, + [SMALL_STATE(2059)] = 67983, + [SMALL_STATE(2060)] = 68076, + [SMALL_STATE(2061)] = 68127, + [SMALL_STATE(2062)] = 68222, + [SMALL_STATE(2063)] = 68299, + [SMALL_STATE(2064)] = 68378, + [SMALL_STATE(2065)] = 68465, + [SMALL_STATE(2066)] = 68516, + [SMALL_STATE(2067)] = 68617, + [SMALL_STATE(2068)] = 68700, + [SMALL_STATE(2069)] = 68765, + [SMALL_STATE(2070)] = 68830, + [SMALL_STATE(2071)] = 68939, + [SMALL_STATE(2072)] = 69048, + [SMALL_STATE(2073)] = 69157, + [SMALL_STATE(2074)] = 69266, + [SMALL_STATE(2075)] = 69375, + [SMALL_STATE(2076)] = 69438, + [SMALL_STATE(2077)] = 69547, + [SMALL_STATE(2078)] = 69656, + [SMALL_STATE(2079)] = 69719, + [SMALL_STATE(2080)] = 69802, + [SMALL_STATE(2081)] = 69875, + [SMALL_STATE(2082)] = 69984, + [SMALL_STATE(2083)] = 70095, + [SMALL_STATE(2084)] = 70204, + [SMALL_STATE(2085)] = 70313, + [SMALL_STATE(2086)] = 70382, + [SMALL_STATE(2087)] = 70491, + [SMALL_STATE(2088)] = 70600, + [SMALL_STATE(2089)] = 70659, + [SMALL_STATE(2090)] = 70768, + [SMALL_STATE(2091)] = 70819, + [SMALL_STATE(2092)] = 70870, + [SMALL_STATE(2093)] = 70921, + [SMALL_STATE(2094)] = 70974, + [SMALL_STATE(2095)] = 71083, + [SMALL_STATE(2096)] = 71134, + [SMALL_STATE(2097)] = 71187, + [SMALL_STATE(2098)] = 71240, + [SMALL_STATE(2099)] = 71349, + [SMALL_STATE(2100)] = 71402, + [SMALL_STATE(2101)] = 71459, + [SMALL_STATE(2102)] = 71516, + [SMALL_STATE(2103)] = 71579, + [SMALL_STATE(2104)] = 71630, + [SMALL_STATE(2105)] = 71681, + [SMALL_STATE(2106)] = 71744, + [SMALL_STATE(2107)] = 71855, + [SMALL_STATE(2108)] = 71908, + [SMALL_STATE(2109)] = 71959, + [SMALL_STATE(2110)] = 72010, + [SMALL_STATE(2111)] = 72073, + [SMALL_STATE(2112)] = 72136, + [SMALL_STATE(2113)] = 72193, + [SMALL_STATE(2114)] = 72266, + [SMALL_STATE(2115)] = 72321, + [SMALL_STATE(2116)] = 72378, + [SMALL_STATE(2117)] = 72429, + [SMALL_STATE(2118)] = 72502, + [SMALL_STATE(2119)] = 72555, + [SMALL_STATE(2120)] = 72608, + [SMALL_STATE(2121)] = 72691, + [SMALL_STATE(2122)] = 72742, + [SMALL_STATE(2123)] = 72795, + [SMALL_STATE(2124)] = 72858, + [SMALL_STATE(2125)] = 72929, + [SMALL_STATE(2126)] = 73004, + [SMALL_STATE(2127)] = 73067, + [SMALL_STATE(2128)] = 73136, + [SMALL_STATE(2129)] = 73195, + [SMALL_STATE(2130)] = 73268, + [SMALL_STATE(2131)] = 73325, + [SMALL_STATE(2132)] = 73394, + [SMALL_STATE(2133)] = 73477, + [SMALL_STATE(2134)] = 73586, + [SMALL_STATE(2135)] = 73669, + [SMALL_STATE(2136)] = 73722, + [SMALL_STATE(2137)] = 73785, + [SMALL_STATE(2138)] = 73836, [SMALL_STATE(2139)] = 73887, - [SMALL_STATE(2140)] = 73996, - [SMALL_STATE(2141)] = 74053, - [SMALL_STATE(2142)] = 74104, - [SMALL_STATE(2143)] = 74157, - [SMALL_STATE(2144)] = 74220, - [SMALL_STATE(2145)] = 74271, - [SMALL_STATE(2146)] = 74322, - [SMALL_STATE(2147)] = 74375, - [SMALL_STATE(2148)] = 74426, - [SMALL_STATE(2149)] = 74485, - [SMALL_STATE(2150)] = 74538, - [SMALL_STATE(2151)] = 74611, - [SMALL_STATE(2152)] = 74668, - [SMALL_STATE(2153)] = 74751, - [SMALL_STATE(2154)] = 74802, - [SMALL_STATE(2155)] = 74855, - [SMALL_STATE(2156)] = 74918, - [SMALL_STATE(2157)] = 74969, - [SMALL_STATE(2158)] = 75020, - [SMALL_STATE(2159)] = 75071, - [SMALL_STATE(2160)] = 75127, - [SMALL_STATE(2161)] = 75179, - [SMALL_STATE(2162)] = 75231, - [SMALL_STATE(2163)] = 75289, - [SMALL_STATE(2164)] = 75343, - [SMALL_STATE(2165)] = 75393, - [SMALL_STATE(2166)] = 75443, - [SMALL_STATE(2167)] = 75493, - [SMALL_STATE(2168)] = 75557, - [SMALL_STATE(2169)] = 75631, - [SMALL_STATE(2170)] = 75707, - [SMALL_STATE(2171)] = 75757, - [SMALL_STATE(2172)] = 75865, - [SMALL_STATE(2173)] = 75919, - [SMALL_STATE(2174)] = 75969, - [SMALL_STATE(2175)] = 76019, - [SMALL_STATE(2176)] = 76069, - [SMALL_STATE(2177)] = 76119, - [SMALL_STATE(2178)] = 76169, - [SMALL_STATE(2179)] = 76219, - [SMALL_STATE(2180)] = 76327, - [SMALL_STATE(2181)] = 76385, - [SMALL_STATE(2182)] = 76449, - [SMALL_STATE(2183)] = 76503, - [SMALL_STATE(2184)] = 76557, - [SMALL_STATE(2185)] = 76607, - [SMALL_STATE(2186)] = 76661, - [SMALL_STATE(2187)] = 76711, - [SMALL_STATE(2188)] = 76773, - [SMALL_STATE(2189)] = 76859, - [SMALL_STATE(2190)] = 76913, - [SMALL_STATE(2191)] = 76967, - [SMALL_STATE(2192)] = 77031, - [SMALL_STATE(2193)] = 77085, - [SMALL_STATE(2194)] = 77139, - [SMALL_STATE(2195)] = 77193, - [SMALL_STATE(2196)] = 77249, - [SMALL_STATE(2197)] = 77303, - [SMALL_STATE(2198)] = 77357, - [SMALL_STATE(2199)] = 77411, - [SMALL_STATE(2200)] = 77461, - [SMALL_STATE(2201)] = 77515, - [SMALL_STATE(2202)] = 77569, - [SMALL_STATE(2203)] = 77623, - [SMALL_STATE(2204)] = 77687, - [SMALL_STATE(2205)] = 77737, - [SMALL_STATE(2206)] = 77791, - [SMALL_STATE(2207)] = 77855, - [SMALL_STATE(2208)] = 77921, - [SMALL_STATE(2209)] = 77975, - [SMALL_STATE(2210)] = 78025, - [SMALL_STATE(2211)] = 78077, - [SMALL_STATE(2212)] = 78141, - [SMALL_STATE(2213)] = 78199, - [SMALL_STATE(2214)] = 78273, - [SMALL_STATE(2215)] = 78349, - [SMALL_STATE(2216)] = 78399, - [SMALL_STATE(2217)] = 78449, - [SMALL_STATE(2218)] = 78501, - [SMALL_STATE(2219)] = 78561, - [SMALL_STATE(2220)] = 78611, - [SMALL_STATE(2221)] = 78661, - [SMALL_STATE(2222)] = 78711, - [SMALL_STATE(2223)] = 78767, - [SMALL_STATE(2224)] = 78817, - [SMALL_STATE(2225)] = 78867, - [SMALL_STATE(2226)] = 78919, - [SMALL_STATE(2227)] = 78971, - [SMALL_STATE(2228)] = 79025, - [SMALL_STATE(2229)] = 79075, - [SMALL_STATE(2230)] = 79139, - [SMALL_STATE(2231)] = 79205, - [SMALL_STATE(2232)] = 79257, - [SMALL_STATE(2233)] = 79309, - [SMALL_STATE(2234)] = 79363, - [SMALL_STATE(2235)] = 79417, - [SMALL_STATE(2236)] = 79469, - [SMALL_STATE(2237)] = 79521, - [SMALL_STATE(2238)] = 79575, - [SMALL_STATE(2239)] = 79627, - [SMALL_STATE(2240)] = 79679, - [SMALL_STATE(2241)] = 79753, - [SMALL_STATE(2242)] = 79811, - [SMALL_STATE(2243)] = 79887, - [SMALL_STATE(2244)] = 79939, - [SMALL_STATE(2245)] = 80007, - [SMALL_STATE(2246)] = 80061, - [SMALL_STATE(2247)] = 80119, - [SMALL_STATE(2248)] = 80175, - [SMALL_STATE(2249)] = 80225, - [SMALL_STATE(2250)] = 80285, - [SMALL_STATE(2251)] = 80343, - [SMALL_STATE(2252)] = 80453, - [SMALL_STATE(2253)] = 80509, - [SMALL_STATE(2254)] = 80583, - [SMALL_STATE(2255)] = 80659, - [SMALL_STATE(2256)] = 80709, - [SMALL_STATE(2257)] = 80759, - [SMALL_STATE(2258)] = 80809, - [SMALL_STATE(2259)] = 80865, - [SMALL_STATE(2260)] = 80921, - [SMALL_STATE(2261)] = 80995, - [SMALL_STATE(2262)] = 81071, - [SMALL_STATE(2263)] = 81121, - [SMALL_STATE(2264)] = 81177, - [SMALL_STATE(2265)] = 81227, - [SMALL_STATE(2266)] = 81277, - [SMALL_STATE(2267)] = 81327, - [SMALL_STATE(2268)] = 81383, - [SMALL_STATE(2269)] = 81457, - [SMALL_STATE(2270)] = 81533, - [SMALL_STATE(2271)] = 81595, - [SMALL_STATE(2272)] = 81657, - [SMALL_STATE(2273)] = 81709, - [SMALL_STATE(2274)] = 81761, - [SMALL_STATE(2275)] = 81835, - [SMALL_STATE(2276)] = 81911, - [SMALL_STATE(2277)] = 81973, - [SMALL_STATE(2278)] = 82035, - [SMALL_STATE(2279)] = 82095, - [SMALL_STATE(2280)] = 82155, - [SMALL_STATE(2281)] = 82213, - [SMALL_STATE(2282)] = 82271, - [SMALL_STATE(2283)] = 82333, - [SMALL_STATE(2284)] = 82395, - [SMALL_STATE(2285)] = 82457, - [SMALL_STATE(2286)] = 82519, - [SMALL_STATE(2287)] = 82581, - [SMALL_STATE(2288)] = 82643, - [SMALL_STATE(2289)] = 82697, - [SMALL_STATE(2290)] = 82751, - [SMALL_STATE(2291)] = 82805, - [SMALL_STATE(2292)] = 82859, - [SMALL_STATE(2293)] = 82923, - [SMALL_STATE(2294)] = 82989, - [SMALL_STATE(2295)] = 83055, - [SMALL_STATE(2296)] = 83163, - [SMALL_STATE(2297)] = 83271, - [SMALL_STATE(2298)] = 83337, - [SMALL_STATE(2299)] = 83387, - [SMALL_STATE(2300)] = 83437, - [SMALL_STATE(2301)] = 83493, - [SMALL_STATE(2302)] = 83551, - [SMALL_STATE(2303)] = 83615, - [SMALL_STATE(2304)] = 83681, - [SMALL_STATE(2305)] = 83735, - [SMALL_STATE(2306)] = 83799, - [SMALL_STATE(2307)] = 83865, - [SMALL_STATE(2308)] = 83919, - [SMALL_STATE(2309)] = 83969, - [SMALL_STATE(2310)] = 84019, - [SMALL_STATE(2311)] = 84069, - [SMALL_STATE(2312)] = 84131, - [SMALL_STATE(2313)] = 84239, - [SMALL_STATE(2314)] = 84347, - [SMALL_STATE(2315)] = 84455, - [SMALL_STATE(2316)] = 84563, - [SMALL_STATE(2317)] = 84671, - [SMALL_STATE(2318)] = 84753, - [SMALL_STATE(2319)] = 84825, - [SMALL_STATE(2320)] = 84921, - [SMALL_STATE(2321)] = 85019, - [SMALL_STATE(2322)] = 85097, - [SMALL_STATE(2323)] = 85187, - [SMALL_STATE(2324)] = 85279, - [SMALL_STATE(2325)] = 85373, - [SMALL_STATE(2326)] = 85449, - [SMALL_STATE(2327)] = 85527, - [SMALL_STATE(2328)] = 85613, - [SMALL_STATE(2329)] = 85713, - [SMALL_STATE(2330)] = 85821, - [SMALL_STATE(2331)] = 85929, - [SMALL_STATE(2332)] = 86037, - [SMALL_STATE(2333)] = 86145, - [SMALL_STATE(2334)] = 86253, - [SMALL_STATE(2335)] = 86361, - [SMALL_STATE(2336)] = 86469, - [SMALL_STATE(2337)] = 86577, - [SMALL_STATE(2338)] = 86627, - [SMALL_STATE(2339)] = 86677, - [SMALL_STATE(2340)] = 86727, - [SMALL_STATE(2341)] = 86777, - [SMALL_STATE(2342)] = 86827, - [SMALL_STATE(2343)] = 86877, - [SMALL_STATE(2344)] = 86939, - [SMALL_STATE(2345)] = 87047, - [SMALL_STATE(2346)] = 87155, - [SMALL_STATE(2347)] = 87263, - [SMALL_STATE(2348)] = 87371, - [SMALL_STATE(2349)] = 87479, - [SMALL_STATE(2350)] = 87561, - [SMALL_STATE(2351)] = 87633, - [SMALL_STATE(2352)] = 87729, - [SMALL_STATE(2353)] = 87827, - [SMALL_STATE(2354)] = 87905, - [SMALL_STATE(2355)] = 87995, - [SMALL_STATE(2356)] = 88087, - [SMALL_STATE(2357)] = 88181, - [SMALL_STATE(2358)] = 88257, - [SMALL_STATE(2359)] = 88335, - [SMALL_STATE(2360)] = 88421, - [SMALL_STATE(2361)] = 88521, - [SMALL_STATE(2362)] = 88629, - [SMALL_STATE(2363)] = 88737, - [SMALL_STATE(2364)] = 88845, - [SMALL_STATE(2365)] = 88953, - [SMALL_STATE(2366)] = 89061, - [SMALL_STATE(2367)] = 89169, - [SMALL_STATE(2368)] = 89277, - [SMALL_STATE(2369)] = 89385, - [SMALL_STATE(2370)] = 89435, - [SMALL_STATE(2371)] = 89489, - [SMALL_STATE(2372)] = 89553, - [SMALL_STATE(2373)] = 89617, - [SMALL_STATE(2374)] = 89683, - [SMALL_STATE(2375)] = 89749, - [SMALL_STATE(2376)] = 89815, - [SMALL_STATE(2377)] = 89879, - [SMALL_STATE(2378)] = 89943, - [SMALL_STATE(2379)] = 90009, - [SMALL_STATE(2380)] = 90073, - [SMALL_STATE(2381)] = 90137, - [SMALL_STATE(2382)] = 90201, - [SMALL_STATE(2383)] = 90267, - [SMALL_STATE(2384)] = 90333, - [SMALL_STATE(2385)] = 90441, - [SMALL_STATE(2386)] = 90491, - [SMALL_STATE(2387)] = 90541, - [SMALL_STATE(2388)] = 90591, - [SMALL_STATE(2389)] = 90641, - [SMALL_STATE(2390)] = 90699, - [SMALL_STATE(2391)] = 90763, - [SMALL_STATE(2392)] = 90871, - [SMALL_STATE(2393)] = 90941, - [SMALL_STATE(2394)] = 91017, - [SMALL_STATE(2395)] = 91125, - [SMALL_STATE(2396)] = 91193, - [SMALL_STATE(2397)] = 91301, - [SMALL_STATE(2398)] = 91371, - [SMALL_STATE(2399)] = 91447, - [SMALL_STATE(2400)] = 91555, - [SMALL_STATE(2401)] = 91623, - [SMALL_STATE(2402)] = 91689, - [SMALL_STATE(2403)] = 91797, - [SMALL_STATE(2404)] = 91905, - [SMALL_STATE(2405)] = 91955, - [SMALL_STATE(2406)] = 92019, - [SMALL_STATE(2407)] = 92085, - [SMALL_STATE(2408)] = 92135, - [SMALL_STATE(2409)] = 92185, - [SMALL_STATE(2410)] = 92237, - [SMALL_STATE(2411)] = 92345, - [SMALL_STATE(2412)] = 92409, - [SMALL_STATE(2413)] = 92475, - [SMALL_STATE(2414)] = 92583, - [SMALL_STATE(2415)] = 92645, - [SMALL_STATE(2416)] = 92753, - [SMALL_STATE(2417)] = 92861, - [SMALL_STATE(2418)] = 92969, - [SMALL_STATE(2419)] = 93077, - [SMALL_STATE(2420)] = 93185, - [SMALL_STATE(2421)] = 93267, - [SMALL_STATE(2422)] = 93339, - [SMALL_STATE(2423)] = 93435, - [SMALL_STATE(2424)] = 93533, - [SMALL_STATE(2425)] = 93611, - [SMALL_STATE(2426)] = 93701, - [SMALL_STATE(2427)] = 93793, - [SMALL_STATE(2428)] = 93887, - [SMALL_STATE(2429)] = 93963, - [SMALL_STATE(2430)] = 94041, - [SMALL_STATE(2431)] = 94127, - [SMALL_STATE(2432)] = 94227, - [SMALL_STATE(2433)] = 94335, - [SMALL_STATE(2434)] = 94443, - [SMALL_STATE(2435)] = 94551, - [SMALL_STATE(2436)] = 94659, - [SMALL_STATE(2437)] = 94767, - [SMALL_STATE(2438)] = 94875, - [SMALL_STATE(2439)] = 94983, - [SMALL_STATE(2440)] = 95091, - [SMALL_STATE(2441)] = 95161, - [SMALL_STATE(2442)] = 95237, - [SMALL_STATE(2443)] = 95345, - [SMALL_STATE(2444)] = 95413, - [SMALL_STATE(2445)] = 95465, - [SMALL_STATE(2446)] = 95573, - [SMALL_STATE(2447)] = 95631, - [SMALL_STATE(2448)] = 95700, - [SMALL_STATE(2449)] = 95769, - [SMALL_STATE(2450)] = 95838, - [SMALL_STATE(2451)] = 95897, - [SMALL_STATE(2452)] = 95954, - [SMALL_STATE(2453)] = 96013, - [SMALL_STATE(2454)] = 96070, - [SMALL_STATE(2455)] = 96123, - [SMALL_STATE(2456)] = 96182, - [SMALL_STATE(2457)] = 96233, - [SMALL_STATE(2458)] = 96302, - [SMALL_STATE(2459)] = 96353, - [SMALL_STATE(2460)] = 96412, - [SMALL_STATE(2461)] = 96489, - [SMALL_STATE(2462)] = 96544, - [SMALL_STATE(2463)] = 96599, - [SMALL_STATE(2464)] = 96654, - [SMALL_STATE(2465)] = 96713, - [SMALL_STATE(2466)] = 96772, - [SMALL_STATE(2467)] = 96831, - [SMALL_STATE(2468)] = 96890, - [SMALL_STATE(2469)] = 96959, - [SMALL_STATE(2470)] = 97018, - [SMALL_STATE(2471)] = 97069, - [SMALL_STATE(2472)] = 97128, - [SMALL_STATE(2473)] = 97183, - [SMALL_STATE(2474)] = 97242, - [SMALL_STATE(2475)] = 97299, - [SMALL_STATE(2476)] = 97358, - [SMALL_STATE(2477)] = 97415, - [SMALL_STATE(2478)] = 97474, - [SMALL_STATE(2479)] = 97527, - [SMALL_STATE(2480)] = 97586, - [SMALL_STATE(2481)] = 97637, - [SMALL_STATE(2482)] = 97696, - [SMALL_STATE(2483)] = 97765, - [SMALL_STATE(2484)] = 97870, - [SMALL_STATE(2485)] = 97945, - [SMALL_STATE(2486)] = 98020, - [SMALL_STATE(2487)] = 98125, - [SMALL_STATE(2488)] = 98192, - [SMALL_STATE(2489)] = 98251, - [SMALL_STATE(2490)] = 98332, - [SMALL_STATE(2491)] = 98391, - [SMALL_STATE(2492)] = 98448, - [SMALL_STATE(2493)] = 98507, - [SMALL_STATE(2494)] = 98576, - [SMALL_STATE(2495)] = 98627, - [SMALL_STATE(2496)] = 98686, - [SMALL_STATE(2497)] = 98745, - [SMALL_STATE(2498)] = 98804, - [SMALL_STATE(2499)] = 98863, - [SMALL_STATE(2500)] = 98932, - [SMALL_STATE(2501)] = 98991, - [SMALL_STATE(2502)] = 99044, - [SMALL_STATE(2503)] = 99101, - [SMALL_STATE(2504)] = 99152, - [SMALL_STATE(2505)] = 99213, - [SMALL_STATE(2506)] = 99318, - [SMALL_STATE(2507)] = 99423, - [SMALL_STATE(2508)] = 99528, - [SMALL_STATE(2509)] = 99633, - [SMALL_STATE(2510)] = 99738, - [SMALL_STATE(2511)] = 99819, - [SMALL_STATE(2512)] = 99890, - [SMALL_STATE(2513)] = 99985, - [SMALL_STATE(2514)] = 100082, - [SMALL_STATE(2515)] = 100159, - [SMALL_STATE(2516)] = 100248, - [SMALL_STATE(2517)] = 100339, - [SMALL_STATE(2518)] = 100432, - [SMALL_STATE(2519)] = 100507, - [SMALL_STATE(2520)] = 100584, - [SMALL_STATE(2521)] = 100669, - [SMALL_STATE(2522)] = 100768, - [SMALL_STATE(2523)] = 100873, - [SMALL_STATE(2524)] = 100978, - [SMALL_STATE(2525)] = 101083, - [SMALL_STATE(2526)] = 101188, - [SMALL_STATE(2527)] = 101293, - [SMALL_STATE(2528)] = 101398, - [SMALL_STATE(2529)] = 101503, - [SMALL_STATE(2530)] = 101608, - [SMALL_STATE(2531)] = 101713, - [SMALL_STATE(2532)] = 101764, - [SMALL_STATE(2533)] = 101821, - [SMALL_STATE(2534)] = 101872, - [SMALL_STATE(2535)] = 101929, - [SMALL_STATE(2536)] = 102018, - [SMALL_STATE(2537)] = 102068, - [SMALL_STATE(2538)] = 102122, - [SMALL_STATE(2539)] = 102178, - [SMALL_STATE(2540)] = 102242, - [SMALL_STATE(2541)] = 102302, - [SMALL_STATE(2542)] = 102370, - [SMALL_STATE(2543)] = 102434, - [SMALL_STATE(2544)] = 102494, - [SMALL_STATE(2545)] = 102562, - [SMALL_STATE(2546)] = 102616, - [SMALL_STATE(2547)] = 102670, - [SMALL_STATE(2548)] = 102734, - [SMALL_STATE(2549)] = 102784, - [SMALL_STATE(2550)] = 102834, - [SMALL_STATE(2551)] = 102906, - [SMALL_STATE(2552)] = 102960, - [SMALL_STATE(2553)] = 103010, - [SMALL_STATE(2554)] = 103070, - [SMALL_STATE(2555)] = 103124, - [SMALL_STATE(2556)] = 103174, - [SMALL_STATE(2557)] = 103224, - [SMALL_STATE(2558)] = 103274, - [SMALL_STATE(2559)] = 103322, - [SMALL_STATE(2560)] = 103392, - [SMALL_STATE(2561)] = 103456, - [SMALL_STATE(2562)] = 103516, - [SMALL_STATE(2563)] = 103580, - [SMALL_STATE(2564)] = 103640, - [SMALL_STATE(2565)] = 103694, - [SMALL_STATE(2566)] = 103742, - [SMALL_STATE(2567)] = 103796, - [SMALL_STATE(2568)] = 103846, - [SMALL_STATE(2569)] = 103896, - [SMALL_STATE(2570)] = 103950, - [SMALL_STATE(2571)] = 104000, - [SMALL_STATE(2572)] = 104050, - [SMALL_STATE(2573)] = 104104, - [SMALL_STATE(2574)] = 104158, - [SMALL_STATE(2575)] = 104224, - [SMALL_STATE(2576)] = 104272, - [SMALL_STATE(2577)] = 104331, - [SMALL_STATE(2578)] = 104390, - [SMALL_STATE(2579)] = 104439, - [SMALL_STATE(2580)] = 104498, - [SMALL_STATE(2581)] = 104555, - [SMALL_STATE(2582)] = 104614, - [SMALL_STATE(2583)] = 104675, - [SMALL_STATE(2584)] = 104732, - [SMALL_STATE(2585)] = 104791, - [SMALL_STATE(2586)] = 104850, - [SMALL_STATE(2587)] = 104909, - [SMALL_STATE(2588)] = 104972, - [SMALL_STATE(2589)] = 105029, - [SMALL_STATE(2590)] = 105078, - [SMALL_STATE(2591)] = 105135, - [SMALL_STATE(2592)] = 105192, - [SMALL_STATE(2593)] = 105249, - [SMALL_STATE(2594)] = 105308, - [SMALL_STATE(2595)] = 105365, - [SMALL_STATE(2596)] = 105422, - [SMALL_STATE(2597)] = 105479, - [SMALL_STATE(2598)] = 105532, - [SMALL_STATE(2599)] = 105589, - [SMALL_STATE(2600)] = 105648, - [SMALL_STATE(2601)] = 105705, - [SMALL_STATE(2602)] = 105762, - [SMALL_STATE(2603)] = 105815, - [SMALL_STATE(2604)] = 105874, - [SMALL_STATE(2605)] = 105933, - [SMALL_STATE(2606)] = 105986, - [SMALL_STATE(2607)] = 106043, - [SMALL_STATE(2608)] = 106102, - [SMALL_STATE(2609)] = 106161, - [SMALL_STATE(2610)] = 106218, - [SMALL_STATE(2611)] = 106275, - [SMALL_STATE(2612)] = 106340, - [SMALL_STATE(2613)] = 106399, - [SMALL_STATE(2614)] = 106452, - [SMALL_STATE(2615)] = 106505, - [SMALL_STATE(2616)] = 106562, - [SMALL_STATE(2617)] = 106611, - [SMALL_STATE(2618)] = 106660, - [SMALL_STATE(2619)] = 106723, - [SMALL_STATE(2620)] = 106771, - [SMALL_STATE(2621)] = 106817, - [SMALL_STATE(2622)] = 106865, - [SMALL_STATE(2623)] = 106913, - [SMALL_STATE(2624)] = 106959, - [SMALL_STATE(2625)] = 107005, - [SMALL_STATE(2626)] = 107051, - [SMALL_STATE(2627)] = 107097, - [SMALL_STATE(2628)] = 107143, - [SMALL_STATE(2629)] = 107189, - [SMALL_STATE(2630)] = 107235, - [SMALL_STATE(2631)] = 107281, - [SMALL_STATE(2632)] = 107327, - [SMALL_STATE(2633)] = 107373, - [SMALL_STATE(2634)] = 107419, - [SMALL_STATE(2635)] = 107465, - [SMALL_STATE(2636)] = 107511, - [SMALL_STATE(2637)] = 107557, - [SMALL_STATE(2638)] = 107603, - [SMALL_STATE(2639)] = 107649, - [SMALL_STATE(2640)] = 107695, - [SMALL_STATE(2641)] = 107741, - [SMALL_STATE(2642)] = 107787, - [SMALL_STATE(2643)] = 107833, - [SMALL_STATE(2644)] = 107881, - [SMALL_STATE(2645)] = 107927, - [SMALL_STATE(2646)] = 107973, - [SMALL_STATE(2647)] = 108019, - [SMALL_STATE(2648)] = 108067, - [SMALL_STATE(2649)] = 108113, - [SMALL_STATE(2650)] = 108159, - [SMALL_STATE(2651)] = 108205, - [SMALL_STATE(2652)] = 108251, - [SMALL_STATE(2653)] = 108297, - [SMALL_STATE(2654)] = 108343, - [SMALL_STATE(2655)] = 108393, - [SMALL_STATE(2656)] = 108439, - [SMALL_STATE(2657)] = 108487, - [SMALL_STATE(2658)] = 108533, - [SMALL_STATE(2659)] = 108579, - [SMALL_STATE(2660)] = 108625, - [SMALL_STATE(2661)] = 108671, - [SMALL_STATE(2662)] = 108717, - [SMALL_STATE(2663)] = 108763, - [SMALL_STATE(2664)] = 108811, - [SMALL_STATE(2665)] = 108859, - [SMALL_STATE(2666)] = 108905, - [SMALL_STATE(2667)] = 108951, - [SMALL_STATE(2668)] = 108999, - [SMALL_STATE(2669)] = 109057, - [SMALL_STATE(2670)] = 109105, - [SMALL_STATE(2671)] = 109151, - [SMALL_STATE(2672)] = 109197, - [SMALL_STATE(2673)] = 109245, - [SMALL_STATE(2674)] = 109293, - [SMALL_STATE(2675)] = 109339, - [SMALL_STATE(2676)] = 109385, - [SMALL_STATE(2677)] = 109433, - [SMALL_STATE(2678)] = 109479, - [SMALL_STATE(2679)] = 109525, - [SMALL_STATE(2680)] = 109571, - [SMALL_STATE(2681)] = 109617, - [SMALL_STATE(2682)] = 109673, - [SMALL_STATE(2683)] = 109721, - [SMALL_STATE(2684)] = 109771, - [SMALL_STATE(2685)] = 109824, - [SMALL_STATE(2686)] = 109875, - [SMALL_STATE(2687)] = 109926, - [SMALL_STATE(2688)] = 109993, - [SMALL_STATE(2689)] = 110046, - [SMALL_STATE(2690)] = 110091, - [SMALL_STATE(2691)] = 110136, - [SMALL_STATE(2692)] = 110181, - [SMALL_STATE(2693)] = 110226, - [SMALL_STATE(2694)] = 110271, - [SMALL_STATE(2695)] = 110316, - [SMALL_STATE(2696)] = 110361, - [SMALL_STATE(2697)] = 110417, - [SMALL_STATE(2698)] = 110465, - [SMALL_STATE(2699)] = 110513, - [SMALL_STATE(2700)] = 110571, - [SMALL_STATE(2701)] = 110643, - [SMALL_STATE(2702)] = 110701, - [SMALL_STATE(2703)] = 110761, - [SMALL_STATE(2704)] = 110819, - [SMALL_STATE(2705)] = 110877, - [SMALL_STATE(2706)] = 110937, - [SMALL_STATE(2707)] = 110997, - [SMALL_STATE(2708)] = 111069, - [SMALL_STATE(2709)] = 111122, - [SMALL_STATE(2710)] = 111185, - [SMALL_STATE(2711)] = 111238, - [SMALL_STATE(2712)] = 111291, - [SMALL_STATE(2713)] = 111354, - [SMALL_STATE(2714)] = 111407, - [SMALL_STATE(2715)] = 111460, - [SMALL_STATE(2716)] = 111513, - [SMALL_STATE(2717)] = 111566, - [SMALL_STATE(2718)] = 111619, - [SMALL_STATE(2719)] = 111672, - [SMALL_STATE(2720)] = 111725, - [SMALL_STATE(2721)] = 111778, - [SMALL_STATE(2722)] = 111831, - [SMALL_STATE(2723)] = 111884, - [SMALL_STATE(2724)] = 111933, - [SMALL_STATE(2725)] = 111986, - [SMALL_STATE(2726)] = 112039, - [SMALL_STATE(2727)] = 112092, - [SMALL_STATE(2728)] = 112145, - [SMALL_STATE(2729)] = 112198, - [SMALL_STATE(2730)] = 112251, - [SMALL_STATE(2731)] = 112304, - [SMALL_STATE(2732)] = 112357, - [SMALL_STATE(2733)] = 112410, - [SMALL_STATE(2734)] = 112463, - [SMALL_STATE(2735)] = 112516, - [SMALL_STATE(2736)] = 112569, - [SMALL_STATE(2737)] = 112622, - [SMALL_STATE(2738)] = 112675, - [SMALL_STATE(2739)] = 112729, - [SMALL_STATE(2740)] = 112783, - [SMALL_STATE(2741)] = 112847, - [SMALL_STATE(2742)] = 112901, - [SMALL_STATE(2743)] = 112981, - [SMALL_STATE(2744)] = 113041, - [SMALL_STATE(2745)] = 113121, - [SMALL_STATE(2746)] = 113181, - [SMALL_STATE(2747)] = 113245, - [SMALL_STATE(2748)] = 113299, - [SMALL_STATE(2749)] = 113353, - [SMALL_STATE(2750)] = 113417, - [SMALL_STATE(2751)] = 113497, - [SMALL_STATE(2752)] = 113551, - [SMALL_STATE(2753)] = 113605, - [SMALL_STATE(2754)] = 113659, - [SMALL_STATE(2755)] = 113739, - [SMALL_STATE(2756)] = 113793, - [SMALL_STATE(2757)] = 113847, - [SMALL_STATE(2758)] = 113927, - [SMALL_STATE(2759)] = 113984, - [SMALL_STATE(2760)] = 114025, - [SMALL_STATE(2761)] = 114082, - [SMALL_STATE(2762)] = 114123, - [SMALL_STATE(2763)] = 114180, - [SMALL_STATE(2764)] = 114237, - [SMALL_STATE(2765)] = 114280, - [SMALL_STATE(2766)] = 114337, - [SMALL_STATE(2767)] = 114394, - [SMALL_STATE(2768)] = 114451, - [SMALL_STATE(2769)] = 114508, - [SMALL_STATE(2770)] = 114565, - [SMALL_STATE(2771)] = 114606, - [SMALL_STATE(2772)] = 114663, - [SMALL_STATE(2773)] = 114704, - [SMALL_STATE(2774)] = 114755, - [SMALL_STATE(2775)] = 114812, - [SMALL_STATE(2776)] = 114853, - [SMALL_STATE(2777)] = 114906, - [SMALL_STATE(2778)] = 114963, - [SMALL_STATE(2779)] = 115016, - [SMALL_STATE(2780)] = 115073, - [SMALL_STATE(2781)] = 115130, - [SMALL_STATE(2782)] = 115187, - [SMALL_STATE(2783)] = 115244, - [SMALL_STATE(2784)] = 115294, - [SMALL_STATE(2785)] = 115342, - [SMALL_STATE(2786)] = 115390, - [SMALL_STATE(2787)] = 115438, - [SMALL_STATE(2788)] = 115486, - [SMALL_STATE(2789)] = 115534, - [SMALL_STATE(2790)] = 115582, - [SMALL_STATE(2791)] = 115630, - [SMALL_STATE(2792)] = 115678, - [SMALL_STATE(2793)] = 115728, - [SMALL_STATE(2794)] = 115776, - [SMALL_STATE(2795)] = 115826, - [SMALL_STATE(2796)] = 115874, - [SMALL_STATE(2797)] = 115922, - [SMALL_STATE(2798)] = 115972, - [SMALL_STATE(2799)] = 116020, - [SMALL_STATE(2800)] = 116068, - [SMALL_STATE(2801)] = 116116, - [SMALL_STATE(2802)] = 116164, - [SMALL_STATE(2803)] = 116212, - [SMALL_STATE(2804)] = 116260, - [SMALL_STATE(2805)] = 116310, - [SMALL_STATE(2806)] = 116358, - [SMALL_STATE(2807)] = 116406, - [SMALL_STATE(2808)] = 116456, - [SMALL_STATE(2809)] = 116504, - [SMALL_STATE(2810)] = 116554, - [SMALL_STATE(2811)] = 116602, - [SMALL_STATE(2812)] = 116650, - [SMALL_STATE(2813)] = 116698, - [SMALL_STATE(2814)] = 116746, - [SMALL_STATE(2815)] = 116794, - [SMALL_STATE(2816)] = 116842, - [SMALL_STATE(2817)] = 116890, - [SMALL_STATE(2818)] = 116940, - [SMALL_STATE(2819)] = 116988, - [SMALL_STATE(2820)] = 117036, - [SMALL_STATE(2821)] = 117086, - [SMALL_STATE(2822)] = 117134, - [SMALL_STATE(2823)] = 117184, - [SMALL_STATE(2824)] = 117232, - [SMALL_STATE(2825)] = 117280, - [SMALL_STATE(2826)] = 117328, - [SMALL_STATE(2827)] = 117376, - [SMALL_STATE(2828)] = 117424, - [SMALL_STATE(2829)] = 117472, - [SMALL_STATE(2830)] = 117520, - [SMALL_STATE(2831)] = 117568, - [SMALL_STATE(2832)] = 117616, - [SMALL_STATE(2833)] = 117664, - [SMALL_STATE(2834)] = 117714, - [SMALL_STATE(2835)] = 117762, - [SMALL_STATE(2836)] = 117810, - [SMALL_STATE(2837)] = 117858, - [SMALL_STATE(2838)] = 117906, - [SMALL_STATE(2839)] = 117954, - [SMALL_STATE(2840)] = 118002, - [SMALL_STATE(2841)] = 118052, - [SMALL_STATE(2842)] = 118102, - [SMALL_STATE(2843)] = 118152, - [SMALL_STATE(2844)] = 118200, - [SMALL_STATE(2845)] = 118235, - [SMALL_STATE(2846)] = 118276, - [SMALL_STATE(2847)] = 118317, - [SMALL_STATE(2848)] = 118358, - [SMALL_STATE(2849)] = 118386, - [SMALL_STATE(2850)] = 118414, - [SMALL_STATE(2851)] = 118442, - [SMALL_STATE(2852)] = 118470, - [SMALL_STATE(2853)] = 118498, - [SMALL_STATE(2854)] = 118526, - [SMALL_STATE(2855)] = 118554, - [SMALL_STATE(2856)] = 118582, - [SMALL_STATE(2857)] = 118610, - [SMALL_STATE(2858)] = 118638, - [SMALL_STATE(2859)] = 118666, - [SMALL_STATE(2860)] = 118694, - [SMALL_STATE(2861)] = 118722, - [SMALL_STATE(2862)] = 118750, - [SMALL_STATE(2863)] = 118778, - [SMALL_STATE(2864)] = 118806, - [SMALL_STATE(2865)] = 118834, - [SMALL_STATE(2866)] = 118862, - [SMALL_STATE(2867)] = 118890, - [SMALL_STATE(2868)] = 118918, - [SMALL_STATE(2869)] = 118946, - [SMALL_STATE(2870)] = 118974, - [SMALL_STATE(2871)] = 119002, - [SMALL_STATE(2872)] = 119030, - [SMALL_STATE(2873)] = 119058, - [SMALL_STATE(2874)] = 119086, - [SMALL_STATE(2875)] = 119114, - [SMALL_STATE(2876)] = 119142, - [SMALL_STATE(2877)] = 119170, - [SMALL_STATE(2878)] = 119198, - [SMALL_STATE(2879)] = 119226, - [SMALL_STATE(2880)] = 119254, - [SMALL_STATE(2881)] = 119282, - [SMALL_STATE(2882)] = 119310, - [SMALL_STATE(2883)] = 119337, - [SMALL_STATE(2884)] = 119364, - [SMALL_STATE(2885)] = 119413, - [SMALL_STATE(2886)] = 119439, - [SMALL_STATE(2887)] = 119465, - [SMALL_STATE(2888)] = 119493, - [SMALL_STATE(2889)] = 119519, - [SMALL_STATE(2890)] = 119545, - [SMALL_STATE(2891)] = 119571, - [SMALL_STATE(2892)] = 119605, - [SMALL_STATE(2893)] = 119635, - [SMALL_STATE(2894)] = 119661, - [SMALL_STATE(2895)] = 119687, - [SMALL_STATE(2896)] = 119717, - [SMALL_STATE(2897)] = 119755, - [SMALL_STATE(2898)] = 119781, - [SMALL_STATE(2899)] = 119813, - [SMALL_STATE(2900)] = 119841, - [SMALL_STATE(2901)] = 119867, - [SMALL_STATE(2902)] = 119905, - [SMALL_STATE(2903)] = 119943, - [SMALL_STATE(2904)] = 119968, - [SMALL_STATE(2905)] = 119995, - [SMALL_STATE(2906)] = 120026, - [SMALL_STATE(2907)] = 120055, - [SMALL_STATE(2908)] = 120080, - [SMALL_STATE(2909)] = 120105, - [SMALL_STATE(2910)] = 120130, - [SMALL_STATE(2911)] = 120164, - [SMALL_STATE(2912)] = 120188, - [SMALL_STATE(2913)] = 120210, - [SMALL_STATE(2914)] = 120234, - [SMALL_STATE(2915)] = 120258, - [SMALL_STATE(2916)] = 120282, - [SMALL_STATE(2917)] = 120306, - [SMALL_STATE(2918)] = 120330, - [SMALL_STATE(2919)] = 120354, - [SMALL_STATE(2920)] = 120382, - [SMALL_STATE(2921)] = 120406, - [SMALL_STATE(2922)] = 120430, - [SMALL_STATE(2923)] = 120462, - [SMALL_STATE(2924)] = 120486, - [SMALL_STATE(2925)] = 120510, - [SMALL_STATE(2926)] = 120544, - [SMALL_STATE(2927)] = 120578, - [SMALL_STATE(2928)] = 120602, - [SMALL_STATE(2929)] = 120626, - [SMALL_STATE(2930)] = 120650, - [SMALL_STATE(2931)] = 120684, - [SMALL_STATE(2932)] = 120708, - [SMALL_STATE(2933)] = 120742, - [SMALL_STATE(2934)] = 120764, - [SMALL_STATE(2935)] = 120798, - [SMALL_STATE(2936)] = 120832, - [SMALL_STATE(2937)] = 120856, - [SMALL_STATE(2938)] = 120878, - [SMALL_STATE(2939)] = 120902, - [SMALL_STATE(2940)] = 120926, - [SMALL_STATE(2941)] = 120948, - [SMALL_STATE(2942)] = 120970, - [SMALL_STATE(2943)] = 120994, - [SMALL_STATE(2944)] = 121018, - [SMALL_STATE(2945)] = 121042, - [SMALL_STATE(2946)] = 121066, - [SMALL_STATE(2947)] = 121090, - [SMALL_STATE(2948)] = 121114, - [SMALL_STATE(2949)] = 121140, - [SMALL_STATE(2950)] = 121162, - [SMALL_STATE(2951)] = 121186, - [SMALL_STATE(2952)] = 121220, - [SMALL_STATE(2953)] = 121244, - [SMALL_STATE(2954)] = 121268, - [SMALL_STATE(2955)] = 121302, - [SMALL_STATE(2956)] = 121326, - [SMALL_STATE(2957)] = 121348, - [SMALL_STATE(2958)] = 121372, - [SMALL_STATE(2959)] = 121404, - [SMALL_STATE(2960)] = 121428, - [SMALL_STATE(2961)] = 121452, - [SMALL_STATE(2962)] = 121476, - [SMALL_STATE(2963)] = 121498, - [SMALL_STATE(2964)] = 121530, - [SMALL_STATE(2965)] = 121564, - [SMALL_STATE(2966)] = 121598, - [SMALL_STATE(2967)] = 121632, - [SMALL_STATE(2968)] = 121656, - [SMALL_STATE(2969)] = 121680, - [SMALL_STATE(2970)] = 121704, - [SMALL_STATE(2971)] = 121728, - [SMALL_STATE(2972)] = 121752, - [SMALL_STATE(2973)] = 121776, - [SMALL_STATE(2974)] = 121800, - [SMALL_STATE(2975)] = 121832, - [SMALL_STATE(2976)] = 121856, - [SMALL_STATE(2977)] = 121880, - [SMALL_STATE(2978)] = 121904, - [SMALL_STATE(2979)] = 121928, - [SMALL_STATE(2980)] = 121952, - [SMALL_STATE(2981)] = 121976, - [SMALL_STATE(2982)] = 122010, - [SMALL_STATE(2983)] = 122034, - [SMALL_STATE(2984)] = 122058, - [SMALL_STATE(2985)] = 122082, - [SMALL_STATE(2986)] = 122106, - [SMALL_STATE(2987)] = 122130, - [SMALL_STATE(2988)] = 122154, - [SMALL_STATE(2989)] = 122176, - [SMALL_STATE(2990)] = 122200, - [SMALL_STATE(2991)] = 122232, - [SMALL_STATE(2992)] = 122256, - [SMALL_STATE(2993)] = 122280, - [SMALL_STATE(2994)] = 122304, - [SMALL_STATE(2995)] = 122336, - [SMALL_STATE(2996)] = 122370, - [SMALL_STATE(2997)] = 122394, - [SMALL_STATE(2998)] = 122428, - [SMALL_STATE(2999)] = 122462, - [SMALL_STATE(3000)] = 122486, - [SMALL_STATE(3001)] = 122508, - [SMALL_STATE(3002)] = 122532, - [SMALL_STATE(3003)] = 122556, - [SMALL_STATE(3004)] = 122580, - [SMALL_STATE(3005)] = 122604, - [SMALL_STATE(3006)] = 122628, - [SMALL_STATE(3007)] = 122662, - [SMALL_STATE(3008)] = 122688, - [SMALL_STATE(3009)] = 122712, - [SMALL_STATE(3010)] = 122736, - [SMALL_STATE(3011)] = 122770, - [SMALL_STATE(3012)] = 122794, - [SMALL_STATE(3013)] = 122823, - [SMALL_STATE(3014)] = 122848, - [SMALL_STATE(3015)] = 122877, - [SMALL_STATE(3016)] = 122902, - [SMALL_STATE(3017)] = 122931, - [SMALL_STATE(3018)] = 122974, - [SMALL_STATE(3019)] = 123017, - [SMALL_STATE(3020)] = 123060, - [SMALL_STATE(3021)] = 123103, - [SMALL_STATE(3022)] = 123146, - [SMALL_STATE(3023)] = 123189, - [SMALL_STATE(3024)] = 123228, - [SMALL_STATE(3025)] = 123255, - [SMALL_STATE(3026)] = 123284, - [SMALL_STATE(3027)] = 123323, - [SMALL_STATE(3028)] = 123366, - [SMALL_STATE(3029)] = 123395, - [SMALL_STATE(3030)] = 123434, - [SMALL_STATE(3031)] = 123473, - [SMALL_STATE(3032)] = 123512, - [SMALL_STATE(3033)] = 123541, - [SMALL_STATE(3034)] = 123584, - [SMALL_STATE(3035)] = 123627, - [SMALL_STATE(3036)] = 123670, - [SMALL_STATE(3037)] = 123699, - [SMALL_STATE(3038)] = 123742, - [SMALL_STATE(3039)] = 123785, - [SMALL_STATE(3040)] = 123828, - [SMALL_STATE(3041)] = 123853, - [SMALL_STATE(3042)] = 123896, - [SMALL_STATE(3043)] = 123939, - [SMALL_STATE(3044)] = 123982, - [SMALL_STATE(3045)] = 124025, - [SMALL_STATE(3046)] = 124068, - [SMALL_STATE(3047)] = 124111, - [SMALL_STATE(3048)] = 124154, - [SMALL_STATE(3049)] = 124197, - [SMALL_STATE(3050)] = 124240, - [SMALL_STATE(3051)] = 124269, - [SMALL_STATE(3052)] = 124312, - [SMALL_STATE(3053)] = 124357, - [SMALL_STATE(3054)] = 124386, - [SMALL_STATE(3055)] = 124410, - [SMALL_STATE(3056)] = 124438, - [SMALL_STATE(3057)] = 124460, - [SMALL_STATE(3058)] = 124482, - [SMALL_STATE(3059)] = 124504, - [SMALL_STATE(3060)] = 124540, - [SMALL_STATE(3061)] = 124564, - [SMALL_STATE(3062)] = 124586, - [SMALL_STATE(3063)] = 124608, - [SMALL_STATE(3064)] = 124632, - [SMALL_STATE(3065)] = 124654, - [SMALL_STATE(3066)] = 124676, - [SMALL_STATE(3067)] = 124698, - [SMALL_STATE(3068)] = 124720, - [SMALL_STATE(3069)] = 124756, - [SMALL_STATE(3070)] = 124792, - [SMALL_STATE(3071)] = 124820, - [SMALL_STATE(3072)] = 124846, - [SMALL_STATE(3073)] = 124874, - [SMALL_STATE(3074)] = 124910, - [SMALL_STATE(3075)] = 124938, - [SMALL_STATE(3076)] = 124966, - [SMALL_STATE(3077)] = 124992, - [SMALL_STATE(3078)] = 125030, - [SMALL_STATE(3079)] = 125066, - [SMALL_STATE(3080)] = 125094, - [SMALL_STATE(3081)] = 125130, - [SMALL_STATE(3082)] = 125158, - [SMALL_STATE(3083)] = 125186, - [SMALL_STATE(3084)] = 125210, - [SMALL_STATE(3085)] = 125232, - [SMALL_STATE(3086)] = 125254, - [SMALL_STATE(3087)] = 125282, - [SMALL_STATE(3088)] = 125306, - [SMALL_STATE(3089)] = 125328, - [SMALL_STATE(3090)] = 125350, - [SMALL_STATE(3091)] = 125372, - [SMALL_STATE(3092)] = 125394, - [SMALL_STATE(3093)] = 125430, - [SMALL_STATE(3094)] = 125466, - [SMALL_STATE(3095)] = 125492, - [SMALL_STATE(3096)] = 125512, - [SMALL_STATE(3097)] = 125532, - [SMALL_STATE(3098)] = 125552, - [SMALL_STATE(3099)] = 125572, - [SMALL_STATE(3100)] = 125592, - [SMALL_STATE(3101)] = 125612, - [SMALL_STATE(3102)] = 125632, - [SMALL_STATE(3103)] = 125652, - [SMALL_STATE(3104)] = 125672, - [SMALL_STATE(3105)] = 125692, - [SMALL_STATE(3106)] = 125712, - [SMALL_STATE(3107)] = 125748, - [SMALL_STATE(3108)] = 125768, - [SMALL_STATE(3109)] = 125788, - [SMALL_STATE(3110)] = 125824, - [SMALL_STATE(3111)] = 125844, - [SMALL_STATE(3112)] = 125864, - [SMALL_STATE(3113)] = 125884, - [SMALL_STATE(3114)] = 125904, - [SMALL_STATE(3115)] = 125924, - [SMALL_STATE(3116)] = 125944, - [SMALL_STATE(3117)] = 125964, - [SMALL_STATE(3118)] = 125984, - [SMALL_STATE(3119)] = 126004, - [SMALL_STATE(3120)] = 126024, - [SMALL_STATE(3121)] = 126044, - [SMALL_STATE(3122)] = 126064, - [SMALL_STATE(3123)] = 126084, - [SMALL_STATE(3124)] = 126104, - [SMALL_STATE(3125)] = 126124, - [SMALL_STATE(3126)] = 126144, - [SMALL_STATE(3127)] = 126164, - [SMALL_STATE(3128)] = 126184, - [SMALL_STATE(3129)] = 126204, - [SMALL_STATE(3130)] = 126224, - [SMALL_STATE(3131)] = 126244, - [SMALL_STATE(3132)] = 126281, - [SMALL_STATE(3133)] = 126304, - [SMALL_STATE(3134)] = 126337, - [SMALL_STATE(3135)] = 126368, - [SMALL_STATE(3136)] = 126397, - [SMALL_STATE(3137)] = 126426, - [SMALL_STATE(3138)] = 126449, - [SMALL_STATE(3139)] = 126486, - [SMALL_STATE(3140)] = 126523, - [SMALL_STATE(3141)] = 126560, - [SMALL_STATE(3142)] = 126597, - [SMALL_STATE(3143)] = 126634, - [SMALL_STATE(3144)] = 126673, - [SMALL_STATE(3145)] = 126696, - [SMALL_STATE(3146)] = 126733, - [SMALL_STATE(3147)] = 126770, - [SMALL_STATE(3148)] = 126803, - [SMALL_STATE(3149)] = 126828, - [SMALL_STATE(3150)] = 126861, - [SMALL_STATE(3151)] = 126898, - [SMALL_STATE(3152)] = 126923, - [SMALL_STATE(3153)] = 126944, - [SMALL_STATE(3154)] = 126981, - [SMALL_STATE(3155)] = 127002, - [SMALL_STATE(3156)] = 127039, - [SMALL_STATE(3157)] = 127076, - [SMALL_STATE(3158)] = 127113, - [SMALL_STATE(3159)] = 127144, - [SMALL_STATE(3160)] = 127181, - [SMALL_STATE(3161)] = 127212, - [SMALL_STATE(3162)] = 127249, - [SMALL_STATE(3163)] = 127286, - [SMALL_STATE(3164)] = 127309, - [SMALL_STATE(3165)] = 127340, - [SMALL_STATE(3166)] = 127377, - [SMALL_STATE(3167)] = 127414, - [SMALL_STATE(3168)] = 127447, - [SMALL_STATE(3169)] = 127480, - [SMALL_STATE(3170)] = 127513, - [SMALL_STATE(3171)] = 127550, - [SMALL_STATE(3172)] = 127583, - [SMALL_STATE(3173)] = 127620, - [SMALL_STATE(3174)] = 127653, - [SMALL_STATE(3175)] = 127686, - [SMALL_STATE(3176)] = 127723, - [SMALL_STATE(3177)] = 127756, - [SMALL_STATE(3178)] = 127793, - [SMALL_STATE(3179)] = 127830, - [SMALL_STATE(3180)] = 127859, - [SMALL_STATE(3181)] = 127878, - [SMALL_STATE(3182)] = 127907, - [SMALL_STATE(3183)] = 127928, - [SMALL_STATE(3184)] = 127949, - [SMALL_STATE(3185)] = 127968, - [SMALL_STATE(3186)] = 127997, - [SMALL_STATE(3187)] = 128028, - [SMALL_STATE(3188)] = 128048, - [SMALL_STATE(3189)] = 128068, - [SMALL_STATE(3190)] = 128088, - [SMALL_STATE(3191)] = 128110, - [SMALL_STATE(3192)] = 128132, - [SMALL_STATE(3193)] = 128152, - [SMALL_STATE(3194)] = 128170, - [SMALL_STATE(3195)] = 128190, - [SMALL_STATE(3196)] = 128210, - [SMALL_STATE(3197)] = 128228, - [SMALL_STATE(3198)] = 128246, - [SMALL_STATE(3199)] = 128264, - [SMALL_STATE(3200)] = 128288, - [SMALL_STATE(3201)] = 128308, - [SMALL_STATE(3202)] = 128326, - [SMALL_STATE(3203)] = 128344, - [SMALL_STATE(3204)] = 128364, - [SMALL_STATE(3205)] = 128382, - [SMALL_STATE(3206)] = 128400, - [SMALL_STATE(3207)] = 128418, - [SMALL_STATE(3208)] = 128436, - [SMALL_STATE(3209)] = 128456, - [SMALL_STATE(3210)] = 128478, - [SMALL_STATE(3211)] = 128502, - [SMALL_STATE(3212)] = 128520, - [SMALL_STATE(3213)] = 128540, - [SMALL_STATE(3214)] = 128560, - [SMALL_STATE(3215)] = 128578, - [SMALL_STATE(3216)] = 128598, - [SMALL_STATE(3217)] = 128618, - [SMALL_STATE(3218)] = 128638, - [SMALL_STATE(3219)] = 128658, - [SMALL_STATE(3220)] = 128678, - [SMALL_STATE(3221)] = 128698, - [SMALL_STATE(3222)] = 128718, - [SMALL_STATE(3223)] = 128740, - [SMALL_STATE(3224)] = 128760, - [SMALL_STATE(3225)] = 128784, - [SMALL_STATE(3226)] = 128806, - [SMALL_STATE(3227)] = 128824, - [SMALL_STATE(3228)] = 128844, - [SMALL_STATE(3229)] = 128864, - [SMALL_STATE(3230)] = 128888, - [SMALL_STATE(3231)] = 128908, - [SMALL_STATE(3232)] = 128928, - [SMALL_STATE(3233)] = 128952, - [SMALL_STATE(3234)] = 128976, - [SMALL_STATE(3235)] = 129000, - [SMALL_STATE(3236)] = 129026, - [SMALL_STATE(3237)] = 129046, - [SMALL_STATE(3238)] = 129066, - [SMALL_STATE(3239)] = 129086, - [SMALL_STATE(3240)] = 129106, - [SMALL_STATE(3241)] = 129126, - [SMALL_STATE(3242)] = 129144, - [SMALL_STATE(3243)] = 129164, - [SMALL_STATE(3244)] = 129190, - [SMALL_STATE(3245)] = 129210, - [SMALL_STATE(3246)] = 129230, - [SMALL_STATE(3247)] = 129252, - [SMALL_STATE(3248)] = 129272, - [SMALL_STATE(3249)] = 129292, - [SMALL_STATE(3250)] = 129312, - [SMALL_STATE(3251)] = 129334, - [SMALL_STATE(3252)] = 129354, - [SMALL_STATE(3253)] = 129374, - [SMALL_STATE(3254)] = 129410, - [SMALL_STATE(3255)] = 129430, - [SMALL_STATE(3256)] = 129450, - [SMALL_STATE(3257)] = 129472, - [SMALL_STATE(3258)] = 129496, - [SMALL_STATE(3259)] = 129527, - [SMALL_STATE(3260)] = 129562, - [SMALL_STATE(3261)] = 129597, - [SMALL_STATE(3262)] = 129632, - [SMALL_STATE(3263)] = 129667, - [SMALL_STATE(3264)] = 129690, - [SMALL_STATE(3265)] = 129719, - [SMALL_STATE(3266)] = 129742, - [SMALL_STATE(3267)] = 129763, - [SMALL_STATE(3268)] = 129788, - [SMALL_STATE(3269)] = 129823, - [SMALL_STATE(3270)] = 129856, - [SMALL_STATE(3271)] = 129875, - [SMALL_STATE(3272)] = 129896, - [SMALL_STATE(3273)] = 129915, - [SMALL_STATE(3274)] = 129950, - [SMALL_STATE(3275)] = 129983, - [SMALL_STATE(3276)] = 130000, - [SMALL_STATE(3277)] = 130021, - [SMALL_STATE(3278)] = 130056, - [SMALL_STATE(3279)] = 130073, - [SMALL_STATE(3280)] = 130108, - [SMALL_STATE(3281)] = 130125, - [SMALL_STATE(3282)] = 130144, - [SMALL_STATE(3283)] = 130161, - [SMALL_STATE(3284)] = 130196, - [SMALL_STATE(3285)] = 130227, - [SMALL_STATE(3286)] = 130262, - [SMALL_STATE(3287)] = 130281, - [SMALL_STATE(3288)] = 130316, - [SMALL_STATE(3289)] = 130339, - [SMALL_STATE(3290)] = 130368, - [SMALL_STATE(3291)] = 130396, - [SMALL_STATE(3292)] = 130428, - [SMALL_STATE(3293)] = 130460, - [SMALL_STATE(3294)] = 130488, - [SMALL_STATE(3295)] = 130520, - [SMALL_STATE(3296)] = 130552, - [SMALL_STATE(3297)] = 130584, - [SMALL_STATE(3298)] = 130616, - [SMALL_STATE(3299)] = 130632, - [SMALL_STATE(3300)] = 130664, - [SMALL_STATE(3301)] = 130692, - [SMALL_STATE(3302)] = 130718, - [SMALL_STATE(3303)] = 130744, - [SMALL_STATE(3304)] = 130776, - [SMALL_STATE(3305)] = 130808, - [SMALL_STATE(3306)] = 130824, - [SMALL_STATE(3307)] = 130850, - [SMALL_STATE(3308)] = 130882, - [SMALL_STATE(3309)] = 130914, - [SMALL_STATE(3310)] = 130946, - [SMALL_STATE(3311)] = 130962, - [SMALL_STATE(3312)] = 130994, - [SMALL_STATE(3313)] = 131022, - [SMALL_STATE(3314)] = 131052, - [SMALL_STATE(3315)] = 131084, - [SMALL_STATE(3316)] = 131106, - [SMALL_STATE(3317)] = 131138, - [SMALL_STATE(3318)] = 131160, - [SMALL_STATE(3319)] = 131192, - [SMALL_STATE(3320)] = 131224, - [SMALL_STATE(3321)] = 131252, - [SMALL_STATE(3322)] = 131268, - [SMALL_STATE(3323)] = 131294, - [SMALL_STATE(3324)] = 131320, - [SMALL_STATE(3325)] = 131352, - [SMALL_STATE(3326)] = 131380, - [SMALL_STATE(3327)] = 131408, - [SMALL_STATE(3328)] = 131434, - [SMALL_STATE(3329)] = 131462, - [SMALL_STATE(3330)] = 131486, - [SMALL_STATE(3331)] = 131514, - [SMALL_STATE(3332)] = 131542, - [SMALL_STATE(3333)] = 131574, - [SMALL_STATE(3334)] = 131602, - [SMALL_STATE(3335)] = 131630, - [SMALL_STATE(3336)] = 131658, - [SMALL_STATE(3337)] = 131678, - [SMALL_STATE(3338)] = 131710, - [SMALL_STATE(3339)] = 131738, - [SMALL_STATE(3340)] = 131766, - [SMALL_STATE(3341)] = 131798, - [SMALL_STATE(3342)] = 131826, - [SMALL_STATE(3343)] = 131842, - [SMALL_STATE(3344)] = 131870, - [SMALL_STATE(3345)] = 131886, - [SMALL_STATE(3346)] = 131902, - [SMALL_STATE(3347)] = 131918, - [SMALL_STATE(3348)] = 131936, - [SMALL_STATE(3349)] = 131952, - [SMALL_STATE(3350)] = 131968, - [SMALL_STATE(3351)] = 131994, - [SMALL_STATE(3352)] = 132020, - [SMALL_STATE(3353)] = 132046, - [SMALL_STATE(3354)] = 132078, - [SMALL_STATE(3355)] = 132094, - [SMALL_STATE(3356)] = 132120, - [SMALL_STATE(3357)] = 132142, - [SMALL_STATE(3358)] = 132170, - [SMALL_STATE(3359)] = 132186, - [SMALL_STATE(3360)] = 132202, - [SMALL_STATE(3361)] = 132218, - [SMALL_STATE(3362)] = 132236, - [SMALL_STATE(3363)] = 132252, - [SMALL_STATE(3364)] = 132268, - [SMALL_STATE(3365)] = 132284, - [SMALL_STATE(3366)] = 132306, - [SMALL_STATE(3367)] = 132326, - [SMALL_STATE(3368)] = 132344, - [SMALL_STATE(3369)] = 132362, - [SMALL_STATE(3370)] = 132392, - [SMALL_STATE(3371)] = 132408, - [SMALL_STATE(3372)] = 132426, - [SMALL_STATE(3373)] = 132458, - [SMALL_STATE(3374)] = 132484, - [SMALL_STATE(3375)] = 132512, - [SMALL_STATE(3376)] = 132544, - [SMALL_STATE(3377)] = 132576, - [SMALL_STATE(3378)] = 132592, - [SMALL_STATE(3379)] = 132620, - [SMALL_STATE(3380)] = 132646, - [SMALL_STATE(3381)] = 132662, - [SMALL_STATE(3382)] = 132690, - [SMALL_STATE(3383)] = 132706, - [SMALL_STATE(3384)] = 132734, - [SMALL_STATE(3385)] = 132762, - [SMALL_STATE(3386)] = 132790, - [SMALL_STATE(3387)] = 132818, - [SMALL_STATE(3388)] = 132834, - [SMALL_STATE(3389)] = 132850, - [SMALL_STATE(3390)] = 132878, - [SMALL_STATE(3391)] = 132894, - [SMALL_STATE(3392)] = 132916, - [SMALL_STATE(3393)] = 132944, - [SMALL_STATE(3394)] = 132972, - [SMALL_STATE(3395)] = 132988, - [SMALL_STATE(3396)] = 133010, - [SMALL_STATE(3397)] = 133038, - [SMALL_STATE(3398)] = 133066, - [SMALL_STATE(3399)] = 133098, - [SMALL_STATE(3400)] = 133116, - [SMALL_STATE(3401)] = 133144, - [SMALL_STATE(3402)] = 133160, - [SMALL_STATE(3403)] = 133178, - [SMALL_STATE(3404)] = 133206, - [SMALL_STATE(3405)] = 133222, - [SMALL_STATE(3406)] = 133238, - [SMALL_STATE(3407)] = 133270, - [SMALL_STATE(3408)] = 133298, - [SMALL_STATE(3409)] = 133324, - [SMALL_STATE(3410)] = 133352, - [SMALL_STATE(3411)] = 133380, - [SMALL_STATE(3412)] = 133408, - [SMALL_STATE(3413)] = 133436, - [SMALL_STATE(3414)] = 133468, - [SMALL_STATE(3415)] = 133484, - [SMALL_STATE(3416)] = 133516, - [SMALL_STATE(3417)] = 133548, - [SMALL_STATE(3418)] = 133564, - [SMALL_STATE(3419)] = 133580, - [SMALL_STATE(3420)] = 133602, - [SMALL_STATE(3421)] = 133620, - [SMALL_STATE(3422)] = 133636, - [SMALL_STATE(3423)] = 133652, - [SMALL_STATE(3424)] = 133674, - [SMALL_STATE(3425)] = 133690, - [SMALL_STATE(3426)] = 133722, - [SMALL_STATE(3427)] = 133754, - [SMALL_STATE(3428)] = 133770, - [SMALL_STATE(3429)] = 133786, - [SMALL_STATE(3430)] = 133806, - [SMALL_STATE(3431)] = 133822, - [SMALL_STATE(3432)] = 133838, - [SMALL_STATE(3433)] = 133868, - [SMALL_STATE(3434)] = 133894, - [SMALL_STATE(3435)] = 133926, - [SMALL_STATE(3436)] = 133942, - [SMALL_STATE(3437)] = 133958, - [SMALL_STATE(3438)] = 133980, - [SMALL_STATE(3439)] = 134008, - [SMALL_STATE(3440)] = 134024, - [SMALL_STATE(3441)] = 134050, - [SMALL_STATE(3442)] = 134078, - [SMALL_STATE(3443)] = 134094, - [SMALL_STATE(3444)] = 134110, - [SMALL_STATE(3445)] = 134126, - [SMALL_STATE(3446)] = 134142, - [SMALL_STATE(3447)] = 134170, - [SMALL_STATE(3448)] = 134202, - [SMALL_STATE(3449)] = 134230, - [SMALL_STATE(3450)] = 134258, - [SMALL_STATE(3451)] = 134286, - [SMALL_STATE(3452)] = 134314, - [SMALL_STATE(3453)] = 134342, - [SMALL_STATE(3454)] = 134370, - [SMALL_STATE(3455)] = 134386, - [SMALL_STATE(3456)] = 134415, - [SMALL_STATE(3457)] = 134434, - [SMALL_STATE(3458)] = 134459, - [SMALL_STATE(3459)] = 134488, - [SMALL_STATE(3460)] = 134511, - [SMALL_STATE(3461)] = 134526, - [SMALL_STATE(3462)] = 134551, - [SMALL_STATE(3463)] = 134568, - [SMALL_STATE(3464)] = 134583, - [SMALL_STATE(3465)] = 134608, - [SMALL_STATE(3466)] = 134631, - [SMALL_STATE(3467)] = 134654, - [SMALL_STATE(3468)] = 134679, - [SMALL_STATE(3469)] = 134700, - [SMALL_STATE(3470)] = 134721, - [SMALL_STATE(3471)] = 134750, - [SMALL_STATE(3472)] = 134773, - [SMALL_STATE(3473)] = 134790, - [SMALL_STATE(3474)] = 134819, - [SMALL_STATE(3475)] = 134836, - [SMALL_STATE(3476)] = 134861, - [SMALL_STATE(3477)] = 134886, - [SMALL_STATE(3478)] = 134911, - [SMALL_STATE(3479)] = 134936, - [SMALL_STATE(3480)] = 134961, - [SMALL_STATE(3481)] = 134986, - [SMALL_STATE(3482)] = 135009, - [SMALL_STATE(3483)] = 135032, - [SMALL_STATE(3484)] = 135053, - [SMALL_STATE(3485)] = 135078, - [SMALL_STATE(3486)] = 135099, - [SMALL_STATE(3487)] = 135124, - [SMALL_STATE(3488)] = 135145, - [SMALL_STATE(3489)] = 135166, - [SMALL_STATE(3490)] = 135189, - [SMALL_STATE(3491)] = 135204, - [SMALL_STATE(3492)] = 135227, - [SMALL_STATE(3493)] = 135256, - [SMALL_STATE(3494)] = 135279, - [SMALL_STATE(3495)] = 135308, - [SMALL_STATE(3496)] = 135330, - [SMALL_STATE(3497)] = 135352, - [SMALL_STATE(3498)] = 135378, - [SMALL_STATE(3499)] = 135404, - [SMALL_STATE(3500)] = 135426, - [SMALL_STATE(3501)] = 135446, - [SMALL_STATE(3502)] = 135466, - [SMALL_STATE(3503)] = 135486, - [SMALL_STATE(3504)] = 135506, - [SMALL_STATE(3505)] = 135532, - [SMALL_STATE(3506)] = 135556, - [SMALL_STATE(3507)] = 135570, - [SMALL_STATE(3508)] = 135588, - [SMALL_STATE(3509)] = 135610, - [SMALL_STATE(3510)] = 135636, - [SMALL_STATE(3511)] = 135656, - [SMALL_STATE(3512)] = 135678, - [SMALL_STATE(3513)] = 135692, - [SMALL_STATE(3514)] = 135718, - [SMALL_STATE(3515)] = 135736, - [SMALL_STATE(3516)] = 135754, - [SMALL_STATE(3517)] = 135772, - [SMALL_STATE(3518)] = 135798, - [SMALL_STATE(3519)] = 135824, - [SMALL_STATE(3520)] = 135846, - [SMALL_STATE(3521)] = 135864, - [SMALL_STATE(3522)] = 135886, - [SMALL_STATE(3523)] = 135904, - [SMALL_STATE(3524)] = 135922, - [SMALL_STATE(3525)] = 135948, - [SMALL_STATE(3526)] = 135970, - [SMALL_STATE(3527)] = 135992, - [SMALL_STATE(3528)] = 136006, - [SMALL_STATE(3529)] = 136020, - [SMALL_STATE(3530)] = 136042, - [SMALL_STATE(3531)] = 136064, - [SMALL_STATE(3532)] = 136086, - [SMALL_STATE(3533)] = 136104, - [SMALL_STATE(3534)] = 136126, - [SMALL_STATE(3535)] = 136152, - [SMALL_STATE(3536)] = 136166, - [SMALL_STATE(3537)] = 136192, - [SMALL_STATE(3538)] = 136214, - [SMALL_STATE(3539)] = 136236, - [SMALL_STATE(3540)] = 136258, - [SMALL_STATE(3541)] = 136276, - [SMALL_STATE(3542)] = 136298, - [SMALL_STATE(3543)] = 136320, - [SMALL_STATE(3544)] = 136342, - [SMALL_STATE(3545)] = 136364, - [SMALL_STATE(3546)] = 136386, - [SMALL_STATE(3547)] = 136408, - [SMALL_STATE(3548)] = 136430, - [SMALL_STATE(3549)] = 136452, - [SMALL_STATE(3550)] = 136478, - [SMALL_STATE(3551)] = 136500, - [SMALL_STATE(3552)] = 136522, - [SMALL_STATE(3553)] = 136540, - [SMALL_STATE(3554)] = 136558, - [SMALL_STATE(3555)] = 136572, - [SMALL_STATE(3556)] = 136594, - [SMALL_STATE(3557)] = 136616, - [SMALL_STATE(3558)] = 136630, - [SMALL_STATE(3559)] = 136648, - [SMALL_STATE(3560)] = 136674, - [SMALL_STATE(3561)] = 136688, - [SMALL_STATE(3562)] = 136710, - [SMALL_STATE(3563)] = 136732, - [SMALL_STATE(3564)] = 136754, - [SMALL_STATE(3565)] = 136780, - [SMALL_STATE(3566)] = 136802, - [SMALL_STATE(3567)] = 136824, - [SMALL_STATE(3568)] = 136846, - [SMALL_STATE(3569)] = 136872, - [SMALL_STATE(3570)] = 136894, - [SMALL_STATE(3571)] = 136916, - [SMALL_STATE(3572)] = 136938, - [SMALL_STATE(3573)] = 136964, - [SMALL_STATE(3574)] = 136986, - [SMALL_STATE(3575)] = 137008, - [SMALL_STATE(3576)] = 137030, - [SMALL_STATE(3577)] = 137052, - [SMALL_STATE(3578)] = 137070, - [SMALL_STATE(3579)] = 137092, - [SMALL_STATE(3580)] = 137114, - [SMALL_STATE(3581)] = 137136, - [SMALL_STATE(3582)] = 137162, - [SMALL_STATE(3583)] = 137188, - [SMALL_STATE(3584)] = 137210, - [SMALL_STATE(3585)] = 137224, - [SMALL_STATE(3586)] = 137242, - [SMALL_STATE(3587)] = 137264, - [SMALL_STATE(3588)] = 137286, - [SMALL_STATE(3589)] = 137308, - [SMALL_STATE(3590)] = 137334, - [SMALL_STATE(3591)] = 137352, - [SMALL_STATE(3592)] = 137374, - [SMALL_STATE(3593)] = 137400, - [SMALL_STATE(3594)] = 137414, - [SMALL_STATE(3595)] = 137432, - [SMALL_STATE(3596)] = 137446, - [SMALL_STATE(3597)] = 137462, - [SMALL_STATE(3598)] = 137484, - [SMALL_STATE(3599)] = 137506, - [SMALL_STATE(3600)] = 137528, - [SMALL_STATE(3601)] = 137550, - [SMALL_STATE(3602)] = 137572, - [SMALL_STATE(3603)] = 137594, - [SMALL_STATE(3604)] = 137616, - [SMALL_STATE(3605)] = 137634, - [SMALL_STATE(3606)] = 137656, - [SMALL_STATE(3607)] = 137678, - [SMALL_STATE(3608)] = 137704, - [SMALL_STATE(3609)] = 137730, - [SMALL_STATE(3610)] = 137756, - [SMALL_STATE(3611)] = 137782, - [SMALL_STATE(3612)] = 137804, - [SMALL_STATE(3613)] = 137830, - [SMALL_STATE(3614)] = 137852, - [SMALL_STATE(3615)] = 137874, - [SMALL_STATE(3616)] = 137896, - [SMALL_STATE(3617)] = 137918, - [SMALL_STATE(3618)] = 137940, - [SMALL_STATE(3619)] = 137962, - [SMALL_STATE(3620)] = 137976, - [SMALL_STATE(3621)] = 137998, - [SMALL_STATE(3622)] = 138020, - [SMALL_STATE(3623)] = 138046, - [SMALL_STATE(3624)] = 138068, - [SMALL_STATE(3625)] = 138090, - [SMALL_STATE(3626)] = 138112, - [SMALL_STATE(3627)] = 138130, - [SMALL_STATE(3628)] = 138152, - [SMALL_STATE(3629)] = 138174, - [SMALL_STATE(3630)] = 138200, - [SMALL_STATE(3631)] = 138226, - [SMALL_STATE(3632)] = 138252, - [SMALL_STATE(3633)] = 138274, - [SMALL_STATE(3634)] = 138288, - [SMALL_STATE(3635)] = 138310, - [SMALL_STATE(3636)] = 138328, - [SMALL_STATE(3637)] = 138350, - [SMALL_STATE(3638)] = 138376, - [SMALL_STATE(3639)] = 138402, - [SMALL_STATE(3640)] = 138420, - [SMALL_STATE(3641)] = 138442, - [SMALL_STATE(3642)] = 138464, - [SMALL_STATE(3643)] = 138486, - [SMALL_STATE(3644)] = 138508, - [SMALL_STATE(3645)] = 138534, - [SMALL_STATE(3646)] = 138556, - [SMALL_STATE(3647)] = 138578, - [SMALL_STATE(3648)] = 138602, - [SMALL_STATE(3649)] = 138624, - [SMALL_STATE(3650)] = 138646, - [SMALL_STATE(3651)] = 138672, - [SMALL_STATE(3652)] = 138694, - [SMALL_STATE(3653)] = 138716, - [SMALL_STATE(3654)] = 138738, - [SMALL_STATE(3655)] = 138754, - [SMALL_STATE(3656)] = 138770, - [SMALL_STATE(3657)] = 138790, - [SMALL_STATE(3658)] = 138806, - [SMALL_STATE(3659)] = 138826, - [SMALL_STATE(3660)] = 138842, - [SMALL_STATE(3661)] = 138864, - [SMALL_STATE(3662)] = 138880, - [SMALL_STATE(3663)] = 138902, - [SMALL_STATE(3664)] = 138920, - [SMALL_STATE(3665)] = 138938, - [SMALL_STATE(3666)] = 138956, - [SMALL_STATE(3667)] = 138978, - [SMALL_STATE(3668)] = 138996, - [SMALL_STATE(3669)] = 139018, - [SMALL_STATE(3670)] = 139040, - [SMALL_STATE(3671)] = 139058, - [SMALL_STATE(3672)] = 139080, - [SMALL_STATE(3673)] = 139102, - [SMALL_STATE(3674)] = 139124, - [SMALL_STATE(3675)] = 139146, - [SMALL_STATE(3676)] = 139168, - [SMALL_STATE(3677)] = 139190, - [SMALL_STATE(3678)] = 139212, - [SMALL_STATE(3679)] = 139238, - [SMALL_STATE(3680)] = 139256, - [SMALL_STATE(3681)] = 139282, - [SMALL_STATE(3682)] = 139300, - [SMALL_STATE(3683)] = 139322, - [SMALL_STATE(3684)] = 139348, - [SMALL_STATE(3685)] = 139362, - [SMALL_STATE(3686)] = 139376, - [SMALL_STATE(3687)] = 139402, - [SMALL_STATE(3688)] = 139424, - [SMALL_STATE(3689)] = 139446, - [SMALL_STATE(3690)] = 139472, - [SMALL_STATE(3691)] = 139494, - [SMALL_STATE(3692)] = 139516, - [SMALL_STATE(3693)] = 139538, - [SMALL_STATE(3694)] = 139560, - [SMALL_STATE(3695)] = 139582, - [SMALL_STATE(3696)] = 139604, - [SMALL_STATE(3697)] = 139626, - [SMALL_STATE(3698)] = 139652, - [SMALL_STATE(3699)] = 139674, - [SMALL_STATE(3700)] = 139690, - [SMALL_STATE(3701)] = 139716, - [SMALL_STATE(3702)] = 139736, - [SMALL_STATE(3703)] = 139758, - [SMALL_STATE(3704)] = 139780, - [SMALL_STATE(3705)] = 139798, - [SMALL_STATE(3706)] = 139814, - [SMALL_STATE(3707)] = 139836, - [SMALL_STATE(3708)] = 139858, - [SMALL_STATE(3709)] = 139884, - [SMALL_STATE(3710)] = 139906, - [SMALL_STATE(3711)] = 139924, - [SMALL_STATE(3712)] = 139946, - [SMALL_STATE(3713)] = 139960, - [SMALL_STATE(3714)] = 139982, - [SMALL_STATE(3715)] = 140004, - [SMALL_STATE(3716)] = 140026, - [SMALL_STATE(3717)] = 140052, - [SMALL_STATE(3718)] = 140074, - [SMALL_STATE(3719)] = 140096, - [SMALL_STATE(3720)] = 140118, - [SMALL_STATE(3721)] = 140140, - [SMALL_STATE(3722)] = 140157, - [SMALL_STATE(3723)] = 140170, - [SMALL_STATE(3724)] = 140193, - [SMALL_STATE(3725)] = 140210, - [SMALL_STATE(3726)] = 140225, - [SMALL_STATE(3727)] = 140244, - [SMALL_STATE(3728)] = 140259, - [SMALL_STATE(3729)] = 140282, - [SMALL_STATE(3730)] = 140297, - [SMALL_STATE(3731)] = 140310, - [SMALL_STATE(3732)] = 140327, - [SMALL_STATE(3733)] = 140346, - [SMALL_STATE(3734)] = 140363, - [SMALL_STATE(3735)] = 140380, - [SMALL_STATE(3736)] = 140403, - [SMALL_STATE(3737)] = 140420, - [SMALL_STATE(3738)] = 140443, - [SMALL_STATE(3739)] = 140462, - [SMALL_STATE(3740)] = 140479, - [SMALL_STATE(3741)] = 140502, - [SMALL_STATE(3742)] = 140521, - [SMALL_STATE(3743)] = 140538, - [SMALL_STATE(3744)] = 140555, - [SMALL_STATE(3745)] = 140578, - [SMALL_STATE(3746)] = 140601, - [SMALL_STATE(3747)] = 140622, - [SMALL_STATE(3748)] = 140641, - [SMALL_STATE(3749)] = 140664, - [SMALL_STATE(3750)] = 140681, - [SMALL_STATE(3751)] = 140698, - [SMALL_STATE(3752)] = 140715, - [SMALL_STATE(3753)] = 140738, - [SMALL_STATE(3754)] = 140761, - [SMALL_STATE(3755)] = 140778, - [SMALL_STATE(3756)] = 140797, - [SMALL_STATE(3757)] = 140820, - [SMALL_STATE(3758)] = 140843, - [SMALL_STATE(3759)] = 140866, - [SMALL_STATE(3760)] = 140885, - [SMALL_STATE(3761)] = 140904, - [SMALL_STATE(3762)] = 140921, - [SMALL_STATE(3763)] = 140938, - [SMALL_STATE(3764)] = 140955, - [SMALL_STATE(3765)] = 140972, - [SMALL_STATE(3766)] = 140995, - [SMALL_STATE(3767)] = 141012, - [SMALL_STATE(3768)] = 141029, - [SMALL_STATE(3769)] = 141052, - [SMALL_STATE(3770)] = 141067, - [SMALL_STATE(3771)] = 141090, - [SMALL_STATE(3772)] = 141107, - [SMALL_STATE(3773)] = 141124, - [SMALL_STATE(3774)] = 141141, - [SMALL_STATE(3775)] = 141158, - [SMALL_STATE(3776)] = 141181, - [SMALL_STATE(3777)] = 141204, - [SMALL_STATE(3778)] = 141223, - [SMALL_STATE(3779)] = 141246, - [SMALL_STATE(3780)] = 141265, - [SMALL_STATE(3781)] = 141284, - [SMALL_STATE(3782)] = 141297, - [SMALL_STATE(3783)] = 141320, - [SMALL_STATE(3784)] = 141337, - [SMALL_STATE(3785)] = 141360, - [SMALL_STATE(3786)] = 141379, - [SMALL_STATE(3787)] = 141402, - [SMALL_STATE(3788)] = 141425, - [SMALL_STATE(3789)] = 141448, - [SMALL_STATE(3790)] = 141465, - [SMALL_STATE(3791)] = 141478, - [SMALL_STATE(3792)] = 141501, - [SMALL_STATE(3793)] = 141524, - [SMALL_STATE(3794)] = 141547, - [SMALL_STATE(3795)] = 141570, - [SMALL_STATE(3796)] = 141587, - [SMALL_STATE(3797)] = 141604, - [SMALL_STATE(3798)] = 141617, - [SMALL_STATE(3799)] = 141636, - [SMALL_STATE(3800)] = 141653, - [SMALL_STATE(3801)] = 141676, - [SMALL_STATE(3802)] = 141699, - [SMALL_STATE(3803)] = 141716, - [SMALL_STATE(3804)] = 141739, - [SMALL_STATE(3805)] = 141762, - [SMALL_STATE(3806)] = 141785, - [SMALL_STATE(3807)] = 141802, - [SMALL_STATE(3808)] = 141825, - [SMALL_STATE(3809)] = 141844, - [SMALL_STATE(3810)] = 141857, - [SMALL_STATE(3811)] = 141872, - [SMALL_STATE(3812)] = 141889, - [SMALL_STATE(3813)] = 141906, - [SMALL_STATE(3814)] = 141923, - [SMALL_STATE(3815)] = 141936, - [SMALL_STATE(3816)] = 141949, - [SMALL_STATE(3817)] = 141972, - [SMALL_STATE(3818)] = 141985, - [SMALL_STATE(3819)] = 142008, - [SMALL_STATE(3820)] = 142031, - [SMALL_STATE(3821)] = 142052, - [SMALL_STATE(3822)] = 142075, - [SMALL_STATE(3823)] = 142088, - [SMALL_STATE(3824)] = 142107, - [SMALL_STATE(3825)] = 142130, - [SMALL_STATE(3826)] = 142149, - [SMALL_STATE(3827)] = 142166, - [SMALL_STATE(3828)] = 142179, - [SMALL_STATE(3829)] = 142192, - [SMALL_STATE(3830)] = 142215, - [SMALL_STATE(3831)] = 142238, - [SMALL_STATE(3832)] = 142261, - [SMALL_STATE(3833)] = 142284, - [SMALL_STATE(3834)] = 142307, - [SMALL_STATE(3835)] = 142330, - [SMALL_STATE(3836)] = 142349, - [SMALL_STATE(3837)] = 142366, - [SMALL_STATE(3838)] = 142389, - [SMALL_STATE(3839)] = 142412, - [SMALL_STATE(3840)] = 142435, - [SMALL_STATE(3841)] = 142458, - [SMALL_STATE(3842)] = 142471, - [SMALL_STATE(3843)] = 142488, - [SMALL_STATE(3844)] = 142505, - [SMALL_STATE(3845)] = 142528, - [SMALL_STATE(3846)] = 142545, - [SMALL_STATE(3847)] = 142564, - [SMALL_STATE(3848)] = 142583, - [SMALL_STATE(3849)] = 142606, - [SMALL_STATE(3850)] = 142629, - [SMALL_STATE(3851)] = 142652, - [SMALL_STATE(3852)] = 142675, - [SMALL_STATE(3853)] = 142698, - [SMALL_STATE(3854)] = 142721, - [SMALL_STATE(3855)] = 142744, - [SMALL_STATE(3856)] = 142767, - [SMALL_STATE(3857)] = 142784, - [SMALL_STATE(3858)] = 142801, - [SMALL_STATE(3859)] = 142818, - [SMALL_STATE(3860)] = 142835, - [SMALL_STATE(3861)] = 142854, - [SMALL_STATE(3862)] = 142871, - [SMALL_STATE(3863)] = 142894, - [SMALL_STATE(3864)] = 142913, - [SMALL_STATE(3865)] = 142930, - [SMALL_STATE(3866)] = 142943, - [SMALL_STATE(3867)] = 142960, - [SMALL_STATE(3868)] = 142981, - [SMALL_STATE(3869)] = 142998, - [SMALL_STATE(3870)] = 143015, - [SMALL_STATE(3871)] = 143030, - [SMALL_STATE(3872)] = 143047, - [SMALL_STATE(3873)] = 143064, - [SMALL_STATE(3874)] = 143078, - [SMALL_STATE(3875)] = 143094, - [SMALL_STATE(3876)] = 143114, - [SMALL_STATE(3877)] = 143130, - [SMALL_STATE(3878)] = 143142, - [SMALL_STATE(3879)] = 143154, - [SMALL_STATE(3880)] = 143166, - [SMALL_STATE(3881)] = 143178, - [SMALL_STATE(3882)] = 143196, - [SMALL_STATE(3883)] = 143212, - [SMALL_STATE(3884)] = 143228, - [SMALL_STATE(3885)] = 143246, - [SMALL_STATE(3886)] = 143262, - [SMALL_STATE(3887)] = 143274, - [SMALL_STATE(3888)] = 143290, - [SMALL_STATE(3889)] = 143302, - [SMALL_STATE(3890)] = 143314, - [SMALL_STATE(3891)] = 143326, - [SMALL_STATE(3892)] = 143338, - [SMALL_STATE(3893)] = 143350, - [SMALL_STATE(3894)] = 143362, - [SMALL_STATE(3895)] = 143374, - [SMALL_STATE(3896)] = 143386, - [SMALL_STATE(3897)] = 143398, - [SMALL_STATE(3898)] = 143410, - [SMALL_STATE(3899)] = 143422, - [SMALL_STATE(3900)] = 143442, - [SMALL_STATE(3901)] = 143458, - [SMALL_STATE(3902)] = 143474, - [SMALL_STATE(3903)] = 143490, - [SMALL_STATE(3904)] = 143506, - [SMALL_STATE(3905)] = 143518, - [SMALL_STATE(3906)] = 143534, - [SMALL_STATE(3907)] = 143546, - [SMALL_STATE(3908)] = 143558, - [SMALL_STATE(3909)] = 143574, - [SMALL_STATE(3910)] = 143592, - [SMALL_STATE(3911)] = 143604, - [SMALL_STATE(3912)] = 143620, - [SMALL_STATE(3913)] = 143632, - [SMALL_STATE(3914)] = 143648, - [SMALL_STATE(3915)] = 143664, - [SMALL_STATE(3916)] = 143680, - [SMALL_STATE(3917)] = 143692, - [SMALL_STATE(3918)] = 143712, - [SMALL_STATE(3919)] = 143728, - [SMALL_STATE(3920)] = 143744, - [SMALL_STATE(3921)] = 143764, - [SMALL_STATE(3922)] = 143780, - [SMALL_STATE(3923)] = 143792, - [SMALL_STATE(3924)] = 143808, - [SMALL_STATE(3925)] = 143828, - [SMALL_STATE(3926)] = 143840, - [SMALL_STATE(3927)] = 143856, - [SMALL_STATE(3928)] = 143874, - [SMALL_STATE(3929)] = 143890, - [SMALL_STATE(3930)] = 143902, - [SMALL_STATE(3931)] = 143914, - [SMALL_STATE(3932)] = 143926, - [SMALL_STATE(3933)] = 143938, - [SMALL_STATE(3934)] = 143950, - [SMALL_STATE(3935)] = 143962, - [SMALL_STATE(3936)] = 143982, - [SMALL_STATE(3937)] = 143998, - [SMALL_STATE(3938)] = 144010, - [SMALL_STATE(3939)] = 144022, - [SMALL_STATE(3940)] = 144034, - [SMALL_STATE(3941)] = 144046, - [SMALL_STATE(3942)] = 144058, - [SMALL_STATE(3943)] = 144070, - [SMALL_STATE(3944)] = 144082, - [SMALL_STATE(3945)] = 144098, - [SMALL_STATE(3946)] = 144114, - [SMALL_STATE(3947)] = 144130, - [SMALL_STATE(3948)] = 144150, - [SMALL_STATE(3949)] = 144166, - [SMALL_STATE(3950)] = 144184, - [SMALL_STATE(3951)] = 144200, - [SMALL_STATE(3952)] = 144216, - [SMALL_STATE(3953)] = 144236, - [SMALL_STATE(3954)] = 144248, - [SMALL_STATE(3955)] = 144260, - [SMALL_STATE(3956)] = 144276, - [SMALL_STATE(3957)] = 144292, - [SMALL_STATE(3958)] = 144308, - [SMALL_STATE(3959)] = 144328, - [SMALL_STATE(3960)] = 144344, - [SMALL_STATE(3961)] = 144364, - [SMALL_STATE(3962)] = 144376, - [SMALL_STATE(3963)] = 144388, - [SMALL_STATE(3964)] = 144408, - [SMALL_STATE(3965)] = 144422, - [SMALL_STATE(3966)] = 144434, - [SMALL_STATE(3967)] = 144452, - [SMALL_STATE(3968)] = 144464, - [SMALL_STATE(3969)] = 144484, - [SMALL_STATE(3970)] = 144496, - [SMALL_STATE(3971)] = 144508, - [SMALL_STATE(3972)] = 144524, - [SMALL_STATE(3973)] = 144536, - [SMALL_STATE(3974)] = 144548, - [SMALL_STATE(3975)] = 144560, - [SMALL_STATE(3976)] = 144572, - [SMALL_STATE(3977)] = 144588, - [SMALL_STATE(3978)] = 144604, - [SMALL_STATE(3979)] = 144618, - [SMALL_STATE(3980)] = 144638, - [SMALL_STATE(3981)] = 144656, - [SMALL_STATE(3982)] = 144668, - [SMALL_STATE(3983)] = 144680, - [SMALL_STATE(3984)] = 144694, - [SMALL_STATE(3985)] = 144714, - [SMALL_STATE(3986)] = 144734, - [SMALL_STATE(3987)] = 144746, - [SMALL_STATE(3988)] = 144766, - [SMALL_STATE(3989)] = 144778, - [SMALL_STATE(3990)] = 144798, - [SMALL_STATE(3991)] = 144810, - [SMALL_STATE(3992)] = 144830, - [SMALL_STATE(3993)] = 144846, - [SMALL_STATE(3994)] = 144858, - [SMALL_STATE(3995)] = 144870, - [SMALL_STATE(3996)] = 144882, - [SMALL_STATE(3997)] = 144894, - [SMALL_STATE(3998)] = 144906, - [SMALL_STATE(3999)] = 144918, - [SMALL_STATE(4000)] = 144930, - [SMALL_STATE(4001)] = 144942, - [SMALL_STATE(4002)] = 144954, - [SMALL_STATE(4003)] = 144966, - [SMALL_STATE(4004)] = 144978, - [SMALL_STATE(4005)] = 144994, - [SMALL_STATE(4006)] = 145014, - [SMALL_STATE(4007)] = 145030, - [SMALL_STATE(4008)] = 145048, - [SMALL_STATE(4009)] = 145064, - [SMALL_STATE(4010)] = 145076, - [SMALL_STATE(4011)] = 145090, - [SMALL_STATE(4012)] = 145106, - [SMALL_STATE(4013)] = 145120, - [SMALL_STATE(4014)] = 145136, - [SMALL_STATE(4015)] = 145154, - [SMALL_STATE(4016)] = 145170, - [SMALL_STATE(4017)] = 145190, - [SMALL_STATE(4018)] = 145206, - [SMALL_STATE(4019)] = 145224, - [SMALL_STATE(4020)] = 145240, - [SMALL_STATE(4021)] = 145260, - [SMALL_STATE(4022)] = 145276, - [SMALL_STATE(4023)] = 145292, - [SMALL_STATE(4024)] = 145304, - [SMALL_STATE(4025)] = 145320, - [SMALL_STATE(4026)] = 145332, - [SMALL_STATE(4027)] = 145344, - [SMALL_STATE(4028)] = 145360, - [SMALL_STATE(4029)] = 145376, - [SMALL_STATE(4030)] = 145392, - [SMALL_STATE(4031)] = 145408, - [SMALL_STATE(4032)] = 145424, - [SMALL_STATE(4033)] = 145440, - [SMALL_STATE(4034)] = 145456, - [SMALL_STATE(4035)] = 145474, - [SMALL_STATE(4036)] = 145490, - [SMALL_STATE(4037)] = 145506, - [SMALL_STATE(4038)] = 145524, - [SMALL_STATE(4039)] = 145544, - [SMALL_STATE(4040)] = 145564, - [SMALL_STATE(4041)] = 145584, - [SMALL_STATE(4042)] = 145600, - [SMALL_STATE(4043)] = 145616, - [SMALL_STATE(4044)] = 145632, - [SMALL_STATE(4045)] = 145648, - [SMALL_STATE(4046)] = 145664, - [SMALL_STATE(4047)] = 145680, - [SMALL_STATE(4048)] = 145696, - [SMALL_STATE(4049)] = 145712, - [SMALL_STATE(4050)] = 145728, - [SMALL_STATE(4051)] = 145744, - [SMALL_STATE(4052)] = 145762, - [SMALL_STATE(4053)] = 145782, - [SMALL_STATE(4054)] = 145802, - [SMALL_STATE(4055)] = 145818, - [SMALL_STATE(4056)] = 145836, - [SMALL_STATE(4057)] = 145852, - [SMALL_STATE(4058)] = 145864, - [SMALL_STATE(4059)] = 145884, - [SMALL_STATE(4060)] = 145896, - [SMALL_STATE(4061)] = 145912, - [SMALL_STATE(4062)] = 145928, - [SMALL_STATE(4063)] = 145944, - [SMALL_STATE(4064)] = 145960, - [SMALL_STATE(4065)] = 145972, - [SMALL_STATE(4066)] = 145984, - [SMALL_STATE(4067)] = 146004, - [SMALL_STATE(4068)] = 146016, - [SMALL_STATE(4069)] = 146036, - [SMALL_STATE(4070)] = 146048, - [SMALL_STATE(4071)] = 146060, - [SMALL_STATE(4072)] = 146072, - [SMALL_STATE(4073)] = 146092, - [SMALL_STATE(4074)] = 146104, - [SMALL_STATE(4075)] = 146116, - [SMALL_STATE(4076)] = 146128, - [SMALL_STATE(4077)] = 146140, - [SMALL_STATE(4078)] = 146156, - [SMALL_STATE(4079)] = 146172, - [SMALL_STATE(4080)] = 146188, - [SMALL_STATE(4081)] = 146200, - [SMALL_STATE(4082)] = 146212, - [SMALL_STATE(4083)] = 146224, - [SMALL_STATE(4084)] = 146236, - [SMALL_STATE(4085)] = 146248, - [SMALL_STATE(4086)] = 146268, - [SMALL_STATE(4087)] = 146284, - [SMALL_STATE(4088)] = 146300, - [SMALL_STATE(4089)] = 146320, - [SMALL_STATE(4090)] = 146340, - [SMALL_STATE(4091)] = 146356, - [SMALL_STATE(4092)] = 146376, - [SMALL_STATE(4093)] = 146396, - [SMALL_STATE(4094)] = 146412, - [SMALL_STATE(4095)] = 146432, - [SMALL_STATE(4096)] = 146448, - [SMALL_STATE(4097)] = 146468, - [SMALL_STATE(4098)] = 146484, - [SMALL_STATE(4099)] = 146504, - [SMALL_STATE(4100)] = 146520, - [SMALL_STATE(4101)] = 146540, - [SMALL_STATE(4102)] = 146552, - [SMALL_STATE(4103)] = 146568, - [SMALL_STATE(4104)] = 146580, - [SMALL_STATE(4105)] = 146596, - [SMALL_STATE(4106)] = 146614, - [SMALL_STATE(4107)] = 146630, - [SMALL_STATE(4108)] = 146644, - [SMALL_STATE(4109)] = 146660, - [SMALL_STATE(4110)] = 146676, - [SMALL_STATE(4111)] = 146692, - [SMALL_STATE(4112)] = 146708, - [SMALL_STATE(4113)] = 146726, - [SMALL_STATE(4114)] = 146742, - [SMALL_STATE(4115)] = 146762, - [SMALL_STATE(4116)] = 146782, - [SMALL_STATE(4117)] = 146802, - [SMALL_STATE(4118)] = 146822, - [SMALL_STATE(4119)] = 146838, - [SMALL_STATE(4120)] = 146858, - [SMALL_STATE(4121)] = 146870, - [SMALL_STATE(4122)] = 146882, - [SMALL_STATE(4123)] = 146898, - [SMALL_STATE(4124)] = 146914, - [SMALL_STATE(4125)] = 146930, - [SMALL_STATE(4126)] = 146950, - [SMALL_STATE(4127)] = 146970, - [SMALL_STATE(4128)] = 146986, - [SMALL_STATE(4129)] = 147002, - [SMALL_STATE(4130)] = 147018, - [SMALL_STATE(4131)] = 147036, - [SMALL_STATE(4132)] = 147052, - [SMALL_STATE(4133)] = 147072, - [SMALL_STATE(4134)] = 147092, - [SMALL_STATE(4135)] = 147108, - [SMALL_STATE(4136)] = 147128, - [SMALL_STATE(4137)] = 147144, - [SMALL_STATE(4138)] = 147162, - [SMALL_STATE(4139)] = 147182, - [SMALL_STATE(4140)] = 147200, - [SMALL_STATE(4141)] = 147216, - [SMALL_STATE(4142)] = 147228, - [SMALL_STATE(4143)] = 147240, - [SMALL_STATE(4144)] = 147260, - [SMALL_STATE(4145)] = 147272, - [SMALL_STATE(4146)] = 147284, - [SMALL_STATE(4147)] = 147296, - [SMALL_STATE(4148)] = 147308, - [SMALL_STATE(4149)] = 147320, - [SMALL_STATE(4150)] = 147332, - [SMALL_STATE(4151)] = 147344, - [SMALL_STATE(4152)] = 147356, - [SMALL_STATE(4153)] = 147368, - [SMALL_STATE(4154)] = 147384, - [SMALL_STATE(4155)] = 147400, - [SMALL_STATE(4156)] = 147412, - [SMALL_STATE(4157)] = 147428, - [SMALL_STATE(4158)] = 147444, - [SMALL_STATE(4159)] = 147456, - [SMALL_STATE(4160)] = 147474, - [SMALL_STATE(4161)] = 147490, - [SMALL_STATE(4162)] = 147508, - [SMALL_STATE(4163)] = 147528, - [SMALL_STATE(4164)] = 147540, - [SMALL_STATE(4165)] = 147556, - [SMALL_STATE(4166)] = 147576, - [SMALL_STATE(4167)] = 147592, - [SMALL_STATE(4168)] = 147612, - [SMALL_STATE(4169)] = 147632, - [SMALL_STATE(4170)] = 147652, - [SMALL_STATE(4171)] = 147672, - [SMALL_STATE(4172)] = 147688, - [SMALL_STATE(4173)] = 147708, - [SMALL_STATE(4174)] = 147728, - [SMALL_STATE(4175)] = 147744, - [SMALL_STATE(4176)] = 147764, - [SMALL_STATE(4177)] = 147780, - [SMALL_STATE(4178)] = 147792, - [SMALL_STATE(4179)] = 147812, - [SMALL_STATE(4180)] = 147824, - [SMALL_STATE(4181)] = 147844, - [SMALL_STATE(4182)] = 147864, - [SMALL_STATE(4183)] = 147880, - [SMALL_STATE(4184)] = 147896, - [SMALL_STATE(4185)] = 147914, - [SMALL_STATE(4186)] = 147926, - [SMALL_STATE(4187)] = 147942, - [SMALL_STATE(4188)] = 147954, - [SMALL_STATE(4189)] = 147970, - [SMALL_STATE(4190)] = 147990, - [SMALL_STATE(4191)] = 148002, - [SMALL_STATE(4192)] = 148022, - [SMALL_STATE(4193)] = 148042, - [SMALL_STATE(4194)] = 148058, - [SMALL_STATE(4195)] = 148074, - [SMALL_STATE(4196)] = 148090, - [SMALL_STATE(4197)] = 148106, - [SMALL_STATE(4198)] = 148124, - [SMALL_STATE(4199)] = 148140, - [SMALL_STATE(4200)] = 148156, - [SMALL_STATE(4201)] = 148172, - [SMALL_STATE(4202)] = 148184, - [SMALL_STATE(4203)] = 148204, - [SMALL_STATE(4204)] = 148220, - [SMALL_STATE(4205)] = 148236, - [SMALL_STATE(4206)] = 148252, - [SMALL_STATE(4207)] = 148268, - [SMALL_STATE(4208)] = 148284, - [SMALL_STATE(4209)] = 148300, - [SMALL_STATE(4210)] = 148316, - [SMALL_STATE(4211)] = 148332, - [SMALL_STATE(4212)] = 148344, - [SMALL_STATE(4213)] = 148360, - [SMALL_STATE(4214)] = 148376, - [SMALL_STATE(4215)] = 148392, - [SMALL_STATE(4216)] = 148408, - [SMALL_STATE(4217)] = 148424, - [SMALL_STATE(4218)] = 148440, - [SMALL_STATE(4219)] = 148456, - [SMALL_STATE(4220)] = 148472, - [SMALL_STATE(4221)] = 148488, - [SMALL_STATE(4222)] = 148504, - [SMALL_STATE(4223)] = 148520, - [SMALL_STATE(4224)] = 148536, - [SMALL_STATE(4225)] = 148552, - [SMALL_STATE(4226)] = 148568, - [SMALL_STATE(4227)] = 148584, - [SMALL_STATE(4228)] = 148600, - [SMALL_STATE(4229)] = 148616, - [SMALL_STATE(4230)] = 148632, - [SMALL_STATE(4231)] = 148648, - [SMALL_STATE(4232)] = 148668, - [SMALL_STATE(4233)] = 148684, - [SMALL_STATE(4234)] = 148700, - [SMALL_STATE(4235)] = 148716, - [SMALL_STATE(4236)] = 148732, - [SMALL_STATE(4237)] = 148748, - [SMALL_STATE(4238)] = 148764, - [SMALL_STATE(4239)] = 148780, - [SMALL_STATE(4240)] = 148796, - [SMALL_STATE(4241)] = 148812, - [SMALL_STATE(4242)] = 148828, - [SMALL_STATE(4243)] = 148844, - [SMALL_STATE(4244)] = 148856, - [SMALL_STATE(4245)] = 148876, - [SMALL_STATE(4246)] = 148888, - [SMALL_STATE(4247)] = 148900, - [SMALL_STATE(4248)] = 148920, - [SMALL_STATE(4249)] = 148932, - [SMALL_STATE(4250)] = 148944, - [SMALL_STATE(4251)] = 148956, - [SMALL_STATE(4252)] = 148968, - [SMALL_STATE(4253)] = 148986, - [SMALL_STATE(4254)] = 148998, - [SMALL_STATE(4255)] = 149010, - [SMALL_STATE(4256)] = 149022, - [SMALL_STATE(4257)] = 149040, - [SMALL_STATE(4258)] = 149060, - [SMALL_STATE(4259)] = 149080, - [SMALL_STATE(4260)] = 149100, - [SMALL_STATE(4261)] = 149116, - [SMALL_STATE(4262)] = 149134, - [SMALL_STATE(4263)] = 149154, - [SMALL_STATE(4264)] = 149170, - [SMALL_STATE(4265)] = 149186, - [SMALL_STATE(4266)] = 149206, - [SMALL_STATE(4267)] = 149224, - [SMALL_STATE(4268)] = 149240, - [SMALL_STATE(4269)] = 149252, - [SMALL_STATE(4270)] = 149264, - [SMALL_STATE(4271)] = 149276, - [SMALL_STATE(4272)] = 149296, - [SMALL_STATE(4273)] = 149312, - [SMALL_STATE(4274)] = 149328, - [SMALL_STATE(4275)] = 149340, - [SMALL_STATE(4276)] = 149352, - [SMALL_STATE(4277)] = 149368, - [SMALL_STATE(4278)] = 149388, - [SMALL_STATE(4279)] = 149404, - [SMALL_STATE(4280)] = 149416, - [SMALL_STATE(4281)] = 149428, - [SMALL_STATE(4282)] = 149440, - [SMALL_STATE(4283)] = 149460, - [SMALL_STATE(4284)] = 149472, - [SMALL_STATE(4285)] = 149488, - [SMALL_STATE(4286)] = 149504, - [SMALL_STATE(4287)] = 149516, - [SMALL_STATE(4288)] = 149528, - [SMALL_STATE(4289)] = 149540, - [SMALL_STATE(4290)] = 149556, - [SMALL_STATE(4291)] = 149572, - [SMALL_STATE(4292)] = 149584, - [SMALL_STATE(4293)] = 149600, - [SMALL_STATE(4294)] = 149612, - [SMALL_STATE(4295)] = 149624, - [SMALL_STATE(4296)] = 149636, - [SMALL_STATE(4297)] = 149652, - [SMALL_STATE(4298)] = 149668, - [SMALL_STATE(4299)] = 149684, - [SMALL_STATE(4300)] = 149700, - [SMALL_STATE(4301)] = 149716, - [SMALL_STATE(4302)] = 149736, - [SMALL_STATE(4303)] = 149752, - [SMALL_STATE(4304)] = 149768, - [SMALL_STATE(4305)] = 149784, - [SMALL_STATE(4306)] = 149804, - [SMALL_STATE(4307)] = 149820, - [SMALL_STATE(4308)] = 149832, - [SMALL_STATE(4309)] = 149848, - [SMALL_STATE(4310)] = 149864, - [SMALL_STATE(4311)] = 149882, - [SMALL_STATE(4312)] = 149894, - [SMALL_STATE(4313)] = 149906, - [SMALL_STATE(4314)] = 149918, - [SMALL_STATE(4315)] = 149934, - [SMALL_STATE(4316)] = 149950, - [SMALL_STATE(4317)] = 149966, - [SMALL_STATE(4318)] = 149982, - [SMALL_STATE(4319)] = 149998, - [SMALL_STATE(4320)] = 150014, - [SMALL_STATE(4321)] = 150030, - [SMALL_STATE(4322)] = 150046, - [SMALL_STATE(4323)] = 150062, - [SMALL_STATE(4324)] = 150078, - [SMALL_STATE(4325)] = 150094, - [SMALL_STATE(4326)] = 150110, - [SMALL_STATE(4327)] = 150126, - [SMALL_STATE(4328)] = 150142, - [SMALL_STATE(4329)] = 150154, - [SMALL_STATE(4330)] = 150166, - [SMALL_STATE(4331)] = 150178, - [SMALL_STATE(4332)] = 150194, - [SMALL_STATE(4333)] = 150210, - [SMALL_STATE(4334)] = 150226, - [SMALL_STATE(4335)] = 150242, - [SMALL_STATE(4336)] = 150262, - [SMALL_STATE(4337)] = 150278, - [SMALL_STATE(4338)] = 150298, - [SMALL_STATE(4339)] = 150314, - [SMALL_STATE(4340)] = 150332, - [SMALL_STATE(4341)] = 150348, - [SMALL_STATE(4342)] = 150364, - [SMALL_STATE(4343)] = 150380, - [SMALL_STATE(4344)] = 150396, - [SMALL_STATE(4345)] = 150412, - [SMALL_STATE(4346)] = 150428, - [SMALL_STATE(4347)] = 150444, - [SMALL_STATE(4348)] = 150464, - [SMALL_STATE(4349)] = 150480, - [SMALL_STATE(4350)] = 150496, - [SMALL_STATE(4351)] = 150512, - [SMALL_STATE(4352)] = 150528, - [SMALL_STATE(4353)] = 150544, - [SMALL_STATE(4354)] = 150564, - [SMALL_STATE(4355)] = 150581, - [SMALL_STATE(4356)] = 150598, - [SMALL_STATE(4357)] = 150615, - [SMALL_STATE(4358)] = 150632, - [SMALL_STATE(4359)] = 150649, - [SMALL_STATE(4360)] = 150666, - [SMALL_STATE(4361)] = 150683, - [SMALL_STATE(4362)] = 150700, - [SMALL_STATE(4363)] = 150717, - [SMALL_STATE(4364)] = 150728, - [SMALL_STATE(4365)] = 150745, - [SMALL_STATE(4366)] = 150760, - [SMALL_STATE(4367)] = 150777, - [SMALL_STATE(4368)] = 150794, - [SMALL_STATE(4369)] = 150811, - [SMALL_STATE(4370)] = 150828, - [SMALL_STATE(4371)] = 150845, - [SMALL_STATE(4372)] = 150856, - [SMALL_STATE(4373)] = 150873, - [SMALL_STATE(4374)] = 150888, - [SMALL_STATE(4375)] = 150905, - [SMALL_STATE(4376)] = 150922, - [SMALL_STATE(4377)] = 150937, - [SMALL_STATE(4378)] = 150954, - [SMALL_STATE(4379)] = 150971, - [SMALL_STATE(4380)] = 150988, - [SMALL_STATE(4381)] = 151005, - [SMALL_STATE(4382)] = 151020, - [SMALL_STATE(4383)] = 151037, - [SMALL_STATE(4384)] = 151054, - [SMALL_STATE(4385)] = 151071, - [SMALL_STATE(4386)] = 151088, - [SMALL_STATE(4387)] = 151105, - [SMALL_STATE(4388)] = 151122, - [SMALL_STATE(4389)] = 151139, - [SMALL_STATE(4390)] = 151156, - [SMALL_STATE(4391)] = 151173, - [SMALL_STATE(4392)] = 151188, - [SMALL_STATE(4393)] = 151199, - [SMALL_STATE(4394)] = 151216, - [SMALL_STATE(4395)] = 151233, - [SMALL_STATE(4396)] = 151250, - [SMALL_STATE(4397)] = 151267, - [SMALL_STATE(4398)] = 151284, - [SMALL_STATE(4399)] = 151301, - [SMALL_STATE(4400)] = 151318, - [SMALL_STATE(4401)] = 151335, - [SMALL_STATE(4402)] = 151352, - [SMALL_STATE(4403)] = 151369, - [SMALL_STATE(4404)] = 151386, - [SMALL_STATE(4405)] = 151399, - [SMALL_STATE(4406)] = 151416, - [SMALL_STATE(4407)] = 151431, - [SMALL_STATE(4408)] = 151446, - [SMALL_STATE(4409)] = 151461, - [SMALL_STATE(4410)] = 151478, - [SMALL_STATE(4411)] = 151495, - [SMALL_STATE(4412)] = 151512, - [SMALL_STATE(4413)] = 151529, - [SMALL_STATE(4414)] = 151544, - [SMALL_STATE(4415)] = 151561, - [SMALL_STATE(4416)] = 151578, - [SMALL_STATE(4417)] = 151595, - [SMALL_STATE(4418)] = 151612, - [SMALL_STATE(4419)] = 151629, - [SMALL_STATE(4420)] = 151646, - [SMALL_STATE(4421)] = 151663, - [SMALL_STATE(4422)] = 151680, - [SMALL_STATE(4423)] = 151697, - [SMALL_STATE(4424)] = 151710, - [SMALL_STATE(4425)] = 151725, - [SMALL_STATE(4426)] = 151740, - [SMALL_STATE(4427)] = 151757, - [SMALL_STATE(4428)] = 151772, - [SMALL_STATE(4429)] = 151787, - [SMALL_STATE(4430)] = 151802, - [SMALL_STATE(4431)] = 151819, - [SMALL_STATE(4432)] = 151836, - [SMALL_STATE(4433)] = 151853, - [SMALL_STATE(4434)] = 151870, - [SMALL_STATE(4435)] = 151883, - [SMALL_STATE(4436)] = 151900, - [SMALL_STATE(4437)] = 151915, - [SMALL_STATE(4438)] = 151930, - [SMALL_STATE(4439)] = 151947, - [SMALL_STATE(4440)] = 151964, - [SMALL_STATE(4441)] = 151979, - [SMALL_STATE(4442)] = 151994, - [SMALL_STATE(4443)] = 152009, - [SMALL_STATE(4444)] = 152026, - [SMALL_STATE(4445)] = 152043, - [SMALL_STATE(4446)] = 152056, - [SMALL_STATE(4447)] = 152073, - [SMALL_STATE(4448)] = 152090, - [SMALL_STATE(4449)] = 152107, - [SMALL_STATE(4450)] = 152124, - [SMALL_STATE(4451)] = 152139, - [SMALL_STATE(4452)] = 152156, - [SMALL_STATE(4453)] = 152173, - [SMALL_STATE(4454)] = 152190, - [SMALL_STATE(4455)] = 152207, - [SMALL_STATE(4456)] = 152224, - [SMALL_STATE(4457)] = 152241, - [SMALL_STATE(4458)] = 152256, - [SMALL_STATE(4459)] = 152273, - [SMALL_STATE(4460)] = 152290, - [SMALL_STATE(4461)] = 152307, - [SMALL_STATE(4462)] = 152324, - [SMALL_STATE(4463)] = 152341, - [SMALL_STATE(4464)] = 152358, - [SMALL_STATE(4465)] = 152375, - [SMALL_STATE(4466)] = 152388, - [SMALL_STATE(4467)] = 152405, - [SMALL_STATE(4468)] = 152422, - [SMALL_STATE(4469)] = 152437, - [SMALL_STATE(4470)] = 152452, - [SMALL_STATE(4471)] = 152469, - [SMALL_STATE(4472)] = 152486, - [SMALL_STATE(4473)] = 152501, - [SMALL_STATE(4474)] = 152518, - [SMALL_STATE(4475)] = 152535, - [SMALL_STATE(4476)] = 152552, - [SMALL_STATE(4477)] = 152567, - [SMALL_STATE(4478)] = 152584, - [SMALL_STATE(4479)] = 152601, - [SMALL_STATE(4480)] = 152612, - [SMALL_STATE(4481)] = 152627, - [SMALL_STATE(4482)] = 152642, - [SMALL_STATE(4483)] = 152657, - [SMALL_STATE(4484)] = 152674, - [SMALL_STATE(4485)] = 152689, - [SMALL_STATE(4486)] = 152706, - [SMALL_STATE(4487)] = 152723, - [SMALL_STATE(4488)] = 152740, - [SMALL_STATE(4489)] = 152757, - [SMALL_STATE(4490)] = 152774, - [SMALL_STATE(4491)] = 152784, - [SMALL_STATE(4492)] = 152794, - [SMALL_STATE(4493)] = 152804, - [SMALL_STATE(4494)] = 152814, - [SMALL_STATE(4495)] = 152824, - [SMALL_STATE(4496)] = 152834, - [SMALL_STATE(4497)] = 152844, - [SMALL_STATE(4498)] = 152854, - [SMALL_STATE(4499)] = 152864, - [SMALL_STATE(4500)] = 152874, - [SMALL_STATE(4501)] = 152888, - [SMALL_STATE(4502)] = 152898, - [SMALL_STATE(4503)] = 152912, - [SMALL_STATE(4504)] = 152922, - [SMALL_STATE(4505)] = 152932, - [SMALL_STATE(4506)] = 152942, - [SMALL_STATE(4507)] = 152954, - [SMALL_STATE(4508)] = 152964, - [SMALL_STATE(4509)] = 152978, - [SMALL_STATE(4510)] = 152988, - [SMALL_STATE(4511)] = 153002, - [SMALL_STATE(4512)] = 153016, - [SMALL_STATE(4513)] = 153030, - [SMALL_STATE(4514)] = 153044, - [SMALL_STATE(4515)] = 153054, - [SMALL_STATE(4516)] = 153068, - [SMALL_STATE(4517)] = 153078, - [SMALL_STATE(4518)] = 153088, - [SMALL_STATE(4519)] = 153102, - [SMALL_STATE(4520)] = 153112, - [SMALL_STATE(4521)] = 153126, - [SMALL_STATE(4522)] = 153140, - [SMALL_STATE(4523)] = 153150, - [SMALL_STATE(4524)] = 153164, - [SMALL_STATE(4525)] = 153174, - [SMALL_STATE(4526)] = 153188, - [SMALL_STATE(4527)] = 153202, - [SMALL_STATE(4528)] = 153216, - [SMALL_STATE(4529)] = 153230, - [SMALL_STATE(4530)] = 153240, - [SMALL_STATE(4531)] = 153254, - [SMALL_STATE(4532)] = 153264, - [SMALL_STATE(4533)] = 153274, - [SMALL_STATE(4534)] = 153288, - [SMALL_STATE(4535)] = 153298, - [SMALL_STATE(4536)] = 153312, - [SMALL_STATE(4537)] = 153322, - [SMALL_STATE(4538)] = 153332, - [SMALL_STATE(4539)] = 153342, - [SMALL_STATE(4540)] = 153352, - [SMALL_STATE(4541)] = 153362, - [SMALL_STATE(4542)] = 153376, - [SMALL_STATE(4543)] = 153386, - [SMALL_STATE(4544)] = 153396, - [SMALL_STATE(4545)] = 153412, - [SMALL_STATE(4546)] = 153422, - [SMALL_STATE(4547)] = 153432, - [SMALL_STATE(4548)] = 153442, - [SMALL_STATE(4549)] = 153452, - [SMALL_STATE(4550)] = 153462, - [SMALL_STATE(4551)] = 153472, - [SMALL_STATE(4552)] = 153486, - [SMALL_STATE(4553)] = 153496, - [SMALL_STATE(4554)] = 153510, - [SMALL_STATE(4555)] = 153520, - [SMALL_STATE(4556)] = 153530, - [SMALL_STATE(4557)] = 153540, - [SMALL_STATE(4558)] = 153550, - [SMALL_STATE(4559)] = 153562, - [SMALL_STATE(4560)] = 153572, - [SMALL_STATE(4561)] = 153582, - [SMALL_STATE(4562)] = 153592, - [SMALL_STATE(4563)] = 153602, - [SMALL_STATE(4564)] = 153614, - [SMALL_STATE(4565)] = 153624, - [SMALL_STATE(4566)] = 153638, - [SMALL_STATE(4567)] = 153648, - [SMALL_STATE(4568)] = 153658, - [SMALL_STATE(4569)] = 153672, - [SMALL_STATE(4570)] = 153686, - [SMALL_STATE(4571)] = 153698, - [SMALL_STATE(4572)] = 153708, - [SMALL_STATE(4573)] = 153718, - [SMALL_STATE(4574)] = 153728, - [SMALL_STATE(4575)] = 153738, - [SMALL_STATE(4576)] = 153748, - [SMALL_STATE(4577)] = 153762, - [SMALL_STATE(4578)] = 153772, - [SMALL_STATE(4579)] = 153786, - [SMALL_STATE(4580)] = 153800, - [SMALL_STATE(4581)] = 153810, - [SMALL_STATE(4582)] = 153824, - [SMALL_STATE(4583)] = 153838, - [SMALL_STATE(4584)] = 153848, - [SMALL_STATE(4585)] = 153858, - [SMALL_STATE(4586)] = 153868, - [SMALL_STATE(4587)] = 153878, - [SMALL_STATE(4588)] = 153892, - [SMALL_STATE(4589)] = 153906, - [SMALL_STATE(4590)] = 153920, - [SMALL_STATE(4591)] = 153934, - [SMALL_STATE(4592)] = 153944, - [SMALL_STATE(4593)] = 153958, - [SMALL_STATE(4594)] = 153968, - [SMALL_STATE(4595)] = 153982, - [SMALL_STATE(4596)] = 153992, - [SMALL_STATE(4597)] = 154006, - [SMALL_STATE(4598)] = 154016, - [SMALL_STATE(4599)] = 154026, - [SMALL_STATE(4600)] = 154036, - [SMALL_STATE(4601)] = 154046, - [SMALL_STATE(4602)] = 154056, - [SMALL_STATE(4603)] = 154066, - [SMALL_STATE(4604)] = 154076, - [SMALL_STATE(4605)] = 154086, - [SMALL_STATE(4606)] = 154096, - [SMALL_STATE(4607)] = 154106, - [SMALL_STATE(4608)] = 154116, - [SMALL_STATE(4609)] = 154126, - [SMALL_STATE(4610)] = 154136, - [SMALL_STATE(4611)] = 154146, - [SMALL_STATE(4612)] = 154156, - [SMALL_STATE(4613)] = 154166, - [SMALL_STATE(4614)] = 154176, - [SMALL_STATE(4615)] = 154186, - [SMALL_STATE(4616)] = 154196, - [SMALL_STATE(4617)] = 154206, - [SMALL_STATE(4618)] = 154216, - [SMALL_STATE(4619)] = 154226, - [SMALL_STATE(4620)] = 154236, - [SMALL_STATE(4621)] = 154246, - [SMALL_STATE(4622)] = 154260, - [SMALL_STATE(4623)] = 154274, - [SMALL_STATE(4624)] = 154284, - [SMALL_STATE(4625)] = 154294, - [SMALL_STATE(4626)] = 154304, - [SMALL_STATE(4627)] = 154320, - [SMALL_STATE(4628)] = 154330, - [SMALL_STATE(4629)] = 154340, - [SMALL_STATE(4630)] = 154354, - [SMALL_STATE(4631)] = 154368, - [SMALL_STATE(4632)] = 154382, - [SMALL_STATE(4633)] = 154392, - [SMALL_STATE(4634)] = 154402, - [SMALL_STATE(4635)] = 154412, - [SMALL_STATE(4636)] = 154426, - [SMALL_STATE(4637)] = 154436, - [SMALL_STATE(4638)] = 154446, - [SMALL_STATE(4639)] = 154456, - [SMALL_STATE(4640)] = 154466, - [SMALL_STATE(4641)] = 154478, - [SMALL_STATE(4642)] = 154490, - [SMALL_STATE(4643)] = 154500, - [SMALL_STATE(4644)] = 154510, - [SMALL_STATE(4645)] = 154520, - [SMALL_STATE(4646)] = 154530, - [SMALL_STATE(4647)] = 154544, - [SMALL_STATE(4648)] = 154558, - [SMALL_STATE(4649)] = 154572, - [SMALL_STATE(4650)] = 154582, - [SMALL_STATE(4651)] = 154596, - [SMALL_STATE(4652)] = 154606, - [SMALL_STATE(4653)] = 154616, - [SMALL_STATE(4654)] = 154626, - [SMALL_STATE(4655)] = 154636, - [SMALL_STATE(4656)] = 154646, - [SMALL_STATE(4657)] = 154656, - [SMALL_STATE(4658)] = 154666, - [SMALL_STATE(4659)] = 154676, - [SMALL_STATE(4660)] = 154690, - [SMALL_STATE(4661)] = 154700, - [SMALL_STATE(4662)] = 154710, - [SMALL_STATE(4663)] = 154720, - [SMALL_STATE(4664)] = 154730, - [SMALL_STATE(4665)] = 154740, - [SMALL_STATE(4666)] = 154754, - [SMALL_STATE(4667)] = 154768, - [SMALL_STATE(4668)] = 154778, - [SMALL_STATE(4669)] = 154788, - [SMALL_STATE(4670)] = 154802, - [SMALL_STATE(4671)] = 154814, - [SMALL_STATE(4672)] = 154824, - [SMALL_STATE(4673)] = 154834, - [SMALL_STATE(4674)] = 154844, - [SMALL_STATE(4675)] = 154858, - [SMALL_STATE(4676)] = 154872, - [SMALL_STATE(4677)] = 154882, - [SMALL_STATE(4678)] = 154892, - [SMALL_STATE(4679)] = 154906, - [SMALL_STATE(4680)] = 154916, - [SMALL_STATE(4681)] = 154930, - [SMALL_STATE(4682)] = 154944, - [SMALL_STATE(4683)] = 154954, - [SMALL_STATE(4684)] = 154964, - [SMALL_STATE(4685)] = 154974, - [SMALL_STATE(4686)] = 154988, - [SMALL_STATE(4687)] = 154998, - [SMALL_STATE(4688)] = 155008, - [SMALL_STATE(4689)] = 155018, - [SMALL_STATE(4690)] = 155028, - [SMALL_STATE(4691)] = 155042, - [SMALL_STATE(4692)] = 155056, - [SMALL_STATE(4693)] = 155070, - [SMALL_STATE(4694)] = 155080, - [SMALL_STATE(4695)] = 155090, - [SMALL_STATE(4696)] = 155104, - [SMALL_STATE(4697)] = 155118, - [SMALL_STATE(4698)] = 155128, - [SMALL_STATE(4699)] = 155138, - [SMALL_STATE(4700)] = 155152, - [SMALL_STATE(4701)] = 155162, - [SMALL_STATE(4702)] = 155176, - [SMALL_STATE(4703)] = 155192, - [SMALL_STATE(4704)] = 155202, - [SMALL_STATE(4705)] = 155212, - [SMALL_STATE(4706)] = 155226, - [SMALL_STATE(4707)] = 155240, - [SMALL_STATE(4708)] = 155254, - [SMALL_STATE(4709)] = 155268, - [SMALL_STATE(4710)] = 155282, - [SMALL_STATE(4711)] = 155296, - [SMALL_STATE(4712)] = 155306, - [SMALL_STATE(4713)] = 155320, - [SMALL_STATE(4714)] = 155334, - [SMALL_STATE(4715)] = 155348, - [SMALL_STATE(4716)] = 155358, - [SMALL_STATE(4717)] = 155368, - [SMALL_STATE(4718)] = 155378, - [SMALL_STATE(4719)] = 155388, - [SMALL_STATE(4720)] = 155398, - [SMALL_STATE(4721)] = 155408, - [SMALL_STATE(4722)] = 155418, - [SMALL_STATE(4723)] = 155434, - [SMALL_STATE(4724)] = 155444, - [SMALL_STATE(4725)] = 155454, - [SMALL_STATE(4726)] = 155464, - [SMALL_STATE(4727)] = 155474, - [SMALL_STATE(4728)] = 155484, - [SMALL_STATE(4729)] = 155498, - [SMALL_STATE(4730)] = 155512, - [SMALL_STATE(4731)] = 155522, - [SMALL_STATE(4732)] = 155532, - [SMALL_STATE(4733)] = 155542, - [SMALL_STATE(4734)] = 155552, - [SMALL_STATE(4735)] = 155562, - [SMALL_STATE(4736)] = 155572, - [SMALL_STATE(4737)] = 155582, - [SMALL_STATE(4738)] = 155596, - [SMALL_STATE(4739)] = 155606, - [SMALL_STATE(4740)] = 155620, - [SMALL_STATE(4741)] = 155630, - [SMALL_STATE(4742)] = 155640, - [SMALL_STATE(4743)] = 155650, - [SMALL_STATE(4744)] = 155660, - [SMALL_STATE(4745)] = 155672, - [SMALL_STATE(4746)] = 155682, - [SMALL_STATE(4747)] = 155696, - [SMALL_STATE(4748)] = 155710, - [SMALL_STATE(4749)] = 155724, - [SMALL_STATE(4750)] = 155738, - [SMALL_STATE(4751)] = 155748, - [SMALL_STATE(4752)] = 155758, - [SMALL_STATE(4753)] = 155768, - [SMALL_STATE(4754)] = 155782, - [SMALL_STATE(4755)] = 155796, - [SMALL_STATE(4756)] = 155810, - [SMALL_STATE(4757)] = 155824, - [SMALL_STATE(4758)] = 155834, - [SMALL_STATE(4759)] = 155844, - [SMALL_STATE(4760)] = 155854, - [SMALL_STATE(4761)] = 155868, - [SMALL_STATE(4762)] = 155878, - [SMALL_STATE(4763)] = 155892, - [SMALL_STATE(4764)] = 155902, - [SMALL_STATE(4765)] = 155912, - [SMALL_STATE(4766)] = 155922, - [SMALL_STATE(4767)] = 155932, - [SMALL_STATE(4768)] = 155942, - [SMALL_STATE(4769)] = 155952, - [SMALL_STATE(4770)] = 155962, - [SMALL_STATE(4771)] = 155972, - [SMALL_STATE(4772)] = 155982, - [SMALL_STATE(4773)] = 155992, - [SMALL_STATE(4774)] = 156002, - [SMALL_STATE(4775)] = 156016, - [SMALL_STATE(4776)] = 156026, - [SMALL_STATE(4777)] = 156040, - [SMALL_STATE(4778)] = 156054, - [SMALL_STATE(4779)] = 156064, - [SMALL_STATE(4780)] = 156076, - [SMALL_STATE(4781)] = 156090, - [SMALL_STATE(4782)] = 156104, - [SMALL_STATE(4783)] = 156118, - [SMALL_STATE(4784)] = 156128, - [SMALL_STATE(4785)] = 156138, - [SMALL_STATE(4786)] = 156152, - [SMALL_STATE(4787)] = 156166, - [SMALL_STATE(4788)] = 156176, - [SMALL_STATE(4789)] = 156186, - [SMALL_STATE(4790)] = 156200, - [SMALL_STATE(4791)] = 156210, - [SMALL_STATE(4792)] = 156220, - [SMALL_STATE(4793)] = 156230, - [SMALL_STATE(4794)] = 156244, - [SMALL_STATE(4795)] = 156258, - [SMALL_STATE(4796)] = 156268, - [SMALL_STATE(4797)] = 156282, - [SMALL_STATE(4798)] = 156292, - [SMALL_STATE(4799)] = 156302, - [SMALL_STATE(4800)] = 156312, - [SMALL_STATE(4801)] = 156322, - [SMALL_STATE(4802)] = 156332, - [SMALL_STATE(4803)] = 156342, - [SMALL_STATE(4804)] = 156356, - [SMALL_STATE(4805)] = 156366, - [SMALL_STATE(4806)] = 156376, - [SMALL_STATE(4807)] = 156388, - [SMALL_STATE(4808)] = 156398, - [SMALL_STATE(4809)] = 156408, - [SMALL_STATE(4810)] = 156422, - [SMALL_STATE(4811)] = 156432, - [SMALL_STATE(4812)] = 156442, - [SMALL_STATE(4813)] = 156456, - [SMALL_STATE(4814)] = 156466, - [SMALL_STATE(4815)] = 156480, - [SMALL_STATE(4816)] = 156490, - [SMALL_STATE(4817)] = 156500, - [SMALL_STATE(4818)] = 156510, - [SMALL_STATE(4819)] = 156520, - [SMALL_STATE(4820)] = 156530, - [SMALL_STATE(4821)] = 156540, - [SMALL_STATE(4822)] = 156554, - [SMALL_STATE(4823)] = 156564, - [SMALL_STATE(4824)] = 156578, - [SMALL_STATE(4825)] = 156588, - [SMALL_STATE(4826)] = 156598, - [SMALL_STATE(4827)] = 156608, - [SMALL_STATE(4828)] = 156618, - [SMALL_STATE(4829)] = 156628, - [SMALL_STATE(4830)] = 156642, - [SMALL_STATE(4831)] = 156654, - [SMALL_STATE(4832)] = 156664, - [SMALL_STATE(4833)] = 156674, - [SMALL_STATE(4834)] = 156688, - [SMALL_STATE(4835)] = 156702, - [SMALL_STATE(4836)] = 156712, - [SMALL_STATE(4837)] = 156722, - [SMALL_STATE(4838)] = 156732, - [SMALL_STATE(4839)] = 156742, - [SMALL_STATE(4840)] = 156752, - [SMALL_STATE(4841)] = 156766, - [SMALL_STATE(4842)] = 156778, - [SMALL_STATE(4843)] = 156788, - [SMALL_STATE(4844)] = 156798, - [SMALL_STATE(4845)] = 156808, - [SMALL_STATE(4846)] = 156818, - [SMALL_STATE(4847)] = 156828, - [SMALL_STATE(4848)] = 156842, - [SMALL_STATE(4849)] = 156852, - [SMALL_STATE(4850)] = 156862, - [SMALL_STATE(4851)] = 156872, - [SMALL_STATE(4852)] = 156882, - [SMALL_STATE(4853)] = 156892, - [SMALL_STATE(4854)] = 156902, - [SMALL_STATE(4855)] = 156912, - [SMALL_STATE(4856)] = 156922, - [SMALL_STATE(4857)] = 156932, - [SMALL_STATE(4858)] = 156946, - [SMALL_STATE(4859)] = 156956, - [SMALL_STATE(4860)] = 156966, - [SMALL_STATE(4861)] = 156976, - [SMALL_STATE(4862)] = 156986, - [SMALL_STATE(4863)] = 156996, - [SMALL_STATE(4864)] = 157006, - [SMALL_STATE(4865)] = 157018, - [SMALL_STATE(4866)] = 157028, - [SMALL_STATE(4867)] = 157038, - [SMALL_STATE(4868)] = 157048, - [SMALL_STATE(4869)] = 157058, - [SMALL_STATE(4870)] = 157072, - [SMALL_STATE(4871)] = 157082, - [SMALL_STATE(4872)] = 157092, - [SMALL_STATE(4873)] = 157102, - [SMALL_STATE(4874)] = 157112, - [SMALL_STATE(4875)] = 157126, - [SMALL_STATE(4876)] = 157136, - [SMALL_STATE(4877)] = 157146, - [SMALL_STATE(4878)] = 157156, - [SMALL_STATE(4879)] = 157166, - [SMALL_STATE(4880)] = 157176, - [SMALL_STATE(4881)] = 157190, - [SMALL_STATE(4882)] = 157200, - [SMALL_STATE(4883)] = 157210, - [SMALL_STATE(4884)] = 157220, - [SMALL_STATE(4885)] = 157230, - [SMALL_STATE(4886)] = 157240, - [SMALL_STATE(4887)] = 157250, - [SMALL_STATE(4888)] = 157260, - [SMALL_STATE(4889)] = 157270, - [SMALL_STATE(4890)] = 157280, - [SMALL_STATE(4891)] = 157290, - [SMALL_STATE(4892)] = 157300, - [SMALL_STATE(4893)] = 157316, - [SMALL_STATE(4894)] = 157330, - [SMALL_STATE(4895)] = 157340, - [SMALL_STATE(4896)] = 157350, - [SMALL_STATE(4897)] = 157360, - [SMALL_STATE(4898)] = 157370, - [SMALL_STATE(4899)] = 157380, - [SMALL_STATE(4900)] = 157390, - [SMALL_STATE(4901)] = 157400, - [SMALL_STATE(4902)] = 157410, - [SMALL_STATE(4903)] = 157420, - [SMALL_STATE(4904)] = 157434, - [SMALL_STATE(4905)] = 157444, - [SMALL_STATE(4906)] = 157458, - [SMALL_STATE(4907)] = 157468, - [SMALL_STATE(4908)] = 157478, - [SMALL_STATE(4909)] = 157488, - [SMALL_STATE(4910)] = 157498, - [SMALL_STATE(4911)] = 157510, - [SMALL_STATE(4912)] = 157520, - [SMALL_STATE(4913)] = 157530, - [SMALL_STATE(4914)] = 157544, - [SMALL_STATE(4915)] = 157556, - [SMALL_STATE(4916)] = 157566, - [SMALL_STATE(4917)] = 157576, - [SMALL_STATE(4918)] = 157586, - [SMALL_STATE(4919)] = 157596, - [SMALL_STATE(4920)] = 157610, - [SMALL_STATE(4921)] = 157624, - [SMALL_STATE(4922)] = 157634, - [SMALL_STATE(4923)] = 157644, - [SMALL_STATE(4924)] = 157658, - [SMALL_STATE(4925)] = 157668, - [SMALL_STATE(4926)] = 157682, - [SMALL_STATE(4927)] = 157692, - [SMALL_STATE(4928)] = 157706, - [SMALL_STATE(4929)] = 157716, - [SMALL_STATE(4930)] = 157726, - [SMALL_STATE(4931)] = 157740, - [SMALL_STATE(4932)] = 157750, - [SMALL_STATE(4933)] = 157760, - [SMALL_STATE(4934)] = 157774, - [SMALL_STATE(4935)] = 157788, - [SMALL_STATE(4936)] = 157798, - [SMALL_STATE(4937)] = 157812, - [SMALL_STATE(4938)] = 157826, - [SMALL_STATE(4939)] = 157836, - [SMALL_STATE(4940)] = 157846, - [SMALL_STATE(4941)] = 157860, - [SMALL_STATE(4942)] = 157874, - [SMALL_STATE(4943)] = 157884, - [SMALL_STATE(4944)] = 157894, - [SMALL_STATE(4945)] = 157908, - [SMALL_STATE(4946)] = 157918, - [SMALL_STATE(4947)] = 157928, - [SMALL_STATE(4948)] = 157942, - [SMALL_STATE(4949)] = 157956, - [SMALL_STATE(4950)] = 157970, - [SMALL_STATE(4951)] = 157980, - [SMALL_STATE(4952)] = 157990, - [SMALL_STATE(4953)] = 158000, - [SMALL_STATE(4954)] = 158010, - [SMALL_STATE(4955)] = 158020, - [SMALL_STATE(4956)] = 158030, - [SMALL_STATE(4957)] = 158040, - [SMALL_STATE(4958)] = 158050, - [SMALL_STATE(4959)] = 158060, - [SMALL_STATE(4960)] = 158074, - [SMALL_STATE(4961)] = 158084, - [SMALL_STATE(4962)] = 158094, - [SMALL_STATE(4963)] = 158104, - [SMALL_STATE(4964)] = 158118, - [SMALL_STATE(4965)] = 158128, - [SMALL_STATE(4966)] = 158138, - [SMALL_STATE(4967)] = 158152, - [SMALL_STATE(4968)] = 158162, - [SMALL_STATE(4969)] = 158172, - [SMALL_STATE(4970)] = 158182, - [SMALL_STATE(4971)] = 158196, - [SMALL_STATE(4972)] = 158206, - [SMALL_STATE(4973)] = 158216, - [SMALL_STATE(4974)] = 158230, - [SMALL_STATE(4975)] = 158244, - [SMALL_STATE(4976)] = 158254, - [SMALL_STATE(4977)] = 158264, - [SMALL_STATE(4978)] = 158278, - [SMALL_STATE(4979)] = 158288, - [SMALL_STATE(4980)] = 158298, - [SMALL_STATE(4981)] = 158308, - [SMALL_STATE(4982)] = 158318, - [SMALL_STATE(4983)] = 158328, - [SMALL_STATE(4984)] = 158342, - [SMALL_STATE(4985)] = 158352, - [SMALL_STATE(4986)] = 158362, - [SMALL_STATE(4987)] = 158372, - [SMALL_STATE(4988)] = 158382, - [SMALL_STATE(4989)] = 158396, - [SMALL_STATE(4990)] = 158410, - [SMALL_STATE(4991)] = 158420, - [SMALL_STATE(4992)] = 158430, - [SMALL_STATE(4993)] = 158440, - [SMALL_STATE(4994)] = 158450, - [SMALL_STATE(4995)] = 158460, - [SMALL_STATE(4996)] = 158474, - [SMALL_STATE(4997)] = 158484, - [SMALL_STATE(4998)] = 158494, - [SMALL_STATE(4999)] = 158504, - [SMALL_STATE(5000)] = 158514, - [SMALL_STATE(5001)] = 158524, - [SMALL_STATE(5002)] = 158534, - [SMALL_STATE(5003)] = 158548, - [SMALL_STATE(5004)] = 158562, - [SMALL_STATE(5005)] = 158572, - [SMALL_STATE(5006)] = 158586, - [SMALL_STATE(5007)] = 158600, - [SMALL_STATE(5008)] = 158610, - [SMALL_STATE(5009)] = 158624, - [SMALL_STATE(5010)] = 158634, - [SMALL_STATE(5011)] = 158644, - [SMALL_STATE(5012)] = 158654, - [SMALL_STATE(5013)] = 158664, - [SMALL_STATE(5014)] = 158674, - [SMALL_STATE(5015)] = 158684, - [SMALL_STATE(5016)] = 158694, - [SMALL_STATE(5017)] = 158704, - [SMALL_STATE(5018)] = 158714, - [SMALL_STATE(5019)] = 158724, - [SMALL_STATE(5020)] = 158734, - [SMALL_STATE(5021)] = 158744, - [SMALL_STATE(5022)] = 158754, - [SMALL_STATE(5023)] = 158768, - [SMALL_STATE(5024)] = 158778, - [SMALL_STATE(5025)] = 158788, - [SMALL_STATE(5026)] = 158798, - [SMALL_STATE(5027)] = 158808, - [SMALL_STATE(5028)] = 158818, - [SMALL_STATE(5029)] = 158832, - [SMALL_STATE(5030)] = 158842, - [SMALL_STATE(5031)] = 158852, - [SMALL_STATE(5032)] = 158862, - [SMALL_STATE(5033)] = 158876, - [SMALL_STATE(5034)] = 158886, - [SMALL_STATE(5035)] = 158896, - [SMALL_STATE(5036)] = 158906, - [SMALL_STATE(5037)] = 158916, - [SMALL_STATE(5038)] = 158926, - [SMALL_STATE(5039)] = 158936, - [SMALL_STATE(5040)] = 158946, - [SMALL_STATE(5041)] = 158956, - [SMALL_STATE(5042)] = 158966, - [SMALL_STATE(5043)] = 158976, - [SMALL_STATE(5044)] = 158986, - [SMALL_STATE(5045)] = 158996, - [SMALL_STATE(5046)] = 159006, - [SMALL_STATE(5047)] = 159016, - [SMALL_STATE(5048)] = 159030, - [SMALL_STATE(5049)] = 159042, - [SMALL_STATE(5050)] = 159054, - [SMALL_STATE(5051)] = 159066, - [SMALL_STATE(5052)] = 159076, - [SMALL_STATE(5053)] = 159086, - [SMALL_STATE(5054)] = 159096, - [SMALL_STATE(5055)] = 159106, - [SMALL_STATE(5056)] = 159116, - [SMALL_STATE(5057)] = 159126, - [SMALL_STATE(5058)] = 159136, - [SMALL_STATE(5059)] = 159146, - [SMALL_STATE(5060)] = 159156, - [SMALL_STATE(5061)] = 159166, - [SMALL_STATE(5062)] = 159178, - [SMALL_STATE(5063)] = 159192, - [SMALL_STATE(5064)] = 159206, - [SMALL_STATE(5065)] = 159216, - [SMALL_STATE(5066)] = 159230, - [SMALL_STATE(5067)] = 159240, - [SMALL_STATE(5068)] = 159252, - [SMALL_STATE(5069)] = 159262, - [SMALL_STATE(5070)] = 159274, - [SMALL_STATE(5071)] = 159286, - [SMALL_STATE(5072)] = 159296, - [SMALL_STATE(5073)] = 159306, - [SMALL_STATE(5074)] = 159316, - [SMALL_STATE(5075)] = 159326, - [SMALL_STATE(5076)] = 159336, - [SMALL_STATE(5077)] = 159346, - [SMALL_STATE(5078)] = 159356, - [SMALL_STATE(5079)] = 159370, - [SMALL_STATE(5080)] = 159380, - [SMALL_STATE(5081)] = 159392, - [SMALL_STATE(5082)] = 159402, - [SMALL_STATE(5083)] = 159412, - [SMALL_STATE(5084)] = 159422, - [SMALL_STATE(5085)] = 159432, - [SMALL_STATE(5086)] = 159442, - [SMALL_STATE(5087)] = 159452, - [SMALL_STATE(5088)] = 159462, - [SMALL_STATE(5089)] = 159472, - [SMALL_STATE(5090)] = 159482, - [SMALL_STATE(5091)] = 159492, - [SMALL_STATE(5092)] = 159502, - [SMALL_STATE(5093)] = 159512, - [SMALL_STATE(5094)] = 159526, - [SMALL_STATE(5095)] = 159536, - [SMALL_STATE(5096)] = 159546, - [SMALL_STATE(5097)] = 159556, - [SMALL_STATE(5098)] = 159566, - [SMALL_STATE(5099)] = 159576, - [SMALL_STATE(5100)] = 159586, - [SMALL_STATE(5101)] = 159596, - [SMALL_STATE(5102)] = 159606, - [SMALL_STATE(5103)] = 159616, - [SMALL_STATE(5104)] = 159627, - [SMALL_STATE(5105)] = 159638, - [SMALL_STATE(5106)] = 159649, - [SMALL_STATE(5107)] = 159658, - [SMALL_STATE(5108)] = 159669, - [SMALL_STATE(5109)] = 159680, - [SMALL_STATE(5110)] = 159691, - [SMALL_STATE(5111)] = 159700, - [SMALL_STATE(5112)] = 159711, - [SMALL_STATE(5113)] = 159720, - [SMALL_STATE(5114)] = 159729, - [SMALL_STATE(5115)] = 159740, - [SMALL_STATE(5116)] = 159749, - [SMALL_STATE(5117)] = 159760, - [SMALL_STATE(5118)] = 159769, - [SMALL_STATE(5119)] = 159780, - [SMALL_STATE(5120)] = 159791, - [SMALL_STATE(5121)] = 159802, - [SMALL_STATE(5122)] = 159813, - [SMALL_STATE(5123)] = 159824, - [SMALL_STATE(5124)] = 159835, - [SMALL_STATE(5125)] = 159844, - [SMALL_STATE(5126)] = 159855, - [SMALL_STATE(5127)] = 159864, - [SMALL_STATE(5128)] = 159875, - [SMALL_STATE(5129)] = 159886, - [SMALL_STATE(5130)] = 159897, - [SMALL_STATE(5131)] = 159908, - [SMALL_STATE(5132)] = 159919, - [SMALL_STATE(5133)] = 159930, - [SMALL_STATE(5134)] = 159941, - [SMALL_STATE(5135)] = 159952, - [SMALL_STATE(5136)] = 159963, - [SMALL_STATE(5137)] = 159974, - [SMALL_STATE(5138)] = 159985, - [SMALL_STATE(5139)] = 159994, - [SMALL_STATE(5140)] = 160005, - [SMALL_STATE(5141)] = 160016, - [SMALL_STATE(5142)] = 160025, - [SMALL_STATE(5143)] = 160036, - [SMALL_STATE(5144)] = 160047, - [SMALL_STATE(5145)] = 160058, - [SMALL_STATE(5146)] = 160069, - [SMALL_STATE(5147)] = 160080, - [SMALL_STATE(5148)] = 160091, - [SMALL_STATE(5149)] = 160102, - [SMALL_STATE(5150)] = 160113, - [SMALL_STATE(5151)] = 160124, - [SMALL_STATE(5152)] = 160133, - [SMALL_STATE(5153)] = 160144, - [SMALL_STATE(5154)] = 160155, - [SMALL_STATE(5155)] = 160166, - [SMALL_STATE(5156)] = 160177, - [SMALL_STATE(5157)] = 160188, - [SMALL_STATE(5158)] = 160199, - [SMALL_STATE(5159)] = 160208, - [SMALL_STATE(5160)] = 160219, - [SMALL_STATE(5161)] = 160230, - [SMALL_STATE(5162)] = 160241, - [SMALL_STATE(5163)] = 160252, - [SMALL_STATE(5164)] = 160263, - [SMALL_STATE(5165)] = 160274, - [SMALL_STATE(5166)] = 160283, - [SMALL_STATE(5167)] = 160294, - [SMALL_STATE(5168)] = 160305, - [SMALL_STATE(5169)] = 160314, - [SMALL_STATE(5170)] = 160325, - [SMALL_STATE(5171)] = 160336, - [SMALL_STATE(5172)] = 160345, - [SMALL_STATE(5173)] = 160356, - [SMALL_STATE(5174)] = 160365, - [SMALL_STATE(5175)] = 160376, - [SMALL_STATE(5176)] = 160387, - [SMALL_STATE(5177)] = 160398, - [SMALL_STATE(5178)] = 160409, - [SMALL_STATE(5179)] = 160420, - [SMALL_STATE(5180)] = 160431, - [SMALL_STATE(5181)] = 160440, - [SMALL_STATE(5182)] = 160451, - [SMALL_STATE(5183)] = 160462, - [SMALL_STATE(5184)] = 160473, - [SMALL_STATE(5185)] = 160484, - [SMALL_STATE(5186)] = 160495, - [SMALL_STATE(5187)] = 160504, - [SMALL_STATE(5188)] = 160515, - [SMALL_STATE(5189)] = 160526, - [SMALL_STATE(5190)] = 160537, - [SMALL_STATE(5191)] = 160548, - [SMALL_STATE(5192)] = 160559, - [SMALL_STATE(5193)] = 160568, - [SMALL_STATE(5194)] = 160579, - [SMALL_STATE(5195)] = 160590, - [SMALL_STATE(5196)] = 160599, - [SMALL_STATE(5197)] = 160608, - [SMALL_STATE(5198)] = 160619, - [SMALL_STATE(5199)] = 160630, - [SMALL_STATE(5200)] = 160641, - [SMALL_STATE(5201)] = 160652, - [SMALL_STATE(5202)] = 160663, - [SMALL_STATE(5203)] = 160672, - [SMALL_STATE(5204)] = 160683, - [SMALL_STATE(5205)] = 160694, - [SMALL_STATE(5206)] = 160705, - [SMALL_STATE(5207)] = 160716, - [SMALL_STATE(5208)] = 160725, - [SMALL_STATE(5209)] = 160736, - [SMALL_STATE(5210)] = 160747, - [SMALL_STATE(5211)] = 160758, - [SMALL_STATE(5212)] = 160769, - [SMALL_STATE(5213)] = 160780, - [SMALL_STATE(5214)] = 160791, - [SMALL_STATE(5215)] = 160800, - [SMALL_STATE(5216)] = 160811, - [SMALL_STATE(5217)] = 160822, - [SMALL_STATE(5218)] = 160833, - [SMALL_STATE(5219)] = 160844, - [SMALL_STATE(5220)] = 160853, - [SMALL_STATE(5221)] = 160864, - [SMALL_STATE(5222)] = 160875, - [SMALL_STATE(5223)] = 160884, - [SMALL_STATE(5224)] = 160893, - [SMALL_STATE(5225)] = 160904, - [SMALL_STATE(5226)] = 160915, - [SMALL_STATE(5227)] = 160926, - [SMALL_STATE(5228)] = 160937, - [SMALL_STATE(5229)] = 160948, - [SMALL_STATE(5230)] = 160959, - [SMALL_STATE(5231)] = 160970, - [SMALL_STATE(5232)] = 160981, - [SMALL_STATE(5233)] = 160992, - [SMALL_STATE(5234)] = 161003, - [SMALL_STATE(5235)] = 161014, - [SMALL_STATE(5236)] = 161025, - [SMALL_STATE(5237)] = 161036, - [SMALL_STATE(5238)] = 161045, - [SMALL_STATE(5239)] = 161056, - [SMALL_STATE(5240)] = 161067, - [SMALL_STATE(5241)] = 161076, - [SMALL_STATE(5242)] = 161085, - [SMALL_STATE(5243)] = 161096, - [SMALL_STATE(5244)] = 161107, - [SMALL_STATE(5245)] = 161118, - [SMALL_STATE(5246)] = 161129, - [SMALL_STATE(5247)] = 161140, - [SMALL_STATE(5248)] = 161151, - [SMALL_STATE(5249)] = 161162, - [SMALL_STATE(5250)] = 161171, - [SMALL_STATE(5251)] = 161182, - [SMALL_STATE(5252)] = 161191, - [SMALL_STATE(5253)] = 161200, - [SMALL_STATE(5254)] = 161211, - [SMALL_STATE(5255)] = 161220, - [SMALL_STATE(5256)] = 161231, - [SMALL_STATE(5257)] = 161240, - [SMALL_STATE(5258)] = 161249, - [SMALL_STATE(5259)] = 161260, - [SMALL_STATE(5260)] = 161269, - [SMALL_STATE(5261)] = 161280, - [SMALL_STATE(5262)] = 161291, - [SMALL_STATE(5263)] = 161302, - [SMALL_STATE(5264)] = 161313, - [SMALL_STATE(5265)] = 161322, - [SMALL_STATE(5266)] = 161333, - [SMALL_STATE(5267)] = 161344, - [SMALL_STATE(5268)] = 161355, - [SMALL_STATE(5269)] = 161366, - [SMALL_STATE(5270)] = 161377, - [SMALL_STATE(5271)] = 161388, - [SMALL_STATE(5272)] = 161399, - [SMALL_STATE(5273)] = 161410, - [SMALL_STATE(5274)] = 161421, - [SMALL_STATE(5275)] = 161430, - [SMALL_STATE(5276)] = 161441, - [SMALL_STATE(5277)] = 161452, - [SMALL_STATE(5278)] = 161463, - [SMALL_STATE(5279)] = 161472, - [SMALL_STATE(5280)] = 161483, - [SMALL_STATE(5281)] = 161494, - [SMALL_STATE(5282)] = 161505, - [SMALL_STATE(5283)] = 161516, - [SMALL_STATE(5284)] = 161527, - [SMALL_STATE(5285)] = 161538, - [SMALL_STATE(5286)] = 161547, - [SMALL_STATE(5287)] = 161558, - [SMALL_STATE(5288)] = 161569, - [SMALL_STATE(5289)] = 161580, - [SMALL_STATE(5290)] = 161591, - [SMALL_STATE(5291)] = 161602, - [SMALL_STATE(5292)] = 161613, - [SMALL_STATE(5293)] = 161624, - [SMALL_STATE(5294)] = 161635, - [SMALL_STATE(5295)] = 161646, - [SMALL_STATE(5296)] = 161657, - [SMALL_STATE(5297)] = 161668, - [SMALL_STATE(5298)] = 161679, - [SMALL_STATE(5299)] = 161690, - [SMALL_STATE(5300)] = 161701, - [SMALL_STATE(5301)] = 161710, - [SMALL_STATE(5302)] = 161721, - [SMALL_STATE(5303)] = 161730, - [SMALL_STATE(5304)] = 161739, - [SMALL_STATE(5305)] = 161750, - [SMALL_STATE(5306)] = 161761, - [SMALL_STATE(5307)] = 161772, - [SMALL_STATE(5308)] = 161781, - [SMALL_STATE(5309)] = 161790, - [SMALL_STATE(5310)] = 161801, - [SMALL_STATE(5311)] = 161810, - [SMALL_STATE(5312)] = 161821, - [SMALL_STATE(5313)] = 161832, - [SMALL_STATE(5314)] = 161843, - [SMALL_STATE(5315)] = 161854, - [SMALL_STATE(5316)] = 161865, - [SMALL_STATE(5317)] = 161876, - [SMALL_STATE(5318)] = 161885, - [SMALL_STATE(5319)] = 161896, - [SMALL_STATE(5320)] = 161907, - [SMALL_STATE(5321)] = 161918, - [SMALL_STATE(5322)] = 161929, - [SMALL_STATE(5323)] = 161940, - [SMALL_STATE(5324)] = 161951, - [SMALL_STATE(5325)] = 161962, - [SMALL_STATE(5326)] = 161971, - [SMALL_STATE(5327)] = 161982, - [SMALL_STATE(5328)] = 161993, - [SMALL_STATE(5329)] = 162002, - [SMALL_STATE(5330)] = 162013, - [SMALL_STATE(5331)] = 162022, - [SMALL_STATE(5332)] = 162033, - [SMALL_STATE(5333)] = 162044, - [SMALL_STATE(5334)] = 162055, - [SMALL_STATE(5335)] = 162064, - [SMALL_STATE(5336)] = 162073, - [SMALL_STATE(5337)] = 162084, - [SMALL_STATE(5338)] = 162095, - [SMALL_STATE(5339)] = 162106, - [SMALL_STATE(5340)] = 162117, - [SMALL_STATE(5341)] = 162128, - [SMALL_STATE(5342)] = 162139, - [SMALL_STATE(5343)] = 162150, - [SMALL_STATE(5344)] = 162161, - [SMALL_STATE(5345)] = 162172, - [SMALL_STATE(5346)] = 162183, - [SMALL_STATE(5347)] = 162194, - [SMALL_STATE(5348)] = 162205, - [SMALL_STATE(5349)] = 162216, - [SMALL_STATE(5350)] = 162225, - [SMALL_STATE(5351)] = 162236, - [SMALL_STATE(5352)] = 162247, - [SMALL_STATE(5353)] = 162258, - [SMALL_STATE(5354)] = 162269, - [SMALL_STATE(5355)] = 162278, - [SMALL_STATE(5356)] = 162289, - [SMALL_STATE(5357)] = 162300, - [SMALL_STATE(5358)] = 162311, - [SMALL_STATE(5359)] = 162322, - [SMALL_STATE(5360)] = 162333, - [SMALL_STATE(5361)] = 162344, - [SMALL_STATE(5362)] = 162355, - [SMALL_STATE(5363)] = 162366, - [SMALL_STATE(5364)] = 162377, - [SMALL_STATE(5365)] = 162388, - [SMALL_STATE(5366)] = 162399, - [SMALL_STATE(5367)] = 162410, - [SMALL_STATE(5368)] = 162421, - [SMALL_STATE(5369)] = 162432, - [SMALL_STATE(5370)] = 162443, - [SMALL_STATE(5371)] = 162454, - [SMALL_STATE(5372)] = 162465, - [SMALL_STATE(5373)] = 162476, - [SMALL_STATE(5374)] = 162487, - [SMALL_STATE(5375)] = 162498, - [SMALL_STATE(5376)] = 162509, - [SMALL_STATE(5377)] = 162520, - [SMALL_STATE(5378)] = 162531, - [SMALL_STATE(5379)] = 162540, - [SMALL_STATE(5380)] = 162551, - [SMALL_STATE(5381)] = 162560, - [SMALL_STATE(5382)] = 162571, - [SMALL_STATE(5383)] = 162582, - [SMALL_STATE(5384)] = 162593, - [SMALL_STATE(5385)] = 162602, - [SMALL_STATE(5386)] = 162613, - [SMALL_STATE(5387)] = 162624, - [SMALL_STATE(5388)] = 162635, - [SMALL_STATE(5389)] = 162646, - [SMALL_STATE(5390)] = 162657, - [SMALL_STATE(5391)] = 162668, - [SMALL_STATE(5392)] = 162679, - [SMALL_STATE(5393)] = 162690, - [SMALL_STATE(5394)] = 162699, - [SMALL_STATE(5395)] = 162708, - [SMALL_STATE(5396)] = 162717, - [SMALL_STATE(5397)] = 162726, - [SMALL_STATE(5398)] = 162737, - [SMALL_STATE(5399)] = 162748, - [SMALL_STATE(5400)] = 162759, - [SMALL_STATE(5401)] = 162768, - [SMALL_STATE(5402)] = 162779, - [SMALL_STATE(5403)] = 162790, - [SMALL_STATE(5404)] = 162801, - [SMALL_STATE(5405)] = 162810, - [SMALL_STATE(5406)] = 162821, - [SMALL_STATE(5407)] = 162832, - [SMALL_STATE(5408)] = 162843, - [SMALL_STATE(5409)] = 162854, - [SMALL_STATE(5410)] = 162863, - [SMALL_STATE(5411)] = 162874, - [SMALL_STATE(5412)] = 162883, - [SMALL_STATE(5413)] = 162892, - [SMALL_STATE(5414)] = 162903, - [SMALL_STATE(5415)] = 162912, - [SMALL_STATE(5416)] = 162921, - [SMALL_STATE(5417)] = 162932, - [SMALL_STATE(5418)] = 162943, - [SMALL_STATE(5419)] = 162954, - [SMALL_STATE(5420)] = 162965, - [SMALL_STATE(5421)] = 162974, - [SMALL_STATE(5422)] = 162985, - [SMALL_STATE(5423)] = 162996, - [SMALL_STATE(5424)] = 163007, - [SMALL_STATE(5425)] = 163018, - [SMALL_STATE(5426)] = 163027, - [SMALL_STATE(5427)] = 163038, - [SMALL_STATE(5428)] = 163049, - [SMALL_STATE(5429)] = 163060, - [SMALL_STATE(5430)] = 163071, - [SMALL_STATE(5431)] = 163080, - [SMALL_STATE(5432)] = 163091, - [SMALL_STATE(5433)] = 163102, - [SMALL_STATE(5434)] = 163113, - [SMALL_STATE(5435)] = 163124, - [SMALL_STATE(5436)] = 163135, - [SMALL_STATE(5437)] = 163146, - [SMALL_STATE(5438)] = 163157, - [SMALL_STATE(5439)] = 163166, - [SMALL_STATE(5440)] = 163175, - [SMALL_STATE(5441)] = 163184, - [SMALL_STATE(5442)] = 163192, - [SMALL_STATE(5443)] = 163200, - [SMALL_STATE(5444)] = 163208, - [SMALL_STATE(5445)] = 163216, - [SMALL_STATE(5446)] = 163224, - [SMALL_STATE(5447)] = 163232, - [SMALL_STATE(5448)] = 163240, - [SMALL_STATE(5449)] = 163248, - [SMALL_STATE(5450)] = 163256, - [SMALL_STATE(5451)] = 163264, - [SMALL_STATE(5452)] = 163272, - [SMALL_STATE(5453)] = 163280, - [SMALL_STATE(5454)] = 163288, - [SMALL_STATE(5455)] = 163296, - [SMALL_STATE(5456)] = 163304, - [SMALL_STATE(5457)] = 163312, - [SMALL_STATE(5458)] = 163320, - [SMALL_STATE(5459)] = 163328, - [SMALL_STATE(5460)] = 163336, - [SMALL_STATE(5461)] = 163344, - [SMALL_STATE(5462)] = 163352, - [SMALL_STATE(5463)] = 163360, - [SMALL_STATE(5464)] = 163368, - [SMALL_STATE(5465)] = 163376, - [SMALL_STATE(5466)] = 163384, - [SMALL_STATE(5467)] = 163392, - [SMALL_STATE(5468)] = 163400, - [SMALL_STATE(5469)] = 163408, - [SMALL_STATE(5470)] = 163416, - [SMALL_STATE(5471)] = 163424, - [SMALL_STATE(5472)] = 163434, - [SMALL_STATE(5473)] = 163442, - [SMALL_STATE(5474)] = 163450, - [SMALL_STATE(5475)] = 163458, - [SMALL_STATE(5476)] = 163466, - [SMALL_STATE(5477)] = 163474, - [SMALL_STATE(5478)] = 163482, - [SMALL_STATE(5479)] = 163490, - [SMALL_STATE(5480)] = 163498, - [SMALL_STATE(5481)] = 163506, - [SMALL_STATE(5482)] = 163514, - [SMALL_STATE(5483)] = 163522, - [SMALL_STATE(5484)] = 163530, - [SMALL_STATE(5485)] = 163538, - [SMALL_STATE(5486)] = 163546, - [SMALL_STATE(5487)] = 163554, - [SMALL_STATE(5488)] = 163562, - [SMALL_STATE(5489)] = 163570, - [SMALL_STATE(5490)] = 163578, - [SMALL_STATE(5491)] = 163586, - [SMALL_STATE(5492)] = 163594, - [SMALL_STATE(5493)] = 163602, - [SMALL_STATE(5494)] = 163610, - [SMALL_STATE(5495)] = 163618, - [SMALL_STATE(5496)] = 163626, - [SMALL_STATE(5497)] = 163634, - [SMALL_STATE(5498)] = 163642, - [SMALL_STATE(5499)] = 163650, - [SMALL_STATE(5500)] = 163658, - [SMALL_STATE(5501)] = 163666, - [SMALL_STATE(5502)] = 163674, - [SMALL_STATE(5503)] = 163682, - [SMALL_STATE(5504)] = 163690, - [SMALL_STATE(5505)] = 163698, - [SMALL_STATE(5506)] = 163706, - [SMALL_STATE(5507)] = 163714, - [SMALL_STATE(5508)] = 163722, - [SMALL_STATE(5509)] = 163732, - [SMALL_STATE(5510)] = 163740, - [SMALL_STATE(5511)] = 163748, - [SMALL_STATE(5512)] = 163756, - [SMALL_STATE(5513)] = 163766, - [SMALL_STATE(5514)] = 163774, - [SMALL_STATE(5515)] = 163782, - [SMALL_STATE(5516)] = 163790, - [SMALL_STATE(5517)] = 163798, - [SMALL_STATE(5518)] = 163806, - [SMALL_STATE(5519)] = 163814, - [SMALL_STATE(5520)] = 163822, - [SMALL_STATE(5521)] = 163830, - [SMALL_STATE(5522)] = 163838, - [SMALL_STATE(5523)] = 163846, - [SMALL_STATE(5524)] = 163854, - [SMALL_STATE(5525)] = 163862, - [SMALL_STATE(5526)] = 163870, - [SMALL_STATE(5527)] = 163878, - [SMALL_STATE(5528)] = 163886, - [SMALL_STATE(5529)] = 163894, - [SMALL_STATE(5530)] = 163902, - [SMALL_STATE(5531)] = 163910, - [SMALL_STATE(5532)] = 163918, - [SMALL_STATE(5533)] = 163926, - [SMALL_STATE(5534)] = 163934, - [SMALL_STATE(5535)] = 163942, - [SMALL_STATE(5536)] = 163950, - [SMALL_STATE(5537)] = 163958, - [SMALL_STATE(5538)] = 163966, - [SMALL_STATE(5539)] = 163974, - [SMALL_STATE(5540)] = 163982, - [SMALL_STATE(5541)] = 163990, - [SMALL_STATE(5542)] = 163998, - [SMALL_STATE(5543)] = 164006, - [SMALL_STATE(5544)] = 164014, - [SMALL_STATE(5545)] = 164022, - [SMALL_STATE(5546)] = 164030, - [SMALL_STATE(5547)] = 164038, - [SMALL_STATE(5548)] = 164046, - [SMALL_STATE(5549)] = 164054, - [SMALL_STATE(5550)] = 164062, - [SMALL_STATE(5551)] = 164070, - [SMALL_STATE(5552)] = 164078, - [SMALL_STATE(5553)] = 164086, - [SMALL_STATE(5554)] = 164094, - [SMALL_STATE(5555)] = 164102, - [SMALL_STATE(5556)] = 164110, - [SMALL_STATE(5557)] = 164118, - [SMALL_STATE(5558)] = 164126, - [SMALL_STATE(5559)] = 164134, - [SMALL_STATE(5560)] = 164142, - [SMALL_STATE(5561)] = 164150, - [SMALL_STATE(5562)] = 164158, - [SMALL_STATE(5563)] = 164166, - [SMALL_STATE(5564)] = 164174, - [SMALL_STATE(5565)] = 164182, - [SMALL_STATE(5566)] = 164190, - [SMALL_STATE(5567)] = 164198, - [SMALL_STATE(5568)] = 164206, - [SMALL_STATE(5569)] = 164214, - [SMALL_STATE(5570)] = 164222, - [SMALL_STATE(5571)] = 164230, - [SMALL_STATE(5572)] = 164238, - [SMALL_STATE(5573)] = 164246, - [SMALL_STATE(5574)] = 164254, - [SMALL_STATE(5575)] = 164262, - [SMALL_STATE(5576)] = 164270, - [SMALL_STATE(5577)] = 164278, - [SMALL_STATE(5578)] = 164286, - [SMALL_STATE(5579)] = 164294, - [SMALL_STATE(5580)] = 164302, - [SMALL_STATE(5581)] = 164310, - [SMALL_STATE(5582)] = 164320, - [SMALL_STATE(5583)] = 164328, - [SMALL_STATE(5584)] = 164336, - [SMALL_STATE(5585)] = 164344, - [SMALL_STATE(5586)] = 164352, - [SMALL_STATE(5587)] = 164360, - [SMALL_STATE(5588)] = 164368, - [SMALL_STATE(5589)] = 164376, - [SMALL_STATE(5590)] = 164384, - [SMALL_STATE(5591)] = 164392, - [SMALL_STATE(5592)] = 164400, - [SMALL_STATE(5593)] = 164408, - [SMALL_STATE(5594)] = 164416, - [SMALL_STATE(5595)] = 164424, - [SMALL_STATE(5596)] = 164432, - [SMALL_STATE(5597)] = 164440, - [SMALL_STATE(5598)] = 164448, - [SMALL_STATE(5599)] = 164456, - [SMALL_STATE(5600)] = 164464, - [SMALL_STATE(5601)] = 164472, - [SMALL_STATE(5602)] = 164480, - [SMALL_STATE(5603)] = 164488, - [SMALL_STATE(5604)] = 164496, - [SMALL_STATE(5605)] = 164504, - [SMALL_STATE(5606)] = 164512, - [SMALL_STATE(5607)] = 164520, - [SMALL_STATE(5608)] = 164528, - [SMALL_STATE(5609)] = 164536, - [SMALL_STATE(5610)] = 164544, - [SMALL_STATE(5611)] = 164552, - [SMALL_STATE(5612)] = 164560, - [SMALL_STATE(5613)] = 164568, - [SMALL_STATE(5614)] = 164576, - [SMALL_STATE(5615)] = 164584, - [SMALL_STATE(5616)] = 164592, - [SMALL_STATE(5617)] = 164600, - [SMALL_STATE(5618)] = 164608, - [SMALL_STATE(5619)] = 164616, - [SMALL_STATE(5620)] = 164624, - [SMALL_STATE(5621)] = 164632, - [SMALL_STATE(5622)] = 164640, - [SMALL_STATE(5623)] = 164648, - [SMALL_STATE(5624)] = 164656, - [SMALL_STATE(5625)] = 164664, - [SMALL_STATE(5626)] = 164672, - [SMALL_STATE(5627)] = 164680, - [SMALL_STATE(5628)] = 164688, - [SMALL_STATE(5629)] = 164696, - [SMALL_STATE(5630)] = 164704, - [SMALL_STATE(5631)] = 164712, - [SMALL_STATE(5632)] = 164722, - [SMALL_STATE(5633)] = 164732, - [SMALL_STATE(5634)] = 164740, - [SMALL_STATE(5635)] = 164748, - [SMALL_STATE(5636)] = 164756, - [SMALL_STATE(5637)] = 164764, - [SMALL_STATE(5638)] = 164772, - [SMALL_STATE(5639)] = 164780, - [SMALL_STATE(5640)] = 164788, - [SMALL_STATE(5641)] = 164796, - [SMALL_STATE(5642)] = 164804, - [SMALL_STATE(5643)] = 164812, - [SMALL_STATE(5644)] = 164820, - [SMALL_STATE(5645)] = 164828, - [SMALL_STATE(5646)] = 164836, - [SMALL_STATE(5647)] = 164844, - [SMALL_STATE(5648)] = 164852, - [SMALL_STATE(5649)] = 164860, - [SMALL_STATE(5650)] = 164868, - [SMALL_STATE(5651)] = 164876, - [SMALL_STATE(5652)] = 164884, - [SMALL_STATE(5653)] = 164892, - [SMALL_STATE(5654)] = 164900, - [SMALL_STATE(5655)] = 164908, - [SMALL_STATE(5656)] = 164916, - [SMALL_STATE(5657)] = 164924, - [SMALL_STATE(5658)] = 164932, - [SMALL_STATE(5659)] = 164940, - [SMALL_STATE(5660)] = 164948, - [SMALL_STATE(5661)] = 164956, - [SMALL_STATE(5662)] = 164964, - [SMALL_STATE(5663)] = 164972, - [SMALL_STATE(5664)] = 164980, - [SMALL_STATE(5665)] = 164988, - [SMALL_STATE(5666)] = 164996, - [SMALL_STATE(5667)] = 165004, - [SMALL_STATE(5668)] = 165012, - [SMALL_STATE(5669)] = 165020, - [SMALL_STATE(5670)] = 165028, - [SMALL_STATE(5671)] = 165036, - [SMALL_STATE(5672)] = 165044, - [SMALL_STATE(5673)] = 165052, - [SMALL_STATE(5674)] = 165060, - [SMALL_STATE(5675)] = 165068, - [SMALL_STATE(5676)] = 165076, - [SMALL_STATE(5677)] = 165084, - [SMALL_STATE(5678)] = 165092, - [SMALL_STATE(5679)] = 165100, - [SMALL_STATE(5680)] = 165108, - [SMALL_STATE(5681)] = 165116, - [SMALL_STATE(5682)] = 165124, - [SMALL_STATE(5683)] = 165132, - [SMALL_STATE(5684)] = 165140, - [SMALL_STATE(5685)] = 165148, - [SMALL_STATE(5686)] = 165156, - [SMALL_STATE(5687)] = 165164, - [SMALL_STATE(5688)] = 165172, - [SMALL_STATE(5689)] = 165180, - [SMALL_STATE(5690)] = 165188, - [SMALL_STATE(5691)] = 165196, - [SMALL_STATE(5692)] = 165204, - [SMALL_STATE(5693)] = 165212, - [SMALL_STATE(5694)] = 165220, - [SMALL_STATE(5695)] = 165228, - [SMALL_STATE(5696)] = 165236, - [SMALL_STATE(5697)] = 165244, - [SMALL_STATE(5698)] = 165252, - [SMALL_STATE(5699)] = 165260, - [SMALL_STATE(5700)] = 165268, - [SMALL_STATE(5701)] = 165276, - [SMALL_STATE(5702)] = 165284, - [SMALL_STATE(5703)] = 165292, - [SMALL_STATE(5704)] = 165300, - [SMALL_STATE(5705)] = 165308, - [SMALL_STATE(5706)] = 165316, - [SMALL_STATE(5707)] = 165324, - [SMALL_STATE(5708)] = 165332, - [SMALL_STATE(5709)] = 165340, - [SMALL_STATE(5710)] = 165348, - [SMALL_STATE(5711)] = 165356, - [SMALL_STATE(5712)] = 165364, - [SMALL_STATE(5713)] = 165372, - [SMALL_STATE(5714)] = 165380, - [SMALL_STATE(5715)] = 165388, - [SMALL_STATE(5716)] = 165396, - [SMALL_STATE(5717)] = 165404, - [SMALL_STATE(5718)] = 165412, - [SMALL_STATE(5719)] = 165420, - [SMALL_STATE(5720)] = 165428, - [SMALL_STATE(5721)] = 165436, - [SMALL_STATE(5722)] = 165444, - [SMALL_STATE(5723)] = 165452, - [SMALL_STATE(5724)] = 165460, - [SMALL_STATE(5725)] = 165468, - [SMALL_STATE(5726)] = 165476, - [SMALL_STATE(5727)] = 165484, - [SMALL_STATE(5728)] = 165492, - [SMALL_STATE(5729)] = 165500, - [SMALL_STATE(5730)] = 165508, - [SMALL_STATE(5731)] = 165516, - [SMALL_STATE(5732)] = 165524, - [SMALL_STATE(5733)] = 165532, - [SMALL_STATE(5734)] = 165540, - [SMALL_STATE(5735)] = 165548, - [SMALL_STATE(5736)] = 165556, - [SMALL_STATE(5737)] = 165564, - [SMALL_STATE(5738)] = 165572, - [SMALL_STATE(5739)] = 165580, - [SMALL_STATE(5740)] = 165588, - [SMALL_STATE(5741)] = 165596, - [SMALL_STATE(5742)] = 165604, - [SMALL_STATE(5743)] = 165612, - [SMALL_STATE(5744)] = 165620, - [SMALL_STATE(5745)] = 165628, - [SMALL_STATE(5746)] = 165636, - [SMALL_STATE(5747)] = 165644, - [SMALL_STATE(5748)] = 165652, - [SMALL_STATE(5749)] = 165660, - [SMALL_STATE(5750)] = 165668, - [SMALL_STATE(5751)] = 165676, - [SMALL_STATE(5752)] = 165684, - [SMALL_STATE(5753)] = 165692, - [SMALL_STATE(5754)] = 165700, - [SMALL_STATE(5755)] = 165708, - [SMALL_STATE(5756)] = 165716, - [SMALL_STATE(5757)] = 165724, - [SMALL_STATE(5758)] = 165732, - [SMALL_STATE(5759)] = 165740, - [SMALL_STATE(5760)] = 165748, - [SMALL_STATE(5761)] = 165756, - [SMALL_STATE(5762)] = 165764, - [SMALL_STATE(5763)] = 165772, - [SMALL_STATE(5764)] = 165780, - [SMALL_STATE(5765)] = 165788, - [SMALL_STATE(5766)] = 165796, - [SMALL_STATE(5767)] = 165806, - [SMALL_STATE(5768)] = 165814, - [SMALL_STATE(5769)] = 165822, - [SMALL_STATE(5770)] = 165830, - [SMALL_STATE(5771)] = 165838, - [SMALL_STATE(5772)] = 165846, - [SMALL_STATE(5773)] = 165854, - [SMALL_STATE(5774)] = 165862, - [SMALL_STATE(5775)] = 165870, - [SMALL_STATE(5776)] = 165878, - [SMALL_STATE(5777)] = 165886, - [SMALL_STATE(5778)] = 165894, - [SMALL_STATE(5779)] = 165902, - [SMALL_STATE(5780)] = 165910, - [SMALL_STATE(5781)] = 165920, - [SMALL_STATE(5782)] = 165928, - [SMALL_STATE(5783)] = 165936, - [SMALL_STATE(5784)] = 165944, - [SMALL_STATE(5785)] = 165952, - [SMALL_STATE(5786)] = 165960, - [SMALL_STATE(5787)] = 165968, - [SMALL_STATE(5788)] = 165976, - [SMALL_STATE(5789)] = 165984, - [SMALL_STATE(5790)] = 165992, - [SMALL_STATE(5791)] = 166000, - [SMALL_STATE(5792)] = 166008, - [SMALL_STATE(5793)] = 166016, - [SMALL_STATE(5794)] = 166024, - [SMALL_STATE(5795)] = 166032, - [SMALL_STATE(5796)] = 166040, - [SMALL_STATE(5797)] = 166048, - [SMALL_STATE(5798)] = 166056, - [SMALL_STATE(5799)] = 166064, - [SMALL_STATE(5800)] = 166072, - [SMALL_STATE(5801)] = 166080, - [SMALL_STATE(5802)] = 166088, - [SMALL_STATE(5803)] = 166096, - [SMALL_STATE(5804)] = 166104, - [SMALL_STATE(5805)] = 166112, - [SMALL_STATE(5806)] = 166120, - [SMALL_STATE(5807)] = 166128, - [SMALL_STATE(5808)] = 166136, - [SMALL_STATE(5809)] = 166144, - [SMALL_STATE(5810)] = 166152, - [SMALL_STATE(5811)] = 166160, - [SMALL_STATE(5812)] = 166170, - [SMALL_STATE(5813)] = 166178, - [SMALL_STATE(5814)] = 166186, - [SMALL_STATE(5815)] = 166194, - [SMALL_STATE(5816)] = 166202, - [SMALL_STATE(5817)] = 166212, - [SMALL_STATE(5818)] = 166220, - [SMALL_STATE(5819)] = 166228, - [SMALL_STATE(5820)] = 166236, - [SMALL_STATE(5821)] = 166244, - [SMALL_STATE(5822)] = 166252, - [SMALL_STATE(5823)] = 166260, - [SMALL_STATE(5824)] = 166268, - [SMALL_STATE(5825)] = 166276, - [SMALL_STATE(5826)] = 166284, - [SMALL_STATE(5827)] = 166292, - [SMALL_STATE(5828)] = 166300, - [SMALL_STATE(5829)] = 166308, + [SMALL_STATE(2140)] = 73940, + [SMALL_STATE(2141)] = 73991, + [SMALL_STATE(2142)] = 74068, + [SMALL_STATE(2143)] = 74121, + [SMALL_STATE(2144)] = 74192, + [SMALL_STATE(2145)] = 74251, + [SMALL_STATE(2146)] = 74310, + [SMALL_STATE(2147)] = 74369, + [SMALL_STATE(2148)] = 74424, + [SMALL_STATE(2149)] = 74475, + [SMALL_STATE(2150)] = 74526, + [SMALL_STATE(2151)] = 74577, + [SMALL_STATE(2152)] = 74628, + [SMALL_STATE(2153)] = 74687, + [SMALL_STATE(2154)] = 74796, + [SMALL_STATE(2155)] = 74905, + [SMALL_STATE(2156)] = 74976, + [SMALL_STATE(2157)] = 75085, + [SMALL_STATE(2158)] = 75142, + [SMALL_STATE(2159)] = 75199, + [SMALL_STATE(2160)] = 75258, + [SMALL_STATE(2161)] = 75315, + [SMALL_STATE(2162)] = 75390, + [SMALL_STATE(2163)] = 75443, + [SMALL_STATE(2164)] = 75500, + [SMALL_STATE(2165)] = 75562, + [SMALL_STATE(2166)] = 75638, + [SMALL_STATE(2167)] = 75746, + [SMALL_STATE(2168)] = 75808, + [SMALL_STATE(2169)] = 75858, + [SMALL_STATE(2170)] = 75916, + [SMALL_STATE(2171)] = 76024, + [SMALL_STATE(2172)] = 76076, + [SMALL_STATE(2173)] = 76126, + [SMALL_STATE(2174)] = 76176, + [SMALL_STATE(2175)] = 76226, + [SMALL_STATE(2176)] = 76276, + [SMALL_STATE(2177)] = 76344, + [SMALL_STATE(2178)] = 76394, + [SMALL_STATE(2179)] = 76444, + [SMALL_STATE(2180)] = 76498, + [SMALL_STATE(2181)] = 76550, + [SMALL_STATE(2182)] = 76618, + [SMALL_STATE(2183)] = 76682, + [SMALL_STATE(2184)] = 76732, + [SMALL_STATE(2185)] = 76796, + [SMALL_STATE(2186)] = 76850, + [SMALL_STATE(2187)] = 76900, + [SMALL_STATE(2188)] = 77008, + [SMALL_STATE(2189)] = 77084, + [SMALL_STATE(2190)] = 77192, + [SMALL_STATE(2191)] = 77262, + [SMALL_STATE(2192)] = 77326, + [SMALL_STATE(2193)] = 77386, + [SMALL_STATE(2194)] = 77438, + [SMALL_STATE(2195)] = 77546, + [SMALL_STATE(2196)] = 77604, + [SMALL_STATE(2197)] = 77662, + [SMALL_STATE(2198)] = 77712, + [SMALL_STATE(2199)] = 77762, + [SMALL_STATE(2200)] = 77828, + [SMALL_STATE(2201)] = 77896, + [SMALL_STATE(2202)] = 77946, + [SMALL_STATE(2203)] = 77996, + [SMALL_STATE(2204)] = 78046, + [SMALL_STATE(2205)] = 78120, + [SMALL_STATE(2206)] = 78228, + [SMALL_STATE(2207)] = 78304, + [SMALL_STATE(2208)] = 78368, + [SMALL_STATE(2209)] = 78418, + [SMALL_STATE(2210)] = 78470, + [SMALL_STATE(2211)] = 78578, + [SMALL_STATE(2212)] = 78686, + [SMALL_STATE(2213)] = 78794, + [SMALL_STATE(2214)] = 78902, + [SMALL_STATE(2215)] = 78970, + [SMALL_STATE(2216)] = 79052, + [SMALL_STATE(2217)] = 79106, + [SMALL_STATE(2218)] = 79170, + [SMALL_STATE(2219)] = 79242, + [SMALL_STATE(2220)] = 79338, + [SMALL_STATE(2221)] = 79446, + [SMALL_STATE(2222)] = 79522, + [SMALL_STATE(2223)] = 79580, + [SMALL_STATE(2224)] = 79650, + [SMALL_STATE(2225)] = 79704, + [SMALL_STATE(2226)] = 79802, + [SMALL_STATE(2227)] = 79852, + [SMALL_STATE(2228)] = 79902, + [SMALL_STATE(2229)] = 79956, + [SMALL_STATE(2230)] = 80010, + [SMALL_STATE(2231)] = 80076, + [SMALL_STATE(2232)] = 80130, + [SMALL_STATE(2233)] = 80180, + [SMALL_STATE(2234)] = 80258, + [SMALL_STATE(2235)] = 80324, + [SMALL_STATE(2236)] = 80388, + [SMALL_STATE(2237)] = 80452, + [SMALL_STATE(2238)] = 80502, + [SMALL_STATE(2239)] = 80554, + [SMALL_STATE(2240)] = 80662, + [SMALL_STATE(2241)] = 80770, + [SMALL_STATE(2242)] = 80878, + [SMALL_STATE(2243)] = 80936, + [SMALL_STATE(2244)] = 80986, + [SMALL_STATE(2245)] = 81042, + [SMALL_STATE(2246)] = 81150, + [SMALL_STATE(2247)] = 81258, + [SMALL_STATE(2248)] = 81366, + [SMALL_STATE(2249)] = 81416, + [SMALL_STATE(2250)] = 81472, + [SMALL_STATE(2251)] = 81536, + [SMALL_STATE(2252)] = 81586, + [SMALL_STATE(2253)] = 81636, + [SMALL_STATE(2254)] = 81702, + [SMALL_STATE(2255)] = 81752, + [SMALL_STATE(2256)] = 81816, + [SMALL_STATE(2257)] = 81866, + [SMALL_STATE(2258)] = 81916, + [SMALL_STATE(2259)] = 81970, + [SMALL_STATE(2260)] = 82060, + [SMALL_STATE(2261)] = 82110, + [SMALL_STATE(2262)] = 82220, + [SMALL_STATE(2263)] = 82328, + [SMALL_STATE(2264)] = 82378, + [SMALL_STATE(2265)] = 82470, + [SMALL_STATE(2266)] = 82526, + [SMALL_STATE(2267)] = 82634, + [SMALL_STATE(2268)] = 82690, + [SMALL_STATE(2269)] = 82798, + [SMALL_STATE(2270)] = 82856, + [SMALL_STATE(2271)] = 82964, + [SMALL_STATE(2272)] = 83038, + [SMALL_STATE(2273)] = 83114, + [SMALL_STATE(2274)] = 83164, + [SMALL_STATE(2275)] = 83272, + [SMALL_STATE(2276)] = 83380, + [SMALL_STATE(2277)] = 83434, + [SMALL_STATE(2278)] = 83488, + [SMALL_STATE(2279)] = 83552, + [SMALL_STATE(2280)] = 83646, + [SMALL_STATE(2281)] = 83700, + [SMALL_STATE(2282)] = 83808, + [SMALL_STATE(2283)] = 83862, + [SMALL_STATE(2284)] = 83926, + [SMALL_STATE(2285)] = 83990, + [SMALL_STATE(2286)] = 84044, + [SMALL_STATE(2287)] = 84094, + [SMALL_STATE(2288)] = 84152, + [SMALL_STATE(2289)] = 84208, + [SMALL_STATE(2290)] = 84258, + [SMALL_STATE(2291)] = 84366, + [SMALL_STATE(2292)] = 84456, + [SMALL_STATE(2293)] = 84512, + [SMALL_STATE(2294)] = 84588, + [SMALL_STATE(2295)] = 84642, + [SMALL_STATE(2296)] = 84696, + [SMALL_STATE(2297)] = 84774, + [SMALL_STATE(2298)] = 84874, + [SMALL_STATE(2299)] = 84940, + [SMALL_STATE(2300)] = 85048, + [SMALL_STATE(2301)] = 85100, + [SMALL_STATE(2302)] = 85166, + [SMALL_STATE(2303)] = 85232, + [SMALL_STATE(2304)] = 85298, + [SMALL_STATE(2305)] = 85364, + [SMALL_STATE(2306)] = 85450, + [SMALL_STATE(2307)] = 85550, + [SMALL_STATE(2308)] = 85606, + [SMALL_STATE(2309)] = 85714, + [SMALL_STATE(2310)] = 85768, + [SMALL_STATE(2311)] = 85844, + [SMALL_STATE(2312)] = 85898, + [SMALL_STATE(2313)] = 85972, + [SMALL_STATE(2314)] = 86028, + [SMALL_STATE(2315)] = 86136, + [SMALL_STATE(2316)] = 86204, + [SMALL_STATE(2317)] = 86254, + [SMALL_STATE(2318)] = 86362, + [SMALL_STATE(2319)] = 86412, + [SMALL_STATE(2320)] = 86478, + [SMALL_STATE(2321)] = 86586, + [SMALL_STATE(2322)] = 86640, + [SMALL_STATE(2323)] = 86748, + [SMALL_STATE(2324)] = 86856, + [SMALL_STATE(2325)] = 86964, + [SMALL_STATE(2326)] = 87022, + [SMALL_STATE(2327)] = 87092, + [SMALL_STATE(2328)] = 87200, + [SMALL_STATE(2329)] = 87250, + [SMALL_STATE(2330)] = 87358, + [SMALL_STATE(2331)] = 87430, + [SMALL_STATE(2332)] = 87498, + [SMALL_STATE(2333)] = 87606, + [SMALL_STATE(2334)] = 87714, + [SMALL_STATE(2335)] = 87822, + [SMALL_STATE(2336)] = 87930, + [SMALL_STATE(2337)] = 88008, + [SMALL_STATE(2338)] = 88116, + [SMALL_STATE(2339)] = 88166, + [SMALL_STATE(2340)] = 88216, + [SMALL_STATE(2341)] = 88324, + [SMALL_STATE(2342)] = 88374, + [SMALL_STATE(2343)] = 88424, + [SMALL_STATE(2344)] = 88532, + [SMALL_STATE(2345)] = 88582, + [SMALL_STATE(2346)] = 88634, + [SMALL_STATE(2347)] = 88692, + [SMALL_STATE(2348)] = 88746, + [SMALL_STATE(2349)] = 88798, + [SMALL_STATE(2350)] = 88866, + [SMALL_STATE(2351)] = 88918, + [SMALL_STATE(2352)] = 88986, + [SMALL_STATE(2353)] = 89094, + [SMALL_STATE(2354)] = 89156, + [SMALL_STATE(2355)] = 89232, + [SMALL_STATE(2356)] = 89288, + [SMALL_STATE(2357)] = 89382, + [SMALL_STATE(2358)] = 89432, + [SMALL_STATE(2359)] = 89508, + [SMALL_STATE(2360)] = 89562, + [SMALL_STATE(2361)] = 89616, + [SMALL_STATE(2362)] = 89690, + [SMALL_STATE(2363)] = 89742, + [SMALL_STATE(2364)] = 89794, + [SMALL_STATE(2365)] = 89860, + [SMALL_STATE(2366)] = 89952, + [SMALL_STATE(2367)] = 90052, + [SMALL_STATE(2368)] = 90116, + [SMALL_STATE(2369)] = 90206, + [SMALL_STATE(2370)] = 90292, + [SMALL_STATE(2371)] = 90370, + [SMALL_STATE(2372)] = 90446, + [SMALL_STATE(2373)] = 90524, + [SMALL_STATE(2374)] = 90622, + [SMALL_STATE(2375)] = 90716, + [SMALL_STATE(2376)] = 90808, + [SMALL_STATE(2377)] = 90862, + [SMALL_STATE(2378)] = 90912, + [SMALL_STATE(2379)] = 90978, + [SMALL_STATE(2380)] = 91044, + [SMALL_STATE(2381)] = 91098, + [SMALL_STATE(2382)] = 91150, + [SMALL_STATE(2383)] = 91202, + [SMALL_STATE(2384)] = 91268, + [SMALL_STATE(2385)] = 91334, + [SMALL_STATE(2386)] = 91400, + [SMALL_STATE(2387)] = 91466, + [SMALL_STATE(2388)] = 91532, + [SMALL_STATE(2389)] = 91598, + [SMALL_STATE(2390)] = 91648, + [SMALL_STATE(2391)] = 91712, + [SMALL_STATE(2392)] = 91768, + [SMALL_STATE(2393)] = 91818, + [SMALL_STATE(2394)] = 91872, + [SMALL_STATE(2395)] = 91922, + [SMALL_STATE(2396)] = 91996, + [SMALL_STATE(2397)] = 92046, + [SMALL_STATE(2398)] = 92122, + [SMALL_STATE(2399)] = 92176, + [SMALL_STATE(2400)] = 92238, + [SMALL_STATE(2401)] = 92300, + [SMALL_STATE(2402)] = 92360, + [SMALL_STATE(2403)] = 92414, + [SMALL_STATE(2404)] = 92464, + [SMALL_STATE(2405)] = 92530, + [SMALL_STATE(2406)] = 92598, + [SMALL_STATE(2407)] = 92650, + [SMALL_STATE(2408)] = 92700, + [SMALL_STATE(2409)] = 92796, + [SMALL_STATE(2410)] = 92864, + [SMALL_STATE(2411)] = 92926, + [SMALL_STATE(2412)] = 93012, + [SMALL_STATE(2413)] = 93076, + [SMALL_STATE(2414)] = 93130, + [SMALL_STATE(2415)] = 93184, + [SMALL_STATE(2416)] = 93260, + [SMALL_STATE(2417)] = 93320, + [SMALL_STATE(2418)] = 93394, + [SMALL_STATE(2419)] = 93502, + [SMALL_STATE(2420)] = 93610, + [SMALL_STATE(2421)] = 93676, + [SMALL_STATE(2422)] = 93728, + [SMALL_STATE(2423)] = 93794, + [SMALL_STATE(2424)] = 93846, + [SMALL_STATE(2425)] = 93912, + [SMALL_STATE(2426)] = 93990, + [SMALL_STATE(2427)] = 94056, + [SMALL_STATE(2428)] = 94154, + [SMALL_STATE(2429)] = 94220, + [SMALL_STATE(2430)] = 94274, + [SMALL_STATE(2431)] = 94382, + [SMALL_STATE(2432)] = 94490, + [SMALL_STATE(2433)] = 94598, + [SMALL_STATE(2434)] = 94706, + [SMALL_STATE(2435)] = 94756, + [SMALL_STATE(2436)] = 94838, + [SMALL_STATE(2437)] = 94912, + [SMALL_STATE(2438)] = 94988, + [SMALL_STATE(2439)] = 95096, + [SMALL_STATE(2440)] = 95158, + [SMALL_STATE(2441)] = 95220, + [SMALL_STATE(2442)] = 95292, + [SMALL_STATE(2443)] = 95342, + [SMALL_STATE(2444)] = 95404, + [SMALL_STATE(2445)] = 95458, + [SMALL_STATE(2446)] = 95524, + [SMALL_STATE(2447)] = 95586, + [SMALL_STATE(2448)] = 95648, + [SMALL_STATE(2449)] = 95710, + [SMALL_STATE(2450)] = 95772, + [SMALL_STATE(2451)] = 95830, + [SMALL_STATE(2452)] = 95888, + [SMALL_STATE(2453)] = 95948, + [SMALL_STATE(2454)] = 96010, + [SMALL_STATE(2455)] = 96062, + [SMALL_STATE(2456)] = 96158, + [SMALL_STATE(2457)] = 96240, + [SMALL_STATE(2458)] = 96348, + [SMALL_STATE(2459)] = 96456, + [SMALL_STATE(2460)] = 96564, + [SMALL_STATE(2461)] = 96672, + [SMALL_STATE(2462)] = 96722, + [SMALL_STATE(2463)] = 96781, + [SMALL_STATE(2464)] = 96886, + [SMALL_STATE(2465)] = 96945, + [SMALL_STATE(2466)] = 97050, + [SMALL_STATE(2467)] = 97155, + [SMALL_STATE(2468)] = 97260, + [SMALL_STATE(2469)] = 97315, + [SMALL_STATE(2470)] = 97420, + [SMALL_STATE(2471)] = 97525, + [SMALL_STATE(2472)] = 97630, + [SMALL_STATE(2473)] = 97689, + [SMALL_STATE(2474)] = 97794, + [SMALL_STATE(2475)] = 97853, + [SMALL_STATE(2476)] = 97952, + [SMALL_STATE(2477)] = 98037, + [SMALL_STATE(2478)] = 98114, + [SMALL_STATE(2479)] = 98171, + [SMALL_STATE(2480)] = 98246, + [SMALL_STATE(2481)] = 98339, + [SMALL_STATE(2482)] = 98430, + [SMALL_STATE(2483)] = 98519, + [SMALL_STATE(2484)] = 98596, + [SMALL_STATE(2485)] = 98693, + [SMALL_STATE(2486)] = 98788, + [SMALL_STATE(2487)] = 98859, + [SMALL_STATE(2488)] = 98940, + [SMALL_STATE(2489)] = 98991, + [SMALL_STATE(2490)] = 99050, + [SMALL_STATE(2491)] = 99155, + [SMALL_STATE(2492)] = 99260, + [SMALL_STATE(2493)] = 99311, + [SMALL_STATE(2494)] = 99368, + [SMALL_STATE(2495)] = 99473, + [SMALL_STATE(2496)] = 99530, + [SMALL_STATE(2497)] = 99587, + [SMALL_STATE(2498)] = 99692, + [SMALL_STATE(2499)] = 99797, + [SMALL_STATE(2500)] = 99858, + [SMALL_STATE(2501)] = 99917, + [SMALL_STATE(2502)] = 99986, + [SMALL_STATE(2503)] = 100045, + [SMALL_STATE(2504)] = 100096, + [SMALL_STATE(2505)] = 100155, + [SMALL_STATE(2506)] = 100214, + [SMALL_STATE(2507)] = 100283, + [SMALL_STATE(2508)] = 100358, + [SMALL_STATE(2509)] = 100417, + [SMALL_STATE(2510)] = 100476, + [SMALL_STATE(2511)] = 100535, + [SMALL_STATE(2512)] = 100594, + [SMALL_STATE(2513)] = 100653, + [SMALL_STATE(2514)] = 100758, + [SMALL_STATE(2515)] = 100817, + [SMALL_STATE(2516)] = 100876, + [SMALL_STATE(2517)] = 100935, + [SMALL_STATE(2518)] = 100994, + [SMALL_STATE(2519)] = 101053, + [SMALL_STATE(2520)] = 101104, + [SMALL_STATE(2521)] = 101173, + [SMALL_STATE(2522)] = 101224, + [SMALL_STATE(2523)] = 101283, + [SMALL_STATE(2524)] = 101342, + [SMALL_STATE(2525)] = 101401, + [SMALL_STATE(2526)] = 101456, + [SMALL_STATE(2527)] = 101513, + [SMALL_STATE(2528)] = 101582, + [SMALL_STATE(2529)] = 101637, + [SMALL_STATE(2530)] = 101690, + [SMALL_STATE(2531)] = 101741, + [SMALL_STATE(2532)] = 101800, + [SMALL_STATE(2533)] = 101859, + [SMALL_STATE(2534)] = 101914, + [SMALL_STATE(2535)] = 101983, + [SMALL_STATE(2536)] = 102042, + [SMALL_STATE(2537)] = 102095, + [SMALL_STATE(2538)] = 102154, + [SMALL_STATE(2539)] = 102221, + [SMALL_STATE(2540)] = 102326, + [SMALL_STATE(2541)] = 102395, + [SMALL_STATE(2542)] = 102500, + [SMALL_STATE(2543)] = 102559, + [SMALL_STATE(2544)] = 102634, + [SMALL_STATE(2545)] = 102693, + [SMALL_STATE(2546)] = 102752, + [SMALL_STATE(2547)] = 102811, + [SMALL_STATE(2548)] = 102870, + [SMALL_STATE(2549)] = 102929, + [SMALL_STATE(2550)] = 102988, + [SMALL_STATE(2551)] = 103047, + [SMALL_STATE(2552)] = 103106, + [SMALL_STATE(2553)] = 103165, + [SMALL_STATE(2554)] = 103224, + [SMALL_STATE(2555)] = 103283, + [SMALL_STATE(2556)] = 103342, + [SMALL_STATE(2557)] = 103401, + [SMALL_STATE(2558)] = 103460, + [SMALL_STATE(2559)] = 103529, + [SMALL_STATE(2560)] = 103588, + [SMALL_STATE(2561)] = 103647, + [SMALL_STATE(2562)] = 103704, + [SMALL_STATE(2563)] = 103761, + [SMALL_STATE(2564)] = 103838, + [SMALL_STATE(2565)] = 103895, + [SMALL_STATE(2566)] = 103948, + [SMALL_STATE(2567)] = 104017, + [SMALL_STATE(2568)] = 104068, + [SMALL_STATE(2569)] = 104119, + [SMALL_STATE(2570)] = 104178, + [SMALL_STATE(2571)] = 104237, + [SMALL_STATE(2572)] = 104296, + [SMALL_STATE(2573)] = 104355, + [SMALL_STATE(2574)] = 104414, + [SMALL_STATE(2575)] = 104473, + [SMALL_STATE(2576)] = 104532, + [SMALL_STATE(2577)] = 104592, + [SMALL_STATE(2578)] = 104642, + [SMALL_STATE(2579)] = 104696, + [SMALL_STATE(2580)] = 104760, + [SMALL_STATE(2581)] = 104810, + [SMALL_STATE(2582)] = 104864, + [SMALL_STATE(2583)] = 104918, + [SMALL_STATE(2584)] = 104972, + [SMALL_STATE(2585)] = 105032, + [SMALL_STATE(2586)] = 105092, + [SMALL_STATE(2587)] = 105156, + [SMALL_STATE(2588)] = 105210, + [SMALL_STATE(2589)] = 105264, + [SMALL_STATE(2590)] = 105352, + [SMALL_STATE(2591)] = 105406, + [SMALL_STATE(2592)] = 105476, + [SMALL_STATE(2593)] = 105526, + [SMALL_STATE(2594)] = 105590, + [SMALL_STATE(2595)] = 105650, + [SMALL_STATE(2596)] = 105704, + [SMALL_STATE(2597)] = 105770, + [SMALL_STATE(2598)] = 105838, + [SMALL_STATE(2599)] = 105892, + [SMALL_STATE(2600)] = 105942, + [SMALL_STATE(2601)] = 106010, + [SMALL_STATE(2602)] = 106060, + [SMALL_STATE(2603)] = 106124, + [SMALL_STATE(2604)] = 106180, + [SMALL_STATE(2605)] = 106230, + [SMALL_STATE(2606)] = 106294, + [SMALL_STATE(2607)] = 106348, + [SMALL_STATE(2608)] = 106408, + [SMALL_STATE(2609)] = 106496, + [SMALL_STATE(2610)] = 106546, + [SMALL_STATE(2611)] = 106596, + [SMALL_STATE(2612)] = 106668, + [SMALL_STATE(2613)] = 106718, + [SMALL_STATE(2614)] = 106768, + [SMALL_STATE(2615)] = 106818, + [SMALL_STATE(2616)] = 106875, + [SMALL_STATE(2617)] = 106928, + [SMALL_STATE(2618)] = 106993, + [SMALL_STATE(2619)] = 107050, + [SMALL_STATE(2620)] = 107109, + [SMALL_STATE(2621)] = 107168, + [SMALL_STATE(2622)] = 107225, + [SMALL_STATE(2623)] = 107282, + [SMALL_STATE(2624)] = 107345, + [SMALL_STATE(2625)] = 107404, + [SMALL_STATE(2626)] = 107461, + [SMALL_STATE(2627)] = 107518, + [SMALL_STATE(2628)] = 107567, + [SMALL_STATE(2629)] = 107626, + [SMALL_STATE(2630)] = 107685, + [SMALL_STATE(2631)] = 107744, + [SMALL_STATE(2632)] = 107803, + [SMALL_STATE(2633)] = 107864, + [SMALL_STATE(2634)] = 107921, + [SMALL_STATE(2635)] = 107974, + [SMALL_STATE(2636)] = 108023, + [SMALL_STATE(2637)] = 108076, + [SMALL_STATE(2638)] = 108135, + [SMALL_STATE(2639)] = 108194, + [SMALL_STATE(2640)] = 108251, + [SMALL_STATE(2641)] = 108304, + [SMALL_STATE(2642)] = 108357, + [SMALL_STATE(2643)] = 108414, + [SMALL_STATE(2644)] = 108477, + [SMALL_STATE(2645)] = 108534, + [SMALL_STATE(2646)] = 108591, + [SMALL_STATE(2647)] = 108648, + [SMALL_STATE(2648)] = 108707, + [SMALL_STATE(2649)] = 108764, + [SMALL_STATE(2650)] = 108821, + [SMALL_STATE(2651)] = 108878, + [SMALL_STATE(2652)] = 108935, + [SMALL_STATE(2653)] = 108984, + [SMALL_STATE(2654)] = 109043, + [SMALL_STATE(2655)] = 109102, + [SMALL_STATE(2656)] = 109161, + [SMALL_STATE(2657)] = 109210, + [SMALL_STATE(2658)] = 109269, + [SMALL_STATE(2659)] = 109326, + [SMALL_STATE(2660)] = 109372, + [SMALL_STATE(2661)] = 109418, + [SMALL_STATE(2662)] = 109464, + [SMALL_STATE(2663)] = 109510, + [SMALL_STATE(2664)] = 109556, + [SMALL_STATE(2665)] = 109602, + [SMALL_STATE(2666)] = 109648, + [SMALL_STATE(2667)] = 109694, + [SMALL_STATE(2668)] = 109740, + [SMALL_STATE(2669)] = 109786, + [SMALL_STATE(2670)] = 109832, + [SMALL_STATE(2671)] = 109878, + [SMALL_STATE(2672)] = 109924, + [SMALL_STATE(2673)] = 109970, + [SMALL_STATE(2674)] = 110016, + [SMALL_STATE(2675)] = 110062, + [SMALL_STATE(2676)] = 110108, + [SMALL_STATE(2677)] = 110154, + [SMALL_STATE(2678)] = 110200, + [SMALL_STATE(2679)] = 110246, + [SMALL_STATE(2680)] = 110292, + [SMALL_STATE(2681)] = 110338, + [SMALL_STATE(2682)] = 110384, + [SMALL_STATE(2683)] = 110430, + [SMALL_STATE(2684)] = 110476, + [SMALL_STATE(2685)] = 110522, + [SMALL_STATE(2686)] = 110568, + [SMALL_STATE(2687)] = 110614, + [SMALL_STATE(2688)] = 110660, + [SMALL_STATE(2689)] = 110706, + [SMALL_STATE(2690)] = 110752, + [SMALL_STATE(2691)] = 110798, + [SMALL_STATE(2692)] = 110844, + [SMALL_STATE(2693)] = 110890, + [SMALL_STATE(2694)] = 110936, + [SMALL_STATE(2695)] = 110982, + [SMALL_STATE(2696)] = 111028, + [SMALL_STATE(2697)] = 111074, + [SMALL_STATE(2698)] = 111120, + [SMALL_STATE(2699)] = 111166, + [SMALL_STATE(2700)] = 111212, + [SMALL_STATE(2701)] = 111258, + [SMALL_STATE(2702)] = 111304, + [SMALL_STATE(2703)] = 111350, + [SMALL_STATE(2704)] = 111396, + [SMALL_STATE(2705)] = 111442, + [SMALL_STATE(2706)] = 111488, + [SMALL_STATE(2707)] = 111536, + [SMALL_STATE(2708)] = 111582, + [SMALL_STATE(2709)] = 111628, + [SMALL_STATE(2710)] = 111674, + [SMALL_STATE(2711)] = 111720, + [SMALL_STATE(2712)] = 111766, + [SMALL_STATE(2713)] = 111812, + [SMALL_STATE(2714)] = 111858, + [SMALL_STATE(2715)] = 111904, + [SMALL_STATE(2716)] = 111950, + [SMALL_STATE(2717)] = 111996, + [SMALL_STATE(2718)] = 112042, + [SMALL_STATE(2719)] = 112088, + [SMALL_STATE(2720)] = 112134, + [SMALL_STATE(2721)] = 112180, + [SMALL_STATE(2722)] = 112226, + [SMALL_STATE(2723)] = 112272, + [SMALL_STATE(2724)] = 112318, + [SMALL_STATE(2725)] = 112364, + [SMALL_STATE(2726)] = 112410, + [SMALL_STATE(2727)] = 112456, + [SMALL_STATE(2728)] = 112502, + [SMALL_STATE(2729)] = 112548, + [SMALL_STATE(2730)] = 112594, + [SMALL_STATE(2731)] = 112640, + [SMALL_STATE(2732)] = 112686, + [SMALL_STATE(2733)] = 112732, + [SMALL_STATE(2734)] = 112778, + [SMALL_STATE(2735)] = 112824, + [SMALL_STATE(2736)] = 112870, + [SMALL_STATE(2737)] = 112916, + [SMALL_STATE(2738)] = 112962, + [SMALL_STATE(2739)] = 113008, + [SMALL_STATE(2740)] = 113054, + [SMALL_STATE(2741)] = 113100, + [SMALL_STATE(2742)] = 113146, + [SMALL_STATE(2743)] = 113192, + [SMALL_STATE(2744)] = 113238, + [SMALL_STATE(2745)] = 113284, + [SMALL_STATE(2746)] = 113330, + [SMALL_STATE(2747)] = 113376, + [SMALL_STATE(2748)] = 113422, + [SMALL_STATE(2749)] = 113470, + [SMALL_STATE(2750)] = 113516, + [SMALL_STATE(2751)] = 113562, + [SMALL_STATE(2752)] = 113608, + [SMALL_STATE(2753)] = 113654, + [SMALL_STATE(2754)] = 113700, + [SMALL_STATE(2755)] = 113746, + [SMALL_STATE(2756)] = 113792, + [SMALL_STATE(2757)] = 113838, + [SMALL_STATE(2758)] = 113884, + [SMALL_STATE(2759)] = 113930, + [SMALL_STATE(2760)] = 113976, + [SMALL_STATE(2761)] = 114022, + [SMALL_STATE(2762)] = 114068, + [SMALL_STATE(2763)] = 114114, + [SMALL_STATE(2764)] = 114160, + [SMALL_STATE(2765)] = 114206, + [SMALL_STATE(2766)] = 114252, + [SMALL_STATE(2767)] = 114298, + [SMALL_STATE(2768)] = 114344, + [SMALL_STATE(2769)] = 114390, + [SMALL_STATE(2770)] = 114438, + [SMALL_STATE(2771)] = 114484, + [SMALL_STATE(2772)] = 114530, + [SMALL_STATE(2773)] = 114576, + [SMALL_STATE(2774)] = 114622, + [SMALL_STATE(2775)] = 114668, + [SMALL_STATE(2776)] = 114714, + [SMALL_STATE(2777)] = 114760, + [SMALL_STATE(2778)] = 114806, + [SMALL_STATE(2779)] = 114852, + [SMALL_STATE(2780)] = 114898, + [SMALL_STATE(2781)] = 114944, + [SMALL_STATE(2782)] = 114990, + [SMALL_STATE(2783)] = 115036, + [SMALL_STATE(2784)] = 115082, + [SMALL_STATE(2785)] = 115128, + [SMALL_STATE(2786)] = 115174, + [SMALL_STATE(2787)] = 115220, + [SMALL_STATE(2788)] = 115266, + [SMALL_STATE(2789)] = 115312, + [SMALL_STATE(2790)] = 115358, + [SMALL_STATE(2791)] = 115404, + [SMALL_STATE(2792)] = 115450, + [SMALL_STATE(2793)] = 115496, + [SMALL_STATE(2794)] = 115542, + [SMALL_STATE(2795)] = 115588, + [SMALL_STATE(2796)] = 115634, + [SMALL_STATE(2797)] = 115680, + [SMALL_STATE(2798)] = 115728, + [SMALL_STATE(2799)] = 115808, + [SMALL_STATE(2800)] = 115856, + [SMALL_STATE(2801)] = 115902, + [SMALL_STATE(2802)] = 115948, + [SMALL_STATE(2803)] = 115994, + [SMALL_STATE(2804)] = 116040, + [SMALL_STATE(2805)] = 116086, + [SMALL_STATE(2806)] = 116132, + [SMALL_STATE(2807)] = 116178, + [SMALL_STATE(2808)] = 116224, + [SMALL_STATE(2809)] = 116270, + [SMALL_STATE(2810)] = 116316, + [SMALL_STATE(2811)] = 116362, + [SMALL_STATE(2812)] = 116408, + [SMALL_STATE(2813)] = 116454, + [SMALL_STATE(2814)] = 116500, + [SMALL_STATE(2815)] = 116546, + [SMALL_STATE(2816)] = 116592, + [SMALL_STATE(2817)] = 116638, + [SMALL_STATE(2818)] = 116686, + [SMALL_STATE(2819)] = 116732, + [SMALL_STATE(2820)] = 116778, + [SMALL_STATE(2821)] = 116824, + [SMALL_STATE(2822)] = 116870, + [SMALL_STATE(2823)] = 116928, + [SMALL_STATE(2824)] = 116974, + [SMALL_STATE(2825)] = 117020, + [SMALL_STATE(2826)] = 117066, + [SMALL_STATE(2827)] = 117112, + [SMALL_STATE(2828)] = 117158, + [SMALL_STATE(2829)] = 117204, + [SMALL_STATE(2830)] = 117250, + [SMALL_STATE(2831)] = 117296, + [SMALL_STATE(2832)] = 117342, + [SMALL_STATE(2833)] = 117388, + [SMALL_STATE(2834)] = 117434, + [SMALL_STATE(2835)] = 117480, + [SMALL_STATE(2836)] = 117526, + [SMALL_STATE(2837)] = 117574, + [SMALL_STATE(2838)] = 117620, + [SMALL_STATE(2839)] = 117666, + [SMALL_STATE(2840)] = 117712, + [SMALL_STATE(2841)] = 117758, + [SMALL_STATE(2842)] = 117804, + [SMALL_STATE(2843)] = 117850, + [SMALL_STATE(2844)] = 117896, + [SMALL_STATE(2845)] = 117942, + [SMALL_STATE(2846)] = 117988, + [SMALL_STATE(2847)] = 118034, + [SMALL_STATE(2848)] = 118080, + [SMALL_STATE(2849)] = 118126, + [SMALL_STATE(2850)] = 118172, + [SMALL_STATE(2851)] = 118218, + [SMALL_STATE(2852)] = 118264, + [SMALL_STATE(2853)] = 118310, + [SMALL_STATE(2854)] = 118358, + [SMALL_STATE(2855)] = 118404, + [SMALL_STATE(2856)] = 118450, + [SMALL_STATE(2857)] = 118496, + [SMALL_STATE(2858)] = 118542, + [SMALL_STATE(2859)] = 118588, + [SMALL_STATE(2860)] = 118634, + [SMALL_STATE(2861)] = 118680, + [SMALL_STATE(2862)] = 118726, + [SMALL_STATE(2863)] = 118774, + [SMALL_STATE(2864)] = 118820, + [SMALL_STATE(2865)] = 118866, + [SMALL_STATE(2866)] = 118912, + [SMALL_STATE(2867)] = 118958, + [SMALL_STATE(2868)] = 119040, + [SMALL_STATE(2869)] = 119086, + [SMALL_STATE(2870)] = 119132, + [SMALL_STATE(2871)] = 119178, + [SMALL_STATE(2872)] = 119224, + [SMALL_STATE(2873)] = 119270, + [SMALL_STATE(2874)] = 119316, + [SMALL_STATE(2875)] = 119362, + [SMALL_STATE(2876)] = 119408, + [SMALL_STATE(2877)] = 119454, + [SMALL_STATE(2878)] = 119500, + [SMALL_STATE(2879)] = 119546, + [SMALL_STATE(2880)] = 119592, + [SMALL_STATE(2881)] = 119638, + [SMALL_STATE(2882)] = 119684, + [SMALL_STATE(2883)] = 119730, + [SMALL_STATE(2884)] = 119776, + [SMALL_STATE(2885)] = 119822, + [SMALL_STATE(2886)] = 119868, + [SMALL_STATE(2887)] = 119914, + [SMALL_STATE(2888)] = 119960, + [SMALL_STATE(2889)] = 120006, + [SMALL_STATE(2890)] = 120052, + [SMALL_STATE(2891)] = 120098, + [SMALL_STATE(2892)] = 120144, + [SMALL_STATE(2893)] = 120190, + [SMALL_STATE(2894)] = 120236, + [SMALL_STATE(2895)] = 120282, + [SMALL_STATE(2896)] = 120328, + [SMALL_STATE(2897)] = 120374, + [SMALL_STATE(2898)] = 120422, + [SMALL_STATE(2899)] = 120468, + [SMALL_STATE(2900)] = 120514, + [SMALL_STATE(2901)] = 120560, + [SMALL_STATE(2902)] = 120606, + [SMALL_STATE(2903)] = 120652, + [SMALL_STATE(2904)] = 120698, + [SMALL_STATE(2905)] = 120744, + [SMALL_STATE(2906)] = 120790, + [SMALL_STATE(2907)] = 120838, + [SMALL_STATE(2908)] = 120884, + [SMALL_STATE(2909)] = 120930, + [SMALL_STATE(2910)] = 120980, + [SMALL_STATE(2911)] = 121026, + [SMALL_STATE(2912)] = 121072, + [SMALL_STATE(2913)] = 121118, + [SMALL_STATE(2914)] = 121164, + [SMALL_STATE(2915)] = 121210, + [SMALL_STATE(2916)] = 121256, + [SMALL_STATE(2917)] = 121302, + [SMALL_STATE(2918)] = 121348, + [SMALL_STATE(2919)] = 121394, + [SMALL_STATE(2920)] = 121440, + [SMALL_STATE(2921)] = 121486, + [SMALL_STATE(2922)] = 121532, + [SMALL_STATE(2923)] = 121578, + [SMALL_STATE(2924)] = 121624, + [SMALL_STATE(2925)] = 121670, + [SMALL_STATE(2926)] = 121716, + [SMALL_STATE(2927)] = 121762, + [SMALL_STATE(2928)] = 121810, + [SMALL_STATE(2929)] = 121858, + [SMALL_STATE(2930)] = 121904, + [SMALL_STATE(2931)] = 121950, + [SMALL_STATE(2932)] = 121996, + [SMALL_STATE(2933)] = 122042, + [SMALL_STATE(2934)] = 122088, + [SMALL_STATE(2935)] = 122134, + [SMALL_STATE(2936)] = 122180, + [SMALL_STATE(2937)] = 122226, + [SMALL_STATE(2938)] = 122272, + [SMALL_STATE(2939)] = 122318, + [SMALL_STATE(2940)] = 122364, + [SMALL_STATE(2941)] = 122410, + [SMALL_STATE(2942)] = 122456, + [SMALL_STATE(2943)] = 122502, + [SMALL_STATE(2944)] = 122548, + [SMALL_STATE(2945)] = 122594, + [SMALL_STATE(2946)] = 122640, + [SMALL_STATE(2947)] = 122686, + [SMALL_STATE(2948)] = 122734, + [SMALL_STATE(2949)] = 122780, + [SMALL_STATE(2950)] = 122826, + [SMALL_STATE(2951)] = 122872, + [SMALL_STATE(2952)] = 122918, + [SMALL_STATE(2953)] = 122964, + [SMALL_STATE(2954)] = 123010, + [SMALL_STATE(2955)] = 123056, + [SMALL_STATE(2956)] = 123102, + [SMALL_STATE(2957)] = 123148, + [SMALL_STATE(2958)] = 123194, + [SMALL_STATE(2959)] = 123239, + [SMALL_STATE(2960)] = 123308, + [SMALL_STATE(2961)] = 123353, + [SMALL_STATE(2962)] = 123406, + [SMALL_STATE(2963)] = 123459, + [SMALL_STATE(2964)] = 123504, + [SMALL_STATE(2965)] = 123589, + [SMALL_STATE(2966)] = 123658, + [SMALL_STATE(2967)] = 123743, + [SMALL_STATE(2968)] = 123810, + [SMALL_STATE(2969)] = 123861, + [SMALL_STATE(2970)] = 123912, + [SMALL_STATE(2971)] = 123957, + [SMALL_STATE(2972)] = 124002, + [SMALL_STATE(2973)] = 124076, + [SMALL_STATE(2974)] = 124138, + [SMALL_STATE(2975)] = 124200, + [SMALL_STATE(2976)] = 124258, + [SMALL_STATE(2977)] = 124318, + [SMALL_STATE(2978)] = 124378, + [SMALL_STATE(2979)] = 124440, + [SMALL_STATE(2980)] = 124500, + [SMALL_STATE(2981)] = 124560, + [SMALL_STATE(2982)] = 124620, + [SMALL_STATE(2983)] = 124678, + [SMALL_STATE(2984)] = 124750, + [SMALL_STATE(2985)] = 124810, + [SMALL_STATE(2986)] = 124870, + [SMALL_STATE(2987)] = 124926, + [SMALL_STATE(2988)] = 124984, + [SMALL_STATE(2989)] = 125046, + [SMALL_STATE(2990)] = 125106, + [SMALL_STATE(2991)] = 125166, + [SMALL_STATE(2992)] = 125214, + [SMALL_STATE(2993)] = 125262, + [SMALL_STATE(2994)] = 125322, + [SMALL_STATE(2995)] = 125382, + [SMALL_STATE(2996)] = 125442, + [SMALL_STATE(2997)] = 125504, + [SMALL_STATE(2998)] = 125566, + [SMALL_STATE(2999)] = 125626, + [SMALL_STATE(3000)] = 125688, + [SMALL_STATE(3001)] = 125748, + [SMALL_STATE(3002)] = 125808, + [SMALL_STATE(3003)] = 125868, + [SMALL_STATE(3004)] = 125928, + [SMALL_STATE(3005)] = 125988, + [SMALL_STATE(3006)] = 126048, + [SMALL_STATE(3007)] = 126098, + [SMALL_STATE(3008)] = 126156, + [SMALL_STATE(3009)] = 126218, + [SMALL_STATE(3010)] = 126271, + [SMALL_STATE(3011)] = 126324, + [SMALL_STATE(3012)] = 126377, + [SMALL_STATE(3013)] = 126430, + [SMALL_STATE(3014)] = 126483, + [SMALL_STATE(3015)] = 126536, + [SMALL_STATE(3016)] = 126589, + [SMALL_STATE(3017)] = 126642, + [SMALL_STATE(3018)] = 126695, + [SMALL_STATE(3019)] = 126748, + [SMALL_STATE(3020)] = 126801, + [SMALL_STATE(3021)] = 126854, + [SMALL_STATE(3022)] = 126907, + [SMALL_STATE(3023)] = 126960, + [SMALL_STATE(3024)] = 127013, + [SMALL_STATE(3025)] = 127066, + [SMALL_STATE(3026)] = 127119, + [SMALL_STATE(3027)] = 127172, + [SMALL_STATE(3028)] = 127225, + [SMALL_STATE(3029)] = 127278, + [SMALL_STATE(3030)] = 127331, + [SMALL_STATE(3031)] = 127384, + [SMALL_STATE(3032)] = 127437, + [SMALL_STATE(3033)] = 127490, + [SMALL_STATE(3034)] = 127543, + [SMALL_STATE(3035)] = 127596, + [SMALL_STATE(3036)] = 127639, + [SMALL_STATE(3037)] = 127692, + [SMALL_STATE(3038)] = 127745, + [SMALL_STATE(3039)] = 127798, + [SMALL_STATE(3040)] = 127851, + [SMALL_STATE(3041)] = 127904, + [SMALL_STATE(3042)] = 127957, + [SMALL_STATE(3043)] = 128010, + [SMALL_STATE(3044)] = 128063, + [SMALL_STATE(3045)] = 128116, + [SMALL_STATE(3046)] = 128169, + [SMALL_STATE(3047)] = 128222, + [SMALL_STATE(3048)] = 128275, + [SMALL_STATE(3049)] = 128328, + [SMALL_STATE(3050)] = 128381, + [SMALL_STATE(3051)] = 128434, + [SMALL_STATE(3052)] = 128487, + [SMALL_STATE(3053)] = 128540, + [SMALL_STATE(3054)] = 128593, + [SMALL_STATE(3055)] = 128646, + [SMALL_STATE(3056)] = 128699, + [SMALL_STATE(3057)] = 128752, + [SMALL_STATE(3058)] = 128805, + [SMALL_STATE(3059)] = 128858, + [SMALL_STATE(3060)] = 128911, + [SMALL_STATE(3061)] = 128964, + [SMALL_STATE(3062)] = 129017, + [SMALL_STATE(3063)] = 129070, + [SMALL_STATE(3064)] = 129123, + [SMALL_STATE(3065)] = 129176, + [SMALL_STATE(3066)] = 129229, + [SMALL_STATE(3067)] = 129282, + [SMALL_STATE(3068)] = 129335, + [SMALL_STATE(3069)] = 129388, + [SMALL_STATE(3070)] = 129441, + [SMALL_STATE(3071)] = 129494, + [SMALL_STATE(3072)] = 129547, + [SMALL_STATE(3073)] = 129600, + [SMALL_STATE(3074)] = 129653, + [SMALL_STATE(3075)] = 129706, + [SMALL_STATE(3076)] = 129759, + [SMALL_STATE(3077)] = 129812, + [SMALL_STATE(3078)] = 129865, + [SMALL_STATE(3079)] = 129918, + [SMALL_STATE(3080)] = 129971, + [SMALL_STATE(3081)] = 130024, + [SMALL_STATE(3082)] = 130077, + [SMALL_STATE(3083)] = 130130, + [SMALL_STATE(3084)] = 130183, + [SMALL_STATE(3085)] = 130236, + [SMALL_STATE(3086)] = 130289, + [SMALL_STATE(3087)] = 130342, + [SMALL_STATE(3088)] = 130395, + [SMALL_STATE(3089)] = 130448, + [SMALL_STATE(3090)] = 130501, + [SMALL_STATE(3091)] = 130554, + [SMALL_STATE(3092)] = 130607, + [SMALL_STATE(3093)] = 130660, + [SMALL_STATE(3094)] = 130703, + [SMALL_STATE(3095)] = 130756, + [SMALL_STATE(3096)] = 130809, + [SMALL_STATE(3097)] = 130862, + [SMALL_STATE(3098)] = 130915, + [SMALL_STATE(3099)] = 130968, + [SMALL_STATE(3100)] = 131021, + [SMALL_STATE(3101)] = 131074, + [SMALL_STATE(3102)] = 131127, + [SMALL_STATE(3103)] = 131180, + [SMALL_STATE(3104)] = 131233, + [SMALL_STATE(3105)] = 131286, + [SMALL_STATE(3106)] = 131339, + [SMALL_STATE(3107)] = 131392, + [SMALL_STATE(3108)] = 131445, + [SMALL_STATE(3109)] = 131498, + [SMALL_STATE(3110)] = 131551, + [SMALL_STATE(3111)] = 131604, + [SMALL_STATE(3112)] = 131657, + [SMALL_STATE(3113)] = 131710, + [SMALL_STATE(3114)] = 131763, + [SMALL_STATE(3115)] = 131826, + [SMALL_STATE(3116)] = 131879, + [SMALL_STATE(3117)] = 131932, + [SMALL_STATE(3118)] = 131985, + [SMALL_STATE(3119)] = 132038, + [SMALL_STATE(3120)] = 132091, + [SMALL_STATE(3121)] = 132144, + [SMALL_STATE(3122)] = 132197, + [SMALL_STATE(3123)] = 132250, + [SMALL_STATE(3124)] = 132303, + [SMALL_STATE(3125)] = 132356, + [SMALL_STATE(3126)] = 132409, + [SMALL_STATE(3127)] = 132462, + [SMALL_STATE(3128)] = 132515, + [SMALL_STATE(3129)] = 132578, + [SMALL_STATE(3130)] = 132631, + [SMALL_STATE(3131)] = 132684, + [SMALL_STATE(3132)] = 132726, + [SMALL_STATE(3133)] = 132768, + [SMALL_STATE(3134)] = 132810, + [SMALL_STATE(3135)] = 132864, + [SMALL_STATE(3136)] = 132918, + [SMALL_STATE(3137)] = 132972, + [SMALL_STATE(3138)] = 133052, + [SMALL_STATE(3139)] = 133132, + [SMALL_STATE(3140)] = 133186, + [SMALL_STATE(3141)] = 133252, + [SMALL_STATE(3142)] = 133306, + [SMALL_STATE(3143)] = 133360, + [SMALL_STATE(3144)] = 133440, + [SMALL_STATE(3145)] = 133494, + [SMALL_STATE(3146)] = 133548, + [SMALL_STATE(3147)] = 133602, + [SMALL_STATE(3148)] = 133666, + [SMALL_STATE(3149)] = 133726, + [SMALL_STATE(3150)] = 133790, + [SMALL_STATE(3151)] = 133850, + [SMALL_STATE(3152)] = 133930, + [SMALL_STATE(3153)] = 133984, + [SMALL_STATE(3154)] = 134064, + [SMALL_STATE(3155)] = 134128, + [SMALL_STATE(3156)] = 134187, + [SMALL_STATE(3157)] = 134244, + [SMALL_STATE(3158)] = 134301, + [SMALL_STATE(3159)] = 134360, + [SMALL_STATE(3160)] = 134417, + [SMALL_STATE(3161)] = 134474, + [SMALL_STATE(3162)] = 134517, + [SMALL_STATE(3163)] = 134576, + [SMALL_STATE(3164)] = 134633, + [SMALL_STATE(3165)] = 134690, + [SMALL_STATE(3166)] = 134749, + [SMALL_STATE(3167)] = 134806, + [SMALL_STATE(3168)] = 134863, + [SMALL_STATE(3169)] = 134922, + [SMALL_STATE(3170)] = 134981, + [SMALL_STATE(3171)] = 135034, + [SMALL_STATE(3172)] = 135087, + [SMALL_STATE(3173)] = 135146, + [SMALL_STATE(3174)] = 135203, + [SMALL_STATE(3175)] = 135262, + [SMALL_STATE(3176)] = 135313, + [SMALL_STATE(3177)] = 135370, + [SMALL_STATE(3178)] = 135427, + [SMALL_STATE(3179)] = 135484, + [SMALL_STATE(3180)] = 135527, + [SMALL_STATE(3181)] = 135577, + [SMALL_STATE(3182)] = 135625, + [SMALL_STATE(3183)] = 135673, + [SMALL_STATE(3184)] = 135721, + [SMALL_STATE(3185)] = 135769, + [SMALL_STATE(3186)] = 135817, + [SMALL_STATE(3187)] = 135865, + [SMALL_STATE(3188)] = 135913, + [SMALL_STATE(3189)] = 135961, + [SMALL_STATE(3190)] = 136009, + [SMALL_STATE(3191)] = 136057, + [SMALL_STATE(3192)] = 136105, + [SMALL_STATE(3193)] = 136153, + [SMALL_STATE(3194)] = 136203, + [SMALL_STATE(3195)] = 136251, + [SMALL_STATE(3196)] = 136299, + [SMALL_STATE(3197)] = 136347, + [SMALL_STATE(3198)] = 136395, + [SMALL_STATE(3199)] = 136443, + [SMALL_STATE(3200)] = 136491, + [SMALL_STATE(3201)] = 136539, + [SMALL_STATE(3202)] = 136587, + [SMALL_STATE(3203)] = 136635, + [SMALL_STATE(3204)] = 136683, + [SMALL_STATE(3205)] = 136731, + [SMALL_STATE(3206)] = 136779, + [SMALL_STATE(3207)] = 136827, + [SMALL_STATE(3208)] = 136875, + [SMALL_STATE(3209)] = 136923, + [SMALL_STATE(3210)] = 136971, + [SMALL_STATE(3211)] = 137019, + [SMALL_STATE(3212)] = 137067, + [SMALL_STATE(3213)] = 137115, + [SMALL_STATE(3214)] = 137165, + [SMALL_STATE(3215)] = 137213, + [SMALL_STATE(3216)] = 137263, + [SMALL_STATE(3217)] = 137311, + [SMALL_STATE(3218)] = 137359, + [SMALL_STATE(3219)] = 137407, + [SMALL_STATE(3220)] = 137455, + [SMALL_STATE(3221)] = 137503, + [SMALL_STATE(3222)] = 137551, + [SMALL_STATE(3223)] = 137599, + [SMALL_STATE(3224)] = 137647, + [SMALL_STATE(3225)] = 137695, + [SMALL_STATE(3226)] = 137745, + [SMALL_STATE(3227)] = 137793, + [SMALL_STATE(3228)] = 137841, + [SMALL_STATE(3229)] = 137889, + [SMALL_STATE(3230)] = 137937, + [SMALL_STATE(3231)] = 137985, + [SMALL_STATE(3232)] = 138035, + [SMALL_STATE(3233)] = 138085, + [SMALL_STATE(3234)] = 138133, + [SMALL_STATE(3235)] = 138181, + [SMALL_STATE(3236)] = 138229, + [SMALL_STATE(3237)] = 138277, + [SMALL_STATE(3238)] = 138325, + [SMALL_STATE(3239)] = 138373, + [SMALL_STATE(3240)] = 138421, + [SMALL_STATE(3241)] = 138469, + [SMALL_STATE(3242)] = 138517, + [SMALL_STATE(3243)] = 138565, + [SMALL_STATE(3244)] = 138615, + [SMALL_STATE(3245)] = 138663, + [SMALL_STATE(3246)] = 138711, + [SMALL_STATE(3247)] = 138759, + [SMALL_STATE(3248)] = 138807, + [SMALL_STATE(3249)] = 138855, + [SMALL_STATE(3250)] = 138903, + [SMALL_STATE(3251)] = 138951, + [SMALL_STATE(3252)] = 138999, + [SMALL_STATE(3253)] = 139047, + [SMALL_STATE(3254)] = 139097, + [SMALL_STATE(3255)] = 139145, + [SMALL_STATE(3256)] = 139193, + [SMALL_STATE(3257)] = 139241, + [SMALL_STATE(3258)] = 139289, + [SMALL_STATE(3259)] = 139337, + [SMALL_STATE(3260)] = 139385, + [SMALL_STATE(3261)] = 139433, + [SMALL_STATE(3262)] = 139483, + [SMALL_STATE(3263)] = 139531, + [SMALL_STATE(3264)] = 139579, + [SMALL_STATE(3265)] = 139627, + [SMALL_STATE(3266)] = 139675, + [SMALL_STATE(3267)] = 139723, + [SMALL_STATE(3268)] = 139771, + [SMALL_STATE(3269)] = 139819, + [SMALL_STATE(3270)] = 139869, + [SMALL_STATE(3271)] = 139917, + [SMALL_STATE(3272)] = 139965, + [SMALL_STATE(3273)] = 140015, + [SMALL_STATE(3274)] = 140063, + [SMALL_STATE(3275)] = 140111, + [SMALL_STATE(3276)] = 140159, + [SMALL_STATE(3277)] = 140209, + [SMALL_STATE(3278)] = 140257, + [SMALL_STATE(3279)] = 140305, + [SMALL_STATE(3280)] = 140353, + [SMALL_STATE(3281)] = 140403, + [SMALL_STATE(3282)] = 140451, + [SMALL_STATE(3283)] = 140499, + [SMALL_STATE(3284)] = 140547, + [SMALL_STATE(3285)] = 140595, + [SMALL_STATE(3286)] = 140643, + [SMALL_STATE(3287)] = 140691, + [SMALL_STATE(3288)] = 140739, + [SMALL_STATE(3289)] = 140787, + [SMALL_STATE(3290)] = 140835, + [SMALL_STATE(3291)] = 140883, + [SMALL_STATE(3292)] = 140931, + [SMALL_STATE(3293)] = 140979, + [SMALL_STATE(3294)] = 141027, + [SMALL_STATE(3295)] = 141075, + [SMALL_STATE(3296)] = 141123, + [SMALL_STATE(3297)] = 141171, + [SMALL_STATE(3298)] = 141219, + [SMALL_STATE(3299)] = 141267, + [SMALL_STATE(3300)] = 141302, + [SMALL_STATE(3301)] = 141343, + [SMALL_STATE(3302)] = 141384, + [SMALL_STATE(3303)] = 141425, + [SMALL_STATE(3304)] = 141453, + [SMALL_STATE(3305)] = 141481, + [SMALL_STATE(3306)] = 141509, + [SMALL_STATE(3307)] = 141537, + [SMALL_STATE(3308)] = 141565, + [SMALL_STATE(3309)] = 141593, + [SMALL_STATE(3310)] = 141621, + [SMALL_STATE(3311)] = 141649, + [SMALL_STATE(3312)] = 141677, + [SMALL_STATE(3313)] = 141705, + [SMALL_STATE(3314)] = 141733, + [SMALL_STATE(3315)] = 141761, + [SMALL_STATE(3316)] = 141789, + [SMALL_STATE(3317)] = 141817, + [SMALL_STATE(3318)] = 141845, + [SMALL_STATE(3319)] = 141873, + [SMALL_STATE(3320)] = 141901, + [SMALL_STATE(3321)] = 141929, + [SMALL_STATE(3322)] = 141957, + [SMALL_STATE(3323)] = 141985, + [SMALL_STATE(3324)] = 142013, + [SMALL_STATE(3325)] = 142041, + [SMALL_STATE(3326)] = 142069, + [SMALL_STATE(3327)] = 142097, + [SMALL_STATE(3328)] = 142125, + [SMALL_STATE(3329)] = 142153, + [SMALL_STATE(3330)] = 142181, + [SMALL_STATE(3331)] = 142209, + [SMALL_STATE(3332)] = 142237, + [SMALL_STATE(3333)] = 142265, + [SMALL_STATE(3334)] = 142293, + [SMALL_STATE(3335)] = 142321, + [SMALL_STATE(3336)] = 142349, + [SMALL_STATE(3337)] = 142377, + [SMALL_STATE(3338)] = 142404, + [SMALL_STATE(3339)] = 142453, + [SMALL_STATE(3340)] = 142480, + [SMALL_STATE(3341)] = 142506, + [SMALL_STATE(3342)] = 142532, + [SMALL_STATE(3343)] = 142570, + [SMALL_STATE(3344)] = 142596, + [SMALL_STATE(3345)] = 142634, + [SMALL_STATE(3346)] = 142668, + [SMALL_STATE(3347)] = 142694, + [SMALL_STATE(3348)] = 142720, + [SMALL_STATE(3349)] = 142750, + [SMALL_STATE(3350)] = 142780, + [SMALL_STATE(3351)] = 142808, + [SMALL_STATE(3352)] = 142840, + [SMALL_STATE(3353)] = 142868, + [SMALL_STATE(3354)] = 142894, + [SMALL_STATE(3355)] = 142920, + [SMALL_STATE(3356)] = 142958, + [SMALL_STATE(3357)] = 142984, + [SMALL_STATE(3358)] = 143010, + [SMALL_STATE(3359)] = 143035, + [SMALL_STATE(3360)] = 143064, + [SMALL_STATE(3361)] = 143095, + [SMALL_STATE(3362)] = 143120, + [SMALL_STATE(3363)] = 143147, + [SMALL_STATE(3364)] = 143172, + [SMALL_STATE(3365)] = 143197, + [SMALL_STATE(3366)] = 143221, + [SMALL_STATE(3367)] = 143253, + [SMALL_STATE(3368)] = 143277, + [SMALL_STATE(3369)] = 143301, + [SMALL_STATE(3370)] = 143323, + [SMALL_STATE(3371)] = 143347, + [SMALL_STATE(3372)] = 143381, + [SMALL_STATE(3373)] = 143415, + [SMALL_STATE(3374)] = 143437, + [SMALL_STATE(3375)] = 143461, + [SMALL_STATE(3376)] = 143495, + [SMALL_STATE(3377)] = 143527, + [SMALL_STATE(3378)] = 143553, + [SMALL_STATE(3379)] = 143577, + [SMALL_STATE(3380)] = 143611, + [SMALL_STATE(3381)] = 143639, + [SMALL_STATE(3382)] = 143663, + [SMALL_STATE(3383)] = 143685, + [SMALL_STATE(3384)] = 143709, + [SMALL_STATE(3385)] = 143733, + [SMALL_STATE(3386)] = 143757, + [SMALL_STATE(3387)] = 143791, + [SMALL_STATE(3388)] = 143825, + [SMALL_STATE(3389)] = 143849, + [SMALL_STATE(3390)] = 143883, + [SMALL_STATE(3391)] = 143907, + [SMALL_STATE(3392)] = 143931, + [SMALL_STATE(3393)] = 143965, + [SMALL_STATE(3394)] = 143989, + [SMALL_STATE(3395)] = 144013, + [SMALL_STATE(3396)] = 144047, + [SMALL_STATE(3397)] = 144071, + [SMALL_STATE(3398)] = 144103, + [SMALL_STATE(3399)] = 144127, + [SMALL_STATE(3400)] = 144151, + [SMALL_STATE(3401)] = 144175, + [SMALL_STATE(3402)] = 144199, + [SMALL_STATE(3403)] = 144223, + [SMALL_STATE(3404)] = 144247, + [SMALL_STATE(3405)] = 144271, + [SMALL_STATE(3406)] = 144293, + [SMALL_STATE(3407)] = 144319, + [SMALL_STATE(3408)] = 144351, + [SMALL_STATE(3409)] = 144375, + [SMALL_STATE(3410)] = 144399, + [SMALL_STATE(3411)] = 144423, + [SMALL_STATE(3412)] = 144447, + [SMALL_STATE(3413)] = 144471, + [SMALL_STATE(3414)] = 144495, + [SMALL_STATE(3415)] = 144527, + [SMALL_STATE(3416)] = 144561, + [SMALL_STATE(3417)] = 144585, + [SMALL_STATE(3418)] = 144619, + [SMALL_STATE(3419)] = 144653, + [SMALL_STATE(3420)] = 144677, + [SMALL_STATE(3421)] = 144701, + [SMALL_STATE(3422)] = 144725, + [SMALL_STATE(3423)] = 144749, + [SMALL_STATE(3424)] = 144773, + [SMALL_STATE(3425)] = 144797, + [SMALL_STATE(3426)] = 144821, + [SMALL_STATE(3427)] = 144845, + [SMALL_STATE(3428)] = 144869, + [SMALL_STATE(3429)] = 144893, + [SMALL_STATE(3430)] = 144917, + [SMALL_STATE(3431)] = 144941, + [SMALL_STATE(3432)] = 144963, + [SMALL_STATE(3433)] = 144987, + [SMALL_STATE(3434)] = 145011, + [SMALL_STATE(3435)] = 145035, + [SMALL_STATE(3436)] = 145057, + [SMALL_STATE(3437)] = 145081, + [SMALL_STATE(3438)] = 145115, + [SMALL_STATE(3439)] = 145137, + [SMALL_STATE(3440)] = 145161, + [SMALL_STATE(3441)] = 145185, + [SMALL_STATE(3442)] = 145219, + [SMALL_STATE(3443)] = 145243, + [SMALL_STATE(3444)] = 145267, + [SMALL_STATE(3445)] = 145301, + [SMALL_STATE(3446)] = 145325, + [SMALL_STATE(3447)] = 145349, + [SMALL_STATE(3448)] = 145373, + [SMALL_STATE(3449)] = 145397, + [SMALL_STATE(3450)] = 145421, + [SMALL_STATE(3451)] = 145445, + [SMALL_STATE(3452)] = 145467, + [SMALL_STATE(3453)] = 145501, + [SMALL_STATE(3454)] = 145525, + [SMALL_STATE(3455)] = 145559, + [SMALL_STATE(3456)] = 145583, + [SMALL_STATE(3457)] = 145607, + [SMALL_STATE(3458)] = 145631, + [SMALL_STATE(3459)] = 145655, + [SMALL_STATE(3460)] = 145679, + [SMALL_STATE(3461)] = 145703, + [SMALL_STATE(3462)] = 145737, + [SMALL_STATE(3463)] = 145759, + [SMALL_STATE(3464)] = 145783, + [SMALL_STATE(3465)] = 145815, + [SMALL_STATE(3466)] = 145839, + [SMALL_STATE(3467)] = 145861, + [SMALL_STATE(3468)] = 145890, + [SMALL_STATE(3469)] = 145935, + [SMALL_STATE(3470)] = 145978, + [SMALL_STATE(3471)] = 146021, + [SMALL_STATE(3472)] = 146048, + [SMALL_STATE(3473)] = 146077, + [SMALL_STATE(3474)] = 146120, + [SMALL_STATE(3475)] = 146149, + [SMALL_STATE(3476)] = 146192, + [SMALL_STATE(3477)] = 146235, + [SMALL_STATE(3478)] = 146278, + [SMALL_STATE(3479)] = 146321, + [SMALL_STATE(3480)] = 146364, + [SMALL_STATE(3481)] = 146407, + [SMALL_STATE(3482)] = 146446, + [SMALL_STATE(3483)] = 146475, + [SMALL_STATE(3484)] = 146518, + [SMALL_STATE(3485)] = 146557, + [SMALL_STATE(3486)] = 146600, + [SMALL_STATE(3487)] = 146639, + [SMALL_STATE(3488)] = 146668, + [SMALL_STATE(3489)] = 146711, + [SMALL_STATE(3490)] = 146750, + [SMALL_STATE(3491)] = 146775, + [SMALL_STATE(3492)] = 146814, + [SMALL_STATE(3493)] = 146857, + [SMALL_STATE(3494)] = 146900, + [SMALL_STATE(3495)] = 146943, + [SMALL_STATE(3496)] = 146972, + [SMALL_STATE(3497)] = 147001, + [SMALL_STATE(3498)] = 147044, + [SMALL_STATE(3499)] = 147073, + [SMALL_STATE(3500)] = 147116, + [SMALL_STATE(3501)] = 147141, + [SMALL_STATE(3502)] = 147170, + [SMALL_STATE(3503)] = 147213, + [SMALL_STATE(3504)] = 147256, + [SMALL_STATE(3505)] = 147281, + [SMALL_STATE(3506)] = 147324, + [SMALL_STATE(3507)] = 147367, + [SMALL_STATE(3508)] = 147410, + [SMALL_STATE(3509)] = 147453, + [SMALL_STATE(3510)] = 147481, + [SMALL_STATE(3511)] = 147501, + [SMALL_STATE(3512)] = 147529, + [SMALL_STATE(3513)] = 147557, + [SMALL_STATE(3514)] = 147593, + [SMALL_STATE(3515)] = 147629, + [SMALL_STATE(3516)] = 147665, + [SMALL_STATE(3517)] = 147689, + [SMALL_STATE(3518)] = 147711, + [SMALL_STATE(3519)] = 147735, + [SMALL_STATE(3520)] = 147757, + [SMALL_STATE(3521)] = 147785, + [SMALL_STATE(3522)] = 147807, + [SMALL_STATE(3523)] = 147831, + [SMALL_STATE(3524)] = 147853, + [SMALL_STATE(3525)] = 147889, + [SMALL_STATE(3526)] = 147911, + [SMALL_STATE(3527)] = 147933, + [SMALL_STATE(3528)] = 147961, + [SMALL_STATE(3529)] = 147997, + [SMALL_STATE(3530)] = 148033, + [SMALL_STATE(3531)] = 148061, + [SMALL_STATE(3532)] = 148087, + [SMALL_STATE(3533)] = 148115, + [SMALL_STATE(3534)] = 148153, + [SMALL_STATE(3535)] = 148189, + [SMALL_STATE(3536)] = 148217, + [SMALL_STATE(3537)] = 148245, + [SMALL_STATE(3538)] = 148281, + [SMALL_STATE(3539)] = 148301, + [SMALL_STATE(3540)] = 148321, + [SMALL_STATE(3541)] = 148343, + [SMALL_STATE(3542)] = 148365, + [SMALL_STATE(3543)] = 148385, + [SMALL_STATE(3544)] = 148407, + [SMALL_STATE(3545)] = 148427, + [SMALL_STATE(3546)] = 148463, + [SMALL_STATE(3547)] = 148483, + [SMALL_STATE(3548)] = 148519, + [SMALL_STATE(3549)] = 148539, + [SMALL_STATE(3550)] = 148561, + [SMALL_STATE(3551)] = 148581, + [SMALL_STATE(3552)] = 148601, + [SMALL_STATE(3553)] = 148627, + [SMALL_STATE(3554)] = 148653, + [SMALL_STATE(3555)] = 148673, + [SMALL_STATE(3556)] = 148693, + [SMALL_STATE(3557)] = 148713, + [SMALL_STATE(3558)] = 148733, + [SMALL_STATE(3559)] = 148753, + [SMALL_STATE(3560)] = 148773, + [SMALL_STATE(3561)] = 148793, + [SMALL_STATE(3562)] = 148813, + [SMALL_STATE(3563)] = 148833, + [SMALL_STATE(3564)] = 148853, + [SMALL_STATE(3565)] = 148873, + [SMALL_STATE(3566)] = 148893, + [SMALL_STATE(3567)] = 148913, + [SMALL_STATE(3568)] = 148937, + [SMALL_STATE(3569)] = 148957, + [SMALL_STATE(3570)] = 148977, + [SMALL_STATE(3571)] = 148999, + [SMALL_STATE(3572)] = 149021, + [SMALL_STATE(3573)] = 149045, + [SMALL_STATE(3574)] = 149067, + [SMALL_STATE(3575)] = 149089, + [SMALL_STATE(3576)] = 149111, + [SMALL_STATE(3577)] = 149131, + [SMALL_STATE(3578)] = 149151, + [SMALL_STATE(3579)] = 149171, + [SMALL_STATE(3580)] = 149191, + [SMALL_STATE(3581)] = 149211, + [SMALL_STATE(3582)] = 149231, + [SMALL_STATE(3583)] = 149251, + [SMALL_STATE(3584)] = 149271, + [SMALL_STATE(3585)] = 149291, + [SMALL_STATE(3586)] = 149311, + [SMALL_STATE(3587)] = 149348, + [SMALL_STATE(3588)] = 149377, + [SMALL_STATE(3589)] = 149398, + [SMALL_STATE(3590)] = 149435, + [SMALL_STATE(3591)] = 149456, + [SMALL_STATE(3592)] = 149493, + [SMALL_STATE(3593)] = 149516, + [SMALL_STATE(3594)] = 149539, + [SMALL_STATE(3595)] = 149576, + [SMALL_STATE(3596)] = 149613, + [SMALL_STATE(3597)] = 149650, + [SMALL_STATE(3598)] = 149679, + [SMALL_STATE(3599)] = 149712, + [SMALL_STATE(3600)] = 149737, + [SMALL_STATE(3601)] = 149774, + [SMALL_STATE(3602)] = 149807, + [SMALL_STATE(3603)] = 149838, + [SMALL_STATE(3604)] = 149875, + [SMALL_STATE(3605)] = 149912, + [SMALL_STATE(3606)] = 149949, + [SMALL_STATE(3607)] = 149980, + [SMALL_STATE(3608)] = 150017, + [SMALL_STATE(3609)] = 150048, + [SMALL_STATE(3610)] = 150079, + [SMALL_STATE(3611)] = 150110, + [SMALL_STATE(3612)] = 150143, + [SMALL_STATE(3613)] = 150180, + [SMALL_STATE(3614)] = 150201, + [SMALL_STATE(3615)] = 150238, + [SMALL_STATE(3616)] = 150275, + [SMALL_STATE(3617)] = 150296, + [SMALL_STATE(3618)] = 150333, + [SMALL_STATE(3619)] = 150352, + [SMALL_STATE(3620)] = 150381, + [SMALL_STATE(3621)] = 150418, + [SMALL_STATE(3622)] = 150451, + [SMALL_STATE(3623)] = 150480, + [SMALL_STATE(3624)] = 150513, + [SMALL_STATE(3625)] = 150546, + [SMALL_STATE(3626)] = 150579, + [SMALL_STATE(3627)] = 150616, + [SMALL_STATE(3628)] = 150641, + [SMALL_STATE(3629)] = 150678, + [SMALL_STATE(3630)] = 150697, + [SMALL_STATE(3631)] = 150730, + [SMALL_STATE(3632)] = 150753, + [SMALL_STATE(3633)] = 150790, + [SMALL_STATE(3634)] = 150827, + [SMALL_STATE(3635)] = 150856, + [SMALL_STATE(3636)] = 150893, + [SMALL_STATE(3637)] = 150930, + [SMALL_STATE(3638)] = 150963, + [SMALL_STATE(3639)] = 151000, + [SMALL_STATE(3640)] = 151023, + [SMALL_STATE(3641)] = 151056, + [SMALL_STATE(3642)] = 151095, + [SMALL_STATE(3643)] = 151113, + [SMALL_STATE(3644)] = 151137, + [SMALL_STATE(3645)] = 151159, + [SMALL_STATE(3646)] = 151177, + [SMALL_STATE(3647)] = 151197, + [SMALL_STATE(3648)] = 151217, + [SMALL_STATE(3649)] = 151235, + [SMALL_STATE(3650)] = 151257, + [SMALL_STATE(3651)] = 151279, + [SMALL_STATE(3652)] = 151315, + [SMALL_STATE(3653)] = 151335, + [SMALL_STATE(3654)] = 151353, + [SMALL_STATE(3655)] = 151371, + [SMALL_STATE(3656)] = 151389, + [SMALL_STATE(3657)] = 151407, + [SMALL_STATE(3658)] = 151427, + [SMALL_STATE(3659)] = 151451, + [SMALL_STATE(3660)] = 151471, + [SMALL_STATE(3661)] = 151489, + [SMALL_STATE(3662)] = 151507, + [SMALL_STATE(3663)] = 151527, + [SMALL_STATE(3664)] = 151547, + [SMALL_STATE(3665)] = 151567, + [SMALL_STATE(3666)] = 151587, + [SMALL_STATE(3667)] = 151611, + [SMALL_STATE(3668)] = 151635, + [SMALL_STATE(3669)] = 151659, + [SMALL_STATE(3670)] = 151679, + [SMALL_STATE(3671)] = 151699, + [SMALL_STATE(3672)] = 151719, + [SMALL_STATE(3673)] = 151741, + [SMALL_STATE(3674)] = 151761, + [SMALL_STATE(3675)] = 151781, + [SMALL_STATE(3676)] = 151801, + [SMALL_STATE(3677)] = 151821, + [SMALL_STATE(3678)] = 151839, + [SMALL_STATE(3679)] = 151859, + [SMALL_STATE(3680)] = 151879, + [SMALL_STATE(3681)] = 151897, + [SMALL_STATE(3682)] = 151923, + [SMALL_STATE(3683)] = 151941, + [SMALL_STATE(3684)] = 151961, + [SMALL_STATE(3685)] = 151983, + [SMALL_STATE(3686)] = 152003, + [SMALL_STATE(3687)] = 152023, + [SMALL_STATE(3688)] = 152041, + [SMALL_STATE(3689)] = 152065, + [SMALL_STATE(3690)] = 152087, + [SMALL_STATE(3691)] = 152109, + [SMALL_STATE(3692)] = 152133, + [SMALL_STATE(3693)] = 152153, + [SMALL_STATE(3694)] = 152173, + [SMALL_STATE(3695)] = 152191, + [SMALL_STATE(3696)] = 152217, + [SMALL_STATE(3697)] = 152237, + [SMALL_STATE(3698)] = 152257, + [SMALL_STATE(3699)] = 152277, + [SMALL_STATE(3700)] = 152297, + [SMALL_STATE(3701)] = 152317, + [SMALL_STATE(3702)] = 152337, + [SMALL_STATE(3703)] = 152357, + [SMALL_STATE(3704)] = 152377, + [SMALL_STATE(3705)] = 152401, + [SMALL_STATE(3706)] = 152421, + [SMALL_STATE(3707)] = 152441, + [SMALL_STATE(3708)] = 152461, + [SMALL_STATE(3709)] = 152481, + [SMALL_STATE(3710)] = 152501, + [SMALL_STATE(3711)] = 152523, + [SMALL_STATE(3712)] = 152543, + [SMALL_STATE(3713)] = 152563, + [SMALL_STATE(3714)] = 152586, + [SMALL_STATE(3715)] = 152621, + [SMALL_STATE(3716)] = 152638, + [SMALL_STATE(3717)] = 152673, + [SMALL_STATE(3718)] = 152690, + [SMALL_STATE(3719)] = 152725, + [SMALL_STATE(3720)] = 152748, + [SMALL_STATE(3721)] = 152783, + [SMALL_STATE(3722)] = 152818, + [SMALL_STATE(3723)] = 152839, + [SMALL_STATE(3724)] = 152874, + [SMALL_STATE(3725)] = 152905, + [SMALL_STATE(3726)] = 152940, + [SMALL_STATE(3727)] = 152963, + [SMALL_STATE(3728)] = 152980, + [SMALL_STATE(3729)] = 153015, + [SMALL_STATE(3730)] = 153050, + [SMALL_STATE(3731)] = 153069, + [SMALL_STATE(3732)] = 153088, + [SMALL_STATE(3733)] = 153109, + [SMALL_STATE(3734)] = 153142, + [SMALL_STATE(3735)] = 153159, + [SMALL_STATE(3736)] = 153178, + [SMALL_STATE(3737)] = 153209, + [SMALL_STATE(3738)] = 153242, + [SMALL_STATE(3739)] = 153263, + [SMALL_STATE(3740)] = 153288, + [SMALL_STATE(3741)] = 153323, + [SMALL_STATE(3742)] = 153358, + [SMALL_STATE(3743)] = 153387, + [SMALL_STATE(3744)] = 153416, + [SMALL_STATE(3745)] = 153435, + [SMALL_STATE(3746)] = 153461, + [SMALL_STATE(3747)] = 153477, + [SMALL_STATE(3748)] = 153493, + [SMALL_STATE(3749)] = 153509, + [SMALL_STATE(3750)] = 153525, + [SMALL_STATE(3751)] = 153557, + [SMALL_STATE(3752)] = 153589, + [SMALL_STATE(3753)] = 153605, + [SMALL_STATE(3754)] = 153623, + [SMALL_STATE(3755)] = 153651, + [SMALL_STATE(3756)] = 153679, + [SMALL_STATE(3757)] = 153705, + [SMALL_STATE(3758)] = 153721, + [SMALL_STATE(3759)] = 153737, + [SMALL_STATE(3760)] = 153755, + [SMALL_STATE(3761)] = 153771, + [SMALL_STATE(3762)] = 153799, + [SMALL_STATE(3763)] = 153815, + [SMALL_STATE(3764)] = 153831, + [SMALL_STATE(3765)] = 153863, + [SMALL_STATE(3766)] = 153895, + [SMALL_STATE(3767)] = 153921, + [SMALL_STATE(3768)] = 153947, + [SMALL_STATE(3769)] = 153979, + [SMALL_STATE(3770)] = 153997, + [SMALL_STATE(3771)] = 154013, + [SMALL_STATE(3772)] = 154029, + [SMALL_STATE(3773)] = 154051, + [SMALL_STATE(3774)] = 154067, + [SMALL_STATE(3775)] = 154093, + [SMALL_STATE(3776)] = 154121, + [SMALL_STATE(3777)] = 154139, + [SMALL_STATE(3778)] = 154171, + [SMALL_STATE(3779)] = 154199, + [SMALL_STATE(3780)] = 154229, + [SMALL_STATE(3781)] = 154257, + [SMALL_STATE(3782)] = 154285, + [SMALL_STATE(3783)] = 154317, + [SMALL_STATE(3784)] = 154343, + [SMALL_STATE(3785)] = 154375, + [SMALL_STATE(3786)] = 154407, + [SMALL_STATE(3787)] = 154439, + [SMALL_STATE(3788)] = 154455, + [SMALL_STATE(3789)] = 154487, + [SMALL_STATE(3790)] = 154515, + [SMALL_STATE(3791)] = 154547, + [SMALL_STATE(3792)] = 154579, + [SMALL_STATE(3793)] = 154611, + [SMALL_STATE(3794)] = 154639, + [SMALL_STATE(3795)] = 154671, + [SMALL_STATE(3796)] = 154703, + [SMALL_STATE(3797)] = 154731, + [SMALL_STATE(3798)] = 154747, + [SMALL_STATE(3799)] = 154763, + [SMALL_STATE(3800)] = 154787, + [SMALL_STATE(3801)] = 154809, + [SMALL_STATE(3802)] = 154825, + [SMALL_STATE(3803)] = 154857, + [SMALL_STATE(3804)] = 154877, + [SMALL_STATE(3805)] = 154893, + [SMALL_STATE(3806)] = 154919, + [SMALL_STATE(3807)] = 154951, + [SMALL_STATE(3808)] = 154967, + [SMALL_STATE(3809)] = 154989, + [SMALL_STATE(3810)] = 155015, + [SMALL_STATE(3811)] = 155031, + [SMALL_STATE(3812)] = 155059, + [SMALL_STATE(3813)] = 155081, + [SMALL_STATE(3814)] = 155097, + [SMALL_STATE(3815)] = 155127, + [SMALL_STATE(3816)] = 155159, + [SMALL_STATE(3817)] = 155187, + [SMALL_STATE(3818)] = 155213, + [SMALL_STATE(3819)] = 155245, + [SMALL_STATE(3820)] = 155265, + [SMALL_STATE(3821)] = 155293, + [SMALL_STATE(3822)] = 155325, + [SMALL_STATE(3823)] = 155341, + [SMALL_STATE(3824)] = 155369, + [SMALL_STATE(3825)] = 155387, + [SMALL_STATE(3826)] = 155403, + [SMALL_STATE(3827)] = 155419, + [SMALL_STATE(3828)] = 155435, + [SMALL_STATE(3829)] = 155451, + [SMALL_STATE(3830)] = 155479, + [SMALL_STATE(3831)] = 155497, + [SMALL_STATE(3832)] = 155525, + [SMALL_STATE(3833)] = 155553, + [SMALL_STATE(3834)] = 155581, + [SMALL_STATE(3835)] = 155603, + [SMALL_STATE(3836)] = 155635, + [SMALL_STATE(3837)] = 155651, + [SMALL_STATE(3838)] = 155683, + [SMALL_STATE(3839)] = 155709, + [SMALL_STATE(3840)] = 155737, + [SMALL_STATE(3841)] = 155769, + [SMALL_STATE(3842)] = 155801, + [SMALL_STATE(3843)] = 155819, + [SMALL_STATE(3844)] = 155845, + [SMALL_STATE(3845)] = 155861, + [SMALL_STATE(3846)] = 155877, + [SMALL_STATE(3847)] = 155905, + [SMALL_STATE(3848)] = 155933, + [SMALL_STATE(3849)] = 155965, + [SMALL_STATE(3850)] = 155997, + [SMALL_STATE(3851)] = 156025, + [SMALL_STATE(3852)] = 156057, + [SMALL_STATE(3853)] = 156073, + [SMALL_STATE(3854)] = 156089, + [SMALL_STATE(3855)] = 156117, + [SMALL_STATE(3856)] = 156145, + [SMALL_STATE(3857)] = 156161, + [SMALL_STATE(3858)] = 156177, + [SMALL_STATE(3859)] = 156205, + [SMALL_STATE(3860)] = 156233, + [SMALL_STATE(3861)] = 156261, + [SMALL_STATE(3862)] = 156289, + [SMALL_STATE(3863)] = 156305, + [SMALL_STATE(3864)] = 156321, + [SMALL_STATE(3865)] = 156349, + [SMALL_STATE(3866)] = 156365, + [SMALL_STATE(3867)] = 156393, + [SMALL_STATE(3868)] = 156409, + [SMALL_STATE(3869)] = 156437, + [SMALL_STATE(3870)] = 156469, + [SMALL_STATE(3871)] = 156501, + [SMALL_STATE(3872)] = 156517, + [SMALL_STATE(3873)] = 156545, + [SMALL_STATE(3874)] = 156573, + [SMALL_STATE(3875)] = 156599, + [SMALL_STATE(3876)] = 156631, + [SMALL_STATE(3877)] = 156661, + [SMALL_STATE(3878)] = 156689, + [SMALL_STATE(3879)] = 156717, + [SMALL_STATE(3880)] = 156739, + [SMALL_STATE(3881)] = 156767, + [SMALL_STATE(3882)] = 156795, + [SMALL_STATE(3883)] = 156821, + [SMALL_STATE(3884)] = 156849, + [SMALL_STATE(3885)] = 156865, + [SMALL_STATE(3886)] = 156881, + [SMALL_STATE(3887)] = 156909, + [SMALL_STATE(3888)] = 156937, + [SMALL_STATE(3889)] = 156963, + [SMALL_STATE(3890)] = 156981, + [SMALL_STATE(3891)] = 157009, + [SMALL_STATE(3892)] = 157031, + [SMALL_STATE(3893)] = 157047, + [SMALL_STATE(3894)] = 157075, + [SMALL_STATE(3895)] = 157091, + [SMALL_STATE(3896)] = 157123, + [SMALL_STATE(3897)] = 157155, + [SMALL_STATE(3898)] = 157171, + [SMALL_STATE(3899)] = 157191, + [SMALL_STATE(3900)] = 157207, + [SMALL_STATE(3901)] = 157239, + [SMALL_STATE(3902)] = 157255, + [SMALL_STATE(3903)] = 157271, + [SMALL_STATE(3904)] = 157299, + [SMALL_STATE(3905)] = 157327, + [SMALL_STATE(3906)] = 157355, + [SMALL_STATE(3907)] = 157377, + [SMALL_STATE(3908)] = 157405, + [SMALL_STATE(3909)] = 157427, + [SMALL_STATE(3910)] = 157452, + [SMALL_STATE(3911)] = 157475, + [SMALL_STATE(3912)] = 157504, + [SMALL_STATE(3913)] = 157527, + [SMALL_STATE(3914)] = 157552, + [SMALL_STATE(3915)] = 157581, + [SMALL_STATE(3916)] = 157606, + [SMALL_STATE(3917)] = 157627, + [SMALL_STATE(3918)] = 157652, + [SMALL_STATE(3919)] = 157677, + [SMALL_STATE(3920)] = 157696, + [SMALL_STATE(3921)] = 157725, + [SMALL_STATE(3922)] = 157748, + [SMALL_STATE(3923)] = 157771, + [SMALL_STATE(3924)] = 157792, + [SMALL_STATE(3925)] = 157813, + [SMALL_STATE(3926)] = 157834, + [SMALL_STATE(3927)] = 157857, + [SMALL_STATE(3928)] = 157874, + [SMALL_STATE(3929)] = 157897, + [SMALL_STATE(3930)] = 157926, + [SMALL_STATE(3931)] = 157955, + [SMALL_STATE(3932)] = 157980, + [SMALL_STATE(3933)] = 157997, + [SMALL_STATE(3934)] = 158012, + [SMALL_STATE(3935)] = 158037, + [SMALL_STATE(3936)] = 158062, + [SMALL_STATE(3937)] = 158077, + [SMALL_STATE(3938)] = 158092, + [SMALL_STATE(3939)] = 158117, + [SMALL_STATE(3940)] = 158138, + [SMALL_STATE(3941)] = 158167, + [SMALL_STATE(3942)] = 158188, + [SMALL_STATE(3943)] = 158205, + [SMALL_STATE(3944)] = 158228, + [SMALL_STATE(3945)] = 158251, + [SMALL_STATE(3946)] = 158274, + [SMALL_STATE(3947)] = 158299, + [SMALL_STATE(3948)] = 158324, + [SMALL_STATE(3949)] = 158349, + [SMALL_STATE(3950)] = 158371, + [SMALL_STATE(3951)] = 158393, + [SMALL_STATE(3952)] = 158415, + [SMALL_STATE(3953)] = 158437, + [SMALL_STATE(3954)] = 158459, + [SMALL_STATE(3955)] = 158481, + [SMALL_STATE(3956)] = 158507, + [SMALL_STATE(3957)] = 158529, + [SMALL_STATE(3958)] = 158543, + [SMALL_STATE(3959)] = 158569, + [SMALL_STATE(3960)] = 158591, + [SMALL_STATE(3961)] = 158613, + [SMALL_STATE(3962)] = 158635, + [SMALL_STATE(3963)] = 158653, + [SMALL_STATE(3964)] = 158671, + [SMALL_STATE(3965)] = 158697, + [SMALL_STATE(3966)] = 158719, + [SMALL_STATE(3967)] = 158741, + [SMALL_STATE(3968)] = 158763, + [SMALL_STATE(3969)] = 158781, + [SMALL_STATE(3970)] = 158803, + [SMALL_STATE(3971)] = 158825, + [SMALL_STATE(3972)] = 158851, + [SMALL_STATE(3973)] = 158869, + [SMALL_STATE(3974)] = 158895, + [SMALL_STATE(3975)] = 158917, + [SMALL_STATE(3976)] = 158939, + [SMALL_STATE(3977)] = 158965, + [SMALL_STATE(3978)] = 158987, + [SMALL_STATE(3979)] = 159009, + [SMALL_STATE(3980)] = 159033, + [SMALL_STATE(3981)] = 159047, + [SMALL_STATE(3982)] = 159069, + [SMALL_STATE(3983)] = 159091, + [SMALL_STATE(3984)] = 159117, + [SMALL_STATE(3985)] = 159139, + [SMALL_STATE(3986)] = 159153, + [SMALL_STATE(3987)] = 159167, + [SMALL_STATE(3988)] = 159189, + [SMALL_STATE(3989)] = 159211, + [SMALL_STATE(3990)] = 159229, + [SMALL_STATE(3991)] = 159251, + [SMALL_STATE(3992)] = 159273, + [SMALL_STATE(3993)] = 159295, + [SMALL_STATE(3994)] = 159311, + [SMALL_STATE(3995)] = 159333, + [SMALL_STATE(3996)] = 159355, + [SMALL_STATE(3997)] = 159377, + [SMALL_STATE(3998)] = 159399, + [SMALL_STATE(3999)] = 159421, + [SMALL_STATE(4000)] = 159435, + [SMALL_STATE(4001)] = 159457, + [SMALL_STATE(4002)] = 159483, + [SMALL_STATE(4003)] = 159505, + [SMALL_STATE(4004)] = 159519, + [SMALL_STATE(4005)] = 159545, + [SMALL_STATE(4006)] = 159567, + [SMALL_STATE(4007)] = 159589, + [SMALL_STATE(4008)] = 159611, + [SMALL_STATE(4009)] = 159637, + [SMALL_STATE(4010)] = 159659, + [SMALL_STATE(4011)] = 159683, + [SMALL_STATE(4012)] = 159709, + [SMALL_STATE(4013)] = 159731, + [SMALL_STATE(4014)] = 159757, + [SMALL_STATE(4015)] = 159783, + [SMALL_STATE(4016)] = 159805, + [SMALL_STATE(4017)] = 159827, + [SMALL_STATE(4018)] = 159849, + [SMALL_STATE(4019)] = 159871, + [SMALL_STATE(4020)] = 159893, + [SMALL_STATE(4021)] = 159915, + [SMALL_STATE(4022)] = 159937, + [SMALL_STATE(4023)] = 159959, + [SMALL_STATE(4024)] = 159981, + [SMALL_STATE(4025)] = 160003, + [SMALL_STATE(4026)] = 160025, + [SMALL_STATE(4027)] = 160047, + [SMALL_STATE(4028)] = 160069, + [SMALL_STATE(4029)] = 160091, + [SMALL_STATE(4030)] = 160109, + [SMALL_STATE(4031)] = 160127, + [SMALL_STATE(4032)] = 160149, + [SMALL_STATE(4033)] = 160167, + [SMALL_STATE(4034)] = 160185, + [SMALL_STATE(4035)] = 160207, + [SMALL_STATE(4036)] = 160233, + [SMALL_STATE(4037)] = 160255, + [SMALL_STATE(4038)] = 160269, + [SMALL_STATE(4039)] = 160283, + [SMALL_STATE(4040)] = 160309, + [SMALL_STATE(4041)] = 160323, + [SMALL_STATE(4042)] = 160345, + [SMALL_STATE(4043)] = 160367, + [SMALL_STATE(4044)] = 160389, + [SMALL_STATE(4045)] = 160411, + [SMALL_STATE(4046)] = 160433, + [SMALL_STATE(4047)] = 160455, + [SMALL_STATE(4048)] = 160477, + [SMALL_STATE(4049)] = 160495, + [SMALL_STATE(4050)] = 160517, + [SMALL_STATE(4051)] = 160539, + [SMALL_STATE(4052)] = 160559, + [SMALL_STATE(4053)] = 160581, + [SMALL_STATE(4054)] = 160607, + [SMALL_STATE(4055)] = 160629, + [SMALL_STATE(4056)] = 160651, + [SMALL_STATE(4057)] = 160673, + [SMALL_STATE(4058)] = 160695, + [SMALL_STATE(4059)] = 160717, + [SMALL_STATE(4060)] = 160739, + [SMALL_STATE(4061)] = 160765, + [SMALL_STATE(4062)] = 160787, + [SMALL_STATE(4063)] = 160813, + [SMALL_STATE(4064)] = 160835, + [SMALL_STATE(4065)] = 160857, + [SMALL_STATE(4066)] = 160879, + [SMALL_STATE(4067)] = 160901, + [SMALL_STATE(4068)] = 160927, + [SMALL_STATE(4069)] = 160949, + [SMALL_STATE(4070)] = 160971, + [SMALL_STATE(4071)] = 160997, + [SMALL_STATE(4072)] = 161023, + [SMALL_STATE(4073)] = 161043, + [SMALL_STATE(4074)] = 161065, + [SMALL_STATE(4075)] = 161087, + [SMALL_STATE(4076)] = 161113, + [SMALL_STATE(4077)] = 161135, + [SMALL_STATE(4078)] = 161157, + [SMALL_STATE(4079)] = 161179, + [SMALL_STATE(4080)] = 161197, + [SMALL_STATE(4081)] = 161219, + [SMALL_STATE(4082)] = 161241, + [SMALL_STATE(4083)] = 161263, + [SMALL_STATE(4084)] = 161285, + [SMALL_STATE(4085)] = 161307, + [SMALL_STATE(4086)] = 161329, + [SMALL_STATE(4087)] = 161351, + [SMALL_STATE(4088)] = 161373, + [SMALL_STATE(4089)] = 161399, + [SMALL_STATE(4090)] = 161413, + [SMALL_STATE(4091)] = 161431, + [SMALL_STATE(4092)] = 161453, + [SMALL_STATE(4093)] = 161479, + [SMALL_STATE(4094)] = 161501, + [SMALL_STATE(4095)] = 161523, + [SMALL_STATE(4096)] = 161545, + [SMALL_STATE(4097)] = 161567, + [SMALL_STATE(4098)] = 161593, + [SMALL_STATE(4099)] = 161615, + [SMALL_STATE(4100)] = 161637, + [SMALL_STATE(4101)] = 161651, + [SMALL_STATE(4102)] = 161677, + [SMALL_STATE(4103)] = 161703, + [SMALL_STATE(4104)] = 161721, + [SMALL_STATE(4105)] = 161739, + [SMALL_STATE(4106)] = 161757, + [SMALL_STATE(4107)] = 161775, + [SMALL_STATE(4108)] = 161801, + [SMALL_STATE(4109)] = 161815, + [SMALL_STATE(4110)] = 161833, + [SMALL_STATE(4111)] = 161855, + [SMALL_STATE(4112)] = 161871, + [SMALL_STATE(4113)] = 161897, + [SMALL_STATE(4114)] = 161919, + [SMALL_STATE(4115)] = 161945, + [SMALL_STATE(4116)] = 161967, + [SMALL_STATE(4117)] = 161989, + [SMALL_STATE(4118)] = 162011, + [SMALL_STATE(4119)] = 162029, + [SMALL_STATE(4120)] = 162051, + [SMALL_STATE(4121)] = 162077, + [SMALL_STATE(4122)] = 162103, + [SMALL_STATE(4123)] = 162129, + [SMALL_STATE(4124)] = 162155, + [SMALL_STATE(4125)] = 162177, + [SMALL_STATE(4126)] = 162203, + [SMALL_STATE(4127)] = 162225, + [SMALL_STATE(4128)] = 162247, + [SMALL_STATE(4129)] = 162273, + [SMALL_STATE(4130)] = 162295, + [SMALL_STATE(4131)] = 162309, + [SMALL_STATE(4132)] = 162331, + [SMALL_STATE(4133)] = 162353, + [SMALL_STATE(4134)] = 162369, + [SMALL_STATE(4135)] = 162383, + [SMALL_STATE(4136)] = 162397, + [SMALL_STATE(4137)] = 162419, + [SMALL_STATE(4138)] = 162445, + [SMALL_STATE(4139)] = 162461, + [SMALL_STATE(4140)] = 162475, + [SMALL_STATE(4141)] = 162493, + [SMALL_STATE(4142)] = 162519, + [SMALL_STATE(4143)] = 162535, + [SMALL_STATE(4144)] = 162557, + [SMALL_STATE(4145)] = 162577, + [SMALL_STATE(4146)] = 162593, + [SMALL_STATE(4147)] = 162615, + [SMALL_STATE(4148)] = 162633, + [SMALL_STATE(4149)] = 162655, + [SMALL_STATE(4150)] = 162677, + [SMALL_STATE(4151)] = 162703, + [SMALL_STATE(4152)] = 162723, + [SMALL_STATE(4153)] = 162741, + [SMALL_STATE(4154)] = 162759, + [SMALL_STATE(4155)] = 162781, + [SMALL_STATE(4156)] = 162797, + [SMALL_STATE(4157)] = 162813, + [SMALL_STATE(4158)] = 162835, + [SMALL_STATE(4159)] = 162857, + [SMALL_STATE(4160)] = 162879, + [SMALL_STATE(4161)] = 162897, + [SMALL_STATE(4162)] = 162923, + [SMALL_STATE(4163)] = 162943, + [SMALL_STATE(4164)] = 162963, + [SMALL_STATE(4165)] = 162983, + [SMALL_STATE(4166)] = 163003, + [SMALL_STATE(4167)] = 163021, + [SMALL_STATE(4168)] = 163039, + [SMALL_STATE(4169)] = 163057, + [SMALL_STATE(4170)] = 163079, + [SMALL_STATE(4171)] = 163097, + [SMALL_STATE(4172)] = 163115, + [SMALL_STATE(4173)] = 163133, + [SMALL_STATE(4174)] = 163155, + [SMALL_STATE(4175)] = 163181, + [SMALL_STATE(4176)] = 163204, + [SMALL_STATE(4177)] = 163227, + [SMALL_STATE(4178)] = 163250, + [SMALL_STATE(4179)] = 163267, + [SMALL_STATE(4180)] = 163290, + [SMALL_STATE(4181)] = 163313, + [SMALL_STATE(4182)] = 163336, + [SMALL_STATE(4183)] = 163359, + [SMALL_STATE(4184)] = 163378, + [SMALL_STATE(4185)] = 163401, + [SMALL_STATE(4186)] = 163424, + [SMALL_STATE(4187)] = 163447, + [SMALL_STATE(4188)] = 163470, + [SMALL_STATE(4189)] = 163487, + [SMALL_STATE(4190)] = 163504, + [SMALL_STATE(4191)] = 163523, + [SMALL_STATE(4192)] = 163542, + [SMALL_STATE(4193)] = 163565, + [SMALL_STATE(4194)] = 163584, + [SMALL_STATE(4195)] = 163603, + [SMALL_STATE(4196)] = 163618, + [SMALL_STATE(4197)] = 163641, + [SMALL_STATE(4198)] = 163658, + [SMALL_STATE(4199)] = 163681, + [SMALL_STATE(4200)] = 163704, + [SMALL_STATE(4201)] = 163727, + [SMALL_STATE(4202)] = 163750, + [SMALL_STATE(4203)] = 163773, + [SMALL_STATE(4204)] = 163796, + [SMALL_STATE(4205)] = 163819, + [SMALL_STATE(4206)] = 163842, + [SMALL_STATE(4207)] = 163865, + [SMALL_STATE(4208)] = 163882, + [SMALL_STATE(4209)] = 163905, + [SMALL_STATE(4210)] = 163928, + [SMALL_STATE(4211)] = 163951, + [SMALL_STATE(4212)] = 163974, + [SMALL_STATE(4213)] = 163997, + [SMALL_STATE(4214)] = 164020, + [SMALL_STATE(4215)] = 164043, + [SMALL_STATE(4216)] = 164066, + [SMALL_STATE(4217)] = 164089, + [SMALL_STATE(4218)] = 164112, + [SMALL_STATE(4219)] = 164135, + [SMALL_STATE(4220)] = 164158, + [SMALL_STATE(4221)] = 164181, + [SMALL_STATE(4222)] = 164204, + [SMALL_STATE(4223)] = 164227, + [SMALL_STATE(4224)] = 164250, + [SMALL_STATE(4225)] = 164273, + [SMALL_STATE(4226)] = 164296, + [SMALL_STATE(4227)] = 164319, + [SMALL_STATE(4228)] = 164342, + [SMALL_STATE(4229)] = 164365, + [SMALL_STATE(4230)] = 164388, + [SMALL_STATE(4231)] = 164411, + [SMALL_STATE(4232)] = 164434, + [SMALL_STATE(4233)] = 164457, + [SMALL_STATE(4234)] = 164480, + [SMALL_STATE(4235)] = 164503, + [SMALL_STATE(4236)] = 164526, + [SMALL_STATE(4237)] = 164549, + [SMALL_STATE(4238)] = 164568, + [SMALL_STATE(4239)] = 164591, + [SMALL_STATE(4240)] = 164614, + [SMALL_STATE(4241)] = 164637, + [SMALL_STATE(4242)] = 164660, + [SMALL_STATE(4243)] = 164677, + [SMALL_STATE(4244)] = 164700, + [SMALL_STATE(4245)] = 164723, + [SMALL_STATE(4246)] = 164746, + [SMALL_STATE(4247)] = 164769, + [SMALL_STATE(4248)] = 164792, + [SMALL_STATE(4249)] = 164815, + [SMALL_STATE(4250)] = 164838, + [SMALL_STATE(4251)] = 164861, + [SMALL_STATE(4252)] = 164876, + [SMALL_STATE(4253)] = 164895, + [SMALL_STATE(4254)] = 164918, + [SMALL_STATE(4255)] = 164941, + [SMALL_STATE(4256)] = 164964, + [SMALL_STATE(4257)] = 164987, + [SMALL_STATE(4258)] = 165010, + [SMALL_STATE(4259)] = 165033, + [SMALL_STATE(4260)] = 165056, + [SMALL_STATE(4261)] = 165079, + [SMALL_STATE(4262)] = 165102, + [SMALL_STATE(4263)] = 165125, + [SMALL_STATE(4264)] = 165148, + [SMALL_STATE(4265)] = 165171, + [SMALL_STATE(4266)] = 165194, + [SMALL_STATE(4267)] = 165217, + [SMALL_STATE(4268)] = 165240, + [SMALL_STATE(4269)] = 165257, + [SMALL_STATE(4270)] = 165280, + [SMALL_STATE(4271)] = 165303, + [SMALL_STATE(4272)] = 165326, + [SMALL_STATE(4273)] = 165349, + [SMALL_STATE(4274)] = 165372, + [SMALL_STATE(4275)] = 165395, + [SMALL_STATE(4276)] = 165418, + [SMALL_STATE(4277)] = 165435, + [SMALL_STATE(4278)] = 165452, + [SMALL_STATE(4279)] = 165475, + [SMALL_STATE(4280)] = 165498, + [SMALL_STATE(4281)] = 165521, + [SMALL_STATE(4282)] = 165544, + [SMALL_STATE(4283)] = 165567, + [SMALL_STATE(4284)] = 165590, + [SMALL_STATE(4285)] = 165607, + [SMALL_STATE(4286)] = 165624, + [SMALL_STATE(4287)] = 165641, + [SMALL_STATE(4288)] = 165664, + [SMALL_STATE(4289)] = 165687, + [SMALL_STATE(4290)] = 165710, + [SMALL_STATE(4291)] = 165733, + [SMALL_STATE(4292)] = 165756, + [SMALL_STATE(4293)] = 165773, + [SMALL_STATE(4294)] = 165796, + [SMALL_STATE(4295)] = 165819, + [SMALL_STATE(4296)] = 165838, + [SMALL_STATE(4297)] = 165861, + [SMALL_STATE(4298)] = 165878, + [SMALL_STATE(4299)] = 165901, + [SMALL_STATE(4300)] = 165924, + [SMALL_STATE(4301)] = 165947, + [SMALL_STATE(4302)] = 165970, + [SMALL_STATE(4303)] = 165993, + [SMALL_STATE(4304)] = 166010, + [SMALL_STATE(4305)] = 166033, + [SMALL_STATE(4306)] = 166056, + [SMALL_STATE(4307)] = 166079, + [SMALL_STATE(4308)] = 166096, + [SMALL_STATE(4309)] = 166119, + [SMALL_STATE(4310)] = 166142, + [SMALL_STATE(4311)] = 166165, + [SMALL_STATE(4312)] = 166188, + [SMALL_STATE(4313)] = 166211, + [SMALL_STATE(4314)] = 166234, + [SMALL_STATE(4315)] = 166257, + [SMALL_STATE(4316)] = 166280, + [SMALL_STATE(4317)] = 166297, + [SMALL_STATE(4318)] = 166312, + [SMALL_STATE(4319)] = 166335, + [SMALL_STATE(4320)] = 166358, + [SMALL_STATE(4321)] = 166381, + [SMALL_STATE(4322)] = 166404, + [SMALL_STATE(4323)] = 166427, + [SMALL_STATE(4324)] = 166450, + [SMALL_STATE(4325)] = 166473, + [SMALL_STATE(4326)] = 166496, + [SMALL_STATE(4327)] = 166519, + [SMALL_STATE(4328)] = 166542, + [SMALL_STATE(4329)] = 166565, + [SMALL_STATE(4330)] = 166588, + [SMALL_STATE(4331)] = 166611, + [SMALL_STATE(4332)] = 166634, + [SMALL_STATE(4333)] = 166657, + [SMALL_STATE(4334)] = 166680, + [SMALL_STATE(4335)] = 166703, + [SMALL_STATE(4336)] = 166726, + [SMALL_STATE(4337)] = 166749, + [SMALL_STATE(4338)] = 166772, + [SMALL_STATE(4339)] = 166795, + [SMALL_STATE(4340)] = 166818, + [SMALL_STATE(4341)] = 166835, + [SMALL_STATE(4342)] = 166858, + [SMALL_STATE(4343)] = 166881, + [SMALL_STATE(4344)] = 166898, + [SMALL_STATE(4345)] = 166915, + [SMALL_STATE(4346)] = 166938, + [SMALL_STATE(4347)] = 166961, + [SMALL_STATE(4348)] = 166984, + [SMALL_STATE(4349)] = 167007, + [SMALL_STATE(4350)] = 167030, + [SMALL_STATE(4351)] = 167053, + [SMALL_STATE(4352)] = 167076, + [SMALL_STATE(4353)] = 167099, + [SMALL_STATE(4354)] = 167122, + [SMALL_STATE(4355)] = 167145, + [SMALL_STATE(4356)] = 167168, + [SMALL_STATE(4357)] = 167191, + [SMALL_STATE(4358)] = 167214, + [SMALL_STATE(4359)] = 167237, + [SMALL_STATE(4360)] = 167260, + [SMALL_STATE(4361)] = 167277, + [SMALL_STATE(4362)] = 167300, + [SMALL_STATE(4363)] = 167313, + [SMALL_STATE(4364)] = 167336, + [SMALL_STATE(4365)] = 167359, + [SMALL_STATE(4366)] = 167382, + [SMALL_STATE(4367)] = 167405, + [SMALL_STATE(4368)] = 167428, + [SMALL_STATE(4369)] = 167447, + [SMALL_STATE(4370)] = 167470, + [SMALL_STATE(4371)] = 167493, + [SMALL_STATE(4372)] = 167516, + [SMALL_STATE(4373)] = 167539, + [SMALL_STATE(4374)] = 167562, + [SMALL_STATE(4375)] = 167585, + [SMALL_STATE(4376)] = 167608, + [SMALL_STATE(4377)] = 167631, + [SMALL_STATE(4378)] = 167648, + [SMALL_STATE(4379)] = 167665, + [SMALL_STATE(4380)] = 167688, + [SMALL_STATE(4381)] = 167705, + [SMALL_STATE(4382)] = 167728, + [SMALL_STATE(4383)] = 167747, + [SMALL_STATE(4384)] = 167770, + [SMALL_STATE(4385)] = 167791, + [SMALL_STATE(4386)] = 167812, + [SMALL_STATE(4387)] = 167835, + [SMALL_STATE(4388)] = 167858, + [SMALL_STATE(4389)] = 167881, + [SMALL_STATE(4390)] = 167904, + [SMALL_STATE(4391)] = 167927, + [SMALL_STATE(4392)] = 167950, + [SMALL_STATE(4393)] = 167967, + [SMALL_STATE(4394)] = 167990, + [SMALL_STATE(4395)] = 168013, + [SMALL_STATE(4396)] = 168036, + [SMALL_STATE(4397)] = 168059, + [SMALL_STATE(4398)] = 168078, + [SMALL_STATE(4399)] = 168095, + [SMALL_STATE(4400)] = 168118, + [SMALL_STATE(4401)] = 168141, + [SMALL_STATE(4402)] = 168164, + [SMALL_STATE(4403)] = 168187, + [SMALL_STATE(4404)] = 168200, + [SMALL_STATE(4405)] = 168217, + [SMALL_STATE(4406)] = 168234, + [SMALL_STATE(4407)] = 168251, + [SMALL_STATE(4408)] = 168272, + [SMALL_STATE(4409)] = 168295, + [SMALL_STATE(4410)] = 168318, + [SMALL_STATE(4411)] = 168341, + [SMALL_STATE(4412)] = 168364, + [SMALL_STATE(4413)] = 168387, + [SMALL_STATE(4414)] = 168410, + [SMALL_STATE(4415)] = 168433, + [SMALL_STATE(4416)] = 168450, + [SMALL_STATE(4417)] = 168469, + [SMALL_STATE(4418)] = 168492, + [SMALL_STATE(4419)] = 168515, + [SMALL_STATE(4420)] = 168538, + [SMALL_STATE(4421)] = 168561, + [SMALL_STATE(4422)] = 168584, + [SMALL_STATE(4423)] = 168607, + [SMALL_STATE(4424)] = 168630, + [SMALL_STATE(4425)] = 168653, + [SMALL_STATE(4426)] = 168676, + [SMALL_STATE(4427)] = 168699, + [SMALL_STATE(4428)] = 168722, + [SMALL_STATE(4429)] = 168735, + [SMALL_STATE(4430)] = 168748, + [SMALL_STATE(4431)] = 168761, + [SMALL_STATE(4432)] = 168784, + [SMALL_STATE(4433)] = 168807, + [SMALL_STATE(4434)] = 168824, + [SMALL_STATE(4435)] = 168837, + [SMALL_STATE(4436)] = 168860, + [SMALL_STATE(4437)] = 168873, + [SMALL_STATE(4438)] = 168886, + [SMALL_STATE(4439)] = 168909, + [SMALL_STATE(4440)] = 168932, + [SMALL_STATE(4441)] = 168955, + [SMALL_STATE(4442)] = 168978, + [SMALL_STATE(4443)] = 168995, + [SMALL_STATE(4444)] = 169018, + [SMALL_STATE(4445)] = 169041, + [SMALL_STATE(4446)] = 169064, + [SMALL_STATE(4447)] = 169079, + [SMALL_STATE(4448)] = 169102, + [SMALL_STATE(4449)] = 169125, + [SMALL_STATE(4450)] = 169148, + [SMALL_STATE(4451)] = 169171, + [SMALL_STATE(4452)] = 169194, + [SMALL_STATE(4453)] = 169217, + [SMALL_STATE(4454)] = 169240, + [SMALL_STATE(4455)] = 169257, + [SMALL_STATE(4456)] = 169280, + [SMALL_STATE(4457)] = 169303, + [SMALL_STATE(4458)] = 169326, + [SMALL_STATE(4459)] = 169349, + [SMALL_STATE(4460)] = 169372, + [SMALL_STATE(4461)] = 169391, + [SMALL_STATE(4462)] = 169410, + [SMALL_STATE(4463)] = 169433, + [SMALL_STATE(4464)] = 169446, + [SMALL_STATE(4465)] = 169465, + [SMALL_STATE(4466)] = 169478, + [SMALL_STATE(4467)] = 169501, + [SMALL_STATE(4468)] = 169514, + [SMALL_STATE(4469)] = 169537, + [SMALL_STATE(4470)] = 169554, + [SMALL_STATE(4471)] = 169567, + [SMALL_STATE(4472)] = 169590, + [SMALL_STATE(4473)] = 169613, + [SMALL_STATE(4474)] = 169636, + [SMALL_STATE(4475)] = 169659, + [SMALL_STATE(4476)] = 169682, + [SMALL_STATE(4477)] = 169705, + [SMALL_STATE(4478)] = 169728, + [SMALL_STATE(4479)] = 169751, + [SMALL_STATE(4480)] = 169774, + [SMALL_STATE(4481)] = 169791, + [SMALL_STATE(4482)] = 169808, + [SMALL_STATE(4483)] = 169825, + [SMALL_STATE(4484)] = 169848, + [SMALL_STATE(4485)] = 169871, + [SMALL_STATE(4486)] = 169890, + [SMALL_STATE(4487)] = 169913, + [SMALL_STATE(4488)] = 169936, + [SMALL_STATE(4489)] = 169953, + [SMALL_STATE(4490)] = 169970, + [SMALL_STATE(4491)] = 169993, + [SMALL_STATE(4492)] = 170016, + [SMALL_STATE(4493)] = 170033, + [SMALL_STATE(4494)] = 170056, + [SMALL_STATE(4495)] = 170079, + [SMALL_STATE(4496)] = 170096, + [SMALL_STATE(4497)] = 170119, + [SMALL_STATE(4498)] = 170142, + [SMALL_STATE(4499)] = 170165, + [SMALL_STATE(4500)] = 170188, + [SMALL_STATE(4501)] = 170205, + [SMALL_STATE(4502)] = 170228, + [SMALL_STATE(4503)] = 170251, + [SMALL_STATE(4504)] = 170274, + [SMALL_STATE(4505)] = 170297, + [SMALL_STATE(4506)] = 170320, + [SMALL_STATE(4507)] = 170343, + [SMALL_STATE(4508)] = 170362, + [SMALL_STATE(4509)] = 170385, + [SMALL_STATE(4510)] = 170408, + [SMALL_STATE(4511)] = 170431, + [SMALL_STATE(4512)] = 170454, + [SMALL_STATE(4513)] = 170477, + [SMALL_STATE(4514)] = 170500, + [SMALL_STATE(4515)] = 170523, + [SMALL_STATE(4516)] = 170542, + [SMALL_STATE(4517)] = 170557, + [SMALL_STATE(4518)] = 170574, + [SMALL_STATE(4519)] = 170597, + [SMALL_STATE(4520)] = 170620, + [SMALL_STATE(4521)] = 170643, + [SMALL_STATE(4522)] = 170666, + [SMALL_STATE(4523)] = 170689, + [SMALL_STATE(4524)] = 170712, + [SMALL_STATE(4525)] = 170735, + [SMALL_STATE(4526)] = 170758, + [SMALL_STATE(4527)] = 170781, + [SMALL_STATE(4528)] = 170798, + [SMALL_STATE(4529)] = 170821, + [SMALL_STATE(4530)] = 170834, + [SMALL_STATE(4531)] = 170851, + [SMALL_STATE(4532)] = 170868, + [SMALL_STATE(4533)] = 170891, + [SMALL_STATE(4534)] = 170908, + [SMALL_STATE(4535)] = 170931, + [SMALL_STATE(4536)] = 170948, + [SMALL_STATE(4537)] = 170965, + [SMALL_STATE(4538)] = 170988, + [SMALL_STATE(4539)] = 171011, + [SMALL_STATE(4540)] = 171034, + [SMALL_STATE(4541)] = 171057, + [SMALL_STATE(4542)] = 171080, + [SMALL_STATE(4543)] = 171099, + [SMALL_STATE(4544)] = 171122, + [SMALL_STATE(4545)] = 171145, + [SMALL_STATE(4546)] = 171168, + [SMALL_STATE(4547)] = 171191, + [SMALL_STATE(4548)] = 171214, + [SMALL_STATE(4549)] = 171237, + [SMALL_STATE(4550)] = 171252, + [SMALL_STATE(4551)] = 171275, + [SMALL_STATE(4552)] = 171298, + [SMALL_STATE(4553)] = 171321, + [SMALL_STATE(4554)] = 171344, + [SMALL_STATE(4555)] = 171367, + [SMALL_STATE(4556)] = 171390, + [SMALL_STATE(4557)] = 171403, + [SMALL_STATE(4558)] = 171422, + [SMALL_STATE(4559)] = 171445, + [SMALL_STATE(4560)] = 171468, + [SMALL_STATE(4561)] = 171484, + [SMALL_STATE(4562)] = 171504, + [SMALL_STATE(4563)] = 171524, + [SMALL_STATE(4564)] = 171540, + [SMALL_STATE(4565)] = 171560, + [SMALL_STATE(4566)] = 171576, + [SMALL_STATE(4567)] = 171592, + [SMALL_STATE(4568)] = 171608, + [SMALL_STATE(4569)] = 171628, + [SMALL_STATE(4570)] = 171648, + [SMALL_STATE(4571)] = 171664, + [SMALL_STATE(4572)] = 171684, + [SMALL_STATE(4573)] = 171696, + [SMALL_STATE(4574)] = 171712, + [SMALL_STATE(4575)] = 171728, + [SMALL_STATE(4576)] = 171744, + [SMALL_STATE(4577)] = 171760, + [SMALL_STATE(4578)] = 171772, + [SMALL_STATE(4579)] = 171784, + [SMALL_STATE(4580)] = 171796, + [SMALL_STATE(4581)] = 171808, + [SMALL_STATE(4582)] = 171820, + [SMALL_STATE(4583)] = 171832, + [SMALL_STATE(4584)] = 171844, + [SMALL_STATE(4585)] = 171856, + [SMALL_STATE(4586)] = 171872, + [SMALL_STATE(4587)] = 171892, + [SMALL_STATE(4588)] = 171908, + [SMALL_STATE(4589)] = 171920, + [SMALL_STATE(4590)] = 171932, + [SMALL_STATE(4591)] = 171952, + [SMALL_STATE(4592)] = 171964, + [SMALL_STATE(4593)] = 171980, + [SMALL_STATE(4594)] = 172000, + [SMALL_STATE(4595)] = 172016, + [SMALL_STATE(4596)] = 172036, + [SMALL_STATE(4597)] = 172056, + [SMALL_STATE(4598)] = 172072, + [SMALL_STATE(4599)] = 172088, + [SMALL_STATE(4600)] = 172104, + [SMALL_STATE(4601)] = 172124, + [SMALL_STATE(4602)] = 172140, + [SMALL_STATE(4603)] = 172160, + [SMALL_STATE(4604)] = 172180, + [SMALL_STATE(4605)] = 172196, + [SMALL_STATE(4606)] = 172212, + [SMALL_STATE(4607)] = 172232, + [SMALL_STATE(4608)] = 172244, + [SMALL_STATE(4609)] = 172256, + [SMALL_STATE(4610)] = 172268, + [SMALL_STATE(4611)] = 172280, + [SMALL_STATE(4612)] = 172296, + [SMALL_STATE(4613)] = 172312, + [SMALL_STATE(4614)] = 172328, + [SMALL_STATE(4615)] = 172348, + [SMALL_STATE(4616)] = 172368, + [SMALL_STATE(4617)] = 172388, + [SMALL_STATE(4618)] = 172408, + [SMALL_STATE(4619)] = 172420, + [SMALL_STATE(4620)] = 172440, + [SMALL_STATE(4621)] = 172452, + [SMALL_STATE(4622)] = 172466, + [SMALL_STATE(4623)] = 172478, + [SMALL_STATE(4624)] = 172494, + [SMALL_STATE(4625)] = 172514, + [SMALL_STATE(4626)] = 172530, + [SMALL_STATE(4627)] = 172550, + [SMALL_STATE(4628)] = 172566, + [SMALL_STATE(4629)] = 172586, + [SMALL_STATE(4630)] = 172598, + [SMALL_STATE(4631)] = 172610, + [SMALL_STATE(4632)] = 172626, + [SMALL_STATE(4633)] = 172646, + [SMALL_STATE(4634)] = 172662, + [SMALL_STATE(4635)] = 172674, + [SMALL_STATE(4636)] = 172694, + [SMALL_STATE(4637)] = 172710, + [SMALL_STATE(4638)] = 172726, + [SMALL_STATE(4639)] = 172746, + [SMALL_STATE(4640)] = 172766, + [SMALL_STATE(4641)] = 172786, + [SMALL_STATE(4642)] = 172806, + [SMALL_STATE(4643)] = 172822, + [SMALL_STATE(4644)] = 172838, + [SMALL_STATE(4645)] = 172858, + [SMALL_STATE(4646)] = 172878, + [SMALL_STATE(4647)] = 172898, + [SMALL_STATE(4648)] = 172914, + [SMALL_STATE(4649)] = 172930, + [SMALL_STATE(4650)] = 172946, + [SMALL_STATE(4651)] = 172962, + [SMALL_STATE(4652)] = 172974, + [SMALL_STATE(4653)] = 172990, + [SMALL_STATE(4654)] = 173010, + [SMALL_STATE(4655)] = 173030, + [SMALL_STATE(4656)] = 173050, + [SMALL_STATE(4657)] = 173070, + [SMALL_STATE(4658)] = 173086, + [SMALL_STATE(4659)] = 173106, + [SMALL_STATE(4660)] = 173118, + [SMALL_STATE(4661)] = 173138, + [SMALL_STATE(4662)] = 173158, + [SMALL_STATE(4663)] = 173178, + [SMALL_STATE(4664)] = 173190, + [SMALL_STATE(4665)] = 173206, + [SMALL_STATE(4666)] = 173218, + [SMALL_STATE(4667)] = 173234, + [SMALL_STATE(4668)] = 173254, + [SMALL_STATE(4669)] = 173270, + [SMALL_STATE(4670)] = 173290, + [SMALL_STATE(4671)] = 173310, + [SMALL_STATE(4672)] = 173326, + [SMALL_STATE(4673)] = 173346, + [SMALL_STATE(4674)] = 173358, + [SMALL_STATE(4675)] = 173374, + [SMALL_STATE(4676)] = 173394, + [SMALL_STATE(4677)] = 173414, + [SMALL_STATE(4678)] = 173434, + [SMALL_STATE(4679)] = 173454, + [SMALL_STATE(4680)] = 173474, + [SMALL_STATE(4681)] = 173494, + [SMALL_STATE(4682)] = 173506, + [SMALL_STATE(4683)] = 173526, + [SMALL_STATE(4684)] = 173542, + [SMALL_STATE(4685)] = 173558, + [SMALL_STATE(4686)] = 173578, + [SMALL_STATE(4687)] = 173598, + [SMALL_STATE(4688)] = 173618, + [SMALL_STATE(4689)] = 173638, + [SMALL_STATE(4690)] = 173658, + [SMALL_STATE(4691)] = 173674, + [SMALL_STATE(4692)] = 173694, + [SMALL_STATE(4693)] = 173714, + [SMALL_STATE(4694)] = 173734, + [SMALL_STATE(4695)] = 173750, + [SMALL_STATE(4696)] = 173770, + [SMALL_STATE(4697)] = 173786, + [SMALL_STATE(4698)] = 173806, + [SMALL_STATE(4699)] = 173826, + [SMALL_STATE(4700)] = 173838, + [SMALL_STATE(4701)] = 173854, + [SMALL_STATE(4702)] = 173866, + [SMALL_STATE(4703)] = 173878, + [SMALL_STATE(4704)] = 173898, + [SMALL_STATE(4705)] = 173918, + [SMALL_STATE(4706)] = 173938, + [SMALL_STATE(4707)] = 173958, + [SMALL_STATE(4708)] = 173976, + [SMALL_STATE(4709)] = 173988, + [SMALL_STATE(4710)] = 174008, + [SMALL_STATE(4711)] = 174026, + [SMALL_STATE(4712)] = 174046, + [SMALL_STATE(4713)] = 174062, + [SMALL_STATE(4714)] = 174080, + [SMALL_STATE(4715)] = 174096, + [SMALL_STATE(4716)] = 174108, + [SMALL_STATE(4717)] = 174120, + [SMALL_STATE(4718)] = 174132, + [SMALL_STATE(4719)] = 174144, + [SMALL_STATE(4720)] = 174156, + [SMALL_STATE(4721)] = 174176, + [SMALL_STATE(4722)] = 174188, + [SMALL_STATE(4723)] = 174208, + [SMALL_STATE(4724)] = 174220, + [SMALL_STATE(4725)] = 174240, + [SMALL_STATE(4726)] = 174260, + [SMALL_STATE(4727)] = 174280, + [SMALL_STATE(4728)] = 174292, + [SMALL_STATE(4729)] = 174304, + [SMALL_STATE(4730)] = 174316, + [SMALL_STATE(4731)] = 174328, + [SMALL_STATE(4732)] = 174348, + [SMALL_STATE(4733)] = 174364, + [SMALL_STATE(4734)] = 174384, + [SMALL_STATE(4735)] = 174404, + [SMALL_STATE(4736)] = 174420, + [SMALL_STATE(4737)] = 174432, + [SMALL_STATE(4738)] = 174452, + [SMALL_STATE(4739)] = 174468, + [SMALL_STATE(4740)] = 174488, + [SMALL_STATE(4741)] = 174508, + [SMALL_STATE(4742)] = 174528, + [SMALL_STATE(4743)] = 174548, + [SMALL_STATE(4744)] = 174568, + [SMALL_STATE(4745)] = 174588, + [SMALL_STATE(4746)] = 174608, + [SMALL_STATE(4747)] = 174628, + [SMALL_STATE(4748)] = 174648, + [SMALL_STATE(4749)] = 174660, + [SMALL_STATE(4750)] = 174680, + [SMALL_STATE(4751)] = 174692, + [SMALL_STATE(4752)] = 174712, + [SMALL_STATE(4753)] = 174728, + [SMALL_STATE(4754)] = 174740, + [SMALL_STATE(4755)] = 174752, + [SMALL_STATE(4756)] = 174772, + [SMALL_STATE(4757)] = 174784, + [SMALL_STATE(4758)] = 174796, + [SMALL_STATE(4759)] = 174816, + [SMALL_STATE(4760)] = 174828, + [SMALL_STATE(4761)] = 174848, + [SMALL_STATE(4762)] = 174864, + [SMALL_STATE(4763)] = 174876, + [SMALL_STATE(4764)] = 174896, + [SMALL_STATE(4765)] = 174908, + [SMALL_STATE(4766)] = 174920, + [SMALL_STATE(4767)] = 174932, + [SMALL_STATE(4768)] = 174952, + [SMALL_STATE(4769)] = 174964, + [SMALL_STATE(4770)] = 174976, + [SMALL_STATE(4771)] = 174988, + [SMALL_STATE(4772)] = 175000, + [SMALL_STATE(4773)] = 175020, + [SMALL_STATE(4774)] = 175036, + [SMALL_STATE(4775)] = 175048, + [SMALL_STATE(4776)] = 175060, + [SMALL_STATE(4777)] = 175080, + [SMALL_STATE(4778)] = 175092, + [SMALL_STATE(4779)] = 175112, + [SMALL_STATE(4780)] = 175132, + [SMALL_STATE(4781)] = 175152, + [SMALL_STATE(4782)] = 175172, + [SMALL_STATE(4783)] = 175192, + [SMALL_STATE(4784)] = 175212, + [SMALL_STATE(4785)] = 175232, + [SMALL_STATE(4786)] = 175244, + [SMALL_STATE(4787)] = 175264, + [SMALL_STATE(4788)] = 175282, + [SMALL_STATE(4789)] = 175298, + [SMALL_STATE(4790)] = 175318, + [SMALL_STATE(4791)] = 175330, + [SMALL_STATE(4792)] = 175342, + [SMALL_STATE(4793)] = 175362, + [SMALL_STATE(4794)] = 175382, + [SMALL_STATE(4795)] = 175402, + [SMALL_STATE(4796)] = 175422, + [SMALL_STATE(4797)] = 175442, + [SMALL_STATE(4798)] = 175462, + [SMALL_STATE(4799)] = 175482, + [SMALL_STATE(4800)] = 175502, + [SMALL_STATE(4801)] = 175522, + [SMALL_STATE(4802)] = 175538, + [SMALL_STATE(4803)] = 175554, + [SMALL_STATE(4804)] = 175574, + [SMALL_STATE(4805)] = 175592, + [SMALL_STATE(4806)] = 175612, + [SMALL_STATE(4807)] = 175632, + [SMALL_STATE(4808)] = 175646, + [SMALL_STATE(4809)] = 175662, + [SMALL_STATE(4810)] = 175680, + [SMALL_STATE(4811)] = 175696, + [SMALL_STATE(4812)] = 175710, + [SMALL_STATE(4813)] = 175730, + [SMALL_STATE(4814)] = 175750, + [SMALL_STATE(4815)] = 175762, + [SMALL_STATE(4816)] = 175774, + [SMALL_STATE(4817)] = 175786, + [SMALL_STATE(4818)] = 175802, + [SMALL_STATE(4819)] = 175818, + [SMALL_STATE(4820)] = 175834, + [SMALL_STATE(4821)] = 175850, + [SMALL_STATE(4822)] = 175870, + [SMALL_STATE(4823)] = 175890, + [SMALL_STATE(4824)] = 175910, + [SMALL_STATE(4825)] = 175922, + [SMALL_STATE(4826)] = 175934, + [SMALL_STATE(4827)] = 175954, + [SMALL_STATE(4828)] = 175974, + [SMALL_STATE(4829)] = 175994, + [SMALL_STATE(4830)] = 176014, + [SMALL_STATE(4831)] = 176026, + [SMALL_STATE(4832)] = 176042, + [SMALL_STATE(4833)] = 176062, + [SMALL_STATE(4834)] = 176082, + [SMALL_STATE(4835)] = 176098, + [SMALL_STATE(4836)] = 176118, + [SMALL_STATE(4837)] = 176134, + [SMALL_STATE(4838)] = 176154, + [SMALL_STATE(4839)] = 176170, + [SMALL_STATE(4840)] = 176190, + [SMALL_STATE(4841)] = 176206, + [SMALL_STATE(4842)] = 176222, + [SMALL_STATE(4843)] = 176238, + [SMALL_STATE(4844)] = 176258, + [SMALL_STATE(4845)] = 176278, + [SMALL_STATE(4846)] = 176294, + [SMALL_STATE(4847)] = 176314, + [SMALL_STATE(4848)] = 176326, + [SMALL_STATE(4849)] = 176346, + [SMALL_STATE(4850)] = 176358, + [SMALL_STATE(4851)] = 176370, + [SMALL_STATE(4852)] = 176390, + [SMALL_STATE(4853)] = 176402, + [SMALL_STATE(4854)] = 176418, + [SMALL_STATE(4855)] = 176434, + [SMALL_STATE(4856)] = 176454, + [SMALL_STATE(4857)] = 176470, + [SMALL_STATE(4858)] = 176490, + [SMALL_STATE(4859)] = 176506, + [SMALL_STATE(4860)] = 176522, + [SMALL_STATE(4861)] = 176542, + [SMALL_STATE(4862)] = 176558, + [SMALL_STATE(4863)] = 176578, + [SMALL_STATE(4864)] = 176594, + [SMALL_STATE(4865)] = 176610, + [SMALL_STATE(4866)] = 176622, + [SMALL_STATE(4867)] = 176638, + [SMALL_STATE(4868)] = 176650, + [SMALL_STATE(4869)] = 176662, + [SMALL_STATE(4870)] = 176674, + [SMALL_STATE(4871)] = 176690, + [SMALL_STATE(4872)] = 176702, + [SMALL_STATE(4873)] = 176714, + [SMALL_STATE(4874)] = 176726, + [SMALL_STATE(4875)] = 176746, + [SMALL_STATE(4876)] = 176758, + [SMALL_STATE(4877)] = 176774, + [SMALL_STATE(4878)] = 176794, + [SMALL_STATE(4879)] = 176810, + [SMALL_STATE(4880)] = 176822, + [SMALL_STATE(4881)] = 176838, + [SMALL_STATE(4882)] = 176854, + [SMALL_STATE(4883)] = 176866, + [SMALL_STATE(4884)] = 176882, + [SMALL_STATE(4885)] = 176902, + [SMALL_STATE(4886)] = 176918, + [SMALL_STATE(4887)] = 176934, + [SMALL_STATE(4888)] = 176954, + [SMALL_STATE(4889)] = 176970, + [SMALL_STATE(4890)] = 176982, + [SMALL_STATE(4891)] = 176994, + [SMALL_STATE(4892)] = 177010, + [SMALL_STATE(4893)] = 177022, + [SMALL_STATE(4894)] = 177038, + [SMALL_STATE(4895)] = 177050, + [SMALL_STATE(4896)] = 177068, + [SMALL_STATE(4897)] = 177088, + [SMALL_STATE(4898)] = 177108, + [SMALL_STATE(4899)] = 177120, + [SMALL_STATE(4900)] = 177140, + [SMALL_STATE(4901)] = 177160, + [SMALL_STATE(4902)] = 177180, + [SMALL_STATE(4903)] = 177200, + [SMALL_STATE(4904)] = 177212, + [SMALL_STATE(4905)] = 177232, + [SMALL_STATE(4906)] = 177248, + [SMALL_STATE(4907)] = 177264, + [SMALL_STATE(4908)] = 177280, + [SMALL_STATE(4909)] = 177296, + [SMALL_STATE(4910)] = 177316, + [SMALL_STATE(4911)] = 177332, + [SMALL_STATE(4912)] = 177352, + [SMALL_STATE(4913)] = 177368, + [SMALL_STATE(4914)] = 177380, + [SMALL_STATE(4915)] = 177392, + [SMALL_STATE(4916)] = 177408, + [SMALL_STATE(4917)] = 177424, + [SMALL_STATE(4918)] = 177436, + [SMALL_STATE(4919)] = 177452, + [SMALL_STATE(4920)] = 177464, + [SMALL_STATE(4921)] = 177480, + [SMALL_STATE(4922)] = 177492, + [SMALL_STATE(4923)] = 177508, + [SMALL_STATE(4924)] = 177524, + [SMALL_STATE(4925)] = 177536, + [SMALL_STATE(4926)] = 177552, + [SMALL_STATE(4927)] = 177564, + [SMALL_STATE(4928)] = 177580, + [SMALL_STATE(4929)] = 177596, + [SMALL_STATE(4930)] = 177608, + [SMALL_STATE(4931)] = 177624, + [SMALL_STATE(4932)] = 177640, + [SMALL_STATE(4933)] = 177652, + [SMALL_STATE(4934)] = 177668, + [SMALL_STATE(4935)] = 177688, + [SMALL_STATE(4936)] = 177704, + [SMALL_STATE(4937)] = 177720, + [SMALL_STATE(4938)] = 177738, + [SMALL_STATE(4939)] = 177754, + [SMALL_STATE(4940)] = 177770, + [SMALL_STATE(4941)] = 177790, + [SMALL_STATE(4942)] = 177810, + [SMALL_STATE(4943)] = 177826, + [SMALL_STATE(4944)] = 177838, + [SMALL_STATE(4945)] = 177858, + [SMALL_STATE(4946)] = 177878, + [SMALL_STATE(4947)] = 177894, + [SMALL_STATE(4948)] = 177914, + [SMALL_STATE(4949)] = 177930, + [SMALL_STATE(4950)] = 177948, + [SMALL_STATE(4951)] = 177968, + [SMALL_STATE(4952)] = 177988, + [SMALL_STATE(4953)] = 178008, + [SMALL_STATE(4954)] = 178024, + [SMALL_STATE(4955)] = 178044, + [SMALL_STATE(4956)] = 178064, + [SMALL_STATE(4957)] = 178084, + [SMALL_STATE(4958)] = 178096, + [SMALL_STATE(4959)] = 178112, + [SMALL_STATE(4960)] = 178124, + [SMALL_STATE(4961)] = 178144, + [SMALL_STATE(4962)] = 178160, + [SMALL_STATE(4963)] = 178172, + [SMALL_STATE(4964)] = 178184, + [SMALL_STATE(4965)] = 178196, + [SMALL_STATE(4966)] = 178208, + [SMALL_STATE(4967)] = 178220, + [SMALL_STATE(4968)] = 178236, + [SMALL_STATE(4969)] = 178252, + [SMALL_STATE(4970)] = 178268, + [SMALL_STATE(4971)] = 178288, + [SMALL_STATE(4972)] = 178304, + [SMALL_STATE(4973)] = 178320, + [SMALL_STATE(4974)] = 178340, + [SMALL_STATE(4975)] = 178352, + [SMALL_STATE(4976)] = 178364, + [SMALL_STATE(4977)] = 178384, + [SMALL_STATE(4978)] = 178400, + [SMALL_STATE(4979)] = 178420, + [SMALL_STATE(4980)] = 178436, + [SMALL_STATE(4981)] = 178452, + [SMALL_STATE(4982)] = 178472, + [SMALL_STATE(4983)] = 178488, + [SMALL_STATE(4984)] = 178508, + [SMALL_STATE(4985)] = 178524, + [SMALL_STATE(4986)] = 178540, + [SMALL_STATE(4987)] = 178556, + [SMALL_STATE(4988)] = 178576, + [SMALL_STATE(4989)] = 178592, + [SMALL_STATE(4990)] = 178604, + [SMALL_STATE(4991)] = 178616, + [SMALL_STATE(4992)] = 178628, + [SMALL_STATE(4993)] = 178644, + [SMALL_STATE(4994)] = 178664, + [SMALL_STATE(4995)] = 178684, + [SMALL_STATE(4996)] = 178704, + [SMALL_STATE(4997)] = 178724, + [SMALL_STATE(4998)] = 178740, + [SMALL_STATE(4999)] = 178752, + [SMALL_STATE(5000)] = 178764, + [SMALL_STATE(5001)] = 178776, + [SMALL_STATE(5002)] = 178796, + [SMALL_STATE(5003)] = 178812, + [SMALL_STATE(5004)] = 178832, + [SMALL_STATE(5005)] = 178852, + [SMALL_STATE(5006)] = 178868, + [SMALL_STATE(5007)] = 178888, + [SMALL_STATE(5008)] = 178904, + [SMALL_STATE(5009)] = 178924, + [SMALL_STATE(5010)] = 178940, + [SMALL_STATE(5011)] = 178960, + [SMALL_STATE(5012)] = 178980, + [SMALL_STATE(5013)] = 178996, + [SMALL_STATE(5014)] = 179012, + [SMALL_STATE(5015)] = 179032, + [SMALL_STATE(5016)] = 179050, + [SMALL_STATE(5017)] = 179070, + [SMALL_STATE(5018)] = 179090, + [SMALL_STATE(5019)] = 179110, + [SMALL_STATE(5020)] = 179122, + [SMALL_STATE(5021)] = 179138, + [SMALL_STATE(5022)] = 179158, + [SMALL_STATE(5023)] = 179174, + [SMALL_STATE(5024)] = 179194, + [SMALL_STATE(5025)] = 179210, + [SMALL_STATE(5026)] = 179226, + [SMALL_STATE(5027)] = 179246, + [SMALL_STATE(5028)] = 179266, + [SMALL_STATE(5029)] = 179286, + [SMALL_STATE(5030)] = 179302, + [SMALL_STATE(5031)] = 179314, + [SMALL_STATE(5032)] = 179330, + [SMALL_STATE(5033)] = 179348, + [SMALL_STATE(5034)] = 179368, + [SMALL_STATE(5035)] = 179388, + [SMALL_STATE(5036)] = 179408, + [SMALL_STATE(5037)] = 179428, + [SMALL_STATE(5038)] = 179448, + [SMALL_STATE(5039)] = 179468, + [SMALL_STATE(5040)] = 179484, + [SMALL_STATE(5041)] = 179504, + [SMALL_STATE(5042)] = 179520, + [SMALL_STATE(5043)] = 179538, + [SMALL_STATE(5044)] = 179558, + [SMALL_STATE(5045)] = 179570, + [SMALL_STATE(5046)] = 179590, + [SMALL_STATE(5047)] = 179610, + [SMALL_STATE(5048)] = 179622, + [SMALL_STATE(5049)] = 179634, + [SMALL_STATE(5050)] = 179654, + [SMALL_STATE(5051)] = 179666, + [SMALL_STATE(5052)] = 179678, + [SMALL_STATE(5053)] = 179694, + [SMALL_STATE(5054)] = 179706, + [SMALL_STATE(5055)] = 179726, + [SMALL_STATE(5056)] = 179746, + [SMALL_STATE(5057)] = 179762, + [SMALL_STATE(5058)] = 179780, + [SMALL_STATE(5059)] = 179792, + [SMALL_STATE(5060)] = 179812, + [SMALL_STATE(5061)] = 179832, + [SMALL_STATE(5062)] = 179852, + [SMALL_STATE(5063)] = 179870, + [SMALL_STATE(5064)] = 179886, + [SMALL_STATE(5065)] = 179906, + [SMALL_STATE(5066)] = 179924, + [SMALL_STATE(5067)] = 179940, + [SMALL_STATE(5068)] = 179958, + [SMALL_STATE(5069)] = 179972, + [SMALL_STATE(5070)] = 179984, + [SMALL_STATE(5071)] = 180004, + [SMALL_STATE(5072)] = 180020, + [SMALL_STATE(5073)] = 180040, + [SMALL_STATE(5074)] = 180060, + [SMALL_STATE(5075)] = 180076, + [SMALL_STATE(5076)] = 180088, + [SMALL_STATE(5077)] = 180108, + [SMALL_STATE(5078)] = 180128, + [SMALL_STATE(5079)] = 180144, + [SMALL_STATE(5080)] = 180164, + [SMALL_STATE(5081)] = 180180, + [SMALL_STATE(5082)] = 180200, + [SMALL_STATE(5083)] = 180218, + [SMALL_STATE(5084)] = 180230, + [SMALL_STATE(5085)] = 180246, + [SMALL_STATE(5086)] = 180262, + [SMALL_STATE(5087)] = 180278, + [SMALL_STATE(5088)] = 180294, + [SMALL_STATE(5089)] = 180314, + [SMALL_STATE(5090)] = 180334, + [SMALL_STATE(5091)] = 180354, + [SMALL_STATE(5092)] = 180370, + [SMALL_STATE(5093)] = 180390, + [SMALL_STATE(5094)] = 180408, + [SMALL_STATE(5095)] = 180424, + [SMALL_STATE(5096)] = 180442, + [SMALL_STATE(5097)] = 180462, + [SMALL_STATE(5098)] = 180482, + [SMALL_STATE(5099)] = 180502, + [SMALL_STATE(5100)] = 180522, + [SMALL_STATE(5101)] = 180538, + [SMALL_STATE(5102)] = 180554, + [SMALL_STATE(5103)] = 180570, + [SMALL_STATE(5104)] = 180586, + [SMALL_STATE(5105)] = 180606, + [SMALL_STATE(5106)] = 180626, + [SMALL_STATE(5107)] = 180646, + [SMALL_STATE(5108)] = 180662, + [SMALL_STATE(5109)] = 180678, + [SMALL_STATE(5110)] = 180698, + [SMALL_STATE(5111)] = 180714, + [SMALL_STATE(5112)] = 180734, + [SMALL_STATE(5113)] = 180754, + [SMALL_STATE(5114)] = 180774, + [SMALL_STATE(5115)] = 180790, + [SMALL_STATE(5116)] = 180810, + [SMALL_STATE(5117)] = 180830, + [SMALL_STATE(5118)] = 180850, + [SMALL_STATE(5119)] = 180870, + [SMALL_STATE(5120)] = 180886, + [SMALL_STATE(5121)] = 180902, + [SMALL_STATE(5122)] = 180922, + [SMALL_STATE(5123)] = 180942, + [SMALL_STATE(5124)] = 180962, + [SMALL_STATE(5125)] = 180980, + [SMALL_STATE(5126)] = 180992, + [SMALL_STATE(5127)] = 181012, + [SMALL_STATE(5128)] = 181026, + [SMALL_STATE(5129)] = 181038, + [SMALL_STATE(5130)] = 181056, + [SMALL_STATE(5131)] = 181076, + [SMALL_STATE(5132)] = 181096, + [SMALL_STATE(5133)] = 181116, + [SMALL_STATE(5134)] = 181132, + [SMALL_STATE(5135)] = 181152, + [SMALL_STATE(5136)] = 181172, + [SMALL_STATE(5137)] = 181192, + [SMALL_STATE(5138)] = 181208, + [SMALL_STATE(5139)] = 181228, + [SMALL_STATE(5140)] = 181240, + [SMALL_STATE(5141)] = 181260, + [SMALL_STATE(5142)] = 181272, + [SMALL_STATE(5143)] = 181292, + [SMALL_STATE(5144)] = 181312, + [SMALL_STATE(5145)] = 181324, + [SMALL_STATE(5146)] = 181340, + [SMALL_STATE(5147)] = 181356, + [SMALL_STATE(5148)] = 181372, + [SMALL_STATE(5149)] = 181392, + [SMALL_STATE(5150)] = 181412, + [SMALL_STATE(5151)] = 181424, + [SMALL_STATE(5152)] = 181444, + [SMALL_STATE(5153)] = 181456, + [SMALL_STATE(5154)] = 181476, + [SMALL_STATE(5155)] = 181496, + [SMALL_STATE(5156)] = 181512, + [SMALL_STATE(5157)] = 181528, + [SMALL_STATE(5158)] = 181544, + [SMALL_STATE(5159)] = 181564, + [SMALL_STATE(5160)] = 181580, + [SMALL_STATE(5161)] = 181600, + [SMALL_STATE(5162)] = 181620, + [SMALL_STATE(5163)] = 181638, + [SMALL_STATE(5164)] = 181658, + [SMALL_STATE(5165)] = 181674, + [SMALL_STATE(5166)] = 181694, + [SMALL_STATE(5167)] = 181714, + [SMALL_STATE(5168)] = 181730, + [SMALL_STATE(5169)] = 181746, + [SMALL_STATE(5170)] = 181762, + [SMALL_STATE(5171)] = 181778, + [SMALL_STATE(5172)] = 181794, + [SMALL_STATE(5173)] = 181814, + [SMALL_STATE(5174)] = 181830, + [SMALL_STATE(5175)] = 181850, + [SMALL_STATE(5176)] = 181866, + [SMALL_STATE(5177)] = 181886, + [SMALL_STATE(5178)] = 181902, + [SMALL_STATE(5179)] = 181922, + [SMALL_STATE(5180)] = 181942, + [SMALL_STATE(5181)] = 181958, + [SMALL_STATE(5182)] = 181974, + [SMALL_STATE(5183)] = 181990, + [SMALL_STATE(5184)] = 182010, + [SMALL_STATE(5185)] = 182030, + [SMALL_STATE(5186)] = 182050, + [SMALL_STATE(5187)] = 182066, + [SMALL_STATE(5188)] = 182082, + [SMALL_STATE(5189)] = 182098, + [SMALL_STATE(5190)] = 182118, + [SMALL_STATE(5191)] = 182134, + [SMALL_STATE(5192)] = 182154, + [SMALL_STATE(5193)] = 182174, + [SMALL_STATE(5194)] = 182194, + [SMALL_STATE(5195)] = 182214, + [SMALL_STATE(5196)] = 182234, + [SMALL_STATE(5197)] = 182250, + [SMALL_STATE(5198)] = 182268, + [SMALL_STATE(5199)] = 182284, + [SMALL_STATE(5200)] = 182304, + [SMALL_STATE(5201)] = 182324, + [SMALL_STATE(5202)] = 182344, + [SMALL_STATE(5203)] = 182364, + [SMALL_STATE(5204)] = 182380, + [SMALL_STATE(5205)] = 182396, + [SMALL_STATE(5206)] = 182416, + [SMALL_STATE(5207)] = 182432, + [SMALL_STATE(5208)] = 182452, + [SMALL_STATE(5209)] = 182472, + [SMALL_STATE(5210)] = 182490, + [SMALL_STATE(5211)] = 182510, + [SMALL_STATE(5212)] = 182530, + [SMALL_STATE(5213)] = 182550, + [SMALL_STATE(5214)] = 182570, + [SMALL_STATE(5215)] = 182590, + [SMALL_STATE(5216)] = 182610, + [SMALL_STATE(5217)] = 182630, + [SMALL_STATE(5218)] = 182650, + [SMALL_STATE(5219)] = 182662, + [SMALL_STATE(5220)] = 182674, + [SMALL_STATE(5221)] = 182694, + [SMALL_STATE(5222)] = 182714, + [SMALL_STATE(5223)] = 182734, + [SMALL_STATE(5224)] = 182754, + [SMALL_STATE(5225)] = 182774, + [SMALL_STATE(5226)] = 182790, + [SMALL_STATE(5227)] = 182810, + [SMALL_STATE(5228)] = 182826, + [SMALL_STATE(5229)] = 182846, + [SMALL_STATE(5230)] = 182862, + [SMALL_STATE(5231)] = 182876, + [SMALL_STATE(5232)] = 182892, + [SMALL_STATE(5233)] = 182910, + [SMALL_STATE(5234)] = 182930, + [SMALL_STATE(5235)] = 182950, + [SMALL_STATE(5236)] = 182970, + [SMALL_STATE(5237)] = 182986, + [SMALL_STATE(5238)] = 183006, + [SMALL_STATE(5239)] = 183026, + [SMALL_STATE(5240)] = 183046, + [SMALL_STATE(5241)] = 183062, + [SMALL_STATE(5242)] = 183078, + [SMALL_STATE(5243)] = 183098, + [SMALL_STATE(5244)] = 183114, + [SMALL_STATE(5245)] = 183134, + [SMALL_STATE(5246)] = 183150, + [SMALL_STATE(5247)] = 183170, + [SMALL_STATE(5248)] = 183190, + [SMALL_STATE(5249)] = 183210, + [SMALL_STATE(5250)] = 183228, + [SMALL_STATE(5251)] = 183240, + [SMALL_STATE(5252)] = 183260, + [SMALL_STATE(5253)] = 183280, + [SMALL_STATE(5254)] = 183300, + [SMALL_STATE(5255)] = 183316, + [SMALL_STATE(5256)] = 183336, + [SMALL_STATE(5257)] = 183348, + [SMALL_STATE(5258)] = 183368, + [SMALL_STATE(5259)] = 183380, + [SMALL_STATE(5260)] = 183400, + [SMALL_STATE(5261)] = 183414, + [SMALL_STATE(5262)] = 183434, + [SMALL_STATE(5263)] = 183454, + [SMALL_STATE(5264)] = 183466, + [SMALL_STATE(5265)] = 183484, + [SMALL_STATE(5266)] = 183504, + [SMALL_STATE(5267)] = 183520, + [SMALL_STATE(5268)] = 183538, + [SMALL_STATE(5269)] = 183554, + [SMALL_STATE(5270)] = 183574, + [SMALL_STATE(5271)] = 183586, + [SMALL_STATE(5272)] = 183598, + [SMALL_STATE(5273)] = 183618, + [SMALL_STATE(5274)] = 183630, + [SMALL_STATE(5275)] = 183647, + [SMALL_STATE(5276)] = 183664, + [SMALL_STATE(5277)] = 183681, + [SMALL_STATE(5278)] = 183698, + [SMALL_STATE(5279)] = 183715, + [SMALL_STATE(5280)] = 183732, + [SMALL_STATE(5281)] = 183749, + [SMALL_STATE(5282)] = 183766, + [SMALL_STATE(5283)] = 183783, + [SMALL_STATE(5284)] = 183800, + [SMALL_STATE(5285)] = 183817, + [SMALL_STATE(5286)] = 183834, + [SMALL_STATE(5287)] = 183851, + [SMALL_STATE(5288)] = 183866, + [SMALL_STATE(5289)] = 183881, + [SMALL_STATE(5290)] = 183898, + [SMALL_STATE(5291)] = 183915, + [SMALL_STATE(5292)] = 183932, + [SMALL_STATE(5293)] = 183949, + [SMALL_STATE(5294)] = 183966, + [SMALL_STATE(5295)] = 183981, + [SMALL_STATE(5296)] = 183998, + [SMALL_STATE(5297)] = 184015, + [SMALL_STATE(5298)] = 184032, + [SMALL_STATE(5299)] = 184049, + [SMALL_STATE(5300)] = 184064, + [SMALL_STATE(5301)] = 184081, + [SMALL_STATE(5302)] = 184098, + [SMALL_STATE(5303)] = 184113, + [SMALL_STATE(5304)] = 184128, + [SMALL_STATE(5305)] = 184145, + [SMALL_STATE(5306)] = 184162, + [SMALL_STATE(5307)] = 184177, + [SMALL_STATE(5308)] = 184194, + [SMALL_STATE(5309)] = 184211, + [SMALL_STATE(5310)] = 184228, + [SMALL_STATE(5311)] = 184243, + [SMALL_STATE(5312)] = 184258, + [SMALL_STATE(5313)] = 184271, + [SMALL_STATE(5314)] = 184288, + [SMALL_STATE(5315)] = 184301, + [SMALL_STATE(5316)] = 184318, + [SMALL_STATE(5317)] = 184335, + [SMALL_STATE(5318)] = 184352, + [SMALL_STATE(5319)] = 184369, + [SMALL_STATE(5320)] = 184386, + [SMALL_STATE(5321)] = 184403, + [SMALL_STATE(5322)] = 184420, + [SMALL_STATE(5323)] = 184435, + [SMALL_STATE(5324)] = 184452, + [SMALL_STATE(5325)] = 184469, + [SMALL_STATE(5326)] = 184486, + [SMALL_STATE(5327)] = 184503, + [SMALL_STATE(5328)] = 184520, + [SMALL_STATE(5329)] = 184535, + [SMALL_STATE(5330)] = 184552, + [SMALL_STATE(5331)] = 184567, + [SMALL_STATE(5332)] = 184584, + [SMALL_STATE(5333)] = 184599, + [SMALL_STATE(5334)] = 184614, + [SMALL_STATE(5335)] = 184627, + [SMALL_STATE(5336)] = 184642, + [SMALL_STATE(5337)] = 184659, + [SMALL_STATE(5338)] = 184676, + [SMALL_STATE(5339)] = 184693, + [SMALL_STATE(5340)] = 184710, + [SMALL_STATE(5341)] = 184727, + [SMALL_STATE(5342)] = 184742, + [SMALL_STATE(5343)] = 184759, + [SMALL_STATE(5344)] = 184774, + [SMALL_STATE(5345)] = 184791, + [SMALL_STATE(5346)] = 184808, + [SMALL_STATE(5347)] = 184823, + [SMALL_STATE(5348)] = 184834, + [SMALL_STATE(5349)] = 184851, + [SMALL_STATE(5350)] = 184866, + [SMALL_STATE(5351)] = 184883, + [SMALL_STATE(5352)] = 184900, + [SMALL_STATE(5353)] = 184917, + [SMALL_STATE(5354)] = 184934, + [SMALL_STATE(5355)] = 184951, + [SMALL_STATE(5356)] = 184968, + [SMALL_STATE(5357)] = 184985, + [SMALL_STATE(5358)] = 185002, + [SMALL_STATE(5359)] = 185019, + [SMALL_STATE(5360)] = 185036, + [SMALL_STATE(5361)] = 185053, + [SMALL_STATE(5362)] = 185070, + [SMALL_STATE(5363)] = 185087, + [SMALL_STATE(5364)] = 185104, + [SMALL_STATE(5365)] = 185119, + [SMALL_STATE(5366)] = 185130, + [SMALL_STATE(5367)] = 185147, + [SMALL_STATE(5368)] = 185164, + [SMALL_STATE(5369)] = 185181, + [SMALL_STATE(5370)] = 185198, + [SMALL_STATE(5371)] = 185215, + [SMALL_STATE(5372)] = 185232, + [SMALL_STATE(5373)] = 185249, + [SMALL_STATE(5374)] = 185266, + [SMALL_STATE(5375)] = 185283, + [SMALL_STATE(5376)] = 185298, + [SMALL_STATE(5377)] = 185315, + [SMALL_STATE(5378)] = 185332, + [SMALL_STATE(5379)] = 185349, + [SMALL_STATE(5380)] = 185366, + [SMALL_STATE(5381)] = 185381, + [SMALL_STATE(5382)] = 185396, + [SMALL_STATE(5383)] = 185411, + [SMALL_STATE(5384)] = 185426, + [SMALL_STATE(5385)] = 185443, + [SMALL_STATE(5386)] = 185460, + [SMALL_STATE(5387)] = 185475, + [SMALL_STATE(5388)] = 185492, + [SMALL_STATE(5389)] = 185509, + [SMALL_STATE(5390)] = 185524, + [SMALL_STATE(5391)] = 185541, + [SMALL_STATE(5392)] = 185554, + [SMALL_STATE(5393)] = 185567, + [SMALL_STATE(5394)] = 185584, + [SMALL_STATE(5395)] = 185601, + [SMALL_STATE(5396)] = 185618, + [SMALL_STATE(5397)] = 185635, + [SMALL_STATE(5398)] = 185652, + [SMALL_STATE(5399)] = 185667, + [SMALL_STATE(5400)] = 185684, + [SMALL_STATE(5401)] = 185701, + [SMALL_STATE(5402)] = 185712, + [SMALL_STATE(5403)] = 185729, + [SMALL_STATE(5404)] = 185740, + [SMALL_STATE(5405)] = 185757, + [SMALL_STATE(5406)] = 185774, + [SMALL_STATE(5407)] = 185791, + [SMALL_STATE(5408)] = 185808, + [SMALL_STATE(5409)] = 185823, + [SMALL_STATE(5410)] = 185840, + [SMALL_STATE(5411)] = 185850, + [SMALL_STATE(5412)] = 185864, + [SMALL_STATE(5413)] = 185874, + [SMALL_STATE(5414)] = 185884, + [SMALL_STATE(5415)] = 185894, + [SMALL_STATE(5416)] = 185908, + [SMALL_STATE(5417)] = 185918, + [SMALL_STATE(5418)] = 185930, + [SMALL_STATE(5419)] = 185940, + [SMALL_STATE(5420)] = 185950, + [SMALL_STATE(5421)] = 185962, + [SMALL_STATE(5422)] = 185972, + [SMALL_STATE(5423)] = 185988, + [SMALL_STATE(5424)] = 185998, + [SMALL_STATE(5425)] = 186008, + [SMALL_STATE(5426)] = 186018, + [SMALL_STATE(5427)] = 186028, + [SMALL_STATE(5428)] = 186038, + [SMALL_STATE(5429)] = 186048, + [SMALL_STATE(5430)] = 186058, + [SMALL_STATE(5431)] = 186068, + [SMALL_STATE(5432)] = 186078, + [SMALL_STATE(5433)] = 186088, + [SMALL_STATE(5434)] = 186098, + [SMALL_STATE(5435)] = 186112, + [SMALL_STATE(5436)] = 186126, + [SMALL_STATE(5437)] = 186136, + [SMALL_STATE(5438)] = 186146, + [SMALL_STATE(5439)] = 186156, + [SMALL_STATE(5440)] = 186166, + [SMALL_STATE(5441)] = 186178, + [SMALL_STATE(5442)] = 186188, + [SMALL_STATE(5443)] = 186198, + [SMALL_STATE(5444)] = 186208, + [SMALL_STATE(5445)] = 186218, + [SMALL_STATE(5446)] = 186228, + [SMALL_STATE(5447)] = 186242, + [SMALL_STATE(5448)] = 186252, + [SMALL_STATE(5449)] = 186262, + [SMALL_STATE(5450)] = 186272, + [SMALL_STATE(5451)] = 186282, + [SMALL_STATE(5452)] = 186296, + [SMALL_STATE(5453)] = 186310, + [SMALL_STATE(5454)] = 186320, + [SMALL_STATE(5455)] = 186334, + [SMALL_STATE(5456)] = 186348, + [SMALL_STATE(5457)] = 186358, + [SMALL_STATE(5458)] = 186368, + [SMALL_STATE(5459)] = 186378, + [SMALL_STATE(5460)] = 186388, + [SMALL_STATE(5461)] = 186398, + [SMALL_STATE(5462)] = 186410, + [SMALL_STATE(5463)] = 186420, + [SMALL_STATE(5464)] = 186434, + [SMALL_STATE(5465)] = 186444, + [SMALL_STATE(5466)] = 186458, + [SMALL_STATE(5467)] = 186472, + [SMALL_STATE(5468)] = 186486, + [SMALL_STATE(5469)] = 186500, + [SMALL_STATE(5470)] = 186516, + [SMALL_STATE(5471)] = 186530, + [SMALL_STATE(5472)] = 186544, + [SMALL_STATE(5473)] = 186558, + [SMALL_STATE(5474)] = 186572, + [SMALL_STATE(5475)] = 186586, + [SMALL_STATE(5476)] = 186596, + [SMALL_STATE(5477)] = 186610, + [SMALL_STATE(5478)] = 186624, + [SMALL_STATE(5479)] = 186634, + [SMALL_STATE(5480)] = 186644, + [SMALL_STATE(5481)] = 186654, + [SMALL_STATE(5482)] = 186664, + [SMALL_STATE(5483)] = 186674, + [SMALL_STATE(5484)] = 186684, + [SMALL_STATE(5485)] = 186694, + [SMALL_STATE(5486)] = 186704, + [SMALL_STATE(5487)] = 186714, + [SMALL_STATE(5488)] = 186724, + [SMALL_STATE(5489)] = 186734, + [SMALL_STATE(5490)] = 186744, + [SMALL_STATE(5491)] = 186754, + [SMALL_STATE(5492)] = 186764, + [SMALL_STATE(5493)] = 186774, + [SMALL_STATE(5494)] = 186784, + [SMALL_STATE(5495)] = 186798, + [SMALL_STATE(5496)] = 186808, + [SMALL_STATE(5497)] = 186818, + [SMALL_STATE(5498)] = 186828, + [SMALL_STATE(5499)] = 186838, + [SMALL_STATE(5500)] = 186850, + [SMALL_STATE(5501)] = 186860, + [SMALL_STATE(5502)] = 186870, + [SMALL_STATE(5503)] = 186880, + [SMALL_STATE(5504)] = 186890, + [SMALL_STATE(5505)] = 186900, + [SMALL_STATE(5506)] = 186910, + [SMALL_STATE(5507)] = 186920, + [SMALL_STATE(5508)] = 186930, + [SMALL_STATE(5509)] = 186944, + [SMALL_STATE(5510)] = 186954, + [SMALL_STATE(5511)] = 186964, + [SMALL_STATE(5512)] = 186974, + [SMALL_STATE(5513)] = 186984, + [SMALL_STATE(5514)] = 186994, + [SMALL_STATE(5515)] = 187004, + [SMALL_STATE(5516)] = 187014, + [SMALL_STATE(5517)] = 187028, + [SMALL_STATE(5518)] = 187038, + [SMALL_STATE(5519)] = 187052, + [SMALL_STATE(5520)] = 187062, + [SMALL_STATE(5521)] = 187072, + [SMALL_STATE(5522)] = 187082, + [SMALL_STATE(5523)] = 187092, + [SMALL_STATE(5524)] = 187102, + [SMALL_STATE(5525)] = 187112, + [SMALL_STATE(5526)] = 187122, + [SMALL_STATE(5527)] = 187132, + [SMALL_STATE(5528)] = 187142, + [SMALL_STATE(5529)] = 187152, + [SMALL_STATE(5530)] = 187162, + [SMALL_STATE(5531)] = 187176, + [SMALL_STATE(5532)] = 187186, + [SMALL_STATE(5533)] = 187200, + [SMALL_STATE(5534)] = 187210, + [SMALL_STATE(5535)] = 187220, + [SMALL_STATE(5536)] = 187230, + [SMALL_STATE(5537)] = 187244, + [SMALL_STATE(5538)] = 187258, + [SMALL_STATE(5539)] = 187268, + [SMALL_STATE(5540)] = 187278, + [SMALL_STATE(5541)] = 187292, + [SMALL_STATE(5542)] = 187302, + [SMALL_STATE(5543)] = 187312, + [SMALL_STATE(5544)] = 187322, + [SMALL_STATE(5545)] = 187332, + [SMALL_STATE(5546)] = 187342, + [SMALL_STATE(5547)] = 187352, + [SMALL_STATE(5548)] = 187362, + [SMALL_STATE(5549)] = 187372, + [SMALL_STATE(5550)] = 187384, + [SMALL_STATE(5551)] = 187394, + [SMALL_STATE(5552)] = 187404, + [SMALL_STATE(5553)] = 187414, + [SMALL_STATE(5554)] = 187424, + [SMALL_STATE(5555)] = 187436, + [SMALL_STATE(5556)] = 187450, + [SMALL_STATE(5557)] = 187464, + [SMALL_STATE(5558)] = 187474, + [SMALL_STATE(5559)] = 187484, + [SMALL_STATE(5560)] = 187494, + [SMALL_STATE(5561)] = 187504, + [SMALL_STATE(5562)] = 187514, + [SMALL_STATE(5563)] = 187524, + [SMALL_STATE(5564)] = 187534, + [SMALL_STATE(5565)] = 187544, + [SMALL_STATE(5566)] = 187554, + [SMALL_STATE(5567)] = 187564, + [SMALL_STATE(5568)] = 187574, + [SMALL_STATE(5569)] = 187584, + [SMALL_STATE(5570)] = 187594, + [SMALL_STATE(5571)] = 187604, + [SMALL_STATE(5572)] = 187616, + [SMALL_STATE(5573)] = 187626, + [SMALL_STATE(5574)] = 187636, + [SMALL_STATE(5575)] = 187646, + [SMALL_STATE(5576)] = 187656, + [SMALL_STATE(5577)] = 187666, + [SMALL_STATE(5578)] = 187676, + [SMALL_STATE(5579)] = 187686, + [SMALL_STATE(5580)] = 187700, + [SMALL_STATE(5581)] = 187710, + [SMALL_STATE(5582)] = 187722, + [SMALL_STATE(5583)] = 187736, + [SMALL_STATE(5584)] = 187746, + [SMALL_STATE(5585)] = 187760, + [SMALL_STATE(5586)] = 187774, + [SMALL_STATE(5587)] = 187788, + [SMALL_STATE(5588)] = 187804, + [SMALL_STATE(5589)] = 187814, + [SMALL_STATE(5590)] = 187824, + [SMALL_STATE(5591)] = 187834, + [SMALL_STATE(5592)] = 187844, + [SMALL_STATE(5593)] = 187854, + [SMALL_STATE(5594)] = 187864, + [SMALL_STATE(5595)] = 187874, + [SMALL_STATE(5596)] = 187884, + [SMALL_STATE(5597)] = 187894, + [SMALL_STATE(5598)] = 187904, + [SMALL_STATE(5599)] = 187918, + [SMALL_STATE(5600)] = 187928, + [SMALL_STATE(5601)] = 187938, + [SMALL_STATE(5602)] = 187948, + [SMALL_STATE(5603)] = 187958, + [SMALL_STATE(5604)] = 187968, + [SMALL_STATE(5605)] = 187982, + [SMALL_STATE(5606)] = 187992, + [SMALL_STATE(5607)] = 188002, + [SMALL_STATE(5608)] = 188012, + [SMALL_STATE(5609)] = 188022, + [SMALL_STATE(5610)] = 188032, + [SMALL_STATE(5611)] = 188042, + [SMALL_STATE(5612)] = 188052, + [SMALL_STATE(5613)] = 188062, + [SMALL_STATE(5614)] = 188076, + [SMALL_STATE(5615)] = 188086, + [SMALL_STATE(5616)] = 188096, + [SMALL_STATE(5617)] = 188106, + [SMALL_STATE(5618)] = 188116, + [SMALL_STATE(5619)] = 188126, + [SMALL_STATE(5620)] = 188136, + [SMALL_STATE(5621)] = 188146, + [SMALL_STATE(5622)] = 188156, + [SMALL_STATE(5623)] = 188166, + [SMALL_STATE(5624)] = 188180, + [SMALL_STATE(5625)] = 188190, + [SMALL_STATE(5626)] = 188200, + [SMALL_STATE(5627)] = 188214, + [SMALL_STATE(5628)] = 188224, + [SMALL_STATE(5629)] = 188238, + [SMALL_STATE(5630)] = 188248, + [SMALL_STATE(5631)] = 188262, + [SMALL_STATE(5632)] = 188276, + [SMALL_STATE(5633)] = 188286, + [SMALL_STATE(5634)] = 188296, + [SMALL_STATE(5635)] = 188306, + [SMALL_STATE(5636)] = 188316, + [SMALL_STATE(5637)] = 188326, + [SMALL_STATE(5638)] = 188336, + [SMALL_STATE(5639)] = 188346, + [SMALL_STATE(5640)] = 188356, + [SMALL_STATE(5641)] = 188366, + [SMALL_STATE(5642)] = 188378, + [SMALL_STATE(5643)] = 188388, + [SMALL_STATE(5644)] = 188398, + [SMALL_STATE(5645)] = 188408, + [SMALL_STATE(5646)] = 188418, + [SMALL_STATE(5647)] = 188428, + [SMALL_STATE(5648)] = 188438, + [SMALL_STATE(5649)] = 188448, + [SMALL_STATE(5650)] = 188462, + [SMALL_STATE(5651)] = 188472, + [SMALL_STATE(5652)] = 188482, + [SMALL_STATE(5653)] = 188492, + [SMALL_STATE(5654)] = 188502, + [SMALL_STATE(5655)] = 188512, + [SMALL_STATE(5656)] = 188522, + [SMALL_STATE(5657)] = 188532, + [SMALL_STATE(5658)] = 188542, + [SMALL_STATE(5659)] = 188552, + [SMALL_STATE(5660)] = 188562, + [SMALL_STATE(5661)] = 188572, + [SMALL_STATE(5662)] = 188582, + [SMALL_STATE(5663)] = 188592, + [SMALL_STATE(5664)] = 188602, + [SMALL_STATE(5665)] = 188612, + [SMALL_STATE(5666)] = 188622, + [SMALL_STATE(5667)] = 188632, + [SMALL_STATE(5668)] = 188644, + [SMALL_STATE(5669)] = 188654, + [SMALL_STATE(5670)] = 188664, + [SMALL_STATE(5671)] = 188674, + [SMALL_STATE(5672)] = 188684, + [SMALL_STATE(5673)] = 188694, + [SMALL_STATE(5674)] = 188704, + [SMALL_STATE(5675)] = 188714, + [SMALL_STATE(5676)] = 188724, + [SMALL_STATE(5677)] = 188734, + [SMALL_STATE(5678)] = 188744, + [SMALL_STATE(5679)] = 188758, + [SMALL_STATE(5680)] = 188768, + [SMALL_STATE(5681)] = 188778, + [SMALL_STATE(5682)] = 188788, + [SMALL_STATE(5683)] = 188798, + [SMALL_STATE(5684)] = 188812, + [SMALL_STATE(5685)] = 188822, + [SMALL_STATE(5686)] = 188832, + [SMALL_STATE(5687)] = 188846, + [SMALL_STATE(5688)] = 188856, + [SMALL_STATE(5689)] = 188866, + [SMALL_STATE(5690)] = 188876, + [SMALL_STATE(5691)] = 188886, + [SMALL_STATE(5692)] = 188898, + [SMALL_STATE(5693)] = 188908, + [SMALL_STATE(5694)] = 188918, + [SMALL_STATE(5695)] = 188928, + [SMALL_STATE(5696)] = 188938, + [SMALL_STATE(5697)] = 188948, + [SMALL_STATE(5698)] = 188962, + [SMALL_STATE(5699)] = 188972, + [SMALL_STATE(5700)] = 188986, + [SMALL_STATE(5701)] = 188996, + [SMALL_STATE(5702)] = 189010, + [SMALL_STATE(5703)] = 189020, + [SMALL_STATE(5704)] = 189032, + [SMALL_STATE(5705)] = 189042, + [SMALL_STATE(5706)] = 189052, + [SMALL_STATE(5707)] = 189062, + [SMALL_STATE(5708)] = 189072, + [SMALL_STATE(5709)] = 189082, + [SMALL_STATE(5710)] = 189092, + [SMALL_STATE(5711)] = 189102, + [SMALL_STATE(5712)] = 189114, + [SMALL_STATE(5713)] = 189124, + [SMALL_STATE(5714)] = 189134, + [SMALL_STATE(5715)] = 189144, + [SMALL_STATE(5716)] = 189154, + [SMALL_STATE(5717)] = 189164, + [SMALL_STATE(5718)] = 189174, + [SMALL_STATE(5719)] = 189184, + [SMALL_STATE(5720)] = 189198, + [SMALL_STATE(5721)] = 189208, + [SMALL_STATE(5722)] = 189218, + [SMALL_STATE(5723)] = 189228, + [SMALL_STATE(5724)] = 189238, + [SMALL_STATE(5725)] = 189248, + [SMALL_STATE(5726)] = 189258, + [SMALL_STATE(5727)] = 189268, + [SMALL_STATE(5728)] = 189278, + [SMALL_STATE(5729)] = 189288, + [SMALL_STATE(5730)] = 189298, + [SMALL_STATE(5731)] = 189310, + [SMALL_STATE(5732)] = 189320, + [SMALL_STATE(5733)] = 189330, + [SMALL_STATE(5734)] = 189340, + [SMALL_STATE(5735)] = 189350, + [SMALL_STATE(5736)] = 189364, + [SMALL_STATE(5737)] = 189374, + [SMALL_STATE(5738)] = 189388, + [SMALL_STATE(5739)] = 189402, + [SMALL_STATE(5740)] = 189412, + [SMALL_STATE(5741)] = 189426, + [SMALL_STATE(5742)] = 189440, + [SMALL_STATE(5743)] = 189454, + [SMALL_STATE(5744)] = 189468, + [SMALL_STATE(5745)] = 189478, + [SMALL_STATE(5746)] = 189492, + [SMALL_STATE(5747)] = 189504, + [SMALL_STATE(5748)] = 189518, + [SMALL_STATE(5749)] = 189532, + [SMALL_STATE(5750)] = 189546, + [SMALL_STATE(5751)] = 189556, + [SMALL_STATE(5752)] = 189570, + [SMALL_STATE(5753)] = 189584, + [SMALL_STATE(5754)] = 189598, + [SMALL_STATE(5755)] = 189612, + [SMALL_STATE(5756)] = 189626, + [SMALL_STATE(5757)] = 189640, + [SMALL_STATE(5758)] = 189654, + [SMALL_STATE(5759)] = 189664, + [SMALL_STATE(5760)] = 189674, + [SMALL_STATE(5761)] = 189684, + [SMALL_STATE(5762)] = 189698, + [SMALL_STATE(5763)] = 189712, + [SMALL_STATE(5764)] = 189726, + [SMALL_STATE(5765)] = 189740, + [SMALL_STATE(5766)] = 189750, + [SMALL_STATE(5767)] = 189762, + [SMALL_STATE(5768)] = 189776, + [SMALL_STATE(5769)] = 189786, + [SMALL_STATE(5770)] = 189796, + [SMALL_STATE(5771)] = 189810, + [SMALL_STATE(5772)] = 189820, + [SMALL_STATE(5773)] = 189830, + [SMALL_STATE(5774)] = 189840, + [SMALL_STATE(5775)] = 189850, + [SMALL_STATE(5776)] = 189860, + [SMALL_STATE(5777)] = 189870, + [SMALL_STATE(5778)] = 189880, + [SMALL_STATE(5779)] = 189890, + [SMALL_STATE(5780)] = 189900, + [SMALL_STATE(5781)] = 189910, + [SMALL_STATE(5782)] = 189920, + [SMALL_STATE(5783)] = 189934, + [SMALL_STATE(5784)] = 189944, + [SMALL_STATE(5785)] = 189954, + [SMALL_STATE(5786)] = 189964, + [SMALL_STATE(5787)] = 189978, + [SMALL_STATE(5788)] = 189988, + [SMALL_STATE(5789)] = 189998, + [SMALL_STATE(5790)] = 190008, + [SMALL_STATE(5791)] = 190018, + [SMALL_STATE(5792)] = 190030, + [SMALL_STATE(5793)] = 190044, + [SMALL_STATE(5794)] = 190056, + [SMALL_STATE(5795)] = 190066, + [SMALL_STATE(5796)] = 190076, + [SMALL_STATE(5797)] = 190090, + [SMALL_STATE(5798)] = 190104, + [SMALL_STATE(5799)] = 190114, + [SMALL_STATE(5800)] = 190124, + [SMALL_STATE(5801)] = 190134, + [SMALL_STATE(5802)] = 190144, + [SMALL_STATE(5803)] = 190154, + [SMALL_STATE(5804)] = 190164, + [SMALL_STATE(5805)] = 190174, + [SMALL_STATE(5806)] = 190186, + [SMALL_STATE(5807)] = 190196, + [SMALL_STATE(5808)] = 190206, + [SMALL_STATE(5809)] = 190220, + [SMALL_STATE(5810)] = 190230, + [SMALL_STATE(5811)] = 190244, + [SMALL_STATE(5812)] = 190254, + [SMALL_STATE(5813)] = 190268, + [SMALL_STATE(5814)] = 190278, + [SMALL_STATE(5815)] = 190292, + [SMALL_STATE(5816)] = 190302, + [SMALL_STATE(5817)] = 190312, + [SMALL_STATE(5818)] = 190322, + [SMALL_STATE(5819)] = 190332, + [SMALL_STATE(5820)] = 190342, + [SMALL_STATE(5821)] = 190356, + [SMALL_STATE(5822)] = 190370, + [SMALL_STATE(5823)] = 190380, + [SMALL_STATE(5824)] = 190390, + [SMALL_STATE(5825)] = 190404, + [SMALL_STATE(5826)] = 190414, + [SMALL_STATE(5827)] = 190424, + [SMALL_STATE(5828)] = 190438, + [SMALL_STATE(5829)] = 190448, + [SMALL_STATE(5830)] = 190462, + [SMALL_STATE(5831)] = 190472, + [SMALL_STATE(5832)] = 190482, + [SMALL_STATE(5833)] = 190492, + [SMALL_STATE(5834)] = 190502, + [SMALL_STATE(5835)] = 190512, + [SMALL_STATE(5836)] = 190522, + [SMALL_STATE(5837)] = 190532, + [SMALL_STATE(5838)] = 190542, + [SMALL_STATE(5839)] = 190552, + [SMALL_STATE(5840)] = 190562, + [SMALL_STATE(5841)] = 190572, + [SMALL_STATE(5842)] = 190582, + [SMALL_STATE(5843)] = 190592, + [SMALL_STATE(5844)] = 190602, + [SMALL_STATE(5845)] = 190612, + [SMALL_STATE(5846)] = 190622, + [SMALL_STATE(5847)] = 190632, + [SMALL_STATE(5848)] = 190642, + [SMALL_STATE(5849)] = 190652, + [SMALL_STATE(5850)] = 190666, + [SMALL_STATE(5851)] = 190676, + [SMALL_STATE(5852)] = 190686, + [SMALL_STATE(5853)] = 190696, + [SMALL_STATE(5854)] = 190706, + [SMALL_STATE(5855)] = 190716, + [SMALL_STATE(5856)] = 190726, + [SMALL_STATE(5857)] = 190736, + [SMALL_STATE(5858)] = 190746, + [SMALL_STATE(5859)] = 190756, + [SMALL_STATE(5860)] = 190766, + [SMALL_STATE(5861)] = 190776, + [SMALL_STATE(5862)] = 190786, + [SMALL_STATE(5863)] = 190796, + [SMALL_STATE(5864)] = 190806, + [SMALL_STATE(5865)] = 190816, + [SMALL_STATE(5866)] = 190826, + [SMALL_STATE(5867)] = 190836, + [SMALL_STATE(5868)] = 190846, + [SMALL_STATE(5869)] = 190856, + [SMALL_STATE(5870)] = 190866, + [SMALL_STATE(5871)] = 190876, + [SMALL_STATE(5872)] = 190890, + [SMALL_STATE(5873)] = 190900, + [SMALL_STATE(5874)] = 190910, + [SMALL_STATE(5875)] = 190920, + [SMALL_STATE(5876)] = 190930, + [SMALL_STATE(5877)] = 190940, + [SMALL_STATE(5878)] = 190950, + [SMALL_STATE(5879)] = 190964, + [SMALL_STATE(5880)] = 190974, + [SMALL_STATE(5881)] = 190984, + [SMALL_STATE(5882)] = 190994, + [SMALL_STATE(5883)] = 191004, + [SMALL_STATE(5884)] = 191018, + [SMALL_STATE(5885)] = 191028, + [SMALL_STATE(5886)] = 191038, + [SMALL_STATE(5887)] = 191048, + [SMALL_STATE(5888)] = 191058, + [SMALL_STATE(5889)] = 191068, + [SMALL_STATE(5890)] = 191078, + [SMALL_STATE(5891)] = 191088, + [SMALL_STATE(5892)] = 191098, + [SMALL_STATE(5893)] = 191112, + [SMALL_STATE(5894)] = 191126, + [SMALL_STATE(5895)] = 191136, + [SMALL_STATE(5896)] = 191150, + [SMALL_STATE(5897)] = 191160, + [SMALL_STATE(5898)] = 191170, + [SMALL_STATE(5899)] = 191180, + [SMALL_STATE(5900)] = 191190, + [SMALL_STATE(5901)] = 191200, + [SMALL_STATE(5902)] = 191214, + [SMALL_STATE(5903)] = 191224, + [SMALL_STATE(5904)] = 191238, + [SMALL_STATE(5905)] = 191252, + [SMALL_STATE(5906)] = 191266, + [SMALL_STATE(5907)] = 191276, + [SMALL_STATE(5908)] = 191286, + [SMALL_STATE(5909)] = 191296, + [SMALL_STATE(5910)] = 191306, + [SMALL_STATE(5911)] = 191320, + [SMALL_STATE(5912)] = 191330, + [SMALL_STATE(5913)] = 191344, + [SMALL_STATE(5914)] = 191354, + [SMALL_STATE(5915)] = 191364, + [SMALL_STATE(5916)] = 191374, + [SMALL_STATE(5917)] = 191384, + [SMALL_STATE(5918)] = 191394, + [SMALL_STATE(5919)] = 191404, + [SMALL_STATE(5920)] = 191414, + [SMALL_STATE(5921)] = 191424, + [SMALL_STATE(5922)] = 191438, + [SMALL_STATE(5923)] = 191448, + [SMALL_STATE(5924)] = 191458, + [SMALL_STATE(5925)] = 191472, + [SMALL_STATE(5926)] = 191486, + [SMALL_STATE(5927)] = 191500, + [SMALL_STATE(5928)] = 191514, + [SMALL_STATE(5929)] = 191528, + [SMALL_STATE(5930)] = 191542, + [SMALL_STATE(5931)] = 191552, + [SMALL_STATE(5932)] = 191566, + [SMALL_STATE(5933)] = 191576, + [SMALL_STATE(5934)] = 191590, + [SMALL_STATE(5935)] = 191600, + [SMALL_STATE(5936)] = 191610, + [SMALL_STATE(5937)] = 191624, + [SMALL_STATE(5938)] = 191634, + [SMALL_STATE(5939)] = 191644, + [SMALL_STATE(5940)] = 191658, + [SMALL_STATE(5941)] = 191668, + [SMALL_STATE(5942)] = 191682, + [SMALL_STATE(5943)] = 191692, + [SMALL_STATE(5944)] = 191706, + [SMALL_STATE(5945)] = 191720, + [SMALL_STATE(5946)] = 191730, + [SMALL_STATE(5947)] = 191740, + [SMALL_STATE(5948)] = 191750, + [SMALL_STATE(5949)] = 191760, + [SMALL_STATE(5950)] = 191770, + [SMALL_STATE(5951)] = 191780, + [SMALL_STATE(5952)] = 191794, + [SMALL_STATE(5953)] = 191804, + [SMALL_STATE(5954)] = 191814, + [SMALL_STATE(5955)] = 191824, + [SMALL_STATE(5956)] = 191834, + [SMALL_STATE(5957)] = 191844, + [SMALL_STATE(5958)] = 191858, + [SMALL_STATE(5959)] = 191868, + [SMALL_STATE(5960)] = 191882, + [SMALL_STATE(5961)] = 191892, + [SMALL_STATE(5962)] = 191902, + [SMALL_STATE(5963)] = 191916, + [SMALL_STATE(5964)] = 191930, + [SMALL_STATE(5965)] = 191940, + [SMALL_STATE(5966)] = 191950, + [SMALL_STATE(5967)] = 191960, + [SMALL_STATE(5968)] = 191974, + [SMALL_STATE(5969)] = 191984, + [SMALL_STATE(5970)] = 191994, + [SMALL_STATE(5971)] = 192004, + [SMALL_STATE(5972)] = 192014, + [SMALL_STATE(5973)] = 192028, + [SMALL_STATE(5974)] = 192042, + [SMALL_STATE(5975)] = 192052, + [SMALL_STATE(5976)] = 192062, + [SMALL_STATE(5977)] = 192072, + [SMALL_STATE(5978)] = 192082, + [SMALL_STATE(5979)] = 192096, + [SMALL_STATE(5980)] = 192106, + [SMALL_STATE(5981)] = 192116, + [SMALL_STATE(5982)] = 192126, + [SMALL_STATE(5983)] = 192140, + [SMALL_STATE(5984)] = 192154, + [SMALL_STATE(5985)] = 192168, + [SMALL_STATE(5986)] = 192178, + [SMALL_STATE(5987)] = 192192, + [SMALL_STATE(5988)] = 192206, + [SMALL_STATE(5989)] = 192220, + [SMALL_STATE(5990)] = 192234, + [SMALL_STATE(5991)] = 192244, + [SMALL_STATE(5992)] = 192256, + [SMALL_STATE(5993)] = 192268, + [SMALL_STATE(5994)] = 192282, + [SMALL_STATE(5995)] = 192296, + [SMALL_STATE(5996)] = 192310, + [SMALL_STATE(5997)] = 192324, + [SMALL_STATE(5998)] = 192338, + [SMALL_STATE(5999)] = 192352, + [SMALL_STATE(6000)] = 192366, + [SMALL_STATE(6001)] = 192380, + [SMALL_STATE(6002)] = 192394, + [SMALL_STATE(6003)] = 192410, + [SMALL_STATE(6004)] = 192420, + [SMALL_STATE(6005)] = 192434, + [SMALL_STATE(6006)] = 192448, + [SMALL_STATE(6007)] = 192462, + [SMALL_STATE(6008)] = 192478, + [SMALL_STATE(6009)] = 192492, + [SMALL_STATE(6010)] = 192506, + [SMALL_STATE(6011)] = 192520, + [SMALL_STATE(6012)] = 192534, + [SMALL_STATE(6013)] = 192548, + [SMALL_STATE(6014)] = 192562, + [SMALL_STATE(6015)] = 192576, + [SMALL_STATE(6016)] = 192590, + [SMALL_STATE(6017)] = 192600, + [SMALL_STATE(6018)] = 192614, + [SMALL_STATE(6019)] = 192628, + [SMALL_STATE(6020)] = 192642, + [SMALL_STATE(6021)] = 192654, + [SMALL_STATE(6022)] = 192668, + [SMALL_STATE(6023)] = 192682, + [SMALL_STATE(6024)] = 192693, + [SMALL_STATE(6025)] = 192704, + [SMALL_STATE(6026)] = 192715, + [SMALL_STATE(6027)] = 192726, + [SMALL_STATE(6028)] = 192737, + [SMALL_STATE(6029)] = 192748, + [SMALL_STATE(6030)] = 192759, + [SMALL_STATE(6031)] = 192770, + [SMALL_STATE(6032)] = 192781, + [SMALL_STATE(6033)] = 192792, + [SMALL_STATE(6034)] = 192801, + [SMALL_STATE(6035)] = 192812, + [SMALL_STATE(6036)] = 192821, + [SMALL_STATE(6037)] = 192832, + [SMALL_STATE(6038)] = 192843, + [SMALL_STATE(6039)] = 192852, + [SMALL_STATE(6040)] = 192863, + [SMALL_STATE(6041)] = 192874, + [SMALL_STATE(6042)] = 192885, + [SMALL_STATE(6043)] = 192896, + [SMALL_STATE(6044)] = 192905, + [SMALL_STATE(6045)] = 192914, + [SMALL_STATE(6046)] = 192925, + [SMALL_STATE(6047)] = 192936, + [SMALL_STATE(6048)] = 192947, + [SMALL_STATE(6049)] = 192958, + [SMALL_STATE(6050)] = 192969, + [SMALL_STATE(6051)] = 192980, + [SMALL_STATE(6052)] = 192991, + [SMALL_STATE(6053)] = 193002, + [SMALL_STATE(6054)] = 193011, + [SMALL_STATE(6055)] = 193020, + [SMALL_STATE(6056)] = 193029, + [SMALL_STATE(6057)] = 193040, + [SMALL_STATE(6058)] = 193051, + [SMALL_STATE(6059)] = 193062, + [SMALL_STATE(6060)] = 193073, + [SMALL_STATE(6061)] = 193082, + [SMALL_STATE(6062)] = 193093, + [SMALL_STATE(6063)] = 193104, + [SMALL_STATE(6064)] = 193115, + [SMALL_STATE(6065)] = 193124, + [SMALL_STATE(6066)] = 193135, + [SMALL_STATE(6067)] = 193146, + [SMALL_STATE(6068)] = 193157, + [SMALL_STATE(6069)] = 193168, + [SMALL_STATE(6070)] = 193177, + [SMALL_STATE(6071)] = 193188, + [SMALL_STATE(6072)] = 193197, + [SMALL_STATE(6073)] = 193208, + [SMALL_STATE(6074)] = 193219, + [SMALL_STATE(6075)] = 193230, + [SMALL_STATE(6076)] = 193239, + [SMALL_STATE(6077)] = 193250, + [SMALL_STATE(6078)] = 193261, + [SMALL_STATE(6079)] = 193272, + [SMALL_STATE(6080)] = 193281, + [SMALL_STATE(6081)] = 193292, + [SMALL_STATE(6082)] = 193303, + [SMALL_STATE(6083)] = 193314, + [SMALL_STATE(6084)] = 193323, + [SMALL_STATE(6085)] = 193334, + [SMALL_STATE(6086)] = 193345, + [SMALL_STATE(6087)] = 193356, + [SMALL_STATE(6088)] = 193367, + [SMALL_STATE(6089)] = 193378, + [SMALL_STATE(6090)] = 193389, + [SMALL_STATE(6091)] = 193400, + [SMALL_STATE(6092)] = 193411, + [SMALL_STATE(6093)] = 193422, + [SMALL_STATE(6094)] = 193431, + [SMALL_STATE(6095)] = 193442, + [SMALL_STATE(6096)] = 193453, + [SMALL_STATE(6097)] = 193464, + [SMALL_STATE(6098)] = 193475, + [SMALL_STATE(6099)] = 193486, + [SMALL_STATE(6100)] = 193495, + [SMALL_STATE(6101)] = 193506, + [SMALL_STATE(6102)] = 193517, + [SMALL_STATE(6103)] = 193528, + [SMALL_STATE(6104)] = 193539, + [SMALL_STATE(6105)] = 193550, + [SMALL_STATE(6106)] = 193561, + [SMALL_STATE(6107)] = 193572, + [SMALL_STATE(6108)] = 193583, + [SMALL_STATE(6109)] = 193594, + [SMALL_STATE(6110)] = 193605, + [SMALL_STATE(6111)] = 193616, + [SMALL_STATE(6112)] = 193627, + [SMALL_STATE(6113)] = 193638, + [SMALL_STATE(6114)] = 193649, + [SMALL_STATE(6115)] = 193660, + [SMALL_STATE(6116)] = 193671, + [SMALL_STATE(6117)] = 193682, + [SMALL_STATE(6118)] = 193693, + [SMALL_STATE(6119)] = 193704, + [SMALL_STATE(6120)] = 193715, + [SMALL_STATE(6121)] = 193726, + [SMALL_STATE(6122)] = 193737, + [SMALL_STATE(6123)] = 193748, + [SMALL_STATE(6124)] = 193759, + [SMALL_STATE(6125)] = 193768, + [SMALL_STATE(6126)] = 193779, + [SMALL_STATE(6127)] = 193790, + [SMALL_STATE(6128)] = 193799, + [SMALL_STATE(6129)] = 193810, + [SMALL_STATE(6130)] = 193819, + [SMALL_STATE(6131)] = 193830, + [SMALL_STATE(6132)] = 193839, + [SMALL_STATE(6133)] = 193848, + [SMALL_STATE(6134)] = 193859, + [SMALL_STATE(6135)] = 193868, + [SMALL_STATE(6136)] = 193877, + [SMALL_STATE(6137)] = 193886, + [SMALL_STATE(6138)] = 193897, + [SMALL_STATE(6139)] = 193906, + [SMALL_STATE(6140)] = 193917, + [SMALL_STATE(6141)] = 193926, + [SMALL_STATE(6142)] = 193937, + [SMALL_STATE(6143)] = 193948, + [SMALL_STATE(6144)] = 193959, + [SMALL_STATE(6145)] = 193968, + [SMALL_STATE(6146)] = 193979, + [SMALL_STATE(6147)] = 193990, + [SMALL_STATE(6148)] = 193999, + [SMALL_STATE(6149)] = 194010, + [SMALL_STATE(6150)] = 194019, + [SMALL_STATE(6151)] = 194030, + [SMALL_STATE(6152)] = 194041, + [SMALL_STATE(6153)] = 194052, + [SMALL_STATE(6154)] = 194063, + [SMALL_STATE(6155)] = 194072, + [SMALL_STATE(6156)] = 194083, + [SMALL_STATE(6157)] = 194092, + [SMALL_STATE(6158)] = 194103, + [SMALL_STATE(6159)] = 194112, + [SMALL_STATE(6160)] = 194121, + [SMALL_STATE(6161)] = 194130, + [SMALL_STATE(6162)] = 194139, + [SMALL_STATE(6163)] = 194148, + [SMALL_STATE(6164)] = 194159, + [SMALL_STATE(6165)] = 194170, + [SMALL_STATE(6166)] = 194181, + [SMALL_STATE(6167)] = 194192, + [SMALL_STATE(6168)] = 194203, + [SMALL_STATE(6169)] = 194212, + [SMALL_STATE(6170)] = 194223, + [SMALL_STATE(6171)] = 194232, + [SMALL_STATE(6172)] = 194243, + [SMALL_STATE(6173)] = 194252, + [SMALL_STATE(6174)] = 194263, + [SMALL_STATE(6175)] = 194272, + [SMALL_STATE(6176)] = 194283, + [SMALL_STATE(6177)] = 194292, + [SMALL_STATE(6178)] = 194303, + [SMALL_STATE(6179)] = 194314, + [SMALL_STATE(6180)] = 194325, + [SMALL_STATE(6181)] = 194336, + [SMALL_STATE(6182)] = 194347, + [SMALL_STATE(6183)] = 194356, + [SMALL_STATE(6184)] = 194365, + [SMALL_STATE(6185)] = 194376, + [SMALL_STATE(6186)] = 194387, + [SMALL_STATE(6187)] = 194398, + [SMALL_STATE(6188)] = 194409, + [SMALL_STATE(6189)] = 194420, + [SMALL_STATE(6190)] = 194431, + [SMALL_STATE(6191)] = 194442, + [SMALL_STATE(6192)] = 194451, + [SMALL_STATE(6193)] = 194462, + [SMALL_STATE(6194)] = 194473, + [SMALL_STATE(6195)] = 194484, + [SMALL_STATE(6196)] = 194495, + [SMALL_STATE(6197)] = 194504, + [SMALL_STATE(6198)] = 194513, + [SMALL_STATE(6199)] = 194524, + [SMALL_STATE(6200)] = 194535, + [SMALL_STATE(6201)] = 194546, + [SMALL_STATE(6202)] = 194557, + [SMALL_STATE(6203)] = 194568, + [SMALL_STATE(6204)] = 194579, + [SMALL_STATE(6205)] = 194590, + [SMALL_STATE(6206)] = 194601, + [SMALL_STATE(6207)] = 194612, + [SMALL_STATE(6208)] = 194623, + [SMALL_STATE(6209)] = 194632, + [SMALL_STATE(6210)] = 194643, + [SMALL_STATE(6211)] = 194652, + [SMALL_STATE(6212)] = 194663, + [SMALL_STATE(6213)] = 194674, + [SMALL_STATE(6214)] = 194685, + [SMALL_STATE(6215)] = 194696, + [SMALL_STATE(6216)] = 194707, + [SMALL_STATE(6217)] = 194718, + [SMALL_STATE(6218)] = 194727, + [SMALL_STATE(6219)] = 194738, + [SMALL_STATE(6220)] = 194749, + [SMALL_STATE(6221)] = 194760, + [SMALL_STATE(6222)] = 194769, + [SMALL_STATE(6223)] = 194780, + [SMALL_STATE(6224)] = 194791, + [SMALL_STATE(6225)] = 194800, + [SMALL_STATE(6226)] = 194809, + [SMALL_STATE(6227)] = 194820, + [SMALL_STATE(6228)] = 194829, + [SMALL_STATE(6229)] = 194840, + [SMALL_STATE(6230)] = 194851, + [SMALL_STATE(6231)] = 194862, + [SMALL_STATE(6232)] = 194873, + [SMALL_STATE(6233)] = 194882, + [SMALL_STATE(6234)] = 194891, + [SMALL_STATE(6235)] = 194900, + [SMALL_STATE(6236)] = 194911, + [SMALL_STATE(6237)] = 194920, + [SMALL_STATE(6238)] = 194931, + [SMALL_STATE(6239)] = 194940, + [SMALL_STATE(6240)] = 194951, + [SMALL_STATE(6241)] = 194962, + [SMALL_STATE(6242)] = 194971, + [SMALL_STATE(6243)] = 194982, + [SMALL_STATE(6244)] = 194993, + [SMALL_STATE(6245)] = 195002, + [SMALL_STATE(6246)] = 195013, + [SMALL_STATE(6247)] = 195022, + [SMALL_STATE(6248)] = 195031, + [SMALL_STATE(6249)] = 195042, + [SMALL_STATE(6250)] = 195053, + [SMALL_STATE(6251)] = 195062, + [SMALL_STATE(6252)] = 195073, + [SMALL_STATE(6253)] = 195084, + [SMALL_STATE(6254)] = 195095, + [SMALL_STATE(6255)] = 195106, + [SMALL_STATE(6256)] = 195115, + [SMALL_STATE(6257)] = 195126, + [SMALL_STATE(6258)] = 195135, + [SMALL_STATE(6259)] = 195146, + [SMALL_STATE(6260)] = 195155, + [SMALL_STATE(6261)] = 195166, + [SMALL_STATE(6262)] = 195177, + [SMALL_STATE(6263)] = 195188, + [SMALL_STATE(6264)] = 195199, + [SMALL_STATE(6265)] = 195208, + [SMALL_STATE(6266)] = 195219, + [SMALL_STATE(6267)] = 195228, + [SMALL_STATE(6268)] = 195239, + [SMALL_STATE(6269)] = 195250, + [SMALL_STATE(6270)] = 195259, + [SMALL_STATE(6271)] = 195268, + [SMALL_STATE(6272)] = 195279, + [SMALL_STATE(6273)] = 195290, + [SMALL_STATE(6274)] = 195301, + [SMALL_STATE(6275)] = 195310, + [SMALL_STATE(6276)] = 195321, + [SMALL_STATE(6277)] = 195332, + [SMALL_STATE(6278)] = 195341, + [SMALL_STATE(6279)] = 195352, + [SMALL_STATE(6280)] = 195363, + [SMALL_STATE(6281)] = 195372, + [SMALL_STATE(6282)] = 195383, + [SMALL_STATE(6283)] = 195392, + [SMALL_STATE(6284)] = 195403, + [SMALL_STATE(6285)] = 195412, + [SMALL_STATE(6286)] = 195423, + [SMALL_STATE(6287)] = 195432, + [SMALL_STATE(6288)] = 195443, + [SMALL_STATE(6289)] = 195454, + [SMALL_STATE(6290)] = 195463, + [SMALL_STATE(6291)] = 195472, + [SMALL_STATE(6292)] = 195481, + [SMALL_STATE(6293)] = 195492, + [SMALL_STATE(6294)] = 195501, + [SMALL_STATE(6295)] = 195510, + [SMALL_STATE(6296)] = 195521, + [SMALL_STATE(6297)] = 195532, + [SMALL_STATE(6298)] = 195541, + [SMALL_STATE(6299)] = 195552, + [SMALL_STATE(6300)] = 195561, + [SMALL_STATE(6301)] = 195572, + [SMALL_STATE(6302)] = 195581, + [SMALL_STATE(6303)] = 195592, + [SMALL_STATE(6304)] = 195603, + [SMALL_STATE(6305)] = 195614, + [SMALL_STATE(6306)] = 195625, + [SMALL_STATE(6307)] = 195636, + [SMALL_STATE(6308)] = 195645, + [SMALL_STATE(6309)] = 195656, + [SMALL_STATE(6310)] = 195667, + [SMALL_STATE(6311)] = 195676, + [SMALL_STATE(6312)] = 195687, + [SMALL_STATE(6313)] = 195698, + [SMALL_STATE(6314)] = 195709, + [SMALL_STATE(6315)] = 195720, + [SMALL_STATE(6316)] = 195731, + [SMALL_STATE(6317)] = 195742, + [SMALL_STATE(6318)] = 195753, + [SMALL_STATE(6319)] = 195764, + [SMALL_STATE(6320)] = 195775, + [SMALL_STATE(6321)] = 195786, + [SMALL_STATE(6322)] = 195797, + [SMALL_STATE(6323)] = 195808, + [SMALL_STATE(6324)] = 195819, + [SMALL_STATE(6325)] = 195830, + [SMALL_STATE(6326)] = 195839, + [SMALL_STATE(6327)] = 195850, + [SMALL_STATE(6328)] = 195859, + [SMALL_STATE(6329)] = 195870, + [SMALL_STATE(6330)] = 195881, + [SMALL_STATE(6331)] = 195892, + [SMALL_STATE(6332)] = 195903, + [SMALL_STATE(6333)] = 195912, + [SMALL_STATE(6334)] = 195921, + [SMALL_STATE(6335)] = 195930, + [SMALL_STATE(6336)] = 195941, + [SMALL_STATE(6337)] = 195952, + [SMALL_STATE(6338)] = 195961, + [SMALL_STATE(6339)] = 195972, + [SMALL_STATE(6340)] = 195981, + [SMALL_STATE(6341)] = 195990, + [SMALL_STATE(6342)] = 196001, + [SMALL_STATE(6343)] = 196012, + [SMALL_STATE(6344)] = 196023, + [SMALL_STATE(6345)] = 196034, + [SMALL_STATE(6346)] = 196045, + [SMALL_STATE(6347)] = 196056, + [SMALL_STATE(6348)] = 196065, + [SMALL_STATE(6349)] = 196074, + [SMALL_STATE(6350)] = 196083, + [SMALL_STATE(6351)] = 196094, + [SMALL_STATE(6352)] = 196103, + [SMALL_STATE(6353)] = 196112, + [SMALL_STATE(6354)] = 196123, + [SMALL_STATE(6355)] = 196134, + [SMALL_STATE(6356)] = 196145, + [SMALL_STATE(6357)] = 196156, + [SMALL_STATE(6358)] = 196165, + [SMALL_STATE(6359)] = 196176, + [SMALL_STATE(6360)] = 196185, + [SMALL_STATE(6361)] = 196194, + [SMALL_STATE(6362)] = 196203, + [SMALL_STATE(6363)] = 196214, + [SMALL_STATE(6364)] = 196225, + [SMALL_STATE(6365)] = 196236, + [SMALL_STATE(6366)] = 196245, + [SMALL_STATE(6367)] = 196256, + [SMALL_STATE(6368)] = 196265, + [SMALL_STATE(6369)] = 196276, + [SMALL_STATE(6370)] = 196285, + [SMALL_STATE(6371)] = 196294, + [SMALL_STATE(6372)] = 196305, + [SMALL_STATE(6373)] = 196314, + [SMALL_STATE(6374)] = 196325, + [SMALL_STATE(6375)] = 196336, + [SMALL_STATE(6376)] = 196347, + [SMALL_STATE(6377)] = 196358, + [SMALL_STATE(6378)] = 196367, + [SMALL_STATE(6379)] = 196378, + [SMALL_STATE(6380)] = 196387, + [SMALL_STATE(6381)] = 196398, + [SMALL_STATE(6382)] = 196407, + [SMALL_STATE(6383)] = 196418, + [SMALL_STATE(6384)] = 196429, + [SMALL_STATE(6385)] = 196438, + [SMALL_STATE(6386)] = 196447, + [SMALL_STATE(6387)] = 196456, + [SMALL_STATE(6388)] = 196465, + [SMALL_STATE(6389)] = 196476, + [SMALL_STATE(6390)] = 196485, + [SMALL_STATE(6391)] = 196496, + [SMALL_STATE(6392)] = 196505, + [SMALL_STATE(6393)] = 196516, + [SMALL_STATE(6394)] = 196527, + [SMALL_STATE(6395)] = 196538, + [SMALL_STATE(6396)] = 196549, + [SMALL_STATE(6397)] = 196560, + [SMALL_STATE(6398)] = 196569, + [SMALL_STATE(6399)] = 196580, + [SMALL_STATE(6400)] = 196589, + [SMALL_STATE(6401)] = 196598, + [SMALL_STATE(6402)] = 196609, + [SMALL_STATE(6403)] = 196620, + [SMALL_STATE(6404)] = 196631, + [SMALL_STATE(6405)] = 196642, + [SMALL_STATE(6406)] = 196651, + [SMALL_STATE(6407)] = 196662, + [SMALL_STATE(6408)] = 196671, + [SMALL_STATE(6409)] = 196682, + [SMALL_STATE(6410)] = 196691, + [SMALL_STATE(6411)] = 196700, + [SMALL_STATE(6412)] = 196709, + [SMALL_STATE(6413)] = 196720, + [SMALL_STATE(6414)] = 196729, + [SMALL_STATE(6415)] = 196740, + [SMALL_STATE(6416)] = 196749, + [SMALL_STATE(6417)] = 196760, + [SMALL_STATE(6418)] = 196769, + [SMALL_STATE(6419)] = 196778, + [SMALL_STATE(6420)] = 196787, + [SMALL_STATE(6421)] = 196796, + [SMALL_STATE(6422)] = 196805, + [SMALL_STATE(6423)] = 196816, + [SMALL_STATE(6424)] = 196825, + [SMALL_STATE(6425)] = 196834, + [SMALL_STATE(6426)] = 196845, + [SMALL_STATE(6427)] = 196856, + [SMALL_STATE(6428)] = 196865, + [SMALL_STATE(6429)] = 196876, + [SMALL_STATE(6430)] = 196885, + [SMALL_STATE(6431)] = 196894, + [SMALL_STATE(6432)] = 196905, + [SMALL_STATE(6433)] = 196914, + [SMALL_STATE(6434)] = 196925, + [SMALL_STATE(6435)] = 196934, + [SMALL_STATE(6436)] = 196945, + [SMALL_STATE(6437)] = 196956, + [SMALL_STATE(6438)] = 196967, + [SMALL_STATE(6439)] = 196978, + [SMALL_STATE(6440)] = 196987, + [SMALL_STATE(6441)] = 196998, + [SMALL_STATE(6442)] = 197009, + [SMALL_STATE(6443)] = 197020, + [SMALL_STATE(6444)] = 197029, + [SMALL_STATE(6445)] = 197038, + [SMALL_STATE(6446)] = 197049, + [SMALL_STATE(6447)] = 197060, + [SMALL_STATE(6448)] = 197071, + [SMALL_STATE(6449)] = 197082, + [SMALL_STATE(6450)] = 197093, + [SMALL_STATE(6451)] = 197104, + [SMALL_STATE(6452)] = 197113, + [SMALL_STATE(6453)] = 197122, + [SMALL_STATE(6454)] = 197133, + [SMALL_STATE(6455)] = 197144, + [SMALL_STATE(6456)] = 197155, + [SMALL_STATE(6457)] = 197166, + [SMALL_STATE(6458)] = 197177, + [SMALL_STATE(6459)] = 197188, + [SMALL_STATE(6460)] = 197197, + [SMALL_STATE(6461)] = 197208, + [SMALL_STATE(6462)] = 197217, + [SMALL_STATE(6463)] = 197226, + [SMALL_STATE(6464)] = 197237, + [SMALL_STATE(6465)] = 197248, + [SMALL_STATE(6466)] = 197259, + [SMALL_STATE(6467)] = 197268, + [SMALL_STATE(6468)] = 197279, + [SMALL_STATE(6469)] = 197288, + [SMALL_STATE(6470)] = 197299, + [SMALL_STATE(6471)] = 197308, + [SMALL_STATE(6472)] = 197317, + [SMALL_STATE(6473)] = 197326, + [SMALL_STATE(6474)] = 197335, + [SMALL_STATE(6475)] = 197346, + [SMALL_STATE(6476)] = 197355, + [SMALL_STATE(6477)] = 197366, + [SMALL_STATE(6478)] = 197377, + [SMALL_STATE(6479)] = 197388, + [SMALL_STATE(6480)] = 197399, + [SMALL_STATE(6481)] = 197408, + [SMALL_STATE(6482)] = 197419, + [SMALL_STATE(6483)] = 197430, + [SMALL_STATE(6484)] = 197441, + [SMALL_STATE(6485)] = 197452, + [SMALL_STATE(6486)] = 197463, + [SMALL_STATE(6487)] = 197472, + [SMALL_STATE(6488)] = 197483, + [SMALL_STATE(6489)] = 197492, + [SMALL_STATE(6490)] = 197503, + [SMALL_STATE(6491)] = 197512, + [SMALL_STATE(6492)] = 197521, + [SMALL_STATE(6493)] = 197530, + [SMALL_STATE(6494)] = 197541, + [SMALL_STATE(6495)] = 197550, + [SMALL_STATE(6496)] = 197559, + [SMALL_STATE(6497)] = 197568, + [SMALL_STATE(6498)] = 197579, + [SMALL_STATE(6499)] = 197588, + [SMALL_STATE(6500)] = 197599, + [SMALL_STATE(6501)] = 197610, + [SMALL_STATE(6502)] = 197619, + [SMALL_STATE(6503)] = 197628, + [SMALL_STATE(6504)] = 197639, + [SMALL_STATE(6505)] = 197648, + [SMALL_STATE(6506)] = 197659, + [SMALL_STATE(6507)] = 197670, + [SMALL_STATE(6508)] = 197681, + [SMALL_STATE(6509)] = 197692, + [SMALL_STATE(6510)] = 197701, + [SMALL_STATE(6511)] = 197712, + [SMALL_STATE(6512)] = 197721, + [SMALL_STATE(6513)] = 197732, + [SMALL_STATE(6514)] = 197741, + [SMALL_STATE(6515)] = 197750, + [SMALL_STATE(6516)] = 197759, + [SMALL_STATE(6517)] = 197768, + [SMALL_STATE(6518)] = 197779, + [SMALL_STATE(6519)] = 197788, + [SMALL_STATE(6520)] = 197799, + [SMALL_STATE(6521)] = 197810, + [SMALL_STATE(6522)] = 197821, + [SMALL_STATE(6523)] = 197830, + [SMALL_STATE(6524)] = 197841, + [SMALL_STATE(6525)] = 197850, + [SMALL_STATE(6526)] = 197861, + [SMALL_STATE(6527)] = 197872, + [SMALL_STATE(6528)] = 197883, + [SMALL_STATE(6529)] = 197894, + [SMALL_STATE(6530)] = 197905, + [SMALL_STATE(6531)] = 197914, + [SMALL_STATE(6532)] = 197925, + [SMALL_STATE(6533)] = 197936, + [SMALL_STATE(6534)] = 197947, + [SMALL_STATE(6535)] = 197958, + [SMALL_STATE(6536)] = 197969, + [SMALL_STATE(6537)] = 197980, + [SMALL_STATE(6538)] = 197989, + [SMALL_STATE(6539)] = 198000, + [SMALL_STATE(6540)] = 198009, + [SMALL_STATE(6541)] = 198020, + [SMALL_STATE(6542)] = 198029, + [SMALL_STATE(6543)] = 198038, + [SMALL_STATE(6544)] = 198047, + [SMALL_STATE(6545)] = 198056, + [SMALL_STATE(6546)] = 198067, + [SMALL_STATE(6547)] = 198076, + [SMALL_STATE(6548)] = 198085, + [SMALL_STATE(6549)] = 198096, + [SMALL_STATE(6550)] = 198105, + [SMALL_STATE(6551)] = 198114, + [SMALL_STATE(6552)] = 198123, + [SMALL_STATE(6553)] = 198132, + [SMALL_STATE(6554)] = 198141, + [SMALL_STATE(6555)] = 198152, + [SMALL_STATE(6556)] = 198163, + [SMALL_STATE(6557)] = 198174, + [SMALL_STATE(6558)] = 198183, + [SMALL_STATE(6559)] = 198194, + [SMALL_STATE(6560)] = 198203, + [SMALL_STATE(6561)] = 198214, + [SMALL_STATE(6562)] = 198225, + [SMALL_STATE(6563)] = 198236, + [SMALL_STATE(6564)] = 198247, + [SMALL_STATE(6565)] = 198258, + [SMALL_STATE(6566)] = 198269, + [SMALL_STATE(6567)] = 198278, + [SMALL_STATE(6568)] = 198289, + [SMALL_STATE(6569)] = 198300, + [SMALL_STATE(6570)] = 198311, + [SMALL_STATE(6571)] = 198322, + [SMALL_STATE(6572)] = 198333, + [SMALL_STATE(6573)] = 198344, + [SMALL_STATE(6574)] = 198355, + [SMALL_STATE(6575)] = 198366, + [SMALL_STATE(6576)] = 198377, + [SMALL_STATE(6577)] = 198386, + [SMALL_STATE(6578)] = 198397, + [SMALL_STATE(6579)] = 198408, + [SMALL_STATE(6580)] = 198419, + [SMALL_STATE(6581)] = 198430, + [SMALL_STATE(6582)] = 198441, + [SMALL_STATE(6583)] = 198452, + [SMALL_STATE(6584)] = 198463, + [SMALL_STATE(6585)] = 198474, + [SMALL_STATE(6586)] = 198485, + [SMALL_STATE(6587)] = 198496, + [SMALL_STATE(6588)] = 198507, + [SMALL_STATE(6589)] = 198518, + [SMALL_STATE(6590)] = 198529, + [SMALL_STATE(6591)] = 198540, + [SMALL_STATE(6592)] = 198549, + [SMALL_STATE(6593)] = 198560, + [SMALL_STATE(6594)] = 198571, + [SMALL_STATE(6595)] = 198580, + [SMALL_STATE(6596)] = 198591, + [SMALL_STATE(6597)] = 198602, + [SMALL_STATE(6598)] = 198613, + [SMALL_STATE(6599)] = 198624, + [SMALL_STATE(6600)] = 198635, + [SMALL_STATE(6601)] = 198646, + [SMALL_STATE(6602)] = 198657, + [SMALL_STATE(6603)] = 198668, + [SMALL_STATE(6604)] = 198679, + [SMALL_STATE(6605)] = 198690, + [SMALL_STATE(6606)] = 198701, + [SMALL_STATE(6607)] = 198712, + [SMALL_STATE(6608)] = 198723, + [SMALL_STATE(6609)] = 198734, + [SMALL_STATE(6610)] = 198745, + [SMALL_STATE(6611)] = 198756, + [SMALL_STATE(6612)] = 198767, + [SMALL_STATE(6613)] = 198778, + [SMALL_STATE(6614)] = 198789, + [SMALL_STATE(6615)] = 198800, + [SMALL_STATE(6616)] = 198811, + [SMALL_STATE(6617)] = 198822, + [SMALL_STATE(6618)] = 198833, + [SMALL_STATE(6619)] = 198842, + [SMALL_STATE(6620)] = 198853, + [SMALL_STATE(6621)] = 198862, + [SMALL_STATE(6622)] = 198873, + [SMALL_STATE(6623)] = 198882, + [SMALL_STATE(6624)] = 198891, + [SMALL_STATE(6625)] = 198900, + [SMALL_STATE(6626)] = 198909, + [SMALL_STATE(6627)] = 198920, + [SMALL_STATE(6628)] = 198929, + [SMALL_STATE(6629)] = 198940, + [SMALL_STATE(6630)] = 198949, + [SMALL_STATE(6631)] = 198960, + [SMALL_STATE(6632)] = 198969, + [SMALL_STATE(6633)] = 198978, + [SMALL_STATE(6634)] = 198987, + [SMALL_STATE(6635)] = 198996, + [SMALL_STATE(6636)] = 199005, + [SMALL_STATE(6637)] = 199016, + [SMALL_STATE(6638)] = 199025, + [SMALL_STATE(6639)] = 199036, + [SMALL_STATE(6640)] = 199045, + [SMALL_STATE(6641)] = 199056, + [SMALL_STATE(6642)] = 199065, + [SMALL_STATE(6643)] = 199074, + [SMALL_STATE(6644)] = 199085, + [SMALL_STATE(6645)] = 199094, + [SMALL_STATE(6646)] = 199105, + [SMALL_STATE(6647)] = 199116, + [SMALL_STATE(6648)] = 199127, + [SMALL_STATE(6649)] = 199138, + [SMALL_STATE(6650)] = 199147, + [SMALL_STATE(6651)] = 199158, + [SMALL_STATE(6652)] = 199167, + [SMALL_STATE(6653)] = 199178, + [SMALL_STATE(6654)] = 199187, + [SMALL_STATE(6655)] = 199196, + [SMALL_STATE(6656)] = 199207, + [SMALL_STATE(6657)] = 199218, + [SMALL_STATE(6658)] = 199227, + [SMALL_STATE(6659)] = 199238, + [SMALL_STATE(6660)] = 199249, + [SMALL_STATE(6661)] = 199258, + [SMALL_STATE(6662)] = 199267, + [SMALL_STATE(6663)] = 199276, + [SMALL_STATE(6664)] = 199285, + [SMALL_STATE(6665)] = 199296, + [SMALL_STATE(6666)] = 199305, + [SMALL_STATE(6667)] = 199314, + [SMALL_STATE(6668)] = 199325, + [SMALL_STATE(6669)] = 199334, + [SMALL_STATE(6670)] = 199345, + [SMALL_STATE(6671)] = 199356, + [SMALL_STATE(6672)] = 199365, + [SMALL_STATE(6673)] = 199374, + [SMALL_STATE(6674)] = 199385, + [SMALL_STATE(6675)] = 199396, + [SMALL_STATE(6676)] = 199407, + [SMALL_STATE(6677)] = 199416, + [SMALL_STATE(6678)] = 199427, + [SMALL_STATE(6679)] = 199438, + [SMALL_STATE(6680)] = 199447, + [SMALL_STATE(6681)] = 199458, + [SMALL_STATE(6682)] = 199467, + [SMALL_STATE(6683)] = 199478, + [SMALL_STATE(6684)] = 199489, + [SMALL_STATE(6685)] = 199500, + [SMALL_STATE(6686)] = 199509, + [SMALL_STATE(6687)] = 199520, + [SMALL_STATE(6688)] = 199529, + [SMALL_STATE(6689)] = 199538, + [SMALL_STATE(6690)] = 199549, + [SMALL_STATE(6691)] = 199558, + [SMALL_STATE(6692)] = 199569, + [SMALL_STATE(6693)] = 199580, + [SMALL_STATE(6694)] = 199591, + [SMALL_STATE(6695)] = 199602, + [SMALL_STATE(6696)] = 199611, + [SMALL_STATE(6697)] = 199622, + [SMALL_STATE(6698)] = 199631, + [SMALL_STATE(6699)] = 199642, + [SMALL_STATE(6700)] = 199651, + [SMALL_STATE(6701)] = 199660, + [SMALL_STATE(6702)] = 199669, + [SMALL_STATE(6703)] = 199678, + [SMALL_STATE(6704)] = 199689, + [SMALL_STATE(6705)] = 199700, + [SMALL_STATE(6706)] = 199709, + [SMALL_STATE(6707)] = 199720, + [SMALL_STATE(6708)] = 199731, + [SMALL_STATE(6709)] = 199742, + [SMALL_STATE(6710)] = 199753, + [SMALL_STATE(6711)] = 199764, + [SMALL_STATE(6712)] = 199775, + [SMALL_STATE(6713)] = 199786, + [SMALL_STATE(6714)] = 199795, + [SMALL_STATE(6715)] = 199806, + [SMALL_STATE(6716)] = 199817, + [SMALL_STATE(6717)] = 199828, + [SMALL_STATE(6718)] = 199839, + [SMALL_STATE(6719)] = 199850, + [SMALL_STATE(6720)] = 199859, + [SMALL_STATE(6721)] = 199870, + [SMALL_STATE(6722)] = 199881, + [SMALL_STATE(6723)] = 199892, + [SMALL_STATE(6724)] = 199903, + [SMALL_STATE(6725)] = 199914, + [SMALL_STATE(6726)] = 199925, + [SMALL_STATE(6727)] = 199936, + [SMALL_STATE(6728)] = 199945, + [SMALL_STATE(6729)] = 199956, + [SMALL_STATE(6730)] = 199965, + [SMALL_STATE(6731)] = 199976, + [SMALL_STATE(6732)] = 199987, + [SMALL_STATE(6733)] = 199996, + [SMALL_STATE(6734)] = 200007, + [SMALL_STATE(6735)] = 200016, + [SMALL_STATE(6736)] = 200027, + [SMALL_STATE(6737)] = 200038, + [SMALL_STATE(6738)] = 200047, + [SMALL_STATE(6739)] = 200058, + [SMALL_STATE(6740)] = 200067, + [SMALL_STATE(6741)] = 200076, + [SMALL_STATE(6742)] = 200087, + [SMALL_STATE(6743)] = 200098, + [SMALL_STATE(6744)] = 200109, + [SMALL_STATE(6745)] = 200118, + [SMALL_STATE(6746)] = 200129, + [SMALL_STATE(6747)] = 200140, + [SMALL_STATE(6748)] = 200149, + [SMALL_STATE(6749)] = 200160, + [SMALL_STATE(6750)] = 200169, + [SMALL_STATE(6751)] = 200180, + [SMALL_STATE(6752)] = 200189, + [SMALL_STATE(6753)] = 200200, + [SMALL_STATE(6754)] = 200211, + [SMALL_STATE(6755)] = 200220, + [SMALL_STATE(6756)] = 200229, + [SMALL_STATE(6757)] = 200240, + [SMALL_STATE(6758)] = 200251, + [SMALL_STATE(6759)] = 200260, + [SMALL_STATE(6760)] = 200269, + [SMALL_STATE(6761)] = 200280, + [SMALL_STATE(6762)] = 200291, + [SMALL_STATE(6763)] = 200302, + [SMALL_STATE(6764)] = 200311, + [SMALL_STATE(6765)] = 200322, + [SMALL_STATE(6766)] = 200331, + [SMALL_STATE(6767)] = 200342, + [SMALL_STATE(6768)] = 200353, + [SMALL_STATE(6769)] = 200364, + [SMALL_STATE(6770)] = 200373, + [SMALL_STATE(6771)] = 200382, + [SMALL_STATE(6772)] = 200393, + [SMALL_STATE(6773)] = 200402, + [SMALL_STATE(6774)] = 200413, + [SMALL_STATE(6775)] = 200424, + [SMALL_STATE(6776)] = 200435, + [SMALL_STATE(6777)] = 200446, + [SMALL_STATE(6778)] = 200457, + [SMALL_STATE(6779)] = 200468, + [SMALL_STATE(6780)] = 200477, + [SMALL_STATE(6781)] = 200488, + [SMALL_STATE(6782)] = 200499, + [SMALL_STATE(6783)] = 200508, + [SMALL_STATE(6784)] = 200519, + [SMALL_STATE(6785)] = 200528, + [SMALL_STATE(6786)] = 200537, + [SMALL_STATE(6787)] = 200546, + [SMALL_STATE(6788)] = 200555, + [SMALL_STATE(6789)] = 200564, + [SMALL_STATE(6790)] = 200575, + [SMALL_STATE(6791)] = 200584, + [SMALL_STATE(6792)] = 200595, + [SMALL_STATE(6793)] = 200606, + [SMALL_STATE(6794)] = 200617, + [SMALL_STATE(6795)] = 200626, + [SMALL_STATE(6796)] = 200637, + [SMALL_STATE(6797)] = 200648, + [SMALL_STATE(6798)] = 200657, + [SMALL_STATE(6799)] = 200668, + [SMALL_STATE(6800)] = 200677, + [SMALL_STATE(6801)] = 200688, + [SMALL_STATE(6802)] = 200699, + [SMALL_STATE(6803)] = 200708, + [SMALL_STATE(6804)] = 200717, + [SMALL_STATE(6805)] = 200726, + [SMALL_STATE(6806)] = 200735, + [SMALL_STATE(6807)] = 200744, + [SMALL_STATE(6808)] = 200755, + [SMALL_STATE(6809)] = 200766, + [SMALL_STATE(6810)] = 200777, + [SMALL_STATE(6811)] = 200788, + [SMALL_STATE(6812)] = 200799, + [SMALL_STATE(6813)] = 200810, + [SMALL_STATE(6814)] = 200821, + [SMALL_STATE(6815)] = 200832, + [SMALL_STATE(6816)] = 200843, + [SMALL_STATE(6817)] = 200854, + [SMALL_STATE(6818)] = 200865, + [SMALL_STATE(6819)] = 200876, + [SMALL_STATE(6820)] = 200887, + [SMALL_STATE(6821)] = 200898, + [SMALL_STATE(6822)] = 200909, + [SMALL_STATE(6823)] = 200920, + [SMALL_STATE(6824)] = 200929, + [SMALL_STATE(6825)] = 200940, + [SMALL_STATE(6826)] = 200949, + [SMALL_STATE(6827)] = 200960, + [SMALL_STATE(6828)] = 200971, + [SMALL_STATE(6829)] = 200980, + [SMALL_STATE(6830)] = 200991, + [SMALL_STATE(6831)] = 201002, + [SMALL_STATE(6832)] = 201013, + [SMALL_STATE(6833)] = 201024, + [SMALL_STATE(6834)] = 201035, + [SMALL_STATE(6835)] = 201046, + [SMALL_STATE(6836)] = 201057, + [SMALL_STATE(6837)] = 201066, + [SMALL_STATE(6838)] = 201077, + [SMALL_STATE(6839)] = 201088, + [SMALL_STATE(6840)] = 201099, + [SMALL_STATE(6841)] = 201110, + [SMALL_STATE(6842)] = 201121, + [SMALL_STATE(6843)] = 201130, + [SMALL_STATE(6844)] = 201141, + [SMALL_STATE(6845)] = 201152, + [SMALL_STATE(6846)] = 201163, + [SMALL_STATE(6847)] = 201174, + [SMALL_STATE(6848)] = 201185, + [SMALL_STATE(6849)] = 201196, + [SMALL_STATE(6850)] = 201207, + [SMALL_STATE(6851)] = 201216, + [SMALL_STATE(6852)] = 201227, + [SMALL_STATE(6853)] = 201238, + [SMALL_STATE(6854)] = 201249, + [SMALL_STATE(6855)] = 201260, + [SMALL_STATE(6856)] = 201269, + [SMALL_STATE(6857)] = 201280, + [SMALL_STATE(6858)] = 201291, + [SMALL_STATE(6859)] = 201300, + [SMALL_STATE(6860)] = 201311, + [SMALL_STATE(6861)] = 201322, + [SMALL_STATE(6862)] = 201331, + [SMALL_STATE(6863)] = 201342, + [SMALL_STATE(6864)] = 201353, + [SMALL_STATE(6865)] = 201362, + [SMALL_STATE(6866)] = 201373, + [SMALL_STATE(6867)] = 201384, + [SMALL_STATE(6868)] = 201395, + [SMALL_STATE(6869)] = 201406, + [SMALL_STATE(6870)] = 201417, + [SMALL_STATE(6871)] = 201428, + [SMALL_STATE(6872)] = 201437, + [SMALL_STATE(6873)] = 201448, + [SMALL_STATE(6874)] = 201459, + [SMALL_STATE(6875)] = 201470, + [SMALL_STATE(6876)] = 201479, + [SMALL_STATE(6877)] = 201488, + [SMALL_STATE(6878)] = 201499, + [SMALL_STATE(6879)] = 201510, + [SMALL_STATE(6880)] = 201521, + [SMALL_STATE(6881)] = 201532, + [SMALL_STATE(6882)] = 201543, + [SMALL_STATE(6883)] = 201554, + [SMALL_STATE(6884)] = 201565, + [SMALL_STATE(6885)] = 201576, + [SMALL_STATE(6886)] = 201587, + [SMALL_STATE(6887)] = 201598, + [SMALL_STATE(6888)] = 201609, + [SMALL_STATE(6889)] = 201620, + [SMALL_STATE(6890)] = 201631, + [SMALL_STATE(6891)] = 201642, + [SMALL_STATE(6892)] = 201653, + [SMALL_STATE(6893)] = 201664, + [SMALL_STATE(6894)] = 201675, + [SMALL_STATE(6895)] = 201686, + [SMALL_STATE(6896)] = 201697, + [SMALL_STATE(6897)] = 201708, + [SMALL_STATE(6898)] = 201719, + [SMALL_STATE(6899)] = 201730, + [SMALL_STATE(6900)] = 201741, + [SMALL_STATE(6901)] = 201752, + [SMALL_STATE(6902)] = 201763, + [SMALL_STATE(6903)] = 201772, + [SMALL_STATE(6904)] = 201783, + [SMALL_STATE(6905)] = 201794, + [SMALL_STATE(6906)] = 201803, + [SMALL_STATE(6907)] = 201814, + [SMALL_STATE(6908)] = 201825, + [SMALL_STATE(6909)] = 201836, + [SMALL_STATE(6910)] = 201847, + [SMALL_STATE(6911)] = 201858, + [SMALL_STATE(6912)] = 201869, + [SMALL_STATE(6913)] = 201880, + [SMALL_STATE(6914)] = 201891, + [SMALL_STATE(6915)] = 201902, + [SMALL_STATE(6916)] = 201913, + [SMALL_STATE(6917)] = 201924, + [SMALL_STATE(6918)] = 201935, + [SMALL_STATE(6919)] = 201946, + [SMALL_STATE(6920)] = 201957, + [SMALL_STATE(6921)] = 201968, + [SMALL_STATE(6922)] = 201979, + [SMALL_STATE(6923)] = 201990, + [SMALL_STATE(6924)] = 202001, + [SMALL_STATE(6925)] = 202012, + [SMALL_STATE(6926)] = 202023, + [SMALL_STATE(6927)] = 202034, + [SMALL_STATE(6928)] = 202045, + [SMALL_STATE(6929)] = 202056, + [SMALL_STATE(6930)] = 202067, + [SMALL_STATE(6931)] = 202078, + [SMALL_STATE(6932)] = 202087, + [SMALL_STATE(6933)] = 202098, + [SMALL_STATE(6934)] = 202109, + [SMALL_STATE(6935)] = 202120, + [SMALL_STATE(6936)] = 202131, + [SMALL_STATE(6937)] = 202142, + [SMALL_STATE(6938)] = 202153, + [SMALL_STATE(6939)] = 202164, + [SMALL_STATE(6940)] = 202175, + [SMALL_STATE(6941)] = 202186, + [SMALL_STATE(6942)] = 202197, + [SMALL_STATE(6943)] = 202208, + [SMALL_STATE(6944)] = 202219, + [SMALL_STATE(6945)] = 202230, + [SMALL_STATE(6946)] = 202241, + [SMALL_STATE(6947)] = 202252, + [SMALL_STATE(6948)] = 202261, + [SMALL_STATE(6949)] = 202272, + [SMALL_STATE(6950)] = 202283, + [SMALL_STATE(6951)] = 202294, + [SMALL_STATE(6952)] = 202305, + [SMALL_STATE(6953)] = 202316, + [SMALL_STATE(6954)] = 202327, + [SMALL_STATE(6955)] = 202338, + [SMALL_STATE(6956)] = 202347, + [SMALL_STATE(6957)] = 202358, + [SMALL_STATE(6958)] = 202367, + [SMALL_STATE(6959)] = 202378, + [SMALL_STATE(6960)] = 202387, + [SMALL_STATE(6961)] = 202398, + [SMALL_STATE(6962)] = 202409, + [SMALL_STATE(6963)] = 202420, + [SMALL_STATE(6964)] = 202431, + [SMALL_STATE(6965)] = 202442, + [SMALL_STATE(6966)] = 202451, + [SMALL_STATE(6967)] = 202462, + [SMALL_STATE(6968)] = 202473, + [SMALL_STATE(6969)] = 202484, + [SMALL_STATE(6970)] = 202495, + [SMALL_STATE(6971)] = 202506, + [SMALL_STATE(6972)] = 202515, + [SMALL_STATE(6973)] = 202526, + [SMALL_STATE(6974)] = 202537, + [SMALL_STATE(6975)] = 202546, + [SMALL_STATE(6976)] = 202557, + [SMALL_STATE(6977)] = 202566, + [SMALL_STATE(6978)] = 202575, + [SMALL_STATE(6979)] = 202586, + [SMALL_STATE(6980)] = 202597, + [SMALL_STATE(6981)] = 202608, + [SMALL_STATE(6982)] = 202619, + [SMALL_STATE(6983)] = 202630, + [SMALL_STATE(6984)] = 202641, + [SMALL_STATE(6985)] = 202652, + [SMALL_STATE(6986)] = 202663, + [SMALL_STATE(6987)] = 202674, + [SMALL_STATE(6988)] = 202685, + [SMALL_STATE(6989)] = 202696, + [SMALL_STATE(6990)] = 202705, + [SMALL_STATE(6991)] = 202716, + [SMALL_STATE(6992)] = 202727, + [SMALL_STATE(6993)] = 202738, + [SMALL_STATE(6994)] = 202749, + [SMALL_STATE(6995)] = 202760, + [SMALL_STATE(6996)] = 202771, + [SMALL_STATE(6997)] = 202782, + [SMALL_STATE(6998)] = 202793, + [SMALL_STATE(6999)] = 202804, + [SMALL_STATE(7000)] = 202815, + [SMALL_STATE(7001)] = 202826, + [SMALL_STATE(7002)] = 202837, + [SMALL_STATE(7003)] = 202848, + [SMALL_STATE(7004)] = 202859, + [SMALL_STATE(7005)] = 202870, + [SMALL_STATE(7006)] = 202881, + [SMALL_STATE(7007)] = 202892, + [SMALL_STATE(7008)] = 202901, + [SMALL_STATE(7009)] = 202912, + [SMALL_STATE(7010)] = 202923, + [SMALL_STATE(7011)] = 202934, + [SMALL_STATE(7012)] = 202945, + [SMALL_STATE(7013)] = 202956, + [SMALL_STATE(7014)] = 202967, + [SMALL_STATE(7015)] = 202978, + [SMALL_STATE(7016)] = 202989, + [SMALL_STATE(7017)] = 203000, + [SMALL_STATE(7018)] = 203011, + [SMALL_STATE(7019)] = 203022, + [SMALL_STATE(7020)] = 203033, + [SMALL_STATE(7021)] = 203044, + [SMALL_STATE(7022)] = 203055, + [SMALL_STATE(7023)] = 203066, + [SMALL_STATE(7024)] = 203077, + [SMALL_STATE(7025)] = 203088, + [SMALL_STATE(7026)] = 203099, + [SMALL_STATE(7027)] = 203110, + [SMALL_STATE(7028)] = 203121, + [SMALL_STATE(7029)] = 203132, + [SMALL_STATE(7030)] = 203143, + [SMALL_STATE(7031)] = 203154, + [SMALL_STATE(7032)] = 203165, + [SMALL_STATE(7033)] = 203176, + [SMALL_STATE(7034)] = 203187, + [SMALL_STATE(7035)] = 203196, + [SMALL_STATE(7036)] = 203205, + [SMALL_STATE(7037)] = 203214, + [SMALL_STATE(7038)] = 203223, + [SMALL_STATE(7039)] = 203232, + [SMALL_STATE(7040)] = 203241, + [SMALL_STATE(7041)] = 203252, + [SMALL_STATE(7042)] = 203261, + [SMALL_STATE(7043)] = 203272, + [SMALL_STATE(7044)] = 203283, + [SMALL_STATE(7045)] = 203294, + [SMALL_STATE(7046)] = 203303, + [SMALL_STATE(7047)] = 203314, + [SMALL_STATE(7048)] = 203325, + [SMALL_STATE(7049)] = 203334, + [SMALL_STATE(7050)] = 203345, + [SMALL_STATE(7051)] = 203356, + [SMALL_STATE(7052)] = 203365, + [SMALL_STATE(7053)] = 203376, + [SMALL_STATE(7054)] = 203387, + [SMALL_STATE(7055)] = 203396, + [SMALL_STATE(7056)] = 203405, + [SMALL_STATE(7057)] = 203416, + [SMALL_STATE(7058)] = 203427, + [SMALL_STATE(7059)] = 203436, + [SMALL_STATE(7060)] = 203445, + [SMALL_STATE(7061)] = 203454, + [SMALL_STATE(7062)] = 203463, + [SMALL_STATE(7063)] = 203474, + [SMALL_STATE(7064)] = 203483, + [SMALL_STATE(7065)] = 203494, + [SMALL_STATE(7066)] = 203503, + [SMALL_STATE(7067)] = 203514, + [SMALL_STATE(7068)] = 203523, + [SMALL_STATE(7069)] = 203532, + [SMALL_STATE(7070)] = 203543, + [SMALL_STATE(7071)] = 203552, + [SMALL_STATE(7072)] = 203561, + [SMALL_STATE(7073)] = 203572, + [SMALL_STATE(7074)] = 203583, + [SMALL_STATE(7075)] = 203594, + [SMALL_STATE(7076)] = 203605, + [SMALL_STATE(7077)] = 203616, + [SMALL_STATE(7078)] = 203627, + [SMALL_STATE(7079)] = 203638, + [SMALL_STATE(7080)] = 203649, + [SMALL_STATE(7081)] = 203660, + [SMALL_STATE(7082)] = 203669, + [SMALL_STATE(7083)] = 203680, + [SMALL_STATE(7084)] = 203691, + [SMALL_STATE(7085)] = 203702, + [SMALL_STATE(7086)] = 203710, + [SMALL_STATE(7087)] = 203718, + [SMALL_STATE(7088)] = 203726, + [SMALL_STATE(7089)] = 203734, + [SMALL_STATE(7090)] = 203742, + [SMALL_STATE(7091)] = 203750, + [SMALL_STATE(7092)] = 203758, + [SMALL_STATE(7093)] = 203766, + [SMALL_STATE(7094)] = 203774, + [SMALL_STATE(7095)] = 203782, + [SMALL_STATE(7096)] = 203790, + [SMALL_STATE(7097)] = 203798, + [SMALL_STATE(7098)] = 203806, + [SMALL_STATE(7099)] = 203814, + [SMALL_STATE(7100)] = 203822, + [SMALL_STATE(7101)] = 203830, + [SMALL_STATE(7102)] = 203838, + [SMALL_STATE(7103)] = 203846, + [SMALL_STATE(7104)] = 203854, + [SMALL_STATE(7105)] = 203862, + [SMALL_STATE(7106)] = 203870, + [SMALL_STATE(7107)] = 203878, + [SMALL_STATE(7108)] = 203886, + [SMALL_STATE(7109)] = 203894, + [SMALL_STATE(7110)] = 203902, + [SMALL_STATE(7111)] = 203910, + [SMALL_STATE(7112)] = 203918, + [SMALL_STATE(7113)] = 203926, + [SMALL_STATE(7114)] = 203934, + [SMALL_STATE(7115)] = 203942, + [SMALL_STATE(7116)] = 203950, + [SMALL_STATE(7117)] = 203958, + [SMALL_STATE(7118)] = 203966, + [SMALL_STATE(7119)] = 203974, + [SMALL_STATE(7120)] = 203982, + [SMALL_STATE(7121)] = 203990, + [SMALL_STATE(7122)] = 203998, + [SMALL_STATE(7123)] = 204006, + [SMALL_STATE(7124)] = 204016, + [SMALL_STATE(7125)] = 204024, + [SMALL_STATE(7126)] = 204032, + [SMALL_STATE(7127)] = 204040, + [SMALL_STATE(7128)] = 204048, + [SMALL_STATE(7129)] = 204056, + [SMALL_STATE(7130)] = 204064, + [SMALL_STATE(7131)] = 204072, + [SMALL_STATE(7132)] = 204080, + [SMALL_STATE(7133)] = 204088, + [SMALL_STATE(7134)] = 204096, + [SMALL_STATE(7135)] = 204104, + [SMALL_STATE(7136)] = 204112, + [SMALL_STATE(7137)] = 204120, + [SMALL_STATE(7138)] = 204128, + [SMALL_STATE(7139)] = 204136, + [SMALL_STATE(7140)] = 204144, + [SMALL_STATE(7141)] = 204152, + [SMALL_STATE(7142)] = 204160, + [SMALL_STATE(7143)] = 204168, + [SMALL_STATE(7144)] = 204176, + [SMALL_STATE(7145)] = 204184, + [SMALL_STATE(7146)] = 204192, + [SMALL_STATE(7147)] = 204200, + [SMALL_STATE(7148)] = 204208, + [SMALL_STATE(7149)] = 204216, + [SMALL_STATE(7150)] = 204224, + [SMALL_STATE(7151)] = 204232, + [SMALL_STATE(7152)] = 204240, + [SMALL_STATE(7153)] = 204248, + [SMALL_STATE(7154)] = 204256, + [SMALL_STATE(7155)] = 204264, + [SMALL_STATE(7156)] = 204272, + [SMALL_STATE(7157)] = 204280, + [SMALL_STATE(7158)] = 204290, + [SMALL_STATE(7159)] = 204298, + [SMALL_STATE(7160)] = 204306, + [SMALL_STATE(7161)] = 204314, + [SMALL_STATE(7162)] = 204322, + [SMALL_STATE(7163)] = 204330, + [SMALL_STATE(7164)] = 204338, + [SMALL_STATE(7165)] = 204346, + [SMALL_STATE(7166)] = 204354, + [SMALL_STATE(7167)] = 204362, + [SMALL_STATE(7168)] = 204370, + [SMALL_STATE(7169)] = 204378, + [SMALL_STATE(7170)] = 204386, + [SMALL_STATE(7171)] = 204394, + [SMALL_STATE(7172)] = 204402, + [SMALL_STATE(7173)] = 204410, + [SMALL_STATE(7174)] = 204418, + [SMALL_STATE(7175)] = 204426, + [SMALL_STATE(7176)] = 204434, + [SMALL_STATE(7177)] = 204442, + [SMALL_STATE(7178)] = 204450, + [SMALL_STATE(7179)] = 204458, + [SMALL_STATE(7180)] = 204466, + [SMALL_STATE(7181)] = 204474, + [SMALL_STATE(7182)] = 204482, + [SMALL_STATE(7183)] = 204490, + [SMALL_STATE(7184)] = 204498, + [SMALL_STATE(7185)] = 204506, + [SMALL_STATE(7186)] = 204516, + [SMALL_STATE(7187)] = 204524, + [SMALL_STATE(7188)] = 204532, + [SMALL_STATE(7189)] = 204540, + [SMALL_STATE(7190)] = 204548, + [SMALL_STATE(7191)] = 204556, + [SMALL_STATE(7192)] = 204564, + [SMALL_STATE(7193)] = 204572, + [SMALL_STATE(7194)] = 204580, + [SMALL_STATE(7195)] = 204588, + [SMALL_STATE(7196)] = 204596, + [SMALL_STATE(7197)] = 204606, + [SMALL_STATE(7198)] = 204614, + [SMALL_STATE(7199)] = 204622, + [SMALL_STATE(7200)] = 204630, + [SMALL_STATE(7201)] = 204638, + [SMALL_STATE(7202)] = 204646, + [SMALL_STATE(7203)] = 204654, + [SMALL_STATE(7204)] = 204662, + [SMALL_STATE(7205)] = 204670, + [SMALL_STATE(7206)] = 204678, + [SMALL_STATE(7207)] = 204686, + [SMALL_STATE(7208)] = 204694, + [SMALL_STATE(7209)] = 204702, + [SMALL_STATE(7210)] = 204710, + [SMALL_STATE(7211)] = 204718, + [SMALL_STATE(7212)] = 204726, + [SMALL_STATE(7213)] = 204734, + [SMALL_STATE(7214)] = 204742, + [SMALL_STATE(7215)] = 204750, + [SMALL_STATE(7216)] = 204758, + [SMALL_STATE(7217)] = 204766, + [SMALL_STATE(7218)] = 204774, + [SMALL_STATE(7219)] = 204782, + [SMALL_STATE(7220)] = 204790, + [SMALL_STATE(7221)] = 204798, + [SMALL_STATE(7222)] = 204806, + [SMALL_STATE(7223)] = 204814, + [SMALL_STATE(7224)] = 204822, + [SMALL_STATE(7225)] = 204830, + [SMALL_STATE(7226)] = 204838, + [SMALL_STATE(7227)] = 204846, + [SMALL_STATE(7228)] = 204854, + [SMALL_STATE(7229)] = 204862, + [SMALL_STATE(7230)] = 204870, + [SMALL_STATE(7231)] = 204878, + [SMALL_STATE(7232)] = 204886, + [SMALL_STATE(7233)] = 204894, + [SMALL_STATE(7234)] = 204902, + [SMALL_STATE(7235)] = 204910, + [SMALL_STATE(7236)] = 204918, + [SMALL_STATE(7237)] = 204926, + [SMALL_STATE(7238)] = 204934, + [SMALL_STATE(7239)] = 204942, + [SMALL_STATE(7240)] = 204950, + [SMALL_STATE(7241)] = 204958, + [SMALL_STATE(7242)] = 204966, + [SMALL_STATE(7243)] = 204974, + [SMALL_STATE(7244)] = 204982, + [SMALL_STATE(7245)] = 204990, + [SMALL_STATE(7246)] = 204998, + [SMALL_STATE(7247)] = 205006, + [SMALL_STATE(7248)] = 205014, + [SMALL_STATE(7249)] = 205022, + [SMALL_STATE(7250)] = 205030, + [SMALL_STATE(7251)] = 205038, + [SMALL_STATE(7252)] = 205046, + [SMALL_STATE(7253)] = 205054, + [SMALL_STATE(7254)] = 205062, + [SMALL_STATE(7255)] = 205070, + [SMALL_STATE(7256)] = 205078, + [SMALL_STATE(7257)] = 205086, + [SMALL_STATE(7258)] = 205094, + [SMALL_STATE(7259)] = 205102, + [SMALL_STATE(7260)] = 205110, + [SMALL_STATE(7261)] = 205118, + [SMALL_STATE(7262)] = 205126, + [SMALL_STATE(7263)] = 205134, + [SMALL_STATE(7264)] = 205142, + [SMALL_STATE(7265)] = 205150, + [SMALL_STATE(7266)] = 205158, + [SMALL_STATE(7267)] = 205166, + [SMALL_STATE(7268)] = 205174, + [SMALL_STATE(7269)] = 205182, + [SMALL_STATE(7270)] = 205190, + [SMALL_STATE(7271)] = 205198, + [SMALL_STATE(7272)] = 205206, + [SMALL_STATE(7273)] = 205214, + [SMALL_STATE(7274)] = 205222, + [SMALL_STATE(7275)] = 205230, + [SMALL_STATE(7276)] = 205238, + [SMALL_STATE(7277)] = 205248, + [SMALL_STATE(7278)] = 205256, + [SMALL_STATE(7279)] = 205264, + [SMALL_STATE(7280)] = 205272, + [SMALL_STATE(7281)] = 205280, + [SMALL_STATE(7282)] = 205288, + [SMALL_STATE(7283)] = 205296, + [SMALL_STATE(7284)] = 205304, + [SMALL_STATE(7285)] = 205312, + [SMALL_STATE(7286)] = 205320, + [SMALL_STATE(7287)] = 205328, + [SMALL_STATE(7288)] = 205336, + [SMALL_STATE(7289)] = 205344, + [SMALL_STATE(7290)] = 205352, + [SMALL_STATE(7291)] = 205360, + [SMALL_STATE(7292)] = 205368, + [SMALL_STATE(7293)] = 205376, + [SMALL_STATE(7294)] = 205384, + [SMALL_STATE(7295)] = 205392, + [SMALL_STATE(7296)] = 205400, + [SMALL_STATE(7297)] = 205408, + [SMALL_STATE(7298)] = 205416, + [SMALL_STATE(7299)] = 205424, + [SMALL_STATE(7300)] = 205432, + [SMALL_STATE(7301)] = 205440, + [SMALL_STATE(7302)] = 205448, + [SMALL_STATE(7303)] = 205456, + [SMALL_STATE(7304)] = 205464, + [SMALL_STATE(7305)] = 205472, + [SMALL_STATE(7306)] = 205480, + [SMALL_STATE(7307)] = 205488, + [SMALL_STATE(7308)] = 205496, + [SMALL_STATE(7309)] = 205504, + [SMALL_STATE(7310)] = 205512, + [SMALL_STATE(7311)] = 205522, + [SMALL_STATE(7312)] = 205530, + [SMALL_STATE(7313)] = 205538, + [SMALL_STATE(7314)] = 205546, + [SMALL_STATE(7315)] = 205554, + [SMALL_STATE(7316)] = 205562, + [SMALL_STATE(7317)] = 205570, + [SMALL_STATE(7318)] = 205578, + [SMALL_STATE(7319)] = 205586, + [SMALL_STATE(7320)] = 205594, + [SMALL_STATE(7321)] = 205604, + [SMALL_STATE(7322)] = 205612, + [SMALL_STATE(7323)] = 205620, + [SMALL_STATE(7324)] = 205628, + [SMALL_STATE(7325)] = 205636, + [SMALL_STATE(7326)] = 205644, + [SMALL_STATE(7327)] = 205652, + [SMALL_STATE(7328)] = 205660, + [SMALL_STATE(7329)] = 205668, + [SMALL_STATE(7330)] = 205676, + [SMALL_STATE(7331)] = 205684, + [SMALL_STATE(7332)] = 205692, + [SMALL_STATE(7333)] = 205700, + [SMALL_STATE(7334)] = 205708, + [SMALL_STATE(7335)] = 205716, + [SMALL_STATE(7336)] = 205724, + [SMALL_STATE(7337)] = 205732, + [SMALL_STATE(7338)] = 205740, + [SMALL_STATE(7339)] = 205748, + [SMALL_STATE(7340)] = 205756, + [SMALL_STATE(7341)] = 205764, + [SMALL_STATE(7342)] = 205772, + [SMALL_STATE(7343)] = 205780, + [SMALL_STATE(7344)] = 205788, + [SMALL_STATE(7345)] = 205796, + [SMALL_STATE(7346)] = 205804, + [SMALL_STATE(7347)] = 205812, + [SMALL_STATE(7348)] = 205822, + [SMALL_STATE(7349)] = 205830, + [SMALL_STATE(7350)] = 205838, + [SMALL_STATE(7351)] = 205846, + [SMALL_STATE(7352)] = 205854, + [SMALL_STATE(7353)] = 205862, + [SMALL_STATE(7354)] = 205870, + [SMALL_STATE(7355)] = 205878, + [SMALL_STATE(7356)] = 205886, + [SMALL_STATE(7357)] = 205894, + [SMALL_STATE(7358)] = 205902, + [SMALL_STATE(7359)] = 205910, + [SMALL_STATE(7360)] = 205918, + [SMALL_STATE(7361)] = 205926, + [SMALL_STATE(7362)] = 205934, + [SMALL_STATE(7363)] = 205942, + [SMALL_STATE(7364)] = 205950, + [SMALL_STATE(7365)] = 205958, + [SMALL_STATE(7366)] = 205966, + [SMALL_STATE(7367)] = 205974, + [SMALL_STATE(7368)] = 205982, + [SMALL_STATE(7369)] = 205990, + [SMALL_STATE(7370)] = 205998, + [SMALL_STATE(7371)] = 206006, + [SMALL_STATE(7372)] = 206014, + [SMALL_STATE(7373)] = 206022, + [SMALL_STATE(7374)] = 206030, + [SMALL_STATE(7375)] = 206038, + [SMALL_STATE(7376)] = 206046, + [SMALL_STATE(7377)] = 206054, + [SMALL_STATE(7378)] = 206062, + [SMALL_STATE(7379)] = 206070, + [SMALL_STATE(7380)] = 206078, + [SMALL_STATE(7381)] = 206086, + [SMALL_STATE(7382)] = 206094, + [SMALL_STATE(7383)] = 206102, + [SMALL_STATE(7384)] = 206110, + [SMALL_STATE(7385)] = 206118, + [SMALL_STATE(7386)] = 206126, + [SMALL_STATE(7387)] = 206134, + [SMALL_STATE(7388)] = 206142, + [SMALL_STATE(7389)] = 206150, + [SMALL_STATE(7390)] = 206158, + [SMALL_STATE(7391)] = 206166, + [SMALL_STATE(7392)] = 206174, + [SMALL_STATE(7393)] = 206182, + [SMALL_STATE(7394)] = 206190, + [SMALL_STATE(7395)] = 206198, + [SMALL_STATE(7396)] = 206206, + [SMALL_STATE(7397)] = 206214, + [SMALL_STATE(7398)] = 206222, + [SMALL_STATE(7399)] = 206230, + [SMALL_STATE(7400)] = 206238, + [SMALL_STATE(7401)] = 206246, + [SMALL_STATE(7402)] = 206254, + [SMALL_STATE(7403)] = 206262, + [SMALL_STATE(7404)] = 206270, + [SMALL_STATE(7405)] = 206278, + [SMALL_STATE(7406)] = 206286, + [SMALL_STATE(7407)] = 206294, + [SMALL_STATE(7408)] = 206302, + [SMALL_STATE(7409)] = 206310, + [SMALL_STATE(7410)] = 206318, + [SMALL_STATE(7411)] = 206326, + [SMALL_STATE(7412)] = 206334, + [SMALL_STATE(7413)] = 206342, + [SMALL_STATE(7414)] = 206350, + [SMALL_STATE(7415)] = 206358, + [SMALL_STATE(7416)] = 206366, + [SMALL_STATE(7417)] = 206374, + [SMALL_STATE(7418)] = 206382, + [SMALL_STATE(7419)] = 206390, + [SMALL_STATE(7420)] = 206398, + [SMALL_STATE(7421)] = 206406, + [SMALL_STATE(7422)] = 206414, + [SMALL_STATE(7423)] = 206422, + [SMALL_STATE(7424)] = 206430, + [SMALL_STATE(7425)] = 206438, + [SMALL_STATE(7426)] = 206446, + [SMALL_STATE(7427)] = 206454, + [SMALL_STATE(7428)] = 206462, + [SMALL_STATE(7429)] = 206470, + [SMALL_STATE(7430)] = 206478, + [SMALL_STATE(7431)] = 206486, + [SMALL_STATE(7432)] = 206494, + [SMALL_STATE(7433)] = 206502, + [SMALL_STATE(7434)] = 206510, + [SMALL_STATE(7435)] = 206518, + [SMALL_STATE(7436)] = 206526, + [SMALL_STATE(7437)] = 206534, + [SMALL_STATE(7438)] = 206542, + [SMALL_STATE(7439)] = 206550, + [SMALL_STATE(7440)] = 206560, + [SMALL_STATE(7441)] = 206568, + [SMALL_STATE(7442)] = 206576, + [SMALL_STATE(7443)] = 206584, + [SMALL_STATE(7444)] = 206592, + [SMALL_STATE(7445)] = 206600, + [SMALL_STATE(7446)] = 206608, + [SMALL_STATE(7447)] = 206616, + [SMALL_STATE(7448)] = 206624, + [SMALL_STATE(7449)] = 206632, + [SMALL_STATE(7450)] = 206640, + [SMALL_STATE(7451)] = 206648, + [SMALL_STATE(7452)] = 206656, + [SMALL_STATE(7453)] = 206664, + [SMALL_STATE(7454)] = 206672, + [SMALL_STATE(7455)] = 206680, + [SMALL_STATE(7456)] = 206688, + [SMALL_STATE(7457)] = 206696, + [SMALL_STATE(7458)] = 206704, + [SMALL_STATE(7459)] = 206712, + [SMALL_STATE(7460)] = 206720, + [SMALL_STATE(7461)] = 206728, + [SMALL_STATE(7462)] = 206736, + [SMALL_STATE(7463)] = 206744, + [SMALL_STATE(7464)] = 206752, + [SMALL_STATE(7465)] = 206760, + [SMALL_STATE(7466)] = 206770, + [SMALL_STATE(7467)] = 206778, + [SMALL_STATE(7468)] = 206786, + [SMALL_STATE(7469)] = 206794, + [SMALL_STATE(7470)] = 206802, + [SMALL_STATE(7471)] = 206810, + [SMALL_STATE(7472)] = 206818, + [SMALL_STATE(7473)] = 206826, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -276127,4645 +313994,5349 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(522), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7439), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7433), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(384), [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(543), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5508), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(466), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(380), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(379), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(7347), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(506), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(517), + [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(677), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1255), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1154), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(406), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2884), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5333), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3623), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(406), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5116), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5131), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4755), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(401), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5210), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5408), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5080), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4570), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3338), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6025), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4173), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1154), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3946), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6030), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6031), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5415), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6034), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6037), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5417), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5420), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6064), [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4892), - [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4393), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4461), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3262), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(95), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(525), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5632), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(397), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5547), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2239), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4105), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1156), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5573), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5480), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5754), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(772), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5422), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5356), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5274), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4128), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(389), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7439), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(959), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(430), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4237), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2177), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7437), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2177), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2180), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5082), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1299), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7435), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7433), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7432), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 54), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 54), [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 95), [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 95), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 238), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 238), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 54), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 54), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 241), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 241), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7450), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(39), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(45), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(182), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(196), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(970), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3760), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 33), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 33), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(317), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 33), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(601), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(468), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(183), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(204), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(959), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4397), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 33), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 33), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(357), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(647), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(601), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 33), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 191), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 191), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 192), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 192), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 219), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 219), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 233), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 233), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 233), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 233), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 51), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 51), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 77), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 112), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 112), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 90), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 113), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 113), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 114), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 114), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 123), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 123), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 123), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 123), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 30), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 30), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 150), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 150), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 169), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 169), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 173), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 173), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 173), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 173), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 173), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 173), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1964] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3194), - [1968] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3004), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 190), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 190), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 190), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 190), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 234), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 234), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 234), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 234), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 148), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 148), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 121), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 121), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 191), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 191), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 51), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 51), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 77), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 90), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 112), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 112), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 111), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 111), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 0), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 0), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 30), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 30), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 172), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 172), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 172), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 172), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 220), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 220), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 220), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 220), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 172), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 172), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 172), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 172), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 168), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 168), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 168), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 168), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1954] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3698), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1968] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3388), [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2802), - [2321] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(189), - [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(620), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [2334] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4893), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3290), + [2321] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(188), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(386), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [2334] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5470), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(189), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4893), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(188), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5470), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7130), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 39), [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 39), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 270), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 270), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 241), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 241), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 107), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 107), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 100), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 100), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 49), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 49), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 49), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 49), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 149), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 149), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 153), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 153), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 265), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 265), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 108), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 108), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 153), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 153), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 94), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 94), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 38), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 38), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 98), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 98), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 51), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 51), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 35), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 35), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 233), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 233), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 107), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 107), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 113), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 113), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 114), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 114), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 99), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 99), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 172), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 172), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 26), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 26), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 28), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 28), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 123), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 123), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 122), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 122), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 34), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 34), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 34), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 34), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 219), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 219), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 41), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 41), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 40), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 40), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 183), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 183), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 186), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 186), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 89), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 89), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 190), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 190), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 150), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 150), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 75), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 75), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 194), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 194), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 76), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 76), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 38), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 38), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 196), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 196), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 153), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 153), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 46), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 46), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 85), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 85), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 87), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 87), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 88), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 88), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 201), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 201), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 169), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 169), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 173), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 173), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 89), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 89), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 191), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 191), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 192), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 192), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 145), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 145), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 48), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 48), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 146), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 146), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 94), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 94), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 269), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 269), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 199), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 199), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 200), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 200), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 239), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 239), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 78), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 78), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 79), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 79), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 80), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 80), - [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 147), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 147), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 188), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 188), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(470), - [3498] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), - [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5569), - [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(972), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5598), - [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1109), - [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5391), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(241), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), - [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT(3285), - [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(3884), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(383), - [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [3590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(524), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), - [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), - [3636] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_rest_pattern, 2, 0, 0), - [3640] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 33), - [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(318), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [3654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(603), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), - [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3241), - [3796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2788), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), - [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1457), - [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(304), - [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4367), - [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4370), - [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2371), - [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(5459), - [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3043), - [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4007), - [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1785), - [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2101), - [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2475), - [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1714), - [3837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2071), - [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2480), - [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2745), - [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2836), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), - [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1482), - [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2053), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1725), - [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1654), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2472), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1873), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4023] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [4061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 61), - [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 61), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 22), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 22), - [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 16), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), - [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 69), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 69), - [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), - [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), - [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 264), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 264), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 291), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 291), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [4227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), - [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), - [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 20), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 20), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), - [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 96), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 96), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 18), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 18), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 19), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 19), - [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 189), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 189), - [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 180), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 180), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), - [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), - [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 62), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 62), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 63), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 63), - [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), - [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 65), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 65), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 68), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 68), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 68), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 68), - [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 70), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 70), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 181), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 181), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), - [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), - [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 226), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 226), - [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 227), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 227), - [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), - [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 137), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 137), - [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 125), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [4567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), REDUCE(sym_assignment_expression, 3, 0, 72), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 72), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), - [4610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 73), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 73), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 187), - [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 81), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 81), - [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(145), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(145), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(145), - [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 16), - [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 16), - [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), - [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 32), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), - [4695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), - [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 82), - [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 82), - [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 83), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 83), - [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 86), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 86), - [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 29), - [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 29), - [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 31), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 31), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 74), - [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(141), - [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), - [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), - [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 119), - [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 119), - [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 119), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 119), - [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 124), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 124), - [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 127), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 127), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 148), - [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 148), - [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 151), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 151), - [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 152), - [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 152), - [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), - [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), - [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 27), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [4818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(145), - [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 95), - [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(500), - [4836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [4858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(141), - [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 50), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 50), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 74), - [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(141), - [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 27), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), - [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), - [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), - [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56), - [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), - [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), - [4912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(141), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5306), - [4938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(142), - [4941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(142), - [4944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(142), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [4957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(142), - [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 21), - [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 21), - [4964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 72), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [4975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(144), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(144), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(144), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 32), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [5040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(144), - [5043] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5047] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(149), - [5100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(149), - [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(149), - [5106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(149), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 72), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 52), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [5133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [5192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(143), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(143), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [5204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(143), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [5211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(143), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 42), - [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 42), - [5220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), REDUCE(sym__parameter_name, 2, 0, 42), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 42), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 42), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 92), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [5272] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 16), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 16), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [5425] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [5455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 102), - [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 102), - [5459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 106), - [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 106), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 115), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), - [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [5499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(630), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), - [5539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), - [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), - [5546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 160), - [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 160), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [5570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [5592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 45), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 45), - [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(148), - [5599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(139), - [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 202), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 202), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(148), - [5685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(148), - [5688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(148), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(139), - [5696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(139), - [5699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(139), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [5732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(150), - [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(150), - [5738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(150), - [5741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(150), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(146), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [5794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(146), - [5797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(146), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(146), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), - [5855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), - [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), - [5861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), - [5864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), - [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), - [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), - [5876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [5895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), - [5898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), - [5901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), - [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), - [5907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), - [5910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), - [5913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), - [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 156), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 156), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 267), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 267), - [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 268), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 268), - [5967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 236), - [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 236), - [5971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 219), - [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 219), - [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 197), - [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 197), - [5979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 173), - [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 173), - [5983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 292), - [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 292), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 123), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 123), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 293), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 293), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 311), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 311), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 312), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 312), - [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 327), - [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 327), - [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), - [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), SHIFT_REPEAT(2695), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 93), - [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 93), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2692), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 110), - [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 110), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4007), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 89), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 111), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), - [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 89), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [6586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_type_parameter, 1, 0, 15), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(1073), - [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 166), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 211), - [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5391), - [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 161), - [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 161), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), - [6635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 290), - [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), - [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), - [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 111), - [6649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 251), - [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 257), - [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 251), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [6771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [6937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 32), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 283), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 242), - [7071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 243), - [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 222), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 176), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 15), - [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 128), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 275), - [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 276), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 310), - [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 203), - [7113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 172), - [7115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 122), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 109), - [7129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 143), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 143), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 294), - [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 295), - [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 315), - [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 320), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 329), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 165), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [7179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), - [7193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(524), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 175), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [7260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 144), - [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 144), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [7278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5666), - [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(316), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 84), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [7356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3808), - [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [7377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [7420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), - [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [7429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4105), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [7468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), - [7470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), - [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 36), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), - [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 37), - [7500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 96), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [7518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(949), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 168), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1053), - [7548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(944), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [7565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1009), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 300), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 163), - [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 313), - [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 96), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 314), - [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 318), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 37), - [7592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(383), - [7595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1005), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), - [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 332), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 204), - [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 205), - [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 59), - [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 279), - [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), - [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 37), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 282), - [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [7644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(934), - [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 297), - [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 298), - [7651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 300), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), - [7663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1039), - [7666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(946), - [7669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [7673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [7675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), - [7678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4137), - [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), - [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), - [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), - [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 221), - [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [7695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [7702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), - [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 250), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [7730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [7738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 245), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), - [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 259), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 271), - [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 273), - [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 274), - [7762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), - [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(942), - [7771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1044), - [7774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(943), - [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1065), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 185), - [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 185), - [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [7810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(993), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [7833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [7835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), SHIFT_REPEAT(4487), - [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 89), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 53), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 272), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 237), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [7894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(470), - [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 44), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [7921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 184), - [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 184), - [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [7929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), - [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 67), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 104), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [7962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [7973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [7975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4456), - [7978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(429), - [7981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [7983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4458), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 34), - [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), - [8028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), SHIFT_REPEAT(351), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 116), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), - [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 321), - [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 322), - [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), - [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), - [8059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), - [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), - [8107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 304), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [8131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 167), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 328), - [8169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 330), - [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 331), - [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 333), - [8175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [8178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(243), - [8181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(4626), - [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 334), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [8200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 53), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 172), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 203), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [8244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 296), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), - [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 301), - [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 302), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 294), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [8335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2489), - [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [8340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2244), - [8343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [8345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5028), - [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [8350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), SHIFT_REPEAT(2773), - [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [8369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), - [8371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), - [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [8392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 242), - [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 243), - [8401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), - [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 316), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 122), - [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 319), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [8447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 89), - [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [8467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [8471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 36), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [8491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 277), - [8498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 278), - [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), - [8502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), - [8509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), - [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 275), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 276), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 97), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 92), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [8574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(603), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 96), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 97), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 36), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 154), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 103), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 179), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 105), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 195), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 43), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 157), - [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 154), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 96), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 133), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 66), - [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 195), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [8857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 37), - [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [8869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 89), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [8897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 159), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [9253] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [9261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [9387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [9427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [9431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [9501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [9561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 275), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 275), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 107), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 107), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 244), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 244), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 112), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 112), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 120), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 120), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 185), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 185), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 151), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 151), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 85), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 85), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 202), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 202), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 87), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 87), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 88), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 88), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 49), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 49), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 49), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 49), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 193), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 193), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 46), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 46), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 107), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 107), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 99), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 99), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 41), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 41), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 269), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 269), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 40), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 40), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 38), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 38), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 108), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 108), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 195), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 195), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 98), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 98), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 26), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 26), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 35), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 35), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 51), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 51), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 34), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 34), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 38), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 38), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 48), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 48), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 148), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 148), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 151), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 151), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 243), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 243), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 168), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 168), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 172), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 172), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 121), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 121), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 172), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 172), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 220), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 220), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 89), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 89), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 171), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 171), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 28), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 28), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 189), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 189), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 234), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 234), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 147), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 147), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 100), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 100), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 89), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 89), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 231), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 231), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 94), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 94), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 76), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 76), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 233), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 233), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 94), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 94), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 190), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 190), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 268), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 268), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 191), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 191), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 231), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 231), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 75), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 75), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 233), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 233), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 151), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 151), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 34), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 34), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 201), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 201), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 200), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 200), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 274), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 274), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 242), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 242), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7463), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7236), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 80), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 80), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [3446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 187), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 187), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 78), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 78), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 79), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 79), + [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(390), + [3520] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), + [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), + [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7224), + [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), + [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1023), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7103), + [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1059), + [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(6731), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(582), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(641), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT(3725), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(5042), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(240), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3622] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_rest_pattern, 2, 0, 0), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(359), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), + [3641] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 33), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), + [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(666), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), + [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1468), + [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1881), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2468), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3694), + [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(333), + [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5353), + [3977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5352), + [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2278), + [3983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7221), + [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3469), + [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5082), + [3992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), + [3995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2085), + [3998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2532), + [4001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1815), + [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2135), + [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), + [4010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3150), + [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3258), + [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2012), + [4019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1754), + [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1706), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4035] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 61), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 61), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [4065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 69), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 69), + [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), + [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 16), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 22), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 22), + [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 96), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 96), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 188), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 188), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 264), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 264), + [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 296), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 296), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 267), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 267), + [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 266), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 266), + [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 265), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 265), + [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), + [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 228), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 228), + [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 227), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 227), + [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 226), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 226), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), + [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), + [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 180), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 180), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 68), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 68), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 179), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 179), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), + [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 20), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 20), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), + [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), + [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), + [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), + [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 135), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 135), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), + [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), + [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 70), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 70), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 68), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 68), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 65), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 65), + [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 63), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 63), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 62), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 62), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 19), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 19), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 18), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 18), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 73), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 73), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 74), + [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(149), + [4618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(150), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), REDUCE(sym_assignment_expression, 3, 0, 72), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 72), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(149), + [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), + [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), + [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 146), + [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 146), + [4667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(150), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(141), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 27), + [4705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(141), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 186), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12), + [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(141), + [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), + [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 29), + [4744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(141), + [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 21), + [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 21), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 124), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 123), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 119), + [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 72), + [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 29), + [4776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(149), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 27), + [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), + [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 32), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), + [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), + [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 170), + [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 170), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 116), + [4801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(150), + [4810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 74), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 83), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(150), + [4824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), + [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), + [4828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 50), + [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 50), + [4836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), + [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), + [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56), + [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56), + [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 125), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 125), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 122), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 122), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 117), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 117), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 119), + [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), + [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(149), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [4903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 117), + [4905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 117), + [4907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 116), + [4909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [4919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), + [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [4927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 81), + [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 81), + [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 31), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 31), + [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 86), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 86), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(6810), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 83), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 82), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 82), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 95), + [4978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(563), + [4981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 16), + [4984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 16), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [5025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(146), + [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(142), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 52), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(142), + [5050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(142), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 32), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(142), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(146), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [5095] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5099] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 72), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(146), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [5138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(146), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 92), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(139), + [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [5271] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 16), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 42), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 42), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 16), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(139), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 42), + [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 42), + [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), REDUCE(sym__parameter_name, 2, 0, 42), + [5350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(139), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [5355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(139), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(140), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [5433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(143), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [5448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(143), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(143), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [5469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(148), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(143), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(148), + [5549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(148), + [5552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 102), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 102), + [5556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 106), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 106), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [5627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(579), + [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 203), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 203), + [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 159), + [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 159), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [5662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 157), + [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 157), + [5666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 45), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 45), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 113), + [5730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(140), + [5733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(140), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(148), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [5787] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(140), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [5962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(145), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [5971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [5990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(145), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [5999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(145), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [6004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(145), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [6049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 191), + [6052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 191), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [6101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 168), REDUCE(sym_class, 6, 0, 234), + [6104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 168), REDUCE(sym_class, 6, 0, 234), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [6109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), + [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [6137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 190), + [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 190), + [6143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 148), + [6146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 148), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), + [6151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 192), + [6154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 192), + [6157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 149), + [6160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 149), + [6163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 150), + [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 150), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, 0, 345), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, 0, 345), + [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 320), + [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 320), + [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 273), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 273), + [6217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 272), + [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 272), + [6221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 237), + [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 237), + [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 220), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 220), + [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 338), + [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 338), + [6233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 271), + [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 271), + [6237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 270), + [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 270), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [6243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 238), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 238), + [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 239), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 239), + [6251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 337), + [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 337), + [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 197), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 197), + [6259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 336), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 336), + [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 198), + [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 198), + [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 172), + [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 172), + [6271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 196), + [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 196), + [6275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 300), + [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 300), + [6279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 321), + [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 321), + [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 297), + [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 297), + [6287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 298), + [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 298), + [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 299), + [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 299), + [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 319), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 319), + [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 155), + [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 155), + [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 154), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 154), + [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 121), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 121), + [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 318), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 318), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2971), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 93), + [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 93), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), + [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [6634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(5082), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [7365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [7369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [7379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 89), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 110), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 89), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 212), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 254), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [7535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_type_parameter, 1, 0, 15), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [7540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(1051), + [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 160), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 214), + [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 165), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 160), + [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 254), + [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 160), + [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 110), + [7571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [7573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(6731), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 260), + [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 212), + [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 212), + [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 254), + [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 295), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [7644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [7684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 32), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [7762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 281), + [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 120), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 288), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 164), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(582), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 204), + [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 171), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), + [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 223), + [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 15), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), + [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 126), + [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), + [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 246), + [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 109), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 175), + [8107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [8119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 340), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [8131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 329), + [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 324), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 301), + [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 302), + [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 280), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [8621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4416), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [8626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(317), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [8655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), + [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [8720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 84), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [8810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [8848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7171), + [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [8853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [8884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 167), + [8886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), + [8888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [8890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [8892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [8900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 287), + [8902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 284), + [8904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 36), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 276), + [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 253), + [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [8924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [8934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [8942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 96), + [8946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 278), + [8955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [8957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1055), + [8960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4804), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [8965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [8967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(942), + [8970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1089), + [8973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), + [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [8981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 37), + [8983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 37), + [8985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 304), + [8987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 305), + [8989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [8991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), + [8993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 206), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [9001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 248), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [9011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 173), + [9013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1046), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [9020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 205), + [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 162), + [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 96), + [9026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 252), + [9028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 262), + [9030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [9032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 343), + [9034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [9042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(949), + [9045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 59), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [9053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1002), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [9062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [9064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [9078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 37), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [9098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [9108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 222), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [9112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 210), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [9116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 208), + [9118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 221), + [9120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [9122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(939), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [9129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(938), + [9132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(989), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [9143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1112), + [9146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(933), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [9153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), + [9155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(946), + [9158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [9162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 323), + [9164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 322), + [9166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), + [9168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1109), + [9171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [9179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(641), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [9190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 279), + [9192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 307), + [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [9220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 277), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [9266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(390), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [9285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 184), + [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 184), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [9291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [9293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [9299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [9307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 44), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [9317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [9319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5339), + [9322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [9324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5340), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [9331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 89), + [9333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), + [9335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), SHIFT_REPEAT(5327), + [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [9342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 53), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [9346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [9374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [9377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 34), + [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [9389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 67), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [9395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), + [9398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [9400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 169), + [9402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 169), SHIFT_REPEAT(341), + [9405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), + [9407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 104), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [9411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 114), + [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), + [9415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [9417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [9430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [9437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [9439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 240), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [9449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [9453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), + [9455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [9461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [9475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [9481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [9483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(666), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [9488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [9496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [9506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [9522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), + [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), + [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328), + [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), + [9530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), + [9532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), + [9534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [9542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [9554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(1927), + [9557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [9559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2405), + [9562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [9568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [9582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [9588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(270), + [9591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(244), + [9594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(5587), + [9597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [9599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 339), + [9601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 341), + [9603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), + [9605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 342), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [9609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 344), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [9619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 346), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [9623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 89), + [9625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [9629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 92), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [9649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 96), + [9651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 97), + [9653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 171), + [9655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 204), + [9657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [9660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [9662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 301), + [9664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [9666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), + [9668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), + [9670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [9674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 36), + [9676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [9706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [9712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [9714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6018), + [9717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [9731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [9733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3915), + [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [9738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [9745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [9747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [9751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [9755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [9757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [9767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [9793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [9801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [9811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 281), + [9813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 280), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [9819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), + [9821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [9823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), + [9825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), + [9827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [9835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [9847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 261), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [9855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(277), + [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [9864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [9878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3779), + [9881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [9887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [9889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [9893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 246), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [9897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [9899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [9905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [9909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 120), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [9915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), + [9917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 97), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 53), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [9961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [9981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), SHIFT_REPEAT(3175), + [9984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), + [9986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [9994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [9997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [10001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [10003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 96), + [10005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 178), + [10007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 194), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [10045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [10071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 158), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [10095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [10101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 156), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [10201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 152), + [10203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [10209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [10211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 37), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [10229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [10243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 105), + [10245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 103), + [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [10253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 199), + [10255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 194), + [10257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 89), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [10273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [10289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 36), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [10299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 66), + [10301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 43), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [10309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [10363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [10377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [10419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [10425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [10433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [10639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [10663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [10907] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), }; enum ts_external_scanner_symbol_identifiers {